diff --git a/grammar.js b/grammar.js index 3a881c9..f5365b8 100644 --- a/grammar.js +++ b/grammar.js @@ -877,7 +877,7 @@ function defineQuoted(start, end, name) { return { [`_quoted_i_${name}`]: ($) => seq( - start, + field("quoted_start", start), repeat( choice( alias($[`_quoted_content_i_${name}`], $.quoted_content), @@ -885,12 +885,12 @@ function defineQuoted(start, end, name) { $.escape_sequence ) ), - end + field("quoted_end", end) ), [`_quoted_${name}`]: ($) => seq( - start, + field("quoted_start", start), repeat( choice( alias($[`_quoted_content_${name}`], $.quoted_content), @@ -898,7 +898,7 @@ function defineQuoted(start, end, name) { $.escape_sequence ) ), - end + field("quoted_end", end) ), }; } diff --git a/src/grammar.json b/src/grammar.json index 5e3b860..20ca212 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1073,8 +1073,12 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "\"" + "type": "FIELD", + "name": "quoted_start", + "content": { + "type": "STRING", + "value": "\"" + } }, { "type": "REPEAT", @@ -1102,8 +1106,12 @@ } }, { - "type": "STRING", - "value": "\"" + "type": "FIELD", + "name": "quoted_end", + "content": { + "type": "STRING", + "value": "\"" + } } ] }, @@ -1111,8 +1119,12 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "\"" + "type": "FIELD", + "name": "quoted_start", + "content": { + "type": "STRING", + "value": "\"" + } }, { "type": "REPEAT", @@ -1136,8 +1148,12 @@ } }, { - "type": "STRING", - "value": "\"" + "type": "FIELD", + "name": "quoted_end", + "content": { + "type": "STRING", + "value": "\"" + } } ] }, @@ -1145,8 +1161,12 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "'" + "type": "FIELD", + "name": "quoted_start", + "content": { + "type": "STRING", + "value": "'" + } }, { "type": "REPEAT", @@ -1174,8 +1194,12 @@ } }, { - "type": "STRING", - "value": "'" + "type": "FIELD", + "name": "quoted_end", + "content": { + "type": "STRING", + "value": "'" + } } ] }, @@ -1183,8 +1207,12 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "'" + "type": "FIELD", + "name": "quoted_start", + "content": { + "type": "STRING", + "value": "'" + } }, { "type": "REPEAT", @@ -1208,8 +1236,12 @@ } }, { - "type": "STRING", - "value": "'" + "type": "FIELD", + "name": "quoted_end", + "content": { + "type": "STRING", + "value": "'" + } } ] }, @@ -1217,8 +1249,12 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "'''" + "type": "FIELD", + "name": "quoted_start", + "content": { + "type": "STRING", + "value": "'''" + } }, { "type": "REPEAT", @@ -1246,8 +1282,12 @@ } }, { - "type": "STRING", - "value": "'''" + "type": "FIELD", + "name": "quoted_end", + "content": { + "type": "STRING", + "value": "'''" + } } ] }, @@ -1255,8 +1295,12 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "'''" + "type": "FIELD", + "name": "quoted_start", + "content": { + "type": "STRING", + "value": "'''" + } }, { "type": "REPEAT", @@ -1280,8 +1324,12 @@ } }, { - "type": "STRING", - "value": "'''" + "type": "FIELD", + "name": "quoted_end", + "content": { + "type": "STRING", + "value": "'''" + } } ] }, @@ -1289,8 +1337,12 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "\"\"\"" + "type": "FIELD", + "name": "quoted_start", + "content": { + "type": "STRING", + "value": "\"\"\"" + } }, { "type": "REPEAT", @@ -1318,8 +1370,12 @@ } }, { - "type": "STRING", - "value": "\"\"\"" + "type": "FIELD", + "name": "quoted_end", + "content": { + "type": "STRING", + "value": "\"\"\"" + } } ] }, @@ -1327,8 +1383,12 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "\"\"\"" + "type": "FIELD", + "name": "quoted_start", + "content": { + "type": "STRING", + "value": "\"\"\"" + } }, { "type": "REPEAT", @@ -1352,8 +1412,12 @@ } }, { - "type": "STRING", - "value": "\"\"\"" + "type": "FIELD", + "name": "quoted_end", + "content": { + "type": "STRING", + "value": "\"\"\"" + } } ] }, @@ -1361,8 +1425,12 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "(" + "type": "FIELD", + "name": "quoted_start", + "content": { + "type": "STRING", + "value": "(" + } }, { "type": "REPEAT", @@ -1390,8 +1458,12 @@ } }, { - "type": "STRING", - "value": ")" + "type": "FIELD", + "name": "quoted_end", + "content": { + "type": "STRING", + "value": ")" + } } ] }, @@ -1399,8 +1471,12 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "(" + "type": "FIELD", + "name": "quoted_start", + "content": { + "type": "STRING", + "value": "(" + } }, { "type": "REPEAT", @@ -1424,8 +1500,12 @@ } }, { - "type": "STRING", - "value": ")" + "type": "FIELD", + "name": "quoted_end", + "content": { + "type": "STRING", + "value": ")" + } } ] }, @@ -1433,8 +1513,12 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "{" + "type": "FIELD", + "name": "quoted_start", + "content": { + "type": "STRING", + "value": "{" + } }, { "type": "REPEAT", @@ -1462,8 +1546,12 @@ } }, { - "type": "STRING", - "value": "}" + "type": "FIELD", + "name": "quoted_end", + "content": { + "type": "STRING", + "value": "}" + } } ] }, @@ -1471,8 +1559,12 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "{" + "type": "FIELD", + "name": "quoted_start", + "content": { + "type": "STRING", + "value": "{" + } }, { "type": "REPEAT", @@ -1496,8 +1588,12 @@ } }, { - "type": "STRING", - "value": "}" + "type": "FIELD", + "name": "quoted_end", + "content": { + "type": "STRING", + "value": "}" + } } ] }, @@ -1505,8 +1601,12 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "[" + "type": "FIELD", + "name": "quoted_start", + "content": { + "type": "STRING", + "value": "[" + } }, { "type": "REPEAT", @@ -1534,8 +1634,12 @@ } }, { - "type": "STRING", - "value": "]" + "type": "FIELD", + "name": "quoted_end", + "content": { + "type": "STRING", + "value": "]" + } } ] }, @@ -1543,8 +1647,12 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "[" + "type": "FIELD", + "name": "quoted_start", + "content": { + "type": "STRING", + "value": "[" + } }, { "type": "REPEAT", @@ -1568,8 +1676,12 @@ } }, { - "type": "STRING", - "value": "]" + "type": "FIELD", + "name": "quoted_end", + "content": { + "type": "STRING", + "value": "]" + } } ] }, @@ -1577,8 +1689,12 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "<" + "type": "FIELD", + "name": "quoted_start", + "content": { + "type": "STRING", + "value": "<" + } }, { "type": "REPEAT", @@ -1606,8 +1722,12 @@ } }, { - "type": "STRING", - "value": ">" + "type": "FIELD", + "name": "quoted_end", + "content": { + "type": "STRING", + "value": ">" + } } ] }, @@ -1615,8 +1735,12 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "<" + "type": "FIELD", + "name": "quoted_start", + "content": { + "type": "STRING", + "value": "<" + } }, { "type": "REPEAT", @@ -1640,8 +1764,12 @@ } }, { - "type": "STRING", - "value": ">" + "type": "FIELD", + "name": "quoted_end", + "content": { + "type": "STRING", + "value": ">" + } } ] }, @@ -1649,8 +1777,12 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "|" + "type": "FIELD", + "name": "quoted_start", + "content": { + "type": "STRING", + "value": "|" + } }, { "type": "REPEAT", @@ -1678,8 +1810,12 @@ } }, { - "type": "STRING", - "value": "|" + "type": "FIELD", + "name": "quoted_end", + "content": { + "type": "STRING", + "value": "|" + } } ] }, @@ -1687,8 +1823,12 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "|" + "type": "FIELD", + "name": "quoted_start", + "content": { + "type": "STRING", + "value": "|" + } }, { "type": "REPEAT", @@ -1712,8 +1852,12 @@ } }, { - "type": "STRING", - "value": "|" + "type": "FIELD", + "name": "quoted_end", + "content": { + "type": "STRING", + "value": "|" + } } ] }, @@ -1721,8 +1865,12 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "/" + "type": "FIELD", + "name": "quoted_start", + "content": { + "type": "STRING", + "value": "/" + } }, { "type": "REPEAT", @@ -1750,8 +1898,12 @@ } }, { - "type": "STRING", - "value": "/" + "type": "FIELD", + "name": "quoted_end", + "content": { + "type": "STRING", + "value": "/" + } } ] }, @@ -1759,8 +1911,12 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "/" + "type": "FIELD", + "name": "quoted_start", + "content": { + "type": "STRING", + "value": "/" + } }, { "type": "REPEAT", @@ -1784,8 +1940,12 @@ } }, { - "type": "STRING", - "value": "/" + "type": "FIELD", + "name": "quoted_end", + "content": { + "type": "STRING", + "value": "/" + } } ] }, diff --git a/src/node-types.json b/src/node-types.json index 3b0751f..70ad46c 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -1388,7 +1388,36 @@ { "type": "charlist", "named": true, - "fields": {}, + "fields": { + "quoted_end": { + "multiple": false, + "required": true, + "types": [ + { + "type": "'", + "named": false + }, + { + "type": "'''", + "named": false + } + ] + }, + "quoted_start": { + "multiple": false, + "required": true, + "types": [ + { + "type": "'", + "named": false + }, + { + "type": "'''", + "named": false + } + ] + } + }, "children": { "multiple": true, "required": false, @@ -2333,7 +2362,36 @@ { "type": "quoted_atom", "named": true, - "fields": {}, + "fields": { + "quoted_end": { + "multiple": false, + "required": true, + "types": [ + { + "type": "\"", + "named": false + }, + { + "type": "'", + "named": false + } + ] + }, + "quoted_start": { + "multiple": false, + "required": true, + "types": [ + { + "type": "\"", + "named": false + }, + { + "type": "'", + "named": false + } + ] + } + }, "children": { "multiple": true, "required": false, @@ -2356,7 +2414,36 @@ { "type": "quoted_keyword", "named": true, - "fields": {}, + "fields": { + "quoted_end": { + "multiple": false, + "required": true, + "types": [ + { + "type": "\"", + "named": false + }, + { + "type": "'", + "named": false + } + ] + }, + "quoted_start": { + "multiple": false, + "required": true, + "types": [ + { + "type": "\"", + "named": false + }, + { + "type": "'", + "named": false + } + ] + } + }, "children": { "multiple": true, "required": false, @@ -2494,7 +2581,100 @@ { "type": "sigil", "named": true, - "fields": {}, + "fields": { + "quoted_end": { + "multiple": false, + "required": true, + "types": [ + { + "type": "\"", + "named": false + }, + { + "type": "\"\"\"", + "named": false + }, + { + "type": "'", + "named": false + }, + { + "type": "'''", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": "/", + "named": false + }, + { + "type": ">", + "named": false + }, + { + "type": "]", + "named": false + }, + { + "type": "|", + "named": false + }, + { + "type": "}", + "named": false + } + ] + }, + "quoted_start": { + "multiple": false, + "required": true, + "types": [ + { + "type": "\"", + "named": false + }, + { + "type": "\"\"\"", + "named": false + }, + { + "type": "'", + "named": false + }, + { + "type": "'''", + "named": false + }, + { + "type": "(", + "named": false + }, + { + "type": "/", + "named": false + }, + { + "type": "<", + "named": false + }, + { + "type": "[", + "named": false + }, + { + "type": "{", + "named": false + }, + { + "type": "|", + "named": false + } + ] + } + }, "children": { "multiple": true, "required": true, @@ -2681,7 +2861,36 @@ { "type": "string", "named": true, - "fields": {}, + "fields": { + "quoted_end": { + "multiple": false, + "required": true, + "types": [ + { + "type": "\"", + "named": false + }, + { + "type": "\"\"\"", + "named": false + } + ] + }, + "quoted_start": { + "multiple": false, + "required": true, + "types": [ + { + "type": "\"", + "named": false + }, + { + "type": "\"\"\"", + "named": false + } + ] + } + }, "children": { "multiple": true, "required": false, diff --git a/src/parser.c b/src/parser.c index b69feb8..d46d7f6 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,15 +14,15 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 5062 -#define LARGE_STATE_COUNT 1090 +#define STATE_COUNT 5670 +#define LARGE_STATE_COUNT 1091 #define SYMBOL_COUNT 242 #define ALIAS_COUNT 1 #define TOKEN_COUNT 131 #define EXTERNAL_TOKEN_COUNT 26 -#define FIELD_COUNT 7 +#define FIELD_COUNT 9 #define MAX_ALIAS_SEQUENCE_LENGTH 7 -#define PRODUCTION_ID_COUNT 21 +#define PRODUCTION_ID_COUNT 26 enum { aux_sym__terminator_token1 = 1, @@ -1741,9 +1741,11 @@ enum { field_left = 2, field_operand = 3, field_operator = 4, - field_right = 5, - field_target = 6, - field_value = 7, + field_quoted_end = 5, + field_quoted_start = 6, + field_right = 7, + field_target = 8, + field_value = 9, }; static const char * const ts_field_names[] = { @@ -1752,100 +1754,128 @@ static const char * const ts_field_names[] = { [field_left] = "left", [field_operand] = "operand", [field_operator] = "operator", + [field_quoted_end] = "quoted_end", + [field_quoted_start] = "quoted_start", [field_right] = "right", [field_target] = "target", [field_value] = "value", }; static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { - [1] = {.index = 0, .length = 1}, - [2] = {.index = 1, .length = 4}, - [3] = {.index = 5, .length = 1}, - [4] = {.index = 6, .length = 3}, - [5] = {.index = 0, .length = 1}, - [6] = {.index = 9, .length = 2}, - [7] = {.index = 11, .length = 2}, - [8] = {.index = 13, .length = 1}, - [9] = {.index = 14, .length = 2}, - [10] = {.index = 16, .length = 3}, - [11] = {.index = 19, .length = 2}, - [12] = {.index = 21, .length = 2}, - [13] = {.index = 23, .length = 2}, - [14] = {.index = 25, .length = 3}, - [15] = {.index = 25, .length = 3}, - [16] = {.index = 25, .length = 3}, - [17] = {.index = 25, .length = 3}, - [19] = {.index = 28, .length = 2}, + [1] = {.index = 0, .length = 2}, + [2] = {.index = 2, .length = 1}, + [3] = {.index = 3, .length = 4}, + [4] = {.index = 7, .length = 2}, + [5] = {.index = 9, .length = 1}, + [6] = {.index = 10, .length = 3}, + [7] = {.index = 13, .length = 2}, + [8] = {.index = 2, .length = 1}, + [9] = {.index = 15, .length = 2}, + [10] = {.index = 17, .length = 2}, + [11] = {.index = 19, .length = 1}, + [12] = {.index = 20, .length = 2}, + [13] = {.index = 22, .length = 3}, + [14] = {.index = 25, .length = 2}, + [15] = {.index = 27, .length = 2}, + [16] = {.index = 29, .length = 2}, + [17] = {.index = 31, .length = 2}, + [18] = {.index = 33, .length = 2}, + [19] = {.index = 35, .length = 3}, + [20] = {.index = 35, .length = 3}, + [21] = {.index = 38, .length = 5}, + [22] = {.index = 38, .length = 5}, + [24] = {.index = 43, .length = 2}, }; static const TSFieldMapEntry ts_field_map_entries[] = { [0] = + {field_quoted_end, 0, .inherited = true}, + {field_quoted_start, 0, .inherited = true}, + [2] = {field_target, 0, .inherited = true}, - [1] = + [3] = {field_left, 0, .inherited = true}, {field_operator, 0, .inherited = true}, {field_right, 0, .inherited = true}, {field_target, 0}, - [5] = + [7] = + {field_quoted_end, 1, .inherited = true}, + {field_quoted_start, 1, .inherited = true}, + [9] = {field_operator, 0}, - [6] = + [10] = {field_left, 0, .inherited = true}, {field_operator, 0, .inherited = true}, {field_right, 0, .inherited = true}, - [9] = + [13] = + {field_quoted_end, 1}, + {field_quoted_start, 0}, + [15] = {field_operand, 1}, {field_operator, 0}, - [11] = + [17] = {field_left, 0}, {field_operator, 1}, - [13] = + [19] = {field_target, 0}, - [14] = + [20] = {field_target, 0}, {field_target, 0, .inherited = true}, - [16] = + [22] = {field_left, 0, .inherited = true}, {field_operator, 0, .inherited = true}, {field_target, 0}, - [19] = + [25] = {field_operand, 2}, {field_operator, 1}, - [21] = + [27] = {field_operator, 0}, {field_right, 1}, - [23] = + [29] = {field_key, 0}, {field_value, 1}, - [25] = + [31] = + {field_quoted_end, 2}, + {field_quoted_start, 0}, + [33] = + {field_quoted_end, 2, .inherited = true}, + {field_quoted_start, 2, .inherited = true}, + [35] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, - [28] = + [38] = + {field_left, 0}, + {field_operator, 1}, + {field_quoted_end, 2, .inherited = true}, + {field_quoted_start, 2, .inherited = true}, + {field_right, 2}, + [43] = {field_key, 2}, {field_target, 0}, }; static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { [0] = {0}, - [5] = { + [8] = { [0] = sym_call, }, - [9] = { + [12] = { [0] = sym_call, }, - [15] = { - [2] = sym_identifier, - }, - [16] = { - [2] = sym_string, - }, - [17] = { - [2] = sym_charlist, - }, - [18] = { - [2] = alias_sym_map_content, - }, [20] = { + [2] = sym_identifier, + }, + [21] = { + [2] = sym_string, + }, + [22] = { + [2] = sym_charlist, + }, + [23] = { + [2] = alias_sym_map_content, + }, + [25] = { [3] = alias_sym_map_content, }, }; @@ -12152,10 +12182,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(621); END_STATE(); case 29: - if (lookahead == '\n') SKIP(119) + if (lookahead == '\n') SKIP(116) END_STATE(); case 30: - if (lookahead == '\n') SKIP(119) + if (lookahead == '\n') SKIP(116) if (lookahead == '\r') SKIP(29) if (lookahead == '\\') ADVANCE(621); END_STATE(); @@ -12176,10 +12206,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(621); END_STATE(); case 35: - if (lookahead == '\n') SKIP(128) + if (lookahead == '\n') SKIP(127) END_STATE(); case 36: - if (lookahead == '\n') SKIP(128) + if (lookahead == '\n') SKIP(127) if (lookahead == '\r') SKIP(35) if (lookahead == '\\') ADVANCE(621); END_STATE(); @@ -12331,14 +12361,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') ADVANCE(61); if (lookahead == '"') ADVANCE(509); if (lookahead == '#') ADVANCE(743); - if (lookahead == '\'') ADVANCE(511); - if (lookahead == ')') ADVANCE(301); - if (lookahead == '/') ADVANCE(532); - if (lookahead == '>') ADVANCE(524); + if (lookahead == '\'') ADVANCE(152); if (lookahead == '\\') ADVANCE(58); - if (lookahead == ']') ADVANCE(519); - if (lookahead == '|') ADVANCE(529); - if (lookahead == '}') ADVANCE(517); if (lookahead == '\t' || lookahead == ' ') SKIP(62) END_STATE(); @@ -12347,7 +12371,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') ADVANCE(61); if (lookahead == '"') ADVANCE(509); if (lookahead == '#') ADVANCE(744); - if (lookahead == '\'') ADVANCE(152); + if (lookahead == '\'') ADVANCE(511); if (lookahead == ')') ADVANCE(301); if (lookahead == '/') ADVANCE(532); if (lookahead == '>') ADVANCE(524); @@ -12363,8 +12387,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') ADVANCE(61); if (lookahead == '"') ADVANCE(147); if (lookahead == '#') ADVANCE(743); - if (lookahead == '\'') ADVANCE(152); + if (lookahead == '\'') ADVANCE(511); + if (lookahead == ')') ADVANCE(301); + if (lookahead == '/') ADVANCE(532); + if (lookahead == '>') ADVANCE(524); if (lookahead == '\\') ADVANCE(58); + if (lookahead == ']') ADVANCE(519); + if (lookahead == '|') ADVANCE(529); + if (lookahead == '}') ADVANCE(517); if (lookahead == '\t' || lookahead == ' ') SKIP(64) END_STATE(); @@ -12373,7 +12403,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') ADVANCE(61); if (lookahead == '"') ADVANCE(147); if (lookahead == '#') ADVANCE(744); - if (lookahead == '\'') ADVANCE(511); + if (lookahead == '\'') ADVANCE(152); if (lookahead == '\\') ADVANCE(58); if (lookahead == '\t' || lookahead == ' ') SKIP(65) @@ -12411,10 +12441,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(621); END_STATE(); case 74: - if (lookahead == '\n') SKIP(117) + if (lookahead == '\n') SKIP(119) END_STATE(); case 75: - if (lookahead == '\n') SKIP(117) + if (lookahead == '\n') SKIP(119) if (lookahead == '\r') SKIP(74) if (lookahead == '\\') ADVANCE(621); END_STATE(); @@ -13438,6 +13468,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '!') ADVANCE(180); if (lookahead == '#') ADVANCE(744); if (lookahead == '&') ADVANCE(150); + if (lookahead == ')') ADVANCE(301); + if (lookahead == '*') ADVANCE(704); + if (lookahead == '+') ADVANCE(600); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(603); + if (lookahead == '.') ADVANCE(714); + if (lookahead == '/') ADVANCE(535); + if (lookahead == ':') ADVANCE(177); + if (lookahead == ';') ADVANCE(299); + if (lookahead == '<') ADVANCE(523); + if (lookahead == '=') ADVANCE(632); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '\\') ADVANCE(30); + if (lookahead == ']') ADVANCE(519); + if (lookahead == '^') ADVANCE(198); + if (lookahead == 'a') ADVANCE(213); + if (lookahead == 'd') ADVANCE(217); + if (lookahead == 'i') ADVANCE(214); + if (lookahead == 'o') ADVANCE(219); + if (lookahead == 'w') ADVANCE(211); + if (lookahead == '{') ADVANCE(515); + if (lookahead == '|') ADVANCE(531); + if (lookahead == '}') ADVANCE(517); + if (lookahead == '~') ADVANCE(187); + if (lookahead == '\t' || + lookahead == ' ') SKIP(116) + END_STATE(); + case 117: + if (lookahead == '\n') ADVANCE(289); + END_STATE(); + case 118: + if (lookahead == '\n') ADVANCE(289); + if (lookahead == '\r') ADVANCE(117); + if (lookahead == '!') ADVANCE(180); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '&') ADVANCE(150); if (lookahead == '*') ADVANCE(704); if (lookahead == '+') ADVANCE(600); if (lookahead == ',') ADVANCE(584); @@ -13462,13 +13528,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(531); if (lookahead == '~') ADVANCE(187); if (lookahead == '\t' || - lookahead == ' ') SKIP(117) + lookahead == ' ') SKIP(119) if (('A' <= lookahead && lookahead <= 'Z') || ('b' <= lookahead && lookahead <= 'z')) ADVANCE(583); END_STATE(); - case 117: - if (lookahead == '\n') ADVANCE(288); - if (lookahead == '\r') ADVANCE(115); + case 119: + if (lookahead == '\n') ADVANCE(289); + if (lookahead == '\r') ADVANCE(117); if (lookahead == '!') ADVANCE(180); if (lookahead == '#') ADVANCE(744); if (lookahead == '&') ADVANCE(150); @@ -13494,42 +13560,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'w') ADVANCE(211); if (lookahead == '|') ADVANCE(531); if (lookahead == '~') ADVANCE(187); - if (lookahead == '\t' || - lookahead == ' ') SKIP(117) - END_STATE(); - case 118: - if (lookahead == '\n') ADVANCE(289); - END_STATE(); - case 119: - if (lookahead == '\n') ADVANCE(289); - if (lookahead == '\r') ADVANCE(118); - if (lookahead == '!') ADVANCE(180); - if (lookahead == '#') ADVANCE(744); - if (lookahead == '&') ADVANCE(150); - if (lookahead == ')') ADVANCE(301); - if (lookahead == '*') ADVANCE(704); - if (lookahead == '+') ADVANCE(600); - if (lookahead == ',') ADVANCE(584); - if (lookahead == '-') ADVANCE(603); - if (lookahead == '.') ADVANCE(714); - if (lookahead == '/') ADVANCE(535); - if (lookahead == ':') ADVANCE(177); - if (lookahead == ';') ADVANCE(299); - if (lookahead == '<') ADVANCE(523); - if (lookahead == '=') ADVANCE(632); - if (lookahead == '>') ADVANCE(528); - if (lookahead == '\\') ADVANCE(30); - if (lookahead == ']') ADVANCE(519); - if (lookahead == '^') ADVANCE(198); - if (lookahead == 'a') ADVANCE(213); - if (lookahead == 'd') ADVANCE(217); - if (lookahead == 'i') ADVANCE(214); - if (lookahead == 'o') ADVANCE(219); - if (lookahead == 'w') ADVANCE(211); - if (lookahead == '{') ADVANCE(515); - if (lookahead == '|') ADVANCE(531); - if (lookahead == '}') ADVANCE(517); - if (lookahead == '~') ADVANCE(187); if (lookahead == '\t' || lookahead == ' ') SKIP(119) END_STATE(); @@ -13674,68 +13704,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '!') ADVANCE(180); if (lookahead == '#') ADVANCE(744); if (lookahead == '&') ADVANCE(150); - if (lookahead == '(') ADVANCE(300); - if (lookahead == '*') ADVANCE(704); - if (lookahead == '+') ADVANCE(600); - if (lookahead == ',') ADVANCE(584); - if (lookahead == '-') ADVANCE(603); - if (lookahead == '.') ADVANCE(714); - if (lookahead == '/') ADVANCE(535); - if (lookahead == ':') ADVANCE(178); - if (lookahead == '<') ADVANCE(523); - if (lookahead == '=') ADVANCE(632); - if (lookahead == '>') ADVANCE(527); - if (lookahead == '[') ADVANCE(742); - if (lookahead == '\\') ADVANCE(36); - if (lookahead == '^') ADVANCE(198); - if (lookahead == 'a') ADVANCE(213); - if (lookahead == 'd') ADVANCE(217); - if (lookahead == 'i') ADVANCE(214); - if (lookahead == 'o') ADVANCE(219); - if (lookahead == 'w') ADVANCE(211); - if (lookahead == '|') ADVANCE(531); - if (lookahead == '~') ADVANCE(187); - if (lookahead == '\t' || - lookahead == ' ') SKIP(128) - END_STATE(); - case 128: - if (lookahead == '\n') ADVANCE(292); - if (lookahead == '\r') ADVANCE(126); - if (lookahead == '!') ADVANCE(180); - if (lookahead == '#') ADVANCE(744); - if (lookahead == '&') ADVANCE(150); - if (lookahead == '(') ADVANCE(300); - if (lookahead == '*') ADVANCE(704); - if (lookahead == '+') ADVANCE(600); - if (lookahead == ',') ADVANCE(584); - if (lookahead == '-') ADVANCE(603); - if (lookahead == '.') ADVANCE(714); - if (lookahead == '/') ADVANCE(535); - if (lookahead == ':') ADVANCE(177); - if (lookahead == '<') ADVANCE(523); - if (lookahead == '=') ADVANCE(632); - if (lookahead == '>') ADVANCE(527); - if (lookahead == '\\') ADVANCE(36); - if (lookahead == '^') ADVANCE(198); - if (lookahead == 'a') ADVANCE(213); - if (lookahead == 'd') ADVANCE(217); - if (lookahead == 'i') ADVANCE(214); - if (lookahead == 'o') ADVANCE(219); - if (lookahead == 'w') ADVANCE(211); - if (lookahead == '|') ADVANCE(531); - if (lookahead == '~') ADVANCE(187); - if (lookahead == '\t' || - lookahead == ' ') SKIP(128) - END_STATE(); - case 129: - if (lookahead == '\n') ADVANCE(293); - END_STATE(); - case 130: - if (lookahead == '\n') ADVANCE(293); - if (lookahead == '\r') ADVANCE(129); - if (lookahead == '!') ADVANCE(180); - if (lookahead == '#') ADVANCE(744); - if (lookahead == '&') ADVANCE(150); if (lookahead == ')') ADVANCE(301); if (lookahead == '*') ADVANCE(704); if (lookahead == '+') ADVANCE(600); @@ -13748,7 +13716,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '<') ADVANCE(523); if (lookahead == '=') ADVANCE(632); if (lookahead == '>') ADVANCE(528); - if (lookahead == '\\') ADVANCE(38); + if (lookahead == '\\') ADVANCE(36); if (lookahead == ']') ADVANCE(519); if (lookahead == '^') ADVANCE(198); if (lookahead == 'a') ADVANCE(213); @@ -13759,6 +13727,68 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(531); if (lookahead == '}') ADVANCE(517); if (lookahead == '~') ADVANCE(187); + if (lookahead == '\t' || + lookahead == ' ') SKIP(127) + END_STATE(); + case 128: + if (lookahead == '\n') ADVANCE(293); + END_STATE(); + case 129: + if (lookahead == '\n') ADVANCE(293); + if (lookahead == '\r') ADVANCE(128); + if (lookahead == '!') ADVANCE(180); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '&') ADVANCE(150); + if (lookahead == '(') ADVANCE(300); + if (lookahead == '*') ADVANCE(704); + if (lookahead == '+') ADVANCE(600); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(603); + if (lookahead == '.') ADVANCE(714); + if (lookahead == '/') ADVANCE(535); + if (lookahead == ':') ADVANCE(178); + if (lookahead == '<') ADVANCE(523); + if (lookahead == '=') ADVANCE(632); + if (lookahead == '>') ADVANCE(527); + if (lookahead == '[') ADVANCE(742); + if (lookahead == '\\') ADVANCE(38); + if (lookahead == '^') ADVANCE(198); + if (lookahead == 'a') ADVANCE(213); + if (lookahead == 'd') ADVANCE(217); + if (lookahead == 'i') ADVANCE(214); + if (lookahead == 'o') ADVANCE(219); + if (lookahead == 'w') ADVANCE(211); + if (lookahead == '|') ADVANCE(531); + if (lookahead == '~') ADVANCE(187); + if (lookahead == '\t' || + lookahead == ' ') SKIP(130) + END_STATE(); + case 130: + if (lookahead == '\n') ADVANCE(293); + if (lookahead == '\r') ADVANCE(128); + if (lookahead == '!') ADVANCE(180); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '&') ADVANCE(150); + if (lookahead == '(') ADVANCE(300); + if (lookahead == '*') ADVANCE(704); + if (lookahead == '+') ADVANCE(600); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(603); + if (lookahead == '.') ADVANCE(714); + if (lookahead == '/') ADVANCE(535); + if (lookahead == ':') ADVANCE(177); + if (lookahead == '<') ADVANCE(523); + if (lookahead == '=') ADVANCE(632); + if (lookahead == '>') ADVANCE(527); + if (lookahead == '\\') ADVANCE(38); + if (lookahead == '^') ADVANCE(198); + if (lookahead == 'a') ADVANCE(213); + if (lookahead == 'd') ADVANCE(217); + if (lookahead == 'i') ADVANCE(214); + if (lookahead == 'o') ADVANCE(219); + if (lookahead == 'w') ADVANCE(211); + if (lookahead == '|') ADVANCE(531); + if (lookahead == '~') ADVANCE(187); if (lookahead == '\t' || lookahead == ' ') SKIP(130) END_STATE(); @@ -13771,21 +13801,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '!') ADVANCE(180); if (lookahead == '#') ADVANCE(744); if (lookahead == '&') ADVANCE(150); + if (lookahead == ')') ADVANCE(301); if (lookahead == '*') ADVANCE(704); if (lookahead == '+') ADVANCE(600); if (lookahead == ',') ADVANCE(584); - if (lookahead == '-') ADVANCE(603); + if (lookahead == '-') ADVANCE(604); if (lookahead == '.') ADVANCE(714); if (lookahead == '/') ADVANCE(535); if (lookahead == ':') ADVANCE(177); + if (lookahead == ';') ADVANCE(299); if (lookahead == '<') ADVANCE(523); if (lookahead == '=') ADVANCE(632); - if (lookahead == '>') ADVANCE(527); + if (lookahead == '>') ADVANCE(528); if (lookahead == '[') ADVANCE(742); if (lookahead == '\\') ADVANCE(40); if (lookahead == '^') ADVANCE(198); if (lookahead == 'a') ADVANCE(571); - if (lookahead == 'd') ADVANCE(575); if (lookahead == 'i') ADVANCE(572); if (lookahead == 'o') ADVANCE(576); if (lookahead == 'w') ADVANCE(569); @@ -13802,20 +13833,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '!') ADVANCE(180); if (lookahead == '#') ADVANCE(744); if (lookahead == '&') ADVANCE(150); + if (lookahead == ')') ADVANCE(301); if (lookahead == '*') ADVANCE(704); if (lookahead == '+') ADVANCE(600); if (lookahead == ',') ADVANCE(584); - if (lookahead == '-') ADVANCE(603); + if (lookahead == '-') ADVANCE(604); if (lookahead == '.') ADVANCE(714); if (lookahead == '/') ADVANCE(535); if (lookahead == ':') ADVANCE(177); + if (lookahead == ';') ADVANCE(299); if (lookahead == '<') ADVANCE(523); if (lookahead == '=') ADVANCE(632); - if (lookahead == '>') ADVANCE(527); + if (lookahead == '>') ADVANCE(528); if (lookahead == '\\') ADVANCE(40); if (lookahead == '^') ADVANCE(198); if (lookahead == 'a') ADVANCE(213); - if (lookahead == 'd') ADVANCE(217); if (lookahead == 'i') ADVANCE(214); if (lookahead == 'o') ADVANCE(219); if (lookahead == 'w') ADVANCE(211); @@ -13833,22 +13865,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '!') ADVANCE(180); if (lookahead == '#') ADVANCE(744); if (lookahead == '&') ADVANCE(150); - if (lookahead == ')') ADVANCE(301); if (lookahead == '*') ADVANCE(704); if (lookahead == '+') ADVANCE(600); if (lookahead == ',') ADVANCE(584); - if (lookahead == '-') ADVANCE(604); + if (lookahead == '-') ADVANCE(603); if (lookahead == '.') ADVANCE(714); if (lookahead == '/') ADVANCE(535); if (lookahead == ':') ADVANCE(177); - if (lookahead == ';') ADVANCE(299); if (lookahead == '<') ADVANCE(523); if (lookahead == '=') ADVANCE(632); - if (lookahead == '>') ADVANCE(528); + if (lookahead == '>') ADVANCE(527); if (lookahead == '[') ADVANCE(742); if (lookahead == '\\') ADVANCE(42); if (lookahead == '^') ADVANCE(198); if (lookahead == 'a') ADVANCE(571); + if (lookahead == 'd') ADVANCE(575); if (lookahead == 'i') ADVANCE(572); if (lookahead == 'o') ADVANCE(576); if (lookahead == 'w') ADVANCE(569); @@ -13865,21 +13896,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '!') ADVANCE(180); if (lookahead == '#') ADVANCE(744); if (lookahead == '&') ADVANCE(150); - if (lookahead == ')') ADVANCE(301); if (lookahead == '*') ADVANCE(704); if (lookahead == '+') ADVANCE(600); if (lookahead == ',') ADVANCE(584); - if (lookahead == '-') ADVANCE(604); + if (lookahead == '-') ADVANCE(603); if (lookahead == '.') ADVANCE(714); if (lookahead == '/') ADVANCE(535); if (lookahead == ':') ADVANCE(177); - if (lookahead == ';') ADVANCE(299); if (lookahead == '<') ADVANCE(523); if (lookahead == '=') ADVANCE(632); - if (lookahead == '>') ADVANCE(528); + if (lookahead == '>') ADVANCE(527); if (lookahead == '\\') ADVANCE(42); if (lookahead == '^') ADVANCE(198); if (lookahead == 'a') ADVANCE(213); + if (lookahead == 'd') ADVANCE(217); if (lookahead == 'i') ADVANCE(214); if (lookahead == 'o') ADVANCE(219); if (lookahead == 'w') ADVANCE(211); @@ -14838,8 +14868,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 264: if (eof) ADVANCE(268); - if (lookahead == '\n') ADVANCE(289); - if (lookahead == '\r') ADVANCE(118); + if (lookahead == '\n') ADVANCE(288); + if (lookahead == '\r') ADVANCE(115); if (lookahead == '!') ADVANCE(180); if (lookahead == '#') ADVANCE(744); if (lookahead == '&') ADVANCE(150); @@ -14875,8 +14905,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 265: if (eof) ADVANCE(268); - if (lookahead == '\n') ADVANCE(289); - if (lookahead == '\r') ADVANCE(118); + if (lookahead == '\n') ADVANCE(288); + if (lookahead == '\r') ADVANCE(115); if (lookahead == '!') ADVANCE(180); if (lookahead == '#') ADVANCE(744); if (lookahead == '&') ADVANCE(150); @@ -14909,8 +14939,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 266: if (eof) ADVANCE(268); - if (lookahead == '\n') ADVANCE(293); - if (lookahead == '\r') ADVANCE(129); + if (lookahead == '\n') ADVANCE(292); + if (lookahead == '\r') ADVANCE(126); if (lookahead == '!') ADVANCE(180); if (lookahead == '#') ADVANCE(744); if (lookahead == '&') ADVANCE(150); @@ -14927,7 +14957,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '=') ADVANCE(632); if (lookahead == '>') ADVANCE(528); if (lookahead == '[') ADVANCE(742); - if (lookahead == '\\') ADVANCE(38); + if (lookahead == '\\') ADVANCE(36); if (lookahead == ']') ADVANCE(519); if (lookahead == '^') ADVANCE(198); if (lookahead == 'a') ADVANCE(571); @@ -14945,8 +14975,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 267: if (eof) ADVANCE(268); - if (lookahead == '\n') ADVANCE(293); - if (lookahead == '\r') ADVANCE(129); + if (lookahead == '\n') ADVANCE(292); + if (lookahead == '\r') ADVANCE(126); if (lookahead == '!') ADVANCE(180); if (lookahead == '#') ADVANCE(744); if (lookahead == '&') ADVANCE(150); @@ -14962,7 +14992,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '<') ADVANCE(523); if (lookahead == '=') ADVANCE(632); if (lookahead == '>') ADVANCE(528); - if (lookahead == '\\') ADVANCE(38); + if (lookahead == '\\') ADVANCE(36); if (lookahead == ']') ADVANCE(519); if (lookahead == '^') ADVANCE(198); if (lookahead == 'a') ADVANCE(213); @@ -15096,13 +15126,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym__terminator_token1); if (lookahead == '\n') ADVANCE(288); if (lookahead == '\r') ADVANCE(115); - if (lookahead == '\\') ADVANCE(75); + if (lookahead == '\\') ADVANCE(30); END_STATE(); case 289: ACCEPT_TOKEN(aux_sym__terminator_token1); if (lookahead == '\n') ADVANCE(289); - if (lookahead == '\r') ADVANCE(118); - if (lookahead == '\\') ADVANCE(30); + if (lookahead == '\r') ADVANCE(117); + if (lookahead == '\\') ADVANCE(75); END_STATE(); case 290: ACCEPT_TOKEN(aux_sym__terminator_token1); @@ -15125,7 +15155,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 293: ACCEPT_TOKEN(aux_sym__terminator_token1); if (lookahead == '\n') ADVANCE(293); - if (lookahead == '\r') ADVANCE(129); + if (lookahead == '\r') ADVANCE(128); if (lookahead == '\\') ADVANCE(38); END_STATE(); case 294: @@ -17873,8 +17903,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [18] = {.lex_state = 81, .external_lex_state = 3}, [19] = {.lex_state = 81, .external_lex_state = 3}, [20] = {.lex_state = 79, .external_lex_state = 2}, - [21] = {.lex_state = 79, .external_lex_state = 2}, - [22] = {.lex_state = 81, .external_lex_state = 2}, + [21] = {.lex_state = 81, .external_lex_state = 2}, + [22] = {.lex_state = 79, .external_lex_state = 2}, [23] = {.lex_state = 79, .external_lex_state = 2}, [24] = {.lex_state = 79, .external_lex_state = 2}, [25] = {.lex_state = 81, .external_lex_state = 2}, @@ -17886,45 +17916,45 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [31] = {.lex_state = 79, .external_lex_state = 2}, [32] = {.lex_state = 79, .external_lex_state = 2}, [33] = {.lex_state = 79, .external_lex_state = 2}, - [34] = {.lex_state = 260, .external_lex_state = 3}, - [35] = {.lex_state = 79, .external_lex_state = 2}, + [34] = {.lex_state = 79, .external_lex_state = 2}, + [35] = {.lex_state = 260, .external_lex_state = 3}, [36] = {.lex_state = 260, .external_lex_state = 3}, [37] = {.lex_state = 79, .external_lex_state = 2}, [38] = {.lex_state = 79, .external_lex_state = 2}, [39] = {.lex_state = 79, .external_lex_state = 2}, [40] = {.lex_state = 260, .external_lex_state = 3}, - [41] = {.lex_state = 260, .external_lex_state = 3}, - [42] = {.lex_state = 86, .external_lex_state = 3}, + [41] = {.lex_state = 86, .external_lex_state = 3}, + [42] = {.lex_state = 260, .external_lex_state = 3}, [43] = {.lex_state = 260, .external_lex_state = 3}, [44] = {.lex_state = 260, .external_lex_state = 3}, [45] = {.lex_state = 260, .external_lex_state = 3}, [46] = {.lex_state = 260, .external_lex_state = 3}, - [47] = {.lex_state = 260, .external_lex_state = 3}, - [48] = {.lex_state = 260, .external_lex_state = 3}, - [49] = {.lex_state = 86, .external_lex_state = 3}, + [47] = {.lex_state = 86, .external_lex_state = 3}, + [48] = {.lex_state = 260, .external_lex_state = 2}, + [49] = {.lex_state = 260, .external_lex_state = 3}, [50] = {.lex_state = 260, .external_lex_state = 3}, - [51] = {.lex_state = 260, .external_lex_state = 2}, - [52] = {.lex_state = 86, .external_lex_state = 3}, - [53] = {.lex_state = 260, .external_lex_state = 3}, - [54] = {.lex_state = 86, .external_lex_state = 2}, + [51] = {.lex_state = 260, .external_lex_state = 3}, + [52] = {.lex_state = 260, .external_lex_state = 3}, + [53] = {.lex_state = 86, .external_lex_state = 3}, + [54] = {.lex_state = 260, .external_lex_state = 2}, [55] = {.lex_state = 260, .external_lex_state = 3}, - [56] = {.lex_state = 260, .external_lex_state = 2}, - [57] = {.lex_state = 260, .external_lex_state = 2}, - [58] = {.lex_state = 260, .external_lex_state = 2}, - [59] = {.lex_state = 89, .external_lex_state = 3}, - [60] = {.lex_state = 260, .external_lex_state = 3}, - [61] = {.lex_state = 260, .external_lex_state = 3}, - [62] = {.lex_state = 89, .external_lex_state = 3}, - [63] = {.lex_state = 89, .external_lex_state = 3}, + [56] = {.lex_state = 260, .external_lex_state = 3}, + [57] = {.lex_state = 260, .external_lex_state = 3}, + [58] = {.lex_state = 89, .external_lex_state = 3}, + [59] = {.lex_state = 260, .external_lex_state = 2}, + [60] = {.lex_state = 89, .external_lex_state = 3}, + [61] = {.lex_state = 89, .external_lex_state = 3}, + [62] = {.lex_state = 260, .external_lex_state = 2}, + [63] = {.lex_state = 86, .external_lex_state = 2}, [64] = {.lex_state = 260, .external_lex_state = 2}, - [65] = {.lex_state = 260, .external_lex_state = 3}, - [66] = {.lex_state = 79, .external_lex_state = 2}, + [65] = {.lex_state = 79, .external_lex_state = 2}, + [66] = {.lex_state = 89, .external_lex_state = 2}, [67] = {.lex_state = 79, .external_lex_state = 2}, [68] = {.lex_state = 260, .external_lex_state = 3}, - [69] = {.lex_state = 260, .external_lex_state = 3}, - [70] = {.lex_state = 79, .external_lex_state = 2}, + [69] = {.lex_state = 79, .external_lex_state = 2}, + [70] = {.lex_state = 260, .external_lex_state = 3}, [71] = {.lex_state = 79, .external_lex_state = 2}, - [72] = {.lex_state = 89, .external_lex_state = 2}, + [72] = {.lex_state = 260, .external_lex_state = 3}, [73] = {.lex_state = 92, .external_lex_state = 2}, [74] = {.lex_state = 92, .external_lex_state = 2}, [75] = {.lex_state = 92, .external_lex_state = 2}, @@ -17945,9 +17975,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [90] = {.lex_state = 92, .external_lex_state = 2}, [91] = {.lex_state = 92, .external_lex_state = 2}, [92] = {.lex_state = 92, .external_lex_state = 2}, - [93] = {.lex_state = 92, .external_lex_state = 2}, + [93] = {.lex_state = 260, .external_lex_state = 2}, [94] = {.lex_state = 92, .external_lex_state = 2}, - [95] = {.lex_state = 260, .external_lex_state = 2}, + [95] = {.lex_state = 92, .external_lex_state = 2}, [96] = {.lex_state = 92, .external_lex_state = 2}, [97] = {.lex_state = 92, .external_lex_state = 2}, [98] = {.lex_state = 92, .external_lex_state = 2}, @@ -17955,7 +17985,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [100] = {.lex_state = 92, .external_lex_state = 2}, [101] = {.lex_state = 92, .external_lex_state = 2}, [102] = {.lex_state = 92, .external_lex_state = 2}, - [103] = {.lex_state = 92, .external_lex_state = 2}, + [103] = {.lex_state = 260, .external_lex_state = 2}, [104] = {.lex_state = 92, .external_lex_state = 2}, [105] = {.lex_state = 92, .external_lex_state = 2}, [106] = {.lex_state = 92, .external_lex_state = 2}, @@ -17963,7 +17993,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [108] = {.lex_state = 92, .external_lex_state = 2}, [109] = {.lex_state = 92, .external_lex_state = 2}, [110] = {.lex_state = 92, .external_lex_state = 2}, - [111] = {.lex_state = 260, .external_lex_state = 2}, + [111] = {.lex_state = 92, .external_lex_state = 2}, [112] = {.lex_state = 92, .external_lex_state = 2}, [113] = {.lex_state = 92, .external_lex_state = 2}, [114] = {.lex_state = 92, .external_lex_state = 2}, @@ -18036,16 +18066,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [181] = {.lex_state = 92, .external_lex_state = 2}, [182] = {.lex_state = 92, .external_lex_state = 2}, [183] = {.lex_state = 92, .external_lex_state = 2}, - [184] = {.lex_state = 96, .external_lex_state = 2}, + [184] = {.lex_state = 92, .external_lex_state = 2}, [185] = {.lex_state = 92, .external_lex_state = 2}, [186] = {.lex_state = 92, .external_lex_state = 2}, [187] = {.lex_state = 92, .external_lex_state = 2}, - [188] = {.lex_state = 92, .external_lex_state = 2}, + [188] = {.lex_state = 96, .external_lex_state = 2}, [189] = {.lex_state = 92, .external_lex_state = 2}, [190] = {.lex_state = 92, .external_lex_state = 2}, [191] = {.lex_state = 92, .external_lex_state = 2}, - [192] = {.lex_state = 92, .external_lex_state = 2}, - [193] = {.lex_state = 96, .external_lex_state = 2}, + [192] = {.lex_state = 96, .external_lex_state = 2}, + [193] = {.lex_state = 92, .external_lex_state = 2}, [194] = {.lex_state = 92, .external_lex_state = 2}, [195] = {.lex_state = 92, .external_lex_state = 2}, [196] = {.lex_state = 92, .external_lex_state = 2}, @@ -18053,26 +18083,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [198] = {.lex_state = 92, .external_lex_state = 2}, [199] = {.lex_state = 92, .external_lex_state = 2}, [200] = {.lex_state = 92, .external_lex_state = 2}, - [201] = {.lex_state = 96, .external_lex_state = 2}, + [201] = {.lex_state = 92, .external_lex_state = 2}, [202] = {.lex_state = 92, .external_lex_state = 2}, [203] = {.lex_state = 92, .external_lex_state = 2}, [204] = {.lex_state = 92, .external_lex_state = 2}, [205] = {.lex_state = 92, .external_lex_state = 2}, [206] = {.lex_state = 92, .external_lex_state = 2}, - [207] = {.lex_state = 96, .external_lex_state = 2}, + [207] = {.lex_state = 92, .external_lex_state = 2}, [208] = {.lex_state = 92, .external_lex_state = 2}, - [209] = {.lex_state = 96, .external_lex_state = 2}, - [210] = {.lex_state = 96, .external_lex_state = 2}, + [209] = {.lex_state = 92, .external_lex_state = 2}, + [210] = {.lex_state = 92, .external_lex_state = 2}, [211] = {.lex_state = 92, .external_lex_state = 2}, - [212] = {.lex_state = 92, .external_lex_state = 2}, + [212] = {.lex_state = 96, .external_lex_state = 2}, [213] = {.lex_state = 92, .external_lex_state = 2}, - [214] = {.lex_state = 92, .external_lex_state = 2}, + [214] = {.lex_state = 96, .external_lex_state = 2}, [215] = {.lex_state = 92, .external_lex_state = 2}, [216] = {.lex_state = 92, .external_lex_state = 2}, [217] = {.lex_state = 92, .external_lex_state = 2}, [218] = {.lex_state = 92, .external_lex_state = 2}, [219] = {.lex_state = 92, .external_lex_state = 2}, - [220] = {.lex_state = 92, .external_lex_state = 2}, + [220] = {.lex_state = 96, .external_lex_state = 2}, [221] = {.lex_state = 92, .external_lex_state = 2}, [222] = {.lex_state = 92, .external_lex_state = 2}, [223] = {.lex_state = 92, .external_lex_state = 2}, @@ -18080,21 +18110,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [225] = {.lex_state = 92, .external_lex_state = 2}, [226] = {.lex_state = 92, .external_lex_state = 2}, [227] = {.lex_state = 92, .external_lex_state = 2}, - [228] = {.lex_state = 92, .external_lex_state = 2}, + [228] = {.lex_state = 96, .external_lex_state = 2}, [229] = {.lex_state = 92, .external_lex_state = 2}, [230] = {.lex_state = 92, .external_lex_state = 2}, - [231] = {.lex_state = 96, .external_lex_state = 2}, + [231] = {.lex_state = 92, .external_lex_state = 2}, [232] = {.lex_state = 92, .external_lex_state = 2}, - [233] = {.lex_state = 96, .external_lex_state = 2}, - [234] = {.lex_state = 92, .external_lex_state = 2}, + [233] = {.lex_state = 92, .external_lex_state = 2}, + [234] = {.lex_state = 96, .external_lex_state = 2}, [235] = {.lex_state = 92, .external_lex_state = 2}, [236] = {.lex_state = 92, .external_lex_state = 2}, [237] = {.lex_state = 92, .external_lex_state = 2}, - [238] = {.lex_state = 96, .external_lex_state = 2}, - [239] = {.lex_state = 96, .external_lex_state = 2}, + [238] = {.lex_state = 92, .external_lex_state = 2}, + [239] = {.lex_state = 92, .external_lex_state = 2}, [240] = {.lex_state = 92, .external_lex_state = 2}, [241] = {.lex_state = 92, .external_lex_state = 2}, - [242] = {.lex_state = 92, .external_lex_state = 2}, + [242] = {.lex_state = 96, .external_lex_state = 2}, [243] = {.lex_state = 92, .external_lex_state = 2}, [244] = {.lex_state = 92, .external_lex_state = 2}, [245] = {.lex_state = 92, .external_lex_state = 2}, @@ -18102,28 +18132,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [247] = {.lex_state = 92, .external_lex_state = 2}, [248] = {.lex_state = 92, .external_lex_state = 2}, [249] = {.lex_state = 92, .external_lex_state = 2}, - [250] = {.lex_state = 92, .external_lex_state = 2}, + [250] = {.lex_state = 96, .external_lex_state = 2}, [251] = {.lex_state = 92, .external_lex_state = 2}, [252] = {.lex_state = 92, .external_lex_state = 2}, [253] = {.lex_state = 96, .external_lex_state = 2}, - [254] = {.lex_state = 92, .external_lex_state = 2}, + [254] = {.lex_state = 96, .external_lex_state = 2}, [255] = {.lex_state = 92, .external_lex_state = 2}, [256] = {.lex_state = 92, .external_lex_state = 2}, [257] = {.lex_state = 96, .external_lex_state = 2}, [258] = {.lex_state = 96, .external_lex_state = 2}, [259] = {.lex_state = 94, .external_lex_state = 2}, - [260] = {.lex_state = 94, .external_lex_state = 2}, - [261] = {.lex_state = 96, .external_lex_state = 2}, + [260] = {.lex_state = 96, .external_lex_state = 2}, + [261] = {.lex_state = 94, .external_lex_state = 2}, [262] = {.lex_state = 94, .external_lex_state = 2}, - [263] = {.lex_state = 94, .external_lex_state = 2}, - [264] = {.lex_state = 94, .external_lex_state = 2}, + [263] = {.lex_state = 92, .external_lex_state = 2}, + [264] = {.lex_state = 92, .external_lex_state = 2}, [265] = {.lex_state = 92, .external_lex_state = 2}, [266] = {.lex_state = 92, .external_lex_state = 2}, - [267] = {.lex_state = 94, .external_lex_state = 2}, + [267] = {.lex_state = 92, .external_lex_state = 2}, [268] = {.lex_state = 92, .external_lex_state = 2}, [269] = {.lex_state = 92, .external_lex_state = 2}, [270] = {.lex_state = 92, .external_lex_state = 2}, - [271] = {.lex_state = 94, .external_lex_state = 2}, + [271] = {.lex_state = 92, .external_lex_state = 2}, [272] = {.lex_state = 92, .external_lex_state = 2}, [273] = {.lex_state = 92, .external_lex_state = 2}, [274] = {.lex_state = 92, .external_lex_state = 2}, @@ -18131,77 +18161,77 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [276] = {.lex_state = 92, .external_lex_state = 2}, [277] = {.lex_state = 92, .external_lex_state = 2}, [278] = {.lex_state = 92, .external_lex_state = 2}, - [279] = {.lex_state = 92, .external_lex_state = 2}, - [280] = {.lex_state = 94, .external_lex_state = 2}, + [279] = {.lex_state = 94, .external_lex_state = 2}, + [280] = {.lex_state = 92, .external_lex_state = 2}, [281] = {.lex_state = 92, .external_lex_state = 2}, - [282] = {.lex_state = 94, .external_lex_state = 2}, + [282] = {.lex_state = 92, .external_lex_state = 2}, [283] = {.lex_state = 92, .external_lex_state = 2}, - [284] = {.lex_state = 94, .external_lex_state = 2}, + [284] = {.lex_state = 92, .external_lex_state = 2}, [285] = {.lex_state = 92, .external_lex_state = 2}, - [286] = {.lex_state = 92, .external_lex_state = 2}, - [287] = {.lex_state = 94, .external_lex_state = 2}, + [286] = {.lex_state = 94, .external_lex_state = 2}, + [287] = {.lex_state = 92, .external_lex_state = 2}, [288] = {.lex_state = 92, .external_lex_state = 2}, - [289] = {.lex_state = 92, .external_lex_state = 2}, + [289] = {.lex_state = 258, .external_lex_state = 2}, [290] = {.lex_state = 92, .external_lex_state = 2}, [291] = {.lex_state = 92, .external_lex_state = 2}, - [292] = {.lex_state = 92, .external_lex_state = 2}, + [292] = {.lex_state = 94, .external_lex_state = 2}, [293] = {.lex_state = 92, .external_lex_state = 2}, [294] = {.lex_state = 92, .external_lex_state = 2}, [295] = {.lex_state = 92, .external_lex_state = 2}, [296] = {.lex_state = 92, .external_lex_state = 2}, [297] = {.lex_state = 92, .external_lex_state = 2}, [298] = {.lex_state = 92, .external_lex_state = 2}, - [299] = {.lex_state = 92, .external_lex_state = 2}, + [299] = {.lex_state = 94, .external_lex_state = 2}, [300] = {.lex_state = 92, .external_lex_state = 2}, [301] = {.lex_state = 92, .external_lex_state = 2}, [302] = {.lex_state = 92, .external_lex_state = 2}, - [303] = {.lex_state = 92, .external_lex_state = 2}, + [303] = {.lex_state = 94, .external_lex_state = 2}, [304] = {.lex_state = 92, .external_lex_state = 2}, [305] = {.lex_state = 92, .external_lex_state = 2}, [306] = {.lex_state = 92, .external_lex_state = 2}, [307] = {.lex_state = 92, .external_lex_state = 2}, - [308] = {.lex_state = 258, .external_lex_state = 2}, + [308] = {.lex_state = 92, .external_lex_state = 2}, [309] = {.lex_state = 92, .external_lex_state = 2}, [310] = {.lex_state = 92, .external_lex_state = 2}, - [311] = {.lex_state = 94, .external_lex_state = 2}, + [311] = {.lex_state = 92, .external_lex_state = 2}, [312] = {.lex_state = 92, .external_lex_state = 2}, - [313] = {.lex_state = 92, .external_lex_state = 2}, + [313] = {.lex_state = 98, .external_lex_state = 2}, [314] = {.lex_state = 92, .external_lex_state = 2}, [315] = {.lex_state = 92, .external_lex_state = 2}, [316] = {.lex_state = 92, .external_lex_state = 2}, - [317] = {.lex_state = 258, .external_lex_state = 2}, + [317] = {.lex_state = 92, .external_lex_state = 2}, [318] = {.lex_state = 92, .external_lex_state = 2}, - [319] = {.lex_state = 94, .external_lex_state = 2}, + [319] = {.lex_state = 92, .external_lex_state = 2}, [320] = {.lex_state = 92, .external_lex_state = 2}, [321] = {.lex_state = 92, .external_lex_state = 2}, [322] = {.lex_state = 92, .external_lex_state = 2}, - [323] = {.lex_state = 98, .external_lex_state = 2}, + [323] = {.lex_state = 92, .external_lex_state = 2}, [324] = {.lex_state = 92, .external_lex_state = 2}, [325] = {.lex_state = 92, .external_lex_state = 2}, [326] = {.lex_state = 92, .external_lex_state = 2}, [327] = {.lex_state = 92, .external_lex_state = 2}, - [328] = {.lex_state = 92, .external_lex_state = 2}, - [329] = {.lex_state = 92, .external_lex_state = 2}, + [328] = {.lex_state = 98, .external_lex_state = 2}, + [329] = {.lex_state = 94, .external_lex_state = 2}, [330] = {.lex_state = 92, .external_lex_state = 2}, - [331] = {.lex_state = 94, .external_lex_state = 2}, - [332] = {.lex_state = 92, .external_lex_state = 2}, - [333] = {.lex_state = 94, .external_lex_state = 2}, + [331] = {.lex_state = 92, .external_lex_state = 2}, + [332] = {.lex_state = 94, .external_lex_state = 2}, + [333] = {.lex_state = 92, .external_lex_state = 2}, [334] = {.lex_state = 92, .external_lex_state = 2}, - [335] = {.lex_state = 92, .external_lex_state = 2}, - [336] = {.lex_state = 92, .external_lex_state = 2}, - [337] = {.lex_state = 98, .external_lex_state = 2}, - [338] = {.lex_state = 92, .external_lex_state = 2}, - [339] = {.lex_state = 92, .external_lex_state = 2}, + [335] = {.lex_state = 258, .external_lex_state = 2}, + [336] = {.lex_state = 94, .external_lex_state = 2}, + [337] = {.lex_state = 92, .external_lex_state = 2}, + [338] = {.lex_state = 94, .external_lex_state = 2}, + [339] = {.lex_state = 94, .external_lex_state = 2}, [340] = {.lex_state = 92, .external_lex_state = 2}, [341] = {.lex_state = 92, .external_lex_state = 2}, - [342] = {.lex_state = 92, .external_lex_state = 2}, + [342] = {.lex_state = 94, .external_lex_state = 2}, [343] = {.lex_state = 92, .external_lex_state = 2}, - [344] = {.lex_state = 92, .external_lex_state = 2}, + [344] = {.lex_state = 94, .external_lex_state = 2}, [345] = {.lex_state = 258, .external_lex_state = 2}, - [346] = {.lex_state = 98, .external_lex_state = 2}, - [347] = {.lex_state = 98, .external_lex_state = 2}, - [348] = {.lex_state = 258, .external_lex_state = 2}, - [349] = {.lex_state = 258, .external_lex_state = 2}, + [346] = {.lex_state = 258, .external_lex_state = 2}, + [347] = {.lex_state = 258, .external_lex_state = 2}, + [348] = {.lex_state = 98, .external_lex_state = 2}, + [349] = {.lex_state = 98, .external_lex_state = 2}, [350] = {.lex_state = 98, .external_lex_state = 2}, [351] = {.lex_state = 258, .external_lex_state = 2}, [352] = {.lex_state = 258, .external_lex_state = 2}, @@ -18800,34 +18830,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [945] = {.lex_state = 86, .external_lex_state = 3}, [946] = {.lex_state = 260, .external_lex_state = 3}, [947] = {.lex_state = 260, .external_lex_state = 3}, - [948] = {.lex_state = 260, .external_lex_state = 2}, - [949] = {.lex_state = 260, .external_lex_state = 2}, + [948] = {.lex_state = 260, .external_lex_state = 3}, + [949] = {.lex_state = 260, .external_lex_state = 3}, [950] = {.lex_state = 260, .external_lex_state = 3}, [951] = {.lex_state = 260, .external_lex_state = 3}, [952] = {.lex_state = 260, .external_lex_state = 3}, [953] = {.lex_state = 260, .external_lex_state = 3}, - [954] = {.lex_state = 260, .external_lex_state = 3}, - [955] = {.lex_state = 260, .external_lex_state = 3}, + [954] = {.lex_state = 260, .external_lex_state = 2}, + [955] = {.lex_state = 260, .external_lex_state = 2}, [956] = {.lex_state = 260, .external_lex_state = 3}, [957] = {.lex_state = 260, .external_lex_state = 3}, [958] = {.lex_state = 260, .external_lex_state = 3}, [959] = {.lex_state = 260, .external_lex_state = 3}, [960] = {.lex_state = 260, .external_lex_state = 3}, - [961] = {.lex_state = 86, .external_lex_state = 3}, + [961] = {.lex_state = 260, .external_lex_state = 3}, [962] = {.lex_state = 260, .external_lex_state = 3}, [963] = {.lex_state = 260, .external_lex_state = 3}, - [964] = {.lex_state = 86, .external_lex_state = 3}, + [964] = {.lex_state = 260, .external_lex_state = 3}, [965] = {.lex_state = 260, .external_lex_state = 3}, - [966] = {.lex_state = 86, .external_lex_state = 3}, + [966] = {.lex_state = 260, .external_lex_state = 3}, [967] = {.lex_state = 260, .external_lex_state = 3}, [968] = {.lex_state = 86, .external_lex_state = 3}, [969] = {.lex_state = 86, .external_lex_state = 3}, [970] = {.lex_state = 260, .external_lex_state = 3}, [971] = {.lex_state = 86, .external_lex_state = 3}, - [972] = {.lex_state = 86, .external_lex_state = 3}, - [973] = {.lex_state = 86, .external_lex_state = 3}, - [974] = {.lex_state = 86, .external_lex_state = 3}, - [975] = {.lex_state = 86, .external_lex_state = 3}, + [972] = {.lex_state = 260, .external_lex_state = 3}, + [973] = {.lex_state = 260, .external_lex_state = 3}, + [974] = {.lex_state = 260, .external_lex_state = 3}, + [975] = {.lex_state = 260, .external_lex_state = 3}, [976] = {.lex_state = 260, .external_lex_state = 3}, [977] = {.lex_state = 260, .external_lex_state = 3}, [978] = {.lex_state = 260, .external_lex_state = 3}, @@ -18835,39 +18865,39 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [980] = {.lex_state = 260, .external_lex_state = 3}, [981] = {.lex_state = 260, .external_lex_state = 3}, [982] = {.lex_state = 260, .external_lex_state = 3}, - [983] = {.lex_state = 260, .external_lex_state = 3}, - [984] = {.lex_state = 260, .external_lex_state = 3}, + [983] = {.lex_state = 86, .external_lex_state = 3}, + [984] = {.lex_state = 86, .external_lex_state = 3}, [985] = {.lex_state = 86, .external_lex_state = 3}, - [986] = {.lex_state = 260, .external_lex_state = 3}, + [986] = {.lex_state = 86, .external_lex_state = 3}, [987] = {.lex_state = 86, .external_lex_state = 3}, [988] = {.lex_state = 86, .external_lex_state = 3}, - [989] = {.lex_state = 260, .external_lex_state = 3}, - [990] = {.lex_state = 260, .external_lex_state = 3}, - [991] = {.lex_state = 260, .external_lex_state = 3}, + [989] = {.lex_state = 86, .external_lex_state = 3}, + [990] = {.lex_state = 86, .external_lex_state = 3}, + [991] = {.lex_state = 86, .external_lex_state = 3}, [992] = {.lex_state = 86, .external_lex_state = 3}, - [993] = {.lex_state = 260, .external_lex_state = 3}, + [993] = {.lex_state = 86, .external_lex_state = 3}, [994] = {.lex_state = 89, .external_lex_state = 3}, [995] = {.lex_state = 89, .external_lex_state = 3}, - [996] = {.lex_state = 89, .external_lex_state = 3}, - [997] = {.lex_state = 86, .external_lex_state = 2}, + [996] = {.lex_state = 86, .external_lex_state = 2}, + [997] = {.lex_state = 89, .external_lex_state = 3}, [998] = {.lex_state = 89, .external_lex_state = 3}, - [999] = {.lex_state = 89, .external_lex_state = 3}, + [999] = {.lex_state = 260, .external_lex_state = 2}, [1000] = {.lex_state = 89, .external_lex_state = 3}, - [1001] = {.lex_state = 86, .external_lex_state = 2}, + [1001] = {.lex_state = 89, .external_lex_state = 3}, [1002] = {.lex_state = 89, .external_lex_state = 3}, - [1003] = {.lex_state = 89, .external_lex_state = 3}, - [1004] = {.lex_state = 89, .external_lex_state = 3}, + [1003] = {.lex_state = 260, .external_lex_state = 2}, + [1004] = {.lex_state = 260, .external_lex_state = 2}, [1005] = {.lex_state = 89, .external_lex_state = 3}, - [1006] = {.lex_state = 89, .external_lex_state = 3}, + [1006] = {.lex_state = 260, .external_lex_state = 2}, [1007] = {.lex_state = 89, .external_lex_state = 3}, - [1008] = {.lex_state = 260, .external_lex_state = 2}, + [1008] = {.lex_state = 89, .external_lex_state = 3}, [1009] = {.lex_state = 89, .external_lex_state = 3}, - [1010] = {.lex_state = 260, .external_lex_state = 2}, + [1010] = {.lex_state = 86, .external_lex_state = 2}, [1011] = {.lex_state = 89, .external_lex_state = 3}, [1012] = {.lex_state = 89, .external_lex_state = 3}, - [1013] = {.lex_state = 260, .external_lex_state = 2}, + [1013] = {.lex_state = 89, .external_lex_state = 3}, [1014] = {.lex_state = 89, .external_lex_state = 3}, - [1015] = {.lex_state = 260, .external_lex_state = 2}, + [1015] = {.lex_state = 89, .external_lex_state = 3}, [1016] = {.lex_state = 89, .external_lex_state = 2}, [1017] = {.lex_state = 89, .external_lex_state = 2}, [1018] = {.lex_state = 79, .external_lex_state = 2}, @@ -18875,28 +18905,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1020] = {.lex_state = 94, .external_lex_state = 2}, [1021] = {.lex_state = 94, .external_lex_state = 2}, [1022] = {.lex_state = 94, .external_lex_state = 2}, - [1023] = {.lex_state = 94, .external_lex_state = 2}, - [1024] = {.lex_state = 79, .external_lex_state = 2}, + [1023] = {.lex_state = 79, .external_lex_state = 2}, + [1024] = {.lex_state = 94, .external_lex_state = 2}, [1025] = {.lex_state = 94, .external_lex_state = 2}, [1026] = {.lex_state = 92, .external_lex_state = 2}, [1027] = {.lex_state = 92, .external_lex_state = 2}, [1028] = {.lex_state = 258, .external_lex_state = 2}, [1029] = {.lex_state = 258, .external_lex_state = 2}, [1030] = {.lex_state = 258, .external_lex_state = 2}, - [1031] = {.lex_state = 98, .external_lex_state = 2}, - [1032] = {.lex_state = 258, .external_lex_state = 2}, + [1031] = {.lex_state = 258, .external_lex_state = 2}, + [1032] = {.lex_state = 98, .external_lex_state = 2}, [1033] = {.lex_state = 258, .external_lex_state = 2}, [1034] = {.lex_state = 98, .external_lex_state = 2}, - [1035] = {.lex_state = 92, .external_lex_state = 2}, - [1036] = {.lex_state = 98, .external_lex_state = 2}, - [1037] = {.lex_state = 258, .external_lex_state = 2}, + [1035] = {.lex_state = 98, .external_lex_state = 2}, + [1036] = {.lex_state = 258, .external_lex_state = 2}, + [1037] = {.lex_state = 92, .external_lex_state = 2}, [1038] = {.lex_state = 100, .external_lex_state = 4}, [1039] = {.lex_state = 100, .external_lex_state = 4}, - [1040] = {.lex_state = 258, .external_lex_state = 2}, + [1040] = {.lex_state = 100, .external_lex_state = 4}, [1041] = {.lex_state = 100, .external_lex_state = 4}, [1042] = {.lex_state = 100, .external_lex_state = 4}, - [1043] = {.lex_state = 100, .external_lex_state = 4}, - [1044] = {.lex_state = 100, .external_lex_state = 4}, + [1043] = {.lex_state = 258, .external_lex_state = 2}, + [1044] = {.lex_state = 258, .external_lex_state = 2}, [1045] = {.lex_state = 100, .external_lex_state = 4}, [1046] = {.lex_state = 100, .external_lex_state = 4}, [1047] = {.lex_state = 100, .external_lex_state = 4}, @@ -18908,10 +18938,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1053] = {.lex_state = 100, .external_lex_state = 4}, [1054] = {.lex_state = 100, .external_lex_state = 4}, [1055] = {.lex_state = 100, .external_lex_state = 4}, - [1056] = {.lex_state = 258, .external_lex_state = 2}, + [1056] = {.lex_state = 100, .external_lex_state = 4}, [1057] = {.lex_state = 100, .external_lex_state = 4}, [1058] = {.lex_state = 258, .external_lex_state = 2}, - [1059] = {.lex_state = 102, .external_lex_state = 4}, + [1059] = {.lex_state = 258, .external_lex_state = 2}, [1060] = {.lex_state = 102, .external_lex_state = 4}, [1061] = {.lex_state = 102, .external_lex_state = 4}, [1062] = {.lex_state = 102, .external_lex_state = 4}, @@ -18935,32 +18965,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1080] = {.lex_state = 102, .external_lex_state = 4}, [1081] = {.lex_state = 102, .external_lex_state = 4}, [1082] = {.lex_state = 102, .external_lex_state = 4}, - [1083] = {.lex_state = 102, .external_lex_state = 5}, + [1083] = {.lex_state = 102, .external_lex_state = 4}, [1084] = {.lex_state = 102, .external_lex_state = 5}, [1085] = {.lex_state = 102, .external_lex_state = 5}, [1086] = {.lex_state = 102, .external_lex_state = 5}, [1087] = {.lex_state = 102, .external_lex_state = 5}, [1088] = {.lex_state = 102, .external_lex_state = 5}, [1089] = {.lex_state = 102, .external_lex_state = 5}, - [1090] = {.lex_state = 102, .external_lex_state = 4}, - [1091] = {.lex_state = 102, .external_lex_state = 4}, + [1090] = {.lex_state = 102, .external_lex_state = 5}, + [1091] = {.lex_state = 262, .external_lex_state = 5}, [1092] = {.lex_state = 102, .external_lex_state = 5}, - [1093] = {.lex_state = 102, .external_lex_state = 5}, + [1093] = {.lex_state = 102, .external_lex_state = 4}, [1094] = {.lex_state = 102, .external_lex_state = 5}, [1095] = {.lex_state = 102, .external_lex_state = 5}, - [1096] = {.lex_state = 262, .external_lex_state = 5}, + [1096] = {.lex_state = 102, .external_lex_state = 5}, [1097] = {.lex_state = 262, .external_lex_state = 5}, [1098] = {.lex_state = 102, .external_lex_state = 5}, [1099] = {.lex_state = 102, .external_lex_state = 5}, - [1100] = {.lex_state = 102, .external_lex_state = 5}, - [1101] = {.lex_state = 102, .external_lex_state = 5}, + [1100] = {.lex_state = 102, .external_lex_state = 4}, + [1101] = {.lex_state = 102, .external_lex_state = 4}, [1102] = {.lex_state = 102, .external_lex_state = 5}, - [1103] = {.lex_state = 102, .external_lex_state = 4}, - [1104] = {.lex_state = 262, .external_lex_state = 5}, - [1105] = {.lex_state = 262, .external_lex_state = 5}, - [1106] = {.lex_state = 262, .external_lex_state = 5}, - [1107] = {.lex_state = 102, .external_lex_state = 4}, - [1108] = {.lex_state = 102, .external_lex_state = 4}, + [1103] = {.lex_state = 102, .external_lex_state = 5}, + [1104] = {.lex_state = 102, .external_lex_state = 5}, + [1105] = {.lex_state = 102, .external_lex_state = 5}, + [1106] = {.lex_state = 102, .external_lex_state = 5}, + [1107] = {.lex_state = 102, .external_lex_state = 5}, + [1108] = {.lex_state = 102, .external_lex_state = 5}, [1109] = {.lex_state = 102, .external_lex_state = 5}, [1110] = {.lex_state = 102, .external_lex_state = 5}, [1111] = {.lex_state = 102, .external_lex_state = 5}, @@ -18968,2275 +18998,2275 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1113] = {.lex_state = 102, .external_lex_state = 5}, [1114] = {.lex_state = 102, .external_lex_state = 5}, [1115] = {.lex_state = 262, .external_lex_state = 5}, - [1116] = {.lex_state = 262, .external_lex_state = 5}, - [1117] = {.lex_state = 102, .external_lex_state = 5}, - [1118] = {.lex_state = 102, .external_lex_state = 5}, - [1119] = {.lex_state = 102, .external_lex_state = 5}, + [1116] = {.lex_state = 102, .external_lex_state = 5}, + [1117] = {.lex_state = 102, .external_lex_state = 4}, + [1118] = {.lex_state = 262, .external_lex_state = 5}, + [1119] = {.lex_state = 262, .external_lex_state = 5}, [1120] = {.lex_state = 102, .external_lex_state = 5}, - [1121] = {.lex_state = 102, .external_lex_state = 5}, + [1121] = {.lex_state = 262, .external_lex_state = 5}, [1122] = {.lex_state = 102, .external_lex_state = 5}, [1123] = {.lex_state = 102, .external_lex_state = 5}, - [1124] = {.lex_state = 102, .external_lex_state = 4}, + [1124] = {.lex_state = 102, .external_lex_state = 5}, [1125] = {.lex_state = 102, .external_lex_state = 5}, - [1126] = {.lex_state = 102, .external_lex_state = 5}, - [1127] = {.lex_state = 102, .external_lex_state = 5}, + [1126] = {.lex_state = 262, .external_lex_state = 5}, + [1127] = {.lex_state = 102, .external_lex_state = 4}, [1128] = {.lex_state = 102, .external_lex_state = 5}, - [1129] = {.lex_state = 102, .external_lex_state = 4}, - [1130] = {.lex_state = 102, .external_lex_state = 5}, + [1129] = {.lex_state = 102, .external_lex_state = 5}, + [1130] = {.lex_state = 102, .external_lex_state = 4}, [1131] = {.lex_state = 102, .external_lex_state = 5}, - [1132] = {.lex_state = 102, .external_lex_state = 4}, + [1132] = {.lex_state = 102, .external_lex_state = 5}, [1133] = {.lex_state = 102, .external_lex_state = 5}, - [1134] = {.lex_state = 102, .external_lex_state = 5}, - [1135] = {.lex_state = 102, .external_lex_state = 5}, - [1136] = {.lex_state = 262, .external_lex_state = 5}, - [1137] = {.lex_state = 107, .external_lex_state = 5}, - [1138] = {.lex_state = 102, .external_lex_state = 5}, - [1139] = {.lex_state = 262, .external_lex_state = 5}, + [1134] = {.lex_state = 102, .external_lex_state = 4}, + [1135] = {.lex_state = 102, .external_lex_state = 4}, + [1136] = {.lex_state = 102, .external_lex_state = 5}, + [1137] = {.lex_state = 102, .external_lex_state = 5}, + [1138] = {.lex_state = 107, .external_lex_state = 5}, + [1139] = {.lex_state = 102, .external_lex_state = 5}, [1140] = {.lex_state = 102, .external_lex_state = 5}, - [1141] = {.lex_state = 107, .external_lex_state = 5}, - [1142] = {.lex_state = 107, .external_lex_state = 5}, - [1143] = {.lex_state = 107, .external_lex_state = 5}, - [1144] = {.lex_state = 107, .external_lex_state = 5}, - [1145] = {.lex_state = 262, .external_lex_state = 5}, - [1146] = {.lex_state = 262, .external_lex_state = 5}, + [1141] = {.lex_state = 102, .external_lex_state = 5}, + [1142] = {.lex_state = 102, .external_lex_state = 5}, + [1143] = {.lex_state = 102, .external_lex_state = 5}, + [1144] = {.lex_state = 102, .external_lex_state = 5}, + [1145] = {.lex_state = 102, .external_lex_state = 5}, + [1146] = {.lex_state = 102, .external_lex_state = 5}, [1147] = {.lex_state = 102, .external_lex_state = 5}, - [1148] = {.lex_state = 262, .external_lex_state = 5}, + [1148] = {.lex_state = 102, .external_lex_state = 5}, [1149] = {.lex_state = 262, .external_lex_state = 5}, - [1150] = {.lex_state = 262, .external_lex_state = 5}, + [1150] = {.lex_state = 102, .external_lex_state = 5}, [1151] = {.lex_state = 262, .external_lex_state = 5}, - [1152] = {.lex_state = 262, .external_lex_state = 5}, - [1153] = {.lex_state = 262, .external_lex_state = 5}, - [1154] = {.lex_state = 262, .external_lex_state = 5}, - [1155] = {.lex_state = 262, .external_lex_state = 5}, - [1156] = {.lex_state = 262, .external_lex_state = 5}, - [1157] = {.lex_state = 262, .external_lex_state = 5}, - [1158] = {.lex_state = 107, .external_lex_state = 5}, - [1159] = {.lex_state = 107, .external_lex_state = 5}, - [1160] = {.lex_state = 262, .external_lex_state = 5}, - [1161] = {.lex_state = 107, .external_lex_state = 5}, - [1162] = {.lex_state = 107, .external_lex_state = 5}, - [1163] = {.lex_state = 107, .external_lex_state = 5}, - [1164] = {.lex_state = 107, .external_lex_state = 5}, - [1165] = {.lex_state = 107, .external_lex_state = 5}, - [1166] = {.lex_state = 107, .external_lex_state = 5}, - [1167] = {.lex_state = 107, .external_lex_state = 5}, - [1168] = {.lex_state = 107, .external_lex_state = 5}, - [1169] = {.lex_state = 107, .external_lex_state = 5}, - [1170] = {.lex_state = 107, .external_lex_state = 5}, - [1171] = {.lex_state = 107, .external_lex_state = 5}, - [1172] = {.lex_state = 107, .external_lex_state = 5}, - [1173] = {.lex_state = 107, .external_lex_state = 5}, - [1174] = {.lex_state = 107, .external_lex_state = 5}, - [1175] = {.lex_state = 107, .external_lex_state = 5}, - [1176] = {.lex_state = 107, .external_lex_state = 5}, - [1177] = {.lex_state = 107, .external_lex_state = 5}, - [1178] = {.lex_state = 107, .external_lex_state = 5}, - [1179] = {.lex_state = 107, .external_lex_state = 5}, - [1180] = {.lex_state = 107, .external_lex_state = 5}, - [1181] = {.lex_state = 107, .external_lex_state = 5}, - [1182] = {.lex_state = 107, .external_lex_state = 5}, - [1183] = {.lex_state = 107, .external_lex_state = 5}, - [1184] = {.lex_state = 107, .external_lex_state = 5}, - [1185] = {.lex_state = 107, .external_lex_state = 5}, - [1186] = {.lex_state = 107, .external_lex_state = 5}, - [1187] = {.lex_state = 107, .external_lex_state = 5}, - [1188] = {.lex_state = 107, .external_lex_state = 5}, - [1189] = {.lex_state = 107, .external_lex_state = 5}, - [1190] = {.lex_state = 262, .external_lex_state = 5}, + [1152] = {.lex_state = 102, .external_lex_state = 5}, + [1153] = {.lex_state = 102, .external_lex_state = 5}, + [1154] = {.lex_state = 107, .external_lex_state = 5}, + [1155] = {.lex_state = 107, .external_lex_state = 5}, + [1156] = {.lex_state = 102, .external_lex_state = 5}, + [1157] = {.lex_state = 102, .external_lex_state = 5}, + [1158] = {.lex_state = 102, .external_lex_state = 5}, + [1159] = {.lex_state = 262, .external_lex_state = 5}, + [1160] = {.lex_state = 102, .external_lex_state = 5}, + [1161] = {.lex_state = 102, .external_lex_state = 5}, + [1162] = {.lex_state = 262, .external_lex_state = 5}, + [1163] = {.lex_state = 102, .external_lex_state = 5}, + [1164] = {.lex_state = 102, .external_lex_state = 5}, + [1165] = {.lex_state = 102, .external_lex_state = 5}, + [1166] = {.lex_state = 102, .external_lex_state = 5}, + [1167] = {.lex_state = 102, .external_lex_state = 5}, + [1168] = {.lex_state = 102, .external_lex_state = 5}, + [1169] = {.lex_state = 102, .external_lex_state = 5}, + [1170] = {.lex_state = 102, .external_lex_state = 5}, + [1171] = {.lex_state = 102, .external_lex_state = 5}, + [1172] = {.lex_state = 102, .external_lex_state = 5}, + [1173] = {.lex_state = 102, .external_lex_state = 5}, + [1174] = {.lex_state = 102, .external_lex_state = 5}, + [1175] = {.lex_state = 102, .external_lex_state = 5}, + [1176] = {.lex_state = 102, .external_lex_state = 5}, + [1177] = {.lex_state = 102, .external_lex_state = 5}, + [1178] = {.lex_state = 102, .external_lex_state = 5}, + [1179] = {.lex_state = 262, .external_lex_state = 5}, + [1180] = {.lex_state = 262, .external_lex_state = 5}, + [1181] = {.lex_state = 102, .external_lex_state = 5}, + [1182] = {.lex_state = 102, .external_lex_state = 5}, + [1183] = {.lex_state = 102, .external_lex_state = 5}, + [1184] = {.lex_state = 102, .external_lex_state = 5}, + [1185] = {.lex_state = 102, .external_lex_state = 5}, + [1186] = {.lex_state = 102, .external_lex_state = 5}, + [1187] = {.lex_state = 102, .external_lex_state = 5}, + [1188] = {.lex_state = 102, .external_lex_state = 5}, + [1189] = {.lex_state = 102, .external_lex_state = 5}, + [1190] = {.lex_state = 102, .external_lex_state = 5}, [1191] = {.lex_state = 107, .external_lex_state = 5}, - [1192] = {.lex_state = 102, .external_lex_state = 5}, - [1193] = {.lex_state = 262, .external_lex_state = 5}, + [1192] = {.lex_state = 262, .external_lex_state = 5}, + [1193] = {.lex_state = 107, .external_lex_state = 5}, [1194] = {.lex_state = 262, .external_lex_state = 5}, - [1195] = {.lex_state = 262, .external_lex_state = 5}, + [1195] = {.lex_state = 102, .external_lex_state = 5}, [1196] = {.lex_state = 102, .external_lex_state = 5}, - [1197] = {.lex_state = 102, .external_lex_state = 5}, - [1198] = {.lex_state = 102, .external_lex_state = 5}, - [1199] = {.lex_state = 102, .external_lex_state = 5}, - [1200] = {.lex_state = 102, .external_lex_state = 5}, - [1201] = {.lex_state = 102, .external_lex_state = 5}, - [1202] = {.lex_state = 102, .external_lex_state = 5}, + [1197] = {.lex_state = 107, .external_lex_state = 5}, + [1198] = {.lex_state = 107, .external_lex_state = 5}, + [1199] = {.lex_state = 107, .external_lex_state = 5}, + [1200] = {.lex_state = 107, .external_lex_state = 5}, + [1201] = {.lex_state = 107, .external_lex_state = 5}, + [1202] = {.lex_state = 107, .external_lex_state = 5}, [1203] = {.lex_state = 102, .external_lex_state = 5}, [1204] = {.lex_state = 102, .external_lex_state = 5}, [1205] = {.lex_state = 102, .external_lex_state = 5}, - [1206] = {.lex_state = 262, .external_lex_state = 5}, - [1207] = {.lex_state = 262, .external_lex_state = 5}, - [1208] = {.lex_state = 102, .external_lex_state = 5}, - [1209] = {.lex_state = 102, .external_lex_state = 5}, + [1206] = {.lex_state = 107, .external_lex_state = 5}, + [1207] = {.lex_state = 107, .external_lex_state = 5}, + [1208] = {.lex_state = 107, .external_lex_state = 5}, + [1209] = {.lex_state = 107, .external_lex_state = 5}, [1210] = {.lex_state = 102, .external_lex_state = 5}, [1211] = {.lex_state = 102, .external_lex_state = 5}, [1212] = {.lex_state = 102, .external_lex_state = 5}, - [1213] = {.lex_state = 102, .external_lex_state = 5}, - [1214] = {.lex_state = 102, .external_lex_state = 5}, + [1213] = {.lex_state = 107, .external_lex_state = 5}, + [1214] = {.lex_state = 107, .external_lex_state = 5}, [1215] = {.lex_state = 102, .external_lex_state = 5}, [1216] = {.lex_state = 102, .external_lex_state = 5}, [1217] = {.lex_state = 102, .external_lex_state = 5}, [1218] = {.lex_state = 102, .external_lex_state = 5}, - [1219] = {.lex_state = 102, .external_lex_state = 5}, + [1219] = {.lex_state = 262, .external_lex_state = 5}, [1220] = {.lex_state = 102, .external_lex_state = 5}, - [1221] = {.lex_state = 102, .external_lex_state = 5}, - [1222] = {.lex_state = 102, .external_lex_state = 5}, - [1223] = {.lex_state = 102, .external_lex_state = 5}, + [1221] = {.lex_state = 102, .external_lex_state = 4}, + [1222] = {.lex_state = 107, .external_lex_state = 5}, + [1223] = {.lex_state = 107, .external_lex_state = 5}, [1224] = {.lex_state = 102, .external_lex_state = 5}, [1225] = {.lex_state = 102, .external_lex_state = 5}, - [1226] = {.lex_state = 102, .external_lex_state = 5}, - [1227] = {.lex_state = 102, .external_lex_state = 5}, - [1228] = {.lex_state = 102, .external_lex_state = 5}, - [1229] = {.lex_state = 102, .external_lex_state = 5}, + [1226] = {.lex_state = 107, .external_lex_state = 5}, + [1227] = {.lex_state = 107, .external_lex_state = 5}, + [1228] = {.lex_state = 107, .external_lex_state = 5}, + [1229] = {.lex_state = 102, .external_lex_state = 4}, [1230] = {.lex_state = 102, .external_lex_state = 5}, - [1231] = {.lex_state = 102, .external_lex_state = 5}, - [1232] = {.lex_state = 102, .external_lex_state = 5}, - [1233] = {.lex_state = 102, .external_lex_state = 5}, - [1234] = {.lex_state = 102, .external_lex_state = 5}, + [1231] = {.lex_state = 262, .external_lex_state = 5}, + [1232] = {.lex_state = 262, .external_lex_state = 5}, + [1233] = {.lex_state = 107, .external_lex_state = 5}, + [1234] = {.lex_state = 102, .external_lex_state = 4}, [1235] = {.lex_state = 102, .external_lex_state = 5}, - [1236] = {.lex_state = 102, .external_lex_state = 5}, + [1236] = {.lex_state = 107, .external_lex_state = 5}, [1237] = {.lex_state = 262, .external_lex_state = 5}, - [1238] = {.lex_state = 102, .external_lex_state = 5}, - [1239] = {.lex_state = 262, .external_lex_state = 5}, - [1240] = {.lex_state = 262, .external_lex_state = 5}, + [1238] = {.lex_state = 262, .external_lex_state = 5}, + [1239] = {.lex_state = 102, .external_lex_state = 5}, + [1240] = {.lex_state = 102, .external_lex_state = 5}, [1241] = {.lex_state = 102, .external_lex_state = 5}, - [1242] = {.lex_state = 262, .external_lex_state = 5}, + [1242] = {.lex_state = 102, .external_lex_state = 5}, [1243] = {.lex_state = 102, .external_lex_state = 5}, [1244] = {.lex_state = 102, .external_lex_state = 5}, [1245] = {.lex_state = 102, .external_lex_state = 5}, [1246] = {.lex_state = 102, .external_lex_state = 5}, - [1247] = {.lex_state = 102, .external_lex_state = 5}, - [1248] = {.lex_state = 102, .external_lex_state = 5}, + [1247] = {.lex_state = 262, .external_lex_state = 5}, + [1248] = {.lex_state = 107, .external_lex_state = 5}, [1249] = {.lex_state = 102, .external_lex_state = 5}, [1250] = {.lex_state = 102, .external_lex_state = 5}, - [1251] = {.lex_state = 102, .external_lex_state = 5}, - [1252] = {.lex_state = 102, .external_lex_state = 5}, + [1251] = {.lex_state = 107, .external_lex_state = 5}, + [1252] = {.lex_state = 107, .external_lex_state = 5}, [1253] = {.lex_state = 102, .external_lex_state = 5}, - [1254] = {.lex_state = 102, .external_lex_state = 5}, - [1255] = {.lex_state = 102, .external_lex_state = 5}, + [1254] = {.lex_state = 107, .external_lex_state = 5}, + [1255] = {.lex_state = 107, .external_lex_state = 5}, [1256] = {.lex_state = 102, .external_lex_state = 5}, - [1257] = {.lex_state = 102, .external_lex_state = 5}, - [1258] = {.lex_state = 102, .external_lex_state = 5}, - [1259] = {.lex_state = 102, .external_lex_state = 5}, - [1260] = {.lex_state = 102, .external_lex_state = 4}, - [1261] = {.lex_state = 102, .external_lex_state = 5}, + [1257] = {.lex_state = 262, .external_lex_state = 5}, + [1258] = {.lex_state = 262, .external_lex_state = 5}, + [1259] = {.lex_state = 262, .external_lex_state = 5}, + [1260] = {.lex_state = 107, .external_lex_state = 5}, + [1261] = {.lex_state = 262, .external_lex_state = 5}, [1262] = {.lex_state = 102, .external_lex_state = 5}, - [1263] = {.lex_state = 102, .external_lex_state = 4}, - [1264] = {.lex_state = 102, .external_lex_state = 4}, - [1265] = {.lex_state = 102, .external_lex_state = 5}, - [1266] = {.lex_state = 102, .external_lex_state = 5}, + [1263] = {.lex_state = 102, .external_lex_state = 5}, + [1264] = {.lex_state = 102, .external_lex_state = 5}, + [1265] = {.lex_state = 262, .external_lex_state = 5}, + [1266] = {.lex_state = 107, .external_lex_state = 5}, [1267] = {.lex_state = 102, .external_lex_state = 5}, [1268] = {.lex_state = 107, .external_lex_state = 5}, - [1269] = {.lex_state = 107, .external_lex_state = 5}, - [1270] = {.lex_state = 107, .external_lex_state = 5}, - [1271] = {.lex_state = 107, .external_lex_state = 5}, + [1269] = {.lex_state = 102, .external_lex_state = 5}, + [1270] = {.lex_state = 262, .external_lex_state = 5}, + [1271] = {.lex_state = 262, .external_lex_state = 5}, [1272] = {.lex_state = 262, .external_lex_state = 5}, [1273] = {.lex_state = 262, .external_lex_state = 5}, - [1274] = {.lex_state = 262, .external_lex_state = 5}, - [1275] = {.lex_state = 262, .external_lex_state = 5}, - [1276] = {.lex_state = 102, .external_lex_state = 5}, - [1277] = {.lex_state = 102, .external_lex_state = 5}, - [1278] = {.lex_state = 262, .external_lex_state = 5}, - [1279] = {.lex_state = 262, .external_lex_state = 5}, - [1280] = {.lex_state = 102, .external_lex_state = 4}, - [1281] = {.lex_state = 110, .external_lex_state = 5}, - [1282] = {.lex_state = 110, .external_lex_state = 5}, - [1283] = {.lex_state = 110, .external_lex_state = 5}, - [1284] = {.lex_state = 110, .external_lex_state = 5}, - [1285] = {.lex_state = 110, .external_lex_state = 5}, - [1286] = {.lex_state = 110, .external_lex_state = 5}, - [1287] = {.lex_state = 110, .external_lex_state = 5}, - [1288] = {.lex_state = 110, .external_lex_state = 5}, - [1289] = {.lex_state = 110, .external_lex_state = 5}, - [1290] = {.lex_state = 110, .external_lex_state = 5}, - [1291] = {.lex_state = 110, .external_lex_state = 5}, - [1292] = {.lex_state = 110, .external_lex_state = 5}, - [1293] = {.lex_state = 110, .external_lex_state = 5}, + [1274] = {.lex_state = 107, .external_lex_state = 5}, + [1275] = {.lex_state = 102, .external_lex_state = 5}, + [1276] = {.lex_state = 262, .external_lex_state = 5}, + [1277] = {.lex_state = 262, .external_lex_state = 5}, + [1278] = {.lex_state = 102, .external_lex_state = 5}, + [1279] = {.lex_state = 102, .external_lex_state = 5}, + [1280] = {.lex_state = 102, .external_lex_state = 5}, + [1281] = {.lex_state = 262, .external_lex_state = 5}, + [1282] = {.lex_state = 107, .external_lex_state = 5}, + [1283] = {.lex_state = 107, .external_lex_state = 5}, + [1284] = {.lex_state = 262, .external_lex_state = 5}, + [1285] = {.lex_state = 102, .external_lex_state = 5}, + [1286] = {.lex_state = 102, .external_lex_state = 5}, + [1287] = {.lex_state = 102, .external_lex_state = 5}, + [1288] = {.lex_state = 107, .external_lex_state = 5}, + [1289] = {.lex_state = 262, .external_lex_state = 5}, + [1290] = {.lex_state = 262, .external_lex_state = 5}, + [1291] = {.lex_state = 102, .external_lex_state = 5}, + [1292] = {.lex_state = 262, .external_lex_state = 5}, + [1293] = {.lex_state = 102, .external_lex_state = 5}, [1294] = {.lex_state = 262, .external_lex_state = 5}, - [1295] = {.lex_state = 262, .external_lex_state = 5}, - [1296] = {.lex_state = 110, .external_lex_state = 5}, - [1297] = {.lex_state = 262, .external_lex_state = 5}, - [1298] = {.lex_state = 262, .external_lex_state = 5}, - [1299] = {.lex_state = 110, .external_lex_state = 5}, - [1300] = {.lex_state = 110, .external_lex_state = 5}, - [1301] = {.lex_state = 110, .external_lex_state = 5}, - [1302] = {.lex_state = 262, .external_lex_state = 5}, - [1303] = {.lex_state = 262, .external_lex_state = 5}, - [1304] = {.lex_state = 262, .external_lex_state = 5}, - [1305] = {.lex_state = 262, .external_lex_state = 5}, - [1306] = {.lex_state = 262, .external_lex_state = 5}, - [1307] = {.lex_state = 262, .external_lex_state = 5}, - [1308] = {.lex_state = 102, .external_lex_state = 4}, - [1309] = {.lex_state = 262, .external_lex_state = 5}, - [1310] = {.lex_state = 102, .external_lex_state = 4}, - [1311] = {.lex_state = 102, .external_lex_state = 4}, - [1312] = {.lex_state = 102, .external_lex_state = 4}, - [1313] = {.lex_state = 262, .external_lex_state = 5}, - [1314] = {.lex_state = 102, .external_lex_state = 4}, - [1315] = {.lex_state = 262, .external_lex_state = 5}, - [1316] = {.lex_state = 102, .external_lex_state = 4}, - [1317] = {.lex_state = 102, .external_lex_state = 4}, - [1318] = {.lex_state = 102, .external_lex_state = 4}, - [1319] = {.lex_state = 102, .external_lex_state = 5}, - [1320] = {.lex_state = 102, .external_lex_state = 5}, - [1321] = {.lex_state = 102, .external_lex_state = 4}, - [1322] = {.lex_state = 262, .external_lex_state = 5}, + [1295] = {.lex_state = 107, .external_lex_state = 5}, + [1296] = {.lex_state = 107, .external_lex_state = 5}, + [1297] = {.lex_state = 107, .external_lex_state = 5}, + [1298] = {.lex_state = 107, .external_lex_state = 5}, + [1299] = {.lex_state = 107, .external_lex_state = 5}, + [1300] = {.lex_state = 107, .external_lex_state = 5}, + [1301] = {.lex_state = 107, .external_lex_state = 5}, + [1302] = {.lex_state = 107, .external_lex_state = 5}, + [1303] = {.lex_state = 107, .external_lex_state = 5}, + [1304] = {.lex_state = 107, .external_lex_state = 5}, + [1305] = {.lex_state = 107, .external_lex_state = 5}, + [1306] = {.lex_state = 107, .external_lex_state = 5}, + [1307] = {.lex_state = 107, .external_lex_state = 5}, + [1308] = {.lex_state = 107, .external_lex_state = 5}, + [1309] = {.lex_state = 107, .external_lex_state = 5}, + [1310] = {.lex_state = 107, .external_lex_state = 5}, + [1311] = {.lex_state = 107, .external_lex_state = 5}, + [1312] = {.lex_state = 107, .external_lex_state = 5}, + [1313] = {.lex_state = 102, .external_lex_state = 5}, + [1314] = {.lex_state = 107, .external_lex_state = 5}, + [1315] = {.lex_state = 107, .external_lex_state = 5}, + [1316] = {.lex_state = 102, .external_lex_state = 5}, + [1317] = {.lex_state = 107, .external_lex_state = 5}, + [1318] = {.lex_state = 107, .external_lex_state = 5}, + [1319] = {.lex_state = 107, .external_lex_state = 5}, + [1320] = {.lex_state = 107, .external_lex_state = 5}, + [1321] = {.lex_state = 102, .external_lex_state = 5}, + [1322] = {.lex_state = 110, .external_lex_state = 5}, [1323] = {.lex_state = 262, .external_lex_state = 5}, [1324] = {.lex_state = 262, .external_lex_state = 5}, - [1325] = {.lex_state = 262, .external_lex_state = 5}, - [1326] = {.lex_state = 262, .external_lex_state = 5}, - [1327] = {.lex_state = 262, .external_lex_state = 5}, + [1325] = {.lex_state = 110, .external_lex_state = 5}, + [1326] = {.lex_state = 110, .external_lex_state = 5}, + [1327] = {.lex_state = 110, .external_lex_state = 5}, [1328] = {.lex_state = 262, .external_lex_state = 5}, - [1329] = {.lex_state = 102, .external_lex_state = 5}, - [1330] = {.lex_state = 262, .external_lex_state = 5}, - [1331] = {.lex_state = 262, .external_lex_state = 5}, - [1332] = {.lex_state = 110, .external_lex_state = 5}, - [1333] = {.lex_state = 102, .external_lex_state = 5}, - [1334] = {.lex_state = 110, .external_lex_state = 5}, - [1335] = {.lex_state = 110, .external_lex_state = 5}, + [1329] = {.lex_state = 110, .external_lex_state = 5}, + [1330] = {.lex_state = 110, .external_lex_state = 5}, + [1331] = {.lex_state = 102, .external_lex_state = 5}, + [1332] = {.lex_state = 262, .external_lex_state = 5}, + [1333] = {.lex_state = 262, .external_lex_state = 4}, + [1334] = {.lex_state = 262, .external_lex_state = 4}, + [1335] = {.lex_state = 262, .external_lex_state = 4}, [1336] = {.lex_state = 102, .external_lex_state = 5}, [1337] = {.lex_state = 110, .external_lex_state = 5}, - [1338] = {.lex_state = 262, .external_lex_state = 5}, - [1339] = {.lex_state = 262, .external_lex_state = 5}, - [1340] = {.lex_state = 102, .external_lex_state = 5}, + [1338] = {.lex_state = 102, .external_lex_state = 5}, + [1339] = {.lex_state = 102, .external_lex_state = 4}, + [1340] = {.lex_state = 102, .external_lex_state = 4}, [1341] = {.lex_state = 102, .external_lex_state = 5}, - [1342] = {.lex_state = 262, .external_lex_state = 5}, + [1342] = {.lex_state = 110, .external_lex_state = 5}, [1343] = {.lex_state = 102, .external_lex_state = 5}, [1344] = {.lex_state = 102, .external_lex_state = 5}, - [1345] = {.lex_state = 102, .external_lex_state = 5}, - [1346] = {.lex_state = 102, .external_lex_state = 5}, - [1347] = {.lex_state = 102, .external_lex_state = 5}, - [1348] = {.lex_state = 102, .external_lex_state = 5}, - [1349] = {.lex_state = 102, .external_lex_state = 5}, - [1350] = {.lex_state = 102, .external_lex_state = 5}, - [1351] = {.lex_state = 102, .external_lex_state = 5}, - [1352] = {.lex_state = 102, .external_lex_state = 5}, - [1353] = {.lex_state = 102, .external_lex_state = 5}, - [1354] = {.lex_state = 102, .external_lex_state = 4}, - [1355] = {.lex_state = 102, .external_lex_state = 4}, + [1345] = {.lex_state = 110, .external_lex_state = 5}, + [1346] = {.lex_state = 110, .external_lex_state = 5}, + [1347] = {.lex_state = 110, .external_lex_state = 5}, + [1348] = {.lex_state = 110, .external_lex_state = 5}, + [1349] = {.lex_state = 110, .external_lex_state = 5}, + [1350] = {.lex_state = 110, .external_lex_state = 5}, + [1351] = {.lex_state = 110, .external_lex_state = 5}, + [1352] = {.lex_state = 110, .external_lex_state = 5}, + [1353] = {.lex_state = 262, .external_lex_state = 5}, + [1354] = {.lex_state = 262, .external_lex_state = 5}, + [1355] = {.lex_state = 262, .external_lex_state = 5}, [1356] = {.lex_state = 262, .external_lex_state = 5}, [1357] = {.lex_state = 262, .external_lex_state = 5}, - [1358] = {.lex_state = 102, .external_lex_state = 5}, + [1358] = {.lex_state = 102, .external_lex_state = 4}, [1359] = {.lex_state = 262, .external_lex_state = 5}, - [1360] = {.lex_state = 262, .external_lex_state = 5}, + [1360] = {.lex_state = 110, .external_lex_state = 5}, [1361] = {.lex_state = 262, .external_lex_state = 5}, - [1362] = {.lex_state = 262, .external_lex_state = 5}, + [1362] = {.lex_state = 110, .external_lex_state = 5}, [1363] = {.lex_state = 262, .external_lex_state = 5}, - [1364] = {.lex_state = 262, .external_lex_state = 5}, - [1365] = {.lex_state = 262, .external_lex_state = 5}, + [1364] = {.lex_state = 110, .external_lex_state = 5}, + [1365] = {.lex_state = 110, .external_lex_state = 5}, [1366] = {.lex_state = 262, .external_lex_state = 5}, [1367] = {.lex_state = 102, .external_lex_state = 4}, [1368] = {.lex_state = 102, .external_lex_state = 4}, [1369] = {.lex_state = 262, .external_lex_state = 5}, [1370] = {.lex_state = 262, .external_lex_state = 5}, - [1371] = {.lex_state = 102, .external_lex_state = 5}, - [1372] = {.lex_state = 102, .external_lex_state = 4}, - [1373] = {.lex_state = 102, .external_lex_state = 5}, - [1374] = {.lex_state = 102, .external_lex_state = 4}, + [1371] = {.lex_state = 262, .external_lex_state = 5}, + [1372] = {.lex_state = 262, .external_lex_state = 5}, + [1373] = {.lex_state = 262, .external_lex_state = 5}, + [1374] = {.lex_state = 262, .external_lex_state = 5}, [1375] = {.lex_state = 262, .external_lex_state = 5}, - [1376] = {.lex_state = 262, .external_lex_state = 5}, - [1377] = {.lex_state = 262, .external_lex_state = 5}, + [1376] = {.lex_state = 102, .external_lex_state = 4}, + [1377] = {.lex_state = 110, .external_lex_state = 5}, [1378] = {.lex_state = 262, .external_lex_state = 5}, [1379] = {.lex_state = 262, .external_lex_state = 5}, - [1380] = {.lex_state = 110, .external_lex_state = 5}, + [1380] = {.lex_state = 102, .external_lex_state = 4}, [1381] = {.lex_state = 262, .external_lex_state = 5}, [1382] = {.lex_state = 262, .external_lex_state = 5}, [1383] = {.lex_state = 262, .external_lex_state = 5}, - [1384] = {.lex_state = 102, .external_lex_state = 4}, - [1385] = {.lex_state = 102, .external_lex_state = 5}, + [1384] = {.lex_state = 262, .external_lex_state = 5}, + [1385] = {.lex_state = 262, .external_lex_state = 5}, [1386] = {.lex_state = 262, .external_lex_state = 5}, - [1387] = {.lex_state = 262, .external_lex_state = 5}, - [1388] = {.lex_state = 110, .external_lex_state = 5}, + [1387] = {.lex_state = 102, .external_lex_state = 4}, + [1388] = {.lex_state = 102, .external_lex_state = 4}, [1389] = {.lex_state = 262, .external_lex_state = 5}, [1390] = {.lex_state = 262, .external_lex_state = 5}, - [1391] = {.lex_state = 262, .external_lex_state = 5}, - [1392] = {.lex_state = 262, .external_lex_state = 5}, - [1393] = {.lex_state = 110, .external_lex_state = 5}, + [1391] = {.lex_state = 110, .external_lex_state = 5}, + [1392] = {.lex_state = 110, .external_lex_state = 5}, + [1393] = {.lex_state = 262, .external_lex_state = 5}, [1394] = {.lex_state = 110, .external_lex_state = 5}, - [1395] = {.lex_state = 110, .external_lex_state = 5}, - [1396] = {.lex_state = 110, .external_lex_state = 5}, - [1397] = {.lex_state = 262, .external_lex_state = 5}, + [1395] = {.lex_state = 262, .external_lex_state = 5}, + [1396] = {.lex_state = 262, .external_lex_state = 5}, + [1397] = {.lex_state = 110, .external_lex_state = 5}, [1398] = {.lex_state = 110, .external_lex_state = 5}, [1399] = {.lex_state = 110, .external_lex_state = 5}, - [1400] = {.lex_state = 110, .external_lex_state = 5}, + [1400] = {.lex_state = 102, .external_lex_state = 4}, [1401] = {.lex_state = 110, .external_lex_state = 5}, [1402] = {.lex_state = 110, .external_lex_state = 5}, - [1403] = {.lex_state = 110, .external_lex_state = 5}, - [1404] = {.lex_state = 110, .external_lex_state = 5}, - [1405] = {.lex_state = 110, .external_lex_state = 5}, + [1403] = {.lex_state = 262, .external_lex_state = 5}, + [1404] = {.lex_state = 102, .external_lex_state = 5}, + [1405] = {.lex_state = 262, .external_lex_state = 5}, [1406] = {.lex_state = 262, .external_lex_state = 5}, - [1407] = {.lex_state = 110, .external_lex_state = 5}, - [1408] = {.lex_state = 110, .external_lex_state = 5}, - [1409] = {.lex_state = 262, .external_lex_state = 4}, - [1410] = {.lex_state = 262, .external_lex_state = 4}, - [1411] = {.lex_state = 262, .external_lex_state = 4}, - [1412] = {.lex_state = 102, .external_lex_state = 5}, - [1413] = {.lex_state = 110, .external_lex_state = 5}, + [1407] = {.lex_state = 262, .external_lex_state = 5}, + [1408] = {.lex_state = 262, .external_lex_state = 5}, + [1409] = {.lex_state = 262, .external_lex_state = 5}, + [1410] = {.lex_state = 110, .external_lex_state = 5}, + [1411] = {.lex_state = 102, .external_lex_state = 4}, + [1412] = {.lex_state = 262, .external_lex_state = 5}, + [1413] = {.lex_state = 262, .external_lex_state = 5}, [1414] = {.lex_state = 262, .external_lex_state = 5}, - [1415] = {.lex_state = 262, .external_lex_state = 5}, + [1415] = {.lex_state = 110, .external_lex_state = 5}, [1416] = {.lex_state = 262, .external_lex_state = 5}, [1417] = {.lex_state = 262, .external_lex_state = 5}, - [1418] = {.lex_state = 262, .external_lex_state = 5}, - [1419] = {.lex_state = 262, .external_lex_state = 5}, - [1420] = {.lex_state = 102, .external_lex_state = 4}, - [1421] = {.lex_state = 102, .external_lex_state = 4}, - [1422] = {.lex_state = 110, .external_lex_state = 5}, - [1423] = {.lex_state = 262, .external_lex_state = 5}, - [1424] = {.lex_state = 110, .external_lex_state = 5}, - [1425] = {.lex_state = 262, .external_lex_state = 5}, + [1418] = {.lex_state = 102, .external_lex_state = 5}, + [1419] = {.lex_state = 102, .external_lex_state = 5}, + [1420] = {.lex_state = 110, .external_lex_state = 5}, + [1421] = {.lex_state = 102, .external_lex_state = 5}, + [1422] = {.lex_state = 262, .external_lex_state = 5}, + [1423] = {.lex_state = 102, .external_lex_state = 5}, + [1424] = {.lex_state = 102, .external_lex_state = 5}, + [1425] = {.lex_state = 102, .external_lex_state = 5}, [1426] = {.lex_state = 262, .external_lex_state = 5}, - [1427] = {.lex_state = 262, .external_lex_state = 5}, - [1428] = {.lex_state = 262, .external_lex_state = 5}, + [1427] = {.lex_state = 102, .external_lex_state = 5}, + [1428] = {.lex_state = 102, .external_lex_state = 5}, [1429] = {.lex_state = 262, .external_lex_state = 5}, [1430] = {.lex_state = 262, .external_lex_state = 5}, - [1431] = {.lex_state = 262, .external_lex_state = 5}, + [1431] = {.lex_state = 102, .external_lex_state = 5}, [1432] = {.lex_state = 262, .external_lex_state = 5}, - [1433] = {.lex_state = 110, .external_lex_state = 5}, + [1433] = {.lex_state = 102, .external_lex_state = 5}, [1434] = {.lex_state = 262, .external_lex_state = 5}, [1435] = {.lex_state = 262, .external_lex_state = 5}, - [1436] = {.lex_state = 113, .external_lex_state = 4}, - [1437] = {.lex_state = 113, .external_lex_state = 4}, - [1438] = {.lex_state = 102, .external_lex_state = 4}, - [1439] = {.lex_state = 102, .external_lex_state = 4}, - [1440] = {.lex_state = 113, .external_lex_state = 4}, - [1441] = {.lex_state = 102, .external_lex_state = 4}, - [1442] = {.lex_state = 102, .external_lex_state = 4}, - [1443] = {.lex_state = 262, .external_lex_state = 5}, - [1444] = {.lex_state = 262, .external_lex_state = 5}, - [1445] = {.lex_state = 262, .external_lex_state = 4}, - [1446] = {.lex_state = 102, .external_lex_state = 4}, - [1447] = {.lex_state = 113, .external_lex_state = 4}, - [1448] = {.lex_state = 262, .external_lex_state = 4}, - [1449] = {.lex_state = 102, .external_lex_state = 4}, - [1450] = {.lex_state = 262, .external_lex_state = 4}, - [1451] = {.lex_state = 262, .external_lex_state = 4}, - [1452] = {.lex_state = 102, .external_lex_state = 4}, - [1453] = {.lex_state = 113, .external_lex_state = 4}, - [1454] = {.lex_state = 102, .external_lex_state = 4}, - [1455] = {.lex_state = 113, .external_lex_state = 4}, - [1456] = {.lex_state = 102, .external_lex_state = 4}, - [1457] = {.lex_state = 113, .external_lex_state = 4}, - [1458] = {.lex_state = 113, .external_lex_state = 4}, - [1459] = {.lex_state = 262, .external_lex_state = 5}, - [1460] = {.lex_state = 262, .external_lex_state = 5}, - [1461] = {.lex_state = 262, .external_lex_state = 5}, - [1462] = {.lex_state = 262, .external_lex_state = 5}, - [1463] = {.lex_state = 262, .external_lex_state = 5}, - [1464] = {.lex_state = 113, .external_lex_state = 4}, - [1465] = {.lex_state = 262, .external_lex_state = 5}, - [1466] = {.lex_state = 113, .external_lex_state = 4}, - [1467] = {.lex_state = 102, .external_lex_state = 4}, + [1436] = {.lex_state = 262, .external_lex_state = 5}, + [1437] = {.lex_state = 262, .external_lex_state = 5}, + [1438] = {.lex_state = 102, .external_lex_state = 5}, + [1439] = {.lex_state = 262, .external_lex_state = 5}, + [1440] = {.lex_state = 262, .external_lex_state = 5}, + [1441] = {.lex_state = 262, .external_lex_state = 5}, + [1442] = {.lex_state = 110, .external_lex_state = 5}, + [1443] = {.lex_state = 110, .external_lex_state = 5}, + [1444] = {.lex_state = 110, .external_lex_state = 5}, + [1445] = {.lex_state = 262, .external_lex_state = 5}, + [1446] = {.lex_state = 262, .external_lex_state = 5}, + [1447] = {.lex_state = 262, .external_lex_state = 5}, + [1448] = {.lex_state = 262, .external_lex_state = 5}, + [1449] = {.lex_state = 262, .external_lex_state = 5}, + [1450] = {.lex_state = 262, .external_lex_state = 5}, + [1451] = {.lex_state = 262, .external_lex_state = 5}, + [1452] = {.lex_state = 110, .external_lex_state = 5}, + [1453] = {.lex_state = 262, .external_lex_state = 5}, + [1454] = {.lex_state = 102, .external_lex_state = 5}, + [1455] = {.lex_state = 110, .external_lex_state = 5}, + [1456] = {.lex_state = 110, .external_lex_state = 5}, + [1457] = {.lex_state = 110, .external_lex_state = 5}, + [1458] = {.lex_state = 110, .external_lex_state = 5}, + [1459] = {.lex_state = 102, .external_lex_state = 4}, + [1460] = {.lex_state = 102, .external_lex_state = 4}, + [1461] = {.lex_state = 110, .external_lex_state = 5}, + [1462] = {.lex_state = 110, .external_lex_state = 5}, + [1463] = {.lex_state = 110, .external_lex_state = 5}, + [1464] = {.lex_state = 110, .external_lex_state = 5}, + [1465] = {.lex_state = 110, .external_lex_state = 5}, + [1466] = {.lex_state = 262, .external_lex_state = 5}, + [1467] = {.lex_state = 262, .external_lex_state = 5}, [1468] = {.lex_state = 102, .external_lex_state = 4}, - [1469] = {.lex_state = 102, .external_lex_state = 4}, - [1470] = {.lex_state = 102, .external_lex_state = 4}, - [1471] = {.lex_state = 102, .external_lex_state = 4}, - [1472] = {.lex_state = 102, .external_lex_state = 4}, - [1473] = {.lex_state = 262, .external_lex_state = 4}, - [1474] = {.lex_state = 102, .external_lex_state = 4}, - [1475] = {.lex_state = 102, .external_lex_state = 4}, - [1476] = {.lex_state = 102, .external_lex_state = 4}, - [1477] = {.lex_state = 102, .external_lex_state = 4}, - [1478] = {.lex_state = 102, .external_lex_state = 4}, - [1479] = {.lex_state = 102, .external_lex_state = 4}, - [1480] = {.lex_state = 102, .external_lex_state = 4}, - [1481] = {.lex_state = 113, .external_lex_state = 4}, - [1482] = {.lex_state = 113, .external_lex_state = 4}, - [1483] = {.lex_state = 102, .external_lex_state = 4}, - [1484] = {.lex_state = 102, .external_lex_state = 4}, - [1485] = {.lex_state = 102, .external_lex_state = 4}, + [1469] = {.lex_state = 110, .external_lex_state = 5}, + [1470] = {.lex_state = 262, .external_lex_state = 5}, + [1471] = {.lex_state = 262, .external_lex_state = 5}, + [1472] = {.lex_state = 262, .external_lex_state = 5}, + [1473] = {.lex_state = 262, .external_lex_state = 5}, + [1474] = {.lex_state = 262, .external_lex_state = 5}, + [1475] = {.lex_state = 262, .external_lex_state = 5}, + [1476] = {.lex_state = 262, .external_lex_state = 5}, + [1477] = {.lex_state = 102, .external_lex_state = 5}, + [1478] = {.lex_state = 262, .external_lex_state = 5}, + [1479] = {.lex_state = 110, .external_lex_state = 5}, + [1480] = {.lex_state = 262, .external_lex_state = 5}, + [1481] = {.lex_state = 262, .external_lex_state = 5}, + [1482] = {.lex_state = 262, .external_lex_state = 5}, + [1483] = {.lex_state = 262, .external_lex_state = 5}, + [1484] = {.lex_state = 262, .external_lex_state = 5}, + [1485] = {.lex_state = 102, .external_lex_state = 5}, [1486] = {.lex_state = 102, .external_lex_state = 4}, - [1487] = {.lex_state = 102, .external_lex_state = 4}, - [1488] = {.lex_state = 102, .external_lex_state = 4}, - [1489] = {.lex_state = 102, .external_lex_state = 4}, - [1490] = {.lex_state = 102, .external_lex_state = 4}, - [1491] = {.lex_state = 102, .external_lex_state = 4}, - [1492] = {.lex_state = 102, .external_lex_state = 4}, - [1493] = {.lex_state = 102, .external_lex_state = 4}, - [1494] = {.lex_state = 113, .external_lex_state = 4}, + [1487] = {.lex_state = 262, .external_lex_state = 5}, + [1488] = {.lex_state = 262, .external_lex_state = 5}, + [1489] = {.lex_state = 262, .external_lex_state = 5}, + [1490] = {.lex_state = 102, .external_lex_state = 5}, + [1491] = {.lex_state = 110, .external_lex_state = 5}, + [1492] = {.lex_state = 102, .external_lex_state = 5}, + [1493] = {.lex_state = 262, .external_lex_state = 5}, + [1494] = {.lex_state = 262, .external_lex_state = 5}, [1495] = {.lex_state = 262, .external_lex_state = 5}, - [1496] = {.lex_state = 113, .external_lex_state = 4}, - [1497] = {.lex_state = 262, .external_lex_state = 5}, - [1498] = {.lex_state = 262, .external_lex_state = 5}, - [1499] = {.lex_state = 113, .external_lex_state = 4}, - [1500] = {.lex_state = 113, .external_lex_state = 4}, - [1501] = {.lex_state = 102, .external_lex_state = 4}, + [1496] = {.lex_state = 262, .external_lex_state = 5}, + [1497] = {.lex_state = 110, .external_lex_state = 5}, + [1498] = {.lex_state = 110, .external_lex_state = 5}, + [1499] = {.lex_state = 102, .external_lex_state = 4}, + [1500] = {.lex_state = 102, .external_lex_state = 4}, + [1501] = {.lex_state = 262, .external_lex_state = 5}, [1502] = {.lex_state = 102, .external_lex_state = 4}, - [1503] = {.lex_state = 102, .external_lex_state = 4}, - [1504] = {.lex_state = 102, .external_lex_state = 4}, - [1505] = {.lex_state = 102, .external_lex_state = 4}, - [1506] = {.lex_state = 102, .external_lex_state = 4}, - [1507] = {.lex_state = 113, .external_lex_state = 4}, - [1508] = {.lex_state = 102, .external_lex_state = 4}, - [1509] = {.lex_state = 113, .external_lex_state = 4}, - [1510] = {.lex_state = 102, .external_lex_state = 4}, - [1511] = {.lex_state = 113, .external_lex_state = 4}, - [1512] = {.lex_state = 102, .external_lex_state = 4}, - [1513] = {.lex_state = 102, .external_lex_state = 4}, - [1514] = {.lex_state = 113, .external_lex_state = 4}, - [1515] = {.lex_state = 102, .external_lex_state = 4}, - [1516] = {.lex_state = 262, .external_lex_state = 5}, - [1517] = {.lex_state = 113, .external_lex_state = 4}, - [1518] = {.lex_state = 262, .external_lex_state = 5}, - [1519] = {.lex_state = 113, .external_lex_state = 4}, - [1520] = {.lex_state = 102, .external_lex_state = 4}, - [1521] = {.lex_state = 102, .external_lex_state = 4}, - [1522] = {.lex_state = 102, .external_lex_state = 4}, - [1523] = {.lex_state = 262, .external_lex_state = 4}, + [1503] = {.lex_state = 110, .external_lex_state = 5}, + [1504] = {.lex_state = 110, .external_lex_state = 5}, + [1505] = {.lex_state = 110, .external_lex_state = 5}, + [1506] = {.lex_state = 262, .external_lex_state = 5}, + [1507] = {.lex_state = 110, .external_lex_state = 5}, + [1508] = {.lex_state = 262, .external_lex_state = 5}, + [1509] = {.lex_state = 262, .external_lex_state = 5}, + [1510] = {.lex_state = 110, .external_lex_state = 5}, + [1511] = {.lex_state = 110, .external_lex_state = 5}, + [1512] = {.lex_state = 110, .external_lex_state = 5}, + [1513] = {.lex_state = 262, .external_lex_state = 5}, + [1514] = {.lex_state = 102, .external_lex_state = 4}, + [1515] = {.lex_state = 110, .external_lex_state = 5}, + [1516] = {.lex_state = 110, .external_lex_state = 5}, + [1517] = {.lex_state = 110, .external_lex_state = 5}, + [1518] = {.lex_state = 102, .external_lex_state = 4}, + [1519] = {.lex_state = 102, .external_lex_state = 4}, + [1520] = {.lex_state = 262, .external_lex_state = 5}, + [1521] = {.lex_state = 262, .external_lex_state = 5}, + [1522] = {.lex_state = 262, .external_lex_state = 5}, + [1523] = {.lex_state = 102, .external_lex_state = 4}, [1524] = {.lex_state = 262, .external_lex_state = 4}, - [1525] = {.lex_state = 262, .external_lex_state = 4}, + [1525] = {.lex_state = 102, .external_lex_state = 4}, [1526] = {.lex_state = 262, .external_lex_state = 4}, - [1527] = {.lex_state = 262, .external_lex_state = 4}, - [1528] = {.lex_state = 113, .external_lex_state = 4}, - [1529] = {.lex_state = 262, .external_lex_state = 4}, - [1530] = {.lex_state = 262, .external_lex_state = 4}, - [1531] = {.lex_state = 102, .external_lex_state = 4}, - [1532] = {.lex_state = 113, .external_lex_state = 4}, - [1533] = {.lex_state = 102, .external_lex_state = 4}, - [1534] = {.lex_state = 102, .external_lex_state = 4}, - [1535] = {.lex_state = 262, .external_lex_state = 4}, - [1536] = {.lex_state = 102, .external_lex_state = 4}, + [1527] = {.lex_state = 262, .external_lex_state = 5}, + [1528] = {.lex_state = 102, .external_lex_state = 4}, + [1529] = {.lex_state = 262, .external_lex_state = 5}, + [1530] = {.lex_state = 102, .external_lex_state = 4}, + [1531] = {.lex_state = 262, .external_lex_state = 5}, + [1532] = {.lex_state = 262, .external_lex_state = 5}, + [1533] = {.lex_state = 262, .external_lex_state = 5}, + [1534] = {.lex_state = 113, .external_lex_state = 4}, + [1535] = {.lex_state = 262, .external_lex_state = 5}, + [1536] = {.lex_state = 113, .external_lex_state = 4}, [1537] = {.lex_state = 262, .external_lex_state = 4}, [1538] = {.lex_state = 262, .external_lex_state = 4}, [1539] = {.lex_state = 102, .external_lex_state = 4}, [1540] = {.lex_state = 102, .external_lex_state = 4}, [1541] = {.lex_state = 102, .external_lex_state = 4}, [1542] = {.lex_state = 113, .external_lex_state = 4}, - [1543] = {.lex_state = 102, .external_lex_state = 4}, - [1544] = {.lex_state = 102, .external_lex_state = 4}, - [1545] = {.lex_state = 102, .external_lex_state = 4}, - [1546] = {.lex_state = 113, .external_lex_state = 4}, - [1547] = {.lex_state = 262, .external_lex_state = 5}, - [1548] = {.lex_state = 262, .external_lex_state = 5}, + [1543] = {.lex_state = 113, .external_lex_state = 4}, + [1544] = {.lex_state = 262, .external_lex_state = 5}, + [1545] = {.lex_state = 262, .external_lex_state = 5}, + [1546] = {.lex_state = 262, .external_lex_state = 5}, + [1547] = {.lex_state = 113, .external_lex_state = 4}, + [1548] = {.lex_state = 113, .external_lex_state = 4}, [1549] = {.lex_state = 262, .external_lex_state = 5}, - [1550] = {.lex_state = 262, .external_lex_state = 5}, + [1550] = {.lex_state = 102, .external_lex_state = 4}, [1551] = {.lex_state = 102, .external_lex_state = 4}, - [1552] = {.lex_state = 102, .external_lex_state = 4}, - [1553] = {.lex_state = 113, .external_lex_state = 4}, - [1554] = {.lex_state = 113, .external_lex_state = 4}, - [1555] = {.lex_state = 113, .external_lex_state = 4}, - [1556] = {.lex_state = 113, .external_lex_state = 4}, - [1557] = {.lex_state = 113, .external_lex_state = 4}, + [1552] = {.lex_state = 113, .external_lex_state = 4}, + [1553] = {.lex_state = 262, .external_lex_state = 5}, + [1554] = {.lex_state = 262, .external_lex_state = 5}, + [1555] = {.lex_state = 262, .external_lex_state = 5}, + [1556] = {.lex_state = 262, .external_lex_state = 5}, + [1557] = {.lex_state = 102, .external_lex_state = 4}, [1558] = {.lex_state = 113, .external_lex_state = 4}, - [1559] = {.lex_state = 113, .external_lex_state = 4}, - [1560] = {.lex_state = 262, .external_lex_state = 5}, - [1561] = {.lex_state = 262, .external_lex_state = 5}, - [1562] = {.lex_state = 113, .external_lex_state = 4}, + [1559] = {.lex_state = 102, .external_lex_state = 4}, + [1560] = {.lex_state = 102, .external_lex_state = 4}, + [1561] = {.lex_state = 113, .external_lex_state = 4}, + [1562] = {.lex_state = 102, .external_lex_state = 4}, [1563] = {.lex_state = 102, .external_lex_state = 4}, - [1564] = {.lex_state = 102, .external_lex_state = 4}, + [1564] = {.lex_state = 113, .external_lex_state = 4}, [1565] = {.lex_state = 113, .external_lex_state = 4}, - [1566] = {.lex_state = 262, .external_lex_state = 5}, + [1566] = {.lex_state = 113, .external_lex_state = 4}, [1567] = {.lex_state = 113, .external_lex_state = 4}, - [1568] = {.lex_state = 262, .external_lex_state = 4}, - [1569] = {.lex_state = 262, .external_lex_state = 5}, - [1570] = {.lex_state = 262, .external_lex_state = 5}, - [1571] = {.lex_state = 102, .external_lex_state = 4}, - [1572] = {.lex_state = 262, .external_lex_state = 5}, + [1568] = {.lex_state = 113, .external_lex_state = 4}, + [1569] = {.lex_state = 113, .external_lex_state = 4}, + [1570] = {.lex_state = 113, .external_lex_state = 4}, + [1571] = {.lex_state = 113, .external_lex_state = 4}, + [1572] = {.lex_state = 113, .external_lex_state = 4}, [1573] = {.lex_state = 102, .external_lex_state = 4}, - [1574] = {.lex_state = 102, .external_lex_state = 4}, - [1575] = {.lex_state = 262, .external_lex_state = 5}, - [1576] = {.lex_state = 262, .external_lex_state = 5}, - [1577] = {.lex_state = 262, .external_lex_state = 4}, - [1578] = {.lex_state = 262, .external_lex_state = 4}, - [1579] = {.lex_state = 262, .external_lex_state = 5}, - [1580] = {.lex_state = 262, .external_lex_state = 4}, - [1581] = {.lex_state = 102, .external_lex_state = 4}, - [1582] = {.lex_state = 262, .external_lex_state = 4}, - [1583] = {.lex_state = 262, .external_lex_state = 5}, - [1584] = {.lex_state = 262, .external_lex_state = 4}, + [1574] = {.lex_state = 113, .external_lex_state = 4}, + [1575] = {.lex_state = 113, .external_lex_state = 4}, + [1576] = {.lex_state = 113, .external_lex_state = 4}, + [1577] = {.lex_state = 262, .external_lex_state = 5}, + [1578] = {.lex_state = 102, .external_lex_state = 4}, + [1579] = {.lex_state = 113, .external_lex_state = 4}, + [1580] = {.lex_state = 113, .external_lex_state = 4}, + [1581] = {.lex_state = 113, .external_lex_state = 4}, + [1582] = {.lex_state = 113, .external_lex_state = 4}, + [1583] = {.lex_state = 102, .external_lex_state = 4}, + [1584] = {.lex_state = 102, .external_lex_state = 4}, [1585] = {.lex_state = 102, .external_lex_state = 4}, - [1586] = {.lex_state = 113, .external_lex_state = 4}, + [1586] = {.lex_state = 102, .external_lex_state = 4}, [1587] = {.lex_state = 102, .external_lex_state = 4}, - [1588] = {.lex_state = 262, .external_lex_state = 5}, + [1588] = {.lex_state = 102, .external_lex_state = 4}, [1589] = {.lex_state = 262, .external_lex_state = 5}, [1590] = {.lex_state = 113, .external_lex_state = 4}, - [1591] = {.lex_state = 113, .external_lex_state = 4}, - [1592] = {.lex_state = 113, .external_lex_state = 4}, - [1593] = {.lex_state = 113, .external_lex_state = 4}, - [1594] = {.lex_state = 116, .external_lex_state = 4}, - [1595] = {.lex_state = 262, .external_lex_state = 5}, - [1596] = {.lex_state = 262, .external_lex_state = 5}, - [1597] = {.lex_state = 262, .external_lex_state = 4}, - [1598] = {.lex_state = 262, .external_lex_state = 4}, - [1599] = {.lex_state = 262, .external_lex_state = 4}, - [1600] = {.lex_state = 116, .external_lex_state = 4}, - [1601] = {.lex_state = 116, .external_lex_state = 4}, - [1602] = {.lex_state = 116, .external_lex_state = 4}, - [1603] = {.lex_state = 116, .external_lex_state = 4}, + [1591] = {.lex_state = 262, .external_lex_state = 5}, + [1592] = {.lex_state = 102, .external_lex_state = 4}, + [1593] = {.lex_state = 262, .external_lex_state = 5}, + [1594] = {.lex_state = 102, .external_lex_state = 4}, + [1595] = {.lex_state = 102, .external_lex_state = 4}, + [1596] = {.lex_state = 102, .external_lex_state = 4}, + [1597] = {.lex_state = 262, .external_lex_state = 5}, + [1598] = {.lex_state = 102, .external_lex_state = 4}, + [1599] = {.lex_state = 102, .external_lex_state = 4}, + [1600] = {.lex_state = 102, .external_lex_state = 4}, + [1601] = {.lex_state = 262, .external_lex_state = 4}, + [1602] = {.lex_state = 102, .external_lex_state = 4}, + [1603] = {.lex_state = 262, .external_lex_state = 5}, [1604] = {.lex_state = 102, .external_lex_state = 4}, [1605] = {.lex_state = 102, .external_lex_state = 4}, - [1606] = {.lex_state = 116, .external_lex_state = 4}, - [1607] = {.lex_state = 262, .external_lex_state = 4}, - [1608] = {.lex_state = 262, .external_lex_state = 4}, - [1609] = {.lex_state = 262, .external_lex_state = 4}, - [1610] = {.lex_state = 262, .external_lex_state = 4}, - [1611] = {.lex_state = 262, .external_lex_state = 4}, - [1612] = {.lex_state = 262, .external_lex_state = 4}, - [1613] = {.lex_state = 262, .external_lex_state = 4}, - [1614] = {.lex_state = 262, .external_lex_state = 4}, - [1615] = {.lex_state = 262, .external_lex_state = 4}, - [1616] = {.lex_state = 262, .external_lex_state = 4}, - [1617] = {.lex_state = 262, .external_lex_state = 4}, - [1618] = {.lex_state = 262, .external_lex_state = 4}, - [1619] = {.lex_state = 262, .external_lex_state = 4}, + [1606] = {.lex_state = 102, .external_lex_state = 4}, + [1607] = {.lex_state = 102, .external_lex_state = 4}, + [1608] = {.lex_state = 102, .external_lex_state = 4}, + [1609] = {.lex_state = 102, .external_lex_state = 4}, + [1610] = {.lex_state = 102, .external_lex_state = 4}, + [1611] = {.lex_state = 102, .external_lex_state = 4}, + [1612] = {.lex_state = 102, .external_lex_state = 4}, + [1613] = {.lex_state = 102, .external_lex_state = 4}, + [1614] = {.lex_state = 102, .external_lex_state = 4}, + [1615] = {.lex_state = 113, .external_lex_state = 4}, + [1616] = {.lex_state = 102, .external_lex_state = 4}, + [1617] = {.lex_state = 102, .external_lex_state = 4}, + [1618] = {.lex_state = 102, .external_lex_state = 4}, + [1619] = {.lex_state = 262, .external_lex_state = 5}, [1620] = {.lex_state = 102, .external_lex_state = 4}, - [1621] = {.lex_state = 262, .external_lex_state = 4}, - [1622] = {.lex_state = 262, .external_lex_state = 4}, - [1623] = {.lex_state = 262, .external_lex_state = 4}, - [1624] = {.lex_state = 262, .external_lex_state = 4}, - [1625] = {.lex_state = 262, .external_lex_state = 4}, - [1626] = {.lex_state = 116, .external_lex_state = 4}, - [1627] = {.lex_state = 262, .external_lex_state = 4}, - [1628] = {.lex_state = 262, .external_lex_state = 4}, - [1629] = {.lex_state = 264, .external_lex_state = 5}, - [1630] = {.lex_state = 116, .external_lex_state = 4}, - [1631] = {.lex_state = 262, .external_lex_state = 4}, - [1632] = {.lex_state = 262, .external_lex_state = 5}, - [1633] = {.lex_state = 264, .external_lex_state = 5}, - [1634] = {.lex_state = 264, .external_lex_state = 5}, - [1635] = {.lex_state = 116, .external_lex_state = 4}, + [1621] = {.lex_state = 102, .external_lex_state = 4}, + [1622] = {.lex_state = 102, .external_lex_state = 4}, + [1623] = {.lex_state = 262, .external_lex_state = 5}, + [1624] = {.lex_state = 102, .external_lex_state = 4}, + [1625] = {.lex_state = 102, .external_lex_state = 4}, + [1626] = {.lex_state = 113, .external_lex_state = 4}, + [1627] = {.lex_state = 113, .external_lex_state = 4}, + [1628] = {.lex_state = 113, .external_lex_state = 4}, + [1629] = {.lex_state = 113, .external_lex_state = 4}, + [1630] = {.lex_state = 113, .external_lex_state = 4}, + [1631] = {.lex_state = 102, .external_lex_state = 4}, + [1632] = {.lex_state = 102, .external_lex_state = 4}, + [1633] = {.lex_state = 102, .external_lex_state = 4}, + [1634] = {.lex_state = 102, .external_lex_state = 4}, + [1635] = {.lex_state = 102, .external_lex_state = 4}, [1636] = {.lex_state = 102, .external_lex_state = 4}, - [1637] = {.lex_state = 116, .external_lex_state = 4}, - [1638] = {.lex_state = 116, .external_lex_state = 4}, - [1639] = {.lex_state = 116, .external_lex_state = 4}, - [1640] = {.lex_state = 264, .external_lex_state = 5}, - [1641] = {.lex_state = 262, .external_lex_state = 4}, - [1642] = {.lex_state = 262, .external_lex_state = 4}, - [1643] = {.lex_state = 262, .external_lex_state = 4}, - [1644] = {.lex_state = 262, .external_lex_state = 4}, - [1645] = {.lex_state = 262, .external_lex_state = 4}, - [1646] = {.lex_state = 262, .external_lex_state = 4}, + [1637] = {.lex_state = 102, .external_lex_state = 4}, + [1638] = {.lex_state = 102, .external_lex_state = 4}, + [1639] = {.lex_state = 102, .external_lex_state = 4}, + [1640] = {.lex_state = 102, .external_lex_state = 4}, + [1641] = {.lex_state = 102, .external_lex_state = 4}, + [1642] = {.lex_state = 102, .external_lex_state = 4}, + [1643] = {.lex_state = 102, .external_lex_state = 4}, + [1644] = {.lex_state = 102, .external_lex_state = 4}, + [1645] = {.lex_state = 102, .external_lex_state = 4}, + [1646] = {.lex_state = 102, .external_lex_state = 4}, [1647] = {.lex_state = 102, .external_lex_state = 4}, [1648] = {.lex_state = 262, .external_lex_state = 4}, - [1649] = {.lex_state = 262, .external_lex_state = 4}, + [1649] = {.lex_state = 102, .external_lex_state = 4}, [1650] = {.lex_state = 102, .external_lex_state = 4}, - [1651] = {.lex_state = 262, .external_lex_state = 4}, - [1652] = {.lex_state = 262, .external_lex_state = 4}, - [1653] = {.lex_state = 262, .external_lex_state = 4}, - [1654] = {.lex_state = 262, .external_lex_state = 4}, - [1655] = {.lex_state = 262, .external_lex_state = 4}, - [1656] = {.lex_state = 262, .external_lex_state = 4}, + [1651] = {.lex_state = 262, .external_lex_state = 5}, + [1652] = {.lex_state = 102, .external_lex_state = 4}, + [1653] = {.lex_state = 102, .external_lex_state = 4}, + [1654] = {.lex_state = 262, .external_lex_state = 5}, + [1655] = {.lex_state = 102, .external_lex_state = 4}, + [1656] = {.lex_state = 102, .external_lex_state = 4}, [1657] = {.lex_state = 102, .external_lex_state = 4}, [1658] = {.lex_state = 262, .external_lex_state = 4}, - [1659] = {.lex_state = 116, .external_lex_state = 4}, - [1660] = {.lex_state = 102, .external_lex_state = 4}, - [1661] = {.lex_state = 102, .external_lex_state = 4}, - [1662] = {.lex_state = 264, .external_lex_state = 5}, - [1663] = {.lex_state = 116, .external_lex_state = 4}, + [1659] = {.lex_state = 262, .external_lex_state = 4}, + [1660] = {.lex_state = 262, .external_lex_state = 4}, + [1661] = {.lex_state = 262, .external_lex_state = 4}, + [1662] = {.lex_state = 262, .external_lex_state = 4}, + [1663] = {.lex_state = 262, .external_lex_state = 4}, [1664] = {.lex_state = 262, .external_lex_state = 4}, - [1665] = {.lex_state = 262, .external_lex_state = 4}, + [1665] = {.lex_state = 113, .external_lex_state = 4}, [1666] = {.lex_state = 262, .external_lex_state = 4}, [1667] = {.lex_state = 262, .external_lex_state = 4}, - [1668] = {.lex_state = 264, .external_lex_state = 5}, - [1669] = {.lex_state = 264, .external_lex_state = 5}, - [1670] = {.lex_state = 102, .external_lex_state = 4}, - [1671] = {.lex_state = 116, .external_lex_state = 4}, - [1672] = {.lex_state = 116, .external_lex_state = 4}, + [1668] = {.lex_state = 262, .external_lex_state = 4}, + [1669] = {.lex_state = 102, .external_lex_state = 4}, + [1670] = {.lex_state = 262, .external_lex_state = 4}, + [1671] = {.lex_state = 262, .external_lex_state = 4}, + [1672] = {.lex_state = 113, .external_lex_state = 4}, [1673] = {.lex_state = 262, .external_lex_state = 4}, - [1674] = {.lex_state = 262, .external_lex_state = 4}, - [1675] = {.lex_state = 262, .external_lex_state = 4}, - [1676] = {.lex_state = 262, .external_lex_state = 4}, - [1677] = {.lex_state = 262, .external_lex_state = 5}, + [1674] = {.lex_state = 113, .external_lex_state = 4}, + [1675] = {.lex_state = 113, .external_lex_state = 4}, + [1676] = {.lex_state = 113, .external_lex_state = 4}, + [1677] = {.lex_state = 113, .external_lex_state = 4}, [1678] = {.lex_state = 262, .external_lex_state = 5}, - [1679] = {.lex_state = 264, .external_lex_state = 5}, - [1680] = {.lex_state = 116, .external_lex_state = 4}, - [1681] = {.lex_state = 262, .external_lex_state = 4}, - [1682] = {.lex_state = 262, .external_lex_state = 4}, - [1683] = {.lex_state = 102, .external_lex_state = 4}, - [1684] = {.lex_state = 264, .external_lex_state = 5}, - [1685] = {.lex_state = 262, .external_lex_state = 4}, - [1686] = {.lex_state = 102, .external_lex_state = 4}, - [1687] = {.lex_state = 264, .external_lex_state = 5}, - [1688] = {.lex_state = 102, .external_lex_state = 4}, - [1689] = {.lex_state = 262, .external_lex_state = 5}, - [1690] = {.lex_state = 262, .external_lex_state = 5}, - [1691] = {.lex_state = 262, .external_lex_state = 5}, - [1692] = {.lex_state = 264, .external_lex_state = 5}, - [1693] = {.lex_state = 262, .external_lex_state = 4}, - [1694] = {.lex_state = 102, .external_lex_state = 4}, - [1695] = {.lex_state = 116, .external_lex_state = 4}, + [1679] = {.lex_state = 113, .external_lex_state = 4}, + [1680] = {.lex_state = 113, .external_lex_state = 4}, + [1681] = {.lex_state = 113, .external_lex_state = 4}, + [1682] = {.lex_state = 113, .external_lex_state = 4}, + [1683] = {.lex_state = 113, .external_lex_state = 4}, + [1684] = {.lex_state = 102, .external_lex_state = 4}, + [1685] = {.lex_state = 113, .external_lex_state = 4}, + [1686] = {.lex_state = 113, .external_lex_state = 4}, + [1687] = {.lex_state = 113, .external_lex_state = 4}, + [1688] = {.lex_state = 113, .external_lex_state = 4}, + [1689] = {.lex_state = 102, .external_lex_state = 4}, + [1690] = {.lex_state = 113, .external_lex_state = 4}, + [1691] = {.lex_state = 113, .external_lex_state = 4}, + [1692] = {.lex_state = 102, .external_lex_state = 4}, + [1693] = {.lex_state = 113, .external_lex_state = 4}, + [1694] = {.lex_state = 113, .external_lex_state = 4}, + [1695] = {.lex_state = 113, .external_lex_state = 4}, [1696] = {.lex_state = 102, .external_lex_state = 4}, - [1697] = {.lex_state = 264, .external_lex_state = 5}, - [1698] = {.lex_state = 264, .external_lex_state = 5}, - [1699] = {.lex_state = 264, .external_lex_state = 5}, + [1697] = {.lex_state = 262, .external_lex_state = 5}, + [1698] = {.lex_state = 113, .external_lex_state = 4}, + [1699] = {.lex_state = 262, .external_lex_state = 4}, [1700] = {.lex_state = 262, .external_lex_state = 4}, - [1701] = {.lex_state = 262, .external_lex_state = 5}, - [1702] = {.lex_state = 262, .external_lex_state = 4}, - [1703] = {.lex_state = 264, .external_lex_state = 5}, - [1704] = {.lex_state = 264, .external_lex_state = 5}, - [1705] = {.lex_state = 262, .external_lex_state = 4}, - [1706] = {.lex_state = 102, .external_lex_state = 4}, - [1707] = {.lex_state = 262, .external_lex_state = 4}, - [1708] = {.lex_state = 262, .external_lex_state = 4}, - [1709] = {.lex_state = 262, .external_lex_state = 4}, - [1710] = {.lex_state = 262, .external_lex_state = 4}, - [1711] = {.lex_state = 116, .external_lex_state = 4}, - [1712] = {.lex_state = 264, .external_lex_state = 5}, - [1713] = {.lex_state = 262, .external_lex_state = 5}, - [1714] = {.lex_state = 262, .external_lex_state = 5}, - [1715] = {.lex_state = 116, .external_lex_state = 4}, - [1716] = {.lex_state = 102, .external_lex_state = 4}, - [1717] = {.lex_state = 264, .external_lex_state = 5}, - [1718] = {.lex_state = 116, .external_lex_state = 4}, - [1719] = {.lex_state = 116, .external_lex_state = 4}, - [1720] = {.lex_state = 102, .external_lex_state = 4}, - [1721] = {.lex_state = 264, .external_lex_state = 5}, - [1722] = {.lex_state = 102, .external_lex_state = 4}, - [1723] = {.lex_state = 262, .external_lex_state = 4}, - [1724] = {.lex_state = 262, .external_lex_state = 4}, + [1701] = {.lex_state = 113, .external_lex_state = 4}, + [1702] = {.lex_state = 102, .external_lex_state = 4}, + [1703] = {.lex_state = 102, .external_lex_state = 4}, + [1704] = {.lex_state = 113, .external_lex_state = 4}, + [1705] = {.lex_state = 102, .external_lex_state = 4}, + [1706] = {.lex_state = 113, .external_lex_state = 4}, + [1707] = {.lex_state = 262, .external_lex_state = 5}, + [1708] = {.lex_state = 102, .external_lex_state = 4}, + [1709] = {.lex_state = 102, .external_lex_state = 4}, + [1710] = {.lex_state = 102, .external_lex_state = 4}, + [1711] = {.lex_state = 113, .external_lex_state = 4}, + [1712] = {.lex_state = 102, .external_lex_state = 4}, + [1713] = {.lex_state = 102, .external_lex_state = 4}, + [1714] = {.lex_state = 102, .external_lex_state = 4}, + [1715] = {.lex_state = 113, .external_lex_state = 4}, + [1716] = {.lex_state = 113, .external_lex_state = 4}, + [1717] = {.lex_state = 113, .external_lex_state = 4}, + [1718] = {.lex_state = 262, .external_lex_state = 4}, + [1719] = {.lex_state = 262, .external_lex_state = 4}, + [1720] = {.lex_state = 262, .external_lex_state = 4}, + [1721] = {.lex_state = 262, .external_lex_state = 4}, + [1722] = {.lex_state = 262, .external_lex_state = 4}, + [1723] = {.lex_state = 102, .external_lex_state = 4}, + [1724] = {.lex_state = 102, .external_lex_state = 4}, [1725] = {.lex_state = 102, .external_lex_state = 4}, - [1726] = {.lex_state = 116, .external_lex_state = 4}, - [1727] = {.lex_state = 116, .external_lex_state = 4}, - [1728] = {.lex_state = 262, .external_lex_state = 5}, + [1726] = {.lex_state = 102, .external_lex_state = 4}, + [1727] = {.lex_state = 262, .external_lex_state = 5}, + [1728] = {.lex_state = 264, .external_lex_state = 5}, [1729] = {.lex_state = 102, .external_lex_state = 4}, - [1730] = {.lex_state = 262, .external_lex_state = 5}, + [1730] = {.lex_state = 102, .external_lex_state = 4}, [1731] = {.lex_state = 102, .external_lex_state = 4}, - [1732] = {.lex_state = 262, .external_lex_state = 5}, - [1733] = {.lex_state = 262, .external_lex_state = 5}, - [1734] = {.lex_state = 116, .external_lex_state = 4}, - [1735] = {.lex_state = 262, .external_lex_state = 5}, - [1736] = {.lex_state = 264, .external_lex_state = 5}, - [1737] = {.lex_state = 262, .external_lex_state = 5}, - [1738] = {.lex_state = 262, .external_lex_state = 5}, + [1732] = {.lex_state = 102, .external_lex_state = 4}, + [1733] = {.lex_state = 102, .external_lex_state = 4}, + [1734] = {.lex_state = 102, .external_lex_state = 4}, + [1735] = {.lex_state = 102, .external_lex_state = 4}, + [1736] = {.lex_state = 102, .external_lex_state = 4}, + [1737] = {.lex_state = 102, .external_lex_state = 4}, + [1738] = {.lex_state = 102, .external_lex_state = 4}, [1739] = {.lex_state = 102, .external_lex_state = 4}, - [1740] = {.lex_state = 264, .external_lex_state = 5}, + [1740] = {.lex_state = 102, .external_lex_state = 4}, [1741] = {.lex_state = 102, .external_lex_state = 4}, [1742] = {.lex_state = 102, .external_lex_state = 4}, - [1743] = {.lex_state = 116, .external_lex_state = 4}, - [1744] = {.lex_state = 116, .external_lex_state = 4}, - [1745] = {.lex_state = 116, .external_lex_state = 4}, - [1746] = {.lex_state = 116, .external_lex_state = 4}, - [1747] = {.lex_state = 116, .external_lex_state = 4}, + [1743] = {.lex_state = 102, .external_lex_state = 4}, + [1744] = {.lex_state = 102, .external_lex_state = 4}, + [1745] = {.lex_state = 102, .external_lex_state = 4}, + [1746] = {.lex_state = 102, .external_lex_state = 4}, + [1747] = {.lex_state = 262, .external_lex_state = 4}, [1748] = {.lex_state = 262, .external_lex_state = 4}, [1749] = {.lex_state = 102, .external_lex_state = 4}, - [1750] = {.lex_state = 264, .external_lex_state = 5}, - [1751] = {.lex_state = 116, .external_lex_state = 4}, + [1750] = {.lex_state = 102, .external_lex_state = 4}, + [1751] = {.lex_state = 102, .external_lex_state = 4}, [1752] = {.lex_state = 102, .external_lex_state = 4}, [1753] = {.lex_state = 264, .external_lex_state = 5}, [1754] = {.lex_state = 262, .external_lex_state = 5}, - [1755] = {.lex_state = 262, .external_lex_state = 5}, - [1756] = {.lex_state = 262, .external_lex_state = 5}, - [1757] = {.lex_state = 102, .external_lex_state = 4}, - [1758] = {.lex_state = 262, .external_lex_state = 5}, - [1759] = {.lex_state = 262, .external_lex_state = 5}, - [1760] = {.lex_state = 102, .external_lex_state = 4}, - [1761] = {.lex_state = 264, .external_lex_state = 5}, - [1762] = {.lex_state = 102, .external_lex_state = 4}, - [1763] = {.lex_state = 262, .external_lex_state = 5}, - [1764] = {.lex_state = 116, .external_lex_state = 4}, - [1765] = {.lex_state = 264, .external_lex_state = 5}, - [1766] = {.lex_state = 102, .external_lex_state = 4}, - [1767] = {.lex_state = 102, .external_lex_state = 4}, - [1768] = {.lex_state = 116, .external_lex_state = 4}, - [1769] = {.lex_state = 102, .external_lex_state = 4}, - [1770] = {.lex_state = 116, .external_lex_state = 4}, - [1771] = {.lex_state = 116, .external_lex_state = 4}, - [1772] = {.lex_state = 262, .external_lex_state = 5}, - [1773] = {.lex_state = 262, .external_lex_state = 5}, - [1774] = {.lex_state = 102, .external_lex_state = 4}, - [1775] = {.lex_state = 102, .external_lex_state = 4}, - [1776] = {.lex_state = 102, .external_lex_state = 4}, - [1777] = {.lex_state = 102, .external_lex_state = 4}, - [1778] = {.lex_state = 102, .external_lex_state = 4}, - [1779] = {.lex_state = 116, .external_lex_state = 4}, - [1780] = {.lex_state = 116, .external_lex_state = 4}, - [1781] = {.lex_state = 102, .external_lex_state = 4}, - [1782] = {.lex_state = 102, .external_lex_state = 4}, - [1783] = {.lex_state = 102, .external_lex_state = 4}, - [1784] = {.lex_state = 102, .external_lex_state = 4}, - [1785] = {.lex_state = 102, .external_lex_state = 4}, - [1786] = {.lex_state = 116, .external_lex_state = 4}, - [1787] = {.lex_state = 102, .external_lex_state = 4}, - [1788] = {.lex_state = 262, .external_lex_state = 4}, - [1789] = {.lex_state = 102, .external_lex_state = 4}, - [1790] = {.lex_state = 262, .external_lex_state = 5}, - [1791] = {.lex_state = 262, .external_lex_state = 5}, - [1792] = {.lex_state = 262, .external_lex_state = 5}, - [1793] = {.lex_state = 262, .external_lex_state = 4}, - [1794] = {.lex_state = 262, .external_lex_state = 5}, - [1795] = {.lex_state = 262, .external_lex_state = 5}, - [1796] = {.lex_state = 102, .external_lex_state = 4}, - [1797] = {.lex_state = 102, .external_lex_state = 4}, - [1798] = {.lex_state = 264, .external_lex_state = 5}, - [1799] = {.lex_state = 116, .external_lex_state = 4}, - [1800] = {.lex_state = 116, .external_lex_state = 4}, - [1801] = {.lex_state = 102, .external_lex_state = 4}, - [1802] = {.lex_state = 264, .external_lex_state = 5}, - [1803] = {.lex_state = 264, .external_lex_state = 5}, - [1804] = {.lex_state = 102, .external_lex_state = 4}, - [1805] = {.lex_state = 102, .external_lex_state = 4}, - [1806] = {.lex_state = 264, .external_lex_state = 5}, - [1807] = {.lex_state = 264, .external_lex_state = 5}, - [1808] = {.lex_state = 264, .external_lex_state = 5}, - [1809] = {.lex_state = 264, .external_lex_state = 5}, - [1810] = {.lex_state = 264, .external_lex_state = 5}, - [1811] = {.lex_state = 264, .external_lex_state = 5}, - [1812] = {.lex_state = 264, .external_lex_state = 5}, - [1813] = {.lex_state = 264, .external_lex_state = 5}, - [1814] = {.lex_state = 264, .external_lex_state = 5}, - [1815] = {.lex_state = 264, .external_lex_state = 5}, - [1816] = {.lex_state = 116, .external_lex_state = 4}, - [1817] = {.lex_state = 102, .external_lex_state = 4}, - [1818] = {.lex_state = 102, .external_lex_state = 4}, - [1819] = {.lex_state = 264, .external_lex_state = 5}, - [1820] = {.lex_state = 102, .external_lex_state = 4}, - [1821] = {.lex_state = 102, .external_lex_state = 4}, - [1822] = {.lex_state = 102, .external_lex_state = 4}, - [1823] = {.lex_state = 102, .external_lex_state = 4}, - [1824] = {.lex_state = 102, .external_lex_state = 4}, - [1825] = {.lex_state = 264, .external_lex_state = 5}, - [1826] = {.lex_state = 264, .external_lex_state = 5}, - [1827] = {.lex_state = 102, .external_lex_state = 4}, - [1828] = {.lex_state = 262, .external_lex_state = 4}, - [1829] = {.lex_state = 262, .external_lex_state = 5}, - [1830] = {.lex_state = 121, .external_lex_state = 5}, + [1755] = {.lex_state = 264, .external_lex_state = 5}, + [1756] = {.lex_state = 264, .external_lex_state = 5}, + [1757] = {.lex_state = 262, .external_lex_state = 5}, + [1758] = {.lex_state = 118, .external_lex_state = 4}, + [1759] = {.lex_state = 262, .external_lex_state = 4}, + [1760] = {.lex_state = 262, .external_lex_state = 4}, + [1761] = {.lex_state = 262, .external_lex_state = 4}, + [1762] = {.lex_state = 262, .external_lex_state = 4}, + [1763] = {.lex_state = 262, .external_lex_state = 4}, + [1764] = {.lex_state = 118, .external_lex_state = 4}, + [1765] = {.lex_state = 262, .external_lex_state = 4}, + [1766] = {.lex_state = 262, .external_lex_state = 4}, + [1767] = {.lex_state = 118, .external_lex_state = 4}, + [1768] = {.lex_state = 118, .external_lex_state = 4}, + [1769] = {.lex_state = 118, .external_lex_state = 4}, + [1770] = {.lex_state = 262, .external_lex_state = 4}, + [1771] = {.lex_state = 118, .external_lex_state = 4}, + [1772] = {.lex_state = 118, .external_lex_state = 4}, + [1773] = {.lex_state = 118, .external_lex_state = 4}, + [1774] = {.lex_state = 262, .external_lex_state = 4}, + [1775] = {.lex_state = 262, .external_lex_state = 4}, + [1776] = {.lex_state = 118, .external_lex_state = 4}, + [1777] = {.lex_state = 262, .external_lex_state = 5}, + [1778] = {.lex_state = 262, .external_lex_state = 5}, + [1779] = {.lex_state = 118, .external_lex_state = 4}, + [1780] = {.lex_state = 118, .external_lex_state = 4}, + [1781] = {.lex_state = 118, .external_lex_state = 4}, + [1782] = {.lex_state = 262, .external_lex_state = 4}, + [1783] = {.lex_state = 262, .external_lex_state = 4}, + [1784] = {.lex_state = 262, .external_lex_state = 4}, + [1785] = {.lex_state = 262, .external_lex_state = 4}, + [1786] = {.lex_state = 262, .external_lex_state = 4}, + [1787] = {.lex_state = 262, .external_lex_state = 4}, + [1788] = {.lex_state = 118, .external_lex_state = 4}, + [1789] = {.lex_state = 262, .external_lex_state = 4}, + [1790] = {.lex_state = 118, .external_lex_state = 4}, + [1791] = {.lex_state = 262, .external_lex_state = 4}, + [1792] = {.lex_state = 118, .external_lex_state = 4}, + [1793] = {.lex_state = 118, .external_lex_state = 4}, + [1794] = {.lex_state = 118, .external_lex_state = 4}, + [1795] = {.lex_state = 118, .external_lex_state = 4}, + [1796] = {.lex_state = 118, .external_lex_state = 4}, + [1797] = {.lex_state = 118, .external_lex_state = 4}, + [1798] = {.lex_state = 118, .external_lex_state = 4}, + [1799] = {.lex_state = 118, .external_lex_state = 4}, + [1800] = {.lex_state = 118, .external_lex_state = 4}, + [1801] = {.lex_state = 118, .external_lex_state = 4}, + [1802] = {.lex_state = 118, .external_lex_state = 4}, + [1803] = {.lex_state = 118, .external_lex_state = 4}, + [1804] = {.lex_state = 118, .external_lex_state = 4}, + [1805] = {.lex_state = 118, .external_lex_state = 4}, + [1806] = {.lex_state = 118, .external_lex_state = 4}, + [1807] = {.lex_state = 118, .external_lex_state = 4}, + [1808] = {.lex_state = 118, .external_lex_state = 4}, + [1809] = {.lex_state = 118, .external_lex_state = 4}, + [1810] = {.lex_state = 118, .external_lex_state = 4}, + [1811] = {.lex_state = 118, .external_lex_state = 4}, + [1812] = {.lex_state = 262, .external_lex_state = 4}, + [1813] = {.lex_state = 262, .external_lex_state = 5}, + [1814] = {.lex_state = 262, .external_lex_state = 5}, + [1815] = {.lex_state = 262, .external_lex_state = 5}, + [1816] = {.lex_state = 262, .external_lex_state = 5}, + [1817] = {.lex_state = 262, .external_lex_state = 4}, + [1818] = {.lex_state = 262, .external_lex_state = 5}, + [1819] = {.lex_state = 262, .external_lex_state = 5}, + [1820] = {.lex_state = 118, .external_lex_state = 4}, + [1821] = {.lex_state = 262, .external_lex_state = 4}, + [1822] = {.lex_state = 262, .external_lex_state = 4}, + [1823] = {.lex_state = 262, .external_lex_state = 5}, + [1824] = {.lex_state = 262, .external_lex_state = 4}, + [1825] = {.lex_state = 262, .external_lex_state = 4}, + [1826] = {.lex_state = 262, .external_lex_state = 5}, + [1827] = {.lex_state = 264, .external_lex_state = 5}, + [1828] = {.lex_state = 264, .external_lex_state = 5}, + [1829] = {.lex_state = 264, .external_lex_state = 5}, + [1830] = {.lex_state = 264, .external_lex_state = 5}, [1831] = {.lex_state = 262, .external_lex_state = 4}, - [1832] = {.lex_state = 121, .external_lex_state = 5}, + [1832] = {.lex_state = 262, .external_lex_state = 4}, [1833] = {.lex_state = 262, .external_lex_state = 4}, - [1834] = {.lex_state = 121, .external_lex_state = 5}, - [1835] = {.lex_state = 121, .external_lex_state = 5}, - [1836] = {.lex_state = 121, .external_lex_state = 5}, - [1837] = {.lex_state = 121, .external_lex_state = 5}, - [1838] = {.lex_state = 121, .external_lex_state = 5}, - [1839] = {.lex_state = 121, .external_lex_state = 5}, - [1840] = {.lex_state = 121, .external_lex_state = 5}, - [1841] = {.lex_state = 121, .external_lex_state = 5}, - [1842] = {.lex_state = 121, .external_lex_state = 5}, - [1843] = {.lex_state = 121, .external_lex_state = 5}, - [1844] = {.lex_state = 121, .external_lex_state = 5}, - [1845] = {.lex_state = 121, .external_lex_state = 5}, - [1846] = {.lex_state = 121, .external_lex_state = 5}, - [1847] = {.lex_state = 121, .external_lex_state = 5}, - [1848] = {.lex_state = 121, .external_lex_state = 5}, - [1849] = {.lex_state = 121, .external_lex_state = 5}, - [1850] = {.lex_state = 121, .external_lex_state = 5}, - [1851] = {.lex_state = 121, .external_lex_state = 5}, - [1852] = {.lex_state = 262, .external_lex_state = 5}, - [1853] = {.lex_state = 262, .external_lex_state = 4}, - [1854] = {.lex_state = 262, .external_lex_state = 5}, - [1855] = {.lex_state = 121, .external_lex_state = 5}, - [1856] = {.lex_state = 121, .external_lex_state = 5}, - [1857] = {.lex_state = 262, .external_lex_state = 4}, - [1858] = {.lex_state = 121, .external_lex_state = 5}, - [1859] = {.lex_state = 262, .external_lex_state = 5}, - [1860] = {.lex_state = 262, .external_lex_state = 5}, - [1861] = {.lex_state = 262, .external_lex_state = 5}, - [1862] = {.lex_state = 121, .external_lex_state = 5}, - [1863] = {.lex_state = 121, .external_lex_state = 5}, - [1864] = {.lex_state = 121, .external_lex_state = 5}, - [1865] = {.lex_state = 121, .external_lex_state = 5}, - [1866] = {.lex_state = 262, .external_lex_state = 5}, - [1867] = {.lex_state = 262, .external_lex_state = 5}, - [1868] = {.lex_state = 262, .external_lex_state = 5}, - [1869] = {.lex_state = 262, .external_lex_state = 5}, - [1870] = {.lex_state = 121, .external_lex_state = 5}, - [1871] = {.lex_state = 121, .external_lex_state = 5}, + [1834] = {.lex_state = 118, .external_lex_state = 4}, + [1835] = {.lex_state = 264, .external_lex_state = 5}, + [1836] = {.lex_state = 118, .external_lex_state = 4}, + [1837] = {.lex_state = 118, .external_lex_state = 4}, + [1838] = {.lex_state = 118, .external_lex_state = 4}, + [1839] = {.lex_state = 118, .external_lex_state = 4}, + [1840] = {.lex_state = 118, .external_lex_state = 4}, + [1841] = {.lex_state = 118, .external_lex_state = 4}, + [1842] = {.lex_state = 118, .external_lex_state = 4}, + [1843] = {.lex_state = 118, .external_lex_state = 4}, + [1844] = {.lex_state = 118, .external_lex_state = 4}, + [1845] = {.lex_state = 118, .external_lex_state = 4}, + [1846] = {.lex_state = 118, .external_lex_state = 4}, + [1847] = {.lex_state = 118, .external_lex_state = 4}, + [1848] = {.lex_state = 118, .external_lex_state = 4}, + [1849] = {.lex_state = 118, .external_lex_state = 4}, + [1850] = {.lex_state = 118, .external_lex_state = 4}, + [1851] = {.lex_state = 118, .external_lex_state = 4}, + [1852] = {.lex_state = 118, .external_lex_state = 4}, + [1853] = {.lex_state = 118, .external_lex_state = 4}, + [1854] = {.lex_state = 262, .external_lex_state = 4}, + [1855] = {.lex_state = 262, .external_lex_state = 4}, + [1856] = {.lex_state = 262, .external_lex_state = 4}, + [1857] = {.lex_state = 118, .external_lex_state = 4}, + [1858] = {.lex_state = 118, .external_lex_state = 4}, + [1859] = {.lex_state = 264, .external_lex_state = 5}, + [1860] = {.lex_state = 262, .external_lex_state = 4}, + [1861] = {.lex_state = 264, .external_lex_state = 5}, + [1862] = {.lex_state = 264, .external_lex_state = 5}, + [1863] = {.lex_state = 102, .external_lex_state = 4}, + [1864] = {.lex_state = 264, .external_lex_state = 5}, + [1865] = {.lex_state = 262, .external_lex_state = 4}, + [1866] = {.lex_state = 264, .external_lex_state = 5}, + [1867] = {.lex_state = 264, .external_lex_state = 5}, + [1868] = {.lex_state = 264, .external_lex_state = 5}, + [1869] = {.lex_state = 264, .external_lex_state = 5}, + [1870] = {.lex_state = 262, .external_lex_state = 5}, + [1871] = {.lex_state = 262, .external_lex_state = 5}, [1872] = {.lex_state = 262, .external_lex_state = 5}, [1873] = {.lex_state = 262, .external_lex_state = 5}, - [1874] = {.lex_state = 121, .external_lex_state = 5}, - [1875] = {.lex_state = 121, .external_lex_state = 5}, - [1876] = {.lex_state = 262, .external_lex_state = 5}, - [1877] = {.lex_state = 262, .external_lex_state = 5}, - [1878] = {.lex_state = 262, .external_lex_state = 5}, - [1879] = {.lex_state = 262, .external_lex_state = 5}, + [1874] = {.lex_state = 262, .external_lex_state = 5}, + [1875] = {.lex_state = 264, .external_lex_state = 5}, + [1876] = {.lex_state = 264, .external_lex_state = 5}, + [1877] = {.lex_state = 262, .external_lex_state = 4}, + [1878] = {.lex_state = 102, .external_lex_state = 4}, + [1879] = {.lex_state = 262, .external_lex_state = 4}, [1880] = {.lex_state = 262, .external_lex_state = 4}, - [1881] = {.lex_state = 262, .external_lex_state = 5}, - [1882] = {.lex_state = 262, .external_lex_state = 5}, - [1883] = {.lex_state = 262, .external_lex_state = 5}, - [1884] = {.lex_state = 262, .external_lex_state = 5}, + [1881] = {.lex_state = 262, .external_lex_state = 4}, + [1882] = {.lex_state = 102, .external_lex_state = 4}, + [1883] = {.lex_state = 262, .external_lex_state = 4}, + [1884] = {.lex_state = 262, .external_lex_state = 4}, [1885] = {.lex_state = 262, .external_lex_state = 4}, - [1886] = {.lex_state = 102, .external_lex_state = 5}, - [1887] = {.lex_state = 262, .external_lex_state = 5}, - [1888] = {.lex_state = 262, .external_lex_state = 5}, - [1889] = {.lex_state = 262, .external_lex_state = 5}, - [1890] = {.lex_state = 262, .external_lex_state = 5}, - [1891] = {.lex_state = 262, .external_lex_state = 5}, - [1892] = {.lex_state = 262, .external_lex_state = 5}, - [1893] = {.lex_state = 262, .external_lex_state = 5}, - [1894] = {.lex_state = 262, .external_lex_state = 5}, - [1895] = {.lex_state = 262, .external_lex_state = 5}, - [1896] = {.lex_state = 262, .external_lex_state = 5}, - [1897] = {.lex_state = 262, .external_lex_state = 5}, - [1898] = {.lex_state = 262, .external_lex_state = 5}, - [1899] = {.lex_state = 262, .external_lex_state = 5}, - [1900] = {.lex_state = 262, .external_lex_state = 4}, + [1886] = {.lex_state = 102, .external_lex_state = 4}, + [1887] = {.lex_state = 262, .external_lex_state = 4}, + [1888] = {.lex_state = 262, .external_lex_state = 4}, + [1889] = {.lex_state = 262, .external_lex_state = 4}, + [1890] = {.lex_state = 264, .external_lex_state = 5}, + [1891] = {.lex_state = 102, .external_lex_state = 4}, + [1892] = {.lex_state = 102, .external_lex_state = 4}, + [1893] = {.lex_state = 102, .external_lex_state = 4}, + [1894] = {.lex_state = 102, .external_lex_state = 4}, + [1895] = {.lex_state = 102, .external_lex_state = 4}, + [1896] = {.lex_state = 102, .external_lex_state = 4}, + [1897] = {.lex_state = 102, .external_lex_state = 4}, + [1898] = {.lex_state = 102, .external_lex_state = 4}, + [1899] = {.lex_state = 102, .external_lex_state = 4}, + [1900] = {.lex_state = 102, .external_lex_state = 4}, [1901] = {.lex_state = 262, .external_lex_state = 4}, [1902] = {.lex_state = 262, .external_lex_state = 4}, [1903] = {.lex_state = 262, .external_lex_state = 4}, [1904] = {.lex_state = 262, .external_lex_state = 4}, - [1905] = {.lex_state = 262, .external_lex_state = 5}, - [1906] = {.lex_state = 262, .external_lex_state = 5}, + [1905] = {.lex_state = 262, .external_lex_state = 4}, + [1906] = {.lex_state = 262, .external_lex_state = 4}, [1907] = {.lex_state = 262, .external_lex_state = 4}, - [1908] = {.lex_state = 121, .external_lex_state = 5}, + [1908] = {.lex_state = 262, .external_lex_state = 4}, [1909] = {.lex_state = 262, .external_lex_state = 4}, - [1910] = {.lex_state = 102, .external_lex_state = 5}, - [1911] = {.lex_state = 262, .external_lex_state = 4}, - [1912] = {.lex_state = 262, .external_lex_state = 4}, - [1913] = {.lex_state = 262, .external_lex_state = 4}, - [1914] = {.lex_state = 262, .external_lex_state = 4}, - [1915] = {.lex_state = 262, .external_lex_state = 4}, - [1916] = {.lex_state = 102, .external_lex_state = 5}, - [1917] = {.lex_state = 102, .external_lex_state = 5}, - [1918] = {.lex_state = 262, .external_lex_state = 5}, - [1919] = {.lex_state = 262, .external_lex_state = 5}, - [1920] = {.lex_state = 102, .external_lex_state = 5}, - [1921] = {.lex_state = 121, .external_lex_state = 5}, - [1922] = {.lex_state = 262, .external_lex_state = 5}, - [1923] = {.lex_state = 262, .external_lex_state = 5}, + [1910] = {.lex_state = 262, .external_lex_state = 4}, + [1911] = {.lex_state = 102, .external_lex_state = 4}, + [1912] = {.lex_state = 102, .external_lex_state = 4}, + [1913] = {.lex_state = 102, .external_lex_state = 4}, + [1914] = {.lex_state = 102, .external_lex_state = 4}, + [1915] = {.lex_state = 102, .external_lex_state = 4}, + [1916] = {.lex_state = 262, .external_lex_state = 5}, + [1917] = {.lex_state = 264, .external_lex_state = 5}, + [1918] = {.lex_state = 262, .external_lex_state = 4}, + [1919] = {.lex_state = 264, .external_lex_state = 5}, + [1920] = {.lex_state = 262, .external_lex_state = 5}, + [1921] = {.lex_state = 262, .external_lex_state = 4}, + [1922] = {.lex_state = 262, .external_lex_state = 4}, + [1923] = {.lex_state = 262, .external_lex_state = 4}, [1924] = {.lex_state = 262, .external_lex_state = 4}, - [1925] = {.lex_state = 121, .external_lex_state = 5}, - [1926] = {.lex_state = 262, .external_lex_state = 5}, - [1927] = {.lex_state = 262, .external_lex_state = 5}, - [1928] = {.lex_state = 262, .external_lex_state = 5}, - [1929] = {.lex_state = 262, .external_lex_state = 5}, - [1930] = {.lex_state = 262, .external_lex_state = 5}, + [1925] = {.lex_state = 262, .external_lex_state = 4}, + [1926] = {.lex_state = 262, .external_lex_state = 4}, + [1927] = {.lex_state = 262, .external_lex_state = 4}, + [1928] = {.lex_state = 262, .external_lex_state = 4}, + [1929] = {.lex_state = 262, .external_lex_state = 4}, + [1930] = {.lex_state = 262, .external_lex_state = 4}, [1931] = {.lex_state = 262, .external_lex_state = 4}, - [1932] = {.lex_state = 121, .external_lex_state = 5}, - [1933] = {.lex_state = 262, .external_lex_state = 5}, - [1934] = {.lex_state = 262, .external_lex_state = 5}, - [1935] = {.lex_state = 262, .external_lex_state = 5}, - [1936] = {.lex_state = 262, .external_lex_state = 5}, - [1937] = {.lex_state = 262, .external_lex_state = 5}, - [1938] = {.lex_state = 262, .external_lex_state = 5}, - [1939] = {.lex_state = 102, .external_lex_state = 5}, - [1940] = {.lex_state = 262, .external_lex_state = 5}, - [1941] = {.lex_state = 262, .external_lex_state = 5}, + [1932] = {.lex_state = 262, .external_lex_state = 4}, + [1933] = {.lex_state = 262, .external_lex_state = 4}, + [1934] = {.lex_state = 262, .external_lex_state = 4}, + [1935] = {.lex_state = 262, .external_lex_state = 4}, + [1936] = {.lex_state = 264, .external_lex_state = 5}, + [1937] = {.lex_state = 264, .external_lex_state = 5}, + [1938] = {.lex_state = 262, .external_lex_state = 4}, + [1939] = {.lex_state = 262, .external_lex_state = 4}, + [1940] = {.lex_state = 262, .external_lex_state = 4}, + [1941] = {.lex_state = 262, .external_lex_state = 4}, [1942] = {.lex_state = 262, .external_lex_state = 4}, - [1943] = {.lex_state = 262, .external_lex_state = 5}, - [1944] = {.lex_state = 262, .external_lex_state = 5}, - [1945] = {.lex_state = 262, .external_lex_state = 5}, - [1946] = {.lex_state = 262, .external_lex_state = 5}, - [1947] = {.lex_state = 102, .external_lex_state = 5}, - [1948] = {.lex_state = 121, .external_lex_state = 5}, - [1949] = {.lex_state = 262, .external_lex_state = 5}, - [1950] = {.lex_state = 262, .external_lex_state = 5}, - [1951] = {.lex_state = 262, .external_lex_state = 5}, - [1952] = {.lex_state = 262, .external_lex_state = 5}, - [1953] = {.lex_state = 262, .external_lex_state = 5}, - [1954] = {.lex_state = 262, .external_lex_state = 5}, - [1955] = {.lex_state = 121, .external_lex_state = 5}, - [1956] = {.lex_state = 262, .external_lex_state = 5}, - [1957] = {.lex_state = 121, .external_lex_state = 5}, - [1958] = {.lex_state = 121, .external_lex_state = 5}, - [1959] = {.lex_state = 102, .external_lex_state = 5}, - [1960] = {.lex_state = 121, .external_lex_state = 5}, - [1961] = {.lex_state = 102, .external_lex_state = 5}, - [1962] = {.lex_state = 262, .external_lex_state = 5}, - [1963] = {.lex_state = 262, .external_lex_state = 5}, - [1964] = {.lex_state = 102, .external_lex_state = 5}, - [1965] = {.lex_state = 262, .external_lex_state = 4}, - [1966] = {.lex_state = 262, .external_lex_state = 5}, + [1943] = {.lex_state = 262, .external_lex_state = 4}, + [1944] = {.lex_state = 262, .external_lex_state = 4}, + [1945] = {.lex_state = 262, .external_lex_state = 4}, + [1946] = {.lex_state = 102, .external_lex_state = 4}, + [1947] = {.lex_state = 264, .external_lex_state = 5}, + [1948] = {.lex_state = 102, .external_lex_state = 4}, + [1949] = {.lex_state = 102, .external_lex_state = 4}, + [1950] = {.lex_state = 102, .external_lex_state = 4}, + [1951] = {.lex_state = 264, .external_lex_state = 5}, + [1952] = {.lex_state = 102, .external_lex_state = 4}, + [1953] = {.lex_state = 264, .external_lex_state = 5}, + [1954] = {.lex_state = 102, .external_lex_state = 4}, + [1955] = {.lex_state = 102, .external_lex_state = 4}, + [1956] = {.lex_state = 102, .external_lex_state = 4}, + [1957] = {.lex_state = 264, .external_lex_state = 5}, + [1958] = {.lex_state = 262, .external_lex_state = 5}, + [1959] = {.lex_state = 262, .external_lex_state = 5}, + [1960] = {.lex_state = 102, .external_lex_state = 4}, + [1961] = {.lex_state = 102, .external_lex_state = 4}, + [1962] = {.lex_state = 262, .external_lex_state = 4}, + [1963] = {.lex_state = 262, .external_lex_state = 4}, + [1964] = {.lex_state = 102, .external_lex_state = 4}, + [1965] = {.lex_state = 102, .external_lex_state = 4}, + [1966] = {.lex_state = 102, .external_lex_state = 4}, [1967] = {.lex_state = 262, .external_lex_state = 5}, - [1968] = {.lex_state = 262, .external_lex_state = 5}, - [1969] = {.lex_state = 262, .external_lex_state = 5}, - [1970] = {.lex_state = 262, .external_lex_state = 5}, - [1971] = {.lex_state = 262, .external_lex_state = 4}, - [1972] = {.lex_state = 262, .external_lex_state = 5}, - [1973] = {.lex_state = 262, .external_lex_state = 5}, - [1974] = {.lex_state = 262, .external_lex_state = 5}, - [1975] = {.lex_state = 102, .external_lex_state = 5}, - [1976] = {.lex_state = 262, .external_lex_state = 5}, - [1977] = {.lex_state = 262, .external_lex_state = 5}, - [1978] = {.lex_state = 262, .external_lex_state = 4}, - [1979] = {.lex_state = 102, .external_lex_state = 5}, - [1980] = {.lex_state = 121, .external_lex_state = 5}, + [1968] = {.lex_state = 264, .external_lex_state = 5}, + [1969] = {.lex_state = 264, .external_lex_state = 5}, + [1970] = {.lex_state = 264, .external_lex_state = 5}, + [1971] = {.lex_state = 264, .external_lex_state = 5}, + [1972] = {.lex_state = 118, .external_lex_state = 4}, + [1973] = {.lex_state = 118, .external_lex_state = 4}, + [1974] = {.lex_state = 118, .external_lex_state = 4}, + [1975] = {.lex_state = 264, .external_lex_state = 5}, + [1976] = {.lex_state = 264, .external_lex_state = 5}, + [1977] = {.lex_state = 264, .external_lex_state = 5}, + [1978] = {.lex_state = 264, .external_lex_state = 5}, + [1979] = {.lex_state = 264, .external_lex_state = 5}, + [1980] = {.lex_state = 118, .external_lex_state = 4}, [1981] = {.lex_state = 262, .external_lex_state = 5}, [1982] = {.lex_state = 262, .external_lex_state = 5}, [1983] = {.lex_state = 262, .external_lex_state = 5}, - [1984] = {.lex_state = 102, .external_lex_state = 5}, - [1985] = {.lex_state = 262, .external_lex_state = 5}, - [1986] = {.lex_state = 124, .external_lex_state = 5}, - [1987] = {.lex_state = 121, .external_lex_state = 5}, - [1988] = {.lex_state = 102, .external_lex_state = 5}, - [1989] = {.lex_state = 262, .external_lex_state = 5}, - [1990] = {.lex_state = 262, .external_lex_state = 5}, - [1991] = {.lex_state = 262, .external_lex_state = 5}, - [1992] = {.lex_state = 262, .external_lex_state = 5}, - [1993] = {.lex_state = 262, .external_lex_state = 5}, - [1994] = {.lex_state = 262, .external_lex_state = 5}, - [1995] = {.lex_state = 262, .external_lex_state = 5}, - [1996] = {.lex_state = 262, .external_lex_state = 5}, - [1997] = {.lex_state = 262, .external_lex_state = 5}, - [1998] = {.lex_state = 262, .external_lex_state = 5}, - [1999] = {.lex_state = 262, .external_lex_state = 5}, - [2000] = {.lex_state = 262, .external_lex_state = 5}, - [2001] = {.lex_state = 262, .external_lex_state = 5}, - [2002] = {.lex_state = 262, .external_lex_state = 5}, - [2003] = {.lex_state = 262, .external_lex_state = 5}, - [2004] = {.lex_state = 102, .external_lex_state = 5}, - [2005] = {.lex_state = 262, .external_lex_state = 5}, - [2006] = {.lex_state = 262, .external_lex_state = 5}, - [2007] = {.lex_state = 124, .external_lex_state = 5}, - [2008] = {.lex_state = 121, .external_lex_state = 5}, - [2009] = {.lex_state = 102, .external_lex_state = 5}, + [1984] = {.lex_state = 262, .external_lex_state = 5}, + [1985] = {.lex_state = 264, .external_lex_state = 5}, + [1986] = {.lex_state = 262, .external_lex_state = 5}, + [1987] = {.lex_state = 264, .external_lex_state = 5}, + [1988] = {.lex_state = 264, .external_lex_state = 5}, + [1989] = {.lex_state = 264, .external_lex_state = 5}, + [1990] = {.lex_state = 264, .external_lex_state = 5}, + [1991] = {.lex_state = 264, .external_lex_state = 5}, + [1992] = {.lex_state = 264, .external_lex_state = 5}, + [1993] = {.lex_state = 264, .external_lex_state = 5}, + [1994] = {.lex_state = 264, .external_lex_state = 5}, + [1995] = {.lex_state = 264, .external_lex_state = 5}, + [1996] = {.lex_state = 264, .external_lex_state = 5}, + [1997] = {.lex_state = 264, .external_lex_state = 5}, + [1998] = {.lex_state = 264, .external_lex_state = 5}, + [1999] = {.lex_state = 264, .external_lex_state = 5}, + [2000] = {.lex_state = 264, .external_lex_state = 5}, + [2001] = {.lex_state = 264, .external_lex_state = 5}, + [2002] = {.lex_state = 264, .external_lex_state = 5}, + [2003] = {.lex_state = 264, .external_lex_state = 5}, + [2004] = {.lex_state = 264, .external_lex_state = 5}, + [2005] = {.lex_state = 264, .external_lex_state = 5}, + [2006] = {.lex_state = 264, .external_lex_state = 5}, + [2007] = {.lex_state = 264, .external_lex_state = 5}, + [2008] = {.lex_state = 262, .external_lex_state = 5}, + [2009] = {.lex_state = 264, .external_lex_state = 5}, [2010] = {.lex_state = 262, .external_lex_state = 5}, - [2011] = {.lex_state = 102, .external_lex_state = 5}, - [2012] = {.lex_state = 102, .external_lex_state = 5}, - [2013] = {.lex_state = 121, .external_lex_state = 5}, - [2014] = {.lex_state = 121, .external_lex_state = 5}, - [2015] = {.lex_state = 121, .external_lex_state = 5}, - [2016] = {.lex_state = 121, .external_lex_state = 5}, - [2017] = {.lex_state = 121, .external_lex_state = 5}, - [2018] = {.lex_state = 121, .external_lex_state = 5}, - [2019] = {.lex_state = 121, .external_lex_state = 5}, - [2020] = {.lex_state = 121, .external_lex_state = 5}, - [2021] = {.lex_state = 121, .external_lex_state = 5}, - [2022] = {.lex_state = 262, .external_lex_state = 4}, - [2023] = {.lex_state = 121, .external_lex_state = 5}, - [2024] = {.lex_state = 121, .external_lex_state = 5}, - [2025] = {.lex_state = 121, .external_lex_state = 5}, - [2026] = {.lex_state = 102, .external_lex_state = 5}, - [2027] = {.lex_state = 121, .external_lex_state = 5}, - [2028] = {.lex_state = 264, .external_lex_state = 5}, + [2011] = {.lex_state = 262, .external_lex_state = 5}, + [2012] = {.lex_state = 262, .external_lex_state = 5}, + [2013] = {.lex_state = 262, .external_lex_state = 5}, + [2014] = {.lex_state = 262, .external_lex_state = 5}, + [2015] = {.lex_state = 262, .external_lex_state = 5}, + [2016] = {.lex_state = 262, .external_lex_state = 5}, + [2017] = {.lex_state = 262, .external_lex_state = 5}, + [2018] = {.lex_state = 262, .external_lex_state = 5}, + [2019] = {.lex_state = 262, .external_lex_state = 5}, + [2020] = {.lex_state = 262, .external_lex_state = 5}, + [2021] = {.lex_state = 262, .external_lex_state = 5}, + [2022] = {.lex_state = 262, .external_lex_state = 5}, + [2023] = {.lex_state = 262, .external_lex_state = 5}, + [2024] = {.lex_state = 262, .external_lex_state = 5}, + [2025] = {.lex_state = 262, .external_lex_state = 5}, + [2026] = {.lex_state = 262, .external_lex_state = 5}, + [2027] = {.lex_state = 262, .external_lex_state = 5}, + [2028] = {.lex_state = 262, .external_lex_state = 5}, [2029] = {.lex_state = 262, .external_lex_state = 5}, [2030] = {.lex_state = 262, .external_lex_state = 5}, - [2031] = {.lex_state = 127, .external_lex_state = 5}, - [2032] = {.lex_state = 124, .external_lex_state = 5}, - [2033] = {.lex_state = 264, .external_lex_state = 5}, - [2034] = {.lex_state = 121, .external_lex_state = 5}, + [2031] = {.lex_state = 262, .external_lex_state = 5}, + [2032] = {.lex_state = 262, .external_lex_state = 5}, + [2033] = {.lex_state = 262, .external_lex_state = 5}, + [2034] = {.lex_state = 262, .external_lex_state = 5}, [2035] = {.lex_state = 262, .external_lex_state = 5}, - [2036] = {.lex_state = 124, .external_lex_state = 5}, - [2037] = {.lex_state = 262, .external_lex_state = 5}, - [2038] = {.lex_state = 262, .external_lex_state = 4}, - [2039] = {.lex_state = 262, .external_lex_state = 4}, - [2040] = {.lex_state = 127, .external_lex_state = 5}, - [2041] = {.lex_state = 102, .external_lex_state = 5}, + [2036] = {.lex_state = 121, .external_lex_state = 5}, + [2037] = {.lex_state = 102, .external_lex_state = 5}, + [2038] = {.lex_state = 102, .external_lex_state = 5}, + [2039] = {.lex_state = 262, .external_lex_state = 5}, + [2040] = {.lex_state = 262, .external_lex_state = 5}, + [2041] = {.lex_state = 262, .external_lex_state = 5}, [2042] = {.lex_state = 262, .external_lex_state = 5}, - [2043] = {.lex_state = 266, .external_lex_state = 4}, - [2044] = {.lex_state = 102, .external_lex_state = 5}, - [2045] = {.lex_state = 102, .external_lex_state = 5}, - [2046] = {.lex_state = 266, .external_lex_state = 4}, - [2047] = {.lex_state = 127, .external_lex_state = 5}, - [2048] = {.lex_state = 264, .external_lex_state = 5}, - [2049] = {.lex_state = 264, .external_lex_state = 5}, - [2050] = {.lex_state = 127, .external_lex_state = 5}, + [2043] = {.lex_state = 262, .external_lex_state = 5}, + [2044] = {.lex_state = 262, .external_lex_state = 5}, + [2045] = {.lex_state = 262, .external_lex_state = 5}, + [2046] = {.lex_state = 262, .external_lex_state = 5}, + [2047] = {.lex_state = 262, .external_lex_state = 5}, + [2048] = {.lex_state = 262, .external_lex_state = 5}, + [2049] = {.lex_state = 262, .external_lex_state = 5}, + [2050] = {.lex_state = 262, .external_lex_state = 5}, [2051] = {.lex_state = 102, .external_lex_state = 5}, - [2052] = {.lex_state = 127, .external_lex_state = 5}, - [2053] = {.lex_state = 264, .external_lex_state = 5}, - [2054] = {.lex_state = 102, .external_lex_state = 5}, - [2055] = {.lex_state = 102, .external_lex_state = 5}, - [2056] = {.lex_state = 102, .external_lex_state = 5}, - [2057] = {.lex_state = 102, .external_lex_state = 5}, - [2058] = {.lex_state = 102, .external_lex_state = 5}, - [2059] = {.lex_state = 102, .external_lex_state = 5}, - [2060] = {.lex_state = 124, .external_lex_state = 5}, + [2052] = {.lex_state = 121, .external_lex_state = 5}, + [2053] = {.lex_state = 102, .external_lex_state = 5}, + [2054] = {.lex_state = 121, .external_lex_state = 5}, + [2055] = {.lex_state = 121, .external_lex_state = 5}, + [2056] = {.lex_state = 121, .external_lex_state = 5}, + [2057] = {.lex_state = 121, .external_lex_state = 5}, + [2058] = {.lex_state = 121, .external_lex_state = 5}, + [2059] = {.lex_state = 121, .external_lex_state = 5}, + [2060] = {.lex_state = 121, .external_lex_state = 5}, [2061] = {.lex_state = 121, .external_lex_state = 5}, - [2062] = {.lex_state = 264, .external_lex_state = 5}, + [2062] = {.lex_state = 121, .external_lex_state = 5}, [2063] = {.lex_state = 121, .external_lex_state = 5}, - [2064] = {.lex_state = 102, .external_lex_state = 5}, + [2064] = {.lex_state = 121, .external_lex_state = 5}, [2065] = {.lex_state = 121, .external_lex_state = 5}, [2066] = {.lex_state = 121, .external_lex_state = 5}, - [2067] = {.lex_state = 102, .external_lex_state = 5}, - [2068] = {.lex_state = 102, .external_lex_state = 5}, - [2069] = {.lex_state = 102, .external_lex_state = 5}, - [2070] = {.lex_state = 262, .external_lex_state = 5}, - [2071] = {.lex_state = 102, .external_lex_state = 5}, - [2072] = {.lex_state = 102, .external_lex_state = 5}, - [2073] = {.lex_state = 102, .external_lex_state = 5}, - [2074] = {.lex_state = 121, .external_lex_state = 5}, - [2075] = {.lex_state = 102, .external_lex_state = 5}, + [2067] = {.lex_state = 121, .external_lex_state = 5}, + [2068] = {.lex_state = 121, .external_lex_state = 5}, + [2069] = {.lex_state = 121, .external_lex_state = 5}, + [2070] = {.lex_state = 121, .external_lex_state = 5}, + [2071] = {.lex_state = 121, .external_lex_state = 5}, + [2072] = {.lex_state = 121, .external_lex_state = 5}, + [2073] = {.lex_state = 121, .external_lex_state = 5}, + [2074] = {.lex_state = 102, .external_lex_state = 5}, + [2075] = {.lex_state = 121, .external_lex_state = 5}, [2076] = {.lex_state = 102, .external_lex_state = 5}, - [2077] = {.lex_state = 102, .external_lex_state = 5}, - [2078] = {.lex_state = 264, .external_lex_state = 5}, - [2079] = {.lex_state = 102, .external_lex_state = 5}, - [2080] = {.lex_state = 102, .external_lex_state = 5}, - [2081] = {.lex_state = 121, .external_lex_state = 5}, - [2082] = {.lex_state = 121, .external_lex_state = 5}, - [2083] = {.lex_state = 121, .external_lex_state = 5}, - [2084] = {.lex_state = 121, .external_lex_state = 5}, - [2085] = {.lex_state = 121, .external_lex_state = 5}, - [2086] = {.lex_state = 102, .external_lex_state = 5}, - [2087] = {.lex_state = 121, .external_lex_state = 5}, - [2088] = {.lex_state = 121, .external_lex_state = 5}, - [2089] = {.lex_state = 121, .external_lex_state = 5}, - [2090] = {.lex_state = 121, .external_lex_state = 5}, - [2091] = {.lex_state = 266, .external_lex_state = 4}, - [2092] = {.lex_state = 127, .external_lex_state = 5}, - [2093] = {.lex_state = 121, .external_lex_state = 5}, - [2094] = {.lex_state = 102, .external_lex_state = 5}, - [2095] = {.lex_state = 121, .external_lex_state = 5}, - [2096] = {.lex_state = 124, .external_lex_state = 5}, - [2097] = {.lex_state = 127, .external_lex_state = 5}, - [2098] = {.lex_state = 124, .external_lex_state = 5}, - [2099] = {.lex_state = 102, .external_lex_state = 5}, - [2100] = {.lex_state = 264, .external_lex_state = 5}, - [2101] = {.lex_state = 264, .external_lex_state = 5}, - [2102] = {.lex_state = 121, .external_lex_state = 5}, + [2077] = {.lex_state = 121, .external_lex_state = 5}, + [2078] = {.lex_state = 262, .external_lex_state = 5}, + [2079] = {.lex_state = 262, .external_lex_state = 5}, + [2080] = {.lex_state = 262, .external_lex_state = 5}, + [2081] = {.lex_state = 102, .external_lex_state = 5}, + [2082] = {.lex_state = 262, .external_lex_state = 5}, + [2083] = {.lex_state = 262, .external_lex_state = 5}, + [2084] = {.lex_state = 262, .external_lex_state = 5}, + [2085] = {.lex_state = 262, .external_lex_state = 5}, + [2086] = {.lex_state = 262, .external_lex_state = 5}, + [2087] = {.lex_state = 262, .external_lex_state = 5}, + [2088] = {.lex_state = 262, .external_lex_state = 5}, + [2089] = {.lex_state = 262, .external_lex_state = 5}, + [2090] = {.lex_state = 262, .external_lex_state = 5}, + [2091] = {.lex_state = 262, .external_lex_state = 5}, + [2092] = {.lex_state = 262, .external_lex_state = 5}, + [2093] = {.lex_state = 262, .external_lex_state = 5}, + [2094] = {.lex_state = 262, .external_lex_state = 5}, + [2095] = {.lex_state = 262, .external_lex_state = 5}, + [2096] = {.lex_state = 262, .external_lex_state = 5}, + [2097] = {.lex_state = 262, .external_lex_state = 4}, + [2098] = {.lex_state = 262, .external_lex_state = 5}, + [2099] = {.lex_state = 262, .external_lex_state = 5}, + [2100] = {.lex_state = 262, .external_lex_state = 5}, + [2101] = {.lex_state = 262, .external_lex_state = 5}, + [2102] = {.lex_state = 102, .external_lex_state = 5}, [2103] = {.lex_state = 102, .external_lex_state = 5}, - [2104] = {.lex_state = 121, .external_lex_state = 5}, - [2105] = {.lex_state = 121, .external_lex_state = 5}, - [2106] = {.lex_state = 121, .external_lex_state = 5}, + [2104] = {.lex_state = 262, .external_lex_state = 5}, + [2105] = {.lex_state = 102, .external_lex_state = 5}, + [2106] = {.lex_state = 262, .external_lex_state = 5}, [2107] = {.lex_state = 262, .external_lex_state = 5}, - [2108] = {.lex_state = 262, .external_lex_state = 4}, - [2109] = {.lex_state = 102, .external_lex_state = 5}, - [2110] = {.lex_state = 264, .external_lex_state = 5}, - [2111] = {.lex_state = 264, .external_lex_state = 5}, - [2112] = {.lex_state = 264, .external_lex_state = 5}, - [2113] = {.lex_state = 262, .external_lex_state = 5}, - [2114] = {.lex_state = 262, .external_lex_state = 4}, - [2115] = {.lex_state = 124, .external_lex_state = 5}, - [2116] = {.lex_state = 262, .external_lex_state = 4}, - [2117] = {.lex_state = 124, .external_lex_state = 5}, - [2118] = {.lex_state = 262, .external_lex_state = 4}, - [2119] = {.lex_state = 264, .external_lex_state = 5}, - [2120] = {.lex_state = 102, .external_lex_state = 5}, - [2121] = {.lex_state = 102, .external_lex_state = 5}, - [2122] = {.lex_state = 124, .external_lex_state = 5}, - [2123] = {.lex_state = 264, .external_lex_state = 5}, + [2108] = {.lex_state = 262, .external_lex_state = 5}, + [2109] = {.lex_state = 262, .external_lex_state = 5}, + [2110] = {.lex_state = 102, .external_lex_state = 5}, + [2111] = {.lex_state = 262, .external_lex_state = 4}, + [2112] = {.lex_state = 262, .external_lex_state = 4}, + [2113] = {.lex_state = 262, .external_lex_state = 4}, + [2114] = {.lex_state = 121, .external_lex_state = 5}, + [2115] = {.lex_state = 121, .external_lex_state = 5}, + [2116] = {.lex_state = 121, .external_lex_state = 5}, + [2117] = {.lex_state = 121, .external_lex_state = 5}, + [2118] = {.lex_state = 121, .external_lex_state = 5}, + [2119] = {.lex_state = 121, .external_lex_state = 5}, + [2120] = {.lex_state = 262, .external_lex_state = 5}, + [2121] = {.lex_state = 262, .external_lex_state = 4}, + [2122] = {.lex_state = 102, .external_lex_state = 5}, + [2123] = {.lex_state = 262, .external_lex_state = 4}, [2124] = {.lex_state = 262, .external_lex_state = 4}, - [2125] = {.lex_state = 262, .external_lex_state = 5}, - [2126] = {.lex_state = 124, .external_lex_state = 5}, - [2127] = {.lex_state = 264, .external_lex_state = 5}, - [2128] = {.lex_state = 266, .external_lex_state = 4}, + [2125] = {.lex_state = 262, .external_lex_state = 4}, + [2126] = {.lex_state = 262, .external_lex_state = 4}, + [2127] = {.lex_state = 262, .external_lex_state = 4}, + [2128] = {.lex_state = 262, .external_lex_state = 4}, [2129] = {.lex_state = 262, .external_lex_state = 5}, - [2130] = {.lex_state = 262, .external_lex_state = 4}, - [2131] = {.lex_state = 262, .external_lex_state = 5}, - [2132] = {.lex_state = 264, .external_lex_state = 5}, - [2133] = {.lex_state = 124, .external_lex_state = 5}, - [2134] = {.lex_state = 262, .external_lex_state = 5}, - [2135] = {.lex_state = 262, .external_lex_state = 5}, - [2136] = {.lex_state = 262, .external_lex_state = 5}, - [2137] = {.lex_state = 264, .external_lex_state = 5}, - [2138] = {.lex_state = 262, .external_lex_state = 5}, - [2139] = {.lex_state = 264, .external_lex_state = 5}, - [2140] = {.lex_state = 264, .external_lex_state = 5}, - [2141] = {.lex_state = 262, .external_lex_state = 4}, - [2142] = {.lex_state = 266, .external_lex_state = 4}, - [2143] = {.lex_state = 264, .external_lex_state = 5}, - [2144] = {.lex_state = 264, .external_lex_state = 5}, - [2145] = {.lex_state = 262, .external_lex_state = 5}, - [2146] = {.lex_state = 124, .external_lex_state = 5}, - [2147] = {.lex_state = 124, .external_lex_state = 5}, + [2130] = {.lex_state = 121, .external_lex_state = 5}, + [2131] = {.lex_state = 121, .external_lex_state = 5}, + [2132] = {.lex_state = 121, .external_lex_state = 5}, + [2133] = {.lex_state = 121, .external_lex_state = 5}, + [2134] = {.lex_state = 121, .external_lex_state = 5}, + [2135] = {.lex_state = 121, .external_lex_state = 5}, + [2136] = {.lex_state = 121, .external_lex_state = 5}, + [2137] = {.lex_state = 121, .external_lex_state = 5}, + [2138] = {.lex_state = 121, .external_lex_state = 5}, + [2139] = {.lex_state = 121, .external_lex_state = 5}, + [2140] = {.lex_state = 262, .external_lex_state = 5}, + [2141] = {.lex_state = 262, .external_lex_state = 5}, + [2142] = {.lex_state = 262, .external_lex_state = 5}, + [2143] = {.lex_state = 262, .external_lex_state = 4}, + [2144] = {.lex_state = 262, .external_lex_state = 4}, + [2145] = {.lex_state = 262, .external_lex_state = 4}, + [2146] = {.lex_state = 121, .external_lex_state = 5}, + [2147] = {.lex_state = 121, .external_lex_state = 5}, [2148] = {.lex_state = 262, .external_lex_state = 5}, - [2149] = {.lex_state = 262, .external_lex_state = 4}, - [2150] = {.lex_state = 264, .external_lex_state = 5}, - [2151] = {.lex_state = 102, .external_lex_state = 5}, - [2152] = {.lex_state = 266, .external_lex_state = 4}, - [2153] = {.lex_state = 266, .external_lex_state = 4}, - [2154] = {.lex_state = 264, .external_lex_state = 5}, - [2155] = {.lex_state = 264, .external_lex_state = 5}, - [2156] = {.lex_state = 121, .external_lex_state = 5}, - [2157] = {.lex_state = 262, .external_lex_state = 5}, - [2158] = {.lex_state = 124, .external_lex_state = 5}, - [2159] = {.lex_state = 102, .external_lex_state = 5}, - [2160] = {.lex_state = 102, .external_lex_state = 5}, - [2161] = {.lex_state = 264, .external_lex_state = 5}, - [2162] = {.lex_state = 124, .external_lex_state = 5}, - [2163] = {.lex_state = 124, .external_lex_state = 5}, - [2164] = {.lex_state = 124, .external_lex_state = 5}, - [2165] = {.lex_state = 124, .external_lex_state = 5}, - [2166] = {.lex_state = 264, .external_lex_state = 5}, - [2167] = {.lex_state = 264, .external_lex_state = 5}, - [2168] = {.lex_state = 264, .external_lex_state = 5}, - [2169] = {.lex_state = 262, .external_lex_state = 4}, - [2170] = {.lex_state = 262, .external_lex_state = 4}, - [2171] = {.lex_state = 262, .external_lex_state = 5}, - [2172] = {.lex_state = 262, .external_lex_state = 5}, - [2173] = {.lex_state = 262, .external_lex_state = 5}, - [2174] = {.lex_state = 264, .external_lex_state = 5}, - [2175] = {.lex_state = 262, .external_lex_state = 4}, - [2176] = {.lex_state = 124, .external_lex_state = 5}, - [2177] = {.lex_state = 262, .external_lex_state = 4}, - [2178] = {.lex_state = 264, .external_lex_state = 5}, - [2179] = {.lex_state = 266, .external_lex_state = 4}, - [2180] = {.lex_state = 266, .external_lex_state = 4}, - [2181] = {.lex_state = 266, .external_lex_state = 4}, - [2182] = {.lex_state = 266, .external_lex_state = 4}, - [2183] = {.lex_state = 266, .external_lex_state = 4}, + [2149] = {.lex_state = 262, .external_lex_state = 5}, + [2150] = {.lex_state = 262, .external_lex_state = 5}, + [2151] = {.lex_state = 262, .external_lex_state = 5}, + [2152] = {.lex_state = 262, .external_lex_state = 5}, + [2153] = {.lex_state = 262, .external_lex_state = 4}, + [2154] = {.lex_state = 262, .external_lex_state = 4}, + [2155] = {.lex_state = 262, .external_lex_state = 5}, + [2156] = {.lex_state = 262, .external_lex_state = 4}, + [2157] = {.lex_state = 262, .external_lex_state = 4}, + [2158] = {.lex_state = 262, .external_lex_state = 4}, + [2159] = {.lex_state = 262, .external_lex_state = 5}, + [2160] = {.lex_state = 262, .external_lex_state = 4}, + [2161] = {.lex_state = 262, .external_lex_state = 4}, + [2162] = {.lex_state = 262, .external_lex_state = 4}, + [2163] = {.lex_state = 262, .external_lex_state = 5}, + [2164] = {.lex_state = 121, .external_lex_state = 5}, + [2165] = {.lex_state = 121, .external_lex_state = 5}, + [2166] = {.lex_state = 121, .external_lex_state = 5}, + [2167] = {.lex_state = 121, .external_lex_state = 5}, + [2168] = {.lex_state = 121, .external_lex_state = 5}, + [2169] = {.lex_state = 121, .external_lex_state = 5}, + [2170] = {.lex_state = 121, .external_lex_state = 5}, + [2171] = {.lex_state = 121, .external_lex_state = 5}, + [2172] = {.lex_state = 121, .external_lex_state = 5}, + [2173] = {.lex_state = 121, .external_lex_state = 5}, + [2174] = {.lex_state = 121, .external_lex_state = 5}, + [2175] = {.lex_state = 121, .external_lex_state = 5}, + [2176] = {.lex_state = 121, .external_lex_state = 5}, + [2177] = {.lex_state = 121, .external_lex_state = 5}, + [2178] = {.lex_state = 121, .external_lex_state = 5}, + [2179] = {.lex_state = 121, .external_lex_state = 5}, + [2180] = {.lex_state = 121, .external_lex_state = 5}, + [2181] = {.lex_state = 262, .external_lex_state = 5}, + [2182] = {.lex_state = 121, .external_lex_state = 5}, + [2183] = {.lex_state = 102, .external_lex_state = 5}, [2184] = {.lex_state = 262, .external_lex_state = 5}, [2185] = {.lex_state = 262, .external_lex_state = 5}, [2186] = {.lex_state = 262, .external_lex_state = 5}, [2187] = {.lex_state = 262, .external_lex_state = 5}, - [2188] = {.lex_state = 264, .external_lex_state = 5}, - [2189] = {.lex_state = 262, .external_lex_state = 5}, - [2190] = {.lex_state = 264, .external_lex_state = 5}, - [2191] = {.lex_state = 264, .external_lex_state = 5}, - [2192] = {.lex_state = 264, .external_lex_state = 5}, - [2193] = {.lex_state = 264, .external_lex_state = 5}, - [2194] = {.lex_state = 264, .external_lex_state = 5}, - [2195] = {.lex_state = 264, .external_lex_state = 5}, - [2196] = {.lex_state = 264, .external_lex_state = 5}, - [2197] = {.lex_state = 264, .external_lex_state = 5}, + [2188] = {.lex_state = 262, .external_lex_state = 4}, + [2189] = {.lex_state = 262, .external_lex_state = 4}, + [2190] = {.lex_state = 262, .external_lex_state = 5}, + [2191] = {.lex_state = 262, .external_lex_state = 5}, + [2192] = {.lex_state = 262, .external_lex_state = 5}, + [2193] = {.lex_state = 262, .external_lex_state = 4}, + [2194] = {.lex_state = 262, .external_lex_state = 5}, + [2195] = {.lex_state = 262, .external_lex_state = 5}, + [2196] = {.lex_state = 262, .external_lex_state = 5}, + [2197] = {.lex_state = 262, .external_lex_state = 5}, [2198] = {.lex_state = 262, .external_lex_state = 5}, - [2199] = {.lex_state = 264, .external_lex_state = 5}, - [2200] = {.lex_state = 264, .external_lex_state = 5}, - [2201] = {.lex_state = 264, .external_lex_state = 5}, - [2202] = {.lex_state = 264, .external_lex_state = 5}, - [2203] = {.lex_state = 264, .external_lex_state = 5}, - [2204] = {.lex_state = 264, .external_lex_state = 5}, - [2205] = {.lex_state = 264, .external_lex_state = 5}, - [2206] = {.lex_state = 264, .external_lex_state = 5}, + [2199] = {.lex_state = 262, .external_lex_state = 5}, + [2200] = {.lex_state = 262, .external_lex_state = 5}, + [2201] = {.lex_state = 262, .external_lex_state = 5}, + [2202] = {.lex_state = 262, .external_lex_state = 5}, + [2203] = {.lex_state = 262, .external_lex_state = 5}, + [2204] = {.lex_state = 262, .external_lex_state = 5}, + [2205] = {.lex_state = 262, .external_lex_state = 5}, + [2206] = {.lex_state = 262, .external_lex_state = 5}, [2207] = {.lex_state = 262, .external_lex_state = 5}, - [2208] = {.lex_state = 262, .external_lex_state = 4}, + [2208] = {.lex_state = 262, .external_lex_state = 5}, [2209] = {.lex_state = 262, .external_lex_state = 5}, [2210] = {.lex_state = 262, .external_lex_state = 5}, - [2211] = {.lex_state = 264, .external_lex_state = 5}, - [2212] = {.lex_state = 264, .external_lex_state = 5}, - [2213] = {.lex_state = 264, .external_lex_state = 5}, - [2214] = {.lex_state = 264, .external_lex_state = 5}, + [2211] = {.lex_state = 102, .external_lex_state = 5}, + [2212] = {.lex_state = 102, .external_lex_state = 5}, + [2213] = {.lex_state = 262, .external_lex_state = 5}, + [2214] = {.lex_state = 262, .external_lex_state = 5}, [2215] = {.lex_state = 264, .external_lex_state = 5}, [2216] = {.lex_state = 102, .external_lex_state = 5}, [2217] = {.lex_state = 262, .external_lex_state = 5}, - [2218] = {.lex_state = 102, .external_lex_state = 5}, - [2219] = {.lex_state = 262, .external_lex_state = 5}, + [2218] = {.lex_state = 264, .external_lex_state = 5}, + [2219] = {.lex_state = 264, .external_lex_state = 5}, [2220] = {.lex_state = 264, .external_lex_state = 5}, [2221] = {.lex_state = 264, .external_lex_state = 5}, [2222] = {.lex_state = 264, .external_lex_state = 5}, - [2223] = {.lex_state = 264, .external_lex_state = 5}, + [2223] = {.lex_state = 262, .external_lex_state = 5}, [2224] = {.lex_state = 124, .external_lex_state = 5}, - [2225] = {.lex_state = 264, .external_lex_state = 5}, - [2226] = {.lex_state = 264, .external_lex_state = 5}, - [2227] = {.lex_state = 264, .external_lex_state = 5}, - [2228] = {.lex_state = 264, .external_lex_state = 5}, - [2229] = {.lex_state = 264, .external_lex_state = 5}, + [2225] = {.lex_state = 124, .external_lex_state = 5}, + [2226] = {.lex_state = 262, .external_lex_state = 5}, + [2227] = {.lex_state = 102, .external_lex_state = 5}, + [2228] = {.lex_state = 102, .external_lex_state = 5}, + [2229] = {.lex_state = 262, .external_lex_state = 5}, [2230] = {.lex_state = 262, .external_lex_state = 5}, [2231] = {.lex_state = 264, .external_lex_state = 5}, - [2232] = {.lex_state = 102, .external_lex_state = 5}, - [2233] = {.lex_state = 102, .external_lex_state = 5}, - [2234] = {.lex_state = 262, .external_lex_state = 5}, + [2232] = {.lex_state = 124, .external_lex_state = 5}, + [2233] = {.lex_state = 262, .external_lex_state = 5}, + [2234] = {.lex_state = 264, .external_lex_state = 5}, [2235] = {.lex_state = 262, .external_lex_state = 5}, - [2236] = {.lex_state = 262, .external_lex_state = 4}, - [2237] = {.lex_state = 262, .external_lex_state = 5}, - [2238] = {.lex_state = 262, .external_lex_state = 5}, - [2239] = {.lex_state = 262, .external_lex_state = 4}, - [2240] = {.lex_state = 266, .external_lex_state = 4}, - [2241] = {.lex_state = 266, .external_lex_state = 4}, - [2242] = {.lex_state = 266, .external_lex_state = 4}, - [2243] = {.lex_state = 266, .external_lex_state = 4}, - [2244] = {.lex_state = 266, .external_lex_state = 4}, - [2245] = {.lex_state = 266, .external_lex_state = 4}, - [2246] = {.lex_state = 266, .external_lex_state = 4}, + [2236] = {.lex_state = 262, .external_lex_state = 5}, + [2237] = {.lex_state = 264, .external_lex_state = 5}, + [2238] = {.lex_state = 264, .external_lex_state = 5}, + [2239] = {.lex_state = 264, .external_lex_state = 5}, + [2240] = {.lex_state = 262, .external_lex_state = 5}, + [2241] = {.lex_state = 262, .external_lex_state = 5}, + [2242] = {.lex_state = 264, .external_lex_state = 5}, + [2243] = {.lex_state = 124, .external_lex_state = 5}, + [2244] = {.lex_state = 264, .external_lex_state = 5}, + [2245] = {.lex_state = 264, .external_lex_state = 5}, + [2246] = {.lex_state = 264, .external_lex_state = 5}, [2247] = {.lex_state = 266, .external_lex_state = 4}, - [2248] = {.lex_state = 124, .external_lex_state = 5}, - [2249] = {.lex_state = 124, .external_lex_state = 5}, + [2248] = {.lex_state = 266, .external_lex_state = 4}, + [2249] = {.lex_state = 264, .external_lex_state = 5}, [2250] = {.lex_state = 264, .external_lex_state = 5}, - [2251] = {.lex_state = 124, .external_lex_state = 5}, - [2252] = {.lex_state = 124, .external_lex_state = 5}, - [2253] = {.lex_state = 262, .external_lex_state = 5}, - [2254] = {.lex_state = 262, .external_lex_state = 5}, - [2255] = {.lex_state = 262, .external_lex_state = 5}, - [2256] = {.lex_state = 102, .external_lex_state = 5}, - [2257] = {.lex_state = 124, .external_lex_state = 5}, - [2258] = {.lex_state = 124, .external_lex_state = 5}, - [2259] = {.lex_state = 266, .external_lex_state = 4}, - [2260] = {.lex_state = 266, .external_lex_state = 4}, - [2261] = {.lex_state = 262, .external_lex_state = 5}, - [2262] = {.lex_state = 262, .external_lex_state = 5}, - [2263] = {.lex_state = 124, .external_lex_state = 5}, - [2264] = {.lex_state = 262, .external_lex_state = 5}, + [2251] = {.lex_state = 264, .external_lex_state = 5}, + [2252] = {.lex_state = 266, .external_lex_state = 4}, + [2253] = {.lex_state = 266, .external_lex_state = 4}, + [2254] = {.lex_state = 264, .external_lex_state = 5}, + [2255] = {.lex_state = 264, .external_lex_state = 5}, + [2256] = {.lex_state = 264, .external_lex_state = 5}, + [2257] = {.lex_state = 264, .external_lex_state = 5}, + [2258] = {.lex_state = 262, .external_lex_state = 5}, + [2259] = {.lex_state = 262, .external_lex_state = 5}, + [2260] = {.lex_state = 262, .external_lex_state = 5}, + [2261] = {.lex_state = 264, .external_lex_state = 5}, + [2262] = {.lex_state = 264, .external_lex_state = 5}, + [2263] = {.lex_state = 262, .external_lex_state = 5}, + [2264] = {.lex_state = 264, .external_lex_state = 5}, [2265] = {.lex_state = 262, .external_lex_state = 5}, [2266] = {.lex_state = 262, .external_lex_state = 5}, - [2267] = {.lex_state = 124, .external_lex_state = 5}, - [2268] = {.lex_state = 262, .external_lex_state = 5}, - [2269] = {.lex_state = 102, .external_lex_state = 5}, + [2267] = {.lex_state = 262, .external_lex_state = 5}, + [2268] = {.lex_state = 121, .external_lex_state = 5}, + [2269] = {.lex_state = 262, .external_lex_state = 5}, [2270] = {.lex_state = 262, .external_lex_state = 5}, - [2271] = {.lex_state = 102, .external_lex_state = 5}, - [2272] = {.lex_state = 102, .external_lex_state = 5}, - [2273] = {.lex_state = 124, .external_lex_state = 5}, - [2274] = {.lex_state = 102, .external_lex_state = 5}, - [2275] = {.lex_state = 262, .external_lex_state = 5}, - [2276] = {.lex_state = 102, .external_lex_state = 5}, - [2277] = {.lex_state = 102, .external_lex_state = 5}, + [2271] = {.lex_state = 262, .external_lex_state = 4}, + [2272] = {.lex_state = 262, .external_lex_state = 5}, + [2273] = {.lex_state = 262, .external_lex_state = 5}, + [2274] = {.lex_state = 121, .external_lex_state = 5}, + [2275] = {.lex_state = 262, .external_lex_state = 4}, + [2276] = {.lex_state = 262, .external_lex_state = 4}, + [2277] = {.lex_state = 262, .external_lex_state = 5}, [2278] = {.lex_state = 262, .external_lex_state = 5}, - [2279] = {.lex_state = 124, .external_lex_state = 5}, - [2280] = {.lex_state = 124, .external_lex_state = 5}, - [2281] = {.lex_state = 124, .external_lex_state = 5}, - [2282] = {.lex_state = 262, .external_lex_state = 4}, - [2283] = {.lex_state = 262, .external_lex_state = 4}, - [2284] = {.lex_state = 124, .external_lex_state = 5}, - [2285] = {.lex_state = 124, .external_lex_state = 5}, - [2286] = {.lex_state = 102, .external_lex_state = 5}, - [2287] = {.lex_state = 124, .external_lex_state = 5}, - [2288] = {.lex_state = 262, .external_lex_state = 4}, - [2289] = {.lex_state = 102, .external_lex_state = 5}, - [2290] = {.lex_state = 102, .external_lex_state = 5}, - [2291] = {.lex_state = 124, .external_lex_state = 5}, + [2279] = {.lex_state = 121, .external_lex_state = 5}, + [2280] = {.lex_state = 121, .external_lex_state = 5}, + [2281] = {.lex_state = 262, .external_lex_state = 5}, + [2282] = {.lex_state = 264, .external_lex_state = 5}, + [2283] = {.lex_state = 264, .external_lex_state = 5}, + [2284] = {.lex_state = 264, .external_lex_state = 5}, + [2285] = {.lex_state = 264, .external_lex_state = 5}, + [2286] = {.lex_state = 264, .external_lex_state = 5}, + [2287] = {.lex_state = 102, .external_lex_state = 5}, + [2288] = {.lex_state = 262, .external_lex_state = 5}, + [2289] = {.lex_state = 262, .external_lex_state = 5}, + [2290] = {.lex_state = 264, .external_lex_state = 5}, + [2291] = {.lex_state = 264, .external_lex_state = 5}, [2292] = {.lex_state = 102, .external_lex_state = 5}, - [2293] = {.lex_state = 124, .external_lex_state = 5}, - [2294] = {.lex_state = 266, .external_lex_state = 4}, - [2295] = {.lex_state = 266, .external_lex_state = 4}, - [2296] = {.lex_state = 124, .external_lex_state = 5}, - [2297] = {.lex_state = 124, .external_lex_state = 5}, - [2298] = {.lex_state = 264, .external_lex_state = 5}, - [2299] = {.lex_state = 264, .external_lex_state = 5}, - [2300] = {.lex_state = 121, .external_lex_state = 5}, - [2301] = {.lex_state = 121, .external_lex_state = 5}, - [2302] = {.lex_state = 264, .external_lex_state = 5}, - [2303] = {.lex_state = 264, .external_lex_state = 5}, + [2293] = {.lex_state = 102, .external_lex_state = 5}, + [2294] = {.lex_state = 102, .external_lex_state = 5}, + [2295] = {.lex_state = 262, .external_lex_state = 5}, + [2296] = {.lex_state = 262, .external_lex_state = 5}, + [2297] = {.lex_state = 262, .external_lex_state = 5}, + [2298] = {.lex_state = 102, .external_lex_state = 5}, + [2299] = {.lex_state = 262, .external_lex_state = 5}, + [2300] = {.lex_state = 262, .external_lex_state = 5}, + [2301] = {.lex_state = 262, .external_lex_state = 5}, + [2302] = {.lex_state = 262, .external_lex_state = 5}, + [2303] = {.lex_state = 102, .external_lex_state = 5}, [2304] = {.lex_state = 262, .external_lex_state = 5}, - [2305] = {.lex_state = 121, .external_lex_state = 5}, - [2306] = {.lex_state = 121, .external_lex_state = 5}, - [2307] = {.lex_state = 266, .external_lex_state = 4}, - [2308] = {.lex_state = 266, .external_lex_state = 4}, + [2305] = {.lex_state = 262, .external_lex_state = 5}, + [2306] = {.lex_state = 262, .external_lex_state = 5}, + [2307] = {.lex_state = 262, .external_lex_state = 5}, + [2308] = {.lex_state = 262, .external_lex_state = 5}, [2309] = {.lex_state = 262, .external_lex_state = 5}, - [2310] = {.lex_state = 102, .external_lex_state = 5}, - [2311] = {.lex_state = 124, .external_lex_state = 5}, - [2312] = {.lex_state = 264, .external_lex_state = 5}, - [2313] = {.lex_state = 266, .external_lex_state = 4}, - [2314] = {.lex_state = 266, .external_lex_state = 4}, - [2315] = {.lex_state = 264, .external_lex_state = 5}, + [2310] = {.lex_state = 262, .external_lex_state = 5}, + [2311] = {.lex_state = 262, .external_lex_state = 5}, + [2312] = {.lex_state = 262, .external_lex_state = 5}, + [2313] = {.lex_state = 262, .external_lex_state = 5}, + [2314] = {.lex_state = 102, .external_lex_state = 5}, + [2315] = {.lex_state = 102, .external_lex_state = 5}, [2316] = {.lex_state = 102, .external_lex_state = 5}, [2317] = {.lex_state = 102, .external_lex_state = 5}, - [2318] = {.lex_state = 266, .external_lex_state = 4}, - [2319] = {.lex_state = 266, .external_lex_state = 4}, - [2320] = {.lex_state = 266, .external_lex_state = 4}, + [2318] = {.lex_state = 102, .external_lex_state = 5}, + [2319] = {.lex_state = 102, .external_lex_state = 5}, + [2320] = {.lex_state = 102, .external_lex_state = 5}, [2321] = {.lex_state = 264, .external_lex_state = 5}, - [2322] = {.lex_state = 266, .external_lex_state = 4}, - [2323] = {.lex_state = 264, .external_lex_state = 5}, + [2322] = {.lex_state = 102, .external_lex_state = 5}, + [2323] = {.lex_state = 102, .external_lex_state = 5}, [2324] = {.lex_state = 102, .external_lex_state = 5}, - [2325] = {.lex_state = 266, .external_lex_state = 4}, + [2325] = {.lex_state = 102, .external_lex_state = 5}, [2326] = {.lex_state = 264, .external_lex_state = 5}, [2327] = {.lex_state = 102, .external_lex_state = 5}, [2328] = {.lex_state = 264, .external_lex_state = 5}, [2329] = {.lex_state = 264, .external_lex_state = 5}, - [2330] = {.lex_state = 264, .external_lex_state = 5}, - [2331] = {.lex_state = 264, .external_lex_state = 5}, + [2330] = {.lex_state = 102, .external_lex_state = 5}, + [2331] = {.lex_state = 102, .external_lex_state = 5}, [2332] = {.lex_state = 264, .external_lex_state = 5}, [2333] = {.lex_state = 264, .external_lex_state = 5}, - [2334] = {.lex_state = 266, .external_lex_state = 4}, - [2335] = {.lex_state = 266, .external_lex_state = 4}, - [2336] = {.lex_state = 266, .external_lex_state = 4}, - [2337] = {.lex_state = 266, .external_lex_state = 4}, - [2338] = {.lex_state = 264, .external_lex_state = 5}, - [2339] = {.lex_state = 264, .external_lex_state = 5}, - [2340] = {.lex_state = 266, .external_lex_state = 4}, - [2341] = {.lex_state = 266, .external_lex_state = 4}, - [2342] = {.lex_state = 266, .external_lex_state = 4}, - [2343] = {.lex_state = 264, .external_lex_state = 5}, - [2344] = {.lex_state = 264, .external_lex_state = 5}, - [2345] = {.lex_state = 266, .external_lex_state = 4}, - [2346] = {.lex_state = 102, .external_lex_state = 5}, - [2347] = {.lex_state = 102, .external_lex_state = 5}, - [2348] = {.lex_state = 262, .external_lex_state = 4}, - [2349] = {.lex_state = 102, .external_lex_state = 5}, - [2350] = {.lex_state = 102, .external_lex_state = 5}, - [2351] = {.lex_state = 102, .external_lex_state = 5}, - [2352] = {.lex_state = 102, .external_lex_state = 5}, - [2353] = {.lex_state = 102, .external_lex_state = 5}, - [2354] = {.lex_state = 102, .external_lex_state = 5}, + [2334] = {.lex_state = 264, .external_lex_state = 5}, + [2335] = {.lex_state = 264, .external_lex_state = 5}, + [2336] = {.lex_state = 264, .external_lex_state = 5}, + [2337] = {.lex_state = 102, .external_lex_state = 5}, + [2338] = {.lex_state = 262, .external_lex_state = 5}, + [2339] = {.lex_state = 262, .external_lex_state = 5}, + [2340] = {.lex_state = 262, .external_lex_state = 5}, + [2341] = {.lex_state = 262, .external_lex_state = 5}, + [2342] = {.lex_state = 264, .external_lex_state = 5}, + [2343] = {.lex_state = 262, .external_lex_state = 5}, + [2344] = {.lex_state = 102, .external_lex_state = 5}, + [2345] = {.lex_state = 262, .external_lex_state = 5}, + [2346] = {.lex_state = 262, .external_lex_state = 5}, + [2347] = {.lex_state = 262, .external_lex_state = 5}, + [2348] = {.lex_state = 262, .external_lex_state = 5}, + [2349] = {.lex_state = 262, .external_lex_state = 5}, + [2350] = {.lex_state = 262, .external_lex_state = 5}, + [2351] = {.lex_state = 124, .external_lex_state = 5}, + [2352] = {.lex_state = 124, .external_lex_state = 5}, + [2353] = {.lex_state = 124, .external_lex_state = 5}, + [2354] = {.lex_state = 124, .external_lex_state = 5}, [2355] = {.lex_state = 102, .external_lex_state = 5}, - [2356] = {.lex_state = 102, .external_lex_state = 5}, - [2357] = {.lex_state = 102, .external_lex_state = 5}, - [2358] = {.lex_state = 102, .external_lex_state = 5}, - [2359] = {.lex_state = 102, .external_lex_state = 5}, - [2360] = {.lex_state = 102, .external_lex_state = 5}, - [2361] = {.lex_state = 102, .external_lex_state = 5}, - [2362] = {.lex_state = 102, .external_lex_state = 5}, - [2363] = {.lex_state = 102, .external_lex_state = 5}, - [2364] = {.lex_state = 102, .external_lex_state = 5}, - [2365] = {.lex_state = 102, .external_lex_state = 5}, - [2366] = {.lex_state = 262, .external_lex_state = 5}, - [2367] = {.lex_state = 102, .external_lex_state = 5}, - [2368] = {.lex_state = 262, .external_lex_state = 5}, - [2369] = {.lex_state = 262, .external_lex_state = 5}, - [2370] = {.lex_state = 102, .external_lex_state = 5}, - [2371] = {.lex_state = 102, .external_lex_state = 5}, - [2372] = {.lex_state = 102, .external_lex_state = 5}, - [2373] = {.lex_state = 102, .external_lex_state = 5}, - [2374] = {.lex_state = 102, .external_lex_state = 5}, + [2356] = {.lex_state = 262, .external_lex_state = 5}, + [2357] = {.lex_state = 262, .external_lex_state = 5}, + [2358] = {.lex_state = 262, .external_lex_state = 5}, + [2359] = {.lex_state = 124, .external_lex_state = 5}, + [2360] = {.lex_state = 124, .external_lex_state = 5}, + [2361] = {.lex_state = 124, .external_lex_state = 5}, + [2362] = {.lex_state = 124, .external_lex_state = 5}, + [2363] = {.lex_state = 264, .external_lex_state = 5}, + [2364] = {.lex_state = 264, .external_lex_state = 5}, + [2365] = {.lex_state = 264, .external_lex_state = 5}, + [2366] = {.lex_state = 264, .external_lex_state = 5}, + [2367] = {.lex_state = 264, .external_lex_state = 5}, + [2368] = {.lex_state = 264, .external_lex_state = 5}, + [2369] = {.lex_state = 264, .external_lex_state = 5}, + [2370] = {.lex_state = 264, .external_lex_state = 5}, + [2371] = {.lex_state = 124, .external_lex_state = 5}, + [2372] = {.lex_state = 264, .external_lex_state = 5}, + [2373] = {.lex_state = 264, .external_lex_state = 5}, + [2374] = {.lex_state = 264, .external_lex_state = 5}, [2375] = {.lex_state = 102, .external_lex_state = 5}, - [2376] = {.lex_state = 102, .external_lex_state = 5}, - [2377] = {.lex_state = 132, .external_lex_state = 5}, - [2378] = {.lex_state = 102, .external_lex_state = 5}, + [2376] = {.lex_state = 264, .external_lex_state = 5}, + [2377] = {.lex_state = 102, .external_lex_state = 5}, + [2378] = {.lex_state = 264, .external_lex_state = 5}, [2379] = {.lex_state = 102, .external_lex_state = 5}, - [2380] = {.lex_state = 102, .external_lex_state = 5}, - [2381] = {.lex_state = 102, .external_lex_state = 5}, - [2382] = {.lex_state = 102, .external_lex_state = 5}, - [2383] = {.lex_state = 102, .external_lex_state = 5}, - [2384] = {.lex_state = 102, .external_lex_state = 5}, - [2385] = {.lex_state = 127, .external_lex_state = 5}, - [2386] = {.lex_state = 127, .external_lex_state = 5}, - [2387] = {.lex_state = 102, .external_lex_state = 5}, - [2388] = {.lex_state = 102, .external_lex_state = 5}, - [2389] = {.lex_state = 102, .external_lex_state = 5}, - [2390] = {.lex_state = 102, .external_lex_state = 5}, - [2391] = {.lex_state = 102, .external_lex_state = 5}, - [2392] = {.lex_state = 102, .external_lex_state = 5}, - [2393] = {.lex_state = 102, .external_lex_state = 5}, - [2394] = {.lex_state = 102, .external_lex_state = 5}, - [2395] = {.lex_state = 102, .external_lex_state = 5}, - [2396] = {.lex_state = 102, .external_lex_state = 5}, - [2397] = {.lex_state = 102, .external_lex_state = 5}, - [2398] = {.lex_state = 102, .external_lex_state = 5}, - [2399] = {.lex_state = 102, .external_lex_state = 5}, - [2400] = {.lex_state = 102, .external_lex_state = 5}, - [2401] = {.lex_state = 102, .external_lex_state = 5}, - [2402] = {.lex_state = 127, .external_lex_state = 5}, - [2403] = {.lex_state = 127, .external_lex_state = 5}, - [2404] = {.lex_state = 102, .external_lex_state = 5}, - [2405] = {.lex_state = 102, .external_lex_state = 5}, - [2406] = {.lex_state = 262, .external_lex_state = 5}, - [2407] = {.lex_state = 102, .external_lex_state = 5}, - [2408] = {.lex_state = 102, .external_lex_state = 5}, - [2409] = {.lex_state = 102, .external_lex_state = 5}, - [2410] = {.lex_state = 102, .external_lex_state = 5}, - [2411] = {.lex_state = 102, .external_lex_state = 5}, - [2412] = {.lex_state = 102, .external_lex_state = 5}, - [2413] = {.lex_state = 102, .external_lex_state = 5}, - [2414] = {.lex_state = 102, .external_lex_state = 5}, - [2415] = {.lex_state = 102, .external_lex_state = 5}, - [2416] = {.lex_state = 102, .external_lex_state = 5}, - [2417] = {.lex_state = 135, .external_lex_state = 4}, - [2418] = {.lex_state = 135, .external_lex_state = 4}, - [2419] = {.lex_state = 102, .external_lex_state = 5}, - [2420] = {.lex_state = 102, .external_lex_state = 5}, - [2421] = {.lex_state = 262, .external_lex_state = 5}, - [2422] = {.lex_state = 135, .external_lex_state = 4}, - [2423] = {.lex_state = 262, .external_lex_state = 5}, - [2424] = {.lex_state = 135, .external_lex_state = 4}, - [2425] = {.lex_state = 127, .external_lex_state = 5}, - [2426] = {.lex_state = 135, .external_lex_state = 4}, - [2427] = {.lex_state = 127, .external_lex_state = 5}, - [2428] = {.lex_state = 127, .external_lex_state = 5}, - [2429] = {.lex_state = 127, .external_lex_state = 5}, - [2430] = {.lex_state = 132, .external_lex_state = 5}, - [2431] = {.lex_state = 132, .external_lex_state = 5}, - [2432] = {.lex_state = 132, .external_lex_state = 5}, - [2433] = {.lex_state = 262, .external_lex_state = 4}, - [2434] = {.lex_state = 132, .external_lex_state = 5}, - [2435] = {.lex_state = 132, .external_lex_state = 5}, - [2436] = {.lex_state = 132, .external_lex_state = 5}, - [2437] = {.lex_state = 132, .external_lex_state = 5}, - [2438] = {.lex_state = 132, .external_lex_state = 5}, - [2439] = {.lex_state = 132, .external_lex_state = 5}, - [2440] = {.lex_state = 132, .external_lex_state = 5}, - [2441] = {.lex_state = 132, .external_lex_state = 5}, - [2442] = {.lex_state = 132, .external_lex_state = 5}, - [2443] = {.lex_state = 132, .external_lex_state = 5}, - [2444] = {.lex_state = 132, .external_lex_state = 5}, - [2445] = {.lex_state = 132, .external_lex_state = 5}, - [2446] = {.lex_state = 132, .external_lex_state = 5}, - [2447] = {.lex_state = 127, .external_lex_state = 5}, - [2448] = {.lex_state = 127, .external_lex_state = 5}, - [2449] = {.lex_state = 127, .external_lex_state = 5}, - [2450] = {.lex_state = 132, .external_lex_state = 5}, - [2451] = {.lex_state = 132, .external_lex_state = 5}, - [2452] = {.lex_state = 132, .external_lex_state = 5}, - [2453] = {.lex_state = 132, .external_lex_state = 5}, - [2454] = {.lex_state = 132, .external_lex_state = 5}, - [2455] = {.lex_state = 262, .external_lex_state = 5}, - [2456] = {.lex_state = 127, .external_lex_state = 5}, - [2457] = {.lex_state = 132, .external_lex_state = 5}, - [2458] = {.lex_state = 132, .external_lex_state = 5}, - [2459] = {.lex_state = 132, .external_lex_state = 5}, - [2460] = {.lex_state = 132, .external_lex_state = 5}, - [2461] = {.lex_state = 132, .external_lex_state = 5}, - [2462] = {.lex_state = 102, .external_lex_state = 5}, - [2463] = {.lex_state = 102, .external_lex_state = 5}, - [2464] = {.lex_state = 132, .external_lex_state = 5}, - [2465] = {.lex_state = 132, .external_lex_state = 5}, - [2466] = {.lex_state = 132, .external_lex_state = 5}, - [2467] = {.lex_state = 132, .external_lex_state = 5}, - [2468] = {.lex_state = 132, .external_lex_state = 5}, - [2469] = {.lex_state = 135, .external_lex_state = 4}, - [2470] = {.lex_state = 102, .external_lex_state = 5}, - [2471] = {.lex_state = 102, .external_lex_state = 5}, - [2472] = {.lex_state = 102, .external_lex_state = 5}, - [2473] = {.lex_state = 262, .external_lex_state = 4}, - [2474] = {.lex_state = 102, .external_lex_state = 5}, - [2475] = {.lex_state = 102, .external_lex_state = 5}, - [2476] = {.lex_state = 102, .external_lex_state = 5}, - [2477] = {.lex_state = 102, .external_lex_state = 5}, - [2478] = {.lex_state = 262, .external_lex_state = 4}, - [2479] = {.lex_state = 102, .external_lex_state = 5}, - [2480] = {.lex_state = 102, .external_lex_state = 5}, - [2481] = {.lex_state = 102, .external_lex_state = 5}, - [2482] = {.lex_state = 102, .external_lex_state = 5}, - [2483] = {.lex_state = 102, .external_lex_state = 5}, - [2484] = {.lex_state = 102, .external_lex_state = 5}, - [2485] = {.lex_state = 102, .external_lex_state = 5}, - [2486] = {.lex_state = 102, .external_lex_state = 5}, - [2487] = {.lex_state = 102, .external_lex_state = 5}, - [2488] = {.lex_state = 102, .external_lex_state = 5}, - [2489] = {.lex_state = 262, .external_lex_state = 5}, - [2490] = {.lex_state = 262, .external_lex_state = 5}, - [2491] = {.lex_state = 127, .external_lex_state = 5}, - [2492] = {.lex_state = 262, .external_lex_state = 5}, - [2493] = {.lex_state = 262, .external_lex_state = 5}, - [2494] = {.lex_state = 127, .external_lex_state = 5}, - [2495] = {.lex_state = 127, .external_lex_state = 5}, - [2496] = {.lex_state = 262, .external_lex_state = 4}, - [2497] = {.lex_state = 132, .external_lex_state = 5}, - [2498] = {.lex_state = 132, .external_lex_state = 5}, - [2499] = {.lex_state = 132, .external_lex_state = 5}, - [2500] = {.lex_state = 262, .external_lex_state = 5}, - [2501] = {.lex_state = 262, .external_lex_state = 4}, - [2502] = {.lex_state = 127, .external_lex_state = 5}, - [2503] = {.lex_state = 127, .external_lex_state = 5}, - [2504] = {.lex_state = 127, .external_lex_state = 5}, - [2505] = {.lex_state = 262, .external_lex_state = 4}, - [2506] = {.lex_state = 127, .external_lex_state = 5}, - [2507] = {.lex_state = 127, .external_lex_state = 5}, - [2508] = {.lex_state = 135, .external_lex_state = 4}, - [2509] = {.lex_state = 135, .external_lex_state = 4}, - [2510] = {.lex_state = 135, .external_lex_state = 4}, - [2511] = {.lex_state = 135, .external_lex_state = 4}, - [2512] = {.lex_state = 135, .external_lex_state = 4}, - [2513] = {.lex_state = 135, .external_lex_state = 4}, - [2514] = {.lex_state = 135, .external_lex_state = 4}, - [2515] = {.lex_state = 135, .external_lex_state = 4}, - [2516] = {.lex_state = 135, .external_lex_state = 4}, - [2517] = {.lex_state = 135, .external_lex_state = 4}, - [2518] = {.lex_state = 135, .external_lex_state = 4}, - [2519] = {.lex_state = 135, .external_lex_state = 4}, - [2520] = {.lex_state = 135, .external_lex_state = 4}, - [2521] = {.lex_state = 102, .external_lex_state = 4}, - [2522] = {.lex_state = 135, .external_lex_state = 4}, - [2523] = {.lex_state = 102, .external_lex_state = 4}, - [2524] = {.lex_state = 135, .external_lex_state = 4}, - [2525] = {.lex_state = 135, .external_lex_state = 4}, - [2526] = {.lex_state = 135, .external_lex_state = 4}, - [2527] = {.lex_state = 135, .external_lex_state = 4}, - [2528] = {.lex_state = 135, .external_lex_state = 4}, - [2529] = {.lex_state = 262, .external_lex_state = 5}, - [2530] = {.lex_state = 135, .external_lex_state = 4}, - [2531] = {.lex_state = 135, .external_lex_state = 4}, - [2532] = {.lex_state = 135, .external_lex_state = 4}, - [2533] = {.lex_state = 135, .external_lex_state = 4}, - [2534] = {.lex_state = 135, .external_lex_state = 4}, - [2535] = {.lex_state = 135, .external_lex_state = 4}, - [2536] = {.lex_state = 135, .external_lex_state = 4}, - [2537] = {.lex_state = 102, .external_lex_state = 4}, + [2380] = {.lex_state = 264, .external_lex_state = 5}, + [2381] = {.lex_state = 264, .external_lex_state = 5}, + [2382] = {.lex_state = 264, .external_lex_state = 5}, + [2383] = {.lex_state = 264, .external_lex_state = 5}, + [2384] = {.lex_state = 264, .external_lex_state = 5}, + [2385] = {.lex_state = 264, .external_lex_state = 5}, + [2386] = {.lex_state = 124, .external_lex_state = 5}, + [2387] = {.lex_state = 124, .external_lex_state = 5}, + [2388] = {.lex_state = 262, .external_lex_state = 5}, + [2389] = {.lex_state = 124, .external_lex_state = 5}, + [2390] = {.lex_state = 124, .external_lex_state = 5}, + [2391] = {.lex_state = 124, .external_lex_state = 5}, + [2392] = {.lex_state = 124, .external_lex_state = 5}, + [2393] = {.lex_state = 124, .external_lex_state = 5}, + [2394] = {.lex_state = 124, .external_lex_state = 5}, + [2395] = {.lex_state = 124, .external_lex_state = 5}, + [2396] = {.lex_state = 124, .external_lex_state = 5}, + [2397] = {.lex_state = 124, .external_lex_state = 5}, + [2398] = {.lex_state = 124, .external_lex_state = 5}, + [2399] = {.lex_state = 124, .external_lex_state = 5}, + [2400] = {.lex_state = 124, .external_lex_state = 5}, + [2401] = {.lex_state = 124, .external_lex_state = 5}, + [2402] = {.lex_state = 124, .external_lex_state = 5}, + [2403] = {.lex_state = 124, .external_lex_state = 5}, + [2404] = {.lex_state = 124, .external_lex_state = 5}, + [2405] = {.lex_state = 124, .external_lex_state = 5}, + [2406] = {.lex_state = 124, .external_lex_state = 5}, + [2407] = {.lex_state = 124, .external_lex_state = 5}, + [2408] = {.lex_state = 124, .external_lex_state = 5}, + [2409] = {.lex_state = 124, .external_lex_state = 5}, + [2410] = {.lex_state = 124, .external_lex_state = 5}, + [2411] = {.lex_state = 124, .external_lex_state = 5}, + [2412] = {.lex_state = 124, .external_lex_state = 5}, + [2413] = {.lex_state = 124, .external_lex_state = 5}, + [2414] = {.lex_state = 124, .external_lex_state = 5}, + [2415] = {.lex_state = 124, .external_lex_state = 5}, + [2416] = {.lex_state = 124, .external_lex_state = 5}, + [2417] = {.lex_state = 124, .external_lex_state = 5}, + [2418] = {.lex_state = 124, .external_lex_state = 5}, + [2419] = {.lex_state = 124, .external_lex_state = 5}, + [2420] = {.lex_state = 129, .external_lex_state = 5}, + [2421] = {.lex_state = 124, .external_lex_state = 5}, + [2422] = {.lex_state = 124, .external_lex_state = 5}, + [2423] = {.lex_state = 129, .external_lex_state = 5}, + [2424] = {.lex_state = 262, .external_lex_state = 5}, + [2425] = {.lex_state = 129, .external_lex_state = 5}, + [2426] = {.lex_state = 124, .external_lex_state = 5}, + [2427] = {.lex_state = 124, .external_lex_state = 5}, + [2428] = {.lex_state = 124, .external_lex_state = 5}, + [2429] = {.lex_state = 124, .external_lex_state = 5}, + [2430] = {.lex_state = 124, .external_lex_state = 5}, + [2431] = {.lex_state = 124, .external_lex_state = 5}, + [2432] = {.lex_state = 124, .external_lex_state = 5}, + [2433] = {.lex_state = 124, .external_lex_state = 5}, + [2434] = {.lex_state = 266, .external_lex_state = 4}, + [2435] = {.lex_state = 266, .external_lex_state = 4}, + [2436] = {.lex_state = 266, .external_lex_state = 4}, + [2437] = {.lex_state = 266, .external_lex_state = 4}, + [2438] = {.lex_state = 264, .external_lex_state = 5}, + [2439] = {.lex_state = 264, .external_lex_state = 5}, + [2440] = {.lex_state = 264, .external_lex_state = 5}, + [2441] = {.lex_state = 264, .external_lex_state = 5}, + [2442] = {.lex_state = 264, .external_lex_state = 5}, + [2443] = {.lex_state = 264, .external_lex_state = 5}, + [2444] = {.lex_state = 264, .external_lex_state = 5}, + [2445] = {.lex_state = 264, .external_lex_state = 5}, + [2446] = {.lex_state = 264, .external_lex_state = 5}, + [2447] = {.lex_state = 264, .external_lex_state = 5}, + [2448] = {.lex_state = 264, .external_lex_state = 5}, + [2449] = {.lex_state = 121, .external_lex_state = 5}, + [2450] = {.lex_state = 264, .external_lex_state = 5}, + [2451] = {.lex_state = 102, .external_lex_state = 5}, + [2452] = {.lex_state = 102, .external_lex_state = 5}, + [2453] = {.lex_state = 264, .external_lex_state = 5}, + [2454] = {.lex_state = 121, .external_lex_state = 5}, + [2455] = {.lex_state = 121, .external_lex_state = 5}, + [2456] = {.lex_state = 121, .external_lex_state = 5}, + [2457] = {.lex_state = 264, .external_lex_state = 5}, + [2458] = {.lex_state = 264, .external_lex_state = 5}, + [2459] = {.lex_state = 264, .external_lex_state = 5}, + [2460] = {.lex_state = 264, .external_lex_state = 5}, + [2461] = {.lex_state = 124, .external_lex_state = 5}, + [2462] = {.lex_state = 124, .external_lex_state = 5}, + [2463] = {.lex_state = 124, .external_lex_state = 5}, + [2464] = {.lex_state = 124, .external_lex_state = 5}, + [2465] = {.lex_state = 264, .external_lex_state = 5}, + [2466] = {.lex_state = 129, .external_lex_state = 5}, + [2467] = {.lex_state = 264, .external_lex_state = 5}, + [2468] = {.lex_state = 264, .external_lex_state = 5}, + [2469] = {.lex_state = 264, .external_lex_state = 5}, + [2470] = {.lex_state = 264, .external_lex_state = 5}, + [2471] = {.lex_state = 129, .external_lex_state = 5}, + [2472] = {.lex_state = 264, .external_lex_state = 5}, + [2473] = {.lex_state = 264, .external_lex_state = 5}, + [2474] = {.lex_state = 264, .external_lex_state = 5}, + [2475] = {.lex_state = 264, .external_lex_state = 5}, + [2476] = {.lex_state = 264, .external_lex_state = 5}, + [2477] = {.lex_state = 264, .external_lex_state = 5}, + [2478] = {.lex_state = 264, .external_lex_state = 5}, + [2479] = {.lex_state = 264, .external_lex_state = 5}, + [2480] = {.lex_state = 264, .external_lex_state = 5}, + [2481] = {.lex_state = 264, .external_lex_state = 5}, + [2482] = {.lex_state = 264, .external_lex_state = 5}, + [2483] = {.lex_state = 264, .external_lex_state = 5}, + [2484] = {.lex_state = 264, .external_lex_state = 5}, + [2485] = {.lex_state = 264, .external_lex_state = 5}, + [2486] = {.lex_state = 264, .external_lex_state = 5}, + [2487] = {.lex_state = 264, .external_lex_state = 5}, + [2488] = {.lex_state = 264, .external_lex_state = 5}, + [2489] = {.lex_state = 264, .external_lex_state = 5}, + [2490] = {.lex_state = 264, .external_lex_state = 5}, + [2491] = {.lex_state = 264, .external_lex_state = 5}, + [2492] = {.lex_state = 264, .external_lex_state = 5}, + [2493] = {.lex_state = 264, .external_lex_state = 5}, + [2494] = {.lex_state = 264, .external_lex_state = 5}, + [2495] = {.lex_state = 264, .external_lex_state = 5}, + [2496] = {.lex_state = 264, .external_lex_state = 5}, + [2497] = {.lex_state = 264, .external_lex_state = 5}, + [2498] = {.lex_state = 264, .external_lex_state = 5}, + [2499] = {.lex_state = 264, .external_lex_state = 5}, + [2500] = {.lex_state = 264, .external_lex_state = 5}, + [2501] = {.lex_state = 264, .external_lex_state = 5}, + [2502] = {.lex_state = 264, .external_lex_state = 5}, + [2503] = {.lex_state = 264, .external_lex_state = 5}, + [2504] = {.lex_state = 264, .external_lex_state = 5}, + [2505] = {.lex_state = 264, .external_lex_state = 5}, + [2506] = {.lex_state = 264, .external_lex_state = 5}, + [2507] = {.lex_state = 264, .external_lex_state = 5}, + [2508] = {.lex_state = 262, .external_lex_state = 4}, + [2509] = {.lex_state = 262, .external_lex_state = 4}, + [2510] = {.lex_state = 262, .external_lex_state = 4}, + [2511] = {.lex_state = 264, .external_lex_state = 5}, + [2512] = {.lex_state = 262, .external_lex_state = 4}, + [2513] = {.lex_state = 262, .external_lex_state = 4}, + [2514] = {.lex_state = 266, .external_lex_state = 4}, + [2515] = {.lex_state = 266, .external_lex_state = 4}, + [2516] = {.lex_state = 266, .external_lex_state = 4}, + [2517] = {.lex_state = 266, .external_lex_state = 4}, + [2518] = {.lex_state = 266, .external_lex_state = 4}, + [2519] = {.lex_state = 266, .external_lex_state = 4}, + [2520] = {.lex_state = 266, .external_lex_state = 4}, + [2521] = {.lex_state = 266, .external_lex_state = 4}, + [2522] = {.lex_state = 266, .external_lex_state = 4}, + [2523] = {.lex_state = 266, .external_lex_state = 4}, + [2524] = {.lex_state = 266, .external_lex_state = 4}, + [2525] = {.lex_state = 266, .external_lex_state = 4}, + [2526] = {.lex_state = 266, .external_lex_state = 4}, + [2527] = {.lex_state = 266, .external_lex_state = 4}, + [2528] = {.lex_state = 266, .external_lex_state = 4}, + [2529] = {.lex_state = 266, .external_lex_state = 4}, + [2530] = {.lex_state = 266, .external_lex_state = 4}, + [2531] = {.lex_state = 266, .external_lex_state = 4}, + [2532] = {.lex_state = 102, .external_lex_state = 5}, + [2533] = {.lex_state = 262, .external_lex_state = 5}, + [2534] = {.lex_state = 266, .external_lex_state = 4}, + [2535] = {.lex_state = 266, .external_lex_state = 4}, + [2536] = {.lex_state = 262, .external_lex_state = 4}, + [2537] = {.lex_state = 262, .external_lex_state = 4}, [2538] = {.lex_state = 262, .external_lex_state = 4}, - [2539] = {.lex_state = 262, .external_lex_state = 4}, - [2540] = {.lex_state = 262, .external_lex_state = 4}, - [2541] = {.lex_state = 262, .external_lex_state = 4}, - [2542] = {.lex_state = 262, .external_lex_state = 4}, - [2543] = {.lex_state = 262, .external_lex_state = 4}, - [2544] = {.lex_state = 262, .external_lex_state = 4}, - [2545] = {.lex_state = 262, .external_lex_state = 4}, - [2546] = {.lex_state = 262, .external_lex_state = 4}, - [2547] = {.lex_state = 262, .external_lex_state = 4}, - [2548] = {.lex_state = 262, .external_lex_state = 4}, - [2549] = {.lex_state = 135, .external_lex_state = 4}, - [2550] = {.lex_state = 262, .external_lex_state = 4}, - [2551] = {.lex_state = 262, .external_lex_state = 4}, - [2552] = {.lex_state = 262, .external_lex_state = 4}, - [2553] = {.lex_state = 102, .external_lex_state = 5}, - [2554] = {.lex_state = 262, .external_lex_state = 4}, - [2555] = {.lex_state = 262, .external_lex_state = 4}, - [2556] = {.lex_state = 262, .external_lex_state = 4}, - [2557] = {.lex_state = 262, .external_lex_state = 4}, - [2558] = {.lex_state = 262, .external_lex_state = 4}, - [2559] = {.lex_state = 262, .external_lex_state = 4}, - [2560] = {.lex_state = 262, .external_lex_state = 4}, - [2561] = {.lex_state = 262, .external_lex_state = 4}, - [2562] = {.lex_state = 262, .external_lex_state = 4}, - [2563] = {.lex_state = 262, .external_lex_state = 4}, - [2564] = {.lex_state = 262, .external_lex_state = 4}, - [2565] = {.lex_state = 262, .external_lex_state = 4}, - [2566] = {.lex_state = 262, .external_lex_state = 4}, - [2567] = {.lex_state = 262, .external_lex_state = 4}, - [2568] = {.lex_state = 262, .external_lex_state = 4}, - [2569] = {.lex_state = 127, .external_lex_state = 5}, - [2570] = {.lex_state = 127, .external_lex_state = 5}, - [2571] = {.lex_state = 135, .external_lex_state = 4}, - [2572] = {.lex_state = 135, .external_lex_state = 4}, - [2573] = {.lex_state = 262, .external_lex_state = 4}, - [2574] = {.lex_state = 262, .external_lex_state = 4}, - [2575] = {.lex_state = 262, .external_lex_state = 4}, - [2576] = {.lex_state = 262, .external_lex_state = 4}, - [2577] = {.lex_state = 262, .external_lex_state = 4}, - [2578] = {.lex_state = 262, .external_lex_state = 4}, - [2579] = {.lex_state = 262, .external_lex_state = 4}, - [2580] = {.lex_state = 262, .external_lex_state = 5}, + [2539] = {.lex_state = 266, .external_lex_state = 4}, + [2540] = {.lex_state = 266, .external_lex_state = 4}, + [2541] = {.lex_state = 266, .external_lex_state = 4}, + [2542] = {.lex_state = 266, .external_lex_state = 4}, + [2543] = {.lex_state = 266, .external_lex_state = 4}, + [2544] = {.lex_state = 266, .external_lex_state = 4}, + [2545] = {.lex_state = 121, .external_lex_state = 5}, + [2546] = {.lex_state = 121, .external_lex_state = 5}, + [2547] = {.lex_state = 121, .external_lex_state = 5}, + [2548] = {.lex_state = 121, .external_lex_state = 5}, + [2549] = {.lex_state = 121, .external_lex_state = 5}, + [2550] = {.lex_state = 121, .external_lex_state = 5}, + [2551] = {.lex_state = 121, .external_lex_state = 5}, + [2552] = {.lex_state = 121, .external_lex_state = 5}, + [2553] = {.lex_state = 121, .external_lex_state = 5}, + [2554] = {.lex_state = 121, .external_lex_state = 5}, + [2555] = {.lex_state = 121, .external_lex_state = 5}, + [2556] = {.lex_state = 121, .external_lex_state = 5}, + [2557] = {.lex_state = 121, .external_lex_state = 5}, + [2558] = {.lex_state = 121, .external_lex_state = 5}, + [2559] = {.lex_state = 121, .external_lex_state = 5}, + [2560] = {.lex_state = 121, .external_lex_state = 5}, + [2561] = {.lex_state = 266, .external_lex_state = 4}, + [2562] = {.lex_state = 266, .external_lex_state = 4}, + [2563] = {.lex_state = 266, .external_lex_state = 4}, + [2564] = {.lex_state = 266, .external_lex_state = 4}, + [2565] = {.lex_state = 266, .external_lex_state = 4}, + [2566] = {.lex_state = 266, .external_lex_state = 4}, + [2567] = {.lex_state = 266, .external_lex_state = 4}, + [2568] = {.lex_state = 266, .external_lex_state = 4}, + [2569] = {.lex_state = 266, .external_lex_state = 4}, + [2570] = {.lex_state = 266, .external_lex_state = 4}, + [2571] = {.lex_state = 121, .external_lex_state = 5}, + [2572] = {.lex_state = 121, .external_lex_state = 5}, + [2573] = {.lex_state = 121, .external_lex_state = 5}, + [2574] = {.lex_state = 121, .external_lex_state = 5}, + [2575] = {.lex_state = 121, .external_lex_state = 5}, + [2576] = {.lex_state = 121, .external_lex_state = 5}, + [2577] = {.lex_state = 121, .external_lex_state = 5}, + [2578] = {.lex_state = 121, .external_lex_state = 5}, + [2579] = {.lex_state = 121, .external_lex_state = 5}, + [2580] = {.lex_state = 121, .external_lex_state = 5}, [2581] = {.lex_state = 262, .external_lex_state = 4}, [2582] = {.lex_state = 262, .external_lex_state = 4}, [2583] = {.lex_state = 262, .external_lex_state = 4}, - [2584] = {.lex_state = 262, .external_lex_state = 4}, - [2585] = {.lex_state = 127, .external_lex_state = 5}, - [2586] = {.lex_state = 102, .external_lex_state = 5}, - [2587] = {.lex_state = 127, .external_lex_state = 5}, - [2588] = {.lex_state = 262, .external_lex_state = 4}, - [2589] = {.lex_state = 262, .external_lex_state = 4}, - [2590] = {.lex_state = 262, .external_lex_state = 4}, - [2591] = {.lex_state = 262, .external_lex_state = 4}, - [2592] = {.lex_state = 262, .external_lex_state = 4}, - [2593] = {.lex_state = 262, .external_lex_state = 5}, - [2594] = {.lex_state = 262, .external_lex_state = 4}, - [2595] = {.lex_state = 135, .external_lex_state = 4}, - [2596] = {.lex_state = 135, .external_lex_state = 4}, - [2597] = {.lex_state = 262, .external_lex_state = 4}, - [2598] = {.lex_state = 262, .external_lex_state = 4}, - [2599] = {.lex_state = 262, .external_lex_state = 4}, - [2600] = {.lex_state = 262, .external_lex_state = 5}, - [2601] = {.lex_state = 262, .external_lex_state = 4}, - [2602] = {.lex_state = 262, .external_lex_state = 5}, - [2603] = {.lex_state = 262, .external_lex_state = 5}, - [2604] = {.lex_state = 262, .external_lex_state = 5}, - [2605] = {.lex_state = 262, .external_lex_state = 5}, - [2606] = {.lex_state = 262, .external_lex_state = 5}, - [2607] = {.lex_state = 262, .external_lex_state = 5}, - [2608] = {.lex_state = 262, .external_lex_state = 5}, - [2609] = {.lex_state = 262, .external_lex_state = 5}, - [2610] = {.lex_state = 262, .external_lex_state = 5}, - [2611] = {.lex_state = 262, .external_lex_state = 5}, - [2612] = {.lex_state = 262, .external_lex_state = 5}, - [2613] = {.lex_state = 262, .external_lex_state = 5}, - [2614] = {.lex_state = 262, .external_lex_state = 5}, - [2615] = {.lex_state = 262, .external_lex_state = 5}, - [2616] = {.lex_state = 262, .external_lex_state = 5}, - [2617] = {.lex_state = 262, .external_lex_state = 5}, - [2618] = {.lex_state = 102, .external_lex_state = 5}, - [2619] = {.lex_state = 262, .external_lex_state = 5}, - [2620] = {.lex_state = 262, .external_lex_state = 5}, - [2621] = {.lex_state = 262, .external_lex_state = 5}, - [2622] = {.lex_state = 262, .external_lex_state = 5}, - [2623] = {.lex_state = 262, .external_lex_state = 5}, - [2624] = {.lex_state = 262, .external_lex_state = 5}, - [2625] = {.lex_state = 262, .external_lex_state = 5}, - [2626] = {.lex_state = 262, .external_lex_state = 5}, - [2627] = {.lex_state = 262, .external_lex_state = 4}, - [2628] = {.lex_state = 262, .external_lex_state = 5}, - [2629] = {.lex_state = 262, .external_lex_state = 5}, - [2630] = {.lex_state = 262, .external_lex_state = 5}, - [2631] = {.lex_state = 262, .external_lex_state = 5}, - [2632] = {.lex_state = 262, .external_lex_state = 5}, - [2633] = {.lex_state = 262, .external_lex_state = 5}, - [2634] = {.lex_state = 262, .external_lex_state = 5}, - [2635] = {.lex_state = 262, .external_lex_state = 5}, - [2636] = {.lex_state = 262, .external_lex_state = 5}, - [2637] = {.lex_state = 262, .external_lex_state = 5}, + [2584] = {.lex_state = 121, .external_lex_state = 5}, + [2585] = {.lex_state = 121, .external_lex_state = 5}, + [2586] = {.lex_state = 121, .external_lex_state = 5}, + [2587] = {.lex_state = 121, .external_lex_state = 5}, + [2588] = {.lex_state = 121, .external_lex_state = 5}, + [2589] = {.lex_state = 121, .external_lex_state = 5}, + [2590] = {.lex_state = 266, .external_lex_state = 4}, + [2591] = {.lex_state = 266, .external_lex_state = 4}, + [2592] = {.lex_state = 266, .external_lex_state = 4}, + [2593] = {.lex_state = 266, .external_lex_state = 4}, + [2594] = {.lex_state = 266, .external_lex_state = 4}, + [2595] = {.lex_state = 266, .external_lex_state = 4}, + [2596] = {.lex_state = 266, .external_lex_state = 4}, + [2597] = {.lex_state = 266, .external_lex_state = 4}, + [2598] = {.lex_state = 266, .external_lex_state = 4}, + [2599] = {.lex_state = 266, .external_lex_state = 4}, + [2600] = {.lex_state = 266, .external_lex_state = 4}, + [2601] = {.lex_state = 266, .external_lex_state = 4}, + [2602] = {.lex_state = 266, .external_lex_state = 4}, + [2603] = {.lex_state = 266, .external_lex_state = 4}, + [2604] = {.lex_state = 266, .external_lex_state = 4}, + [2605] = {.lex_state = 266, .external_lex_state = 4}, + [2606] = {.lex_state = 121, .external_lex_state = 5}, + [2607] = {.lex_state = 121, .external_lex_state = 5}, + [2608] = {.lex_state = 121, .external_lex_state = 5}, + [2609] = {.lex_state = 121, .external_lex_state = 5}, + [2610] = {.lex_state = 121, .external_lex_state = 5}, + [2611] = {.lex_state = 121, .external_lex_state = 5}, + [2612] = {.lex_state = 121, .external_lex_state = 5}, + [2613] = {.lex_state = 121, .external_lex_state = 5}, + [2614] = {.lex_state = 121, .external_lex_state = 5}, + [2615] = {.lex_state = 121, .external_lex_state = 5}, + [2616] = {.lex_state = 121, .external_lex_state = 5}, + [2617] = {.lex_state = 121, .external_lex_state = 5}, + [2618] = {.lex_state = 121, .external_lex_state = 5}, + [2619] = {.lex_state = 121, .external_lex_state = 5}, + [2620] = {.lex_state = 121, .external_lex_state = 5}, + [2621] = {.lex_state = 121, .external_lex_state = 5}, + [2622] = {.lex_state = 121, .external_lex_state = 5}, + [2623] = {.lex_state = 121, .external_lex_state = 5}, + [2624] = {.lex_state = 121, .external_lex_state = 5}, + [2625] = {.lex_state = 121, .external_lex_state = 5}, + [2626] = {.lex_state = 262, .external_lex_state = 4}, + [2627] = {.lex_state = 102, .external_lex_state = 5}, + [2628] = {.lex_state = 102, .external_lex_state = 5}, + [2629] = {.lex_state = 262, .external_lex_state = 4}, + [2630] = {.lex_state = 262, .external_lex_state = 4}, + [2631] = {.lex_state = 262, .external_lex_state = 4}, + [2632] = {.lex_state = 129, .external_lex_state = 5}, + [2633] = {.lex_state = 262, .external_lex_state = 4}, + [2634] = {.lex_state = 129, .external_lex_state = 5}, + [2635] = {.lex_state = 102, .external_lex_state = 5}, + [2636] = {.lex_state = 102, .external_lex_state = 5}, + [2637] = {.lex_state = 102, .external_lex_state = 5}, [2638] = {.lex_state = 262, .external_lex_state = 5}, - [2639] = {.lex_state = 262, .external_lex_state = 5}, + [2639] = {.lex_state = 262, .external_lex_state = 4}, [2640] = {.lex_state = 262, .external_lex_state = 5}, - [2641] = {.lex_state = 262, .external_lex_state = 5}, - [2642] = {.lex_state = 262, .external_lex_state = 5}, - [2643] = {.lex_state = 262, .external_lex_state = 4}, - [2644] = {.lex_state = 262, .external_lex_state = 5}, - [2645] = {.lex_state = 262, .external_lex_state = 5}, - [2646] = {.lex_state = 262, .external_lex_state = 5}, - [2647] = {.lex_state = 262, .external_lex_state = 5}, - [2648] = {.lex_state = 262, .external_lex_state = 5}, - [2649] = {.lex_state = 262, .external_lex_state = 5}, - [2650] = {.lex_state = 262, .external_lex_state = 5}, + [2641] = {.lex_state = 102, .external_lex_state = 5}, + [2642] = {.lex_state = 102, .external_lex_state = 5}, + [2643] = {.lex_state = 102, .external_lex_state = 5}, + [2644] = {.lex_state = 102, .external_lex_state = 5}, + [2645] = {.lex_state = 102, .external_lex_state = 5}, + [2646] = {.lex_state = 102, .external_lex_state = 5}, + [2647] = {.lex_state = 102, .external_lex_state = 5}, + [2648] = {.lex_state = 102, .external_lex_state = 5}, + [2649] = {.lex_state = 102, .external_lex_state = 5}, + [2650] = {.lex_state = 102, .external_lex_state = 5}, [2651] = {.lex_state = 262, .external_lex_state = 5}, [2652] = {.lex_state = 262, .external_lex_state = 5}, - [2653] = {.lex_state = 262, .external_lex_state = 5}, - [2654] = {.lex_state = 262, .external_lex_state = 5}, - [2655] = {.lex_state = 262, .external_lex_state = 5}, - [2656] = {.lex_state = 262, .external_lex_state = 5}, - [2657] = {.lex_state = 135, .external_lex_state = 4}, - [2658] = {.lex_state = 135, .external_lex_state = 4}, - [2659] = {.lex_state = 262, .external_lex_state = 5}, - [2660] = {.lex_state = 262, .external_lex_state = 5}, + [2653] = {.lex_state = 102, .external_lex_state = 5}, + [2654] = {.lex_state = 102, .external_lex_state = 5}, + [2655] = {.lex_state = 102, .external_lex_state = 5}, + [2656] = {.lex_state = 102, .external_lex_state = 5}, + [2657] = {.lex_state = 262, .external_lex_state = 4}, + [2658] = {.lex_state = 102, .external_lex_state = 5}, + [2659] = {.lex_state = 102, .external_lex_state = 5}, + [2660] = {.lex_state = 102, .external_lex_state = 5}, [2661] = {.lex_state = 262, .external_lex_state = 5}, - [2662] = {.lex_state = 262, .external_lex_state = 5}, + [2662] = {.lex_state = 102, .external_lex_state = 5}, [2663] = {.lex_state = 262, .external_lex_state = 5}, [2664] = {.lex_state = 262, .external_lex_state = 5}, - [2665] = {.lex_state = 262, .external_lex_state = 5}, - [2666] = {.lex_state = 262, .external_lex_state = 4}, - [2667] = {.lex_state = 262, .external_lex_state = 4}, - [2668] = {.lex_state = 262, .external_lex_state = 4}, - [2669] = {.lex_state = 262, .external_lex_state = 4}, - [2670] = {.lex_state = 262, .external_lex_state = 4}, - [2671] = {.lex_state = 262, .external_lex_state = 4}, - [2672] = {.lex_state = 262, .external_lex_state = 4}, - [2673] = {.lex_state = 262, .external_lex_state = 4}, - [2674] = {.lex_state = 262, .external_lex_state = 4}, - [2675] = {.lex_state = 262, .external_lex_state = 4}, - [2676] = {.lex_state = 262, .external_lex_state = 4}, + [2665] = {.lex_state = 102, .external_lex_state = 5}, + [2666] = {.lex_state = 102, .external_lex_state = 5}, + [2667] = {.lex_state = 102, .external_lex_state = 5}, + [2668] = {.lex_state = 132, .external_lex_state = 4}, + [2669] = {.lex_state = 129, .external_lex_state = 5}, + [2670] = {.lex_state = 102, .external_lex_state = 5}, + [2671] = {.lex_state = 102, .external_lex_state = 5}, + [2672] = {.lex_state = 102, .external_lex_state = 5}, + [2673] = {.lex_state = 102, .external_lex_state = 5}, + [2674] = {.lex_state = 102, .external_lex_state = 5}, + [2675] = {.lex_state = 102, .external_lex_state = 5}, + [2676] = {.lex_state = 102, .external_lex_state = 5}, [2677] = {.lex_state = 262, .external_lex_state = 5}, [2678] = {.lex_state = 262, .external_lex_state = 5}, - [2679] = {.lex_state = 262, .external_lex_state = 5}, - [2680] = {.lex_state = 135, .external_lex_state = 4}, - [2681] = {.lex_state = 135, .external_lex_state = 4}, - [2682] = {.lex_state = 262, .external_lex_state = 5}, - [2683] = {.lex_state = 262, .external_lex_state = 5}, + [2679] = {.lex_state = 262, .external_lex_state = 4}, + [2680] = {.lex_state = 262, .external_lex_state = 5}, + [2681] = {.lex_state = 262, .external_lex_state = 4}, + [2682] = {.lex_state = 262, .external_lex_state = 4}, + [2683] = {.lex_state = 262, .external_lex_state = 4}, [2684] = {.lex_state = 262, .external_lex_state = 5}, [2685] = {.lex_state = 262, .external_lex_state = 5}, [2686] = {.lex_state = 262, .external_lex_state = 5}, - [2687] = {.lex_state = 262, .external_lex_state = 5}, + [2687] = {.lex_state = 129, .external_lex_state = 5}, [2688] = {.lex_state = 262, .external_lex_state = 5}, - [2689] = {.lex_state = 262, .external_lex_state = 5}, + [2689] = {.lex_state = 102, .external_lex_state = 5}, [2690] = {.lex_state = 262, .external_lex_state = 5}, [2691] = {.lex_state = 262, .external_lex_state = 5}, - [2692] = {.lex_state = 262, .external_lex_state = 5}, - [2693] = {.lex_state = 262, .external_lex_state = 5}, - [2694] = {.lex_state = 262, .external_lex_state = 5}, - [2695] = {.lex_state = 262, .external_lex_state = 5}, - [2696] = {.lex_state = 262, .external_lex_state = 5}, - [2697] = {.lex_state = 262, .external_lex_state = 5}, + [2692] = {.lex_state = 102, .external_lex_state = 5}, + [2693] = {.lex_state = 102, .external_lex_state = 5}, + [2694] = {.lex_state = 102, .external_lex_state = 5}, + [2695] = {.lex_state = 102, .external_lex_state = 5}, + [2696] = {.lex_state = 102, .external_lex_state = 5}, + [2697] = {.lex_state = 102, .external_lex_state = 5}, [2698] = {.lex_state = 262, .external_lex_state = 5}, - [2699] = {.lex_state = 262, .external_lex_state = 5}, - [2700] = {.lex_state = 262, .external_lex_state = 5}, - [2701] = {.lex_state = 262, .external_lex_state = 5}, - [2702] = {.lex_state = 262, .external_lex_state = 5}, + [2699] = {.lex_state = 262, .external_lex_state = 4}, + [2700] = {.lex_state = 129, .external_lex_state = 5}, + [2701] = {.lex_state = 129, .external_lex_state = 5}, + [2702] = {.lex_state = 135, .external_lex_state = 5}, [2703] = {.lex_state = 262, .external_lex_state = 5}, - [2704] = {.lex_state = 262, .external_lex_state = 5}, - [2705] = {.lex_state = 262, .external_lex_state = 5}, - [2706] = {.lex_state = 262, .external_lex_state = 5}, - [2707] = {.lex_state = 262, .external_lex_state = 5}, - [2708] = {.lex_state = 262, .external_lex_state = 5}, - [2709] = {.lex_state = 262, .external_lex_state = 5}, - [2710] = {.lex_state = 262, .external_lex_state = 5}, + [2704] = {.lex_state = 102, .external_lex_state = 5}, + [2705] = {.lex_state = 102, .external_lex_state = 5}, + [2706] = {.lex_state = 135, .external_lex_state = 5}, + [2707] = {.lex_state = 135, .external_lex_state = 5}, + [2708] = {.lex_state = 102, .external_lex_state = 4}, + [2709] = {.lex_state = 135, .external_lex_state = 5}, + [2710] = {.lex_state = 262, .external_lex_state = 4}, [2711] = {.lex_state = 262, .external_lex_state = 5}, [2712] = {.lex_state = 262, .external_lex_state = 5}, [2713] = {.lex_state = 262, .external_lex_state = 5}, [2714] = {.lex_state = 262, .external_lex_state = 5}, [2715] = {.lex_state = 262, .external_lex_state = 5}, [2716] = {.lex_state = 262, .external_lex_state = 5}, - [2717] = {.lex_state = 262, .external_lex_state = 4}, - [2718] = {.lex_state = 102, .external_lex_state = 5}, + [2717] = {.lex_state = 262, .external_lex_state = 5}, + [2718] = {.lex_state = 262, .external_lex_state = 5}, [2719] = {.lex_state = 262, .external_lex_state = 4}, - [2720] = {.lex_state = 102, .external_lex_state = 4}, - [2721] = {.lex_state = 102, .external_lex_state = 5}, + [2720] = {.lex_state = 262, .external_lex_state = 5}, + [2721] = {.lex_state = 102, .external_lex_state = 4}, [2722] = {.lex_state = 262, .external_lex_state = 5}, - [2723] = {.lex_state = 262, .external_lex_state = 4}, + [2723] = {.lex_state = 102, .external_lex_state = 5}, [2724] = {.lex_state = 262, .external_lex_state = 5}, [2725] = {.lex_state = 262, .external_lex_state = 5}, - [2726] = {.lex_state = 132, .external_lex_state = 5}, - [2727] = {.lex_state = 132, .external_lex_state = 5}, - [2728] = {.lex_state = 127, .external_lex_state = 5}, - [2729] = {.lex_state = 127, .external_lex_state = 5}, - [2730] = {.lex_state = 262, .external_lex_state = 5}, - [2731] = {.lex_state = 262, .external_lex_state = 4}, - [2732] = {.lex_state = 127, .external_lex_state = 5}, - [2733] = {.lex_state = 132, .external_lex_state = 5}, - [2734] = {.lex_state = 132, .external_lex_state = 5}, - [2735] = {.lex_state = 132, .external_lex_state = 5}, - [2736] = {.lex_state = 127, .external_lex_state = 5}, - [2737] = {.lex_state = 127, .external_lex_state = 5}, + [2726] = {.lex_state = 102, .external_lex_state = 5}, + [2727] = {.lex_state = 102, .external_lex_state = 5}, + [2728] = {.lex_state = 102, .external_lex_state = 5}, + [2729] = {.lex_state = 102, .external_lex_state = 5}, + [2730] = {.lex_state = 102, .external_lex_state = 5}, + [2731] = {.lex_state = 262, .external_lex_state = 5}, + [2732] = {.lex_state = 102, .external_lex_state = 5}, + [2733] = {.lex_state = 262, .external_lex_state = 5}, + [2734] = {.lex_state = 262, .external_lex_state = 5}, + [2735] = {.lex_state = 262, .external_lex_state = 5}, + [2736] = {.lex_state = 262, .external_lex_state = 5}, + [2737] = {.lex_state = 102, .external_lex_state = 5}, [2738] = {.lex_state = 262, .external_lex_state = 5}, - [2739] = {.lex_state = 127, .external_lex_state = 5}, - [2740] = {.lex_state = 127, .external_lex_state = 5}, - [2741] = {.lex_state = 127, .external_lex_state = 5}, + [2739] = {.lex_state = 262, .external_lex_state = 5}, + [2740] = {.lex_state = 102, .external_lex_state = 5}, + [2741] = {.lex_state = 129, .external_lex_state = 5}, [2742] = {.lex_state = 262, .external_lex_state = 5}, [2743] = {.lex_state = 262, .external_lex_state = 4}, - [2744] = {.lex_state = 127, .external_lex_state = 5}, - [2745] = {.lex_state = 132, .external_lex_state = 5}, - [2746] = {.lex_state = 127, .external_lex_state = 5}, - [2747] = {.lex_state = 127, .external_lex_state = 5}, - [2748] = {.lex_state = 262, .external_lex_state = 5}, - [2749] = {.lex_state = 262, .external_lex_state = 5}, - [2750] = {.lex_state = 262, .external_lex_state = 5}, + [2744] = {.lex_state = 262, .external_lex_state = 4}, + [2745] = {.lex_state = 129, .external_lex_state = 5}, + [2746] = {.lex_state = 129, .external_lex_state = 5}, + [2747] = {.lex_state = 262, .external_lex_state = 5}, + [2748] = {.lex_state = 102, .external_lex_state = 5}, + [2749] = {.lex_state = 102, .external_lex_state = 5}, + [2750] = {.lex_state = 262, .external_lex_state = 4}, [2751] = {.lex_state = 262, .external_lex_state = 5}, - [2752] = {.lex_state = 262, .external_lex_state = 5}, - [2753] = {.lex_state = 262, .external_lex_state = 5}, - [2754] = {.lex_state = 262, .external_lex_state = 5}, - [2755] = {.lex_state = 127, .external_lex_state = 5}, + [2752] = {.lex_state = 102, .external_lex_state = 5}, + [2753] = {.lex_state = 102, .external_lex_state = 5}, + [2754] = {.lex_state = 262, .external_lex_state = 4}, + [2755] = {.lex_state = 102, .external_lex_state = 5}, [2756] = {.lex_state = 102, .external_lex_state = 5}, - [2757] = {.lex_state = 262, .external_lex_state = 5}, - [2758] = {.lex_state = 127, .external_lex_state = 5}, - [2759] = {.lex_state = 102, .external_lex_state = 4}, - [2760] = {.lex_state = 102, .external_lex_state = 4}, - [2761] = {.lex_state = 262, .external_lex_state = 5}, - [2762] = {.lex_state = 262, .external_lex_state = 5}, - [2763] = {.lex_state = 262, .external_lex_state = 5}, + [2757] = {.lex_state = 102, .external_lex_state = 5}, + [2758] = {.lex_state = 102, .external_lex_state = 5}, + [2759] = {.lex_state = 102, .external_lex_state = 5}, + [2760] = {.lex_state = 102, .external_lex_state = 5}, + [2761] = {.lex_state = 102, .external_lex_state = 5}, + [2762] = {.lex_state = 102, .external_lex_state = 4}, + [2763] = {.lex_state = 102, .external_lex_state = 4}, [2764] = {.lex_state = 262, .external_lex_state = 5}, [2765] = {.lex_state = 262, .external_lex_state = 5}, [2766] = {.lex_state = 262, .external_lex_state = 5}, [2767] = {.lex_state = 262, .external_lex_state = 5}, - [2768] = {.lex_state = 262, .external_lex_state = 5}, - [2769] = {.lex_state = 262, .external_lex_state = 5}, - [2770] = {.lex_state = 262, .external_lex_state = 5}, - [2771] = {.lex_state = 262, .external_lex_state = 5}, - [2772] = {.lex_state = 266, .external_lex_state = 4}, - [2773] = {.lex_state = 266, .external_lex_state = 4}, - [2774] = {.lex_state = 266, .external_lex_state = 4}, - [2775] = {.lex_state = 266, .external_lex_state = 4}, - [2776] = {.lex_state = 266, .external_lex_state = 4}, - [2777] = {.lex_state = 266, .external_lex_state = 4}, - [2778] = {.lex_state = 266, .external_lex_state = 4}, - [2779] = {.lex_state = 266, .external_lex_state = 4}, - [2780] = {.lex_state = 266, .external_lex_state = 4}, - [2781] = {.lex_state = 266, .external_lex_state = 4}, - [2782] = {.lex_state = 266, .external_lex_state = 4}, - [2783] = {.lex_state = 266, .external_lex_state = 4}, - [2784] = {.lex_state = 266, .external_lex_state = 4}, - [2785] = {.lex_state = 266, .external_lex_state = 4}, - [2786] = {.lex_state = 266, .external_lex_state = 4}, - [2787] = {.lex_state = 266, .external_lex_state = 4}, - [2788] = {.lex_state = 266, .external_lex_state = 4}, - [2789] = {.lex_state = 262, .external_lex_state = 4}, - [2790] = {.lex_state = 262, .external_lex_state = 4}, - [2791] = {.lex_state = 262, .external_lex_state = 4}, - [2792] = {.lex_state = 266, .external_lex_state = 4}, - [2793] = {.lex_state = 266, .external_lex_state = 4}, - [2794] = {.lex_state = 266, .external_lex_state = 4}, - [2795] = {.lex_state = 102, .external_lex_state = 4}, - [2796] = {.lex_state = 266, .external_lex_state = 4}, - [2797] = {.lex_state = 266, .external_lex_state = 4}, - [2798] = {.lex_state = 266, .external_lex_state = 4}, - [2799] = {.lex_state = 266, .external_lex_state = 4}, - [2800] = {.lex_state = 266, .external_lex_state = 4}, - [2801] = {.lex_state = 266, .external_lex_state = 4}, - [2802] = {.lex_state = 266, .external_lex_state = 4}, - [2803] = {.lex_state = 266, .external_lex_state = 4}, - [2804] = {.lex_state = 266, .external_lex_state = 4}, - [2805] = {.lex_state = 266, .external_lex_state = 4}, - [2806] = {.lex_state = 266, .external_lex_state = 4}, - [2807] = {.lex_state = 262, .external_lex_state = 4}, - [2808] = {.lex_state = 262, .external_lex_state = 4}, - [2809] = {.lex_state = 262, .external_lex_state = 4}, - [2810] = {.lex_state = 262, .external_lex_state = 4}, - [2811] = {.lex_state = 262, .external_lex_state = 4}, - [2812] = {.lex_state = 138, .external_lex_state = 4}, - [2813] = {.lex_state = 262, .external_lex_state = 4}, - [2814] = {.lex_state = 266, .external_lex_state = 4}, - [2815] = {.lex_state = 262, .external_lex_state = 4}, - [2816] = {.lex_state = 102, .external_lex_state = 4}, - [2817] = {.lex_state = 262, .external_lex_state = 4}, - [2818] = {.lex_state = 102, .external_lex_state = 4}, - [2819] = {.lex_state = 266, .external_lex_state = 4}, - [2820] = {.lex_state = 138, .external_lex_state = 4}, - [2821] = {.lex_state = 262, .external_lex_state = 4}, - [2822] = {.lex_state = 102, .external_lex_state = 4}, - [2823] = {.lex_state = 102, .external_lex_state = 4}, - [2824] = {.lex_state = 138, .external_lex_state = 4}, - [2825] = {.lex_state = 102, .external_lex_state = 4}, - [2826] = {.lex_state = 262, .external_lex_state = 4}, - [2827] = {.lex_state = 102, .external_lex_state = 4}, - [2828] = {.lex_state = 102, .external_lex_state = 4}, - [2829] = {.lex_state = 102, .external_lex_state = 4}, - [2830] = {.lex_state = 102, .external_lex_state = 4}, - [2831] = {.lex_state = 266, .external_lex_state = 4}, - [2832] = {.lex_state = 262, .external_lex_state = 4}, - [2833] = {.lex_state = 102, .external_lex_state = 4}, - [2834] = {.lex_state = 102, .external_lex_state = 4}, - [2835] = {.lex_state = 262, .external_lex_state = 4}, - [2836] = {.lex_state = 102, .external_lex_state = 4}, - [2837] = {.lex_state = 102, .external_lex_state = 4}, - [2838] = {.lex_state = 138, .external_lex_state = 4}, - [2839] = {.lex_state = 138, .external_lex_state = 4}, - [2840] = {.lex_state = 138, .external_lex_state = 4}, - [2841] = {.lex_state = 138, .external_lex_state = 4}, - [2842] = {.lex_state = 138, .external_lex_state = 4}, - [2843] = {.lex_state = 138, .external_lex_state = 4}, - [2844] = {.lex_state = 138, .external_lex_state = 4}, - [2845] = {.lex_state = 138, .external_lex_state = 4}, - [2846] = {.lex_state = 138, .external_lex_state = 4}, - [2847] = {.lex_state = 138, .external_lex_state = 4}, - [2848] = {.lex_state = 138, .external_lex_state = 4}, + [2768] = {.lex_state = 132, .external_lex_state = 4}, + [2769] = {.lex_state = 132, .external_lex_state = 4}, + [2770] = {.lex_state = 102, .external_lex_state = 5}, + [2771] = {.lex_state = 102, .external_lex_state = 5}, + [2772] = {.lex_state = 102, .external_lex_state = 5}, + [2773] = {.lex_state = 102, .external_lex_state = 5}, + [2774] = {.lex_state = 102, .external_lex_state = 5}, + [2775] = {.lex_state = 102, .external_lex_state = 5}, + [2776] = {.lex_state = 102, .external_lex_state = 5}, + [2777] = {.lex_state = 102, .external_lex_state = 5}, + [2778] = {.lex_state = 102, .external_lex_state = 5}, + [2779] = {.lex_state = 102, .external_lex_state = 5}, + [2780] = {.lex_state = 132, .external_lex_state = 4}, + [2781] = {.lex_state = 132, .external_lex_state = 4}, + [2782] = {.lex_state = 132, .external_lex_state = 4}, + [2783] = {.lex_state = 132, .external_lex_state = 4}, + [2784] = {.lex_state = 132, .external_lex_state = 4}, + [2785] = {.lex_state = 132, .external_lex_state = 4}, + [2786] = {.lex_state = 132, .external_lex_state = 4}, + [2787] = {.lex_state = 132, .external_lex_state = 4}, + [2788] = {.lex_state = 132, .external_lex_state = 4}, + [2789] = {.lex_state = 132, .external_lex_state = 4}, + [2790] = {.lex_state = 102, .external_lex_state = 5}, + [2791] = {.lex_state = 102, .external_lex_state = 5}, + [2792] = {.lex_state = 102, .external_lex_state = 5}, + [2793] = {.lex_state = 102, .external_lex_state = 5}, + [2794] = {.lex_state = 102, .external_lex_state = 5}, + [2795] = {.lex_state = 102, .external_lex_state = 5}, + [2796] = {.lex_state = 102, .external_lex_state = 5}, + [2797] = {.lex_state = 102, .external_lex_state = 5}, + [2798] = {.lex_state = 102, .external_lex_state = 5}, + [2799] = {.lex_state = 102, .external_lex_state = 5}, + [2800] = {.lex_state = 102, .external_lex_state = 5}, + [2801] = {.lex_state = 102, .external_lex_state = 5}, + [2802] = {.lex_state = 102, .external_lex_state = 5}, + [2803] = {.lex_state = 102, .external_lex_state = 5}, + [2804] = {.lex_state = 102, .external_lex_state = 5}, + [2805] = {.lex_state = 102, .external_lex_state = 5}, + [2806] = {.lex_state = 102, .external_lex_state = 5}, + [2807] = {.lex_state = 102, .external_lex_state = 5}, + [2808] = {.lex_state = 262, .external_lex_state = 5}, + [2809] = {.lex_state = 102, .external_lex_state = 5}, + [2810] = {.lex_state = 102, .external_lex_state = 5}, + [2811] = {.lex_state = 132, .external_lex_state = 4}, + [2812] = {.lex_state = 102, .external_lex_state = 5}, + [2813] = {.lex_state = 102, .external_lex_state = 5}, + [2814] = {.lex_state = 102, .external_lex_state = 5}, + [2815] = {.lex_state = 132, .external_lex_state = 4}, + [2816] = {.lex_state = 132, .external_lex_state = 4}, + [2817] = {.lex_state = 132, .external_lex_state = 4}, + [2818] = {.lex_state = 132, .external_lex_state = 4}, + [2819] = {.lex_state = 132, .external_lex_state = 4}, + [2820] = {.lex_state = 262, .external_lex_state = 5}, + [2821] = {.lex_state = 262, .external_lex_state = 5}, + [2822] = {.lex_state = 262, .external_lex_state = 5}, + [2823] = {.lex_state = 262, .external_lex_state = 5}, + [2824] = {.lex_state = 262, .external_lex_state = 5}, + [2825] = {.lex_state = 262, .external_lex_state = 5}, + [2826] = {.lex_state = 262, .external_lex_state = 5}, + [2827] = {.lex_state = 262, .external_lex_state = 5}, + [2828] = {.lex_state = 262, .external_lex_state = 5}, + [2829] = {.lex_state = 262, .external_lex_state = 5}, + [2830] = {.lex_state = 262, .external_lex_state = 5}, + [2831] = {.lex_state = 102, .external_lex_state = 5}, + [2832] = {.lex_state = 102, .external_lex_state = 5}, + [2833] = {.lex_state = 262, .external_lex_state = 5}, + [2834] = {.lex_state = 102, .external_lex_state = 5}, + [2835] = {.lex_state = 262, .external_lex_state = 5}, + [2836] = {.lex_state = 102, .external_lex_state = 5}, + [2837] = {.lex_state = 262, .external_lex_state = 5}, + [2838] = {.lex_state = 262, .external_lex_state = 5}, + [2839] = {.lex_state = 102, .external_lex_state = 4}, + [2840] = {.lex_state = 262, .external_lex_state = 4}, + [2841] = {.lex_state = 262, .external_lex_state = 5}, + [2842] = {.lex_state = 262, .external_lex_state = 5}, + [2843] = {.lex_state = 262, .external_lex_state = 5}, + [2844] = {.lex_state = 262, .external_lex_state = 5}, + [2845] = {.lex_state = 129, .external_lex_state = 5}, + [2846] = {.lex_state = 102, .external_lex_state = 5}, + [2847] = {.lex_state = 262, .external_lex_state = 5}, + [2848] = {.lex_state = 262, .external_lex_state = 5}, [2849] = {.lex_state = 262, .external_lex_state = 5}, [2850] = {.lex_state = 262, .external_lex_state = 5}, - [2851] = {.lex_state = 138, .external_lex_state = 4}, - [2852] = {.lex_state = 138, .external_lex_state = 4}, - [2853] = {.lex_state = 138, .external_lex_state = 4}, - [2854] = {.lex_state = 138, .external_lex_state = 4}, - [2855] = {.lex_state = 138, .external_lex_state = 4}, - [2856] = {.lex_state = 138, .external_lex_state = 4}, - [2857] = {.lex_state = 138, .external_lex_state = 4}, - [2858] = {.lex_state = 138, .external_lex_state = 4}, - [2859] = {.lex_state = 138, .external_lex_state = 4}, - [2860] = {.lex_state = 138, .external_lex_state = 4}, - [2861] = {.lex_state = 138, .external_lex_state = 4}, - [2862] = {.lex_state = 138, .external_lex_state = 4}, - [2863] = {.lex_state = 138, .external_lex_state = 4}, - [2864] = {.lex_state = 138, .external_lex_state = 4}, - [2865] = {.lex_state = 138, .external_lex_state = 4}, - [2866] = {.lex_state = 138, .external_lex_state = 4}, - [2867] = {.lex_state = 138, .external_lex_state = 4}, - [2868] = {.lex_state = 138, .external_lex_state = 4}, - [2869] = {.lex_state = 138, .external_lex_state = 4}, - [2870] = {.lex_state = 138, .external_lex_state = 4}, - [2871] = {.lex_state = 138, .external_lex_state = 4}, - [2872] = {.lex_state = 138, .external_lex_state = 4}, - [2873] = {.lex_state = 138, .external_lex_state = 4}, - [2874] = {.lex_state = 102, .external_lex_state = 4}, - [2875] = {.lex_state = 102, .external_lex_state = 4}, - [2876] = {.lex_state = 102, .external_lex_state = 4}, - [2877] = {.lex_state = 102, .external_lex_state = 4}, - [2878] = {.lex_state = 102, .external_lex_state = 4}, - [2879] = {.lex_state = 127, .external_lex_state = 5}, - [2880] = {.lex_state = 127, .external_lex_state = 5}, - [2881] = {.lex_state = 102, .external_lex_state = 4}, - [2882] = {.lex_state = 127, .external_lex_state = 5}, - [2883] = {.lex_state = 102, .external_lex_state = 4}, - [2884] = {.lex_state = 102, .external_lex_state = 4}, - [2885] = {.lex_state = 102, .external_lex_state = 4}, - [2886] = {.lex_state = 102, .external_lex_state = 4}, - [2887] = {.lex_state = 262, .external_lex_state = 4}, - [2888] = {.lex_state = 127, .external_lex_state = 5}, - [2889] = {.lex_state = 127, .external_lex_state = 5}, - [2890] = {.lex_state = 102, .external_lex_state = 4}, - [2891] = {.lex_state = 127, .external_lex_state = 5}, - [2892] = {.lex_state = 127, .external_lex_state = 5}, - [2893] = {.lex_state = 127, .external_lex_state = 5}, - [2894] = {.lex_state = 127, .external_lex_state = 5}, - [2895] = {.lex_state = 127, .external_lex_state = 5}, - [2896] = {.lex_state = 127, .external_lex_state = 5}, - [2897] = {.lex_state = 127, .external_lex_state = 5}, - [2898] = {.lex_state = 127, .external_lex_state = 5}, - [2899] = {.lex_state = 102, .external_lex_state = 4}, - [2900] = {.lex_state = 127, .external_lex_state = 5}, - [2901] = {.lex_state = 127, .external_lex_state = 5}, - [2902] = {.lex_state = 127, .external_lex_state = 5}, - [2903] = {.lex_state = 127, .external_lex_state = 5}, - [2904] = {.lex_state = 127, .external_lex_state = 5}, - [2905] = {.lex_state = 127, .external_lex_state = 5}, - [2906] = {.lex_state = 127, .external_lex_state = 5}, - [2907] = {.lex_state = 127, .external_lex_state = 5}, + [2851] = {.lex_state = 262, .external_lex_state = 5}, + [2852] = {.lex_state = 262, .external_lex_state = 5}, + [2853] = {.lex_state = 102, .external_lex_state = 5}, + [2854] = {.lex_state = 102, .external_lex_state = 4}, + [2855] = {.lex_state = 262, .external_lex_state = 5}, + [2856] = {.lex_state = 262, .external_lex_state = 5}, + [2857] = {.lex_state = 262, .external_lex_state = 5}, + [2858] = {.lex_state = 262, .external_lex_state = 5}, + [2859] = {.lex_state = 262, .external_lex_state = 5}, + [2860] = {.lex_state = 262, .external_lex_state = 5}, + [2861] = {.lex_state = 262, .external_lex_state = 5}, + [2862] = {.lex_state = 262, .external_lex_state = 5}, + [2863] = {.lex_state = 262, .external_lex_state = 5}, + [2864] = {.lex_state = 262, .external_lex_state = 5}, + [2865] = {.lex_state = 262, .external_lex_state = 5}, + [2866] = {.lex_state = 262, .external_lex_state = 5}, + [2867] = {.lex_state = 129, .external_lex_state = 5}, + [2868] = {.lex_state = 262, .external_lex_state = 5}, + [2869] = {.lex_state = 262, .external_lex_state = 5}, + [2870] = {.lex_state = 102, .external_lex_state = 5}, + [2871] = {.lex_state = 102, .external_lex_state = 5}, + [2872] = {.lex_state = 102, .external_lex_state = 5}, + [2873] = {.lex_state = 129, .external_lex_state = 5}, + [2874] = {.lex_state = 262, .external_lex_state = 5}, + [2875] = {.lex_state = 262, .external_lex_state = 5}, + [2876] = {.lex_state = 102, .external_lex_state = 5}, + [2877] = {.lex_state = 262, .external_lex_state = 5}, + [2878] = {.lex_state = 262, .external_lex_state = 5}, + [2879] = {.lex_state = 262, .external_lex_state = 5}, + [2880] = {.lex_state = 262, .external_lex_state = 5}, + [2881] = {.lex_state = 102, .external_lex_state = 5}, + [2882] = {.lex_state = 262, .external_lex_state = 5}, + [2883] = {.lex_state = 102, .external_lex_state = 5}, + [2884] = {.lex_state = 132, .external_lex_state = 4}, + [2885] = {.lex_state = 132, .external_lex_state = 4}, + [2886] = {.lex_state = 262, .external_lex_state = 5}, + [2887] = {.lex_state = 262, .external_lex_state = 5}, + [2888] = {.lex_state = 262, .external_lex_state = 5}, + [2889] = {.lex_state = 262, .external_lex_state = 5}, + [2890] = {.lex_state = 129, .external_lex_state = 5}, + [2891] = {.lex_state = 129, .external_lex_state = 5}, + [2892] = {.lex_state = 262, .external_lex_state = 5}, + [2893] = {.lex_state = 129, .external_lex_state = 5}, + [2894] = {.lex_state = 129, .external_lex_state = 5}, + [2895] = {.lex_state = 129, .external_lex_state = 5}, + [2896] = {.lex_state = 132, .external_lex_state = 4}, + [2897] = {.lex_state = 132, .external_lex_state = 4}, + [2898] = {.lex_state = 129, .external_lex_state = 5}, + [2899] = {.lex_state = 132, .external_lex_state = 4}, + [2900] = {.lex_state = 132, .external_lex_state = 4}, + [2901] = {.lex_state = 132, .external_lex_state = 4}, + [2902] = {.lex_state = 262, .external_lex_state = 5}, + [2903] = {.lex_state = 132, .external_lex_state = 4}, + [2904] = {.lex_state = 132, .external_lex_state = 4}, + [2905] = {.lex_state = 132, .external_lex_state = 4}, + [2906] = {.lex_state = 132, .external_lex_state = 4}, + [2907] = {.lex_state = 132, .external_lex_state = 4}, [2908] = {.lex_state = 262, .external_lex_state = 5}, - [2909] = {.lex_state = 127, .external_lex_state = 5}, - [2910] = {.lex_state = 262, .external_lex_state = 4}, - [2911] = {.lex_state = 127, .external_lex_state = 5}, - [2912] = {.lex_state = 127, .external_lex_state = 5}, - [2913] = {.lex_state = 135, .external_lex_state = 4}, - [2914] = {.lex_state = 135, .external_lex_state = 4}, - [2915] = {.lex_state = 127, .external_lex_state = 5}, - [2916] = {.lex_state = 262, .external_lex_state = 4}, - [2917] = {.lex_state = 127, .external_lex_state = 5}, - [2918] = {.lex_state = 262, .external_lex_state = 4}, - [2919] = {.lex_state = 262, .external_lex_state = 4}, - [2920] = {.lex_state = 262, .external_lex_state = 4}, - [2921] = {.lex_state = 102, .external_lex_state = 4}, - [2922] = {.lex_state = 127, .external_lex_state = 5}, - [2923] = {.lex_state = 127, .external_lex_state = 5}, - [2924] = {.lex_state = 127, .external_lex_state = 5}, - [2925] = {.lex_state = 127, .external_lex_state = 5}, - [2926] = {.lex_state = 127, .external_lex_state = 5}, - [2927] = {.lex_state = 127, .external_lex_state = 5}, - [2928] = {.lex_state = 127, .external_lex_state = 5}, - [2929] = {.lex_state = 127, .external_lex_state = 5}, - [2930] = {.lex_state = 127, .external_lex_state = 5}, - [2931] = {.lex_state = 262, .external_lex_state = 4}, - [2932] = {.lex_state = 127, .external_lex_state = 5}, - [2933] = {.lex_state = 127, .external_lex_state = 5}, - [2934] = {.lex_state = 127, .external_lex_state = 5}, - [2935] = {.lex_state = 135, .external_lex_state = 4}, - [2936] = {.lex_state = 135, .external_lex_state = 4}, - [2937] = {.lex_state = 127, .external_lex_state = 5}, - [2938] = {.lex_state = 127, .external_lex_state = 5}, - [2939] = {.lex_state = 127, .external_lex_state = 5}, - [2940] = {.lex_state = 127, .external_lex_state = 5}, - [2941] = {.lex_state = 127, .external_lex_state = 5}, - [2942] = {.lex_state = 127, .external_lex_state = 5}, - [2943] = {.lex_state = 127, .external_lex_state = 5}, - [2944] = {.lex_state = 127, .external_lex_state = 5}, - [2945] = {.lex_state = 127, .external_lex_state = 5}, - [2946] = {.lex_state = 127, .external_lex_state = 5}, - [2947] = {.lex_state = 127, .external_lex_state = 5}, - [2948] = {.lex_state = 127, .external_lex_state = 5}, - [2949] = {.lex_state = 127, .external_lex_state = 5}, - [2950] = {.lex_state = 127, .external_lex_state = 5}, - [2951] = {.lex_state = 127, .external_lex_state = 5}, - [2952] = {.lex_state = 127, .external_lex_state = 5}, - [2953] = {.lex_state = 266, .external_lex_state = 4}, - [2954] = {.lex_state = 266, .external_lex_state = 4}, - [2955] = {.lex_state = 266, .external_lex_state = 4}, - [2956] = {.lex_state = 266, .external_lex_state = 4}, - [2957] = {.lex_state = 127, .external_lex_state = 5}, - [2958] = {.lex_state = 127, .external_lex_state = 5}, - [2959] = {.lex_state = 127, .external_lex_state = 5}, - [2960] = {.lex_state = 127, .external_lex_state = 5}, - [2961] = {.lex_state = 127, .external_lex_state = 5}, - [2962] = {.lex_state = 127, .external_lex_state = 5}, - [2963] = {.lex_state = 127, .external_lex_state = 5}, - [2964] = {.lex_state = 127, .external_lex_state = 5}, - [2965] = {.lex_state = 127, .external_lex_state = 5}, - [2966] = {.lex_state = 127, .external_lex_state = 5}, - [2967] = {.lex_state = 127, .external_lex_state = 5}, - [2968] = {.lex_state = 127, .external_lex_state = 5}, - [2969] = {.lex_state = 127, .external_lex_state = 5}, - [2970] = {.lex_state = 127, .external_lex_state = 5}, - [2971] = {.lex_state = 127, .external_lex_state = 5}, - [2972] = {.lex_state = 266, .external_lex_state = 4}, - [2973] = {.lex_state = 266, .external_lex_state = 4}, - [2974] = {.lex_state = 266, .external_lex_state = 4}, - [2975] = {.lex_state = 266, .external_lex_state = 4}, - [2976] = {.lex_state = 262, .external_lex_state = 4}, - [2977] = {.lex_state = 262, .external_lex_state = 4}, - [2978] = {.lex_state = 127, .external_lex_state = 5}, - [2979] = {.lex_state = 127, .external_lex_state = 5}, - [2980] = {.lex_state = 262, .external_lex_state = 4}, - [2981] = {.lex_state = 127, .external_lex_state = 5}, - [2982] = {.lex_state = 127, .external_lex_state = 5}, - [2983] = {.lex_state = 127, .external_lex_state = 5}, - [2984] = {.lex_state = 127, .external_lex_state = 5}, - [2985] = {.lex_state = 127, .external_lex_state = 5}, - [2986] = {.lex_state = 127, .external_lex_state = 5}, - [2987] = {.lex_state = 127, .external_lex_state = 5}, - [2988] = {.lex_state = 127, .external_lex_state = 5}, - [2989] = {.lex_state = 127, .external_lex_state = 5}, - [2990] = {.lex_state = 266, .external_lex_state = 4}, + [2909] = {.lex_state = 262, .external_lex_state = 4}, + [2910] = {.lex_state = 102, .external_lex_state = 5}, + [2911] = {.lex_state = 262, .external_lex_state = 5}, + [2912] = {.lex_state = 102, .external_lex_state = 5}, + [2913] = {.lex_state = 102, .external_lex_state = 5}, + [2914] = {.lex_state = 262, .external_lex_state = 5}, + [2915] = {.lex_state = 262, .external_lex_state = 4}, + [2916] = {.lex_state = 262, .external_lex_state = 5}, + [2917] = {.lex_state = 262, .external_lex_state = 5}, + [2918] = {.lex_state = 102, .external_lex_state = 5}, + [2919] = {.lex_state = 102, .external_lex_state = 5}, + [2920] = {.lex_state = 129, .external_lex_state = 5}, + [2921] = {.lex_state = 262, .external_lex_state = 5}, + [2922] = {.lex_state = 262, .external_lex_state = 5}, + [2923] = {.lex_state = 102, .external_lex_state = 5}, + [2924] = {.lex_state = 102, .external_lex_state = 5}, + [2925] = {.lex_state = 262, .external_lex_state = 5}, + [2926] = {.lex_state = 262, .external_lex_state = 5}, + [2927] = {.lex_state = 129, .external_lex_state = 5}, + [2928] = {.lex_state = 129, .external_lex_state = 5}, + [2929] = {.lex_state = 129, .external_lex_state = 5}, + [2930] = {.lex_state = 262, .external_lex_state = 5}, + [2931] = {.lex_state = 135, .external_lex_state = 5}, + [2932] = {.lex_state = 262, .external_lex_state = 5}, + [2933] = {.lex_state = 262, .external_lex_state = 5}, + [2934] = {.lex_state = 135, .external_lex_state = 5}, + [2935] = {.lex_state = 135, .external_lex_state = 5}, + [2936] = {.lex_state = 135, .external_lex_state = 5}, + [2937] = {.lex_state = 135, .external_lex_state = 5}, + [2938] = {.lex_state = 135, .external_lex_state = 5}, + [2939] = {.lex_state = 135, .external_lex_state = 5}, + [2940] = {.lex_state = 135, .external_lex_state = 5}, + [2941] = {.lex_state = 135, .external_lex_state = 5}, + [2942] = {.lex_state = 262, .external_lex_state = 4}, + [2943] = {.lex_state = 262, .external_lex_state = 4}, + [2944] = {.lex_state = 135, .external_lex_state = 5}, + [2945] = {.lex_state = 102, .external_lex_state = 5}, + [2946] = {.lex_state = 102, .external_lex_state = 5}, + [2947] = {.lex_state = 102, .external_lex_state = 5}, + [2948] = {.lex_state = 135, .external_lex_state = 5}, + [2949] = {.lex_state = 102, .external_lex_state = 5}, + [2950] = {.lex_state = 102, .external_lex_state = 5}, + [2951] = {.lex_state = 102, .external_lex_state = 5}, + [2952] = {.lex_state = 102, .external_lex_state = 5}, + [2953] = {.lex_state = 135, .external_lex_state = 5}, + [2954] = {.lex_state = 102, .external_lex_state = 5}, + [2955] = {.lex_state = 102, .external_lex_state = 5}, + [2956] = {.lex_state = 102, .external_lex_state = 5}, + [2957] = {.lex_state = 102, .external_lex_state = 5}, + [2958] = {.lex_state = 102, .external_lex_state = 5}, + [2959] = {.lex_state = 102, .external_lex_state = 5}, + [2960] = {.lex_state = 102, .external_lex_state = 5}, + [2961] = {.lex_state = 102, .external_lex_state = 5}, + [2962] = {.lex_state = 102, .external_lex_state = 5}, + [2963] = {.lex_state = 102, .external_lex_state = 5}, + [2964] = {.lex_state = 262, .external_lex_state = 5}, + [2965] = {.lex_state = 135, .external_lex_state = 5}, + [2966] = {.lex_state = 135, .external_lex_state = 5}, + [2967] = {.lex_state = 135, .external_lex_state = 5}, + [2968] = {.lex_state = 135, .external_lex_state = 5}, + [2969] = {.lex_state = 135, .external_lex_state = 5}, + [2970] = {.lex_state = 129, .external_lex_state = 5}, + [2971] = {.lex_state = 135, .external_lex_state = 5}, + [2972] = {.lex_state = 129, .external_lex_state = 5}, + [2973] = {.lex_state = 129, .external_lex_state = 5}, + [2974] = {.lex_state = 262, .external_lex_state = 5}, + [2975] = {.lex_state = 262, .external_lex_state = 5}, + [2976] = {.lex_state = 262, .external_lex_state = 5}, + [2977] = {.lex_state = 262, .external_lex_state = 5}, + [2978] = {.lex_state = 262, .external_lex_state = 4}, + [2979] = {.lex_state = 262, .external_lex_state = 5}, + [2980] = {.lex_state = 129, .external_lex_state = 5}, + [2981] = {.lex_state = 129, .external_lex_state = 5}, + [2982] = {.lex_state = 262, .external_lex_state = 5}, + [2983] = {.lex_state = 262, .external_lex_state = 5}, + [2984] = {.lex_state = 262, .external_lex_state = 5}, + [2985] = {.lex_state = 262, .external_lex_state = 5}, + [2986] = {.lex_state = 262, .external_lex_state = 4}, + [2987] = {.lex_state = 262, .external_lex_state = 4}, + [2988] = {.lex_state = 262, .external_lex_state = 5}, + [2989] = {.lex_state = 262, .external_lex_state = 4}, + [2990] = {.lex_state = 262, .external_lex_state = 4}, [2991] = {.lex_state = 262, .external_lex_state = 4}, - [2992] = {.lex_state = 262, .external_lex_state = 4}, - [2993] = {.lex_state = 262, .external_lex_state = 4}, - [2994] = {.lex_state = 262, .external_lex_state = 4}, - [2995] = {.lex_state = 262, .external_lex_state = 4}, - [2996] = {.lex_state = 262, .external_lex_state = 4}, - [2997] = {.lex_state = 266, .external_lex_state = 4}, - [2998] = {.lex_state = 266, .external_lex_state = 4}, - [2999] = {.lex_state = 266, .external_lex_state = 4}, - [3000] = {.lex_state = 266, .external_lex_state = 4}, - [3001] = {.lex_state = 266, .external_lex_state = 4}, - [3002] = {.lex_state = 266, .external_lex_state = 4}, - [3003] = {.lex_state = 266, .external_lex_state = 4}, - [3004] = {.lex_state = 266, .external_lex_state = 4}, - [3005] = {.lex_state = 262, .external_lex_state = 4}, + [2992] = {.lex_state = 262, .external_lex_state = 5}, + [2993] = {.lex_state = 262, .external_lex_state = 5}, + [2994] = {.lex_state = 262, .external_lex_state = 5}, + [2995] = {.lex_state = 262, .external_lex_state = 5}, + [2996] = {.lex_state = 262, .external_lex_state = 5}, + [2997] = {.lex_state = 262, .external_lex_state = 5}, + [2998] = {.lex_state = 262, .external_lex_state = 5}, + [2999] = {.lex_state = 262, .external_lex_state = 5}, + [3000] = {.lex_state = 262, .external_lex_state = 5}, + [3001] = {.lex_state = 262, .external_lex_state = 5}, + [3002] = {.lex_state = 262, .external_lex_state = 5}, + [3003] = {.lex_state = 262, .external_lex_state = 5}, + [3004] = {.lex_state = 135, .external_lex_state = 5}, + [3005] = {.lex_state = 135, .external_lex_state = 5}, [3006] = {.lex_state = 262, .external_lex_state = 4}, [3007] = {.lex_state = 262, .external_lex_state = 4}, - [3008] = {.lex_state = 266, .external_lex_state = 4}, - [3009] = {.lex_state = 266, .external_lex_state = 4}, - [3010] = {.lex_state = 266, .external_lex_state = 4}, - [3011] = {.lex_state = 266, .external_lex_state = 4}, - [3012] = {.lex_state = 266, .external_lex_state = 4}, - [3013] = {.lex_state = 266, .external_lex_state = 4}, - [3014] = {.lex_state = 266, .external_lex_state = 4}, + [3008] = {.lex_state = 262, .external_lex_state = 4}, + [3009] = {.lex_state = 262, .external_lex_state = 4}, + [3010] = {.lex_state = 262, .external_lex_state = 4}, + [3011] = {.lex_state = 262, .external_lex_state = 4}, + [3012] = {.lex_state = 262, .external_lex_state = 4}, + [3013] = {.lex_state = 262, .external_lex_state = 4}, + [3014] = {.lex_state = 262, .external_lex_state = 4}, [3015] = {.lex_state = 262, .external_lex_state = 4}, - [3016] = {.lex_state = 266, .external_lex_state = 4}, - [3017] = {.lex_state = 266, .external_lex_state = 4}, - [3018] = {.lex_state = 266, .external_lex_state = 4}, - [3019] = {.lex_state = 266, .external_lex_state = 4}, + [3016] = {.lex_state = 262, .external_lex_state = 4}, + [3017] = {.lex_state = 262, .external_lex_state = 4}, + [3018] = {.lex_state = 262, .external_lex_state = 4}, + [3019] = {.lex_state = 262, .external_lex_state = 4}, [3020] = {.lex_state = 262, .external_lex_state = 5}, - [3021] = {.lex_state = 266, .external_lex_state = 4}, - [3022] = {.lex_state = 266, .external_lex_state = 4}, - [3023] = {.lex_state = 266, .external_lex_state = 4}, - [3024] = {.lex_state = 266, .external_lex_state = 4}, - [3025] = {.lex_state = 266, .external_lex_state = 4}, - [3026] = {.lex_state = 266, .external_lex_state = 4}, - [3027] = {.lex_state = 266, .external_lex_state = 4}, - [3028] = {.lex_state = 266, .external_lex_state = 4}, - [3029] = {.lex_state = 266, .external_lex_state = 4}, - [3030] = {.lex_state = 266, .external_lex_state = 4}, - [3031] = {.lex_state = 266, .external_lex_state = 4}, - [3032] = {.lex_state = 262, .external_lex_state = 4}, - [3033] = {.lex_state = 262, .external_lex_state = 4}, - [3034] = {.lex_state = 262, .external_lex_state = 4}, - [3035] = {.lex_state = 266, .external_lex_state = 4}, - [3036] = {.lex_state = 127, .external_lex_state = 5}, - [3037] = {.lex_state = 262, .external_lex_state = 4}, - [3038] = {.lex_state = 262, .external_lex_state = 4}, - [3039] = {.lex_state = 262, .external_lex_state = 4}, - [3040] = {.lex_state = 262, .external_lex_state = 4}, - [3041] = {.lex_state = 262, .external_lex_state = 4}, - [3042] = {.lex_state = 262, .external_lex_state = 4}, - [3043] = {.lex_state = 262, .external_lex_state = 4}, - [3044] = {.lex_state = 262, .external_lex_state = 4}, - [3045] = {.lex_state = 262, .external_lex_state = 4}, + [3021] = {.lex_state = 262, .external_lex_state = 5}, + [3022] = {.lex_state = 135, .external_lex_state = 5}, + [3023] = {.lex_state = 135, .external_lex_state = 5}, + [3024] = {.lex_state = 135, .external_lex_state = 5}, + [3025] = {.lex_state = 135, .external_lex_state = 5}, + [3026] = {.lex_state = 135, .external_lex_state = 5}, + [3027] = {.lex_state = 135, .external_lex_state = 5}, + [3028] = {.lex_state = 135, .external_lex_state = 5}, + [3029] = {.lex_state = 262, .external_lex_state = 5}, + [3030] = {.lex_state = 262, .external_lex_state = 5}, + [3031] = {.lex_state = 262, .external_lex_state = 5}, + [3032] = {.lex_state = 262, .external_lex_state = 5}, + [3033] = {.lex_state = 262, .external_lex_state = 5}, + [3034] = {.lex_state = 262, .external_lex_state = 5}, + [3035] = {.lex_state = 262, .external_lex_state = 5}, + [3036] = {.lex_state = 262, .external_lex_state = 5}, + [3037] = {.lex_state = 262, .external_lex_state = 5}, + [3038] = {.lex_state = 262, .external_lex_state = 5}, + [3039] = {.lex_state = 135, .external_lex_state = 5}, + [3040] = {.lex_state = 135, .external_lex_state = 5}, + [3041] = {.lex_state = 135, .external_lex_state = 5}, + [3042] = {.lex_state = 135, .external_lex_state = 5}, + [3043] = {.lex_state = 135, .external_lex_state = 5}, + [3044] = {.lex_state = 135, .external_lex_state = 5}, + [3045] = {.lex_state = 262, .external_lex_state = 5}, [3046] = {.lex_state = 262, .external_lex_state = 4}, - [3047] = {.lex_state = 127, .external_lex_state = 5}, + [3047] = {.lex_state = 262, .external_lex_state = 4}, [3048] = {.lex_state = 262, .external_lex_state = 4}, - [3049] = {.lex_state = 102, .external_lex_state = 4}, - [3050] = {.lex_state = 102, .external_lex_state = 4}, - [3051] = {.lex_state = 102, .external_lex_state = 4}, - [3052] = {.lex_state = 102, .external_lex_state = 4}, - [3053] = {.lex_state = 102, .external_lex_state = 4}, - [3054] = {.lex_state = 135, .external_lex_state = 4}, - [3055] = {.lex_state = 135, .external_lex_state = 4}, - [3056] = {.lex_state = 135, .external_lex_state = 4}, - [3057] = {.lex_state = 135, .external_lex_state = 4}, - [3058] = {.lex_state = 135, .external_lex_state = 4}, - [3059] = {.lex_state = 135, .external_lex_state = 4}, - [3060] = {.lex_state = 135, .external_lex_state = 4}, - [3061] = {.lex_state = 135, .external_lex_state = 4}, - [3062] = {.lex_state = 135, .external_lex_state = 4}, - [3063] = {.lex_state = 135, .external_lex_state = 4}, - [3064] = {.lex_state = 135, .external_lex_state = 4}, - [3065] = {.lex_state = 135, .external_lex_state = 4}, - [3066] = {.lex_state = 135, .external_lex_state = 4}, - [3067] = {.lex_state = 135, .external_lex_state = 4}, - [3068] = {.lex_state = 135, .external_lex_state = 4}, - [3069] = {.lex_state = 135, .external_lex_state = 4}, - [3070] = {.lex_state = 102, .external_lex_state = 4}, - [3071] = {.lex_state = 102, .external_lex_state = 4}, - [3072] = {.lex_state = 262, .external_lex_state = 5}, - [3073] = {.lex_state = 127, .external_lex_state = 4}, - [3074] = {.lex_state = 135, .external_lex_state = 4}, - [3075] = {.lex_state = 266, .external_lex_state = 4}, - [3076] = {.lex_state = 266, .external_lex_state = 4}, - [3077] = {.lex_state = 135, .external_lex_state = 4}, - [3078] = {.lex_state = 135, .external_lex_state = 4}, - [3079] = {.lex_state = 266, .external_lex_state = 4}, - [3080] = {.lex_state = 266, .external_lex_state = 4}, - [3081] = {.lex_state = 135, .external_lex_state = 4}, - [3082] = {.lex_state = 135, .external_lex_state = 4}, - [3083] = {.lex_state = 135, .external_lex_state = 4}, - [3084] = {.lex_state = 135, .external_lex_state = 4}, - [3085] = {.lex_state = 135, .external_lex_state = 4}, - [3086] = {.lex_state = 135, .external_lex_state = 4}, - [3087] = {.lex_state = 135, .external_lex_state = 4}, - [3088] = {.lex_state = 127, .external_lex_state = 4}, - [3089] = {.lex_state = 135, .external_lex_state = 4}, - [3090] = {.lex_state = 135, .external_lex_state = 4}, - [3091] = {.lex_state = 135, .external_lex_state = 4}, - [3092] = {.lex_state = 135, .external_lex_state = 4}, - [3093] = {.lex_state = 135, .external_lex_state = 4}, - [3094] = {.lex_state = 135, .external_lex_state = 4}, - [3095] = {.lex_state = 127, .external_lex_state = 4}, - [3096] = {.lex_state = 127, .external_lex_state = 5}, - [3097] = {.lex_state = 102, .external_lex_state = 4}, - [3098] = {.lex_state = 102, .external_lex_state = 4}, - [3099] = {.lex_state = 135, .external_lex_state = 4}, - [3100] = {.lex_state = 135, .external_lex_state = 4}, - [3101] = {.lex_state = 102, .external_lex_state = 4}, - [3102] = {.lex_state = 102, .external_lex_state = 4}, - [3103] = {.lex_state = 135, .external_lex_state = 4}, - [3104] = {.lex_state = 135, .external_lex_state = 4}, - [3105] = {.lex_state = 102, .external_lex_state = 4}, - [3106] = {.lex_state = 127, .external_lex_state = 5}, - [3107] = {.lex_state = 135, .external_lex_state = 4}, - [3108] = {.lex_state = 127, .external_lex_state = 5}, - [3109] = {.lex_state = 138, .external_lex_state = 4}, - [3110] = {.lex_state = 138, .external_lex_state = 4}, - [3111] = {.lex_state = 102, .external_lex_state = 4}, - [3112] = {.lex_state = 102, .external_lex_state = 4}, - [3113] = {.lex_state = 138, .external_lex_state = 4}, - [3114] = {.lex_state = 138, .external_lex_state = 4}, - [3115] = {.lex_state = 266, .external_lex_state = 4}, - [3116] = {.lex_state = 266, .external_lex_state = 4}, - [3117] = {.lex_state = 262, .external_lex_state = 5}, + [3049] = {.lex_state = 262, .external_lex_state = 4}, + [3050] = {.lex_state = 262, .external_lex_state = 4}, + [3051] = {.lex_state = 262, .external_lex_state = 4}, + [3052] = {.lex_state = 262, .external_lex_state = 4}, + [3053] = {.lex_state = 262, .external_lex_state = 4}, + [3054] = {.lex_state = 262, .external_lex_state = 4}, + [3055] = {.lex_state = 262, .external_lex_state = 4}, + [3056] = {.lex_state = 262, .external_lex_state = 4}, + [3057] = {.lex_state = 262, .external_lex_state = 4}, + [3058] = {.lex_state = 129, .external_lex_state = 5}, + [3059] = {.lex_state = 129, .external_lex_state = 5}, + [3060] = {.lex_state = 262, .external_lex_state = 4}, + [3061] = {.lex_state = 129, .external_lex_state = 5}, + [3062] = {.lex_state = 132, .external_lex_state = 4}, + [3063] = {.lex_state = 132, .external_lex_state = 4}, + [3064] = {.lex_state = 132, .external_lex_state = 4}, + [3065] = {.lex_state = 132, .external_lex_state = 4}, + [3066] = {.lex_state = 132, .external_lex_state = 4}, + [3067] = {.lex_state = 262, .external_lex_state = 5}, + [3068] = {.lex_state = 132, .external_lex_state = 4}, + [3069] = {.lex_state = 262, .external_lex_state = 4}, + [3070] = {.lex_state = 262, .external_lex_state = 4}, + [3071] = {.lex_state = 262, .external_lex_state = 4}, + [3072] = {.lex_state = 132, .external_lex_state = 4}, + [3073] = {.lex_state = 262, .external_lex_state = 4}, + [3074] = {.lex_state = 262, .external_lex_state = 4}, + [3075] = {.lex_state = 262, .external_lex_state = 4}, + [3076] = {.lex_state = 262, .external_lex_state = 4}, + [3077] = {.lex_state = 262, .external_lex_state = 4}, + [3078] = {.lex_state = 132, .external_lex_state = 4}, + [3079] = {.lex_state = 132, .external_lex_state = 4}, + [3080] = {.lex_state = 132, .external_lex_state = 4}, + [3081] = {.lex_state = 132, .external_lex_state = 4}, + [3082] = {.lex_state = 262, .external_lex_state = 4}, + [3083] = {.lex_state = 262, .external_lex_state = 4}, + [3084] = {.lex_state = 132, .external_lex_state = 4}, + [3085] = {.lex_state = 132, .external_lex_state = 4}, + [3086] = {.lex_state = 132, .external_lex_state = 4}, + [3087] = {.lex_state = 132, .external_lex_state = 4}, + [3088] = {.lex_state = 132, .external_lex_state = 4}, + [3089] = {.lex_state = 132, .external_lex_state = 4}, + [3090] = {.lex_state = 132, .external_lex_state = 4}, + [3091] = {.lex_state = 132, .external_lex_state = 4}, + [3092] = {.lex_state = 132, .external_lex_state = 4}, + [3093] = {.lex_state = 132, .external_lex_state = 4}, + [3094] = {.lex_state = 262, .external_lex_state = 5}, + [3095] = {.lex_state = 132, .external_lex_state = 4}, + [3096] = {.lex_state = 132, .external_lex_state = 4}, + [3097] = {.lex_state = 262, .external_lex_state = 4}, + [3098] = {.lex_state = 132, .external_lex_state = 4}, + [3099] = {.lex_state = 262, .external_lex_state = 4}, + [3100] = {.lex_state = 132, .external_lex_state = 4}, + [3101] = {.lex_state = 262, .external_lex_state = 4}, + [3102] = {.lex_state = 262, .external_lex_state = 4}, + [3103] = {.lex_state = 262, .external_lex_state = 4}, + [3104] = {.lex_state = 262, .external_lex_state = 4}, + [3105] = {.lex_state = 262, .external_lex_state = 4}, + [3106] = {.lex_state = 262, .external_lex_state = 4}, + [3107] = {.lex_state = 262, .external_lex_state = 4}, + [3108] = {.lex_state = 262, .external_lex_state = 4}, + [3109] = {.lex_state = 262, .external_lex_state = 4}, + [3110] = {.lex_state = 262, .external_lex_state = 4}, + [3111] = {.lex_state = 262, .external_lex_state = 5}, + [3112] = {.lex_state = 129, .external_lex_state = 5}, + [3113] = {.lex_state = 129, .external_lex_state = 5}, + [3114] = {.lex_state = 129, .external_lex_state = 5}, + [3115] = {.lex_state = 129, .external_lex_state = 5}, + [3116] = {.lex_state = 129, .external_lex_state = 5}, + [3117] = {.lex_state = 262, .external_lex_state = 4}, [3118] = {.lex_state = 262, .external_lex_state = 5}, - [3119] = {.lex_state = 266, .external_lex_state = 4}, - [3120] = {.lex_state = 266, .external_lex_state = 4}, + [3119] = {.lex_state = 262, .external_lex_state = 5}, + [3120] = {.lex_state = 262, .external_lex_state = 5}, [3121] = {.lex_state = 262, .external_lex_state = 5}, - [3122] = {.lex_state = 102, .external_lex_state = 4}, - [3123] = {.lex_state = 262, .external_lex_state = 5}, - [3124] = {.lex_state = 262, .external_lex_state = 5}, - [3125] = {.lex_state = 262, .external_lex_state = 5}, + [3122] = {.lex_state = 262, .external_lex_state = 5}, + [3123] = {.lex_state = 129, .external_lex_state = 5}, + [3124] = {.lex_state = 102, .external_lex_state = 5}, + [3125] = {.lex_state = 102, .external_lex_state = 5}, [3126] = {.lex_state = 262, .external_lex_state = 5}, - [3127] = {.lex_state = 262, .external_lex_state = 5}, - [3128] = {.lex_state = 262, .external_lex_state = 5}, + [3127] = {.lex_state = 129, .external_lex_state = 5}, + [3128] = {.lex_state = 129, .external_lex_state = 5}, [3129] = {.lex_state = 262, .external_lex_state = 5}, [3130] = {.lex_state = 262, .external_lex_state = 5}, [3131] = {.lex_state = 262, .external_lex_state = 5}, [3132] = {.lex_state = 262, .external_lex_state = 5}, - [3133] = {.lex_state = 102, .external_lex_state = 4}, - [3134] = {.lex_state = 102, .external_lex_state = 4}, - [3135] = {.lex_state = 127, .external_lex_state = 5}, + [3133] = {.lex_state = 262, .external_lex_state = 5}, + [3134] = {.lex_state = 262, .external_lex_state = 5}, + [3135] = {.lex_state = 262, .external_lex_state = 5}, [3136] = {.lex_state = 262, .external_lex_state = 5}, [3137] = {.lex_state = 262, .external_lex_state = 5}, - [3138] = {.lex_state = 102, .external_lex_state = 4}, - [3139] = {.lex_state = 262, .external_lex_state = 4}, - [3140] = {.lex_state = 141, .external_lex_state = 4}, - [3141] = {.lex_state = 141, .external_lex_state = 4}, - [3142] = {.lex_state = 141, .external_lex_state = 4}, - [3143] = {.lex_state = 141, .external_lex_state = 4}, - [3144] = {.lex_state = 262, .external_lex_state = 4}, - [3145] = {.lex_state = 262, .external_lex_state = 4}, - [3146] = {.lex_state = 262, .external_lex_state = 4}, - [3147] = {.lex_state = 262, .external_lex_state = 4}, - [3148] = {.lex_state = 141, .external_lex_state = 4}, - [3149] = {.lex_state = 141, .external_lex_state = 4}, - [3150] = {.lex_state = 141, .external_lex_state = 4}, + [3138] = {.lex_state = 262, .external_lex_state = 5}, + [3139] = {.lex_state = 262, .external_lex_state = 5}, + [3140] = {.lex_state = 262, .external_lex_state = 5}, + [3141] = {.lex_state = 135, .external_lex_state = 5}, + [3142] = {.lex_state = 135, .external_lex_state = 5}, + [3143] = {.lex_state = 135, .external_lex_state = 5}, + [3144] = {.lex_state = 135, .external_lex_state = 5}, + [3145] = {.lex_state = 135, .external_lex_state = 5}, + [3146] = {.lex_state = 135, .external_lex_state = 5}, + [3147] = {.lex_state = 135, .external_lex_state = 5}, + [3148] = {.lex_state = 262, .external_lex_state = 4}, + [3149] = {.lex_state = 262, .external_lex_state = 4}, + [3150] = {.lex_state = 262, .external_lex_state = 4}, [3151] = {.lex_state = 262, .external_lex_state = 4}, - [3152] = {.lex_state = 262, .external_lex_state = 4}, - [3153] = {.lex_state = 102, .external_lex_state = 4}, - [3154] = {.lex_state = 262, .external_lex_state = 4}, - [3155] = {.lex_state = 127, .external_lex_state = 4}, + [3152] = {.lex_state = 129, .external_lex_state = 5}, + [3153] = {.lex_state = 135, .external_lex_state = 5}, + [3154] = {.lex_state = 135, .external_lex_state = 5}, + [3155] = {.lex_state = 262, .external_lex_state = 5}, [3156] = {.lex_state = 262, .external_lex_state = 4}, [3157] = {.lex_state = 262, .external_lex_state = 4}, [3158] = {.lex_state = 262, .external_lex_state = 4}, [3159] = {.lex_state = 262, .external_lex_state = 4}, [3160] = {.lex_state = 262, .external_lex_state = 4}, - [3161] = {.lex_state = 262, .external_lex_state = 4}, - [3162] = {.lex_state = 262, .external_lex_state = 4}, + [3161] = {.lex_state = 135, .external_lex_state = 5}, + [3162] = {.lex_state = 102, .external_lex_state = 5}, [3163] = {.lex_state = 262, .external_lex_state = 4}, - [3164] = {.lex_state = 127, .external_lex_state = 4}, - [3165] = {.lex_state = 262, .external_lex_state = 4}, - [3166] = {.lex_state = 262, .external_lex_state = 4}, + [3164] = {.lex_state = 135, .external_lex_state = 5}, + [3165] = {.lex_state = 135, .external_lex_state = 5}, + [3166] = {.lex_state = 135, .external_lex_state = 5}, [3167] = {.lex_state = 262, .external_lex_state = 4}, - [3168] = {.lex_state = 262, .external_lex_state = 4}, - [3169] = {.lex_state = 262, .external_lex_state = 4}, - [3170] = {.lex_state = 262, .external_lex_state = 4}, - [3171] = {.lex_state = 262, .external_lex_state = 4}, - [3172] = {.lex_state = 262, .external_lex_state = 4}, + [3168] = {.lex_state = 135, .external_lex_state = 5}, + [3169] = {.lex_state = 135, .external_lex_state = 5}, + [3170] = {.lex_state = 132, .external_lex_state = 4}, + [3171] = {.lex_state = 132, .external_lex_state = 4}, + [3172] = {.lex_state = 135, .external_lex_state = 5}, [3173] = {.lex_state = 262, .external_lex_state = 4}, - [3174] = {.lex_state = 127, .external_lex_state = 4}, + [3174] = {.lex_state = 262, .external_lex_state = 4}, [3175] = {.lex_state = 262, .external_lex_state = 4}, - [3176] = {.lex_state = 262, .external_lex_state = 4}, + [3176] = {.lex_state = 135, .external_lex_state = 5}, [3177] = {.lex_state = 262, .external_lex_state = 4}, [3178] = {.lex_state = 262, .external_lex_state = 4}, - [3179] = {.lex_state = 127, .external_lex_state = 4}, - [3180] = {.lex_state = 102, .external_lex_state = 4}, - [3181] = {.lex_state = 127, .external_lex_state = 4}, + [3179] = {.lex_state = 262, .external_lex_state = 4}, + [3180] = {.lex_state = 262, .external_lex_state = 4}, + [3181] = {.lex_state = 262, .external_lex_state = 4}, [3182] = {.lex_state = 262, .external_lex_state = 4}, - [3183] = {.lex_state = 262, .external_lex_state = 4}, - [3184] = {.lex_state = 262, .external_lex_state = 4}, - [3185] = {.lex_state = 262, .external_lex_state = 4}, + [3183] = {.lex_state = 135, .external_lex_state = 5}, + [3184] = {.lex_state = 135, .external_lex_state = 5}, + [3185] = {.lex_state = 135, .external_lex_state = 5}, [3186] = {.lex_state = 262, .external_lex_state = 4}, [3187] = {.lex_state = 262, .external_lex_state = 4}, [3188] = {.lex_state = 262, .external_lex_state = 4}, - [3189] = {.lex_state = 262, .external_lex_state = 4}, - [3190] = {.lex_state = 262, .external_lex_state = 4}, + [3189] = {.lex_state = 135, .external_lex_state = 5}, + [3190] = {.lex_state = 135, .external_lex_state = 5}, [3191] = {.lex_state = 262, .external_lex_state = 4}, - [3192] = {.lex_state = 262, .external_lex_state = 4}, - [3193] = {.lex_state = 262, .external_lex_state = 4}, + [3192] = {.lex_state = 132, .external_lex_state = 4}, + [3193] = {.lex_state = 132, .external_lex_state = 4}, [3194] = {.lex_state = 262, .external_lex_state = 4}, - [3195] = {.lex_state = 262, .external_lex_state = 4}, - [3196] = {.lex_state = 262, .external_lex_state = 4}, - [3197] = {.lex_state = 262, .external_lex_state = 4}, - [3198] = {.lex_state = 262, .external_lex_state = 4}, + [3195] = {.lex_state = 135, .external_lex_state = 5}, + [3196] = {.lex_state = 132, .external_lex_state = 4}, + [3197] = {.lex_state = 138, .external_lex_state = 4}, + [3198] = {.lex_state = 138, .external_lex_state = 4}, [3199] = {.lex_state = 262, .external_lex_state = 4}, - [3200] = {.lex_state = 262, .external_lex_state = 4}, - [3201] = {.lex_state = 262, .external_lex_state = 4}, + [3200] = {.lex_state = 129, .external_lex_state = 5}, + [3201] = {.lex_state = 129, .external_lex_state = 5}, [3202] = {.lex_state = 262, .external_lex_state = 4}, - [3203] = {.lex_state = 262, .external_lex_state = 4}, - [3204] = {.lex_state = 262, .external_lex_state = 4}, - [3205] = {.lex_state = 262, .external_lex_state = 4}, - [3206] = {.lex_state = 262, .external_lex_state = 4}, - [3207] = {.lex_state = 262, .external_lex_state = 4}, - [3208] = {.lex_state = 262, .external_lex_state = 4}, - [3209] = {.lex_state = 262, .external_lex_state = 4}, - [3210] = {.lex_state = 262, .external_lex_state = 4}, - [3211] = {.lex_state = 262, .external_lex_state = 4}, - [3212] = {.lex_state = 262, .external_lex_state = 4}, - [3213] = {.lex_state = 102, .external_lex_state = 4}, - [3214] = {.lex_state = 262, .external_lex_state = 4}, - [3215] = {.lex_state = 262, .external_lex_state = 4}, - [3216] = {.lex_state = 262, .external_lex_state = 4}, - [3217] = {.lex_state = 262, .external_lex_state = 4}, - [3218] = {.lex_state = 262, .external_lex_state = 4}, - [3219] = {.lex_state = 127, .external_lex_state = 4}, - [3220] = {.lex_state = 262, .external_lex_state = 4}, - [3221] = {.lex_state = 262, .external_lex_state = 4}, - [3222] = {.lex_state = 262, .external_lex_state = 4}, - [3223] = {.lex_state = 127, .external_lex_state = 4}, - [3224] = {.lex_state = 262, .external_lex_state = 4}, - [3225] = {.lex_state = 102, .external_lex_state = 4}, - [3226] = {.lex_state = 262, .external_lex_state = 4}, - [3227] = {.lex_state = 102, .external_lex_state = 4}, - [3228] = {.lex_state = 262, .external_lex_state = 4}, - [3229] = {.lex_state = 102, .external_lex_state = 4}, + [3203] = {.lex_state = 132, .external_lex_state = 4}, + [3204] = {.lex_state = 132, .external_lex_state = 4}, + [3205] = {.lex_state = 132, .external_lex_state = 4}, + [3206] = {.lex_state = 129, .external_lex_state = 5}, + [3207] = {.lex_state = 129, .external_lex_state = 5}, + [3208] = {.lex_state = 129, .external_lex_state = 5}, + [3209] = {.lex_state = 129, .external_lex_state = 5}, + [3210] = {.lex_state = 129, .external_lex_state = 5}, + [3211] = {.lex_state = 129, .external_lex_state = 5}, + [3212] = {.lex_state = 129, .external_lex_state = 5}, + [3213] = {.lex_state = 129, .external_lex_state = 5}, + [3214] = {.lex_state = 129, .external_lex_state = 5}, + [3215] = {.lex_state = 129, .external_lex_state = 5}, + [3216] = {.lex_state = 129, .external_lex_state = 5}, + [3217] = {.lex_state = 129, .external_lex_state = 5}, + [3218] = {.lex_state = 129, .external_lex_state = 5}, + [3219] = {.lex_state = 129, .external_lex_state = 5}, + [3220] = {.lex_state = 129, .external_lex_state = 5}, + [3221] = {.lex_state = 129, .external_lex_state = 5}, + [3222] = {.lex_state = 129, .external_lex_state = 5}, + [3223] = {.lex_state = 129, .external_lex_state = 5}, + [3224] = {.lex_state = 129, .external_lex_state = 5}, + [3225] = {.lex_state = 129, .external_lex_state = 5}, + [3226] = {.lex_state = 129, .external_lex_state = 5}, + [3227] = {.lex_state = 129, .external_lex_state = 5}, + [3228] = {.lex_state = 129, .external_lex_state = 5}, + [3229] = {.lex_state = 262, .external_lex_state = 4}, [3230] = {.lex_state = 262, .external_lex_state = 4}, - [3231] = {.lex_state = 102, .external_lex_state = 4}, - [3232] = {.lex_state = 102, .external_lex_state = 4}, - [3233] = {.lex_state = 102, .external_lex_state = 4}, - [3234] = {.lex_state = 102, .external_lex_state = 4}, - [3235] = {.lex_state = 102, .external_lex_state = 4}, - [3236] = {.lex_state = 102, .external_lex_state = 4}, - [3237] = {.lex_state = 262, .external_lex_state = 4}, - [3238] = {.lex_state = 102, .external_lex_state = 4}, - [3239] = {.lex_state = 262, .external_lex_state = 4}, - [3240] = {.lex_state = 262, .external_lex_state = 4}, - [3241] = {.lex_state = 127, .external_lex_state = 4}, - [3242] = {.lex_state = 262, .external_lex_state = 4}, - [3243] = {.lex_state = 262, .external_lex_state = 4}, - [3244] = {.lex_state = 262, .external_lex_state = 4}, - [3245] = {.lex_state = 262, .external_lex_state = 4}, - [3246] = {.lex_state = 262, .external_lex_state = 4}, - [3247] = {.lex_state = 262, .external_lex_state = 4}, - [3248] = {.lex_state = 262, .external_lex_state = 4}, - [3249] = {.lex_state = 262, .external_lex_state = 4}, - [3250] = {.lex_state = 127, .external_lex_state = 4}, - [3251] = {.lex_state = 127, .external_lex_state = 4}, - [3252] = {.lex_state = 262, .external_lex_state = 4}, - [3253] = {.lex_state = 141, .external_lex_state = 4}, - [3254] = {.lex_state = 141, .external_lex_state = 4}, + [3231] = {.lex_state = 266, .external_lex_state = 4}, + [3232] = {.lex_state = 266, .external_lex_state = 4}, + [3233] = {.lex_state = 266, .external_lex_state = 4}, + [3234] = {.lex_state = 266, .external_lex_state = 4}, + [3235] = {.lex_state = 266, .external_lex_state = 4}, + [3236] = {.lex_state = 266, .external_lex_state = 4}, + [3237] = {.lex_state = 266, .external_lex_state = 4}, + [3238] = {.lex_state = 266, .external_lex_state = 4}, + [3239] = {.lex_state = 266, .external_lex_state = 4}, + [3240] = {.lex_state = 129, .external_lex_state = 5}, + [3241] = {.lex_state = 129, .external_lex_state = 5}, + [3242] = {.lex_state = 129, .external_lex_state = 5}, + [3243] = {.lex_state = 129, .external_lex_state = 5}, + [3244] = {.lex_state = 129, .external_lex_state = 5}, + [3245] = {.lex_state = 266, .external_lex_state = 4}, + [3246] = {.lex_state = 266, .external_lex_state = 4}, + [3247] = {.lex_state = 129, .external_lex_state = 5}, + [3248] = {.lex_state = 266, .external_lex_state = 4}, + [3249] = {.lex_state = 266, .external_lex_state = 4}, + [3250] = {.lex_state = 266, .external_lex_state = 4}, + [3251] = {.lex_state = 129, .external_lex_state = 5}, + [3252] = {.lex_state = 266, .external_lex_state = 4}, + [3253] = {.lex_state = 266, .external_lex_state = 4}, + [3254] = {.lex_state = 102, .external_lex_state = 4}, [3255] = {.lex_state = 102, .external_lex_state = 4}, - [3256] = {.lex_state = 141, .external_lex_state = 4}, - [3257] = {.lex_state = 262, .external_lex_state = 4}, - [3258] = {.lex_state = 262, .external_lex_state = 4}, - [3259] = {.lex_state = 262, .external_lex_state = 4}, - [3260] = {.lex_state = 262, .external_lex_state = 4}, - [3261] = {.lex_state = 262, .external_lex_state = 4}, - [3262] = {.lex_state = 102, .external_lex_state = 4}, - [3263] = {.lex_state = 102, .external_lex_state = 4}, - [3264] = {.lex_state = 262, .external_lex_state = 4}, - [3265] = {.lex_state = 262, .external_lex_state = 4}, - [3266] = {.lex_state = 141, .external_lex_state = 4}, - [3267] = {.lex_state = 102, .external_lex_state = 4}, - [3268] = {.lex_state = 102, .external_lex_state = 4}, - [3269] = {.lex_state = 127, .external_lex_state = 4}, - [3270] = {.lex_state = 141, .external_lex_state = 4}, + [3256] = {.lex_state = 132, .external_lex_state = 4}, + [3257] = {.lex_state = 129, .external_lex_state = 5}, + [3258] = {.lex_state = 129, .external_lex_state = 5}, + [3259] = {.lex_state = 129, .external_lex_state = 5}, + [3260] = {.lex_state = 129, .external_lex_state = 5}, + [3261] = {.lex_state = 129, .external_lex_state = 5}, + [3262] = {.lex_state = 129, .external_lex_state = 5}, + [3263] = {.lex_state = 129, .external_lex_state = 5}, + [3264] = {.lex_state = 129, .external_lex_state = 5}, + [3265] = {.lex_state = 266, .external_lex_state = 4}, + [3266] = {.lex_state = 266, .external_lex_state = 4}, + [3267] = {.lex_state = 129, .external_lex_state = 5}, + [3268] = {.lex_state = 129, .external_lex_state = 5}, + [3269] = {.lex_state = 262, .external_lex_state = 4}, + [3270] = {.lex_state = 262, .external_lex_state = 4}, [3271] = {.lex_state = 262, .external_lex_state = 4}, - [3272] = {.lex_state = 102, .external_lex_state = 4}, + [3272] = {.lex_state = 262, .external_lex_state = 4}, [3273] = {.lex_state = 262, .external_lex_state = 4}, [3274] = {.lex_state = 262, .external_lex_state = 4}, - [3275] = {.lex_state = 262, .external_lex_state = 4}, + [3275] = {.lex_state = 129, .external_lex_state = 5}, [3276] = {.lex_state = 262, .external_lex_state = 4}, - [3277] = {.lex_state = 262, .external_lex_state = 4}, - [3278] = {.lex_state = 262, .external_lex_state = 4}, + [3277] = {.lex_state = 266, .external_lex_state = 4}, + [3278] = {.lex_state = 102, .external_lex_state = 4}, [3279] = {.lex_state = 262, .external_lex_state = 4}, [3280] = {.lex_state = 262, .external_lex_state = 4}, - [3281] = {.lex_state = 102, .external_lex_state = 4}, - [3282] = {.lex_state = 141, .external_lex_state = 4}, - [3283] = {.lex_state = 102, .external_lex_state = 4}, + [3281] = {.lex_state = 262, .external_lex_state = 4}, + [3282] = {.lex_state = 262, .external_lex_state = 4}, + [3283] = {.lex_state = 262, .external_lex_state = 4}, [3284] = {.lex_state = 262, .external_lex_state = 4}, - [3285] = {.lex_state = 102, .external_lex_state = 4}, - [3286] = {.lex_state = 102, .external_lex_state = 4}, + [3285] = {.lex_state = 262, .external_lex_state = 4}, + [3286] = {.lex_state = 262, .external_lex_state = 4}, [3287] = {.lex_state = 262, .external_lex_state = 4}, - [3288] = {.lex_state = 127, .external_lex_state = 4}, - [3289] = {.lex_state = 141, .external_lex_state = 4}, - [3290] = {.lex_state = 127, .external_lex_state = 4}, + [3288] = {.lex_state = 102, .external_lex_state = 4}, + [3289] = {.lex_state = 266, .external_lex_state = 4}, + [3290] = {.lex_state = 266, .external_lex_state = 4}, [3291] = {.lex_state = 262, .external_lex_state = 4}, - [3292] = {.lex_state = 262, .external_lex_state = 4}, - [3293] = {.lex_state = 262, .external_lex_state = 4}, - [3294] = {.lex_state = 141, .external_lex_state = 4}, - [3295] = {.lex_state = 262, .external_lex_state = 4}, - [3296] = {.lex_state = 127, .external_lex_state = 4}, - [3297] = {.lex_state = 141, .external_lex_state = 4}, - [3298] = {.lex_state = 141, .external_lex_state = 4}, - [3299] = {.lex_state = 127, .external_lex_state = 4}, - [3300] = {.lex_state = 141, .external_lex_state = 4}, + [3292] = {.lex_state = 129, .external_lex_state = 5}, + [3293] = {.lex_state = 129, .external_lex_state = 5}, + [3294] = {.lex_state = 266, .external_lex_state = 4}, + [3295] = {.lex_state = 266, .external_lex_state = 4}, + [3296] = {.lex_state = 138, .external_lex_state = 4}, + [3297] = {.lex_state = 132, .external_lex_state = 4}, + [3298] = {.lex_state = 129, .external_lex_state = 5}, + [3299] = {.lex_state = 266, .external_lex_state = 4}, + [3300] = {.lex_state = 262, .external_lex_state = 4}, [3301] = {.lex_state = 262, .external_lex_state = 4}, - [3302] = {.lex_state = 141, .external_lex_state = 4}, - [3303] = {.lex_state = 262, .external_lex_state = 4}, - [3304] = {.lex_state = 262, .external_lex_state = 4}, - [3305] = {.lex_state = 141, .external_lex_state = 4}, - [3306] = {.lex_state = 262, .external_lex_state = 4}, - [3307] = {.lex_state = 102, .external_lex_state = 4}, - [3308] = {.lex_state = 262, .external_lex_state = 4}, - [3309] = {.lex_state = 262, .external_lex_state = 4}, - [3310] = {.lex_state = 102, .external_lex_state = 4}, - [3311] = {.lex_state = 262, .external_lex_state = 4}, - [3312] = {.lex_state = 262, .external_lex_state = 4}, - [3313] = {.lex_state = 102, .external_lex_state = 4}, - [3314] = {.lex_state = 262, .external_lex_state = 4}, - [3315] = {.lex_state = 102, .external_lex_state = 4}, - [3316] = {.lex_state = 102, .external_lex_state = 4}, - [3317] = {.lex_state = 102, .external_lex_state = 4}, - [3318] = {.lex_state = 102, .external_lex_state = 4}, - [3319] = {.lex_state = 262, .external_lex_state = 4}, - [3320] = {.lex_state = 262, .external_lex_state = 4}, - [3321] = {.lex_state = 262, .external_lex_state = 4}, - [3322] = {.lex_state = 262, .external_lex_state = 4}, - [3323] = {.lex_state = 102, .external_lex_state = 4}, - [3324] = {.lex_state = 262, .external_lex_state = 4}, - [3325] = {.lex_state = 102, .external_lex_state = 4}, - [3326] = {.lex_state = 102, .external_lex_state = 4}, - [3327] = {.lex_state = 102, .external_lex_state = 4}, - [3328] = {.lex_state = 262, .external_lex_state = 4}, - [3329] = {.lex_state = 141, .external_lex_state = 4}, - [3330] = {.lex_state = 102, .external_lex_state = 4}, - [3331] = {.lex_state = 102, .external_lex_state = 4}, - [3332] = {.lex_state = 102, .external_lex_state = 4}, - [3333] = {.lex_state = 102, .external_lex_state = 4}, - [3334] = {.lex_state = 102, .external_lex_state = 4}, - [3335] = {.lex_state = 102, .external_lex_state = 4}, - [3336] = {.lex_state = 102, .external_lex_state = 4}, - [3337] = {.lex_state = 102, .external_lex_state = 4}, - [3338] = {.lex_state = 102, .external_lex_state = 4}, - [3339] = {.lex_state = 102, .external_lex_state = 4}, - [3340] = {.lex_state = 102, .external_lex_state = 4}, - [3341] = {.lex_state = 102, .external_lex_state = 4}, - [3342] = {.lex_state = 102, .external_lex_state = 4}, - [3343] = {.lex_state = 102, .external_lex_state = 4}, - [3344] = {.lex_state = 102, .external_lex_state = 4}, - [3345] = {.lex_state = 102, .external_lex_state = 4}, - [3346] = {.lex_state = 102, .external_lex_state = 4}, - [3347] = {.lex_state = 102, .external_lex_state = 4}, - [3348] = {.lex_state = 102, .external_lex_state = 4}, - [3349] = {.lex_state = 102, .external_lex_state = 4}, - [3350] = {.lex_state = 102, .external_lex_state = 4}, - [3351] = {.lex_state = 102, .external_lex_state = 4}, - [3352] = {.lex_state = 102, .external_lex_state = 4}, - [3353] = {.lex_state = 102, .external_lex_state = 4}, + [3302] = {.lex_state = 262, .external_lex_state = 4}, + [3303] = {.lex_state = 129, .external_lex_state = 5}, + [3304] = {.lex_state = 129, .external_lex_state = 5}, + [3305] = {.lex_state = 129, .external_lex_state = 5}, + [3306] = {.lex_state = 102, .external_lex_state = 4}, + [3307] = {.lex_state = 129, .external_lex_state = 5}, + [3308] = {.lex_state = 129, .external_lex_state = 5}, + [3309] = {.lex_state = 129, .external_lex_state = 5}, + [3310] = {.lex_state = 129, .external_lex_state = 5}, + [3311] = {.lex_state = 129, .external_lex_state = 5}, + [3312] = {.lex_state = 129, .external_lex_state = 5}, + [3313] = {.lex_state = 129, .external_lex_state = 5}, + [3314] = {.lex_state = 129, .external_lex_state = 5}, + [3315] = {.lex_state = 129, .external_lex_state = 5}, + [3316] = {.lex_state = 129, .external_lex_state = 5}, + [3317] = {.lex_state = 129, .external_lex_state = 5}, + [3318] = {.lex_state = 129, .external_lex_state = 5}, + [3319] = {.lex_state = 129, .external_lex_state = 5}, + [3320] = {.lex_state = 132, .external_lex_state = 4}, + [3321] = {.lex_state = 129, .external_lex_state = 5}, + [3322] = {.lex_state = 129, .external_lex_state = 5}, + [3323] = {.lex_state = 129, .external_lex_state = 5}, + [3324] = {.lex_state = 129, .external_lex_state = 5}, + [3325] = {.lex_state = 129, .external_lex_state = 5}, + [3326] = {.lex_state = 129, .external_lex_state = 5}, + [3327] = {.lex_state = 129, .external_lex_state = 5}, + [3328] = {.lex_state = 129, .external_lex_state = 5}, + [3329] = {.lex_state = 129, .external_lex_state = 5}, + [3330] = {.lex_state = 129, .external_lex_state = 5}, + [3331] = {.lex_state = 129, .external_lex_state = 5}, + [3332] = {.lex_state = 129, .external_lex_state = 5}, + [3333] = {.lex_state = 262, .external_lex_state = 4}, + [3334] = {.lex_state = 129, .external_lex_state = 5}, + [3335] = {.lex_state = 129, .external_lex_state = 5}, + [3336] = {.lex_state = 129, .external_lex_state = 5}, + [3337] = {.lex_state = 129, .external_lex_state = 5}, + [3338] = {.lex_state = 132, .external_lex_state = 4}, + [3339] = {.lex_state = 132, .external_lex_state = 4}, + [3340] = {.lex_state = 129, .external_lex_state = 5}, + [3341] = {.lex_state = 129, .external_lex_state = 5}, + [3342] = {.lex_state = 132, .external_lex_state = 4}, + [3343] = {.lex_state = 129, .external_lex_state = 5}, + [3344] = {.lex_state = 129, .external_lex_state = 5}, + [3345] = {.lex_state = 129, .external_lex_state = 5}, + [3346] = {.lex_state = 129, .external_lex_state = 5}, + [3347] = {.lex_state = 129, .external_lex_state = 5}, + [3348] = {.lex_state = 129, .external_lex_state = 5}, + [3349] = {.lex_state = 129, .external_lex_state = 5}, + [3350] = {.lex_state = 129, .external_lex_state = 5}, + [3351] = {.lex_state = 129, .external_lex_state = 5}, + [3352] = {.lex_state = 129, .external_lex_state = 5}, + [3353] = {.lex_state = 129, .external_lex_state = 5}, [3354] = {.lex_state = 102, .external_lex_state = 4}, - [3355] = {.lex_state = 262, .external_lex_state = 4}, - [3356] = {.lex_state = 141, .external_lex_state = 4}, - [3357] = {.lex_state = 141, .external_lex_state = 4}, - [3358] = {.lex_state = 141, .external_lex_state = 4}, - [3359] = {.lex_state = 262, .external_lex_state = 4}, - [3360] = {.lex_state = 262, .external_lex_state = 4}, - [3361] = {.lex_state = 262, .external_lex_state = 4}, - [3362] = {.lex_state = 127, .external_lex_state = 4}, - [3363] = {.lex_state = 262, .external_lex_state = 4}, - [3364] = {.lex_state = 262, .external_lex_state = 4}, - [3365] = {.lex_state = 127, .external_lex_state = 4}, - [3366] = {.lex_state = 127, .external_lex_state = 4}, - [3367] = {.lex_state = 127, .external_lex_state = 4}, - [3368] = {.lex_state = 262, .external_lex_state = 4}, - [3369] = {.lex_state = 262, .external_lex_state = 4}, - [3370] = {.lex_state = 141, .external_lex_state = 4}, - [3371] = {.lex_state = 141, .external_lex_state = 4}, - [3372] = {.lex_state = 102, .external_lex_state = 4}, - [3373] = {.lex_state = 102, .external_lex_state = 4}, - [3374] = {.lex_state = 102, .external_lex_state = 4}, - [3375] = {.lex_state = 127, .external_lex_state = 4}, + [3355] = {.lex_state = 129, .external_lex_state = 5}, + [3356] = {.lex_state = 102, .external_lex_state = 4}, + [3357] = {.lex_state = 129, .external_lex_state = 5}, + [3358] = {.lex_state = 129, .external_lex_state = 5}, + [3359] = {.lex_state = 129, .external_lex_state = 5}, + [3360] = {.lex_state = 129, .external_lex_state = 5}, + [3361] = {.lex_state = 129, .external_lex_state = 5}, + [3362] = {.lex_state = 266, .external_lex_state = 4}, + [3363] = {.lex_state = 129, .external_lex_state = 5}, + [3364] = {.lex_state = 132, .external_lex_state = 4}, + [3365] = {.lex_state = 132, .external_lex_state = 4}, + [3366] = {.lex_state = 132, .external_lex_state = 4}, + [3367] = {.lex_state = 132, .external_lex_state = 4}, + [3368] = {.lex_state = 132, .external_lex_state = 4}, + [3369] = {.lex_state = 132, .external_lex_state = 4}, + [3370] = {.lex_state = 102, .external_lex_state = 4}, + [3371] = {.lex_state = 266, .external_lex_state = 4}, + [3372] = {.lex_state = 129, .external_lex_state = 4}, + [3373] = {.lex_state = 266, .external_lex_state = 4}, + [3374] = {.lex_state = 129, .external_lex_state = 4}, + [3375] = {.lex_state = 129, .external_lex_state = 4}, [3376] = {.lex_state = 102, .external_lex_state = 4}, - [3377] = {.lex_state = 262, .external_lex_state = 4}, - [3378] = {.lex_state = 102, .external_lex_state = 4}, - [3379] = {.lex_state = 102, .external_lex_state = 4}, - [3380] = {.lex_state = 102, .external_lex_state = 4}, - [3381] = {.lex_state = 102, .external_lex_state = 4}, - [3382] = {.lex_state = 102, .external_lex_state = 4}, - [3383] = {.lex_state = 102, .external_lex_state = 4}, - [3384] = {.lex_state = 102, .external_lex_state = 4}, + [3377] = {.lex_state = 102, .external_lex_state = 4}, + [3378] = {.lex_state = 266, .external_lex_state = 4}, + [3379] = {.lex_state = 129, .external_lex_state = 5}, + [3380] = {.lex_state = 129, .external_lex_state = 5}, + [3381] = {.lex_state = 266, .external_lex_state = 4}, + [3382] = {.lex_state = 266, .external_lex_state = 4}, + [3383] = {.lex_state = 262, .external_lex_state = 4}, + [3384] = {.lex_state = 266, .external_lex_state = 4}, [3385] = {.lex_state = 102, .external_lex_state = 4}, [3386] = {.lex_state = 102, .external_lex_state = 4}, [3387] = {.lex_state = 102, .external_lex_state = 4}, @@ -21250,1623 +21280,1623 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3395] = {.lex_state = 102, .external_lex_state = 4}, [3396] = {.lex_state = 102, .external_lex_state = 4}, [3397] = {.lex_state = 102, .external_lex_state = 4}, - [3398] = {.lex_state = 141, .external_lex_state = 4}, - [3399] = {.lex_state = 127, .external_lex_state = 4}, - [3400] = {.lex_state = 127, .external_lex_state = 4}, - [3401] = {.lex_state = 141, .external_lex_state = 4}, - [3402] = {.lex_state = 127, .external_lex_state = 4}, - [3403] = {.lex_state = 141, .external_lex_state = 4}, - [3404] = {.lex_state = 141, .external_lex_state = 4}, - [3405] = {.lex_state = 141, .external_lex_state = 4}, - [3406] = {.lex_state = 141, .external_lex_state = 4}, - [3407] = {.lex_state = 141, .external_lex_state = 4}, - [3408] = {.lex_state = 141, .external_lex_state = 4}, - [3409] = {.lex_state = 141, .external_lex_state = 4}, - [3410] = {.lex_state = 141, .external_lex_state = 4}, - [3411] = {.lex_state = 141, .external_lex_state = 4}, - [3412] = {.lex_state = 141, .external_lex_state = 4}, - [3413] = {.lex_state = 141, .external_lex_state = 4}, - [3414] = {.lex_state = 141, .external_lex_state = 4}, - [3415] = {.lex_state = 141, .external_lex_state = 4}, - [3416] = {.lex_state = 127, .external_lex_state = 4}, - [3417] = {.lex_state = 127, .external_lex_state = 4}, - [3418] = {.lex_state = 127, .external_lex_state = 4}, - [3419] = {.lex_state = 262, .external_lex_state = 4}, - [3420] = {.lex_state = 262, .external_lex_state = 4}, - [3421] = {.lex_state = 127, .external_lex_state = 4}, - [3422] = {.lex_state = 127, .external_lex_state = 4}, - [3423] = {.lex_state = 127, .external_lex_state = 4}, - [3424] = {.lex_state = 127, .external_lex_state = 4}, - [3425] = {.lex_state = 127, .external_lex_state = 4}, - [3426] = {.lex_state = 262, .external_lex_state = 4}, - [3427] = {.lex_state = 127, .external_lex_state = 4}, - [3428] = {.lex_state = 127, .external_lex_state = 4}, - [3429] = {.lex_state = 262, .external_lex_state = 4}, - [3430] = {.lex_state = 262, .external_lex_state = 4}, - [3431] = {.lex_state = 127, .external_lex_state = 4}, - [3432] = {.lex_state = 127, .external_lex_state = 4}, - [3433] = {.lex_state = 127, .external_lex_state = 4}, - [3434] = {.lex_state = 127, .external_lex_state = 4}, - [3435] = {.lex_state = 262, .external_lex_state = 4}, - [3436] = {.lex_state = 262, .external_lex_state = 4}, - [3437] = {.lex_state = 127, .external_lex_state = 4}, - [3438] = {.lex_state = 262, .external_lex_state = 4}, - [3439] = {.lex_state = 102, .external_lex_state = 4}, - [3440] = {.lex_state = 127, .external_lex_state = 4}, - [3441] = {.lex_state = 262, .external_lex_state = 4}, - [3442] = {.lex_state = 127, .external_lex_state = 4}, - [3443] = {.lex_state = 127, .external_lex_state = 4}, - [3444] = {.lex_state = 127, .external_lex_state = 4}, - [3445] = {.lex_state = 127, .external_lex_state = 4}, - [3446] = {.lex_state = 127, .external_lex_state = 4}, - [3447] = {.lex_state = 262, .external_lex_state = 4}, - [3448] = {.lex_state = 127, .external_lex_state = 4}, - [3449] = {.lex_state = 262, .external_lex_state = 4}, - [3450] = {.lex_state = 127, .external_lex_state = 4}, - [3451] = {.lex_state = 127, .external_lex_state = 4}, - [3452] = {.lex_state = 127, .external_lex_state = 4}, - [3453] = {.lex_state = 262, .external_lex_state = 4}, - [3454] = {.lex_state = 127, .external_lex_state = 4}, - [3455] = {.lex_state = 262, .external_lex_state = 4}, - [3456] = {.lex_state = 262, .external_lex_state = 4}, - [3457] = {.lex_state = 262, .external_lex_state = 4}, - [3458] = {.lex_state = 262, .external_lex_state = 4}, - [3459] = {.lex_state = 262, .external_lex_state = 4}, - [3460] = {.lex_state = 127, .external_lex_state = 4}, - [3461] = {.lex_state = 127, .external_lex_state = 4}, - [3462] = {.lex_state = 127, .external_lex_state = 4}, - [3463] = {.lex_state = 262, .external_lex_state = 4}, - [3464] = {.lex_state = 127, .external_lex_state = 4}, - [3465] = {.lex_state = 127, .external_lex_state = 4}, - [3466] = {.lex_state = 127, .external_lex_state = 4}, - [3467] = {.lex_state = 262, .external_lex_state = 4}, - [3468] = {.lex_state = 127, .external_lex_state = 4}, - [3469] = {.lex_state = 262, .external_lex_state = 4}, - [3470] = {.lex_state = 127, .external_lex_state = 4}, - [3471] = {.lex_state = 127, .external_lex_state = 4}, - [3472] = {.lex_state = 127, .external_lex_state = 4}, - [3473] = {.lex_state = 127, .external_lex_state = 4}, - [3474] = {.lex_state = 127, .external_lex_state = 4}, - [3475] = {.lex_state = 127, .external_lex_state = 4}, - [3476] = {.lex_state = 127, .external_lex_state = 4}, - [3477] = {.lex_state = 127, .external_lex_state = 4}, - [3478] = {.lex_state = 127, .external_lex_state = 4}, - [3479] = {.lex_state = 127, .external_lex_state = 4}, - [3480] = {.lex_state = 127, .external_lex_state = 4}, - [3481] = {.lex_state = 127, .external_lex_state = 4}, - [3482] = {.lex_state = 127, .external_lex_state = 4}, - [3483] = {.lex_state = 127, .external_lex_state = 4}, - [3484] = {.lex_state = 127, .external_lex_state = 4}, - [3485] = {.lex_state = 262, .external_lex_state = 4}, - [3486] = {.lex_state = 127, .external_lex_state = 4}, - [3487] = {.lex_state = 102, .external_lex_state = 4}, - [3488] = {.lex_state = 127, .external_lex_state = 4}, - [3489] = {.lex_state = 127, .external_lex_state = 4}, - [3490] = {.lex_state = 127, .external_lex_state = 4}, - [3491] = {.lex_state = 127, .external_lex_state = 4}, - [3492] = {.lex_state = 127, .external_lex_state = 4}, - [3493] = {.lex_state = 127, .external_lex_state = 4}, + [3398] = {.lex_state = 102, .external_lex_state = 4}, + [3399] = {.lex_state = 102, .external_lex_state = 4}, + [3400] = {.lex_state = 102, .external_lex_state = 4}, + [3401] = {.lex_state = 102, .external_lex_state = 4}, + [3402] = {.lex_state = 266, .external_lex_state = 4}, + [3403] = {.lex_state = 132, .external_lex_state = 4}, + [3404] = {.lex_state = 266, .external_lex_state = 4}, + [3405] = {.lex_state = 138, .external_lex_state = 4}, + [3406] = {.lex_state = 266, .external_lex_state = 4}, + [3407] = {.lex_state = 266, .external_lex_state = 4}, + [3408] = {.lex_state = 266, .external_lex_state = 4}, + [3409] = {.lex_state = 266, .external_lex_state = 4}, + [3410] = {.lex_state = 266, .external_lex_state = 4}, + [3411] = {.lex_state = 266, .external_lex_state = 4}, + [3412] = {.lex_state = 266, .external_lex_state = 4}, + [3413] = {.lex_state = 266, .external_lex_state = 4}, + [3414] = {.lex_state = 266, .external_lex_state = 4}, + [3415] = {.lex_state = 266, .external_lex_state = 4}, + [3416] = {.lex_state = 266, .external_lex_state = 4}, + [3417] = {.lex_state = 266, .external_lex_state = 4}, + [3418] = {.lex_state = 266, .external_lex_state = 4}, + [3419] = {.lex_state = 266, .external_lex_state = 4}, + [3420] = {.lex_state = 266, .external_lex_state = 4}, + [3421] = {.lex_state = 266, .external_lex_state = 4}, + [3422] = {.lex_state = 266, .external_lex_state = 4}, + [3423] = {.lex_state = 266, .external_lex_state = 4}, + [3424] = {.lex_state = 266, .external_lex_state = 4}, + [3425] = {.lex_state = 266, .external_lex_state = 4}, + [3426] = {.lex_state = 266, .external_lex_state = 4}, + [3427] = {.lex_state = 266, .external_lex_state = 4}, + [3428] = {.lex_state = 266, .external_lex_state = 4}, + [3429] = {.lex_state = 266, .external_lex_state = 4}, + [3430] = {.lex_state = 129, .external_lex_state = 5}, + [3431] = {.lex_state = 262, .external_lex_state = 4}, + [3432] = {.lex_state = 266, .external_lex_state = 4}, + [3433] = {.lex_state = 262, .external_lex_state = 5}, + [3434] = {.lex_state = 262, .external_lex_state = 5}, + [3435] = {.lex_state = 129, .external_lex_state = 5}, + [3436] = {.lex_state = 102, .external_lex_state = 4}, + [3437] = {.lex_state = 262, .external_lex_state = 5}, + [3438] = {.lex_state = 262, .external_lex_state = 5}, + [3439] = {.lex_state = 262, .external_lex_state = 5}, + [3440] = {.lex_state = 262, .external_lex_state = 5}, + [3441] = {.lex_state = 262, .external_lex_state = 5}, + [3442] = {.lex_state = 262, .external_lex_state = 5}, + [3443] = {.lex_state = 262, .external_lex_state = 5}, + [3444] = {.lex_state = 262, .external_lex_state = 5}, + [3445] = {.lex_state = 262, .external_lex_state = 5}, + [3446] = {.lex_state = 262, .external_lex_state = 5}, + [3447] = {.lex_state = 266, .external_lex_state = 4}, + [3448] = {.lex_state = 266, .external_lex_state = 4}, + [3449] = {.lex_state = 132, .external_lex_state = 4}, + [3450] = {.lex_state = 262, .external_lex_state = 5}, + [3451] = {.lex_state = 266, .external_lex_state = 4}, + [3452] = {.lex_state = 262, .external_lex_state = 5}, + [3453] = {.lex_state = 262, .external_lex_state = 5}, + [3454] = {.lex_state = 262, .external_lex_state = 5}, + [3455] = {.lex_state = 262, .external_lex_state = 5}, + [3456] = {.lex_state = 129, .external_lex_state = 5}, + [3457] = {.lex_state = 266, .external_lex_state = 4}, + [3458] = {.lex_state = 129, .external_lex_state = 5}, + [3459] = {.lex_state = 266, .external_lex_state = 4}, + [3460] = {.lex_state = 132, .external_lex_state = 4}, + [3461] = {.lex_state = 132, .external_lex_state = 4}, + [3462] = {.lex_state = 138, .external_lex_state = 4}, + [3463] = {.lex_state = 138, .external_lex_state = 4}, + [3464] = {.lex_state = 262, .external_lex_state = 4}, + [3465] = {.lex_state = 138, .external_lex_state = 4}, + [3466] = {.lex_state = 138, .external_lex_state = 4}, + [3467] = {.lex_state = 138, .external_lex_state = 4}, + [3468] = {.lex_state = 138, .external_lex_state = 4}, + [3469] = {.lex_state = 138, .external_lex_state = 4}, + [3470] = {.lex_state = 138, .external_lex_state = 4}, + [3471] = {.lex_state = 138, .external_lex_state = 4}, + [3472] = {.lex_state = 138, .external_lex_state = 4}, + [3473] = {.lex_state = 262, .external_lex_state = 4}, + [3474] = {.lex_state = 138, .external_lex_state = 4}, + [3475] = {.lex_state = 138, .external_lex_state = 4}, + [3476] = {.lex_state = 138, .external_lex_state = 4}, + [3477] = {.lex_state = 138, .external_lex_state = 4}, + [3478] = {.lex_state = 138, .external_lex_state = 4}, + [3479] = {.lex_state = 138, .external_lex_state = 4}, + [3480] = {.lex_state = 266, .external_lex_state = 4}, + [3481] = {.lex_state = 138, .external_lex_state = 4}, + [3482] = {.lex_state = 138, .external_lex_state = 4}, + [3483] = {.lex_state = 132, .external_lex_state = 4}, + [3484] = {.lex_state = 132, .external_lex_state = 4}, + [3485] = {.lex_state = 138, .external_lex_state = 4}, + [3486] = {.lex_state = 138, .external_lex_state = 4}, + [3487] = {.lex_state = 138, .external_lex_state = 4}, + [3488] = {.lex_state = 138, .external_lex_state = 4}, + [3489] = {.lex_state = 138, .external_lex_state = 4}, + [3490] = {.lex_state = 138, .external_lex_state = 4}, + [3491] = {.lex_state = 138, .external_lex_state = 4}, + [3492] = {.lex_state = 138, .external_lex_state = 4}, + [3493] = {.lex_state = 138, .external_lex_state = 4}, [3494] = {.lex_state = 262, .external_lex_state = 4}, - [3495] = {.lex_state = 127, .external_lex_state = 4}, - [3496] = {.lex_state = 127, .external_lex_state = 4}, - [3497] = {.lex_state = 127, .external_lex_state = 4}, - [3498] = {.lex_state = 127, .external_lex_state = 4}, - [3499] = {.lex_state = 127, .external_lex_state = 4}, - [3500] = {.lex_state = 127, .external_lex_state = 4}, - [3501] = {.lex_state = 127, .external_lex_state = 4}, - [3502] = {.lex_state = 127, .external_lex_state = 4}, - [3503] = {.lex_state = 127, .external_lex_state = 4}, - [3504] = {.lex_state = 102, .external_lex_state = 4}, - [3505] = {.lex_state = 127, .external_lex_state = 4}, - [3506] = {.lex_state = 127, .external_lex_state = 4}, - [3507] = {.lex_state = 127, .external_lex_state = 4}, - [3508] = {.lex_state = 127, .external_lex_state = 4}, - [3509] = {.lex_state = 127, .external_lex_state = 4}, - [3510] = {.lex_state = 127, .external_lex_state = 4}, - [3511] = {.lex_state = 127, .external_lex_state = 4}, - [3512] = {.lex_state = 127, .external_lex_state = 4}, - [3513] = {.lex_state = 127, .external_lex_state = 4}, - [3514] = {.lex_state = 127, .external_lex_state = 4}, - [3515] = {.lex_state = 127, .external_lex_state = 4}, - [3516] = {.lex_state = 127, .external_lex_state = 4}, - [3517] = {.lex_state = 127, .external_lex_state = 4}, - [3518] = {.lex_state = 127, .external_lex_state = 4}, - [3519] = {.lex_state = 127, .external_lex_state = 4}, - [3520] = {.lex_state = 262, .external_lex_state = 4}, - [3521] = {.lex_state = 262, .external_lex_state = 4}, - [3522] = {.lex_state = 127, .external_lex_state = 4}, - [3523] = {.lex_state = 127, .external_lex_state = 4}, - [3524] = {.lex_state = 127, .external_lex_state = 4}, - [3525] = {.lex_state = 127, .external_lex_state = 4}, - [3526] = {.lex_state = 102, .external_lex_state = 4}, - [3527] = {.lex_state = 262, .external_lex_state = 4}, - [3528] = {.lex_state = 262, .external_lex_state = 4}, - [3529] = {.lex_state = 262, .external_lex_state = 4}, - [3530] = {.lex_state = 262, .external_lex_state = 4}, - [3531] = {.lex_state = 102, .external_lex_state = 4}, - [3532] = {.lex_state = 262, .external_lex_state = 4}, - [3533] = {.lex_state = 262, .external_lex_state = 4}, - [3534] = {.lex_state = 262, .external_lex_state = 4}, + [3495] = {.lex_state = 138, .external_lex_state = 4}, + [3496] = {.lex_state = 102, .external_lex_state = 4}, + [3497] = {.lex_state = 138, .external_lex_state = 4}, + [3498] = {.lex_state = 102, .external_lex_state = 4}, + [3499] = {.lex_state = 102, .external_lex_state = 4}, + [3500] = {.lex_state = 138, .external_lex_state = 4}, + [3501] = {.lex_state = 138, .external_lex_state = 4}, + [3502] = {.lex_state = 138, .external_lex_state = 4}, + [3503] = {.lex_state = 132, .external_lex_state = 4}, + [3504] = {.lex_state = 132, .external_lex_state = 4}, + [3505] = {.lex_state = 132, .external_lex_state = 4}, + [3506] = {.lex_state = 132, .external_lex_state = 4}, + [3507] = {.lex_state = 102, .external_lex_state = 4}, + [3508] = {.lex_state = 262, .external_lex_state = 4}, + [3509] = {.lex_state = 266, .external_lex_state = 4}, + [3510] = {.lex_state = 262, .external_lex_state = 4}, + [3511] = {.lex_state = 102, .external_lex_state = 4}, + [3512] = {.lex_state = 266, .external_lex_state = 4}, + [3513] = {.lex_state = 266, .external_lex_state = 4}, + [3514] = {.lex_state = 129, .external_lex_state = 5}, + [3515] = {.lex_state = 262, .external_lex_state = 4}, + [3516] = {.lex_state = 266, .external_lex_state = 4}, + [3517] = {.lex_state = 266, .external_lex_state = 4}, + [3518] = {.lex_state = 266, .external_lex_state = 4}, + [3519] = {.lex_state = 266, .external_lex_state = 4}, + [3520] = {.lex_state = 266, .external_lex_state = 4}, + [3521] = {.lex_state = 266, .external_lex_state = 4}, + [3522] = {.lex_state = 266, .external_lex_state = 4}, + [3523] = {.lex_state = 266, .external_lex_state = 4}, + [3524] = {.lex_state = 129, .external_lex_state = 5}, + [3525] = {.lex_state = 266, .external_lex_state = 4}, + [3526] = {.lex_state = 266, .external_lex_state = 4}, + [3527] = {.lex_state = 266, .external_lex_state = 4}, + [3528] = {.lex_state = 266, .external_lex_state = 4}, + [3529] = {.lex_state = 266, .external_lex_state = 4}, + [3530] = {.lex_state = 266, .external_lex_state = 4}, + [3531] = {.lex_state = 266, .external_lex_state = 4}, + [3532] = {.lex_state = 102, .external_lex_state = 4}, + [3533] = {.lex_state = 266, .external_lex_state = 4}, + [3534] = {.lex_state = 266, .external_lex_state = 4}, [3535] = {.lex_state = 262, .external_lex_state = 4}, - [3536] = {.lex_state = 262, .external_lex_state = 4}, - [3537] = {.lex_state = 262, .external_lex_state = 4}, + [3536] = {.lex_state = 102, .external_lex_state = 4}, + [3537] = {.lex_state = 132, .external_lex_state = 4}, [3538] = {.lex_state = 262, .external_lex_state = 4}, - [3539] = {.lex_state = 262, .external_lex_state = 4}, - [3540] = {.lex_state = 262, .external_lex_state = 4}, - [3541] = {.lex_state = 262, .external_lex_state = 4}, + [3539] = {.lex_state = 138, .external_lex_state = 4}, + [3540] = {.lex_state = 102, .external_lex_state = 4}, + [3541] = {.lex_state = 102, .external_lex_state = 4}, [3542] = {.lex_state = 262, .external_lex_state = 4}, [3543] = {.lex_state = 262, .external_lex_state = 4}, - [3544] = {.lex_state = 262, .external_lex_state = 4}, - [3545] = {.lex_state = 262, .external_lex_state = 4}, - [3546] = {.lex_state = 262, .external_lex_state = 4}, - [3547] = {.lex_state = 262, .external_lex_state = 4}, - [3548] = {.lex_state = 262, .external_lex_state = 4}, - [3549] = {.lex_state = 262, .external_lex_state = 4}, - [3550] = {.lex_state = 262, .external_lex_state = 4}, - [3551] = {.lex_state = 262, .external_lex_state = 4}, - [3552] = {.lex_state = 262, .external_lex_state = 4}, - [3553] = {.lex_state = 50, .external_lex_state = 6}, - [3554] = {.lex_state = 50, .external_lex_state = 6}, - [3555] = {.lex_state = 50, .external_lex_state = 6}, - [3556] = {.lex_state = 50, .external_lex_state = 6}, - [3557] = {.lex_state = 50, .external_lex_state = 6}, - [3558] = {.lex_state = 50, .external_lex_state = 6}, - [3559] = {.lex_state = 50, .external_lex_state = 6}, - [3560] = {.lex_state = 50, .external_lex_state = 6}, - [3561] = {.lex_state = 50, .external_lex_state = 6}, - [3562] = {.lex_state = 50, .external_lex_state = 6}, - [3563] = {.lex_state = 50, .external_lex_state = 6}, - [3564] = {.lex_state = 50, .external_lex_state = 6}, - [3565] = {.lex_state = 50, .external_lex_state = 6}, - [3566] = {.lex_state = 50, .external_lex_state = 6}, - [3567] = {.lex_state = 50, .external_lex_state = 6}, - [3568] = {.lex_state = 50, .external_lex_state = 6}, - [3569] = {.lex_state = 50, .external_lex_state = 6}, - [3570] = {.lex_state = 50, .external_lex_state = 6}, - [3571] = {.lex_state = 50, .external_lex_state = 6}, - [3572] = {.lex_state = 50, .external_lex_state = 6}, - [3573] = {.lex_state = 50, .external_lex_state = 6}, - [3574] = {.lex_state = 50, .external_lex_state = 6}, - [3575] = {.lex_state = 50, .external_lex_state = 6}, - [3576] = {.lex_state = 50, .external_lex_state = 6}, - [3577] = {.lex_state = 50, .external_lex_state = 6}, - [3578] = {.lex_state = 50, .external_lex_state = 6}, - [3579] = {.lex_state = 50, .external_lex_state = 6}, - [3580] = {.lex_state = 50, .external_lex_state = 6}, - [3581] = {.lex_state = 50, .external_lex_state = 6}, - [3582] = {.lex_state = 50, .external_lex_state = 6}, - [3583] = {.lex_state = 50, .external_lex_state = 6}, - [3584] = {.lex_state = 50, .external_lex_state = 6}, - [3585] = {.lex_state = 50, .external_lex_state = 6}, - [3586] = {.lex_state = 50, .external_lex_state = 6}, - [3587] = {.lex_state = 50, .external_lex_state = 6}, - [3588] = {.lex_state = 50, .external_lex_state = 6}, - [3589] = {.lex_state = 102, .external_lex_state = 6}, - [3590] = {.lex_state = 102, .external_lex_state = 6}, - [3591] = {.lex_state = 102, .external_lex_state = 6}, - [3592] = {.lex_state = 102, .external_lex_state = 6}, - [3593] = {.lex_state = 102, .external_lex_state = 6}, - [3594] = {.lex_state = 102, .external_lex_state = 6}, - [3595] = {.lex_state = 102, .external_lex_state = 6}, - [3596] = {.lex_state = 102, .external_lex_state = 6}, - [3597] = {.lex_state = 102, .external_lex_state = 6}, - [3598] = {.lex_state = 102, .external_lex_state = 6}, - [3599] = {.lex_state = 102, .external_lex_state = 6}, - [3600] = {.lex_state = 102, .external_lex_state = 6}, - [3601] = {.lex_state = 102, .external_lex_state = 6}, - [3602] = {.lex_state = 102, .external_lex_state = 6}, - [3603] = {.lex_state = 102, .external_lex_state = 6}, - [3604] = {.lex_state = 102, .external_lex_state = 6}, - [3605] = {.lex_state = 102, .external_lex_state = 6}, - [3606] = {.lex_state = 102, .external_lex_state = 6}, - [3607] = {.lex_state = 102, .external_lex_state = 6}, - [3608] = {.lex_state = 102, .external_lex_state = 6}, - [3609] = {.lex_state = 102, .external_lex_state = 6}, - [3610] = {.lex_state = 102, .external_lex_state = 6}, - [3611] = {.lex_state = 102, .external_lex_state = 6}, - [3612] = {.lex_state = 102, .external_lex_state = 6}, - [3613] = {.lex_state = 102, .external_lex_state = 6}, - [3614] = {.lex_state = 102, .external_lex_state = 6}, - [3615] = {.lex_state = 102, .external_lex_state = 6}, - [3616] = {.lex_state = 102, .external_lex_state = 6}, - [3617] = {.lex_state = 102, .external_lex_state = 6}, - [3618] = {.lex_state = 102, .external_lex_state = 6}, - [3619] = {.lex_state = 102, .external_lex_state = 6}, - [3620] = {.lex_state = 102, .external_lex_state = 6}, - [3621] = {.lex_state = 102, .external_lex_state = 6}, - [3622] = {.lex_state = 102, .external_lex_state = 6}, - [3623] = {.lex_state = 102, .external_lex_state = 6}, - [3624] = {.lex_state = 102, .external_lex_state = 6}, - [3625] = {.lex_state = 102, .external_lex_state = 6}, - [3626] = {.lex_state = 102, .external_lex_state = 6}, - [3627] = {.lex_state = 102, .external_lex_state = 6}, - [3628] = {.lex_state = 102, .external_lex_state = 6}, - [3629] = {.lex_state = 102, .external_lex_state = 6}, - [3630] = {.lex_state = 102, .external_lex_state = 6}, - [3631] = {.lex_state = 102, .external_lex_state = 6}, - [3632] = {.lex_state = 102, .external_lex_state = 6}, - [3633] = {.lex_state = 102, .external_lex_state = 6}, - [3634] = {.lex_state = 102, .external_lex_state = 6}, - [3635] = {.lex_state = 102, .external_lex_state = 6}, - [3636] = {.lex_state = 102, .external_lex_state = 6}, - [3637] = {.lex_state = 102, .external_lex_state = 6}, - [3638] = {.lex_state = 102, .external_lex_state = 6}, - [3639] = {.lex_state = 102, .external_lex_state = 6}, - [3640] = {.lex_state = 102, .external_lex_state = 6}, - [3641] = {.lex_state = 102, .external_lex_state = 6}, - [3642] = {.lex_state = 102, .external_lex_state = 6}, - [3643] = {.lex_state = 102, .external_lex_state = 6}, - [3644] = {.lex_state = 102, .external_lex_state = 6}, - [3645] = {.lex_state = 102, .external_lex_state = 6}, - [3646] = {.lex_state = 102, .external_lex_state = 6}, - [3647] = {.lex_state = 102, .external_lex_state = 6}, - [3648] = {.lex_state = 102, .external_lex_state = 6}, - [3649] = {.lex_state = 102, .external_lex_state = 6}, - [3650] = {.lex_state = 102, .external_lex_state = 6}, - [3651] = {.lex_state = 102, .external_lex_state = 6}, - [3652] = {.lex_state = 102, .external_lex_state = 6}, - [3653] = {.lex_state = 102, .external_lex_state = 6}, - [3654] = {.lex_state = 102, .external_lex_state = 6}, - [3655] = {.lex_state = 102, .external_lex_state = 6}, - [3656] = {.lex_state = 102, .external_lex_state = 6}, - [3657] = {.lex_state = 102, .external_lex_state = 6}, - [3658] = {.lex_state = 102, .external_lex_state = 6}, - [3659] = {.lex_state = 102, .external_lex_state = 6}, - [3660] = {.lex_state = 102, .external_lex_state = 6}, - [3661] = {.lex_state = 144, .external_lex_state = 6}, - [3662] = {.lex_state = 144, .external_lex_state = 6}, - [3663] = {.lex_state = 102, .external_lex_state = 6}, - [3664] = {.lex_state = 102, .external_lex_state = 6}, - [3665] = {.lex_state = 102, .external_lex_state = 6}, - [3666] = {.lex_state = 102, .external_lex_state = 6}, - [3667] = {.lex_state = 102, .external_lex_state = 6}, - [3668] = {.lex_state = 102, .external_lex_state = 6}, - [3669] = {.lex_state = 102, .external_lex_state = 6}, - [3670] = {.lex_state = 102, .external_lex_state = 6}, - [3671] = {.lex_state = 102, .external_lex_state = 6}, - [3672] = {.lex_state = 102, .external_lex_state = 6}, - [3673] = {.lex_state = 102, .external_lex_state = 6}, - [3674] = {.lex_state = 102, .external_lex_state = 6}, - [3675] = {.lex_state = 102, .external_lex_state = 6}, - [3676] = {.lex_state = 102, .external_lex_state = 6}, - [3677] = {.lex_state = 102, .external_lex_state = 6}, - [3678] = {.lex_state = 102, .external_lex_state = 6}, - [3679] = {.lex_state = 102, .external_lex_state = 6}, - [3680] = {.lex_state = 102, .external_lex_state = 6}, - [3681] = {.lex_state = 102, .external_lex_state = 6}, - [3682] = {.lex_state = 102, .external_lex_state = 6}, - [3683] = {.lex_state = 102, .external_lex_state = 6}, - [3684] = {.lex_state = 102, .external_lex_state = 6}, - [3685] = {.lex_state = 102, .external_lex_state = 6}, - [3686] = {.lex_state = 102, .external_lex_state = 6}, - [3687] = {.lex_state = 102, .external_lex_state = 6}, - [3688] = {.lex_state = 102, .external_lex_state = 6}, - [3689] = {.lex_state = 102, .external_lex_state = 6}, - [3690] = {.lex_state = 102, .external_lex_state = 6}, - [3691] = {.lex_state = 102, .external_lex_state = 6}, - [3692] = {.lex_state = 102, .external_lex_state = 6}, - [3693] = {.lex_state = 102, .external_lex_state = 6}, - [3694] = {.lex_state = 102, .external_lex_state = 6}, - [3695] = {.lex_state = 102, .external_lex_state = 6}, - [3696] = {.lex_state = 102, .external_lex_state = 6}, - [3697] = {.lex_state = 102, .external_lex_state = 6}, - [3698] = {.lex_state = 102, .external_lex_state = 6}, - [3699] = {.lex_state = 102, .external_lex_state = 6}, - [3700] = {.lex_state = 102, .external_lex_state = 6}, - [3701] = {.lex_state = 102, .external_lex_state = 6}, - [3702] = {.lex_state = 102, .external_lex_state = 6}, - [3703] = {.lex_state = 102, .external_lex_state = 6}, - [3704] = {.lex_state = 102, .external_lex_state = 6}, - [3705] = {.lex_state = 102, .external_lex_state = 6}, - [3706] = {.lex_state = 102, .external_lex_state = 6}, - [3707] = {.lex_state = 102, .external_lex_state = 6}, - [3708] = {.lex_state = 102, .external_lex_state = 6}, - [3709] = {.lex_state = 102, .external_lex_state = 6}, - [3710] = {.lex_state = 102, .external_lex_state = 6}, - [3711] = {.lex_state = 102, .external_lex_state = 6}, - [3712] = {.lex_state = 102, .external_lex_state = 6}, - [3713] = {.lex_state = 102, .external_lex_state = 6}, - [3714] = {.lex_state = 102, .external_lex_state = 6}, - [3715] = {.lex_state = 102, .external_lex_state = 6}, - [3716] = {.lex_state = 102, .external_lex_state = 6}, - [3717] = {.lex_state = 102, .external_lex_state = 6}, - [3718] = {.lex_state = 102, .external_lex_state = 6}, - [3719] = {.lex_state = 102, .external_lex_state = 6}, - [3720] = {.lex_state = 102, .external_lex_state = 6}, - [3721] = {.lex_state = 102, .external_lex_state = 6}, - [3722] = {.lex_state = 102, .external_lex_state = 6}, - [3723] = {.lex_state = 102, .external_lex_state = 6}, - [3724] = {.lex_state = 102, .external_lex_state = 6}, - [3725] = {.lex_state = 102, .external_lex_state = 6}, - [3726] = {.lex_state = 102, .external_lex_state = 6}, - [3727] = {.lex_state = 144, .external_lex_state = 6}, - [3728] = {.lex_state = 102, .external_lex_state = 6}, - [3729] = {.lex_state = 102, .external_lex_state = 6}, - [3730] = {.lex_state = 102, .external_lex_state = 6}, - [3731] = {.lex_state = 102, .external_lex_state = 6}, - [3732] = {.lex_state = 144, .external_lex_state = 6}, - [3733] = {.lex_state = 102, .external_lex_state = 6}, - [3734] = {.lex_state = 102, .external_lex_state = 6}, - [3735] = {.lex_state = 102, .external_lex_state = 6}, - [3736] = {.lex_state = 102, .external_lex_state = 6}, - [3737] = {.lex_state = 102, .external_lex_state = 6}, - [3738] = {.lex_state = 102, .external_lex_state = 6}, - [3739] = {.lex_state = 102, .external_lex_state = 6}, - [3740] = {.lex_state = 102, .external_lex_state = 6}, - [3741] = {.lex_state = 102, .external_lex_state = 6}, - [3742] = {.lex_state = 102, .external_lex_state = 6}, - [3743] = {.lex_state = 102, .external_lex_state = 6}, - [3744] = {.lex_state = 102, .external_lex_state = 6}, - [3745] = {.lex_state = 102, .external_lex_state = 6}, - [3746] = {.lex_state = 102, .external_lex_state = 6}, - [3747] = {.lex_state = 102, .external_lex_state = 6}, - [3748] = {.lex_state = 102, .external_lex_state = 6}, - [3749] = {.lex_state = 102, .external_lex_state = 6}, - [3750] = {.lex_state = 102, .external_lex_state = 6}, - [3751] = {.lex_state = 102, .external_lex_state = 6}, - [3752] = {.lex_state = 102, .external_lex_state = 6}, - [3753] = {.lex_state = 102, .external_lex_state = 6}, - [3754] = {.lex_state = 102, .external_lex_state = 6}, - [3755] = {.lex_state = 50, .external_lex_state = 6}, - [3756] = {.lex_state = 50, .external_lex_state = 6}, - [3757] = {.lex_state = 144, .external_lex_state = 6}, - [3758] = {.lex_state = 144, .external_lex_state = 6}, - [3759] = {.lex_state = 144, .external_lex_state = 6}, - [3760] = {.lex_state = 50, .external_lex_state = 6}, - [3761] = {.lex_state = 144, .external_lex_state = 6}, - [3762] = {.lex_state = 50, .external_lex_state = 6}, - [3763] = {.lex_state = 144, .external_lex_state = 6}, - [3764] = {.lex_state = 50, .external_lex_state = 6}, - [3765] = {.lex_state = 144, .external_lex_state = 6}, - [3766] = {.lex_state = 50, .external_lex_state = 6}, - [3767] = {.lex_state = 144, .external_lex_state = 6}, - [3768] = {.lex_state = 50, .external_lex_state = 6}, - [3769] = {.lex_state = 144, .external_lex_state = 6}, - [3770] = {.lex_state = 144, .external_lex_state = 6}, - [3771] = {.lex_state = 50, .external_lex_state = 6}, - [3772] = {.lex_state = 50, .external_lex_state = 6}, - [3773] = {.lex_state = 144, .external_lex_state = 6}, - [3774] = {.lex_state = 144, .external_lex_state = 6}, - [3775] = {.lex_state = 50, .external_lex_state = 6}, - [3776] = {.lex_state = 144, .external_lex_state = 6}, - [3777] = {.lex_state = 144, .external_lex_state = 6}, - [3778] = {.lex_state = 50, .external_lex_state = 6}, - [3779] = {.lex_state = 144, .external_lex_state = 6}, - [3780] = {.lex_state = 50, .external_lex_state = 6}, - [3781] = {.lex_state = 50, .external_lex_state = 6}, - [3782] = {.lex_state = 144, .external_lex_state = 6}, - [3783] = {.lex_state = 144, .external_lex_state = 6}, - [3784] = {.lex_state = 50, .external_lex_state = 6}, - [3785] = {.lex_state = 50, .external_lex_state = 6}, - [3786] = {.lex_state = 144, .external_lex_state = 6}, - [3787] = {.lex_state = 50, .external_lex_state = 6}, - [3788] = {.lex_state = 50, .external_lex_state = 6}, - [3789] = {.lex_state = 50, .external_lex_state = 6}, - [3790] = {.lex_state = 144, .external_lex_state = 6}, - [3791] = {.lex_state = 50, .external_lex_state = 6}, - [3792] = {.lex_state = 144, .external_lex_state = 6}, - [3793] = {.lex_state = 144, .external_lex_state = 6}, - [3794] = {.lex_state = 144, .external_lex_state = 6}, - [3795] = {.lex_state = 144, .external_lex_state = 6}, - [3796] = {.lex_state = 50, .external_lex_state = 6}, - [3797] = {.lex_state = 144, .external_lex_state = 6}, - [3798] = {.lex_state = 102, .external_lex_state = 6}, - [3799] = {.lex_state = 102, .external_lex_state = 6}, - [3800] = {.lex_state = 102, .external_lex_state = 6}, - [3801] = {.lex_state = 51, .external_lex_state = 6}, - [3802] = {.lex_state = 62, .external_lex_state = 7}, - [3803] = {.lex_state = 62, .external_lex_state = 8}, - [3804] = {.lex_state = 62, .external_lex_state = 9}, - [3805] = {.lex_state = 64, .external_lex_state = 10}, - [3806] = {.lex_state = 62, .external_lex_state = 11}, - [3807] = {.lex_state = 64, .external_lex_state = 12}, - [3808] = {.lex_state = 64, .external_lex_state = 10}, - [3809] = {.lex_state = 62, .external_lex_state = 9}, - [3810] = {.lex_state = 62, .external_lex_state = 11}, - [3811] = {.lex_state = 64, .external_lex_state = 12}, - [3812] = {.lex_state = 64, .external_lex_state = 10}, - [3813] = {.lex_state = 62, .external_lex_state = 13}, - [3814] = {.lex_state = 62, .external_lex_state = 14}, - [3815] = {.lex_state = 62, .external_lex_state = 15}, - [3816] = {.lex_state = 62, .external_lex_state = 8}, - [3817] = {.lex_state = 62, .external_lex_state = 16}, - [3818] = {.lex_state = 62, .external_lex_state = 7}, - [3819] = {.lex_state = 62, .external_lex_state = 9}, - [3820] = {.lex_state = 62, .external_lex_state = 11}, - [3821] = {.lex_state = 64, .external_lex_state = 12}, - [3822] = {.lex_state = 64, .external_lex_state = 10}, - [3823] = {.lex_state = 62, .external_lex_state = 9}, - [3824] = {.lex_state = 62, .external_lex_state = 11}, - [3825] = {.lex_state = 64, .external_lex_state = 12}, - [3826] = {.lex_state = 64, .external_lex_state = 10}, - [3827] = {.lex_state = 62, .external_lex_state = 13}, - [3828] = {.lex_state = 62, .external_lex_state = 14}, - [3829] = {.lex_state = 62, .external_lex_state = 15}, - [3830] = {.lex_state = 62, .external_lex_state = 8}, - [3831] = {.lex_state = 62, .external_lex_state = 9}, - [3832] = {.lex_state = 62, .external_lex_state = 16}, - [3833] = {.lex_state = 62, .external_lex_state = 7}, - [3834] = {.lex_state = 62, .external_lex_state = 9}, - [3835] = {.lex_state = 62, .external_lex_state = 11}, - [3836] = {.lex_state = 62, .external_lex_state = 11}, - [3837] = {.lex_state = 64, .external_lex_state = 12}, - [3838] = {.lex_state = 64, .external_lex_state = 10}, - [3839] = {.lex_state = 62, .external_lex_state = 13}, - [3840] = {.lex_state = 62, .external_lex_state = 14}, - [3841] = {.lex_state = 62, .external_lex_state = 15}, - [3842] = {.lex_state = 64, .external_lex_state = 10}, - [3843] = {.lex_state = 62, .external_lex_state = 8}, - [3844] = {.lex_state = 62, .external_lex_state = 16}, - [3845] = {.lex_state = 62, .external_lex_state = 13}, - [3846] = {.lex_state = 62, .external_lex_state = 14}, - [3847] = {.lex_state = 62, .external_lex_state = 15}, - [3848] = {.lex_state = 62, .external_lex_state = 8}, - [3849] = {.lex_state = 62, .external_lex_state = 16}, - [3850] = {.lex_state = 62, .external_lex_state = 7}, - [3851] = {.lex_state = 62, .external_lex_state = 7}, - [3852] = {.lex_state = 64, .external_lex_state = 12}, - [3853] = {.lex_state = 62, .external_lex_state = 11}, - [3854] = {.lex_state = 62, .external_lex_state = 9}, - [3855] = {.lex_state = 62, .external_lex_state = 11}, - [3856] = {.lex_state = 62, .external_lex_state = 9}, - [3857] = {.lex_state = 62, .external_lex_state = 11}, - [3858] = {.lex_state = 62, .external_lex_state = 9}, - [3859] = {.lex_state = 62, .external_lex_state = 11}, - [3860] = {.lex_state = 62, .external_lex_state = 9}, - [3861] = {.lex_state = 62, .external_lex_state = 11}, - [3862] = {.lex_state = 62, .external_lex_state = 9}, - [3863] = {.lex_state = 64, .external_lex_state = 12}, - [3864] = {.lex_state = 62, .external_lex_state = 11}, - [3865] = {.lex_state = 62, .external_lex_state = 9}, - [3866] = {.lex_state = 62, .external_lex_state = 11}, - [3867] = {.lex_state = 62, .external_lex_state = 9}, - [3868] = {.lex_state = 62, .external_lex_state = 11}, - [3869] = {.lex_state = 62, .external_lex_state = 9}, - [3870] = {.lex_state = 62, .external_lex_state = 11}, - [3871] = {.lex_state = 62, .external_lex_state = 9}, - [3872] = {.lex_state = 62, .external_lex_state = 11}, - [3873] = {.lex_state = 62, .external_lex_state = 9}, - [3874] = {.lex_state = 62, .external_lex_state = 11}, - [3875] = {.lex_state = 62, .external_lex_state = 9}, - [3876] = {.lex_state = 62, .external_lex_state = 11}, - [3877] = {.lex_state = 62, .external_lex_state = 9}, - [3878] = {.lex_state = 62, .external_lex_state = 11}, - [3879] = {.lex_state = 62, .external_lex_state = 9}, - [3880] = {.lex_state = 62, .external_lex_state = 11}, - [3881] = {.lex_state = 62, .external_lex_state = 9}, - [3882] = {.lex_state = 62, .external_lex_state = 7}, - [3883] = {.lex_state = 62, .external_lex_state = 9}, - [3884] = {.lex_state = 62, .external_lex_state = 11}, - [3885] = {.lex_state = 64, .external_lex_state = 12}, - [3886] = {.lex_state = 64, .external_lex_state = 10}, - [3887] = {.lex_state = 62, .external_lex_state = 16}, - [3888] = {.lex_state = 62, .external_lex_state = 8}, - [3889] = {.lex_state = 62, .external_lex_state = 15}, - [3890] = {.lex_state = 62, .external_lex_state = 11}, - [3891] = {.lex_state = 62, .external_lex_state = 14}, - [3892] = {.lex_state = 62, .external_lex_state = 13}, - [3893] = {.lex_state = 62, .external_lex_state = 9}, - [3894] = {.lex_state = 64, .external_lex_state = 10}, - [3895] = {.lex_state = 62, .external_lex_state = 9}, - [3896] = {.lex_state = 62, .external_lex_state = 11}, - [3897] = {.lex_state = 64, .external_lex_state = 12}, - [3898] = {.lex_state = 64, .external_lex_state = 10}, - [3899] = {.lex_state = 64, .external_lex_state = 12}, - [3900] = {.lex_state = 62, .external_lex_state = 11}, - [3901] = {.lex_state = 62, .external_lex_state = 9}, - [3902] = {.lex_state = 64, .external_lex_state = 10}, - [3903] = {.lex_state = 64, .external_lex_state = 12}, - [3904] = {.lex_state = 62, .external_lex_state = 11}, - [3905] = {.lex_state = 62, .external_lex_state = 9}, - [3906] = {.lex_state = 64, .external_lex_state = 10}, - [3907] = {.lex_state = 64, .external_lex_state = 12}, - [3908] = {.lex_state = 62, .external_lex_state = 11}, - [3909] = {.lex_state = 62, .external_lex_state = 9}, - [3910] = {.lex_state = 64, .external_lex_state = 10}, - [3911] = {.lex_state = 62, .external_lex_state = 8}, - [3912] = {.lex_state = 64, .external_lex_state = 12}, - [3913] = {.lex_state = 64, .external_lex_state = 10}, - [3914] = {.lex_state = 62, .external_lex_state = 11}, - [3915] = {.lex_state = 62, .external_lex_state = 9}, - [3916] = {.lex_state = 64, .external_lex_state = 10}, - [3917] = {.lex_state = 64, .external_lex_state = 12}, - [3918] = {.lex_state = 62, .external_lex_state = 13}, - [3919] = {.lex_state = 62, .external_lex_state = 14}, - [3920] = {.lex_state = 62, .external_lex_state = 15}, - [3921] = {.lex_state = 62, .external_lex_state = 8}, - [3922] = {.lex_state = 62, .external_lex_state = 16}, - [3923] = {.lex_state = 62, .external_lex_state = 7}, - [3924] = {.lex_state = 62, .external_lex_state = 11}, - [3925] = {.lex_state = 62, .external_lex_state = 9}, - [3926] = {.lex_state = 64, .external_lex_state = 10}, - [3927] = {.lex_state = 64, .external_lex_state = 12}, - [3928] = {.lex_state = 62, .external_lex_state = 11}, - [3929] = {.lex_state = 62, .external_lex_state = 9}, - [3930] = {.lex_state = 64, .external_lex_state = 10}, - [3931] = {.lex_state = 64, .external_lex_state = 12}, - [3932] = {.lex_state = 62, .external_lex_state = 11}, - [3933] = {.lex_state = 62, .external_lex_state = 9}, - [3934] = {.lex_state = 64, .external_lex_state = 10}, - [3935] = {.lex_state = 64, .external_lex_state = 12}, - [3936] = {.lex_state = 62, .external_lex_state = 11}, - [3937] = {.lex_state = 62, .external_lex_state = 9}, - [3938] = {.lex_state = 64, .external_lex_state = 10}, - [3939] = {.lex_state = 64, .external_lex_state = 12}, - [3940] = {.lex_state = 62, .external_lex_state = 11}, - [3941] = {.lex_state = 62, .external_lex_state = 9}, - [3942] = {.lex_state = 64, .external_lex_state = 10}, - [3943] = {.lex_state = 64, .external_lex_state = 12}, - [3944] = {.lex_state = 62, .external_lex_state = 11}, - [3945] = {.lex_state = 62, .external_lex_state = 9}, - [3946] = {.lex_state = 64, .external_lex_state = 10}, - [3947] = {.lex_state = 64, .external_lex_state = 12}, - [3948] = {.lex_state = 62, .external_lex_state = 11}, - [3949] = {.lex_state = 62, .external_lex_state = 9}, - [3950] = {.lex_state = 64, .external_lex_state = 10}, - [3951] = {.lex_state = 64, .external_lex_state = 12}, - [3952] = {.lex_state = 62, .external_lex_state = 11}, - [3953] = {.lex_state = 62, .external_lex_state = 9}, - [3954] = {.lex_state = 64, .external_lex_state = 10}, - [3955] = {.lex_state = 64, .external_lex_state = 12}, - [3956] = {.lex_state = 62, .external_lex_state = 13}, - [3957] = {.lex_state = 62, .external_lex_state = 14}, - [3958] = {.lex_state = 62, .external_lex_state = 15}, - [3959] = {.lex_state = 62, .external_lex_state = 8}, - [3960] = {.lex_state = 62, .external_lex_state = 16}, - [3961] = {.lex_state = 62, .external_lex_state = 7}, - [3962] = {.lex_state = 62, .external_lex_state = 11}, - [3963] = {.lex_state = 62, .external_lex_state = 9}, - [3964] = {.lex_state = 64, .external_lex_state = 10}, - [3965] = {.lex_state = 64, .external_lex_state = 12}, - [3966] = {.lex_state = 62, .external_lex_state = 11}, - [3967] = {.lex_state = 62, .external_lex_state = 9}, - [3968] = {.lex_state = 64, .external_lex_state = 10}, - [3969] = {.lex_state = 64, .external_lex_state = 12}, - [3970] = {.lex_state = 62, .external_lex_state = 11}, - [3971] = {.lex_state = 62, .external_lex_state = 9}, - [3972] = {.lex_state = 64, .external_lex_state = 10}, - [3973] = {.lex_state = 64, .external_lex_state = 12}, - [3974] = {.lex_state = 62, .external_lex_state = 11}, - [3975] = {.lex_state = 62, .external_lex_state = 9}, - [3976] = {.lex_state = 64, .external_lex_state = 10}, - [3977] = {.lex_state = 64, .external_lex_state = 12}, - [3978] = {.lex_state = 62, .external_lex_state = 11}, - [3979] = {.lex_state = 62, .external_lex_state = 9}, - [3980] = {.lex_state = 64, .external_lex_state = 10}, - [3981] = {.lex_state = 64, .external_lex_state = 12}, - [3982] = {.lex_state = 62, .external_lex_state = 7}, - [3983] = {.lex_state = 62, .external_lex_state = 16}, - [3984] = {.lex_state = 62, .external_lex_state = 8}, - [3985] = {.lex_state = 62, .external_lex_state = 15}, - [3986] = {.lex_state = 62, .external_lex_state = 14}, - [3987] = {.lex_state = 62, .external_lex_state = 13}, - [3988] = {.lex_state = 62, .external_lex_state = 11}, - [3989] = {.lex_state = 62, .external_lex_state = 9}, - [3990] = {.lex_state = 64, .external_lex_state = 10}, - [3991] = {.lex_state = 64, .external_lex_state = 12}, - [3992] = {.lex_state = 62, .external_lex_state = 11}, - [3993] = {.lex_state = 62, .external_lex_state = 9}, - [3994] = {.lex_state = 62, .external_lex_state = 9}, - [3995] = {.lex_state = 62, .external_lex_state = 11}, - [3996] = {.lex_state = 64, .external_lex_state = 12}, - [3997] = {.lex_state = 64, .external_lex_state = 10}, - [3998] = {.lex_state = 64, .external_lex_state = 10}, - [3999] = {.lex_state = 64, .external_lex_state = 12}, - [4000] = {.lex_state = 62, .external_lex_state = 11}, - [4001] = {.lex_state = 62, .external_lex_state = 9}, - [4002] = {.lex_state = 64, .external_lex_state = 10}, - [4003] = {.lex_state = 64, .external_lex_state = 12}, - [4004] = {.lex_state = 62, .external_lex_state = 11}, - [4005] = {.lex_state = 62, .external_lex_state = 9}, - [4006] = {.lex_state = 62, .external_lex_state = 9}, - [4007] = {.lex_state = 62, .external_lex_state = 11}, - [4008] = {.lex_state = 64, .external_lex_state = 12}, - [4009] = {.lex_state = 64, .external_lex_state = 10}, - [4010] = {.lex_state = 64, .external_lex_state = 10}, - [4011] = {.lex_state = 64, .external_lex_state = 12}, - [4012] = {.lex_state = 62, .external_lex_state = 11}, - [4013] = {.lex_state = 62, .external_lex_state = 9}, - [4014] = {.lex_state = 64, .external_lex_state = 10}, - [4015] = {.lex_state = 64, .external_lex_state = 12}, - [4016] = {.lex_state = 62, .external_lex_state = 11}, - [4017] = {.lex_state = 62, .external_lex_state = 9}, - [4018] = {.lex_state = 64, .external_lex_state = 10}, - [4019] = {.lex_state = 64, .external_lex_state = 12}, - [4020] = {.lex_state = 62, .external_lex_state = 11}, - [4021] = {.lex_state = 62, .external_lex_state = 7}, - [4022] = {.lex_state = 62, .external_lex_state = 9}, - [4023] = {.lex_state = 62, .external_lex_state = 16}, - [4024] = {.lex_state = 62, .external_lex_state = 7}, - [4025] = {.lex_state = 62, .external_lex_state = 16}, - [4026] = {.lex_state = 62, .external_lex_state = 8}, - [4027] = {.lex_state = 62, .external_lex_state = 15}, - [4028] = {.lex_state = 62, .external_lex_state = 13}, - [4029] = {.lex_state = 62, .external_lex_state = 14}, - [4030] = {.lex_state = 62, .external_lex_state = 15}, - [4031] = {.lex_state = 62, .external_lex_state = 8}, - [4032] = {.lex_state = 62, .external_lex_state = 16}, - [4033] = {.lex_state = 62, .external_lex_state = 7}, - [4034] = {.lex_state = 62, .external_lex_state = 14}, - [4035] = {.lex_state = 62, .external_lex_state = 13}, - [4036] = {.lex_state = 62, .external_lex_state = 7}, - [4037] = {.lex_state = 62, .external_lex_state = 16}, - [4038] = {.lex_state = 62, .external_lex_state = 15}, - [4039] = {.lex_state = 62, .external_lex_state = 14}, - [4040] = {.lex_state = 62, .external_lex_state = 13}, - [4041] = {.lex_state = 62, .external_lex_state = 13}, - [4042] = {.lex_state = 62, .external_lex_state = 14}, - [4043] = {.lex_state = 64, .external_lex_state = 10}, - [4044] = {.lex_state = 64, .external_lex_state = 12}, - [4045] = {.lex_state = 62, .external_lex_state = 11}, - [4046] = {.lex_state = 62, .external_lex_state = 15}, - [4047] = {.lex_state = 62, .external_lex_state = 9}, - [4048] = {.lex_state = 64, .external_lex_state = 10}, - [4049] = {.lex_state = 64, .external_lex_state = 12}, - [4050] = {.lex_state = 62, .external_lex_state = 14}, - [4051] = {.lex_state = 62, .external_lex_state = 13}, - [4052] = {.lex_state = 64, .external_lex_state = 12}, - [4053] = {.lex_state = 62, .external_lex_state = 11}, - [4054] = {.lex_state = 62, .external_lex_state = 11}, - [4055] = {.lex_state = 62, .external_lex_state = 9}, - [4056] = {.lex_state = 62, .external_lex_state = 15}, - [4057] = {.lex_state = 62, .external_lex_state = 7}, - [4058] = {.lex_state = 62, .external_lex_state = 16}, - [4059] = {.lex_state = 62, .external_lex_state = 13}, - [4060] = {.lex_state = 62, .external_lex_state = 14}, - [4061] = {.lex_state = 62, .external_lex_state = 15}, - [4062] = {.lex_state = 62, .external_lex_state = 8}, - [4063] = {.lex_state = 62, .external_lex_state = 16}, - [4064] = {.lex_state = 62, .external_lex_state = 7}, - [4065] = {.lex_state = 62, .external_lex_state = 8}, - [4066] = {.lex_state = 62, .external_lex_state = 15}, - [4067] = {.lex_state = 62, .external_lex_state = 14}, - [4068] = {.lex_state = 62, .external_lex_state = 13}, - [4069] = {.lex_state = 62, .external_lex_state = 7}, - [4070] = {.lex_state = 62, .external_lex_state = 16}, - [4071] = {.lex_state = 62, .external_lex_state = 8}, - [4072] = {.lex_state = 62, .external_lex_state = 15}, - [4073] = {.lex_state = 62, .external_lex_state = 14}, - [4074] = {.lex_state = 62, .external_lex_state = 13}, - [4075] = {.lex_state = 62, .external_lex_state = 8}, - [4076] = {.lex_state = 62, .external_lex_state = 16}, - [4077] = {.lex_state = 62, .external_lex_state = 9}, - [4078] = {.lex_state = 62, .external_lex_state = 7}, - [4079] = {.lex_state = 64, .external_lex_state = 10}, - [4080] = {.lex_state = 64, .external_lex_state = 12}, - [4081] = {.lex_state = 64, .external_lex_state = 10}, - [4082] = {.lex_state = 64, .external_lex_state = 12}, - [4083] = {.lex_state = 62, .external_lex_state = 11}, - [4084] = {.lex_state = 62, .external_lex_state = 9}, - [4085] = {.lex_state = 64, .external_lex_state = 10}, - [4086] = {.lex_state = 62, .external_lex_state = 11}, - [4087] = {.lex_state = 62, .external_lex_state = 9}, - [4088] = {.lex_state = 64, .external_lex_state = 12}, - [4089] = {.lex_state = 62, .external_lex_state = 11}, - [4090] = {.lex_state = 62, .external_lex_state = 9}, - [4091] = {.lex_state = 62, .external_lex_state = 7}, - [4092] = {.lex_state = 62, .external_lex_state = 16}, - [4093] = {.lex_state = 62, .external_lex_state = 8}, - [4094] = {.lex_state = 62, .external_lex_state = 15}, - [4095] = {.lex_state = 62, .external_lex_state = 14}, - [4096] = {.lex_state = 62, .external_lex_state = 13}, - [4097] = {.lex_state = 62, .external_lex_state = 9}, - [4098] = {.lex_state = 62, .external_lex_state = 11}, - [4099] = {.lex_state = 64, .external_lex_state = 12}, - [4100] = {.lex_state = 64, .external_lex_state = 10}, - [4101] = {.lex_state = 62, .external_lex_state = 7}, - [4102] = {.lex_state = 62, .external_lex_state = 16}, - [4103] = {.lex_state = 62, .external_lex_state = 8}, - [4104] = {.lex_state = 62, .external_lex_state = 15}, - [4105] = {.lex_state = 62, .external_lex_state = 14}, - [4106] = {.lex_state = 62, .external_lex_state = 13}, - [4107] = {.lex_state = 64, .external_lex_state = 10}, - [4108] = {.lex_state = 64, .external_lex_state = 12}, - [4109] = {.lex_state = 62, .external_lex_state = 9}, - [4110] = {.lex_state = 62, .external_lex_state = 11}, - [4111] = {.lex_state = 64, .external_lex_state = 12}, - [4112] = {.lex_state = 64, .external_lex_state = 10}, - [4113] = {.lex_state = 62, .external_lex_state = 11}, - [4114] = {.lex_state = 62, .external_lex_state = 9}, - [4115] = {.lex_state = 62, .external_lex_state = 7}, - [4116] = {.lex_state = 62, .external_lex_state = 16}, - [4117] = {.lex_state = 64, .external_lex_state = 10}, - [4118] = {.lex_state = 62, .external_lex_state = 8}, - [4119] = {.lex_state = 64, .external_lex_state = 12}, - [4120] = {.lex_state = 62, .external_lex_state = 15}, - [4121] = {.lex_state = 62, .external_lex_state = 14}, - [4122] = {.lex_state = 62, .external_lex_state = 11}, - [4123] = {.lex_state = 62, .external_lex_state = 13}, - [4124] = {.lex_state = 62, .external_lex_state = 9}, - [4125] = {.lex_state = 62, .external_lex_state = 7}, - [4126] = {.lex_state = 62, .external_lex_state = 16}, - [4127] = {.lex_state = 62, .external_lex_state = 8}, - [4128] = {.lex_state = 62, .external_lex_state = 15}, - [4129] = {.lex_state = 62, .external_lex_state = 14}, - [4130] = {.lex_state = 62, .external_lex_state = 13}, - [4131] = {.lex_state = 62, .external_lex_state = 13}, - [4132] = {.lex_state = 62, .external_lex_state = 14}, - [4133] = {.lex_state = 62, .external_lex_state = 15}, - [4134] = {.lex_state = 62, .external_lex_state = 8}, - [4135] = {.lex_state = 62, .external_lex_state = 16}, - [4136] = {.lex_state = 62, .external_lex_state = 7}, - [4137] = {.lex_state = 62, .external_lex_state = 7}, - [4138] = {.lex_state = 62, .external_lex_state = 16}, - [4139] = {.lex_state = 62, .external_lex_state = 8}, - [4140] = {.lex_state = 62, .external_lex_state = 15}, - [4141] = {.lex_state = 62, .external_lex_state = 14}, - [4142] = {.lex_state = 62, .external_lex_state = 13}, - [4143] = {.lex_state = 64, .external_lex_state = 10}, - [4144] = {.lex_state = 64, .external_lex_state = 12}, - [4145] = {.lex_state = 62, .external_lex_state = 11}, - [4146] = {.lex_state = 62, .external_lex_state = 9}, - [4147] = {.lex_state = 64, .external_lex_state = 10}, - [4148] = {.lex_state = 64, .external_lex_state = 12}, - [4149] = {.lex_state = 62, .external_lex_state = 11}, - [4150] = {.lex_state = 62, .external_lex_state = 9}, - [4151] = {.lex_state = 62, .external_lex_state = 16}, - [4152] = {.lex_state = 62, .external_lex_state = 8}, - [4153] = {.lex_state = 62, .external_lex_state = 15}, - [4154] = {.lex_state = 62, .external_lex_state = 14}, - [4155] = {.lex_state = 62, .external_lex_state = 13}, - [4156] = {.lex_state = 62, .external_lex_state = 7}, - [4157] = {.lex_state = 62, .external_lex_state = 16}, - [4158] = {.lex_state = 62, .external_lex_state = 8}, - [4159] = {.lex_state = 62, .external_lex_state = 15}, - [4160] = {.lex_state = 62, .external_lex_state = 14}, - [4161] = {.lex_state = 62, .external_lex_state = 13}, - [4162] = {.lex_state = 62, .external_lex_state = 13}, - [4163] = {.lex_state = 62, .external_lex_state = 14}, - [4164] = {.lex_state = 62, .external_lex_state = 15}, - [4165] = {.lex_state = 62, .external_lex_state = 8}, - [4166] = {.lex_state = 62, .external_lex_state = 16}, - [4167] = {.lex_state = 62, .external_lex_state = 7}, - [4168] = {.lex_state = 62, .external_lex_state = 9}, - [4169] = {.lex_state = 64, .external_lex_state = 10}, - [4170] = {.lex_state = 64, .external_lex_state = 12}, - [4171] = {.lex_state = 62, .external_lex_state = 11}, - [4172] = {.lex_state = 62, .external_lex_state = 9}, - [4173] = {.lex_state = 64, .external_lex_state = 10}, - [4174] = {.lex_state = 64, .external_lex_state = 12}, - [4175] = {.lex_state = 62, .external_lex_state = 11}, - [4176] = {.lex_state = 62, .external_lex_state = 9}, - [4177] = {.lex_state = 64, .external_lex_state = 12}, - [4178] = {.lex_state = 62, .external_lex_state = 7}, - [4179] = {.lex_state = 62, .external_lex_state = 16}, - [4180] = {.lex_state = 62, .external_lex_state = 8}, - [4181] = {.lex_state = 64, .external_lex_state = 12}, - [4182] = {.lex_state = 62, .external_lex_state = 15}, - [4183] = {.lex_state = 62, .external_lex_state = 14}, - [4184] = {.lex_state = 62, .external_lex_state = 13}, - [4185] = {.lex_state = 62, .external_lex_state = 7}, - [4186] = {.lex_state = 62, .external_lex_state = 16}, - [4187] = {.lex_state = 62, .external_lex_state = 8}, - [4188] = {.lex_state = 62, .external_lex_state = 15}, - [4189] = {.lex_state = 62, .external_lex_state = 14}, - [4190] = {.lex_state = 62, .external_lex_state = 13}, - [4191] = {.lex_state = 64, .external_lex_state = 10}, - [4192] = {.lex_state = 64, .external_lex_state = 10}, - [4193] = {.lex_state = 64, .external_lex_state = 12}, - [4194] = {.lex_state = 62, .external_lex_state = 11}, - [4195] = {.lex_state = 62, .external_lex_state = 9}, - [4196] = {.lex_state = 62, .external_lex_state = 9}, - [4197] = {.lex_state = 64, .external_lex_state = 10}, - [4198] = {.lex_state = 64, .external_lex_state = 12}, - [4199] = {.lex_state = 62, .external_lex_state = 11}, - [4200] = {.lex_state = 62, .external_lex_state = 9}, - [4201] = {.lex_state = 62, .external_lex_state = 11}, - [4202] = {.lex_state = 64, .external_lex_state = 12}, - [4203] = {.lex_state = 64, .external_lex_state = 10}, - [4204] = {.lex_state = 62, .external_lex_state = 9}, - [4205] = {.lex_state = 62, .external_lex_state = 11}, - [4206] = {.lex_state = 64, .external_lex_state = 12}, - [4207] = {.lex_state = 64, .external_lex_state = 10}, - [4208] = {.lex_state = 62, .external_lex_state = 13}, - [4209] = {.lex_state = 62, .external_lex_state = 14}, - [4210] = {.lex_state = 62, .external_lex_state = 7}, - [4211] = {.lex_state = 62, .external_lex_state = 15}, - [4212] = {.lex_state = 62, .external_lex_state = 9}, - [4213] = {.lex_state = 62, .external_lex_state = 11}, - [4214] = {.lex_state = 64, .external_lex_state = 12}, - [4215] = {.lex_state = 64, .external_lex_state = 10}, - [4216] = {.lex_state = 62, .external_lex_state = 8}, - [4217] = {.lex_state = 62, .external_lex_state = 7}, - [4218] = {.lex_state = 62, .external_lex_state = 16}, - [4219] = {.lex_state = 62, .external_lex_state = 7}, - [4220] = {.lex_state = 62, .external_lex_state = 8}, - [4221] = {.lex_state = 62, .external_lex_state = 16}, - [4222] = {.lex_state = 62, .external_lex_state = 15}, - [4223] = {.lex_state = 62, .external_lex_state = 8}, - [4224] = {.lex_state = 62, .external_lex_state = 15}, - [4225] = {.lex_state = 62, .external_lex_state = 14}, - [4226] = {.lex_state = 62, .external_lex_state = 14}, - [4227] = {.lex_state = 62, .external_lex_state = 13}, - [4228] = {.lex_state = 62, .external_lex_state = 13}, - [4229] = {.lex_state = 62, .external_lex_state = 16}, - [4230] = {.lex_state = 62, .external_lex_state = 16}, - [4231] = {.lex_state = 62, .external_lex_state = 8}, - [4232] = {.lex_state = 62, .external_lex_state = 7}, - [4233] = {.lex_state = 62, .external_lex_state = 15}, - [4234] = {.lex_state = 62, .external_lex_state = 13}, - [4235] = {.lex_state = 62, .external_lex_state = 14}, - [4236] = {.lex_state = 62, .external_lex_state = 15}, - [4237] = {.lex_state = 62, .external_lex_state = 8}, - [4238] = {.lex_state = 62, .external_lex_state = 16}, - [4239] = {.lex_state = 62, .external_lex_state = 7}, - [4240] = {.lex_state = 62, .external_lex_state = 7}, - [4241] = {.lex_state = 62, .external_lex_state = 16}, - [4242] = {.lex_state = 62, .external_lex_state = 8}, - [4243] = {.lex_state = 62, .external_lex_state = 15}, - [4244] = {.lex_state = 62, .external_lex_state = 14}, - [4245] = {.lex_state = 62, .external_lex_state = 13}, - [4246] = {.lex_state = 62, .external_lex_state = 11}, - [4247] = {.lex_state = 64, .external_lex_state = 10}, - [4248] = {.lex_state = 64, .external_lex_state = 12}, - [4249] = {.lex_state = 62, .external_lex_state = 11}, - [4250] = {.lex_state = 62, .external_lex_state = 9}, - [4251] = {.lex_state = 64, .external_lex_state = 10}, - [4252] = {.lex_state = 64, .external_lex_state = 12}, - [4253] = {.lex_state = 62, .external_lex_state = 11}, - [4254] = {.lex_state = 62, .external_lex_state = 9}, - [4255] = {.lex_state = 62, .external_lex_state = 14}, - [4256] = {.lex_state = 62, .external_lex_state = 13}, - [4257] = {.lex_state = 62, .external_lex_state = 13}, - [4258] = {.lex_state = 62, .external_lex_state = 14}, - [4259] = {.lex_state = 62, .external_lex_state = 15}, - [4260] = {.lex_state = 62, .external_lex_state = 8}, - [4261] = {.lex_state = 62, .external_lex_state = 16}, - [4262] = {.lex_state = 62, .external_lex_state = 7}, - [4263] = {.lex_state = 62, .external_lex_state = 7}, - [4264] = {.lex_state = 62, .external_lex_state = 16}, - [4265] = {.lex_state = 62, .external_lex_state = 13}, - [4266] = {.lex_state = 62, .external_lex_state = 14}, - [4267] = {.lex_state = 62, .external_lex_state = 15}, - [4268] = {.lex_state = 62, .external_lex_state = 8}, - [4269] = {.lex_state = 62, .external_lex_state = 16}, - [4270] = {.lex_state = 62, .external_lex_state = 7}, - [4271] = {.lex_state = 62, .external_lex_state = 8}, - [4272] = {.lex_state = 62, .external_lex_state = 15}, - [4273] = {.lex_state = 62, .external_lex_state = 14}, - [4274] = {.lex_state = 62, .external_lex_state = 13}, - [4275] = {.lex_state = 62, .external_lex_state = 7}, - [4276] = {.lex_state = 62, .external_lex_state = 16}, - [4277] = {.lex_state = 62, .external_lex_state = 8}, - [4278] = {.lex_state = 62, .external_lex_state = 15}, - [4279] = {.lex_state = 62, .external_lex_state = 14}, - [4280] = {.lex_state = 62, .external_lex_state = 13}, - [4281] = {.lex_state = 64, .external_lex_state = 10}, - [4282] = {.lex_state = 64, .external_lex_state = 12}, - [4283] = {.lex_state = 62, .external_lex_state = 11}, - [4284] = {.lex_state = 62, .external_lex_state = 9}, - [4285] = {.lex_state = 62, .external_lex_state = 9}, - [4286] = {.lex_state = 64, .external_lex_state = 10}, - [4287] = {.lex_state = 64, .external_lex_state = 12}, - [4288] = {.lex_state = 62, .external_lex_state = 11}, - [4289] = {.lex_state = 62, .external_lex_state = 9}, - [4290] = {.lex_state = 64, .external_lex_state = 10}, - [4291] = {.lex_state = 62, .external_lex_state = 11}, - [4292] = {.lex_state = 64, .external_lex_state = 12}, - [4293] = {.lex_state = 64, .external_lex_state = 10}, - [4294] = {.lex_state = 62, .external_lex_state = 11}, - [4295] = {.lex_state = 62, .external_lex_state = 9}, - [4296] = {.lex_state = 258, .external_lex_state = 6}, - [4297] = {.lex_state = 258, .external_lex_state = 6}, - [4298] = {.lex_state = 258, .external_lex_state = 6}, - [4299] = {.lex_state = 258, .external_lex_state = 6}, - [4300] = {.lex_state = 258, .external_lex_state = 6}, + [3544] = {.lex_state = 138, .external_lex_state = 4}, + [3545] = {.lex_state = 266, .external_lex_state = 4}, + [3546] = {.lex_state = 266, .external_lex_state = 4}, + [3547] = {.lex_state = 266, .external_lex_state = 4}, + [3548] = {.lex_state = 102, .external_lex_state = 4}, + [3549] = {.lex_state = 266, .external_lex_state = 4}, + [3550] = {.lex_state = 266, .external_lex_state = 4}, + [3551] = {.lex_state = 266, .external_lex_state = 4}, + [3552] = {.lex_state = 138, .external_lex_state = 4}, + [3553] = {.lex_state = 266, .external_lex_state = 4}, + [3554] = {.lex_state = 266, .external_lex_state = 4}, + [3555] = {.lex_state = 266, .external_lex_state = 4}, + [3556] = {.lex_state = 266, .external_lex_state = 4}, + [3557] = {.lex_state = 266, .external_lex_state = 4}, + [3558] = {.lex_state = 266, .external_lex_state = 4}, + [3559] = {.lex_state = 266, .external_lex_state = 4}, + [3560] = {.lex_state = 266, .external_lex_state = 4}, + [3561] = {.lex_state = 132, .external_lex_state = 4}, + [3562] = {.lex_state = 266, .external_lex_state = 4}, + [3563] = {.lex_state = 266, .external_lex_state = 4}, + [3564] = {.lex_state = 262, .external_lex_state = 4}, + [3565] = {.lex_state = 138, .external_lex_state = 4}, + [3566] = {.lex_state = 138, .external_lex_state = 4}, + [3567] = {.lex_state = 138, .external_lex_state = 4}, + [3568] = {.lex_state = 138, .external_lex_state = 4}, + [3569] = {.lex_state = 262, .external_lex_state = 4}, + [3570] = {.lex_state = 132, .external_lex_state = 4}, + [3571] = {.lex_state = 132, .external_lex_state = 4}, + [3572] = {.lex_state = 132, .external_lex_state = 4}, + [3573] = {.lex_state = 262, .external_lex_state = 4}, + [3574] = {.lex_state = 132, .external_lex_state = 4}, + [3575] = {.lex_state = 132, .external_lex_state = 4}, + [3576] = {.lex_state = 262, .external_lex_state = 4}, + [3577] = {.lex_state = 132, .external_lex_state = 4}, + [3578] = {.lex_state = 132, .external_lex_state = 4}, + [3579] = {.lex_state = 132, .external_lex_state = 4}, + [3580] = {.lex_state = 132, .external_lex_state = 4}, + [3581] = {.lex_state = 266, .external_lex_state = 4}, + [3582] = {.lex_state = 266, .external_lex_state = 4}, + [3583] = {.lex_state = 266, .external_lex_state = 4}, + [3584] = {.lex_state = 132, .external_lex_state = 4}, + [3585] = {.lex_state = 132, .external_lex_state = 4}, + [3586] = {.lex_state = 132, .external_lex_state = 4}, + [3587] = {.lex_state = 132, .external_lex_state = 4}, + [3588] = {.lex_state = 266, .external_lex_state = 4}, + [3589] = {.lex_state = 266, .external_lex_state = 4}, + [3590] = {.lex_state = 266, .external_lex_state = 4}, + [3591] = {.lex_state = 266, .external_lex_state = 4}, + [3592] = {.lex_state = 266, .external_lex_state = 4}, + [3593] = {.lex_state = 266, .external_lex_state = 4}, + [3594] = {.lex_state = 266, .external_lex_state = 4}, + [3595] = {.lex_state = 266, .external_lex_state = 4}, + [3596] = {.lex_state = 266, .external_lex_state = 4}, + [3597] = {.lex_state = 266, .external_lex_state = 4}, + [3598] = {.lex_state = 266, .external_lex_state = 4}, + [3599] = {.lex_state = 266, .external_lex_state = 4}, + [3600] = {.lex_state = 266, .external_lex_state = 4}, + [3601] = {.lex_state = 266, .external_lex_state = 4}, + [3602] = {.lex_state = 266, .external_lex_state = 4}, + [3603] = {.lex_state = 266, .external_lex_state = 4}, + [3604] = {.lex_state = 266, .external_lex_state = 4}, + [3605] = {.lex_state = 132, .external_lex_state = 4}, + [3606] = {.lex_state = 138, .external_lex_state = 4}, + [3607] = {.lex_state = 138, .external_lex_state = 4}, + [3608] = {.lex_state = 132, .external_lex_state = 4}, + [3609] = {.lex_state = 138, .external_lex_state = 4}, + [3610] = {.lex_state = 138, .external_lex_state = 4}, + [3611] = {.lex_state = 138, .external_lex_state = 4}, + [3612] = {.lex_state = 138, .external_lex_state = 4}, + [3613] = {.lex_state = 138, .external_lex_state = 4}, + [3614] = {.lex_state = 138, .external_lex_state = 4}, + [3615] = {.lex_state = 262, .external_lex_state = 5}, + [3616] = {.lex_state = 262, .external_lex_state = 5}, + [3617] = {.lex_state = 132, .external_lex_state = 4}, + [3618] = {.lex_state = 132, .external_lex_state = 4}, + [3619] = {.lex_state = 262, .external_lex_state = 4}, + [3620] = {.lex_state = 262, .external_lex_state = 4}, + [3621] = {.lex_state = 262, .external_lex_state = 5}, + [3622] = {.lex_state = 138, .external_lex_state = 4}, + [3623] = {.lex_state = 138, .external_lex_state = 4}, + [3624] = {.lex_state = 138, .external_lex_state = 4}, + [3625] = {.lex_state = 262, .external_lex_state = 4}, + [3626] = {.lex_state = 262, .external_lex_state = 4}, + [3627] = {.lex_state = 262, .external_lex_state = 4}, + [3628] = {.lex_state = 132, .external_lex_state = 4}, + [3629] = {.lex_state = 138, .external_lex_state = 4}, + [3630] = {.lex_state = 132, .external_lex_state = 4}, + [3631] = {.lex_state = 132, .external_lex_state = 4}, + [3632] = {.lex_state = 132, .external_lex_state = 4}, + [3633] = {.lex_state = 132, .external_lex_state = 4}, + [3634] = {.lex_state = 132, .external_lex_state = 4}, + [3635] = {.lex_state = 132, .external_lex_state = 4}, + [3636] = {.lex_state = 132, .external_lex_state = 4}, + [3637] = {.lex_state = 138, .external_lex_state = 4}, + [3638] = {.lex_state = 138, .external_lex_state = 4}, + [3639] = {.lex_state = 138, .external_lex_state = 4}, + [3640] = {.lex_state = 138, .external_lex_state = 4}, + [3641] = {.lex_state = 138, .external_lex_state = 4}, + [3642] = {.lex_state = 129, .external_lex_state = 5}, + [3643] = {.lex_state = 129, .external_lex_state = 5}, + [3644] = {.lex_state = 102, .external_lex_state = 4}, + [3645] = {.lex_state = 102, .external_lex_state = 4}, + [3646] = {.lex_state = 102, .external_lex_state = 4}, + [3647] = {.lex_state = 262, .external_lex_state = 4}, + [3648] = {.lex_state = 262, .external_lex_state = 4}, + [3649] = {.lex_state = 262, .external_lex_state = 4}, + [3650] = {.lex_state = 102, .external_lex_state = 4}, + [3651] = {.lex_state = 102, .external_lex_state = 4}, + [3652] = {.lex_state = 132, .external_lex_state = 4}, + [3653] = {.lex_state = 132, .external_lex_state = 4}, + [3654] = {.lex_state = 132, .external_lex_state = 4}, + [3655] = {.lex_state = 132, .external_lex_state = 4}, + [3656] = {.lex_state = 132, .external_lex_state = 4}, + [3657] = {.lex_state = 132, .external_lex_state = 4}, + [3658] = {.lex_state = 132, .external_lex_state = 4}, + [3659] = {.lex_state = 102, .external_lex_state = 4}, + [3660] = {.lex_state = 102, .external_lex_state = 4}, + [3661] = {.lex_state = 141, .external_lex_state = 4}, + [3662] = {.lex_state = 262, .external_lex_state = 4}, + [3663] = {.lex_state = 262, .external_lex_state = 4}, + [3664] = {.lex_state = 262, .external_lex_state = 4}, + [3665] = {.lex_state = 141, .external_lex_state = 4}, + [3666] = {.lex_state = 141, .external_lex_state = 4}, + [3667] = {.lex_state = 141, .external_lex_state = 4}, + [3668] = {.lex_state = 141, .external_lex_state = 4}, + [3669] = {.lex_state = 262, .external_lex_state = 4}, + [3670] = {.lex_state = 102, .external_lex_state = 4}, + [3671] = {.lex_state = 262, .external_lex_state = 4}, + [3672] = {.lex_state = 129, .external_lex_state = 4}, + [3673] = {.lex_state = 129, .external_lex_state = 4}, + [3674] = {.lex_state = 262, .external_lex_state = 4}, + [3675] = {.lex_state = 262, .external_lex_state = 4}, + [3676] = {.lex_state = 262, .external_lex_state = 4}, + [3677] = {.lex_state = 262, .external_lex_state = 4}, + [3678] = {.lex_state = 262, .external_lex_state = 4}, + [3679] = {.lex_state = 262, .external_lex_state = 4}, + [3680] = {.lex_state = 262, .external_lex_state = 4}, + [3681] = {.lex_state = 262, .external_lex_state = 4}, + [3682] = {.lex_state = 262, .external_lex_state = 4}, + [3683] = {.lex_state = 262, .external_lex_state = 4}, + [3684] = {.lex_state = 262, .external_lex_state = 4}, + [3685] = {.lex_state = 262, .external_lex_state = 4}, + [3686] = {.lex_state = 262, .external_lex_state = 4}, + [3687] = {.lex_state = 262, .external_lex_state = 4}, + [3688] = {.lex_state = 262, .external_lex_state = 4}, + [3689] = {.lex_state = 262, .external_lex_state = 4}, + [3690] = {.lex_state = 262, .external_lex_state = 4}, + [3691] = {.lex_state = 141, .external_lex_state = 4}, + [3692] = {.lex_state = 141, .external_lex_state = 4}, + [3693] = {.lex_state = 262, .external_lex_state = 4}, + [3694] = {.lex_state = 129, .external_lex_state = 4}, + [3695] = {.lex_state = 141, .external_lex_state = 4}, + [3696] = {.lex_state = 141, .external_lex_state = 4}, + [3697] = {.lex_state = 262, .external_lex_state = 4}, + [3698] = {.lex_state = 262, .external_lex_state = 4}, + [3699] = {.lex_state = 262, .external_lex_state = 4}, + [3700] = {.lex_state = 129, .external_lex_state = 4}, + [3701] = {.lex_state = 129, .external_lex_state = 4}, + [3702] = {.lex_state = 262, .external_lex_state = 4}, + [3703] = {.lex_state = 102, .external_lex_state = 4}, + [3704] = {.lex_state = 262, .external_lex_state = 4}, + [3705] = {.lex_state = 262, .external_lex_state = 4}, + [3706] = {.lex_state = 262, .external_lex_state = 4}, + [3707] = {.lex_state = 262, .external_lex_state = 4}, + [3708] = {.lex_state = 262, .external_lex_state = 4}, + [3709] = {.lex_state = 262, .external_lex_state = 4}, + [3710] = {.lex_state = 262, .external_lex_state = 4}, + [3711] = {.lex_state = 262, .external_lex_state = 4}, + [3712] = {.lex_state = 262, .external_lex_state = 4}, + [3713] = {.lex_state = 262, .external_lex_state = 4}, + [3714] = {.lex_state = 262, .external_lex_state = 4}, + [3715] = {.lex_state = 262, .external_lex_state = 4}, + [3716] = {.lex_state = 262, .external_lex_state = 4}, + [3717] = {.lex_state = 262, .external_lex_state = 4}, + [3718] = {.lex_state = 262, .external_lex_state = 4}, + [3719] = {.lex_state = 262, .external_lex_state = 4}, + [3720] = {.lex_state = 262, .external_lex_state = 4}, + [3721] = {.lex_state = 262, .external_lex_state = 4}, + [3722] = {.lex_state = 262, .external_lex_state = 4}, + [3723] = {.lex_state = 262, .external_lex_state = 4}, + [3724] = {.lex_state = 262, .external_lex_state = 4}, + [3725] = {.lex_state = 262, .external_lex_state = 4}, + [3726] = {.lex_state = 262, .external_lex_state = 4}, + [3727] = {.lex_state = 262, .external_lex_state = 4}, + [3728] = {.lex_state = 102, .external_lex_state = 4}, + [3729] = {.lex_state = 129, .external_lex_state = 4}, + [3730] = {.lex_state = 262, .external_lex_state = 4}, + [3731] = {.lex_state = 102, .external_lex_state = 4}, + [3732] = {.lex_state = 102, .external_lex_state = 4}, + [3733] = {.lex_state = 102, .external_lex_state = 4}, + [3734] = {.lex_state = 102, .external_lex_state = 4}, + [3735] = {.lex_state = 102, .external_lex_state = 4}, + [3736] = {.lex_state = 102, .external_lex_state = 4}, + [3737] = {.lex_state = 102, .external_lex_state = 4}, + [3738] = {.lex_state = 102, .external_lex_state = 4}, + [3739] = {.lex_state = 102, .external_lex_state = 4}, + [3740] = {.lex_state = 102, .external_lex_state = 4}, + [3741] = {.lex_state = 102, .external_lex_state = 4}, + [3742] = {.lex_state = 102, .external_lex_state = 4}, + [3743] = {.lex_state = 102, .external_lex_state = 4}, + [3744] = {.lex_state = 102, .external_lex_state = 4}, + [3745] = {.lex_state = 102, .external_lex_state = 4}, + [3746] = {.lex_state = 102, .external_lex_state = 4}, + [3747] = {.lex_state = 102, .external_lex_state = 4}, + [3748] = {.lex_state = 102, .external_lex_state = 4}, + [3749] = {.lex_state = 102, .external_lex_state = 4}, + [3750] = {.lex_state = 102, .external_lex_state = 4}, + [3751] = {.lex_state = 102, .external_lex_state = 4}, + [3752] = {.lex_state = 102, .external_lex_state = 4}, + [3753] = {.lex_state = 102, .external_lex_state = 4}, + [3754] = {.lex_state = 102, .external_lex_state = 4}, + [3755] = {.lex_state = 102, .external_lex_state = 4}, + [3756] = {.lex_state = 102, .external_lex_state = 4}, + [3757] = {.lex_state = 102, .external_lex_state = 4}, + [3758] = {.lex_state = 102, .external_lex_state = 4}, + [3759] = {.lex_state = 102, .external_lex_state = 4}, + [3760] = {.lex_state = 102, .external_lex_state = 4}, + [3761] = {.lex_state = 102, .external_lex_state = 4}, + [3762] = {.lex_state = 102, .external_lex_state = 4}, + [3763] = {.lex_state = 102, .external_lex_state = 4}, + [3764] = {.lex_state = 102, .external_lex_state = 4}, + [3765] = {.lex_state = 262, .external_lex_state = 4}, + [3766] = {.lex_state = 102, .external_lex_state = 4}, + [3767] = {.lex_state = 102, .external_lex_state = 4}, + [3768] = {.lex_state = 102, .external_lex_state = 4}, + [3769] = {.lex_state = 102, .external_lex_state = 4}, + [3770] = {.lex_state = 102, .external_lex_state = 4}, + [3771] = {.lex_state = 102, .external_lex_state = 4}, + [3772] = {.lex_state = 102, .external_lex_state = 4}, + [3773] = {.lex_state = 102, .external_lex_state = 4}, + [3774] = {.lex_state = 102, .external_lex_state = 4}, + [3775] = {.lex_state = 102, .external_lex_state = 4}, + [3776] = {.lex_state = 102, .external_lex_state = 4}, + [3777] = {.lex_state = 102, .external_lex_state = 4}, + [3778] = {.lex_state = 102, .external_lex_state = 4}, + [3779] = {.lex_state = 102, .external_lex_state = 4}, + [3780] = {.lex_state = 102, .external_lex_state = 4}, + [3781] = {.lex_state = 102, .external_lex_state = 4}, + [3782] = {.lex_state = 102, .external_lex_state = 4}, + [3783] = {.lex_state = 102, .external_lex_state = 4}, + [3784] = {.lex_state = 102, .external_lex_state = 4}, + [3785] = {.lex_state = 102, .external_lex_state = 4}, + [3786] = {.lex_state = 102, .external_lex_state = 4}, + [3787] = {.lex_state = 102, .external_lex_state = 4}, + [3788] = {.lex_state = 102, .external_lex_state = 4}, + [3789] = {.lex_state = 102, .external_lex_state = 4}, + [3790] = {.lex_state = 102, .external_lex_state = 4}, + [3791] = {.lex_state = 102, .external_lex_state = 4}, + [3792] = {.lex_state = 102, .external_lex_state = 4}, + [3793] = {.lex_state = 102, .external_lex_state = 4}, + [3794] = {.lex_state = 102, .external_lex_state = 4}, + [3795] = {.lex_state = 102, .external_lex_state = 4}, + [3796] = {.lex_state = 102, .external_lex_state = 4}, + [3797] = {.lex_state = 102, .external_lex_state = 4}, + [3798] = {.lex_state = 102, .external_lex_state = 4}, + [3799] = {.lex_state = 102, .external_lex_state = 4}, + [3800] = {.lex_state = 102, .external_lex_state = 4}, + [3801] = {.lex_state = 102, .external_lex_state = 4}, + [3802] = {.lex_state = 102, .external_lex_state = 4}, + [3803] = {.lex_state = 102, .external_lex_state = 4}, + [3804] = {.lex_state = 102, .external_lex_state = 4}, + [3805] = {.lex_state = 102, .external_lex_state = 4}, + [3806] = {.lex_state = 102, .external_lex_state = 4}, + [3807] = {.lex_state = 262, .external_lex_state = 4}, + [3808] = {.lex_state = 262, .external_lex_state = 4}, + [3809] = {.lex_state = 102, .external_lex_state = 4}, + [3810] = {.lex_state = 262, .external_lex_state = 4}, + [3811] = {.lex_state = 262, .external_lex_state = 4}, + [3812] = {.lex_state = 262, .external_lex_state = 4}, + [3813] = {.lex_state = 262, .external_lex_state = 4}, + [3814] = {.lex_state = 102, .external_lex_state = 4}, + [3815] = {.lex_state = 102, .external_lex_state = 4}, + [3816] = {.lex_state = 102, .external_lex_state = 4}, + [3817] = {.lex_state = 262, .external_lex_state = 4}, + [3818] = {.lex_state = 102, .external_lex_state = 4}, + [3819] = {.lex_state = 102, .external_lex_state = 4}, + [3820] = {.lex_state = 102, .external_lex_state = 4}, + [3821] = {.lex_state = 102, .external_lex_state = 4}, + [3822] = {.lex_state = 262, .external_lex_state = 4}, + [3823] = {.lex_state = 262, .external_lex_state = 4}, + [3824] = {.lex_state = 262, .external_lex_state = 4}, + [3825] = {.lex_state = 262, .external_lex_state = 4}, + [3826] = {.lex_state = 129, .external_lex_state = 4}, + [3827] = {.lex_state = 262, .external_lex_state = 4}, + [3828] = {.lex_state = 262, .external_lex_state = 4}, + [3829] = {.lex_state = 129, .external_lex_state = 4}, + [3830] = {.lex_state = 102, .external_lex_state = 4}, + [3831] = {.lex_state = 262, .external_lex_state = 4}, + [3832] = {.lex_state = 262, .external_lex_state = 4}, + [3833] = {.lex_state = 102, .external_lex_state = 4}, + [3834] = {.lex_state = 262, .external_lex_state = 4}, + [3835] = {.lex_state = 102, .external_lex_state = 4}, + [3836] = {.lex_state = 102, .external_lex_state = 4}, + [3837] = {.lex_state = 102, .external_lex_state = 4}, + [3838] = {.lex_state = 262, .external_lex_state = 4}, + [3839] = {.lex_state = 102, .external_lex_state = 4}, + [3840] = {.lex_state = 262, .external_lex_state = 4}, + [3841] = {.lex_state = 102, .external_lex_state = 4}, + [3842] = {.lex_state = 102, .external_lex_state = 4}, + [3843] = {.lex_state = 102, .external_lex_state = 4}, + [3844] = {.lex_state = 102, .external_lex_state = 4}, + [3845] = {.lex_state = 262, .external_lex_state = 4}, + [3846] = {.lex_state = 102, .external_lex_state = 4}, + [3847] = {.lex_state = 262, .external_lex_state = 4}, + [3848] = {.lex_state = 262, .external_lex_state = 4}, + [3849] = {.lex_state = 262, .external_lex_state = 4}, + [3850] = {.lex_state = 262, .external_lex_state = 4}, + [3851] = {.lex_state = 262, .external_lex_state = 4}, + [3852] = {.lex_state = 102, .external_lex_state = 4}, + [3853] = {.lex_state = 262, .external_lex_state = 4}, + [3854] = {.lex_state = 262, .external_lex_state = 4}, + [3855] = {.lex_state = 262, .external_lex_state = 4}, + [3856] = {.lex_state = 262, .external_lex_state = 4}, + [3857] = {.lex_state = 262, .external_lex_state = 4}, + [3858] = {.lex_state = 262, .external_lex_state = 4}, + [3859] = {.lex_state = 262, .external_lex_state = 4}, + [3860] = {.lex_state = 262, .external_lex_state = 4}, + [3861] = {.lex_state = 262, .external_lex_state = 4}, + [3862] = {.lex_state = 262, .external_lex_state = 4}, + [3863] = {.lex_state = 129, .external_lex_state = 4}, + [3864] = {.lex_state = 129, .external_lex_state = 4}, + [3865] = {.lex_state = 262, .external_lex_state = 4}, + [3866] = {.lex_state = 262, .external_lex_state = 4}, + [3867] = {.lex_state = 102, .external_lex_state = 4}, + [3868] = {.lex_state = 262, .external_lex_state = 4}, + [3869] = {.lex_state = 262, .external_lex_state = 4}, + [3870] = {.lex_state = 102, .external_lex_state = 4}, + [3871] = {.lex_state = 102, .external_lex_state = 4}, + [3872] = {.lex_state = 262, .external_lex_state = 4}, + [3873] = {.lex_state = 262, .external_lex_state = 4}, + [3874] = {.lex_state = 262, .external_lex_state = 4}, + [3875] = {.lex_state = 102, .external_lex_state = 4}, + [3876] = {.lex_state = 102, .external_lex_state = 4}, + [3877] = {.lex_state = 262, .external_lex_state = 4}, + [3878] = {.lex_state = 262, .external_lex_state = 4}, + [3879] = {.lex_state = 262, .external_lex_state = 4}, + [3880] = {.lex_state = 262, .external_lex_state = 4}, + [3881] = {.lex_state = 262, .external_lex_state = 4}, + [3882] = {.lex_state = 262, .external_lex_state = 4}, + [3883] = {.lex_state = 262, .external_lex_state = 4}, + [3884] = {.lex_state = 262, .external_lex_state = 4}, + [3885] = {.lex_state = 262, .external_lex_state = 4}, + [3886] = {.lex_state = 262, .external_lex_state = 4}, + [3887] = {.lex_state = 262, .external_lex_state = 4}, + [3888] = {.lex_state = 262, .external_lex_state = 4}, + [3889] = {.lex_state = 102, .external_lex_state = 4}, + [3890] = {.lex_state = 262, .external_lex_state = 4}, + [3891] = {.lex_state = 102, .external_lex_state = 4}, + [3892] = {.lex_state = 262, .external_lex_state = 4}, + [3893] = {.lex_state = 262, .external_lex_state = 4}, + [3894] = {.lex_state = 129, .external_lex_state = 4}, + [3895] = {.lex_state = 262, .external_lex_state = 4}, + [3896] = {.lex_state = 262, .external_lex_state = 4}, + [3897] = {.lex_state = 262, .external_lex_state = 4}, + [3898] = {.lex_state = 262, .external_lex_state = 4}, + [3899] = {.lex_state = 129, .external_lex_state = 4}, + [3900] = {.lex_state = 262, .external_lex_state = 4}, + [3901] = {.lex_state = 262, .external_lex_state = 4}, + [3902] = {.lex_state = 262, .external_lex_state = 4}, + [3903] = {.lex_state = 262, .external_lex_state = 4}, + [3904] = {.lex_state = 262, .external_lex_state = 4}, + [3905] = {.lex_state = 129, .external_lex_state = 4}, + [3906] = {.lex_state = 129, .external_lex_state = 4}, + [3907] = {.lex_state = 141, .external_lex_state = 4}, + [3908] = {.lex_state = 141, .external_lex_state = 4}, + [3909] = {.lex_state = 141, .external_lex_state = 4}, + [3910] = {.lex_state = 262, .external_lex_state = 4}, + [3911] = {.lex_state = 141, .external_lex_state = 4}, + [3912] = {.lex_state = 262, .external_lex_state = 4}, + [3913] = {.lex_state = 262, .external_lex_state = 4}, + [3914] = {.lex_state = 262, .external_lex_state = 4}, + [3915] = {.lex_state = 129, .external_lex_state = 4}, + [3916] = {.lex_state = 141, .external_lex_state = 4}, + [3917] = {.lex_state = 141, .external_lex_state = 4}, + [3918] = {.lex_state = 129, .external_lex_state = 4}, + [3919] = {.lex_state = 141, .external_lex_state = 4}, + [3920] = {.lex_state = 141, .external_lex_state = 4}, + [3921] = {.lex_state = 141, .external_lex_state = 4}, + [3922] = {.lex_state = 141, .external_lex_state = 4}, + [3923] = {.lex_state = 129, .external_lex_state = 4}, + [3924] = {.lex_state = 141, .external_lex_state = 4}, + [3925] = {.lex_state = 141, .external_lex_state = 4}, + [3926] = {.lex_state = 141, .external_lex_state = 4}, + [3927] = {.lex_state = 141, .external_lex_state = 4}, + [3928] = {.lex_state = 141, .external_lex_state = 4}, + [3929] = {.lex_state = 141, .external_lex_state = 4}, + [3930] = {.lex_state = 141, .external_lex_state = 4}, + [3931] = {.lex_state = 141, .external_lex_state = 4}, + [3932] = {.lex_state = 141, .external_lex_state = 4}, + [3933] = {.lex_state = 141, .external_lex_state = 4}, + [3934] = {.lex_state = 141, .external_lex_state = 4}, + [3935] = {.lex_state = 141, .external_lex_state = 4}, + [3936] = {.lex_state = 141, .external_lex_state = 4}, + [3937] = {.lex_state = 262, .external_lex_state = 4}, + [3938] = {.lex_state = 141, .external_lex_state = 4}, + [3939] = {.lex_state = 141, .external_lex_state = 4}, + [3940] = {.lex_state = 141, .external_lex_state = 4}, + [3941] = {.lex_state = 141, .external_lex_state = 4}, + [3942] = {.lex_state = 141, .external_lex_state = 4}, + [3943] = {.lex_state = 141, .external_lex_state = 4}, + [3944] = {.lex_state = 141, .external_lex_state = 4}, + [3945] = {.lex_state = 141, .external_lex_state = 4}, + [3946] = {.lex_state = 141, .external_lex_state = 4}, + [3947] = {.lex_state = 141, .external_lex_state = 4}, + [3948] = {.lex_state = 141, .external_lex_state = 4}, + [3949] = {.lex_state = 262, .external_lex_state = 4}, + [3950] = {.lex_state = 262, .external_lex_state = 4}, + [3951] = {.lex_state = 262, .external_lex_state = 4}, + [3952] = {.lex_state = 129, .external_lex_state = 4}, + [3953] = {.lex_state = 262, .external_lex_state = 4}, + [3954] = {.lex_state = 262, .external_lex_state = 4}, + [3955] = {.lex_state = 262, .external_lex_state = 4}, + [3956] = {.lex_state = 129, .external_lex_state = 4}, + [3957] = {.lex_state = 129, .external_lex_state = 4}, + [3958] = {.lex_state = 141, .external_lex_state = 4}, + [3959] = {.lex_state = 262, .external_lex_state = 4}, + [3960] = {.lex_state = 262, .external_lex_state = 4}, + [3961] = {.lex_state = 262, .external_lex_state = 4}, + [3962] = {.lex_state = 262, .external_lex_state = 4}, + [3963] = {.lex_state = 262, .external_lex_state = 4}, + [3964] = {.lex_state = 262, .external_lex_state = 4}, + [3965] = {.lex_state = 262, .external_lex_state = 4}, + [3966] = {.lex_state = 262, .external_lex_state = 4}, + [3967] = {.lex_state = 262, .external_lex_state = 4}, + [3968] = {.lex_state = 262, .external_lex_state = 4}, + [3969] = {.lex_state = 262, .external_lex_state = 4}, + [3970] = {.lex_state = 262, .external_lex_state = 4}, + [3971] = {.lex_state = 262, .external_lex_state = 4}, + [3972] = {.lex_state = 262, .external_lex_state = 4}, + [3973] = {.lex_state = 262, .external_lex_state = 4}, + [3974] = {.lex_state = 262, .external_lex_state = 4}, + [3975] = {.lex_state = 262, .external_lex_state = 4}, + [3976] = {.lex_state = 262, .external_lex_state = 4}, + [3977] = {.lex_state = 141, .external_lex_state = 4}, + [3978] = {.lex_state = 262, .external_lex_state = 4}, + [3979] = {.lex_state = 262, .external_lex_state = 4}, + [3980] = {.lex_state = 262, .external_lex_state = 4}, + [3981] = {.lex_state = 262, .external_lex_state = 4}, + [3982] = {.lex_state = 129, .external_lex_state = 4}, + [3983] = {.lex_state = 129, .external_lex_state = 4}, + [3984] = {.lex_state = 129, .external_lex_state = 4}, + [3985] = {.lex_state = 262, .external_lex_state = 4}, + [3986] = {.lex_state = 141, .external_lex_state = 4}, + [3987] = {.lex_state = 141, .external_lex_state = 4}, + [3988] = {.lex_state = 141, .external_lex_state = 4}, + [3989] = {.lex_state = 141, .external_lex_state = 4}, + [3990] = {.lex_state = 141, .external_lex_state = 4}, + [3991] = {.lex_state = 141, .external_lex_state = 4}, + [3992] = {.lex_state = 141, .external_lex_state = 4}, + [3993] = {.lex_state = 141, .external_lex_state = 4}, + [3994] = {.lex_state = 141, .external_lex_state = 4}, + [3995] = {.lex_state = 141, .external_lex_state = 4}, + [3996] = {.lex_state = 141, .external_lex_state = 4}, + [3997] = {.lex_state = 141, .external_lex_state = 4}, + [3998] = {.lex_state = 141, .external_lex_state = 4}, + [3999] = {.lex_state = 141, .external_lex_state = 4}, + [4000] = {.lex_state = 141, .external_lex_state = 4}, + [4001] = {.lex_state = 129, .external_lex_state = 4}, + [4002] = {.lex_state = 262, .external_lex_state = 4}, + [4003] = {.lex_state = 129, .external_lex_state = 4}, + [4004] = {.lex_state = 129, .external_lex_state = 4}, + [4005] = {.lex_state = 129, .external_lex_state = 4}, + [4006] = {.lex_state = 129, .external_lex_state = 4}, + [4007] = {.lex_state = 129, .external_lex_state = 4}, + [4008] = {.lex_state = 129, .external_lex_state = 4}, + [4009] = {.lex_state = 129, .external_lex_state = 4}, + [4010] = {.lex_state = 129, .external_lex_state = 4}, + [4011] = {.lex_state = 129, .external_lex_state = 4}, + [4012] = {.lex_state = 129, .external_lex_state = 4}, + [4013] = {.lex_state = 129, .external_lex_state = 4}, + [4014] = {.lex_state = 129, .external_lex_state = 4}, + [4015] = {.lex_state = 129, .external_lex_state = 4}, + [4016] = {.lex_state = 129, .external_lex_state = 4}, + [4017] = {.lex_state = 129, .external_lex_state = 4}, + [4018] = {.lex_state = 129, .external_lex_state = 4}, + [4019] = {.lex_state = 129, .external_lex_state = 4}, + [4020] = {.lex_state = 129, .external_lex_state = 4}, + [4021] = {.lex_state = 129, .external_lex_state = 4}, + [4022] = {.lex_state = 129, .external_lex_state = 4}, + [4023] = {.lex_state = 129, .external_lex_state = 4}, + [4024] = {.lex_state = 129, .external_lex_state = 4}, + [4025] = {.lex_state = 129, .external_lex_state = 4}, + [4026] = {.lex_state = 129, .external_lex_state = 4}, + [4027] = {.lex_state = 129, .external_lex_state = 4}, + [4028] = {.lex_state = 129, .external_lex_state = 4}, + [4029] = {.lex_state = 129, .external_lex_state = 4}, + [4030] = {.lex_state = 129, .external_lex_state = 4}, + [4031] = {.lex_state = 262, .external_lex_state = 4}, + [4032] = {.lex_state = 129, .external_lex_state = 4}, + [4033] = {.lex_state = 129, .external_lex_state = 4}, + [4034] = {.lex_state = 129, .external_lex_state = 4}, + [4035] = {.lex_state = 129, .external_lex_state = 4}, + [4036] = {.lex_state = 102, .external_lex_state = 4}, + [4037] = {.lex_state = 102, .external_lex_state = 4}, + [4038] = {.lex_state = 129, .external_lex_state = 4}, + [4039] = {.lex_state = 129, .external_lex_state = 4}, + [4040] = {.lex_state = 129, .external_lex_state = 4}, + [4041] = {.lex_state = 129, .external_lex_state = 4}, + [4042] = {.lex_state = 129, .external_lex_state = 4}, + [4043] = {.lex_state = 129, .external_lex_state = 4}, + [4044] = {.lex_state = 129, .external_lex_state = 4}, + [4045] = {.lex_state = 129, .external_lex_state = 4}, + [4046] = {.lex_state = 262, .external_lex_state = 4}, + [4047] = {.lex_state = 129, .external_lex_state = 4}, + [4048] = {.lex_state = 129, .external_lex_state = 4}, + [4049] = {.lex_state = 262, .external_lex_state = 4}, + [4050] = {.lex_state = 129, .external_lex_state = 4}, + [4051] = {.lex_state = 129, .external_lex_state = 4}, + [4052] = {.lex_state = 129, .external_lex_state = 4}, + [4053] = {.lex_state = 129, .external_lex_state = 4}, + [4054] = {.lex_state = 129, .external_lex_state = 4}, + [4055] = {.lex_state = 129, .external_lex_state = 4}, + [4056] = {.lex_state = 129, .external_lex_state = 4}, + [4057] = {.lex_state = 262, .external_lex_state = 4}, + [4058] = {.lex_state = 262, .external_lex_state = 4}, + [4059] = {.lex_state = 129, .external_lex_state = 4}, + [4060] = {.lex_state = 129, .external_lex_state = 4}, + [4061] = {.lex_state = 262, .external_lex_state = 4}, + [4062] = {.lex_state = 129, .external_lex_state = 4}, + [4063] = {.lex_state = 129, .external_lex_state = 4}, + [4064] = {.lex_state = 129, .external_lex_state = 4}, + [4065] = {.lex_state = 129, .external_lex_state = 4}, + [4066] = {.lex_state = 129, .external_lex_state = 4}, + [4067] = {.lex_state = 129, .external_lex_state = 4}, + [4068] = {.lex_state = 129, .external_lex_state = 4}, + [4069] = {.lex_state = 262, .external_lex_state = 4}, + [4070] = {.lex_state = 129, .external_lex_state = 4}, + [4071] = {.lex_state = 129, .external_lex_state = 4}, + [4072] = {.lex_state = 129, .external_lex_state = 4}, + [4073] = {.lex_state = 129, .external_lex_state = 4}, + [4074] = {.lex_state = 262, .external_lex_state = 4}, + [4075] = {.lex_state = 262, .external_lex_state = 4}, + [4076] = {.lex_state = 129, .external_lex_state = 4}, + [4077] = {.lex_state = 129, .external_lex_state = 4}, + [4078] = {.lex_state = 262, .external_lex_state = 4}, + [4079] = {.lex_state = 262, .external_lex_state = 4}, + [4080] = {.lex_state = 129, .external_lex_state = 4}, + [4081] = {.lex_state = 129, .external_lex_state = 4}, + [4082] = {.lex_state = 262, .external_lex_state = 4}, + [4083] = {.lex_state = 129, .external_lex_state = 4}, + [4084] = {.lex_state = 262, .external_lex_state = 4}, + [4085] = {.lex_state = 262, .external_lex_state = 4}, + [4086] = {.lex_state = 262, .external_lex_state = 4}, + [4087] = {.lex_state = 262, .external_lex_state = 4}, + [4088] = {.lex_state = 262, .external_lex_state = 4}, + [4089] = {.lex_state = 129, .external_lex_state = 4}, + [4090] = {.lex_state = 129, .external_lex_state = 4}, + [4091] = {.lex_state = 129, .external_lex_state = 4}, + [4092] = {.lex_state = 129, .external_lex_state = 4}, + [4093] = {.lex_state = 262, .external_lex_state = 4}, + [4094] = {.lex_state = 262, .external_lex_state = 4}, + [4095] = {.lex_state = 129, .external_lex_state = 4}, + [4096] = {.lex_state = 129, .external_lex_state = 4}, + [4097] = {.lex_state = 129, .external_lex_state = 4}, + [4098] = {.lex_state = 129, .external_lex_state = 4}, + [4099] = {.lex_state = 262, .external_lex_state = 4}, + [4100] = {.lex_state = 129, .external_lex_state = 4}, + [4101] = {.lex_state = 129, .external_lex_state = 4}, + [4102] = {.lex_state = 129, .external_lex_state = 4}, + [4103] = {.lex_state = 129, .external_lex_state = 4}, + [4104] = {.lex_state = 262, .external_lex_state = 4}, + [4105] = {.lex_state = 129, .external_lex_state = 4}, + [4106] = {.lex_state = 129, .external_lex_state = 4}, + [4107] = {.lex_state = 129, .external_lex_state = 4}, + [4108] = {.lex_state = 129, .external_lex_state = 4}, + [4109] = {.lex_state = 129, .external_lex_state = 4}, + [4110] = {.lex_state = 129, .external_lex_state = 4}, + [4111] = {.lex_state = 129, .external_lex_state = 4}, + [4112] = {.lex_state = 129, .external_lex_state = 4}, + [4113] = {.lex_state = 129, .external_lex_state = 4}, + [4114] = {.lex_state = 129, .external_lex_state = 4}, + [4115] = {.lex_state = 129, .external_lex_state = 4}, + [4116] = {.lex_state = 129, .external_lex_state = 4}, + [4117] = {.lex_state = 129, .external_lex_state = 4}, + [4118] = {.lex_state = 129, .external_lex_state = 4}, + [4119] = {.lex_state = 129, .external_lex_state = 4}, + [4120] = {.lex_state = 129, .external_lex_state = 4}, + [4121] = {.lex_state = 129, .external_lex_state = 4}, + [4122] = {.lex_state = 102, .external_lex_state = 4}, + [4123] = {.lex_state = 129, .external_lex_state = 4}, + [4124] = {.lex_state = 129, .external_lex_state = 4}, + [4125] = {.lex_state = 129, .external_lex_state = 4}, + [4126] = {.lex_state = 129, .external_lex_state = 4}, + [4127] = {.lex_state = 129, .external_lex_state = 4}, + [4128] = {.lex_state = 129, .external_lex_state = 4}, + [4129] = {.lex_state = 129, .external_lex_state = 4}, + [4130] = {.lex_state = 129, .external_lex_state = 4}, + [4131] = {.lex_state = 262, .external_lex_state = 4}, + [4132] = {.lex_state = 262, .external_lex_state = 4}, + [4133] = {.lex_state = 262, .external_lex_state = 4}, + [4134] = {.lex_state = 262, .external_lex_state = 4}, + [4135] = {.lex_state = 262, .external_lex_state = 4}, + [4136] = {.lex_state = 262, .external_lex_state = 4}, + [4137] = {.lex_state = 262, .external_lex_state = 4}, + [4138] = {.lex_state = 262, .external_lex_state = 4}, + [4139] = {.lex_state = 262, .external_lex_state = 4}, + [4140] = {.lex_state = 102, .external_lex_state = 4}, + [4141] = {.lex_state = 262, .external_lex_state = 4}, + [4142] = {.lex_state = 262, .external_lex_state = 4}, + [4143] = {.lex_state = 262, .external_lex_state = 4}, + [4144] = {.lex_state = 102, .external_lex_state = 4}, + [4145] = {.lex_state = 262, .external_lex_state = 4}, + [4146] = {.lex_state = 262, .external_lex_state = 4}, + [4147] = {.lex_state = 262, .external_lex_state = 4}, + [4148] = {.lex_state = 262, .external_lex_state = 4}, + [4149] = {.lex_state = 262, .external_lex_state = 4}, + [4150] = {.lex_state = 262, .external_lex_state = 4}, + [4151] = {.lex_state = 262, .external_lex_state = 4}, + [4152] = {.lex_state = 262, .external_lex_state = 4}, + [4153] = {.lex_state = 262, .external_lex_state = 4}, + [4154] = {.lex_state = 262, .external_lex_state = 4}, + [4155] = {.lex_state = 262, .external_lex_state = 4}, + [4156] = {.lex_state = 262, .external_lex_state = 4}, + [4157] = {.lex_state = 262, .external_lex_state = 4}, + [4158] = {.lex_state = 262, .external_lex_state = 4}, + [4159] = {.lex_state = 262, .external_lex_state = 4}, + [4160] = {.lex_state = 50, .external_lex_state = 6}, + [4161] = {.lex_state = 50, .external_lex_state = 6}, + [4162] = {.lex_state = 50, .external_lex_state = 6}, + [4163] = {.lex_state = 50, .external_lex_state = 6}, + [4164] = {.lex_state = 50, .external_lex_state = 6}, + [4165] = {.lex_state = 50, .external_lex_state = 6}, + [4166] = {.lex_state = 50, .external_lex_state = 6}, + [4167] = {.lex_state = 50, .external_lex_state = 6}, + [4168] = {.lex_state = 50, .external_lex_state = 6}, + [4169] = {.lex_state = 50, .external_lex_state = 6}, + [4170] = {.lex_state = 50, .external_lex_state = 6}, + [4171] = {.lex_state = 50, .external_lex_state = 6}, + [4172] = {.lex_state = 50, .external_lex_state = 6}, + [4173] = {.lex_state = 50, .external_lex_state = 6}, + [4174] = {.lex_state = 50, .external_lex_state = 6}, + [4175] = {.lex_state = 50, .external_lex_state = 6}, + [4176] = {.lex_state = 50, .external_lex_state = 6}, + [4177] = {.lex_state = 50, .external_lex_state = 6}, + [4178] = {.lex_state = 50, .external_lex_state = 6}, + [4179] = {.lex_state = 50, .external_lex_state = 6}, + [4180] = {.lex_state = 50, .external_lex_state = 6}, + [4181] = {.lex_state = 50, .external_lex_state = 6}, + [4182] = {.lex_state = 50, .external_lex_state = 6}, + [4183] = {.lex_state = 50, .external_lex_state = 6}, + [4184] = {.lex_state = 50, .external_lex_state = 6}, + [4185] = {.lex_state = 50, .external_lex_state = 6}, + [4186] = {.lex_state = 50, .external_lex_state = 6}, + [4187] = {.lex_state = 50, .external_lex_state = 6}, + [4188] = {.lex_state = 50, .external_lex_state = 6}, + [4189] = {.lex_state = 50, .external_lex_state = 6}, + [4190] = {.lex_state = 50, .external_lex_state = 6}, + [4191] = {.lex_state = 50, .external_lex_state = 6}, + [4192] = {.lex_state = 50, .external_lex_state = 6}, + [4193] = {.lex_state = 50, .external_lex_state = 6}, + [4194] = {.lex_state = 50, .external_lex_state = 6}, + [4195] = {.lex_state = 50, .external_lex_state = 6}, + [4196] = {.lex_state = 102, .external_lex_state = 6}, + [4197] = {.lex_state = 102, .external_lex_state = 6}, + [4198] = {.lex_state = 102, .external_lex_state = 6}, + [4199] = {.lex_state = 102, .external_lex_state = 6}, + [4200] = {.lex_state = 102, .external_lex_state = 6}, + [4201] = {.lex_state = 102, .external_lex_state = 6}, + [4202] = {.lex_state = 102, .external_lex_state = 6}, + [4203] = {.lex_state = 102, .external_lex_state = 6}, + [4204] = {.lex_state = 102, .external_lex_state = 6}, + [4205] = {.lex_state = 102, .external_lex_state = 6}, + [4206] = {.lex_state = 102, .external_lex_state = 6}, + [4207] = {.lex_state = 102, .external_lex_state = 6}, + [4208] = {.lex_state = 102, .external_lex_state = 6}, + [4209] = {.lex_state = 102, .external_lex_state = 6}, + [4210] = {.lex_state = 102, .external_lex_state = 6}, + [4211] = {.lex_state = 102, .external_lex_state = 6}, + [4212] = {.lex_state = 102, .external_lex_state = 6}, + [4213] = {.lex_state = 102, .external_lex_state = 6}, + [4214] = {.lex_state = 102, .external_lex_state = 6}, + [4215] = {.lex_state = 102, .external_lex_state = 6}, + [4216] = {.lex_state = 102, .external_lex_state = 6}, + [4217] = {.lex_state = 102, .external_lex_state = 6}, + [4218] = {.lex_state = 102, .external_lex_state = 6}, + [4219] = {.lex_state = 102, .external_lex_state = 6}, + [4220] = {.lex_state = 102, .external_lex_state = 6}, + [4221] = {.lex_state = 102, .external_lex_state = 6}, + [4222] = {.lex_state = 102, .external_lex_state = 6}, + [4223] = {.lex_state = 102, .external_lex_state = 6}, + [4224] = {.lex_state = 102, .external_lex_state = 6}, + [4225] = {.lex_state = 102, .external_lex_state = 6}, + [4226] = {.lex_state = 102, .external_lex_state = 6}, + [4227] = {.lex_state = 102, .external_lex_state = 6}, + [4228] = {.lex_state = 102, .external_lex_state = 6}, + [4229] = {.lex_state = 102, .external_lex_state = 6}, + [4230] = {.lex_state = 102, .external_lex_state = 6}, + [4231] = {.lex_state = 102, .external_lex_state = 6}, + [4232] = {.lex_state = 102, .external_lex_state = 6}, + [4233] = {.lex_state = 102, .external_lex_state = 6}, + [4234] = {.lex_state = 102, .external_lex_state = 6}, + [4235] = {.lex_state = 102, .external_lex_state = 6}, + [4236] = {.lex_state = 102, .external_lex_state = 6}, + [4237] = {.lex_state = 102, .external_lex_state = 6}, + [4238] = {.lex_state = 102, .external_lex_state = 6}, + [4239] = {.lex_state = 102, .external_lex_state = 6}, + [4240] = {.lex_state = 102, .external_lex_state = 6}, + [4241] = {.lex_state = 102, .external_lex_state = 6}, + [4242] = {.lex_state = 102, .external_lex_state = 6}, + [4243] = {.lex_state = 102, .external_lex_state = 6}, + [4244] = {.lex_state = 102, .external_lex_state = 6}, + [4245] = {.lex_state = 102, .external_lex_state = 6}, + [4246] = {.lex_state = 102, .external_lex_state = 6}, + [4247] = {.lex_state = 102, .external_lex_state = 6}, + [4248] = {.lex_state = 102, .external_lex_state = 6}, + [4249] = {.lex_state = 102, .external_lex_state = 6}, + [4250] = {.lex_state = 102, .external_lex_state = 6}, + [4251] = {.lex_state = 102, .external_lex_state = 6}, + [4252] = {.lex_state = 102, .external_lex_state = 6}, + [4253] = {.lex_state = 102, .external_lex_state = 6}, + [4254] = {.lex_state = 102, .external_lex_state = 6}, + [4255] = {.lex_state = 102, .external_lex_state = 6}, + [4256] = {.lex_state = 102, .external_lex_state = 6}, + [4257] = {.lex_state = 102, .external_lex_state = 6}, + [4258] = {.lex_state = 102, .external_lex_state = 6}, + [4259] = {.lex_state = 102, .external_lex_state = 6}, + [4260] = {.lex_state = 102, .external_lex_state = 6}, + [4261] = {.lex_state = 102, .external_lex_state = 6}, + [4262] = {.lex_state = 102, .external_lex_state = 6}, + [4263] = {.lex_state = 102, .external_lex_state = 6}, + [4264] = {.lex_state = 102, .external_lex_state = 6}, + [4265] = {.lex_state = 102, .external_lex_state = 6}, + [4266] = {.lex_state = 102, .external_lex_state = 6}, + [4267] = {.lex_state = 102, .external_lex_state = 6}, + [4268] = {.lex_state = 144, .external_lex_state = 6}, + [4269] = {.lex_state = 144, .external_lex_state = 6}, + [4270] = {.lex_state = 102, .external_lex_state = 6}, + [4271] = {.lex_state = 102, .external_lex_state = 6}, + [4272] = {.lex_state = 102, .external_lex_state = 6}, + [4273] = {.lex_state = 102, .external_lex_state = 6}, + [4274] = {.lex_state = 102, .external_lex_state = 6}, + [4275] = {.lex_state = 102, .external_lex_state = 6}, + [4276] = {.lex_state = 102, .external_lex_state = 6}, + [4277] = {.lex_state = 102, .external_lex_state = 6}, + [4278] = {.lex_state = 102, .external_lex_state = 6}, + [4279] = {.lex_state = 102, .external_lex_state = 6}, + [4280] = {.lex_state = 102, .external_lex_state = 6}, + [4281] = {.lex_state = 102, .external_lex_state = 6}, + [4282] = {.lex_state = 102, .external_lex_state = 6}, + [4283] = {.lex_state = 102, .external_lex_state = 6}, + [4284] = {.lex_state = 102, .external_lex_state = 6}, + [4285] = {.lex_state = 102, .external_lex_state = 6}, + [4286] = {.lex_state = 102, .external_lex_state = 6}, + [4287] = {.lex_state = 102, .external_lex_state = 6}, + [4288] = {.lex_state = 102, .external_lex_state = 6}, + [4289] = {.lex_state = 102, .external_lex_state = 6}, + [4290] = {.lex_state = 102, .external_lex_state = 6}, + [4291] = {.lex_state = 102, .external_lex_state = 6}, + [4292] = {.lex_state = 102, .external_lex_state = 6}, + [4293] = {.lex_state = 102, .external_lex_state = 6}, + [4294] = {.lex_state = 102, .external_lex_state = 6}, + [4295] = {.lex_state = 102, .external_lex_state = 6}, + [4296] = {.lex_state = 102, .external_lex_state = 6}, + [4297] = {.lex_state = 102, .external_lex_state = 6}, + [4298] = {.lex_state = 102, .external_lex_state = 6}, + [4299] = {.lex_state = 102, .external_lex_state = 6}, + [4300] = {.lex_state = 102, .external_lex_state = 6}, [4301] = {.lex_state = 102, .external_lex_state = 6}, - [4302] = {.lex_state = 258, .external_lex_state = 6}, + [4302] = {.lex_state = 102, .external_lex_state = 6}, [4303] = {.lex_state = 102, .external_lex_state = 6}, - [4304] = {.lex_state = 258, .external_lex_state = 6}, - [4305] = {.lex_state = 258, .external_lex_state = 6}, + [4304] = {.lex_state = 102, .external_lex_state = 6}, + [4305] = {.lex_state = 102, .external_lex_state = 6}, [4306] = {.lex_state = 102, .external_lex_state = 6}, [4307] = {.lex_state = 102, .external_lex_state = 6}, - [4308] = {.lex_state = 258, .external_lex_state = 6}, - [4309] = {.lex_state = 258, .external_lex_state = 6}, - [4310] = {.lex_state = 258, .external_lex_state = 6}, + [4308] = {.lex_state = 102, .external_lex_state = 6}, + [4309] = {.lex_state = 102, .external_lex_state = 6}, + [4310] = {.lex_state = 102, .external_lex_state = 6}, [4311] = {.lex_state = 102, .external_lex_state = 6}, - [4312] = {.lex_state = 258, .external_lex_state = 6}, - [4313] = {.lex_state = 258, .external_lex_state = 6}, - [4314] = {.lex_state = 258, .external_lex_state = 6}, - [4315] = {.lex_state = 258, .external_lex_state = 6}, - [4316] = {.lex_state = 258, .external_lex_state = 6}, + [4312] = {.lex_state = 102, .external_lex_state = 6}, + [4313] = {.lex_state = 102, .external_lex_state = 6}, + [4314] = {.lex_state = 102, .external_lex_state = 6}, + [4315] = {.lex_state = 102, .external_lex_state = 6}, + [4316] = {.lex_state = 102, .external_lex_state = 6}, [4317] = {.lex_state = 102, .external_lex_state = 6}, - [4318] = {.lex_state = 258, .external_lex_state = 6}, + [4318] = {.lex_state = 102, .external_lex_state = 6}, [4319] = {.lex_state = 102, .external_lex_state = 6}, [4320] = {.lex_state = 102, .external_lex_state = 6}, - [4321] = {.lex_state = 258, .external_lex_state = 6}, + [4321] = {.lex_state = 102, .external_lex_state = 6}, [4322] = {.lex_state = 102, .external_lex_state = 6}, - [4323] = {.lex_state = 258, .external_lex_state = 6}, + [4323] = {.lex_state = 102, .external_lex_state = 6}, [4324] = {.lex_state = 102, .external_lex_state = 6}, [4325] = {.lex_state = 102, .external_lex_state = 6}, - [4326] = {.lex_state = 258, .external_lex_state = 6}, + [4326] = {.lex_state = 102, .external_lex_state = 6}, [4327] = {.lex_state = 102, .external_lex_state = 6}, [4328] = {.lex_state = 102, .external_lex_state = 6}, [4329] = {.lex_state = 102, .external_lex_state = 6}, - [4330] = {.lex_state = 258, .external_lex_state = 6}, - [4331] = {.lex_state = 258, .external_lex_state = 6}, - [4332] = {.lex_state = 258, .external_lex_state = 6}, - [4333] = {.lex_state = 258, .external_lex_state = 6}, - [4334] = {.lex_state = 258, .external_lex_state = 6}, - [4335] = {.lex_state = 258, .external_lex_state = 6}, - [4336] = {.lex_state = 258, .external_lex_state = 6}, + [4330] = {.lex_state = 102, .external_lex_state = 6}, + [4331] = {.lex_state = 102, .external_lex_state = 6}, + [4332] = {.lex_state = 102, .external_lex_state = 6}, + [4333] = {.lex_state = 102, .external_lex_state = 6}, + [4334] = {.lex_state = 102, .external_lex_state = 6}, + [4335] = {.lex_state = 102, .external_lex_state = 6}, + [4336] = {.lex_state = 102, .external_lex_state = 6}, [4337] = {.lex_state = 102, .external_lex_state = 6}, [4338] = {.lex_state = 102, .external_lex_state = 6}, - [4339] = {.lex_state = 258, .external_lex_state = 6}, - [4340] = {.lex_state = 258, .external_lex_state = 6}, - [4341] = {.lex_state = 258, .external_lex_state = 6}, + [4339] = {.lex_state = 102, .external_lex_state = 6}, + [4340] = {.lex_state = 102, .external_lex_state = 6}, + [4341] = {.lex_state = 102, .external_lex_state = 6}, [4342] = {.lex_state = 102, .external_lex_state = 6}, - [4343] = {.lex_state = 258, .external_lex_state = 6}, - [4344] = {.lex_state = 258, .external_lex_state = 6}, - [4345] = {.lex_state = 258, .external_lex_state = 6}, + [4343] = {.lex_state = 102, .external_lex_state = 6}, + [4344] = {.lex_state = 102, .external_lex_state = 6}, + [4345] = {.lex_state = 102, .external_lex_state = 6}, [4346] = {.lex_state = 102, .external_lex_state = 6}, [4347] = {.lex_state = 102, .external_lex_state = 6}, [4348] = {.lex_state = 102, .external_lex_state = 6}, [4349] = {.lex_state = 102, .external_lex_state = 6}, - [4350] = {.lex_state = 258, .external_lex_state = 6}, - [4351] = {.lex_state = 258, .external_lex_state = 6}, + [4350] = {.lex_state = 144, .external_lex_state = 6}, + [4351] = {.lex_state = 102, .external_lex_state = 6}, [4352] = {.lex_state = 102, .external_lex_state = 6}, - [4353] = {.lex_state = 258, .external_lex_state = 6}, - [4354] = {.lex_state = 258, .external_lex_state = 6}, + [4353] = {.lex_state = 102, .external_lex_state = 6}, + [4354] = {.lex_state = 102, .external_lex_state = 6}, [4355] = {.lex_state = 102, .external_lex_state = 6}, [4356] = {.lex_state = 102, .external_lex_state = 6}, - [4357] = {.lex_state = 258, .external_lex_state = 6}, - [4358] = {.lex_state = 258, .external_lex_state = 6}, + [4357] = {.lex_state = 144, .external_lex_state = 6}, + [4358] = {.lex_state = 102, .external_lex_state = 6}, [4359] = {.lex_state = 102, .external_lex_state = 6}, - [4360] = {.lex_state = 258, .external_lex_state = 6}, + [4360] = {.lex_state = 102, .external_lex_state = 6}, [4361] = {.lex_state = 102, .external_lex_state = 6}, - [4362] = {.lex_state = 258, .external_lex_state = 6}, - [4363] = {.lex_state = 258, .external_lex_state = 6}, - [4364] = {.lex_state = 258, .external_lex_state = 6}, - [4365] = {.lex_state = 258, .external_lex_state = 6}, - [4366] = {.lex_state = 258, .external_lex_state = 6}, - [4367] = {.lex_state = 258, .external_lex_state = 6}, - [4368] = {.lex_state = 258, .external_lex_state = 6}, - [4369] = {.lex_state = 258, .external_lex_state = 6}, - [4370] = {.lex_state = 258, .external_lex_state = 6}, - [4371] = {.lex_state = 258, .external_lex_state = 6}, - [4372] = {.lex_state = 102, .external_lex_state = 6}, - [4373] = {.lex_state = 102, .external_lex_state = 6}, - [4374] = {.lex_state = 258, .external_lex_state = 6}, - [4375] = {.lex_state = 258, .external_lex_state = 6}, - [4376] = {.lex_state = 102, .external_lex_state = 6}, - [4377] = {.lex_state = 258, .external_lex_state = 6}, - [4378] = {.lex_state = 102, .external_lex_state = 6}, - [4379] = {.lex_state = 102, .external_lex_state = 6}, - [4380] = {.lex_state = 258, .external_lex_state = 6}, - [4381] = {.lex_state = 258, .external_lex_state = 6}, - [4382] = {.lex_state = 102, .external_lex_state = 6}, - [4383] = {.lex_state = 102, .external_lex_state = 6}, - [4384] = {.lex_state = 102, .external_lex_state = 6}, - [4385] = {.lex_state = 258, .external_lex_state = 6}, - [4386] = {.lex_state = 258, .external_lex_state = 6}, - [4387] = {.lex_state = 258, .external_lex_state = 6}, - [4388] = {.lex_state = 258, .external_lex_state = 6}, - [4389] = {.lex_state = 258, .external_lex_state = 6}, - [4390] = {.lex_state = 258, .external_lex_state = 6}, - [4391] = {.lex_state = 258, .external_lex_state = 6}, - [4392] = {.lex_state = 102, .external_lex_state = 6}, - [4393] = {.lex_state = 258, .external_lex_state = 6}, - [4394] = {.lex_state = 102, .external_lex_state = 6}, - [4395] = {.lex_state = 258, .external_lex_state = 6}, - [4396] = {.lex_state = 258, .external_lex_state = 6}, - [4397] = {.lex_state = 102, .external_lex_state = 6}, - [4398] = {.lex_state = 102, .external_lex_state = 6}, - [4399] = {.lex_state = 102, .external_lex_state = 6}, - [4400] = {.lex_state = 102, .external_lex_state = 6}, - [4401] = {.lex_state = 258, .external_lex_state = 6}, - [4402] = {.lex_state = 102, .external_lex_state = 6}, - [4403] = {.lex_state = 102, .external_lex_state = 6}, - [4404] = {.lex_state = 258, .external_lex_state = 6}, - [4405] = {.lex_state = 258, .external_lex_state = 6}, + [4362] = {.lex_state = 144, .external_lex_state = 6}, + [4363] = {.lex_state = 144, .external_lex_state = 6}, + [4364] = {.lex_state = 50, .external_lex_state = 6}, + [4365] = {.lex_state = 50, .external_lex_state = 6}, + [4366] = {.lex_state = 50, .external_lex_state = 6}, + [4367] = {.lex_state = 144, .external_lex_state = 6}, + [4368] = {.lex_state = 50, .external_lex_state = 6}, + [4369] = {.lex_state = 50, .external_lex_state = 6}, + [4370] = {.lex_state = 144, .external_lex_state = 6}, + [4371] = {.lex_state = 144, .external_lex_state = 6}, + [4372] = {.lex_state = 144, .external_lex_state = 6}, + [4373] = {.lex_state = 144, .external_lex_state = 6}, + [4374] = {.lex_state = 50, .external_lex_state = 6}, + [4375] = {.lex_state = 144, .external_lex_state = 6}, + [4376] = {.lex_state = 50, .external_lex_state = 6}, + [4377] = {.lex_state = 50, .external_lex_state = 6}, + [4378] = {.lex_state = 144, .external_lex_state = 6}, + [4379] = {.lex_state = 50, .external_lex_state = 6}, + [4380] = {.lex_state = 144, .external_lex_state = 6}, + [4381] = {.lex_state = 144, .external_lex_state = 6}, + [4382] = {.lex_state = 50, .external_lex_state = 6}, + [4383] = {.lex_state = 50, .external_lex_state = 6}, + [4384] = {.lex_state = 50, .external_lex_state = 6}, + [4385] = {.lex_state = 144, .external_lex_state = 6}, + [4386] = {.lex_state = 50, .external_lex_state = 6}, + [4387] = {.lex_state = 144, .external_lex_state = 6}, + [4388] = {.lex_state = 50, .external_lex_state = 6}, + [4389] = {.lex_state = 144, .external_lex_state = 6}, + [4390] = {.lex_state = 144, .external_lex_state = 6}, + [4391] = {.lex_state = 144, .external_lex_state = 6}, + [4392] = {.lex_state = 144, .external_lex_state = 6}, + [4393] = {.lex_state = 144, .external_lex_state = 6}, + [4394] = {.lex_state = 144, .external_lex_state = 6}, + [4395] = {.lex_state = 144, .external_lex_state = 6}, + [4396] = {.lex_state = 144, .external_lex_state = 6}, + [4397] = {.lex_state = 50, .external_lex_state = 6}, + [4398] = {.lex_state = 50, .external_lex_state = 6}, + [4399] = {.lex_state = 144, .external_lex_state = 6}, + [4400] = {.lex_state = 50, .external_lex_state = 6}, + [4401] = {.lex_state = 144, .external_lex_state = 6}, + [4402] = {.lex_state = 50, .external_lex_state = 6}, + [4403] = {.lex_state = 50, .external_lex_state = 6}, + [4404] = {.lex_state = 50, .external_lex_state = 6}, + [4405] = {.lex_state = 51, .external_lex_state = 6}, [4406] = {.lex_state = 102, .external_lex_state = 6}, [4407] = {.lex_state = 102, .external_lex_state = 6}, - [4408] = {.lex_state = 258, .external_lex_state = 6}, - [4409] = {.lex_state = 102, .external_lex_state = 6}, - [4410] = {.lex_state = 258, .external_lex_state = 6}, - [4411] = {.lex_state = 102, .external_lex_state = 6}, - [4412] = {.lex_state = 102, .external_lex_state = 6}, - [4413] = {.lex_state = 258, .external_lex_state = 6}, - [4414] = {.lex_state = 258, .external_lex_state = 6}, - [4415] = {.lex_state = 102, .external_lex_state = 6}, - [4416] = {.lex_state = 258, .external_lex_state = 6}, - [4417] = {.lex_state = 258, .external_lex_state = 6}, - [4418] = {.lex_state = 258, .external_lex_state = 6}, - [4419] = {.lex_state = 258, .external_lex_state = 6}, - [4420] = {.lex_state = 102, .external_lex_state = 6}, - [4421] = {.lex_state = 102, .external_lex_state = 6}, - [4422] = {.lex_state = 102, .external_lex_state = 6}, - [4423] = {.lex_state = 258, .external_lex_state = 6}, - [4424] = {.lex_state = 102, .external_lex_state = 6}, - [4425] = {.lex_state = 102, .external_lex_state = 6}, - [4426] = {.lex_state = 258, .external_lex_state = 6}, - [4427] = {.lex_state = 258, .external_lex_state = 6}, - [4428] = {.lex_state = 258, .external_lex_state = 6}, - [4429] = {.lex_state = 102, .external_lex_state = 6}, - [4430] = {.lex_state = 102, .external_lex_state = 6}, - [4431] = {.lex_state = 258, .external_lex_state = 6}, - [4432] = {.lex_state = 258, .external_lex_state = 6}, - [4433] = {.lex_state = 258, .external_lex_state = 6}, - [4434] = {.lex_state = 258, .external_lex_state = 6}, - [4435] = {.lex_state = 63, .external_lex_state = 17}, - [4436] = {.lex_state = 63, .external_lex_state = 17}, - [4437] = {.lex_state = 63, .external_lex_state = 18}, - [4438] = {.lex_state = 65, .external_lex_state = 19}, - [4439] = {.lex_state = 63, .external_lex_state = 20}, - [4440] = {.lex_state = 63, .external_lex_state = 21}, - [4441] = {.lex_state = 63, .external_lex_state = 21}, - [4442] = {.lex_state = 63, .external_lex_state = 20}, - [4443] = {.lex_state = 65, .external_lex_state = 19}, - [4444] = {.lex_state = 63, .external_lex_state = 18}, - [4445] = {.lex_state = 65, .external_lex_state = 22}, - [4446] = {.lex_state = 63, .external_lex_state = 23}, - [4447] = {.lex_state = 63, .external_lex_state = 17}, - [4448] = {.lex_state = 63, .external_lex_state = 24}, - [4449] = {.lex_state = 63, .external_lex_state = 25}, - [4450] = {.lex_state = 63, .external_lex_state = 26}, - [4451] = {.lex_state = 100, .external_lex_state = 6}, - [4452] = {.lex_state = 63, .external_lex_state = 23}, - [4453] = {.lex_state = 65, .external_lex_state = 22}, - [4454] = {.lex_state = 63, .external_lex_state = 25}, - [4455] = {.lex_state = 64, .external_lex_state = 10}, - [4456] = {.lex_state = 63, .external_lex_state = 18}, - [4457] = {.lex_state = 65, .external_lex_state = 19}, - [4458] = {.lex_state = 63, .external_lex_state = 20}, - [4459] = {.lex_state = 63, .external_lex_state = 21}, - [4460] = {.lex_state = 63, .external_lex_state = 24}, - [4461] = {.lex_state = 62, .external_lex_state = 7}, - [4462] = {.lex_state = 62, .external_lex_state = 16}, - [4463] = {.lex_state = 63, .external_lex_state = 17}, - [4464] = {.lex_state = 63, .external_lex_state = 26}, - [4465] = {.lex_state = 63, .external_lex_state = 23}, - [4466] = {.lex_state = 62, .external_lex_state = 8}, - [4467] = {.lex_state = 62, .external_lex_state = 15}, - [4468] = {.lex_state = 100, .external_lex_state = 6}, - [4469] = {.lex_state = 63, .external_lex_state = 21}, - [4470] = {.lex_state = 102, .external_lex_state = 6}, - [4471] = {.lex_state = 63, .external_lex_state = 21}, - [4472] = {.lex_state = 63, .external_lex_state = 20}, - [4473] = {.lex_state = 65, .external_lex_state = 19}, - [4474] = {.lex_state = 63, .external_lex_state = 18}, - [4475] = {.lex_state = 65, .external_lex_state = 22}, - [4476] = {.lex_state = 63, .external_lex_state = 23}, - [4477] = {.lex_state = 63, .external_lex_state = 17}, - [4478] = {.lex_state = 63, .external_lex_state = 24}, - [4479] = {.lex_state = 63, .external_lex_state = 25}, - [4480] = {.lex_state = 63, .external_lex_state = 26}, - [4481] = {.lex_state = 100, .external_lex_state = 6}, - [4482] = {.lex_state = 63, .external_lex_state = 21}, - [4483] = {.lex_state = 63, .external_lex_state = 20}, - [4484] = {.lex_state = 63, .external_lex_state = 17}, - [4485] = {.lex_state = 63, .external_lex_state = 20}, - [4486] = {.lex_state = 63, .external_lex_state = 21}, - [4487] = {.lex_state = 65, .external_lex_state = 19}, - [4488] = {.lex_state = 62, .external_lex_state = 14}, - [4489] = {.lex_state = 63, .external_lex_state = 24}, - [4490] = {.lex_state = 63, .external_lex_state = 18}, - [4491] = {.lex_state = 65, .external_lex_state = 22}, - [4492] = {.lex_state = 63, .external_lex_state = 25}, - [4493] = {.lex_state = 63, .external_lex_state = 23}, - [4494] = {.lex_state = 63, .external_lex_state = 17}, - [4495] = {.lex_state = 63, .external_lex_state = 24}, - [4496] = {.lex_state = 62, .external_lex_state = 13}, - [4497] = {.lex_state = 63, .external_lex_state = 20}, - [4498] = {.lex_state = 65, .external_lex_state = 19}, - [4499] = {.lex_state = 63, .external_lex_state = 18}, - [4500] = {.lex_state = 65, .external_lex_state = 22}, - [4501] = {.lex_state = 100, .external_lex_state = 6}, - [4502] = {.lex_state = 65, .external_lex_state = 19}, - [4503] = {.lex_state = 63, .external_lex_state = 23}, - [4504] = {.lex_state = 63, .external_lex_state = 18}, - [4505] = {.lex_state = 63, .external_lex_state = 17}, - [4506] = {.lex_state = 65, .external_lex_state = 22}, - [4507] = {.lex_state = 63, .external_lex_state = 23}, - [4508] = {.lex_state = 100, .external_lex_state = 6}, - [4509] = {.lex_state = 63, .external_lex_state = 26}, - [4510] = {.lex_state = 63, .external_lex_state = 25}, - [4511] = {.lex_state = 63, .external_lex_state = 17}, - [4512] = {.lex_state = 63, .external_lex_state = 24}, - [4513] = {.lex_state = 63, .external_lex_state = 24}, - [4514] = {.lex_state = 63, .external_lex_state = 25}, - [4515] = {.lex_state = 63, .external_lex_state = 26}, - [4516] = {.lex_state = 63, .external_lex_state = 25}, - [4517] = {.lex_state = 63, .external_lex_state = 26}, - [4518] = {.lex_state = 63, .external_lex_state = 21}, - [4519] = {.lex_state = 63, .external_lex_state = 20}, - [4520] = {.lex_state = 65, .external_lex_state = 19}, - [4521] = {.lex_state = 63, .external_lex_state = 18}, - [4522] = {.lex_state = 65, .external_lex_state = 22}, - [4523] = {.lex_state = 63, .external_lex_state = 23}, - [4524] = {.lex_state = 63, .external_lex_state = 17}, - [4525] = {.lex_state = 63, .external_lex_state = 24}, - [4526] = {.lex_state = 63, .external_lex_state = 25}, - [4527] = {.lex_state = 63, .external_lex_state = 26}, - [4528] = {.lex_state = 63, .external_lex_state = 26}, - [4529] = {.lex_state = 102, .external_lex_state = 6}, - [4530] = {.lex_state = 63, .external_lex_state = 21}, - [4531] = {.lex_state = 63, .external_lex_state = 20}, - [4532] = {.lex_state = 65, .external_lex_state = 19}, - [4533] = {.lex_state = 63, .external_lex_state = 18}, - [4534] = {.lex_state = 63, .external_lex_state = 21}, - [4535] = {.lex_state = 63, .external_lex_state = 20}, - [4536] = {.lex_state = 65, .external_lex_state = 19}, - [4537] = {.lex_state = 63, .external_lex_state = 18}, - [4538] = {.lex_state = 65, .external_lex_state = 22}, - [4539] = {.lex_state = 63, .external_lex_state = 23}, - [4540] = {.lex_state = 63, .external_lex_state = 17}, - [4541] = {.lex_state = 63, .external_lex_state = 24}, - [4542] = {.lex_state = 63, .external_lex_state = 25}, - [4543] = {.lex_state = 63, .external_lex_state = 26}, - [4544] = {.lex_state = 63, .external_lex_state = 26}, - [4545] = {.lex_state = 63, .external_lex_state = 25}, - [4546] = {.lex_state = 63, .external_lex_state = 24}, - [4547] = {.lex_state = 63, .external_lex_state = 17}, - [4548] = {.lex_state = 63, .external_lex_state = 23}, - [4549] = {.lex_state = 100, .external_lex_state = 6}, - [4550] = {.lex_state = 65, .external_lex_state = 22}, - [4551] = {.lex_state = 63, .external_lex_state = 18}, - [4552] = {.lex_state = 65, .external_lex_state = 19}, - [4553] = {.lex_state = 63, .external_lex_state = 20}, - [4554] = {.lex_state = 63, .external_lex_state = 21}, - [4555] = {.lex_state = 63, .external_lex_state = 20}, - [4556] = {.lex_state = 63, .external_lex_state = 26}, - [4557] = {.lex_state = 65, .external_lex_state = 22}, - [4558] = {.lex_state = 63, .external_lex_state = 23}, - [4559] = {.lex_state = 63, .external_lex_state = 17}, - [4560] = {.lex_state = 62, .external_lex_state = 11}, - [4561] = {.lex_state = 63, .external_lex_state = 24}, - [4562] = {.lex_state = 63, .external_lex_state = 25}, - [4563] = {.lex_state = 63, .external_lex_state = 26}, - [4564] = {.lex_state = 63, .external_lex_state = 21}, - [4565] = {.lex_state = 63, .external_lex_state = 20}, - [4566] = {.lex_state = 65, .external_lex_state = 19}, - [4567] = {.lex_state = 63, .external_lex_state = 18}, - [4568] = {.lex_state = 65, .external_lex_state = 22}, - [4569] = {.lex_state = 63, .external_lex_state = 23}, - [4570] = {.lex_state = 63, .external_lex_state = 17}, - [4571] = {.lex_state = 63, .external_lex_state = 24}, - [4572] = {.lex_state = 63, .external_lex_state = 25}, - [4573] = {.lex_state = 63, .external_lex_state = 26}, - [4574] = {.lex_state = 258, .external_lex_state = 6}, - [4575] = {.lex_state = 63, .external_lex_state = 26}, - [4576] = {.lex_state = 63, .external_lex_state = 25}, - [4577] = {.lex_state = 63, .external_lex_state = 26}, - [4578] = {.lex_state = 100, .external_lex_state = 6}, - [4579] = {.lex_state = 63, .external_lex_state = 25}, - [4580] = {.lex_state = 63, .external_lex_state = 21}, - [4581] = {.lex_state = 63, .external_lex_state = 20}, - [4582] = {.lex_state = 65, .external_lex_state = 19}, - [4583] = {.lex_state = 63, .external_lex_state = 18}, - [4584] = {.lex_state = 65, .external_lex_state = 22}, - [4585] = {.lex_state = 63, .external_lex_state = 23}, - [4586] = {.lex_state = 63, .external_lex_state = 17}, - [4587] = {.lex_state = 63, .external_lex_state = 24}, - [4588] = {.lex_state = 63, .external_lex_state = 25}, - [4589] = {.lex_state = 63, .external_lex_state = 26}, - [4590] = {.lex_state = 63, .external_lex_state = 21}, - [4591] = {.lex_state = 63, .external_lex_state = 21}, - [4592] = {.lex_state = 63, .external_lex_state = 20}, - [4593] = {.lex_state = 65, .external_lex_state = 19}, - [4594] = {.lex_state = 63, .external_lex_state = 18}, - [4595] = {.lex_state = 62, .external_lex_state = 9}, - [4596] = {.lex_state = 63, .external_lex_state = 26}, - [4597] = {.lex_state = 63, .external_lex_state = 25}, - [4598] = {.lex_state = 63, .external_lex_state = 24}, - [4599] = {.lex_state = 63, .external_lex_state = 17}, - [4600] = {.lex_state = 63, .external_lex_state = 26}, - [4601] = {.lex_state = 63, .external_lex_state = 25}, - [4602] = {.lex_state = 63, .external_lex_state = 24}, - [4603] = {.lex_state = 63, .external_lex_state = 17}, - [4604] = {.lex_state = 63, .external_lex_state = 23}, - [4605] = {.lex_state = 65, .external_lex_state = 22}, - [4606] = {.lex_state = 63, .external_lex_state = 18}, - [4607] = {.lex_state = 65, .external_lex_state = 19}, - [4608] = {.lex_state = 63, .external_lex_state = 20}, - [4609] = {.lex_state = 63, .external_lex_state = 21}, - [4610] = {.lex_state = 63, .external_lex_state = 21}, - [4611] = {.lex_state = 63, .external_lex_state = 20}, - [4612] = {.lex_state = 65, .external_lex_state = 19}, - [4613] = {.lex_state = 63, .external_lex_state = 18}, - [4614] = {.lex_state = 65, .external_lex_state = 22}, - [4615] = {.lex_state = 63, .external_lex_state = 23}, - [4616] = {.lex_state = 63, .external_lex_state = 17}, - [4617] = {.lex_state = 63, .external_lex_state = 24}, - [4618] = {.lex_state = 63, .external_lex_state = 25}, - [4619] = {.lex_state = 63, .external_lex_state = 26}, - [4620] = {.lex_state = 65, .external_lex_state = 22}, - [4621] = {.lex_state = 65, .external_lex_state = 22}, - [4622] = {.lex_state = 63, .external_lex_state = 23}, - [4623] = {.lex_state = 63, .external_lex_state = 20}, - [4624] = {.lex_state = 65, .external_lex_state = 19}, - [4625] = {.lex_state = 63, .external_lex_state = 18}, - [4626] = {.lex_state = 63, .external_lex_state = 21}, - [4627] = {.lex_state = 63, .external_lex_state = 20}, - [4628] = {.lex_state = 65, .external_lex_state = 19}, - [4629] = {.lex_state = 63, .external_lex_state = 18}, - [4630] = {.lex_state = 65, .external_lex_state = 22}, - [4631] = {.lex_state = 63, .external_lex_state = 23}, - [4632] = {.lex_state = 63, .external_lex_state = 25}, - [4633] = {.lex_state = 63, .external_lex_state = 24}, - [4634] = {.lex_state = 63, .external_lex_state = 25}, - [4635] = {.lex_state = 63, .external_lex_state = 26}, - [4636] = {.lex_state = 63, .external_lex_state = 23}, - [4637] = {.lex_state = 63, .external_lex_state = 21}, - [4638] = {.lex_state = 65, .external_lex_state = 22}, - [4639] = {.lex_state = 63, .external_lex_state = 20}, - [4640] = {.lex_state = 63, .external_lex_state = 23}, - [4641] = {.lex_state = 63, .external_lex_state = 17}, - [4642] = {.lex_state = 63, .external_lex_state = 24}, - [4643] = {.lex_state = 63, .external_lex_state = 25}, - [4644] = {.lex_state = 63, .external_lex_state = 26}, - [4645] = {.lex_state = 63, .external_lex_state = 21}, - [4646] = {.lex_state = 65, .external_lex_state = 22}, - [4647] = {.lex_state = 63, .external_lex_state = 18}, - [4648] = {.lex_state = 63, .external_lex_state = 24}, - [4649] = {.lex_state = 65, .external_lex_state = 19}, - [4650] = {.lex_state = 63, .external_lex_state = 20}, - [4651] = {.lex_state = 65, .external_lex_state = 19}, - [4652] = {.lex_state = 100, .external_lex_state = 6}, - [4653] = {.lex_state = 63, .external_lex_state = 17}, - [4654] = {.lex_state = 63, .external_lex_state = 18}, - [4655] = {.lex_state = 65, .external_lex_state = 22}, - [4656] = {.lex_state = 63, .external_lex_state = 21}, - [4657] = {.lex_state = 63, .external_lex_state = 20}, - [4658] = {.lex_state = 65, .external_lex_state = 19}, - [4659] = {.lex_state = 63, .external_lex_state = 18}, - [4660] = {.lex_state = 65, .external_lex_state = 22}, - [4661] = {.lex_state = 63, .external_lex_state = 23}, - [4662] = {.lex_state = 63, .external_lex_state = 17}, - [4663] = {.lex_state = 63, .external_lex_state = 24}, - [4664] = {.lex_state = 63, .external_lex_state = 25}, - [4665] = {.lex_state = 63, .external_lex_state = 26}, - [4666] = {.lex_state = 63, .external_lex_state = 23}, - [4667] = {.lex_state = 100, .external_lex_state = 6}, - [4668] = {.lex_state = 63, .external_lex_state = 17}, - [4669] = {.lex_state = 63, .external_lex_state = 24}, - [4670] = {.lex_state = 63, .external_lex_state = 25}, - [4671] = {.lex_state = 63, .external_lex_state = 26}, - [4672] = {.lex_state = 63, .external_lex_state = 21}, - [4673] = {.lex_state = 63, .external_lex_state = 20}, - [4674] = {.lex_state = 65, .external_lex_state = 19}, - [4675] = {.lex_state = 63, .external_lex_state = 18}, - [4676] = {.lex_state = 65, .external_lex_state = 22}, - [4677] = {.lex_state = 63, .external_lex_state = 23}, - [4678] = {.lex_state = 63, .external_lex_state = 26}, - [4679] = {.lex_state = 63, .external_lex_state = 24}, - [4680] = {.lex_state = 63, .external_lex_state = 25}, - [4681] = {.lex_state = 63, .external_lex_state = 26}, - [4682] = {.lex_state = 63, .external_lex_state = 25}, - [4683] = {.lex_state = 63, .external_lex_state = 25}, - [4684] = {.lex_state = 63, .external_lex_state = 24}, - [4685] = {.lex_state = 63, .external_lex_state = 24}, - [4686] = {.lex_state = 63, .external_lex_state = 17}, - [4687] = {.lex_state = 63, .external_lex_state = 17}, - [4688] = {.lex_state = 63, .external_lex_state = 23}, - [4689] = {.lex_state = 65, .external_lex_state = 22}, - [4690] = {.lex_state = 63, .external_lex_state = 18}, - [4691] = {.lex_state = 65, .external_lex_state = 19}, - [4692] = {.lex_state = 63, .external_lex_state = 21}, - [4693] = {.lex_state = 63, .external_lex_state = 17}, - [4694] = {.lex_state = 63, .external_lex_state = 23}, - [4695] = {.lex_state = 63, .external_lex_state = 20}, - [4696] = {.lex_state = 63, .external_lex_state = 26}, - [4697] = {.lex_state = 63, .external_lex_state = 25}, - [4698] = {.lex_state = 63, .external_lex_state = 24}, - [4699] = {.lex_state = 63, .external_lex_state = 17}, - [4700] = {.lex_state = 63, .external_lex_state = 23}, - [4701] = {.lex_state = 65, .external_lex_state = 22}, - [4702] = {.lex_state = 63, .external_lex_state = 21}, - [4703] = {.lex_state = 63, .external_lex_state = 20}, - [4704] = {.lex_state = 65, .external_lex_state = 19}, - [4705] = {.lex_state = 63, .external_lex_state = 18}, - [4706] = {.lex_state = 65, .external_lex_state = 22}, - [4707] = {.lex_state = 63, .external_lex_state = 23}, - [4708] = {.lex_state = 63, .external_lex_state = 17}, - [4709] = {.lex_state = 63, .external_lex_state = 24}, - [4710] = {.lex_state = 63, .external_lex_state = 25}, - [4711] = {.lex_state = 63, .external_lex_state = 26}, - [4712] = {.lex_state = 63, .external_lex_state = 18}, - [4713] = {.lex_state = 65, .external_lex_state = 19}, - [4714] = {.lex_state = 63, .external_lex_state = 20}, - [4715] = {.lex_state = 63, .external_lex_state = 21}, - [4716] = {.lex_state = 65, .external_lex_state = 22}, - [4717] = {.lex_state = 63, .external_lex_state = 18}, - [4718] = {.lex_state = 63, .external_lex_state = 21}, - [4719] = {.lex_state = 63, .external_lex_state = 20}, - [4720] = {.lex_state = 65, .external_lex_state = 19}, - [4721] = {.lex_state = 63, .external_lex_state = 18}, - [4722] = {.lex_state = 65, .external_lex_state = 22}, - [4723] = {.lex_state = 63, .external_lex_state = 23}, - [4724] = {.lex_state = 63, .external_lex_state = 17}, - [4725] = {.lex_state = 63, .external_lex_state = 24}, - [4726] = {.lex_state = 63, .external_lex_state = 25}, - [4727] = {.lex_state = 63, .external_lex_state = 26}, - [4728] = {.lex_state = 63, .external_lex_state = 21}, - [4729] = {.lex_state = 100, .external_lex_state = 6}, - [4730] = {.lex_state = 63, .external_lex_state = 23}, - [4731] = {.lex_state = 100, .external_lex_state = 6}, - [4732] = {.lex_state = 65, .external_lex_state = 19}, - [4733] = {.lex_state = 63, .external_lex_state = 26}, - [4734] = {.lex_state = 63, .external_lex_state = 20}, - [4735] = {.lex_state = 63, .external_lex_state = 21}, - [4736] = {.lex_state = 65, .external_lex_state = 22}, - [4737] = {.lex_state = 63, .external_lex_state = 26}, - [4738] = {.lex_state = 63, .external_lex_state = 25}, - [4739] = {.lex_state = 63, .external_lex_state = 24}, - [4740] = {.lex_state = 63, .external_lex_state = 25}, - [4741] = {.lex_state = 63, .external_lex_state = 21}, - [4742] = {.lex_state = 63, .external_lex_state = 17}, - [4743] = {.lex_state = 63, .external_lex_state = 23}, - [4744] = {.lex_state = 65, .external_lex_state = 22}, - [4745] = {.lex_state = 64, .external_lex_state = 12}, - [4746] = {.lex_state = 63, .external_lex_state = 18}, - [4747] = {.lex_state = 65, .external_lex_state = 19}, - [4748] = {.lex_state = 63, .external_lex_state = 21}, - [4749] = {.lex_state = 63, .external_lex_state = 20}, - [4750] = {.lex_state = 65, .external_lex_state = 19}, - [4751] = {.lex_state = 63, .external_lex_state = 18}, - [4752] = {.lex_state = 65, .external_lex_state = 22}, - [4753] = {.lex_state = 63, .external_lex_state = 23}, - [4754] = {.lex_state = 63, .external_lex_state = 17}, - [4755] = {.lex_state = 63, .external_lex_state = 24}, - [4756] = {.lex_state = 63, .external_lex_state = 25}, - [4757] = {.lex_state = 63, .external_lex_state = 26}, - [4758] = {.lex_state = 63, .external_lex_state = 20}, - [4759] = {.lex_state = 63, .external_lex_state = 21}, - [4760] = {.lex_state = 63, .external_lex_state = 21}, - [4761] = {.lex_state = 63, .external_lex_state = 20}, - [4762] = {.lex_state = 63, .external_lex_state = 20}, - [4763] = {.lex_state = 65, .external_lex_state = 19}, - [4764] = {.lex_state = 63, .external_lex_state = 21}, - [4765] = {.lex_state = 63, .external_lex_state = 20}, - [4766] = {.lex_state = 65, .external_lex_state = 19}, - [4767] = {.lex_state = 63, .external_lex_state = 18}, - [4768] = {.lex_state = 65, .external_lex_state = 22}, - [4769] = {.lex_state = 63, .external_lex_state = 23}, - [4770] = {.lex_state = 63, .external_lex_state = 17}, - [4771] = {.lex_state = 63, .external_lex_state = 24}, - [4772] = {.lex_state = 63, .external_lex_state = 25}, - [4773] = {.lex_state = 63, .external_lex_state = 26}, - [4774] = {.lex_state = 63, .external_lex_state = 18}, - [4775] = {.lex_state = 65, .external_lex_state = 19}, - [4776] = {.lex_state = 63, .external_lex_state = 21}, - [4777] = {.lex_state = 63, .external_lex_state = 18}, - [4778] = {.lex_state = 63, .external_lex_state = 20}, - [4779] = {.lex_state = 63, .external_lex_state = 24}, - [4780] = {.lex_state = 65, .external_lex_state = 19}, - [4781] = {.lex_state = 65, .external_lex_state = 22}, - [4782] = {.lex_state = 63, .external_lex_state = 18}, - [4783] = {.lex_state = 63, .external_lex_state = 21}, - [4784] = {.lex_state = 65, .external_lex_state = 19}, - [4785] = {.lex_state = 63, .external_lex_state = 20}, - [4786] = {.lex_state = 63, .external_lex_state = 18}, - [4787] = {.lex_state = 65, .external_lex_state = 19}, - [4788] = {.lex_state = 63, .external_lex_state = 18}, - [4789] = {.lex_state = 65, .external_lex_state = 22}, - [4790] = {.lex_state = 65, .external_lex_state = 22}, - [4791] = {.lex_state = 63, .external_lex_state = 23}, - [4792] = {.lex_state = 63, .external_lex_state = 17}, - [4793] = {.lex_state = 65, .external_lex_state = 22}, - [4794] = {.lex_state = 63, .external_lex_state = 24}, - [4795] = {.lex_state = 63, .external_lex_state = 25}, - [4796] = {.lex_state = 63, .external_lex_state = 26}, - [4797] = {.lex_state = 63, .external_lex_state = 23}, - [4798] = {.lex_state = 100, .external_lex_state = 6}, - [4799] = {.lex_state = 63, .external_lex_state = 17}, - [4800] = {.lex_state = 63, .external_lex_state = 24}, - [4801] = {.lex_state = 63, .external_lex_state = 23}, - [4802] = {.lex_state = 63, .external_lex_state = 17}, - [4803] = {.lex_state = 63, .external_lex_state = 21}, - [4804] = {.lex_state = 63, .external_lex_state = 20}, - [4805] = {.lex_state = 65, .external_lex_state = 19}, - [4806] = {.lex_state = 63, .external_lex_state = 18}, - [4807] = {.lex_state = 65, .external_lex_state = 22}, - [4808] = {.lex_state = 63, .external_lex_state = 23}, - [4809] = {.lex_state = 63, .external_lex_state = 17}, - [4810] = {.lex_state = 63, .external_lex_state = 24}, - [4811] = {.lex_state = 63, .external_lex_state = 24}, - [4812] = {.lex_state = 63, .external_lex_state = 26}, - [4813] = {.lex_state = 63, .external_lex_state = 25}, - [4814] = {.lex_state = 63, .external_lex_state = 24}, - [4815] = {.lex_state = 63, .external_lex_state = 17}, - [4816] = {.lex_state = 63, .external_lex_state = 23}, - [4817] = {.lex_state = 65, .external_lex_state = 22}, - [4818] = {.lex_state = 63, .external_lex_state = 18}, - [4819] = {.lex_state = 65, .external_lex_state = 19}, - [4820] = {.lex_state = 63, .external_lex_state = 20}, - [4821] = {.lex_state = 63, .external_lex_state = 21}, - [4822] = {.lex_state = 63, .external_lex_state = 26}, - [4823] = {.lex_state = 63, .external_lex_state = 25}, - [4824] = {.lex_state = 63, .external_lex_state = 26}, - [4825] = {.lex_state = 63, .external_lex_state = 25}, - [4826] = {.lex_state = 63, .external_lex_state = 24}, - [4827] = {.lex_state = 63, .external_lex_state = 17}, - [4828] = {.lex_state = 63, .external_lex_state = 23}, - [4829] = {.lex_state = 63, .external_lex_state = 26}, - [4830] = {.lex_state = 258, .external_lex_state = 6}, - [4831] = {.lex_state = 50, .external_lex_state = 6}, - [4832] = {.lex_state = 50, .external_lex_state = 6}, - [4833] = {.lex_state = 50, .external_lex_state = 6}, - [4834] = {.lex_state = 50, .external_lex_state = 6}, - [4835] = {.lex_state = 258, .external_lex_state = 6}, - [4836] = {.lex_state = 50, .external_lex_state = 6}, - [4837] = {.lex_state = 102, .external_lex_state = 6}, - [4838] = {.lex_state = 258, .external_lex_state = 6}, - [4839] = {.lex_state = 50, .external_lex_state = 6}, - [4840] = {.lex_state = 50, .external_lex_state = 6}, - [4841] = {.lex_state = 258, .external_lex_state = 6}, - [4842] = {.lex_state = 258, .external_lex_state = 6}, - [4843] = {.lex_state = 50, .external_lex_state = 6}, - [4844] = {.lex_state = 102, .external_lex_state = 6}, - [4845] = {.lex_state = 53, .external_lex_state = 6}, - [4846] = {.lex_state = 53, .external_lex_state = 6}, - [4847] = {.lex_state = 102, .external_lex_state = 6}, - [4848] = {.lex_state = 53, .external_lex_state = 6}, - [4849] = {.lex_state = 258, .external_lex_state = 6}, - [4850] = {.lex_state = 102, .external_lex_state = 6}, - [4851] = {.lex_state = 102, .external_lex_state = 6}, - [4852] = {.lex_state = 102, .external_lex_state = 6}, - [4853] = {.lex_state = 102, .external_lex_state = 6}, - [4854] = {.lex_state = 102, .external_lex_state = 6}, - [4855] = {.lex_state = 102, .external_lex_state = 6}, - [4856] = {.lex_state = 258, .external_lex_state = 6}, - [4857] = {.lex_state = 53, .external_lex_state = 6}, - [4858] = {.lex_state = 53, .external_lex_state = 6}, - [4859] = {.lex_state = 53, .external_lex_state = 6}, - [4860] = {.lex_state = 102, .external_lex_state = 6}, - [4861] = {.lex_state = 53, .external_lex_state = 6}, - [4862] = {.lex_state = 102, .external_lex_state = 6}, - [4863] = {.lex_state = 53, .external_lex_state = 6}, - [4864] = {.lex_state = 53, .external_lex_state = 6}, - [4865] = {.lex_state = 102, .external_lex_state = 6}, - [4866] = {.lex_state = 258, .external_lex_state = 6}, - [4867] = {.lex_state = 53, .external_lex_state = 6}, - [4868] = {.lex_state = 102, .external_lex_state = 6}, - [4869] = {.lex_state = 102, .external_lex_state = 6}, - [4870] = {.lex_state = 102, .external_lex_state = 6}, - [4871] = {.lex_state = 258, .external_lex_state = 6}, - [4872] = {.lex_state = 102, .external_lex_state = 6}, - [4873] = {.lex_state = 102, .external_lex_state = 6}, - [4874] = {.lex_state = 53, .external_lex_state = 6}, - [4875] = {.lex_state = 102, .external_lex_state = 6}, - [4876] = {.lex_state = 102, .external_lex_state = 6}, - [4877] = {.lex_state = 102, .external_lex_state = 6}, - [4878] = {.lex_state = 53, .external_lex_state = 6}, - [4879] = {.lex_state = 258, .external_lex_state = 6}, - [4880] = {.lex_state = 258, .external_lex_state = 6}, - [4881] = {.lex_state = 102, .external_lex_state = 6}, - [4882] = {.lex_state = 102, .external_lex_state = 6}, - [4883] = {.lex_state = 258, .external_lex_state = 6}, - [4884] = {.lex_state = 53, .external_lex_state = 6}, - [4885] = {.lex_state = 102, .external_lex_state = 6}, - [4886] = {.lex_state = 102, .external_lex_state = 6}, - [4887] = {.lex_state = 258, .external_lex_state = 6}, - [4888] = {.lex_state = 102, .external_lex_state = 6}, - [4889] = {.lex_state = 53, .external_lex_state = 6}, - [4890] = {.lex_state = 258, .external_lex_state = 6}, - [4891] = {.lex_state = 102, .external_lex_state = 6}, - [4892] = {.lex_state = 258, .external_lex_state = 6}, - [4893] = {.lex_state = 53, .external_lex_state = 6}, - [4894] = {.lex_state = 102, .external_lex_state = 6}, - [4895] = {.lex_state = 258, .external_lex_state = 6}, - [4896] = {.lex_state = 102, .external_lex_state = 6}, - [4897] = {.lex_state = 53, .external_lex_state = 6}, - [4898] = {.lex_state = 102, .external_lex_state = 6}, - [4899] = {.lex_state = 102, .external_lex_state = 6}, - [4900] = {.lex_state = 102, .external_lex_state = 6}, - [4901] = {.lex_state = 102, .external_lex_state = 6}, - [4902] = {.lex_state = 53, .external_lex_state = 6}, + [4408] = {.lex_state = 102, .external_lex_state = 6}, + [4409] = {.lex_state = 64, .external_lex_state = 7}, + [4410] = {.lex_state = 64, .external_lex_state = 8}, + [4411] = {.lex_state = 64, .external_lex_state = 9}, + [4412] = {.lex_state = 62, .external_lex_state = 10}, + [4413] = {.lex_state = 64, .external_lex_state = 11}, + [4414] = {.lex_state = 62, .external_lex_state = 12}, + [4415] = {.lex_state = 64, .external_lex_state = 8}, + [4416] = {.lex_state = 64, .external_lex_state = 9}, + [4417] = {.lex_state = 62, .external_lex_state = 10}, + [4418] = {.lex_state = 64, .external_lex_state = 13}, + [4419] = {.lex_state = 64, .external_lex_state = 14}, + [4420] = {.lex_state = 64, .external_lex_state = 15}, + [4421] = {.lex_state = 64, .external_lex_state = 16}, + [4422] = {.lex_state = 64, .external_lex_state = 7}, + [4423] = {.lex_state = 64, .external_lex_state = 15}, + [4424] = {.lex_state = 64, .external_lex_state = 14}, + [4425] = {.lex_state = 64, .external_lex_state = 13}, + [4426] = {.lex_state = 64, .external_lex_state = 8}, + [4427] = {.lex_state = 64, .external_lex_state = 11}, + [4428] = {.lex_state = 62, .external_lex_state = 12}, + [4429] = {.lex_state = 64, .external_lex_state = 9}, + [4430] = {.lex_state = 64, .external_lex_state = 7}, + [4431] = {.lex_state = 64, .external_lex_state = 16}, + [4432] = {.lex_state = 64, .external_lex_state = 8}, + [4433] = {.lex_state = 62, .external_lex_state = 10}, + [4434] = {.lex_state = 64, .external_lex_state = 11}, + [4435] = {.lex_state = 62, .external_lex_state = 12}, + [4436] = {.lex_state = 62, .external_lex_state = 10}, + [4437] = {.lex_state = 64, .external_lex_state = 9}, + [4438] = {.lex_state = 64, .external_lex_state = 11}, + [4439] = {.lex_state = 64, .external_lex_state = 13}, + [4440] = {.lex_state = 64, .external_lex_state = 14}, + [4441] = {.lex_state = 64, .external_lex_state = 9}, + [4442] = {.lex_state = 64, .external_lex_state = 16}, + [4443] = {.lex_state = 64, .external_lex_state = 11}, + [4444] = {.lex_state = 62, .external_lex_state = 10}, + [4445] = {.lex_state = 62, .external_lex_state = 12}, + [4446] = {.lex_state = 62, .external_lex_state = 12}, + [4447] = {.lex_state = 64, .external_lex_state = 9}, + [4448] = {.lex_state = 64, .external_lex_state = 11}, + [4449] = {.lex_state = 62, .external_lex_state = 10}, + [4450] = {.lex_state = 64, .external_lex_state = 9}, + [4451] = {.lex_state = 64, .external_lex_state = 16}, + [4452] = {.lex_state = 64, .external_lex_state = 7}, + [4453] = {.lex_state = 64, .external_lex_state = 16}, + [4454] = {.lex_state = 64, .external_lex_state = 7}, + [4455] = {.lex_state = 64, .external_lex_state = 15}, + [4456] = {.lex_state = 64, .external_lex_state = 14}, + [4457] = {.lex_state = 64, .external_lex_state = 13}, + [4458] = {.lex_state = 64, .external_lex_state = 8}, + [4459] = {.lex_state = 64, .external_lex_state = 15}, + [4460] = {.lex_state = 64, .external_lex_state = 14}, + [4461] = {.lex_state = 64, .external_lex_state = 16}, + [4462] = {.lex_state = 64, .external_lex_state = 13}, + [4463] = {.lex_state = 64, .external_lex_state = 9}, + [4464] = {.lex_state = 64, .external_lex_state = 7}, + [4465] = {.lex_state = 64, .external_lex_state = 15}, + [4466] = {.lex_state = 64, .external_lex_state = 14}, + [4467] = {.lex_state = 64, .external_lex_state = 13}, + [4468] = {.lex_state = 64, .external_lex_state = 8}, + [4469] = {.lex_state = 62, .external_lex_state = 12}, + [4470] = {.lex_state = 64, .external_lex_state = 11}, + [4471] = {.lex_state = 62, .external_lex_state = 12}, + [4472] = {.lex_state = 64, .external_lex_state = 11}, + [4473] = {.lex_state = 62, .external_lex_state = 10}, + [4474] = {.lex_state = 62, .external_lex_state = 10}, + [4475] = {.lex_state = 64, .external_lex_state = 8}, + [4476] = {.lex_state = 64, .external_lex_state = 15}, + [4477] = {.lex_state = 64, .external_lex_state = 7}, + [4478] = {.lex_state = 64, .external_lex_state = 16}, + [4479] = {.lex_state = 64, .external_lex_state = 7}, + [4480] = {.lex_state = 64, .external_lex_state = 15}, + [4481] = {.lex_state = 64, .external_lex_state = 11}, + [4482] = {.lex_state = 62, .external_lex_state = 12}, + [4483] = {.lex_state = 64, .external_lex_state = 9}, + [4484] = {.lex_state = 64, .external_lex_state = 14}, + [4485] = {.lex_state = 64, .external_lex_state = 16}, + [4486] = {.lex_state = 64, .external_lex_state = 16}, + [4487] = {.lex_state = 64, .external_lex_state = 7}, + [4488] = {.lex_state = 64, .external_lex_state = 15}, + [4489] = {.lex_state = 64, .external_lex_state = 13}, + [4490] = {.lex_state = 64, .external_lex_state = 14}, + [4491] = {.lex_state = 62, .external_lex_state = 10}, + [4492] = {.lex_state = 64, .external_lex_state = 11}, + [4493] = {.lex_state = 62, .external_lex_state = 12}, + [4494] = {.lex_state = 64, .external_lex_state = 9}, + [4495] = {.lex_state = 64, .external_lex_state = 13}, + [4496] = {.lex_state = 64, .external_lex_state = 8}, + [4497] = {.lex_state = 64, .external_lex_state = 13}, + [4498] = {.lex_state = 64, .external_lex_state = 8}, + [4499] = {.lex_state = 64, .external_lex_state = 14}, + [4500] = {.lex_state = 64, .external_lex_state = 9}, + [4501] = {.lex_state = 64, .external_lex_state = 8}, + [4502] = {.lex_state = 62, .external_lex_state = 12}, + [4503] = {.lex_state = 62, .external_lex_state = 10}, + [4504] = {.lex_state = 64, .external_lex_state = 11}, + [4505] = {.lex_state = 62, .external_lex_state = 12}, + [4506] = {.lex_state = 64, .external_lex_state = 9}, + [4507] = {.lex_state = 62, .external_lex_state = 10}, + [4508] = {.lex_state = 64, .external_lex_state = 11}, + [4509] = {.lex_state = 64, .external_lex_state = 15}, + [4510] = {.lex_state = 64, .external_lex_state = 7}, + [4511] = {.lex_state = 62, .external_lex_state = 10}, + [4512] = {.lex_state = 64, .external_lex_state = 11}, + [4513] = {.lex_state = 64, .external_lex_state = 11}, + [4514] = {.lex_state = 62, .external_lex_state = 10}, + [4515] = {.lex_state = 64, .external_lex_state = 11}, + [4516] = {.lex_state = 62, .external_lex_state = 10}, + [4517] = {.lex_state = 64, .external_lex_state = 11}, + [4518] = {.lex_state = 62, .external_lex_state = 10}, + [4519] = {.lex_state = 62, .external_lex_state = 10}, + [4520] = {.lex_state = 62, .external_lex_state = 10}, + [4521] = {.lex_state = 64, .external_lex_state = 11}, + [4522] = {.lex_state = 64, .external_lex_state = 11}, + [4523] = {.lex_state = 62, .external_lex_state = 12}, + [4524] = {.lex_state = 64, .external_lex_state = 9}, + [4525] = {.lex_state = 62, .external_lex_state = 10}, + [4526] = {.lex_state = 64, .external_lex_state = 16}, + [4527] = {.lex_state = 64, .external_lex_state = 7}, + [4528] = {.lex_state = 64, .external_lex_state = 15}, + [4529] = {.lex_state = 64, .external_lex_state = 14}, + [4530] = {.lex_state = 64, .external_lex_state = 13}, + [4531] = {.lex_state = 64, .external_lex_state = 8}, + [4532] = {.lex_state = 62, .external_lex_state = 10}, + [4533] = {.lex_state = 64, .external_lex_state = 11}, + [4534] = {.lex_state = 62, .external_lex_state = 10}, + [4535] = {.lex_state = 64, .external_lex_state = 11}, + [4536] = {.lex_state = 62, .external_lex_state = 10}, + [4537] = {.lex_state = 64, .external_lex_state = 11}, + [4538] = {.lex_state = 62, .external_lex_state = 10}, + [4539] = {.lex_state = 64, .external_lex_state = 11}, + [4540] = {.lex_state = 62, .external_lex_state = 10}, + [4541] = {.lex_state = 64, .external_lex_state = 11}, + [4542] = {.lex_state = 62, .external_lex_state = 10}, + [4543] = {.lex_state = 64, .external_lex_state = 11}, + [4544] = {.lex_state = 62, .external_lex_state = 10}, + [4545] = {.lex_state = 64, .external_lex_state = 11}, + [4546] = {.lex_state = 64, .external_lex_state = 8}, + [4547] = {.lex_state = 64, .external_lex_state = 11}, + [4548] = {.lex_state = 64, .external_lex_state = 8}, + [4549] = {.lex_state = 64, .external_lex_state = 13}, + [4550] = {.lex_state = 62, .external_lex_state = 10}, + [4551] = {.lex_state = 64, .external_lex_state = 11}, + [4552] = {.lex_state = 64, .external_lex_state = 14}, + [4553] = {.lex_state = 62, .external_lex_state = 10}, + [4554] = {.lex_state = 64, .external_lex_state = 11}, + [4555] = {.lex_state = 62, .external_lex_state = 10}, + [4556] = {.lex_state = 64, .external_lex_state = 9}, + [4557] = {.lex_state = 62, .external_lex_state = 12}, + [4558] = {.lex_state = 64, .external_lex_state = 11}, + [4559] = {.lex_state = 62, .external_lex_state = 10}, + [4560] = {.lex_state = 64, .external_lex_state = 9}, + [4561] = {.lex_state = 64, .external_lex_state = 15}, + [4562] = {.lex_state = 64, .external_lex_state = 13}, + [4563] = {.lex_state = 64, .external_lex_state = 14}, + [4564] = {.lex_state = 64, .external_lex_state = 16}, + [4565] = {.lex_state = 64, .external_lex_state = 7}, + [4566] = {.lex_state = 64, .external_lex_state = 15}, + [4567] = {.lex_state = 64, .external_lex_state = 14}, + [4568] = {.lex_state = 64, .external_lex_state = 13}, + [4569] = {.lex_state = 64, .external_lex_state = 8}, + [4570] = {.lex_state = 62, .external_lex_state = 12}, + [4571] = {.lex_state = 64, .external_lex_state = 11}, + [4572] = {.lex_state = 62, .external_lex_state = 10}, + [4573] = {.lex_state = 64, .external_lex_state = 9}, + [4574] = {.lex_state = 62, .external_lex_state = 12}, + [4575] = {.lex_state = 64, .external_lex_state = 11}, + [4576] = {.lex_state = 62, .external_lex_state = 10}, + [4577] = {.lex_state = 64, .external_lex_state = 9}, + [4578] = {.lex_state = 62, .external_lex_state = 12}, + [4579] = {.lex_state = 64, .external_lex_state = 11}, + [4580] = {.lex_state = 62, .external_lex_state = 10}, + [4581] = {.lex_state = 64, .external_lex_state = 15}, + [4582] = {.lex_state = 64, .external_lex_state = 7}, + [4583] = {.lex_state = 64, .external_lex_state = 9}, + [4584] = {.lex_state = 62, .external_lex_state = 12}, + [4585] = {.lex_state = 64, .external_lex_state = 16}, + [4586] = {.lex_state = 64, .external_lex_state = 11}, + [4587] = {.lex_state = 62, .external_lex_state = 10}, + [4588] = {.lex_state = 64, .external_lex_state = 9}, + [4589] = {.lex_state = 62, .external_lex_state = 12}, + [4590] = {.lex_state = 64, .external_lex_state = 11}, + [4591] = {.lex_state = 64, .external_lex_state = 7}, + [4592] = {.lex_state = 62, .external_lex_state = 10}, + [4593] = {.lex_state = 64, .external_lex_state = 16}, + [4594] = {.lex_state = 62, .external_lex_state = 12}, + [4595] = {.lex_state = 64, .external_lex_state = 9}, + [4596] = {.lex_state = 62, .external_lex_state = 12}, + [4597] = {.lex_state = 64, .external_lex_state = 11}, + [4598] = {.lex_state = 62, .external_lex_state = 10}, + [4599] = {.lex_state = 64, .external_lex_state = 9}, + [4600] = {.lex_state = 62, .external_lex_state = 12}, + [4601] = {.lex_state = 64, .external_lex_state = 11}, + [4602] = {.lex_state = 62, .external_lex_state = 10}, + [4603] = {.lex_state = 64, .external_lex_state = 11}, + [4604] = {.lex_state = 62, .external_lex_state = 12}, + [4605] = {.lex_state = 64, .external_lex_state = 9}, + [4606] = {.lex_state = 62, .external_lex_state = 10}, + [4607] = {.lex_state = 64, .external_lex_state = 9}, + [4608] = {.lex_state = 62, .external_lex_state = 12}, + [4609] = {.lex_state = 64, .external_lex_state = 11}, + [4610] = {.lex_state = 62, .external_lex_state = 10}, + [4611] = {.lex_state = 64, .external_lex_state = 9}, + [4612] = {.lex_state = 62, .external_lex_state = 12}, + [4613] = {.lex_state = 64, .external_lex_state = 9}, + [4614] = {.lex_state = 62, .external_lex_state = 10}, + [4615] = {.lex_state = 64, .external_lex_state = 11}, + [4616] = {.lex_state = 62, .external_lex_state = 12}, + [4617] = {.lex_state = 64, .external_lex_state = 9}, + [4618] = {.lex_state = 64, .external_lex_state = 11}, + [4619] = {.lex_state = 62, .external_lex_state = 10}, + [4620] = {.lex_state = 64, .external_lex_state = 9}, + [4621] = {.lex_state = 62, .external_lex_state = 12}, + [4622] = {.lex_state = 64, .external_lex_state = 11}, + [4623] = {.lex_state = 62, .external_lex_state = 10}, + [4624] = {.lex_state = 62, .external_lex_state = 12}, + [4625] = {.lex_state = 64, .external_lex_state = 9}, + [4626] = {.lex_state = 64, .external_lex_state = 8}, + [4627] = {.lex_state = 62, .external_lex_state = 12}, + [4628] = {.lex_state = 64, .external_lex_state = 13}, + [4629] = {.lex_state = 64, .external_lex_state = 14}, + [4630] = {.lex_state = 64, .external_lex_state = 16}, + [4631] = {.lex_state = 64, .external_lex_state = 15}, + [4632] = {.lex_state = 64, .external_lex_state = 7}, + [4633] = {.lex_state = 64, .external_lex_state = 7}, + [4634] = {.lex_state = 64, .external_lex_state = 15}, + [4635] = {.lex_state = 64, .external_lex_state = 16}, + [4636] = {.lex_state = 64, .external_lex_state = 16}, + [4637] = {.lex_state = 64, .external_lex_state = 7}, + [4638] = {.lex_state = 64, .external_lex_state = 15}, + [4639] = {.lex_state = 64, .external_lex_state = 14}, + [4640] = {.lex_state = 64, .external_lex_state = 13}, + [4641] = {.lex_state = 64, .external_lex_state = 8}, + [4642] = {.lex_state = 64, .external_lex_state = 11}, + [4643] = {.lex_state = 62, .external_lex_state = 10}, + [4644] = {.lex_state = 64, .external_lex_state = 9}, + [4645] = {.lex_state = 62, .external_lex_state = 12}, + [4646] = {.lex_state = 64, .external_lex_state = 11}, + [4647] = {.lex_state = 62, .external_lex_state = 10}, + [4648] = {.lex_state = 64, .external_lex_state = 9}, + [4649] = {.lex_state = 62, .external_lex_state = 12}, + [4650] = {.lex_state = 64, .external_lex_state = 11}, + [4651] = {.lex_state = 62, .external_lex_state = 10}, + [4652] = {.lex_state = 64, .external_lex_state = 9}, + [4653] = {.lex_state = 62, .external_lex_state = 12}, + [4654] = {.lex_state = 64, .external_lex_state = 14}, + [4655] = {.lex_state = 64, .external_lex_state = 13}, + [4656] = {.lex_state = 64, .external_lex_state = 8}, + [4657] = {.lex_state = 64, .external_lex_state = 16}, + [4658] = {.lex_state = 64, .external_lex_state = 7}, + [4659] = {.lex_state = 64, .external_lex_state = 11}, + [4660] = {.lex_state = 62, .external_lex_state = 10}, + [4661] = {.lex_state = 64, .external_lex_state = 15}, + [4662] = {.lex_state = 64, .external_lex_state = 9}, + [4663] = {.lex_state = 62, .external_lex_state = 12}, + [4664] = {.lex_state = 64, .external_lex_state = 14}, + [4665] = {.lex_state = 64, .external_lex_state = 13}, + [4666] = {.lex_state = 64, .external_lex_state = 8}, + [4667] = {.lex_state = 64, .external_lex_state = 16}, + [4668] = {.lex_state = 64, .external_lex_state = 7}, + [4669] = {.lex_state = 64, .external_lex_state = 15}, + [4670] = {.lex_state = 64, .external_lex_state = 14}, + [4671] = {.lex_state = 64, .external_lex_state = 13}, + [4672] = {.lex_state = 64, .external_lex_state = 8}, + [4673] = {.lex_state = 64, .external_lex_state = 11}, + [4674] = {.lex_state = 62, .external_lex_state = 10}, + [4675] = {.lex_state = 64, .external_lex_state = 9}, + [4676] = {.lex_state = 62, .external_lex_state = 12}, + [4677] = {.lex_state = 64, .external_lex_state = 11}, + [4678] = {.lex_state = 62, .external_lex_state = 10}, + [4679] = {.lex_state = 64, .external_lex_state = 9}, + [4680] = {.lex_state = 62, .external_lex_state = 12}, + [4681] = {.lex_state = 64, .external_lex_state = 11}, + [4682] = {.lex_state = 62, .external_lex_state = 10}, + [4683] = {.lex_state = 64, .external_lex_state = 9}, + [4684] = {.lex_state = 64, .external_lex_state = 9}, + [4685] = {.lex_state = 62, .external_lex_state = 12}, + [4686] = {.lex_state = 64, .external_lex_state = 11}, + [4687] = {.lex_state = 64, .external_lex_state = 9}, + [4688] = {.lex_state = 62, .external_lex_state = 10}, + [4689] = {.lex_state = 62, .external_lex_state = 12}, + [4690] = {.lex_state = 64, .external_lex_state = 11}, + [4691] = {.lex_state = 62, .external_lex_state = 10}, + [4692] = {.lex_state = 64, .external_lex_state = 11}, + [4693] = {.lex_state = 62, .external_lex_state = 10}, + [4694] = {.lex_state = 64, .external_lex_state = 9}, + [4695] = {.lex_state = 64, .external_lex_state = 9}, + [4696] = {.lex_state = 62, .external_lex_state = 12}, + [4697] = {.lex_state = 64, .external_lex_state = 11}, + [4698] = {.lex_state = 62, .external_lex_state = 10}, + [4699] = {.lex_state = 62, .external_lex_state = 12}, + [4700] = {.lex_state = 64, .external_lex_state = 8}, + [4701] = {.lex_state = 64, .external_lex_state = 11}, + [4702] = {.lex_state = 62, .external_lex_state = 10}, + [4703] = {.lex_state = 64, .external_lex_state = 9}, + [4704] = {.lex_state = 62, .external_lex_state = 12}, + [4705] = {.lex_state = 62, .external_lex_state = 10}, + [4706] = {.lex_state = 64, .external_lex_state = 11}, + [4707] = {.lex_state = 62, .external_lex_state = 12}, + [4708] = {.lex_state = 64, .external_lex_state = 9}, + [4709] = {.lex_state = 64, .external_lex_state = 11}, + [4710] = {.lex_state = 62, .external_lex_state = 10}, + [4711] = {.lex_state = 64, .external_lex_state = 9}, + [4712] = {.lex_state = 62, .external_lex_state = 12}, + [4713] = {.lex_state = 64, .external_lex_state = 11}, + [4714] = {.lex_state = 62, .external_lex_state = 10}, + [4715] = {.lex_state = 64, .external_lex_state = 7}, + [4716] = {.lex_state = 64, .external_lex_state = 13}, + [4717] = {.lex_state = 62, .external_lex_state = 10}, + [4718] = {.lex_state = 64, .external_lex_state = 11}, + [4719] = {.lex_state = 62, .external_lex_state = 12}, + [4720] = {.lex_state = 64, .external_lex_state = 9}, + [4721] = {.lex_state = 64, .external_lex_state = 9}, + [4722] = {.lex_state = 62, .external_lex_state = 12}, + [4723] = {.lex_state = 64, .external_lex_state = 11}, + [4724] = {.lex_state = 62, .external_lex_state = 12}, + [4725] = {.lex_state = 62, .external_lex_state = 10}, + [4726] = {.lex_state = 64, .external_lex_state = 14}, + [4727] = {.lex_state = 64, .external_lex_state = 15}, + [4728] = {.lex_state = 64, .external_lex_state = 13}, + [4729] = {.lex_state = 64, .external_lex_state = 9}, + [4730] = {.lex_state = 62, .external_lex_state = 12}, + [4731] = {.lex_state = 64, .external_lex_state = 11}, + [4732] = {.lex_state = 62, .external_lex_state = 10}, + [4733] = {.lex_state = 64, .external_lex_state = 7}, + [4734] = {.lex_state = 64, .external_lex_state = 15}, + [4735] = {.lex_state = 64, .external_lex_state = 16}, + [4736] = {.lex_state = 64, .external_lex_state = 14}, + [4737] = {.lex_state = 62, .external_lex_state = 12}, + [4738] = {.lex_state = 64, .external_lex_state = 15}, + [4739] = {.lex_state = 64, .external_lex_state = 16}, + [4740] = {.lex_state = 64, .external_lex_state = 7}, + [4741] = {.lex_state = 64, .external_lex_state = 15}, + [4742] = {.lex_state = 64, .external_lex_state = 14}, + [4743] = {.lex_state = 64, .external_lex_state = 13}, + [4744] = {.lex_state = 64, .external_lex_state = 8}, + [4745] = {.lex_state = 64, .external_lex_state = 8}, + [4746] = {.lex_state = 64, .external_lex_state = 13}, + [4747] = {.lex_state = 64, .external_lex_state = 14}, + [4748] = {.lex_state = 64, .external_lex_state = 15}, + [4749] = {.lex_state = 64, .external_lex_state = 7}, + [4750] = {.lex_state = 64, .external_lex_state = 16}, + [4751] = {.lex_state = 64, .external_lex_state = 8}, + [4752] = {.lex_state = 64, .external_lex_state = 13}, + [4753] = {.lex_state = 64, .external_lex_state = 14}, + [4754] = {.lex_state = 64, .external_lex_state = 15}, + [4755] = {.lex_state = 64, .external_lex_state = 7}, + [4756] = {.lex_state = 64, .external_lex_state = 16}, + [4757] = {.lex_state = 64, .external_lex_state = 14}, + [4758] = {.lex_state = 64, .external_lex_state = 9}, + [4759] = {.lex_state = 62, .external_lex_state = 10}, + [4760] = {.lex_state = 64, .external_lex_state = 7}, + [4761] = {.lex_state = 64, .external_lex_state = 13}, + [4762] = {.lex_state = 64, .external_lex_state = 8}, + [4763] = {.lex_state = 64, .external_lex_state = 16}, + [4764] = {.lex_state = 64, .external_lex_state = 11}, + [4765] = {.lex_state = 64, .external_lex_state = 9}, + [4766] = {.lex_state = 62, .external_lex_state = 12}, + [4767] = {.lex_state = 64, .external_lex_state = 11}, + [4768] = {.lex_state = 62, .external_lex_state = 12}, + [4769] = {.lex_state = 64, .external_lex_state = 9}, + [4770] = {.lex_state = 64, .external_lex_state = 16}, + [4771] = {.lex_state = 64, .external_lex_state = 7}, + [4772] = {.lex_state = 64, .external_lex_state = 15}, + [4773] = {.lex_state = 64, .external_lex_state = 14}, + [4774] = {.lex_state = 64, .external_lex_state = 13}, + [4775] = {.lex_state = 64, .external_lex_state = 8}, + [4776] = {.lex_state = 62, .external_lex_state = 10}, + [4777] = {.lex_state = 64, .external_lex_state = 9}, + [4778] = {.lex_state = 62, .external_lex_state = 12}, + [4779] = {.lex_state = 64, .external_lex_state = 11}, + [4780] = {.lex_state = 62, .external_lex_state = 10}, + [4781] = {.lex_state = 64, .external_lex_state = 8}, + [4782] = {.lex_state = 64, .external_lex_state = 13}, + [4783] = {.lex_state = 64, .external_lex_state = 14}, + [4784] = {.lex_state = 64, .external_lex_state = 15}, + [4785] = {.lex_state = 64, .external_lex_state = 7}, + [4786] = {.lex_state = 64, .external_lex_state = 16}, + [4787] = {.lex_state = 64, .external_lex_state = 11}, + [4788] = {.lex_state = 64, .external_lex_state = 9}, + [4789] = {.lex_state = 64, .external_lex_state = 8}, + [4790] = {.lex_state = 64, .external_lex_state = 13}, + [4791] = {.lex_state = 64, .external_lex_state = 14}, + [4792] = {.lex_state = 64, .external_lex_state = 15}, + [4793] = {.lex_state = 64, .external_lex_state = 7}, + [4794] = {.lex_state = 64, .external_lex_state = 16}, + [4795] = {.lex_state = 64, .external_lex_state = 9}, + [4796] = {.lex_state = 62, .external_lex_state = 12}, + [4797] = {.lex_state = 64, .external_lex_state = 11}, + [4798] = {.lex_state = 62, .external_lex_state = 10}, + [4799] = {.lex_state = 62, .external_lex_state = 10}, + [4800] = {.lex_state = 62, .external_lex_state = 10}, + [4801] = {.lex_state = 64, .external_lex_state = 9}, + [4802] = {.lex_state = 62, .external_lex_state = 12}, + [4803] = {.lex_state = 64, .external_lex_state = 11}, + [4804] = {.lex_state = 62, .external_lex_state = 10}, + [4805] = {.lex_state = 64, .external_lex_state = 16}, + [4806] = {.lex_state = 64, .external_lex_state = 8}, + [4807] = {.lex_state = 64, .external_lex_state = 13}, + [4808] = {.lex_state = 62, .external_lex_state = 10}, + [4809] = {.lex_state = 64, .external_lex_state = 11}, + [4810] = {.lex_state = 62, .external_lex_state = 12}, + [4811] = {.lex_state = 64, .external_lex_state = 9}, + [4812] = {.lex_state = 64, .external_lex_state = 14}, + [4813] = {.lex_state = 64, .external_lex_state = 8}, + [4814] = {.lex_state = 64, .external_lex_state = 13}, + [4815] = {.lex_state = 64, .external_lex_state = 15}, + [4816] = {.lex_state = 64, .external_lex_state = 14}, + [4817] = {.lex_state = 64, .external_lex_state = 15}, + [4818] = {.lex_state = 64, .external_lex_state = 7}, + [4819] = {.lex_state = 64, .external_lex_state = 16}, + [4820] = {.lex_state = 62, .external_lex_state = 10}, + [4821] = {.lex_state = 64, .external_lex_state = 11}, + [4822] = {.lex_state = 62, .external_lex_state = 12}, + [4823] = {.lex_state = 64, .external_lex_state = 9}, + [4824] = {.lex_state = 64, .external_lex_state = 7}, + [4825] = {.lex_state = 64, .external_lex_state = 16}, + [4826] = {.lex_state = 64, .external_lex_state = 8}, + [4827] = {.lex_state = 64, .external_lex_state = 13}, + [4828] = {.lex_state = 64, .external_lex_state = 14}, + [4829] = {.lex_state = 64, .external_lex_state = 16}, + [4830] = {.lex_state = 64, .external_lex_state = 15}, + [4831] = {.lex_state = 64, .external_lex_state = 15}, + [4832] = {.lex_state = 64, .external_lex_state = 9}, + [4833] = {.lex_state = 64, .external_lex_state = 7}, + [4834] = {.lex_state = 64, .external_lex_state = 16}, + [4835] = {.lex_state = 64, .external_lex_state = 9}, + [4836] = {.lex_state = 62, .external_lex_state = 12}, + [4837] = {.lex_state = 64, .external_lex_state = 8}, + [4838] = {.lex_state = 64, .external_lex_state = 11}, + [4839] = {.lex_state = 64, .external_lex_state = 13}, + [4840] = {.lex_state = 62, .external_lex_state = 10}, + [4841] = {.lex_state = 64, .external_lex_state = 14}, + [4842] = {.lex_state = 64, .external_lex_state = 16}, + [4843] = {.lex_state = 64, .external_lex_state = 7}, + [4844] = {.lex_state = 64, .external_lex_state = 15}, + [4845] = {.lex_state = 64, .external_lex_state = 14}, + [4846] = {.lex_state = 64, .external_lex_state = 13}, + [4847] = {.lex_state = 64, .external_lex_state = 8}, + [4848] = {.lex_state = 62, .external_lex_state = 12}, + [4849] = {.lex_state = 64, .external_lex_state = 11}, + [4850] = {.lex_state = 62, .external_lex_state = 10}, + [4851] = {.lex_state = 64, .external_lex_state = 9}, + [4852] = {.lex_state = 62, .external_lex_state = 12}, + [4853] = {.lex_state = 64, .external_lex_state = 11}, + [4854] = {.lex_state = 62, .external_lex_state = 10}, + [4855] = {.lex_state = 64, .external_lex_state = 8}, + [4856] = {.lex_state = 64, .external_lex_state = 13}, + [4857] = {.lex_state = 64, .external_lex_state = 14}, + [4858] = {.lex_state = 64, .external_lex_state = 15}, + [4859] = {.lex_state = 64, .external_lex_state = 15}, + [4860] = {.lex_state = 64, .external_lex_state = 7}, + [4861] = {.lex_state = 64, .external_lex_state = 14}, + [4862] = {.lex_state = 64, .external_lex_state = 11}, + [4863] = {.lex_state = 64, .external_lex_state = 16}, + [4864] = {.lex_state = 64, .external_lex_state = 13}, + [4865] = {.lex_state = 64, .external_lex_state = 8}, + [4866] = {.lex_state = 64, .external_lex_state = 16}, + [4867] = {.lex_state = 62, .external_lex_state = 12}, + [4868] = {.lex_state = 64, .external_lex_state = 9}, + [4869] = {.lex_state = 64, .external_lex_state = 7}, + [4870] = {.lex_state = 64, .external_lex_state = 16}, + [4871] = {.lex_state = 62, .external_lex_state = 12}, + [4872] = {.lex_state = 64, .external_lex_state = 11}, + [4873] = {.lex_state = 64, .external_lex_state = 16}, + [4874] = {.lex_state = 64, .external_lex_state = 7}, + [4875] = {.lex_state = 64, .external_lex_state = 15}, + [4876] = {.lex_state = 64, .external_lex_state = 14}, + [4877] = {.lex_state = 64, .external_lex_state = 13}, + [4878] = {.lex_state = 64, .external_lex_state = 8}, + [4879] = {.lex_state = 64, .external_lex_state = 8}, + [4880] = {.lex_state = 64, .external_lex_state = 13}, + [4881] = {.lex_state = 64, .external_lex_state = 14}, + [4882] = {.lex_state = 64, .external_lex_state = 15}, + [4883] = {.lex_state = 64, .external_lex_state = 7}, + [4884] = {.lex_state = 64, .external_lex_state = 16}, + [4885] = {.lex_state = 62, .external_lex_state = 10}, + [4886] = {.lex_state = 64, .external_lex_state = 7}, + [4887] = {.lex_state = 64, .external_lex_state = 9}, + [4888] = {.lex_state = 62, .external_lex_state = 12}, + [4889] = {.lex_state = 64, .external_lex_state = 11}, + [4890] = {.lex_state = 64, .external_lex_state = 9}, + [4891] = {.lex_state = 62, .external_lex_state = 10}, + [4892] = {.lex_state = 64, .external_lex_state = 9}, + [4893] = {.lex_state = 64, .external_lex_state = 15}, + [4894] = {.lex_state = 62, .external_lex_state = 12}, + [4895] = {.lex_state = 64, .external_lex_state = 11}, + [4896] = {.lex_state = 62, .external_lex_state = 10}, + [4897] = {.lex_state = 64, .external_lex_state = 8}, + [4898] = {.lex_state = 62, .external_lex_state = 10}, + [4899] = {.lex_state = 64, .external_lex_state = 13}, + [4900] = {.lex_state = 64, .external_lex_state = 14}, + [4901] = {.lex_state = 62, .external_lex_state = 12}, + [4902] = {.lex_state = 64, .external_lex_state = 11}, [4903] = {.lex_state = 102, .external_lex_state = 6}, - [4904] = {.lex_state = 102, .external_lex_state = 6}, - [4905] = {.lex_state = 53, .external_lex_state = 6}, + [4904] = {.lex_state = 258, .external_lex_state = 6}, + [4905] = {.lex_state = 258, .external_lex_state = 6}, [4906] = {.lex_state = 102, .external_lex_state = 6}, - [4907] = {.lex_state = 102, .external_lex_state = 6}, - [4908] = {.lex_state = 102, .external_lex_state = 6}, + [4907] = {.lex_state = 258, .external_lex_state = 6}, + [4908] = {.lex_state = 258, .external_lex_state = 6}, [4909] = {.lex_state = 102, .external_lex_state = 6}, - [4910] = {.lex_state = 102, .external_lex_state = 6}, + [4910] = {.lex_state = 258, .external_lex_state = 6}, [4911] = {.lex_state = 102, .external_lex_state = 6}, [4912] = {.lex_state = 102, .external_lex_state = 6}, - [4913] = {.lex_state = 102, .external_lex_state = 6}, + [4913] = {.lex_state = 258, .external_lex_state = 6}, [4914] = {.lex_state = 102, .external_lex_state = 6}, - [4915] = {.lex_state = 102, .external_lex_state = 6}, - [4916] = {.lex_state = 102, .external_lex_state = 6}, - [4917] = {.lex_state = 102, .external_lex_state = 6}, - [4918] = {.lex_state = 102, .external_lex_state = 6}, - [4919] = {.lex_state = 102, .external_lex_state = 6}, + [4915] = {.lex_state = 258, .external_lex_state = 6}, + [4916] = {.lex_state = 258, .external_lex_state = 6}, + [4917] = {.lex_state = 258, .external_lex_state = 6}, + [4918] = {.lex_state = 258, .external_lex_state = 6}, + [4919] = {.lex_state = 258, .external_lex_state = 6}, [4920] = {.lex_state = 102, .external_lex_state = 6}, [4921] = {.lex_state = 102, .external_lex_state = 6}, - [4922] = {.lex_state = 102, .external_lex_state = 6}, - [4923] = {.lex_state = 102, .external_lex_state = 6}, - [4924] = {.lex_state = 102, .external_lex_state = 6}, - [4925] = {.lex_state = 102, .external_lex_state = 6}, - [4926] = {.lex_state = 102, .external_lex_state = 6}, + [4922] = {.lex_state = 258, .external_lex_state = 6}, + [4923] = {.lex_state = 258, .external_lex_state = 6}, + [4924] = {.lex_state = 258, .external_lex_state = 6}, + [4925] = {.lex_state = 258, .external_lex_state = 6}, + [4926] = {.lex_state = 258, .external_lex_state = 6}, [4927] = {.lex_state = 102, .external_lex_state = 6}, [4928] = {.lex_state = 258, .external_lex_state = 6}, [4929] = {.lex_state = 102, .external_lex_state = 6}, [4930] = {.lex_state = 102, .external_lex_state = 6}, [4931] = {.lex_state = 102, .external_lex_state = 6}, [4932] = {.lex_state = 102, .external_lex_state = 6}, - [4933] = {.lex_state = 258, .external_lex_state = 6}, + [4933] = {.lex_state = 102, .external_lex_state = 6}, [4934] = {.lex_state = 258, .external_lex_state = 6}, [4935] = {.lex_state = 258, .external_lex_state = 6}, [4936] = {.lex_state = 258, .external_lex_state = 6}, - [4937] = {.lex_state = 258, .external_lex_state = 6}, - [4938] = {.lex_state = 258, .external_lex_state = 6}, + [4937] = {.lex_state = 102, .external_lex_state = 6}, + [4938] = {.lex_state = 102, .external_lex_state = 6}, [4939] = {.lex_state = 258, .external_lex_state = 6}, - [4940] = {.lex_state = 100, .external_lex_state = 6}, + [4940] = {.lex_state = 102, .external_lex_state = 6}, [4941] = {.lex_state = 258, .external_lex_state = 6}, [4942] = {.lex_state = 258, .external_lex_state = 6}, [4943] = {.lex_state = 258, .external_lex_state = 6}, [4944] = {.lex_state = 258, .external_lex_state = 6}, [4945] = {.lex_state = 258, .external_lex_state = 6}, - [4946] = {.lex_state = 258, .external_lex_state = 6}, + [4946] = {.lex_state = 102, .external_lex_state = 6}, [4947] = {.lex_state = 258, .external_lex_state = 6}, [4948] = {.lex_state = 258, .external_lex_state = 6}, - [4949] = {.lex_state = 258, .external_lex_state = 6}, + [4949] = {.lex_state = 102, .external_lex_state = 6}, [4950] = {.lex_state = 258, .external_lex_state = 6}, - [4951] = {.lex_state = 258, .external_lex_state = 6}, - [4952] = {.lex_state = 100, .external_lex_state = 6}, - [4953] = {.lex_state = 50, .external_lex_state = 6}, - [4954] = {.lex_state = 100, .external_lex_state = 6}, - [4955] = {.lex_state = 50, .external_lex_state = 6}, - [4956] = {.lex_state = 50, .external_lex_state = 6}, + [4951] = {.lex_state = 102, .external_lex_state = 6}, + [4952] = {.lex_state = 102, .external_lex_state = 6}, + [4953] = {.lex_state = 258, .external_lex_state = 6}, + [4954] = {.lex_state = 258, .external_lex_state = 6}, + [4955] = {.lex_state = 102, .external_lex_state = 6}, + [4956] = {.lex_state = 102, .external_lex_state = 6}, [4957] = {.lex_state = 258, .external_lex_state = 6}, [4958] = {.lex_state = 258, .external_lex_state = 6}, - [4959] = {.lex_state = 258, .external_lex_state = 6}, - [4960] = {.lex_state = 50, .external_lex_state = 6}, + [4959] = {.lex_state = 102, .external_lex_state = 6}, + [4960] = {.lex_state = 102, .external_lex_state = 6}, [4961] = {.lex_state = 258, .external_lex_state = 6}, [4962] = {.lex_state = 258, .external_lex_state = 6}, - [4963] = {.lex_state = 258, .external_lex_state = 6}, - [4964] = {.lex_state = 258, .external_lex_state = 6}, + [4963] = {.lex_state = 102, .external_lex_state = 6}, + [4964] = {.lex_state = 102, .external_lex_state = 6}, [4965] = {.lex_state = 258, .external_lex_state = 6}, - [4966] = {.lex_state = 100, .external_lex_state = 6}, - [4967] = {.lex_state = 258, .external_lex_state = 6}, + [4966] = {.lex_state = 258, .external_lex_state = 6}, + [4967] = {.lex_state = 102, .external_lex_state = 6}, [4968] = {.lex_state = 258, .external_lex_state = 6}, - [4969] = {.lex_state = 258, .external_lex_state = 6}, - [4970] = {.lex_state = 100, .external_lex_state = 6}, + [4969] = {.lex_state = 102, .external_lex_state = 6}, + [4970] = {.lex_state = 258, .external_lex_state = 6}, [4971] = {.lex_state = 258, .external_lex_state = 6}, [4972] = {.lex_state = 258, .external_lex_state = 6}, - [4973] = {.lex_state = 258, .external_lex_state = 6}, - [4974] = {.lex_state = 258, .external_lex_state = 6}, + [4973] = {.lex_state = 102, .external_lex_state = 6}, + [4974] = {.lex_state = 102, .external_lex_state = 6}, [4975] = {.lex_state = 258, .external_lex_state = 6}, - [4976] = {.lex_state = 100, .external_lex_state = 6}, + [4976] = {.lex_state = 102, .external_lex_state = 6}, [4977] = {.lex_state = 258, .external_lex_state = 6}, [4978] = {.lex_state = 258, .external_lex_state = 6}, - [4979] = {.lex_state = 258, .external_lex_state = 6}, - [4980] = {.lex_state = 258, .external_lex_state = 6}, - [4981] = {.lex_state = 50, .external_lex_state = 6}, + [4979] = {.lex_state = 102, .external_lex_state = 6}, + [4980] = {.lex_state = 102, .external_lex_state = 6}, + [4981] = {.lex_state = 258, .external_lex_state = 6}, [4982] = {.lex_state = 258, .external_lex_state = 6}, [4983] = {.lex_state = 258, .external_lex_state = 6}, [4984] = {.lex_state = 258, .external_lex_state = 6}, [4985] = {.lex_state = 258, .external_lex_state = 6}, [4986] = {.lex_state = 258, .external_lex_state = 6}, [4987] = {.lex_state = 258, .external_lex_state = 6}, - [4988] = {.lex_state = 258, .external_lex_state = 6}, + [4988] = {.lex_state = 102, .external_lex_state = 6}, [4989] = {.lex_state = 258, .external_lex_state = 6}, [4990] = {.lex_state = 258, .external_lex_state = 6}, - [4991] = {.lex_state = 258, .external_lex_state = 6}, - [4992] = {.lex_state = 258, .external_lex_state = 6}, + [4991] = {.lex_state = 102, .external_lex_state = 6}, + [4992] = {.lex_state = 102, .external_lex_state = 6}, [4993] = {.lex_state = 258, .external_lex_state = 6}, - [4994] = {.lex_state = 50, .external_lex_state = 6}, + [4994] = {.lex_state = 258, .external_lex_state = 6}, [4995] = {.lex_state = 258, .external_lex_state = 6}, [4996] = {.lex_state = 258, .external_lex_state = 6}, [4997] = {.lex_state = 258, .external_lex_state = 6}, - [4998] = {.lex_state = 258, .external_lex_state = 6}, + [4998] = {.lex_state = 102, .external_lex_state = 6}, [4999] = {.lex_state = 258, .external_lex_state = 6}, - [5000] = {.lex_state = 50, .external_lex_state = 6}, - [5001] = {.lex_state = 258, .external_lex_state = 6}, - [5002] = {.lex_state = 258, .external_lex_state = 6}, + [5000] = {.lex_state = 102, .external_lex_state = 6}, + [5001] = {.lex_state = 102, .external_lex_state = 6}, + [5002] = {.lex_state = 102, .external_lex_state = 6}, [5003] = {.lex_state = 258, .external_lex_state = 6}, [5004] = {.lex_state = 258, .external_lex_state = 6}, - [5005] = {.lex_state = 100, .external_lex_state = 6}, + [5005] = {.lex_state = 258, .external_lex_state = 6}, [5006] = {.lex_state = 258, .external_lex_state = 6}, - [5007] = {.lex_state = 258, .external_lex_state = 6}, - [5008] = {.lex_state = 258, .external_lex_state = 6}, + [5007] = {.lex_state = 102, .external_lex_state = 6}, + [5008] = {.lex_state = 102, .external_lex_state = 6}, [5009] = {.lex_state = 258, .external_lex_state = 6}, [5010] = {.lex_state = 258, .external_lex_state = 6}, - [5011] = {.lex_state = 258, .external_lex_state = 6}, + [5011] = {.lex_state = 102, .external_lex_state = 6}, [5012] = {.lex_state = 258, .external_lex_state = 6}, [5013] = {.lex_state = 258, .external_lex_state = 6}, - [5014] = {.lex_state = 258, .external_lex_state = 6}, + [5014] = {.lex_state = 102, .external_lex_state = 6}, [5015] = {.lex_state = 258, .external_lex_state = 6}, [5016] = {.lex_state = 258, .external_lex_state = 6}, [5017] = {.lex_state = 258, .external_lex_state = 6}, @@ -22875,45 +22905,653 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5020] = {.lex_state = 258, .external_lex_state = 6}, [5021] = {.lex_state = 258, .external_lex_state = 6}, [5022] = {.lex_state = 258, .external_lex_state = 6}, - [5023] = {.lex_state = 258, .external_lex_state = 6}, + [5023] = {.lex_state = 102, .external_lex_state = 6}, [5024] = {.lex_state = 258, .external_lex_state = 6}, - [5025] = {.lex_state = 258, .external_lex_state = 6}, - [5026] = {.lex_state = 50, .external_lex_state = 6}, - [5027] = {.lex_state = 50, .external_lex_state = 6}, + [5025] = {.lex_state = 102, .external_lex_state = 6}, + [5026] = {.lex_state = 102, .external_lex_state = 6}, + [5027] = {.lex_state = 258, .external_lex_state = 6}, [5028] = {.lex_state = 258, .external_lex_state = 6}, - [5029] = {.lex_state = 258, .external_lex_state = 6}, - [5030] = {.lex_state = 258, .external_lex_state = 6}, - [5031] = {.lex_state = 258, .external_lex_state = 6}, - [5032] = {.lex_state = 100, .external_lex_state = 6}, - [5033] = {.lex_state = 258, .external_lex_state = 6}, - [5034] = {.lex_state = 258, .external_lex_state = 6}, + [5029] = {.lex_state = 102, .external_lex_state = 6}, + [5030] = {.lex_state = 102, .external_lex_state = 6}, + [5031] = {.lex_state = 102, .external_lex_state = 6}, + [5032] = {.lex_state = 102, .external_lex_state = 6}, + [5033] = {.lex_state = 102, .external_lex_state = 6}, + [5034] = {.lex_state = 102, .external_lex_state = 6}, [5035] = {.lex_state = 258, .external_lex_state = 6}, [5036] = {.lex_state = 258, .external_lex_state = 6}, [5037] = {.lex_state = 258, .external_lex_state = 6}, - [5038] = {.lex_state = 50, .external_lex_state = 6}, - [5039] = {.lex_state = 100, .external_lex_state = 6}, + [5038] = {.lex_state = 258, .external_lex_state = 6}, + [5039] = {.lex_state = 258, .external_lex_state = 6}, [5040] = {.lex_state = 258, .external_lex_state = 6}, - [5041] = {.lex_state = 50, .external_lex_state = 6}, - [5042] = {.lex_state = 50, .external_lex_state = 6}, - [5043] = {.lex_state = 258, .external_lex_state = 6}, - [5044] = {.lex_state = 258, .external_lex_state = 6}, - [5045] = {.lex_state = 258, .external_lex_state = 6}, - [5046] = {.lex_state = 258, .external_lex_state = 6}, - [5047] = {.lex_state = 258, .external_lex_state = 6}, - [5048] = {.lex_state = 100, .external_lex_state = 6}, - [5049] = {.lex_state = 258, .external_lex_state = 6}, - [5050] = {.lex_state = 100, .external_lex_state = 6}, - [5051] = {.lex_state = 258, .external_lex_state = 6}, - [5052] = {.lex_state = 258, .external_lex_state = 6}, - [5053] = {.lex_state = 258, .external_lex_state = 6}, - [5054] = {.lex_state = 258, .external_lex_state = 6}, - [5055] = {.lex_state = 258, .external_lex_state = 6}, - [5056] = {.lex_state = 258, .external_lex_state = 6}, - [5057] = {.lex_state = 100, .external_lex_state = 6}, - [5058] = {.lex_state = 258, .external_lex_state = 6}, - [5059] = {.lex_state = 258, .external_lex_state = 6}, - [5060] = {.lex_state = 258, .external_lex_state = 6}, - [5061] = {.lex_state = 258, .external_lex_state = 6}, + [5041] = {.lex_state = 102, .external_lex_state = 6}, + [5042] = {.lex_state = 63, .external_lex_state = 17}, + [5043] = {.lex_state = 63, .external_lex_state = 18}, + [5044] = {.lex_state = 100, .external_lex_state = 6}, + [5045] = {.lex_state = 63, .external_lex_state = 19}, + [5046] = {.lex_state = 63, .external_lex_state = 18}, + [5047] = {.lex_state = 63, .external_lex_state = 20}, + [5048] = {.lex_state = 63, .external_lex_state = 21}, + [5049] = {.lex_state = 63, .external_lex_state = 17}, + [5050] = {.lex_state = 63, .external_lex_state = 22}, + [5051] = {.lex_state = 63, .external_lex_state = 23}, + [5052] = {.lex_state = 65, .external_lex_state = 24}, + [5053] = {.lex_state = 65, .external_lex_state = 25}, + [5054] = {.lex_state = 63, .external_lex_state = 21}, + [5055] = {.lex_state = 63, .external_lex_state = 20}, + [5056] = {.lex_state = 63, .external_lex_state = 18}, + [5057] = {.lex_state = 63, .external_lex_state = 19}, + [5058] = {.lex_state = 63, .external_lex_state = 26}, + [5059] = {.lex_state = 64, .external_lex_state = 8}, + [5060] = {.lex_state = 65, .external_lex_state = 25}, + [5061] = {.lex_state = 65, .external_lex_state = 24}, + [5062] = {.lex_state = 63, .external_lex_state = 22}, + [5063] = {.lex_state = 64, .external_lex_state = 13}, + [5064] = {.lex_state = 63, .external_lex_state = 23}, + [5065] = {.lex_state = 63, .external_lex_state = 22}, + [5066] = {.lex_state = 63, .external_lex_state = 17}, + [5067] = {.lex_state = 64, .external_lex_state = 14}, + [5068] = {.lex_state = 64, .external_lex_state = 15}, + [5069] = {.lex_state = 64, .external_lex_state = 7}, + [5070] = {.lex_state = 64, .external_lex_state = 16}, + [5071] = {.lex_state = 63, .external_lex_state = 17}, + [5072] = {.lex_state = 63, .external_lex_state = 22}, + [5073] = {.lex_state = 63, .external_lex_state = 23}, + [5074] = {.lex_state = 65, .external_lex_state = 24}, + [5075] = {.lex_state = 65, .external_lex_state = 25}, + [5076] = {.lex_state = 63, .external_lex_state = 21}, + [5077] = {.lex_state = 63, .external_lex_state = 20}, + [5078] = {.lex_state = 63, .external_lex_state = 18}, + [5079] = {.lex_state = 63, .external_lex_state = 17}, + [5080] = {.lex_state = 63, .external_lex_state = 22}, + [5081] = {.lex_state = 63, .external_lex_state = 23}, + [5082] = {.lex_state = 65, .external_lex_state = 24}, + [5083] = {.lex_state = 65, .external_lex_state = 25}, + [5084] = {.lex_state = 63, .external_lex_state = 21}, + [5085] = {.lex_state = 63, .external_lex_state = 20}, + [5086] = {.lex_state = 63, .external_lex_state = 18}, + [5087] = {.lex_state = 63, .external_lex_state = 19}, + [5088] = {.lex_state = 63, .external_lex_state = 26}, + [5089] = {.lex_state = 63, .external_lex_state = 19}, + [5090] = {.lex_state = 100, .external_lex_state = 6}, + [5091] = {.lex_state = 63, .external_lex_state = 26}, + [5092] = {.lex_state = 65, .external_lex_state = 24}, + [5093] = {.lex_state = 63, .external_lex_state = 17}, + [5094] = {.lex_state = 63, .external_lex_state = 22}, + [5095] = {.lex_state = 63, .external_lex_state = 23}, + [5096] = {.lex_state = 63, .external_lex_state = 17}, + [5097] = {.lex_state = 65, .external_lex_state = 24}, + [5098] = {.lex_state = 65, .external_lex_state = 25}, + [5099] = {.lex_state = 63, .external_lex_state = 22}, + [5100] = {.lex_state = 63, .external_lex_state = 21}, + [5101] = {.lex_state = 63, .external_lex_state = 20}, + [5102] = {.lex_state = 63, .external_lex_state = 18}, + [5103] = {.lex_state = 63, .external_lex_state = 19}, + [5104] = {.lex_state = 63, .external_lex_state = 26}, + [5105] = {.lex_state = 63, .external_lex_state = 26}, + [5106] = {.lex_state = 63, .external_lex_state = 19}, + [5107] = {.lex_state = 63, .external_lex_state = 18}, + [5108] = {.lex_state = 63, .external_lex_state = 20}, + [5109] = {.lex_state = 63, .external_lex_state = 21}, + [5110] = {.lex_state = 65, .external_lex_state = 25}, + [5111] = {.lex_state = 65, .external_lex_state = 24}, + [5112] = {.lex_state = 63, .external_lex_state = 23}, + [5113] = {.lex_state = 63, .external_lex_state = 22}, + [5114] = {.lex_state = 63, .external_lex_state = 17}, + [5115] = {.lex_state = 63, .external_lex_state = 23}, + [5116] = {.lex_state = 63, .external_lex_state = 17}, + [5117] = {.lex_state = 65, .external_lex_state = 24}, + [5118] = {.lex_state = 65, .external_lex_state = 25}, + [5119] = {.lex_state = 63, .external_lex_state = 22}, + [5120] = {.lex_state = 63, .external_lex_state = 21}, + [5121] = {.lex_state = 63, .external_lex_state = 23}, + [5122] = {.lex_state = 63, .external_lex_state = 20}, + [5123] = {.lex_state = 65, .external_lex_state = 24}, + [5124] = {.lex_state = 63, .external_lex_state = 18}, + [5125] = {.lex_state = 100, .external_lex_state = 6}, + [5126] = {.lex_state = 63, .external_lex_state = 17}, + [5127] = {.lex_state = 63, .external_lex_state = 22}, + [5128] = {.lex_state = 63, .external_lex_state = 23}, + [5129] = {.lex_state = 65, .external_lex_state = 24}, + [5130] = {.lex_state = 65, .external_lex_state = 25}, + [5131] = {.lex_state = 63, .external_lex_state = 21}, + [5132] = {.lex_state = 63, .external_lex_state = 20}, + [5133] = {.lex_state = 63, .external_lex_state = 18}, + [5134] = {.lex_state = 63, .external_lex_state = 19}, + [5135] = {.lex_state = 63, .external_lex_state = 26}, + [5136] = {.lex_state = 63, .external_lex_state = 26}, + [5137] = {.lex_state = 63, .external_lex_state = 19}, + [5138] = {.lex_state = 63, .external_lex_state = 18}, + [5139] = {.lex_state = 63, .external_lex_state = 20}, + [5140] = {.lex_state = 63, .external_lex_state = 21}, + [5141] = {.lex_state = 65, .external_lex_state = 25}, + [5142] = {.lex_state = 63, .external_lex_state = 17}, + [5143] = {.lex_state = 63, .external_lex_state = 22}, + [5144] = {.lex_state = 63, .external_lex_state = 23}, + [5145] = {.lex_state = 65, .external_lex_state = 24}, + [5146] = {.lex_state = 65, .external_lex_state = 25}, + [5147] = {.lex_state = 63, .external_lex_state = 21}, + [5148] = {.lex_state = 63, .external_lex_state = 20}, + [5149] = {.lex_state = 63, .external_lex_state = 18}, + [5150] = {.lex_state = 63, .external_lex_state = 19}, + [5151] = {.lex_state = 63, .external_lex_state = 26}, + [5152] = {.lex_state = 65, .external_lex_state = 24}, + [5153] = {.lex_state = 63, .external_lex_state = 23}, + [5154] = {.lex_state = 65, .external_lex_state = 25}, + [5155] = {.lex_state = 63, .external_lex_state = 17}, + [5156] = {.lex_state = 63, .external_lex_state = 19}, + [5157] = {.lex_state = 63, .external_lex_state = 21}, + [5158] = {.lex_state = 63, .external_lex_state = 26}, + [5159] = {.lex_state = 63, .external_lex_state = 20}, + [5160] = {.lex_state = 63, .external_lex_state = 18}, + [5161] = {.lex_state = 102, .external_lex_state = 6}, + [5162] = {.lex_state = 63, .external_lex_state = 19}, + [5163] = {.lex_state = 63, .external_lex_state = 26}, + [5164] = {.lex_state = 63, .external_lex_state = 19}, + [5165] = {.lex_state = 100, .external_lex_state = 6}, + [5166] = {.lex_state = 100, .external_lex_state = 6}, + [5167] = {.lex_state = 64, .external_lex_state = 11}, + [5168] = {.lex_state = 63, .external_lex_state = 26}, + [5169] = {.lex_state = 100, .external_lex_state = 6}, + [5170] = {.lex_state = 63, .external_lex_state = 19}, + [5171] = {.lex_state = 100, .external_lex_state = 6}, + [5172] = {.lex_state = 63, .external_lex_state = 17}, + [5173] = {.lex_state = 63, .external_lex_state = 22}, + [5174] = {.lex_state = 63, .external_lex_state = 23}, + [5175] = {.lex_state = 65, .external_lex_state = 24}, + [5176] = {.lex_state = 65, .external_lex_state = 25}, + [5177] = {.lex_state = 63, .external_lex_state = 21}, + [5178] = {.lex_state = 63, .external_lex_state = 20}, + [5179] = {.lex_state = 63, .external_lex_state = 18}, + [5180] = {.lex_state = 63, .external_lex_state = 19}, + [5181] = {.lex_state = 63, .external_lex_state = 26}, + [5182] = {.lex_state = 63, .external_lex_state = 20}, + [5183] = {.lex_state = 258, .external_lex_state = 6}, + [5184] = {.lex_state = 100, .external_lex_state = 6}, + [5185] = {.lex_state = 63, .external_lex_state = 21}, + [5186] = {.lex_state = 65, .external_lex_state = 25}, + [5187] = {.lex_state = 65, .external_lex_state = 24}, + [5188] = {.lex_state = 63, .external_lex_state = 17}, + [5189] = {.lex_state = 63, .external_lex_state = 22}, + [5190] = {.lex_state = 63, .external_lex_state = 23}, + [5191] = {.lex_state = 65, .external_lex_state = 24}, + [5192] = {.lex_state = 65, .external_lex_state = 25}, + [5193] = {.lex_state = 63, .external_lex_state = 21}, + [5194] = {.lex_state = 63, .external_lex_state = 20}, + [5195] = {.lex_state = 63, .external_lex_state = 18}, + [5196] = {.lex_state = 63, .external_lex_state = 19}, + [5197] = {.lex_state = 63, .external_lex_state = 26}, + [5198] = {.lex_state = 64, .external_lex_state = 9}, + [5199] = {.lex_state = 102, .external_lex_state = 6}, + [5200] = {.lex_state = 63, .external_lex_state = 23}, + [5201] = {.lex_state = 100, .external_lex_state = 6}, + [5202] = {.lex_state = 63, .external_lex_state = 22}, + [5203] = {.lex_state = 63, .external_lex_state = 17}, + [5204] = {.lex_state = 63, .external_lex_state = 26}, + [5205] = {.lex_state = 63, .external_lex_state = 19}, + [5206] = {.lex_state = 63, .external_lex_state = 17}, + [5207] = {.lex_state = 63, .external_lex_state = 26}, + [5208] = {.lex_state = 63, .external_lex_state = 19}, + [5209] = {.lex_state = 65, .external_lex_state = 25}, + [5210] = {.lex_state = 63, .external_lex_state = 18}, + [5211] = {.lex_state = 63, .external_lex_state = 22}, + [5212] = {.lex_state = 63, .external_lex_state = 20}, + [5213] = {.lex_state = 63, .external_lex_state = 21}, + [5214] = {.lex_state = 65, .external_lex_state = 25}, + [5215] = {.lex_state = 65, .external_lex_state = 24}, + [5216] = {.lex_state = 63, .external_lex_state = 23}, + [5217] = {.lex_state = 63, .external_lex_state = 22}, + [5218] = {.lex_state = 63, .external_lex_state = 17}, + [5219] = {.lex_state = 63, .external_lex_state = 22}, + [5220] = {.lex_state = 63, .external_lex_state = 23}, + [5221] = {.lex_state = 65, .external_lex_state = 24}, + [5222] = {.lex_state = 65, .external_lex_state = 25}, + [5223] = {.lex_state = 63, .external_lex_state = 21}, + [5224] = {.lex_state = 63, .external_lex_state = 20}, + [5225] = {.lex_state = 63, .external_lex_state = 18}, + [5226] = {.lex_state = 63, .external_lex_state = 19}, + [5227] = {.lex_state = 63, .external_lex_state = 26}, + [5228] = {.lex_state = 63, .external_lex_state = 17}, + [5229] = {.lex_state = 63, .external_lex_state = 23}, + [5230] = {.lex_state = 63, .external_lex_state = 18}, + [5231] = {.lex_state = 63, .external_lex_state = 20}, + [5232] = {.lex_state = 63, .external_lex_state = 26}, + [5233] = {.lex_state = 63, .external_lex_state = 19}, + [5234] = {.lex_state = 63, .external_lex_state = 17}, + [5235] = {.lex_state = 63, .external_lex_state = 22}, + [5236] = {.lex_state = 63, .external_lex_state = 23}, + [5237] = {.lex_state = 65, .external_lex_state = 24}, + [5238] = {.lex_state = 65, .external_lex_state = 25}, + [5239] = {.lex_state = 63, .external_lex_state = 21}, + [5240] = {.lex_state = 63, .external_lex_state = 20}, + [5241] = {.lex_state = 63, .external_lex_state = 18}, + [5242] = {.lex_state = 63, .external_lex_state = 19}, + [5243] = {.lex_state = 63, .external_lex_state = 26}, + [5244] = {.lex_state = 63, .external_lex_state = 26}, + [5245] = {.lex_state = 63, .external_lex_state = 18}, + [5246] = {.lex_state = 63, .external_lex_state = 20}, + [5247] = {.lex_state = 63, .external_lex_state = 21}, + [5248] = {.lex_state = 65, .external_lex_state = 25}, + [5249] = {.lex_state = 63, .external_lex_state = 19}, + [5250] = {.lex_state = 65, .external_lex_state = 24}, + [5251] = {.lex_state = 63, .external_lex_state = 23}, + [5252] = {.lex_state = 63, .external_lex_state = 22}, + [5253] = {.lex_state = 63, .external_lex_state = 17}, + [5254] = {.lex_state = 63, .external_lex_state = 18}, + [5255] = {.lex_state = 63, .external_lex_state = 20}, + [5256] = {.lex_state = 63, .external_lex_state = 26}, + [5257] = {.lex_state = 63, .external_lex_state = 21}, + [5258] = {.lex_state = 62, .external_lex_state = 10}, + [5259] = {.lex_state = 63, .external_lex_state = 21}, + [5260] = {.lex_state = 65, .external_lex_state = 25}, + [5261] = {.lex_state = 63, .external_lex_state = 17}, + [5262] = {.lex_state = 63, .external_lex_state = 23}, + [5263] = {.lex_state = 63, .external_lex_state = 22}, + [5264] = {.lex_state = 63, .external_lex_state = 17}, + [5265] = {.lex_state = 63, .external_lex_state = 22}, + [5266] = {.lex_state = 63, .external_lex_state = 23}, + [5267] = {.lex_state = 65, .external_lex_state = 24}, + [5268] = {.lex_state = 65, .external_lex_state = 25}, + [5269] = {.lex_state = 63, .external_lex_state = 21}, + [5270] = {.lex_state = 63, .external_lex_state = 20}, + [5271] = {.lex_state = 63, .external_lex_state = 18}, + [5272] = {.lex_state = 63, .external_lex_state = 19}, + [5273] = {.lex_state = 63, .external_lex_state = 26}, + [5274] = {.lex_state = 63, .external_lex_state = 23}, + [5275] = {.lex_state = 63, .external_lex_state = 17}, + [5276] = {.lex_state = 63, .external_lex_state = 22}, + [5277] = {.lex_state = 63, .external_lex_state = 23}, + [5278] = {.lex_state = 65, .external_lex_state = 24}, + [5279] = {.lex_state = 65, .external_lex_state = 25}, + [5280] = {.lex_state = 63, .external_lex_state = 17}, + [5281] = {.lex_state = 63, .external_lex_state = 22}, + [5282] = {.lex_state = 63, .external_lex_state = 23}, + [5283] = {.lex_state = 65, .external_lex_state = 24}, + [5284] = {.lex_state = 65, .external_lex_state = 25}, + [5285] = {.lex_state = 63, .external_lex_state = 21}, + [5286] = {.lex_state = 63, .external_lex_state = 20}, + [5287] = {.lex_state = 63, .external_lex_state = 18}, + [5288] = {.lex_state = 63, .external_lex_state = 19}, + [5289] = {.lex_state = 63, .external_lex_state = 26}, + [5290] = {.lex_state = 65, .external_lex_state = 24}, + [5291] = {.lex_state = 63, .external_lex_state = 21}, + [5292] = {.lex_state = 63, .external_lex_state = 20}, + [5293] = {.lex_state = 63, .external_lex_state = 18}, + [5294] = {.lex_state = 63, .external_lex_state = 19}, + [5295] = {.lex_state = 65, .external_lex_state = 24}, + [5296] = {.lex_state = 63, .external_lex_state = 26}, + [5297] = {.lex_state = 65, .external_lex_state = 25}, + [5298] = {.lex_state = 63, .external_lex_state = 21}, + [5299] = {.lex_state = 63, .external_lex_state = 26}, + [5300] = {.lex_state = 65, .external_lex_state = 24}, + [5301] = {.lex_state = 63, .external_lex_state = 23}, + [5302] = {.lex_state = 63, .external_lex_state = 18}, + [5303] = {.lex_state = 63, .external_lex_state = 22}, + [5304] = {.lex_state = 63, .external_lex_state = 20}, + [5305] = {.lex_state = 63, .external_lex_state = 18}, + [5306] = {.lex_state = 63, .external_lex_state = 18}, + [5307] = {.lex_state = 63, .external_lex_state = 26}, + [5308] = {.lex_state = 63, .external_lex_state = 22}, + [5309] = {.lex_state = 63, .external_lex_state = 17}, + [5310] = {.lex_state = 63, .external_lex_state = 17}, + [5311] = {.lex_state = 63, .external_lex_state = 22}, + [5312] = {.lex_state = 63, .external_lex_state = 23}, + [5313] = {.lex_state = 65, .external_lex_state = 24}, + [5314] = {.lex_state = 65, .external_lex_state = 25}, + [5315] = {.lex_state = 63, .external_lex_state = 21}, + [5316] = {.lex_state = 63, .external_lex_state = 20}, + [5317] = {.lex_state = 63, .external_lex_state = 18}, + [5318] = {.lex_state = 63, .external_lex_state = 19}, + [5319] = {.lex_state = 63, .external_lex_state = 26}, + [5320] = {.lex_state = 63, .external_lex_state = 17}, + [5321] = {.lex_state = 63, .external_lex_state = 22}, + [5322] = {.lex_state = 63, .external_lex_state = 26}, + [5323] = {.lex_state = 63, .external_lex_state = 19}, + [5324] = {.lex_state = 63, .external_lex_state = 18}, + [5325] = {.lex_state = 63, .external_lex_state = 20}, + [5326] = {.lex_state = 63, .external_lex_state = 17}, + [5327] = {.lex_state = 63, .external_lex_state = 22}, + [5328] = {.lex_state = 63, .external_lex_state = 23}, + [5329] = {.lex_state = 65, .external_lex_state = 24}, + [5330] = {.lex_state = 65, .external_lex_state = 25}, + [5331] = {.lex_state = 63, .external_lex_state = 21}, + [5332] = {.lex_state = 63, .external_lex_state = 20}, + [5333] = {.lex_state = 63, .external_lex_state = 18}, + [5334] = {.lex_state = 63, .external_lex_state = 19}, + [5335] = {.lex_state = 63, .external_lex_state = 26}, + [5336] = {.lex_state = 63, .external_lex_state = 17}, + [5337] = {.lex_state = 63, .external_lex_state = 21}, + [5338] = {.lex_state = 65, .external_lex_state = 25}, + [5339] = {.lex_state = 65, .external_lex_state = 24}, + [5340] = {.lex_state = 63, .external_lex_state = 23}, + [5341] = {.lex_state = 63, .external_lex_state = 20}, + [5342] = {.lex_state = 63, .external_lex_state = 22}, + [5343] = {.lex_state = 63, .external_lex_state = 17}, + [5344] = {.lex_state = 63, .external_lex_state = 17}, + [5345] = {.lex_state = 63, .external_lex_state = 23}, + [5346] = {.lex_state = 63, .external_lex_state = 22}, + [5347] = {.lex_state = 63, .external_lex_state = 23}, + [5348] = {.lex_state = 63, .external_lex_state = 21}, + [5349] = {.lex_state = 65, .external_lex_state = 24}, + [5350] = {.lex_state = 65, .external_lex_state = 25}, + [5351] = {.lex_state = 63, .external_lex_state = 21}, + [5352] = {.lex_state = 65, .external_lex_state = 24}, + [5353] = {.lex_state = 63, .external_lex_state = 26}, + [5354] = {.lex_state = 63, .external_lex_state = 19}, + [5355] = {.lex_state = 63, .external_lex_state = 26}, + [5356] = {.lex_state = 63, .external_lex_state = 17}, + [5357] = {.lex_state = 63, .external_lex_state = 22}, + [5358] = {.lex_state = 63, .external_lex_state = 23}, + [5359] = {.lex_state = 65, .external_lex_state = 24}, + [5360] = {.lex_state = 65, .external_lex_state = 25}, + [5361] = {.lex_state = 63, .external_lex_state = 21}, + [5362] = {.lex_state = 63, .external_lex_state = 20}, + [5363] = {.lex_state = 63, .external_lex_state = 18}, + [5364] = {.lex_state = 63, .external_lex_state = 19}, + [5365] = {.lex_state = 63, .external_lex_state = 26}, + [5366] = {.lex_state = 63, .external_lex_state = 20}, + [5367] = {.lex_state = 63, .external_lex_state = 21}, + [5368] = {.lex_state = 65, .external_lex_state = 25}, + [5369] = {.lex_state = 65, .external_lex_state = 24}, + [5370] = {.lex_state = 63, .external_lex_state = 23}, + [5371] = {.lex_state = 63, .external_lex_state = 22}, + [5372] = {.lex_state = 63, .external_lex_state = 17}, + [5373] = {.lex_state = 63, .external_lex_state = 22}, + [5374] = {.lex_state = 63, .external_lex_state = 23}, + [5375] = {.lex_state = 65, .external_lex_state = 24}, + [5376] = {.lex_state = 65, .external_lex_state = 25}, + [5377] = {.lex_state = 63, .external_lex_state = 21}, + [5378] = {.lex_state = 63, .external_lex_state = 20}, + [5379] = {.lex_state = 63, .external_lex_state = 18}, + [5380] = {.lex_state = 63, .external_lex_state = 19}, + [5381] = {.lex_state = 63, .external_lex_state = 26}, + [5382] = {.lex_state = 63, .external_lex_state = 17}, + [5383] = {.lex_state = 63, .external_lex_state = 20}, + [5384] = {.lex_state = 63, .external_lex_state = 18}, + [5385] = {.lex_state = 63, .external_lex_state = 19}, + [5386] = {.lex_state = 65, .external_lex_state = 25}, + [5387] = {.lex_state = 65, .external_lex_state = 25}, + [5388] = {.lex_state = 63, .external_lex_state = 26}, + [5389] = {.lex_state = 63, .external_lex_state = 21}, + [5390] = {.lex_state = 63, .external_lex_state = 22}, + [5391] = {.lex_state = 63, .external_lex_state = 20}, + [5392] = {.lex_state = 63, .external_lex_state = 18}, + [5393] = {.lex_state = 63, .external_lex_state = 23}, + [5394] = {.lex_state = 65, .external_lex_state = 24}, + [5395] = {.lex_state = 65, .external_lex_state = 25}, + [5396] = {.lex_state = 63, .external_lex_state = 19}, + [5397] = {.lex_state = 63, .external_lex_state = 21}, + [5398] = {.lex_state = 63, .external_lex_state = 20}, + [5399] = {.lex_state = 63, .external_lex_state = 18}, + [5400] = {.lex_state = 63, .external_lex_state = 19}, + [5401] = {.lex_state = 100, .external_lex_state = 6}, + [5402] = {.lex_state = 63, .external_lex_state = 26}, + [5403] = {.lex_state = 63, .external_lex_state = 26}, + [5404] = {.lex_state = 100, .external_lex_state = 6}, + [5405] = {.lex_state = 62, .external_lex_state = 12}, + [5406] = {.lex_state = 63, .external_lex_state = 26}, + [5407] = {.lex_state = 100, .external_lex_state = 6}, + [5408] = {.lex_state = 63, .external_lex_state = 19}, + [5409] = {.lex_state = 63, .external_lex_state = 18}, + [5410] = {.lex_state = 63, .external_lex_state = 17}, + [5411] = {.lex_state = 63, .external_lex_state = 19}, + [5412] = {.lex_state = 63, .external_lex_state = 18}, + [5413] = {.lex_state = 63, .external_lex_state = 20}, + [5414] = {.lex_state = 63, .external_lex_state = 21}, + [5415] = {.lex_state = 65, .external_lex_state = 25}, + [5416] = {.lex_state = 65, .external_lex_state = 24}, + [5417] = {.lex_state = 63, .external_lex_state = 23}, + [5418] = {.lex_state = 63, .external_lex_state = 22}, + [5419] = {.lex_state = 63, .external_lex_state = 19}, + [5420] = {.lex_state = 63, .external_lex_state = 20}, + [5421] = {.lex_state = 63, .external_lex_state = 21}, + [5422] = {.lex_state = 65, .external_lex_state = 25}, + [5423] = {.lex_state = 65, .external_lex_state = 24}, + [5424] = {.lex_state = 63, .external_lex_state = 23}, + [5425] = {.lex_state = 63, .external_lex_state = 22}, + [5426] = {.lex_state = 63, .external_lex_state = 26}, + [5427] = {.lex_state = 63, .external_lex_state = 19}, + [5428] = {.lex_state = 63, .external_lex_state = 18}, + [5429] = {.lex_state = 63, .external_lex_state = 20}, + [5430] = {.lex_state = 63, .external_lex_state = 21}, + [5431] = {.lex_state = 65, .external_lex_state = 25}, + [5432] = {.lex_state = 65, .external_lex_state = 24}, + [5433] = {.lex_state = 63, .external_lex_state = 23}, + [5434] = {.lex_state = 63, .external_lex_state = 22}, + [5435] = {.lex_state = 63, .external_lex_state = 17}, + [5436] = {.lex_state = 63, .external_lex_state = 17}, + [5437] = {.lex_state = 258, .external_lex_state = 6}, + [5438] = {.lex_state = 258, .external_lex_state = 6}, + [5439] = {.lex_state = 50, .external_lex_state = 6}, + [5440] = {.lex_state = 50, .external_lex_state = 6}, + [5441] = {.lex_state = 50, .external_lex_state = 6}, + [5442] = {.lex_state = 50, .external_lex_state = 6}, + [5443] = {.lex_state = 102, .external_lex_state = 6}, + [5444] = {.lex_state = 258, .external_lex_state = 6}, + [5445] = {.lex_state = 50, .external_lex_state = 6}, + [5446] = {.lex_state = 258, .external_lex_state = 6}, + [5447] = {.lex_state = 50, .external_lex_state = 6}, + [5448] = {.lex_state = 50, .external_lex_state = 6}, + [5449] = {.lex_state = 258, .external_lex_state = 6}, + [5450] = {.lex_state = 50, .external_lex_state = 6}, + [5451] = {.lex_state = 102, .external_lex_state = 6}, + [5452] = {.lex_state = 102, .external_lex_state = 6}, + [5453] = {.lex_state = 53, .external_lex_state = 6}, + [5454] = {.lex_state = 53, .external_lex_state = 6}, + [5455] = {.lex_state = 53, .external_lex_state = 6}, + [5456] = {.lex_state = 258, .external_lex_state = 6}, + [5457] = {.lex_state = 102, .external_lex_state = 6}, + [5458] = {.lex_state = 102, .external_lex_state = 6}, + [5459] = {.lex_state = 258, .external_lex_state = 6}, + [5460] = {.lex_state = 102, .external_lex_state = 6}, + [5461] = {.lex_state = 102, .external_lex_state = 6}, + [5462] = {.lex_state = 102, .external_lex_state = 6}, + [5463] = {.lex_state = 53, .external_lex_state = 6}, + [5464] = {.lex_state = 102, .external_lex_state = 6}, + [5465] = {.lex_state = 102, .external_lex_state = 6}, + [5466] = {.lex_state = 258, .external_lex_state = 6}, + [5467] = {.lex_state = 258, .external_lex_state = 6}, + [5468] = {.lex_state = 258, .external_lex_state = 6}, + [5469] = {.lex_state = 102, .external_lex_state = 6}, + [5470] = {.lex_state = 102, .external_lex_state = 6}, + [5471] = {.lex_state = 53, .external_lex_state = 6}, + [5472] = {.lex_state = 102, .external_lex_state = 6}, + [5473] = {.lex_state = 102, .external_lex_state = 6}, + [5474] = {.lex_state = 53, .external_lex_state = 6}, + [5475] = {.lex_state = 102, .external_lex_state = 6}, + [5476] = {.lex_state = 102, .external_lex_state = 6}, + [5477] = {.lex_state = 102, .external_lex_state = 6}, + [5478] = {.lex_state = 102, .external_lex_state = 6}, + [5479] = {.lex_state = 102, .external_lex_state = 6}, + [5480] = {.lex_state = 102, .external_lex_state = 6}, + [5481] = {.lex_state = 102, .external_lex_state = 6}, + [5482] = {.lex_state = 102, .external_lex_state = 6}, + [5483] = {.lex_state = 102, .external_lex_state = 6}, + [5484] = {.lex_state = 102, .external_lex_state = 6}, + [5485] = {.lex_state = 102, .external_lex_state = 6}, + [5486] = {.lex_state = 102, .external_lex_state = 6}, + [5487] = {.lex_state = 102, .external_lex_state = 6}, + [5488] = {.lex_state = 102, .external_lex_state = 6}, + [5489] = {.lex_state = 102, .external_lex_state = 6}, + [5490] = {.lex_state = 53, .external_lex_state = 6}, + [5491] = {.lex_state = 102, .external_lex_state = 6}, + [5492] = {.lex_state = 102, .external_lex_state = 6}, + [5493] = {.lex_state = 102, .external_lex_state = 6}, + [5494] = {.lex_state = 102, .external_lex_state = 6}, + [5495] = {.lex_state = 53, .external_lex_state = 6}, + [5496] = {.lex_state = 102, .external_lex_state = 6}, + [5497] = {.lex_state = 102, .external_lex_state = 6}, + [5498] = {.lex_state = 258, .external_lex_state = 6}, + [5499] = {.lex_state = 53, .external_lex_state = 6}, + [5500] = {.lex_state = 258, .external_lex_state = 6}, + [5501] = {.lex_state = 53, .external_lex_state = 6}, + [5502] = {.lex_state = 102, .external_lex_state = 6}, + [5503] = {.lex_state = 53, .external_lex_state = 6}, + [5504] = {.lex_state = 102, .external_lex_state = 6}, + [5505] = {.lex_state = 53, .external_lex_state = 6}, + [5506] = {.lex_state = 102, .external_lex_state = 6}, + [5507] = {.lex_state = 258, .external_lex_state = 6}, + [5508] = {.lex_state = 102, .external_lex_state = 6}, + [5509] = {.lex_state = 53, .external_lex_state = 6}, + [5510] = {.lex_state = 53, .external_lex_state = 6}, + [5511] = {.lex_state = 102, .external_lex_state = 6}, + [5512] = {.lex_state = 53, .external_lex_state = 6}, + [5513] = {.lex_state = 53, .external_lex_state = 6}, + [5514] = {.lex_state = 102, .external_lex_state = 6}, + [5515] = {.lex_state = 102, .external_lex_state = 6}, + [5516] = {.lex_state = 102, .external_lex_state = 6}, + [5517] = {.lex_state = 258, .external_lex_state = 6}, + [5518] = {.lex_state = 102, .external_lex_state = 6}, + [5519] = {.lex_state = 102, .external_lex_state = 6}, + [5520] = {.lex_state = 53, .external_lex_state = 6}, + [5521] = {.lex_state = 102, .external_lex_state = 6}, + [5522] = {.lex_state = 258, .external_lex_state = 6}, + [5523] = {.lex_state = 102, .external_lex_state = 6}, + [5524] = {.lex_state = 53, .external_lex_state = 6}, + [5525] = {.lex_state = 102, .external_lex_state = 6}, + [5526] = {.lex_state = 102, .external_lex_state = 6}, + [5527] = {.lex_state = 102, .external_lex_state = 6}, + [5528] = {.lex_state = 102, .external_lex_state = 6}, + [5529] = {.lex_state = 102, .external_lex_state = 6}, + [5530] = {.lex_state = 102, .external_lex_state = 6}, + [5531] = {.lex_state = 258, .external_lex_state = 6}, + [5532] = {.lex_state = 102, .external_lex_state = 6}, + [5533] = {.lex_state = 102, .external_lex_state = 6}, + [5534] = {.lex_state = 258, .external_lex_state = 6}, + [5535] = {.lex_state = 102, .external_lex_state = 6}, + [5536] = {.lex_state = 102, .external_lex_state = 6}, + [5537] = {.lex_state = 102, .external_lex_state = 6}, + [5538] = {.lex_state = 102, .external_lex_state = 6}, + [5539] = {.lex_state = 102, .external_lex_state = 6}, + [5540] = {.lex_state = 100, .external_lex_state = 6}, + [5541] = {.lex_state = 258, .external_lex_state = 6}, + [5542] = {.lex_state = 100, .external_lex_state = 6}, + [5543] = {.lex_state = 258, .external_lex_state = 6}, + [5544] = {.lex_state = 258, .external_lex_state = 6}, + [5545] = {.lex_state = 258, .external_lex_state = 6}, + [5546] = {.lex_state = 258, .external_lex_state = 6}, + [5547] = {.lex_state = 258, .external_lex_state = 6}, + [5548] = {.lex_state = 50, .external_lex_state = 6}, + [5549] = {.lex_state = 258, .external_lex_state = 6}, + [5550] = {.lex_state = 50, .external_lex_state = 6}, + [5551] = {.lex_state = 258, .external_lex_state = 6}, + [5552] = {.lex_state = 258, .external_lex_state = 6}, + [5553] = {.lex_state = 100, .external_lex_state = 6}, + [5554] = {.lex_state = 258, .external_lex_state = 6}, + [5555] = {.lex_state = 258, .external_lex_state = 6}, + [5556] = {.lex_state = 258, .external_lex_state = 6}, + [5557] = {.lex_state = 50, .external_lex_state = 6}, + [5558] = {.lex_state = 258, .external_lex_state = 6}, + [5559] = {.lex_state = 258, .external_lex_state = 6}, + [5560] = {.lex_state = 258, .external_lex_state = 6}, + [5561] = {.lex_state = 258, .external_lex_state = 6}, + [5562] = {.lex_state = 258, .external_lex_state = 6}, + [5563] = {.lex_state = 258, .external_lex_state = 6}, + [5564] = {.lex_state = 100, .external_lex_state = 6}, + [5565] = {.lex_state = 258, .external_lex_state = 6}, + [5566] = {.lex_state = 258, .external_lex_state = 6}, + [5567] = {.lex_state = 258, .external_lex_state = 6}, + [5568] = {.lex_state = 258, .external_lex_state = 6}, + [5569] = {.lex_state = 258, .external_lex_state = 6}, + [5570] = {.lex_state = 258, .external_lex_state = 6}, + [5571] = {.lex_state = 258, .external_lex_state = 6}, + [5572] = {.lex_state = 258, .external_lex_state = 6}, + [5573] = {.lex_state = 50, .external_lex_state = 6}, + [5574] = {.lex_state = 100, .external_lex_state = 6}, + [5575] = {.lex_state = 258, .external_lex_state = 6}, + [5576] = {.lex_state = 258, .external_lex_state = 6}, + [5577] = {.lex_state = 258, .external_lex_state = 6}, + [5578] = {.lex_state = 258, .external_lex_state = 6}, + [5579] = {.lex_state = 50, .external_lex_state = 6}, + [5580] = {.lex_state = 258, .external_lex_state = 6}, + [5581] = {.lex_state = 258, .external_lex_state = 6}, + [5582] = {.lex_state = 258, .external_lex_state = 6}, + [5583] = {.lex_state = 258, .external_lex_state = 6}, + [5584] = {.lex_state = 258, .external_lex_state = 6}, + [5585] = {.lex_state = 100, .external_lex_state = 6}, + [5586] = {.lex_state = 100, .external_lex_state = 6}, + [5587] = {.lex_state = 258, .external_lex_state = 6}, + [5588] = {.lex_state = 258, .external_lex_state = 6}, + [5589] = {.lex_state = 258, .external_lex_state = 6}, + [5590] = {.lex_state = 258, .external_lex_state = 6}, + [5591] = {.lex_state = 50, .external_lex_state = 6}, + [5592] = {.lex_state = 50, .external_lex_state = 6}, + [5593] = {.lex_state = 100, .external_lex_state = 6}, + [5594] = {.lex_state = 258, .external_lex_state = 6}, + [5595] = {.lex_state = 258, .external_lex_state = 6}, + [5596] = {.lex_state = 258, .external_lex_state = 6}, + [5597] = {.lex_state = 50, .external_lex_state = 6}, + [5598] = {.lex_state = 258, .external_lex_state = 6}, + [5599] = {.lex_state = 258, .external_lex_state = 6}, + [5600] = {.lex_state = 258, .external_lex_state = 6}, + [5601] = {.lex_state = 258, .external_lex_state = 6}, + [5602] = {.lex_state = 258, .external_lex_state = 6}, + [5603] = {.lex_state = 258, .external_lex_state = 6}, + [5604] = {.lex_state = 258, .external_lex_state = 6}, + [5605] = {.lex_state = 258, .external_lex_state = 6}, + [5606] = {.lex_state = 258, .external_lex_state = 6}, + [5607] = {.lex_state = 258, .external_lex_state = 6}, + [5608] = {.lex_state = 258, .external_lex_state = 6}, + [5609] = {.lex_state = 258, .external_lex_state = 6}, + [5610] = {.lex_state = 258, .external_lex_state = 6}, + [5611] = {.lex_state = 258, .external_lex_state = 6}, + [5612] = {.lex_state = 258, .external_lex_state = 6}, + [5613] = {.lex_state = 258, .external_lex_state = 6}, + [5614] = {.lex_state = 258, .external_lex_state = 6}, + [5615] = {.lex_state = 258, .external_lex_state = 6}, + [5616] = {.lex_state = 258, .external_lex_state = 6}, + [5617] = {.lex_state = 258, .external_lex_state = 6}, + [5618] = {.lex_state = 258, .external_lex_state = 6}, + [5619] = {.lex_state = 258, .external_lex_state = 6}, + [5620] = {.lex_state = 258, .external_lex_state = 6}, + [5621] = {.lex_state = 258, .external_lex_state = 6}, + [5622] = {.lex_state = 258, .external_lex_state = 6}, + [5623] = {.lex_state = 258, .external_lex_state = 6}, + [5624] = {.lex_state = 258, .external_lex_state = 6}, + [5625] = {.lex_state = 100, .external_lex_state = 6}, + [5626] = {.lex_state = 50, .external_lex_state = 6}, + [5627] = {.lex_state = 258, .external_lex_state = 6}, + [5628] = {.lex_state = 258, .external_lex_state = 6}, + [5629] = {.lex_state = 258, .external_lex_state = 6}, + [5630] = {.lex_state = 258, .external_lex_state = 6}, + [5631] = {.lex_state = 258, .external_lex_state = 6}, + [5632] = {.lex_state = 258, .external_lex_state = 6}, + [5633] = {.lex_state = 258, .external_lex_state = 6}, + [5634] = {.lex_state = 258, .external_lex_state = 6}, + [5635] = {.lex_state = 258, .external_lex_state = 6}, + [5636] = {.lex_state = 258, .external_lex_state = 6}, + [5637] = {.lex_state = 258, .external_lex_state = 6}, + [5638] = {.lex_state = 258, .external_lex_state = 6}, + [5639] = {.lex_state = 258, .external_lex_state = 6}, + [5640] = {.lex_state = 258, .external_lex_state = 6}, + [5641] = {.lex_state = 258, .external_lex_state = 6}, + [5642] = {.lex_state = 258, .external_lex_state = 6}, + [5643] = {.lex_state = 258, .external_lex_state = 6}, + [5644] = {.lex_state = 258, .external_lex_state = 6}, + [5645] = {.lex_state = 258, .external_lex_state = 6}, + [5646] = {.lex_state = 258, .external_lex_state = 6}, + [5647] = {.lex_state = 258, .external_lex_state = 6}, + [5648] = {.lex_state = 258, .external_lex_state = 6}, + [5649] = {.lex_state = 258, .external_lex_state = 6}, + [5650] = {.lex_state = 258, .external_lex_state = 6}, + [5651] = {.lex_state = 50, .external_lex_state = 6}, + [5652] = {.lex_state = 100, .external_lex_state = 6}, + [5653] = {.lex_state = 258, .external_lex_state = 6}, + [5654] = {.lex_state = 258, .external_lex_state = 6}, + [5655] = {.lex_state = 258, .external_lex_state = 6}, + [5656] = {.lex_state = 258, .external_lex_state = 6}, + [5657] = {.lex_state = 50, .external_lex_state = 6}, + [5658] = {.lex_state = 258, .external_lex_state = 6}, + [5659] = {.lex_state = 258, .external_lex_state = 6}, + [5660] = {.lex_state = 258, .external_lex_state = 6}, + [5661] = {.lex_state = 258, .external_lex_state = 6}, + [5662] = {.lex_state = 258, .external_lex_state = 6}, + [5663] = {.lex_state = 100, .external_lex_state = 6}, + [5664] = {.lex_state = 50, .external_lex_state = 6}, + [5665] = {.lex_state = 258, .external_lex_state = 6}, + [5666] = {.lex_state = 258, .external_lex_state = 6}, + [5667] = {.lex_state = 258, .external_lex_state = 6}, + [5668] = {.lex_state = 100, .external_lex_state = 6}, + [5669] = {.lex_state = 258, .external_lex_state = 6}, }; enum { @@ -23034,22 +23672,22 @@ static const bool ts_external_scanner_states[27][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__newline_before_comment] = true, }, [7] = { - [ts_external_token__quoted_content_i_slash] = true, + [ts_external_token__quoted_content_i_curly] = true, [ts_external_token__newline_before_binary_operator] = true, [ts_external_token__newline_before_comment] = true, }, [8] = { - [ts_external_token__quoted_content_i_angle] = true, + [ts_external_token__quoted_content_i_slash] = true, [ts_external_token__newline_before_binary_operator] = true, [ts_external_token__newline_before_comment] = true, }, [9] = { - [ts_external_token__quoted_content_i_double] = true, + [ts_external_token__quoted_content_i_heredoc_double] = true, [ts_external_token__newline_before_binary_operator] = true, [ts_external_token__newline_before_comment] = true, }, [10] = { - [ts_external_token__quoted_content_i_heredoc_double] = true, + [ts_external_token__quoted_content_i_double] = true, [ts_external_token__newline_before_binary_operator] = true, [ts_external_token__newline_before_comment] = true, }, @@ -23064,12 +23702,12 @@ static const bool ts_external_scanner_states[27][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__newline_before_comment] = true, }, [13] = { - [ts_external_token__quoted_content_i_parenthesis] = true, + [ts_external_token__quoted_content_i_bar] = true, [ts_external_token__newline_before_binary_operator] = true, [ts_external_token__newline_before_comment] = true, }, [14] = { - [ts_external_token__quoted_content_i_curly] = true, + [ts_external_token__quoted_content_i_angle] = true, [ts_external_token__newline_before_binary_operator] = true, [ts_external_token__newline_before_comment] = true, }, @@ -23079,55 +23717,55 @@ static const bool ts_external_scanner_states[27][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__newline_before_comment] = true, }, [16] = { - [ts_external_token__quoted_content_i_bar] = true, + [ts_external_token__quoted_content_i_parenthesis] = true, [ts_external_token__newline_before_binary_operator] = true, [ts_external_token__newline_before_comment] = true, }, [17] = { - [ts_external_token__quoted_content_square] = true, - [ts_external_token__newline_before_binary_operator] = true, - [ts_external_token__newline_before_comment] = true, - }, - [18] = { - [ts_external_token__quoted_content_heredoc_single] = true, - [ts_external_token__newline_before_binary_operator] = true, - [ts_external_token__newline_before_comment] = true, - }, - [19] = { - [ts_external_token__quoted_content_single] = true, - [ts_external_token__newline_before_binary_operator] = true, - [ts_external_token__newline_before_comment] = true, - }, - [20] = { - [ts_external_token__quoted_content_double] = true, - [ts_external_token__newline_before_binary_operator] = true, - [ts_external_token__newline_before_comment] = true, - }, - [21] = { [ts_external_token__quoted_content_parenthesis] = true, [ts_external_token__newline_before_binary_operator] = true, [ts_external_token__newline_before_comment] = true, }, - [22] = { - [ts_external_token__quoted_content_heredoc_double] = true, - [ts_external_token__newline_before_binary_operator] = true, - [ts_external_token__newline_before_comment] = true, - }, - [23] = { - [ts_external_token__quoted_content_curly] = true, - [ts_external_token__newline_before_binary_operator] = true, - [ts_external_token__newline_before_comment] = true, - }, - [24] = { + [18] = { [ts_external_token__quoted_content_angle] = true, [ts_external_token__newline_before_binary_operator] = true, [ts_external_token__newline_before_comment] = true, }, - [25] = { + [19] = { [ts_external_token__quoted_content_bar] = true, [ts_external_token__newline_before_binary_operator] = true, [ts_external_token__newline_before_comment] = true, }, + [20] = { + [ts_external_token__quoted_content_square] = true, + [ts_external_token__newline_before_binary_operator] = true, + [ts_external_token__newline_before_comment] = true, + }, + [21] = { + [ts_external_token__quoted_content_curly] = true, + [ts_external_token__newline_before_binary_operator] = true, + [ts_external_token__newline_before_comment] = true, + }, + [22] = { + [ts_external_token__quoted_content_double] = true, + [ts_external_token__newline_before_binary_operator] = true, + [ts_external_token__newline_before_comment] = true, + }, + [23] = { + [ts_external_token__quoted_content_single] = true, + [ts_external_token__newline_before_binary_operator] = true, + [ts_external_token__newline_before_comment] = true, + }, + [24] = { + [ts_external_token__quoted_content_heredoc_single] = true, + [ts_external_token__newline_before_binary_operator] = true, + [ts_external_token__newline_before_comment] = true, + }, + [25] = { + [ts_external_token__quoted_content_heredoc_double] = true, + [ts_external_token__newline_before_binary_operator] = true, + [ts_external_token__newline_before_comment] = true, + }, [26] = { [ts_external_token__quoted_content_slash] = true, [ts_external_token__newline_before_binary_operator] = true, @@ -23267,47 +23905,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1), }, [1] = { - [sym_source] = STATE(5052), - [sym__terminator] = STATE(404), - [sym__expression] = STATE(2723), - [sym_block] = STATE(2723), - [sym__identifier] = STATE(57), - [sym_identifier] = STATE(57), - [sym_special_identifier] = STATE(57), - [sym_boolean] = STATE(2723), - [sym_nil] = STATE(2723), - [sym__atom] = STATE(2723), - [sym_quoted_atom] = STATE(2723), - [sym__quoted_i_double] = STATE(3146), - [sym__quoted_i_single] = STATE(3147), - [sym__quoted_i_heredoc_single] = STATE(3147), - [sym__quoted_i_heredoc_double] = STATE(3146), - [sym_string] = STATE(2723), - [sym_charlist] = STATE(2723), - [sym_sigil] = STATE(2723), - [sym_list] = STATE(2723), - [sym_tuple] = STATE(2723), - [sym_bitstring] = STATE(2723), - [sym_map] = STATE(2723), - [sym_unary_operator] = STATE(2723), - [sym_binary_operator] = STATE(2723), - [sym_operator_identifier] = STATE(5049), - [sym_dot] = STATE(2723), - [sym_call] = STATE(2723), - [sym__call_without_parentheses] = STATE(3175), - [sym__call_with_parentheses] = STATE(3177), - [sym__local_call_without_parentheses] = STATE(3178), - [sym__local_call_with_parentheses] = STATE(2550), - [sym__local_call_just_do_block] = STATE(3183), - [sym__remote_call_without_parentheses] = STATE(3200), - [sym__remote_call_with_parentheses] = STATE(2583), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(2582), - [sym__anonymous_dot] = STATE(4866), - [sym__double_call] = STATE(3202), - [sym_access_call] = STATE(2723), - [sym_anonymous_function] = STATE(2723), - [aux_sym__terminator_repeat1] = STATE(1030), + [sym_source] = STATE(5660), + [sym__terminator] = STATE(422), + [sym__expression] = STATE(2679), + [sym_block] = STATE(2679), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(2679), + [sym_nil] = STATE(2679), + [sym__atom] = STATE(2679), + [sym_quoted_atom] = STATE(2679), + [sym__quoted_i_double] = STATE(3664), + [sym__quoted_i_single] = STATE(3697), + [sym__quoted_i_heredoc_single] = STATE(3698), + [sym__quoted_i_heredoc_double] = STATE(3702), + [sym_string] = STATE(2679), + [sym_charlist] = STATE(2679), + [sym_sigil] = STATE(2679), + [sym_list] = STATE(2679), + [sym_tuple] = STATE(2679), + [sym_bitstring] = STATE(2679), + [sym_map] = STATE(2679), + [sym_unary_operator] = STATE(2679), + [sym_binary_operator] = STATE(2679), + [sym_operator_identifier] = STATE(5655), + [sym_dot] = STATE(2679), + [sym_call] = STATE(2679), + [sym__call_without_parentheses] = STATE(3705), + [sym__call_with_parentheses] = STATE(3725), + [sym__local_call_without_parentheses] = STATE(3765), + [sym__local_call_with_parentheses] = STATE(2681), + [sym__local_call_just_do_block] = STATE(3808), + [sym__remote_call_without_parentheses] = STATE(3810), + [sym__remote_call_with_parentheses] = STATE(2682), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2683), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(3811), + [sym_access_call] = STATE(2679), + [sym_anonymous_function] = STATE(2679), + [aux_sym__terminator_repeat1] = STATE(1029), [ts_builtin_sym_end] = ACTIONS(7), [aux_sym__terminator_token1] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -23397,61 +24035,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(59), }, [2] = { - [sym__terminator] = STATE(30), - [sym__expression] = STATE(1071), - [sym_block] = STATE(1071), + [sym__terminator] = STATE(31), + [sym__expression] = STATE(1074), + [sym_block] = STATE(1074), [sym__identifier] = STATE(25), [sym_identifier] = STATE(25), [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1071), - [sym_nil] = STATE(1071), - [sym__atom] = STATE(1071), - [sym_quoted_atom] = STATE(1071), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1071), - [sym_charlist] = STATE(1071), - [sym_sigil] = STATE(1071), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1071), - [sym_tuple] = STATE(1071), - [sym_bitstring] = STATE(1071), - [sym_map] = STATE(1071), - [sym_unary_operator] = STATE(1071), - [sym_binary_operator] = STATE(1071), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1071), - [sym_call] = STATE(1071), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_after_block] = STATE(3716), - [sym_rescue_block] = STATE(3716), - [sym_catch_block] = STATE(3716), - [sym_else_block] = STATE(3716), - [sym_access_call] = STATE(1071), - [sym_stab_clause] = STATE(3625), - [sym__stab_clause_left] = STATE(4978), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1071), - [aux_sym__terminator_repeat1] = STATE(1019), - [aux_sym_do_block_repeat1] = STATE(3716), + [sym_boolean] = STATE(1074), + [sym_nil] = STATE(1074), + [sym__atom] = STATE(1074), + [sym_quoted_atom] = STATE(1074), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1074), + [sym_charlist] = STATE(1074), + [sym_sigil] = STATE(1074), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1074), + [sym_tuple] = STATE(1074), + [sym_bitstring] = STATE(1074), + [sym_map] = STATE(1074), + [sym_unary_operator] = STATE(1074), + [sym_binary_operator] = STATE(1074), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1074), + [sym_call] = STATE(1074), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_after_block] = STATE(4276), + [sym_rescue_block] = STATE(4276), + [sym_catch_block] = STATE(4276), + [sym_else_block] = STATE(4276), + [sym_access_call] = STATE(1074), + [sym_stab_clause] = STATE(4253), + [sym__stab_clause_left] = STATE(5656), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1074), + [aux_sym__terminator_repeat1] = STATE(1018), + [aux_sym_do_block_repeat1] = STATE(4276), [aux_sym__terminator_token1] = ACTIONS(61), [anon_sym_SEMI] = ACTIONS(63), [anon_sym_LPAREN] = ACTIONS(65), @@ -23546,61 +24184,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [3] = { - [sym__terminator] = STATE(31), - [sym__expression] = STATE(1068), - [sym_block] = STATE(1068), + [sym__terminator] = STATE(26), + [sym__expression] = STATE(1064), + [sym_block] = STATE(1064), [sym__identifier] = STATE(25), [sym_identifier] = STATE(25), [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1068), - [sym_nil] = STATE(1068), - [sym__atom] = STATE(1068), - [sym_quoted_atom] = STATE(1068), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1068), - [sym_charlist] = STATE(1068), - [sym_sigil] = STATE(1068), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1068), - [sym_tuple] = STATE(1068), - [sym_bitstring] = STATE(1068), - [sym_map] = STATE(1068), - [sym_unary_operator] = STATE(1068), - [sym_binary_operator] = STATE(1068), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1068), - [sym_call] = STATE(1068), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_after_block] = STATE(3676), - [sym_rescue_block] = STATE(3676), - [sym_catch_block] = STATE(3676), - [sym_else_block] = STATE(3676), - [sym_access_call] = STATE(1068), - [sym_stab_clause] = STATE(3659), - [sym__stab_clause_left] = STATE(4978), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1068), - [aux_sym__terminator_repeat1] = STATE(1019), - [aux_sym_do_block_repeat1] = STATE(3676), + [sym_boolean] = STATE(1064), + [sym_nil] = STATE(1064), + [sym__atom] = STATE(1064), + [sym_quoted_atom] = STATE(1064), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1064), + [sym_charlist] = STATE(1064), + [sym_sigil] = STATE(1064), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1064), + [sym_tuple] = STATE(1064), + [sym_bitstring] = STATE(1064), + [sym_map] = STATE(1064), + [sym_unary_operator] = STATE(1064), + [sym_binary_operator] = STATE(1064), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1064), + [sym_call] = STATE(1064), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_after_block] = STATE(4327), + [sym_rescue_block] = STATE(4327), + [sym_catch_block] = STATE(4327), + [sym_else_block] = STATE(4327), + [sym_access_call] = STATE(1064), + [sym_stab_clause] = STATE(4201), + [sym__stab_clause_left] = STATE(5656), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1064), + [aux_sym__terminator_repeat1] = STATE(1018), + [aux_sym_do_block_repeat1] = STATE(4327), [aux_sym__terminator_token1] = ACTIONS(61), [anon_sym_SEMI] = ACTIONS(123), [anon_sym_LPAREN] = ACTIONS(65), @@ -23695,61 +24333,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [4] = { - [sym__terminator] = STATE(20), - [sym__expression] = STATE(1076), - [sym_block] = STATE(1076), + [sym__terminator] = STATE(24), + [sym__expression] = STATE(1071), + [sym_block] = STATE(1071), [sym__identifier] = STATE(25), [sym_identifier] = STATE(25), [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1076), - [sym_nil] = STATE(1076), - [sym__atom] = STATE(1076), - [sym_quoted_atom] = STATE(1076), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1076), - [sym_charlist] = STATE(1076), - [sym_sigil] = STATE(1076), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1076), - [sym_tuple] = STATE(1076), - [sym_bitstring] = STATE(1076), - [sym_map] = STATE(1076), - [sym_unary_operator] = STATE(1076), - [sym_binary_operator] = STATE(1076), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1076), - [sym_call] = STATE(1076), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_after_block] = STATE(3671), - [sym_rescue_block] = STATE(3671), - [sym_catch_block] = STATE(3671), - [sym_else_block] = STATE(3671), - [sym_access_call] = STATE(1076), - [sym_stab_clause] = STATE(3593), - [sym__stab_clause_left] = STATE(4978), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1076), - [aux_sym__terminator_repeat1] = STATE(1019), - [aux_sym_do_block_repeat1] = STATE(3671), + [sym_boolean] = STATE(1071), + [sym_nil] = STATE(1071), + [sym__atom] = STATE(1071), + [sym_quoted_atom] = STATE(1071), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1071), + [sym_charlist] = STATE(1071), + [sym_sigil] = STATE(1071), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1071), + [sym_tuple] = STATE(1071), + [sym_bitstring] = STATE(1071), + [sym_map] = STATE(1071), + [sym_unary_operator] = STATE(1071), + [sym_binary_operator] = STATE(1071), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1071), + [sym_call] = STATE(1071), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_after_block] = STATE(4292), + [sym_rescue_block] = STATE(4292), + [sym_catch_block] = STATE(4292), + [sym_else_block] = STATE(4292), + [sym_access_call] = STATE(1071), + [sym_stab_clause] = STATE(4244), + [sym__stab_clause_left] = STATE(5656), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1071), + [aux_sym__terminator_repeat1] = STATE(1018), + [aux_sym_do_block_repeat1] = STATE(4292), [aux_sym__terminator_token1] = ACTIONS(61), [anon_sym_SEMI] = ACTIONS(129), [anon_sym_LPAREN] = ACTIONS(65), @@ -23844,61 +24482,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [5] = { - [sym__terminator] = STATE(29), - [sym__expression] = STATE(1070), - [sym_block] = STATE(1070), + [sym__terminator] = STATE(30), + [sym__expression] = STATE(1077), + [sym_block] = STATE(1077), [sym__identifier] = STATE(25), [sym_identifier] = STATE(25), [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1070), - [sym_nil] = STATE(1070), - [sym__atom] = STATE(1070), - [sym_quoted_atom] = STATE(1070), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1070), - [sym_charlist] = STATE(1070), - [sym_sigil] = STATE(1070), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1070), - [sym_tuple] = STATE(1070), - [sym_bitstring] = STATE(1070), - [sym_map] = STATE(1070), - [sym_unary_operator] = STATE(1070), - [sym_binary_operator] = STATE(1070), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1070), - [sym_call] = STATE(1070), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_after_block] = STATE(3704), - [sym_rescue_block] = STATE(3704), - [sym_catch_block] = STATE(3704), - [sym_else_block] = STATE(3704), - [sym_access_call] = STATE(1070), - [sym_stab_clause] = STATE(3610), - [sym__stab_clause_left] = STATE(4978), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1070), - [aux_sym__terminator_repeat1] = STATE(1019), - [aux_sym_do_block_repeat1] = STATE(3704), + [sym_boolean] = STATE(1077), + [sym_nil] = STATE(1077), + [sym__atom] = STATE(1077), + [sym_quoted_atom] = STATE(1077), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1077), + [sym_charlist] = STATE(1077), + [sym_sigil] = STATE(1077), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_bitstring] = STATE(1077), + [sym_map] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_binary_operator] = STATE(1077), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1077), + [sym_call] = STATE(1077), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_after_block] = STATE(4288), + [sym_rescue_block] = STATE(4288), + [sym_catch_block] = STATE(4288), + [sym_else_block] = STATE(4288), + [sym_access_call] = STATE(1077), + [sym_stab_clause] = STATE(4248), + [sym__stab_clause_left] = STATE(5656), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1077), + [aux_sym__terminator_repeat1] = STATE(1018), + [aux_sym_do_block_repeat1] = STATE(4288), [aux_sym__terminator_token1] = ACTIONS(61), [anon_sym_SEMI] = ACTIONS(135), [anon_sym_LPAREN] = ACTIONS(65), @@ -23994,60 +24632,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [6] = { [sym__terminator] = STATE(32), - [sym__expression] = STATE(1080), - [sym_block] = STATE(1080), + [sym__expression] = STATE(1069), + [sym_block] = STATE(1069), [sym__identifier] = STATE(25), [sym_identifier] = STATE(25), [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1080), - [sym_nil] = STATE(1080), - [sym__atom] = STATE(1080), - [sym_quoted_atom] = STATE(1080), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1080), - [sym_charlist] = STATE(1080), - [sym_sigil] = STATE(1080), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1080), - [sym_tuple] = STATE(1080), - [sym_bitstring] = STATE(1080), - [sym_map] = STATE(1080), - [sym_unary_operator] = STATE(1080), - [sym_binary_operator] = STATE(1080), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1080), - [sym_call] = STATE(1080), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_after_block] = STATE(3689), - [sym_rescue_block] = STATE(3689), - [sym_catch_block] = STATE(3689), - [sym_else_block] = STATE(3689), - [sym_access_call] = STATE(1080), - [sym_stab_clause] = STATE(3589), - [sym__stab_clause_left] = STATE(4978), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1080), - [aux_sym__terminator_repeat1] = STATE(1019), - [aux_sym_do_block_repeat1] = STATE(3689), + [sym_boolean] = STATE(1069), + [sym_nil] = STATE(1069), + [sym__atom] = STATE(1069), + [sym_quoted_atom] = STATE(1069), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1069), + [sym_charlist] = STATE(1069), + [sym_sigil] = STATE(1069), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1069), + [sym_tuple] = STATE(1069), + [sym_bitstring] = STATE(1069), + [sym_map] = STATE(1069), + [sym_unary_operator] = STATE(1069), + [sym_binary_operator] = STATE(1069), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1069), + [sym_call] = STATE(1069), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_after_block] = STATE(4320), + [sym_rescue_block] = STATE(4320), + [sym_catch_block] = STATE(4320), + [sym_else_block] = STATE(4320), + [sym_access_call] = STATE(1069), + [sym_stab_clause] = STATE(4207), + [sym__stab_clause_left] = STATE(5656), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1069), + [aux_sym__terminator_repeat1] = STATE(1018), + [aux_sym_do_block_repeat1] = STATE(4320), [aux_sym__terminator_token1] = ACTIONS(61), [anon_sym_SEMI] = ACTIONS(141), [anon_sym_LPAREN] = ACTIONS(65), @@ -24142,61 +24780,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [7] = { - [sym__terminator] = STATE(33), - [sym__expression] = STATE(1075), - [sym_block] = STATE(1075), + [sym__terminator] = STATE(23), + [sym__expression] = STATE(1080), + [sym_block] = STATE(1080), [sym__identifier] = STATE(25), [sym_identifier] = STATE(25), [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1075), - [sym_nil] = STATE(1075), - [sym__atom] = STATE(1075), - [sym_quoted_atom] = STATE(1075), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1075), - [sym_charlist] = STATE(1075), - [sym_sigil] = STATE(1075), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1075), - [sym_tuple] = STATE(1075), - [sym_bitstring] = STATE(1075), - [sym_map] = STATE(1075), - [sym_unary_operator] = STATE(1075), - [sym_binary_operator] = STATE(1075), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1075), - [sym_call] = STATE(1075), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_after_block] = STATE(3706), - [sym_rescue_block] = STATE(3706), - [sym_catch_block] = STATE(3706), - [sym_else_block] = STATE(3706), - [sym_access_call] = STATE(1075), - [sym_stab_clause] = STATE(3616), - [sym__stab_clause_left] = STATE(4978), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1075), - [aux_sym__terminator_repeat1] = STATE(1019), - [aux_sym_do_block_repeat1] = STATE(3706), + [sym_boolean] = STATE(1080), + [sym_nil] = STATE(1080), + [sym__atom] = STATE(1080), + [sym_quoted_atom] = STATE(1080), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1080), + [sym_charlist] = STATE(1080), + [sym_sigil] = STATE(1080), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1080), + [sym_tuple] = STATE(1080), + [sym_bitstring] = STATE(1080), + [sym_map] = STATE(1080), + [sym_unary_operator] = STATE(1080), + [sym_binary_operator] = STATE(1080), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1080), + [sym_call] = STATE(1080), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_after_block] = STATE(4291), + [sym_rescue_block] = STATE(4291), + [sym_catch_block] = STATE(4291), + [sym_else_block] = STATE(4291), + [sym_access_call] = STATE(1080), + [sym_stab_clause] = STATE(4245), + [sym__stab_clause_left] = STATE(5656), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1080), + [aux_sym__terminator_repeat1] = STATE(1018), + [aux_sym_do_block_repeat1] = STATE(4291), [aux_sym__terminator_token1] = ACTIONS(61), [anon_sym_SEMI] = ACTIONS(147), [anon_sym_LPAREN] = ACTIONS(65), @@ -24291,61 +24929,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [8] = { - [sym__terminator] = STATE(27), - [sym__expression] = STATE(1065), - [sym_block] = STATE(1065), + [sym__terminator] = STATE(33), + [sym__expression] = STATE(1061), + [sym_block] = STATE(1061), [sym__identifier] = STATE(25), [sym_identifier] = STATE(25), [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1065), - [sym_nil] = STATE(1065), - [sym__atom] = STATE(1065), - [sym_quoted_atom] = STATE(1065), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1065), - [sym_charlist] = STATE(1065), - [sym_sigil] = STATE(1065), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1065), - [sym_tuple] = STATE(1065), - [sym_bitstring] = STATE(1065), - [sym_map] = STATE(1065), - [sym_unary_operator] = STATE(1065), - [sym_binary_operator] = STATE(1065), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1065), - [sym_call] = STATE(1065), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_after_block] = STATE(3693), - [sym_rescue_block] = STATE(3693), - [sym_catch_block] = STATE(3693), - [sym_else_block] = STATE(3693), - [sym_access_call] = STATE(1065), - [sym_stab_clause] = STATE(3591), - [sym__stab_clause_left] = STATE(4978), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1065), - [aux_sym__terminator_repeat1] = STATE(1019), - [aux_sym_do_block_repeat1] = STATE(3693), + [sym_boolean] = STATE(1061), + [sym_nil] = STATE(1061), + [sym__atom] = STATE(1061), + [sym_quoted_atom] = STATE(1061), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1061), + [sym_charlist] = STATE(1061), + [sym_sigil] = STATE(1061), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1061), + [sym_tuple] = STATE(1061), + [sym_bitstring] = STATE(1061), + [sym_map] = STATE(1061), + [sym_unary_operator] = STATE(1061), + [sym_binary_operator] = STATE(1061), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1061), + [sym_call] = STATE(1061), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_after_block] = STATE(4283), + [sym_rescue_block] = STATE(4283), + [sym_catch_block] = STATE(4283), + [sym_else_block] = STATE(4283), + [sym_access_call] = STATE(1061), + [sym_stab_clause] = STATE(4252), + [sym__stab_clause_left] = STATE(5656), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1061), + [aux_sym__terminator_repeat1] = STATE(1018), + [aux_sym_do_block_repeat1] = STATE(4283), [aux_sym__terminator_token1] = ACTIONS(61), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(65), @@ -24440,61 +25078,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [9] = { - [sym__terminator] = STATE(26), - [sym__expression] = STATE(1079), - [sym_block] = STATE(1079), + [sym__terminator] = STATE(29), + [sym__expression] = STATE(1067), + [sym_block] = STATE(1067), [sym__identifier] = STATE(25), [sym_identifier] = STATE(25), [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1079), - [sym_nil] = STATE(1079), - [sym__atom] = STATE(1079), - [sym_quoted_atom] = STATE(1079), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1079), - [sym_charlist] = STATE(1079), - [sym_sigil] = STATE(1079), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1079), - [sym_tuple] = STATE(1079), - [sym_bitstring] = STATE(1079), - [sym_map] = STATE(1079), - [sym_unary_operator] = STATE(1079), - [sym_binary_operator] = STATE(1079), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1079), - [sym_call] = STATE(1079), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_after_block] = STATE(3687), - [sym_rescue_block] = STATE(3687), - [sym_catch_block] = STATE(3687), - [sym_else_block] = STATE(3687), - [sym_access_call] = STATE(1079), - [sym_stab_clause] = STATE(3660), - [sym__stab_clause_left] = STATE(4978), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1079), - [aux_sym__terminator_repeat1] = STATE(1019), - [aux_sym_do_block_repeat1] = STATE(3687), + [sym_boolean] = STATE(1067), + [sym_nil] = STATE(1067), + [sym__atom] = STATE(1067), + [sym_quoted_atom] = STATE(1067), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1067), + [sym_charlist] = STATE(1067), + [sym_sigil] = STATE(1067), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1067), + [sym_tuple] = STATE(1067), + [sym_bitstring] = STATE(1067), + [sym_map] = STATE(1067), + [sym_unary_operator] = STATE(1067), + [sym_binary_operator] = STATE(1067), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1067), + [sym_call] = STATE(1067), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_after_block] = STATE(4289), + [sym_rescue_block] = STATE(4289), + [sym_catch_block] = STATE(4289), + [sym_else_block] = STATE(4289), + [sym_access_call] = STATE(1067), + [sym_stab_clause] = STATE(4198), + [sym__stab_clause_left] = STATE(5656), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1067), + [aux_sym__terminator_repeat1] = STATE(1018), + [aux_sym_do_block_repeat1] = STATE(4289), [aux_sym__terminator_token1] = ACTIONS(61), [anon_sym_SEMI] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(65), @@ -24589,61 +25227,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [10] = { - [sym__terminator] = STATE(28), - [sym__expression] = STATE(1063), - [sym_block] = STATE(1063), + [sym__terminator] = STATE(27), + [sym__expression] = STATE(1075), + [sym_block] = STATE(1075), [sym__identifier] = STATE(25), [sym_identifier] = STATE(25), [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1063), - [sym_nil] = STATE(1063), - [sym__atom] = STATE(1063), - [sym_quoted_atom] = STATE(1063), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1063), - [sym_charlist] = STATE(1063), - [sym_sigil] = STATE(1063), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1063), - [sym_tuple] = STATE(1063), - [sym_bitstring] = STATE(1063), - [sym_map] = STATE(1063), - [sym_unary_operator] = STATE(1063), - [sym_binary_operator] = STATE(1063), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1063), - [sym_call] = STATE(1063), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_after_block] = STATE(3682), - [sym_rescue_block] = STATE(3682), - [sym_catch_block] = STATE(3682), - [sym_else_block] = STATE(3682), - [sym_access_call] = STATE(1063), - [sym_stab_clause] = STATE(3643), - [sym__stab_clause_left] = STATE(4978), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1063), - [aux_sym__terminator_repeat1] = STATE(1019), - [aux_sym_do_block_repeat1] = STATE(3682), + [sym_boolean] = STATE(1075), + [sym_nil] = STATE(1075), + [sym__atom] = STATE(1075), + [sym_quoted_atom] = STATE(1075), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1075), + [sym_charlist] = STATE(1075), + [sym_sigil] = STATE(1075), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1075), + [sym_tuple] = STATE(1075), + [sym_bitstring] = STATE(1075), + [sym_map] = STATE(1075), + [sym_unary_operator] = STATE(1075), + [sym_binary_operator] = STATE(1075), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1075), + [sym_call] = STATE(1075), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_after_block] = STATE(4270), + [sym_rescue_block] = STATE(4270), + [sym_catch_block] = STATE(4270), + [sym_else_block] = STATE(4270), + [sym_access_call] = STATE(1075), + [sym_stab_clause] = STATE(4236), + [sym__stab_clause_left] = STATE(5656), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1075), + [aux_sym__terminator_repeat1] = STATE(1018), + [aux_sym_do_block_repeat1] = STATE(4270), [aux_sym__terminator_token1] = ACTIONS(61), [anon_sym_SEMI] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(65), @@ -24738,61 +25376,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [11] = { - [sym__terminator] = STATE(24), - [sym__expression] = STATE(1073), - [sym_block] = STATE(1073), + [sym__terminator] = STATE(22), + [sym__expression] = STATE(1079), + [sym_block] = STATE(1079), [sym__identifier] = STATE(25), [sym_identifier] = STATE(25), [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1073), - [sym_nil] = STATE(1073), - [sym__atom] = STATE(1073), - [sym_quoted_atom] = STATE(1073), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1073), - [sym_charlist] = STATE(1073), - [sym_sigil] = STATE(1073), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1073), - [sym_tuple] = STATE(1073), - [sym_bitstring] = STATE(1073), - [sym_map] = STATE(1073), - [sym_unary_operator] = STATE(1073), - [sym_binary_operator] = STATE(1073), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1073), - [sym_call] = STATE(1073), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_after_block] = STATE(3664), - [sym_rescue_block] = STATE(3664), - [sym_catch_block] = STATE(3664), - [sym_else_block] = STATE(3664), - [sym_access_call] = STATE(1073), - [sym_stab_clause] = STATE(3623), - [sym__stab_clause_left] = STATE(4978), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1073), - [aux_sym__terminator_repeat1] = STATE(1019), - [aux_sym_do_block_repeat1] = STATE(3664), + [sym_boolean] = STATE(1079), + [sym_nil] = STATE(1079), + [sym__atom] = STATE(1079), + [sym_quoted_atom] = STATE(1079), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1079), + [sym_charlist] = STATE(1079), + [sym_sigil] = STATE(1079), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1079), + [sym_tuple] = STATE(1079), + [sym_bitstring] = STATE(1079), + [sym_map] = STATE(1079), + [sym_unary_operator] = STATE(1079), + [sym_binary_operator] = STATE(1079), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1079), + [sym_call] = STATE(1079), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_after_block] = STATE(4329), + [sym_rescue_block] = STATE(4329), + [sym_catch_block] = STATE(4329), + [sym_else_block] = STATE(4329), + [sym_access_call] = STATE(1079), + [sym_stab_clause] = STATE(4259), + [sym__stab_clause_left] = STATE(5656), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1079), + [aux_sym__terminator_repeat1] = STATE(1018), + [aux_sym_do_block_repeat1] = STATE(4329), [aux_sym__terminator_token1] = ACTIONS(61), [anon_sym_SEMI] = ACTIONS(171), [anon_sym_LPAREN] = ACTIONS(65), @@ -24887,61 +25525,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [12] = { - [sym__terminator] = STATE(23), - [sym__expression] = STATE(1077), - [sym_block] = STATE(1077), + [sym__terminator] = STATE(28), + [sym__expression] = STATE(1068), + [sym_block] = STATE(1068), [sym__identifier] = STATE(25), [sym_identifier] = STATE(25), [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1077), - [sym_nil] = STATE(1077), - [sym__atom] = STATE(1077), - [sym_quoted_atom] = STATE(1077), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1077), - [sym_charlist] = STATE(1077), - [sym_sigil] = STATE(1077), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1077), - [sym_tuple] = STATE(1077), - [sym_bitstring] = STATE(1077), - [sym_map] = STATE(1077), - [sym_unary_operator] = STATE(1077), - [sym_binary_operator] = STATE(1077), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1077), - [sym_call] = STATE(1077), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_after_block] = STATE(3675), - [sym_rescue_block] = STATE(3675), - [sym_catch_block] = STATE(3675), - [sym_else_block] = STATE(3675), - [sym_access_call] = STATE(1077), - [sym_stab_clause] = STATE(3657), - [sym__stab_clause_left] = STATE(4978), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1077), - [aux_sym__terminator_repeat1] = STATE(1019), - [aux_sym_do_block_repeat1] = STATE(3675), + [sym_boolean] = STATE(1068), + [sym_nil] = STATE(1068), + [sym__atom] = STATE(1068), + [sym_quoted_atom] = STATE(1068), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1068), + [sym_charlist] = STATE(1068), + [sym_sigil] = STATE(1068), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1068), + [sym_tuple] = STATE(1068), + [sym_bitstring] = STATE(1068), + [sym_map] = STATE(1068), + [sym_unary_operator] = STATE(1068), + [sym_binary_operator] = STATE(1068), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1068), + [sym_call] = STATE(1068), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_after_block] = STATE(4297), + [sym_rescue_block] = STATE(4297), + [sym_catch_block] = STATE(4297), + [sym_else_block] = STATE(4297), + [sym_access_call] = STATE(1068), + [sym_stab_clause] = STATE(4197), + [sym__stab_clause_left] = STATE(5656), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1068), + [aux_sym__terminator_repeat1] = STATE(1018), + [aux_sym_do_block_repeat1] = STATE(4297), [aux_sym__terminator_token1] = ACTIONS(61), [anon_sym_SEMI] = ACTIONS(177), [anon_sym_LPAREN] = ACTIONS(65), @@ -25036,61 +25674,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [13] = { - [sym__terminator] = STATE(21), - [sym__expression] = STATE(1062), - [sym_block] = STATE(1062), + [sym__terminator] = STATE(20), + [sym__expression] = STATE(1078), + [sym_block] = STATE(1078), [sym__identifier] = STATE(25), [sym_identifier] = STATE(25), [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1062), - [sym_nil] = STATE(1062), - [sym__atom] = STATE(1062), - [sym_quoted_atom] = STATE(1062), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1062), - [sym_charlist] = STATE(1062), - [sym_sigil] = STATE(1062), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1062), - [sym_tuple] = STATE(1062), - [sym_bitstring] = STATE(1062), - [sym_map] = STATE(1062), - [sym_unary_operator] = STATE(1062), - [sym_binary_operator] = STATE(1062), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1062), - [sym_call] = STATE(1062), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_after_block] = STATE(3686), - [sym_rescue_block] = STATE(3686), - [sym_catch_block] = STATE(3686), - [sym_else_block] = STATE(3686), - [sym_access_call] = STATE(1062), - [sym_stab_clause] = STATE(3656), - [sym__stab_clause_left] = STATE(4978), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1062), - [aux_sym__terminator_repeat1] = STATE(1019), - [aux_sym_do_block_repeat1] = STATE(3686), + [sym_boolean] = STATE(1078), + [sym_nil] = STATE(1078), + [sym__atom] = STATE(1078), + [sym_quoted_atom] = STATE(1078), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1078), + [sym_charlist] = STATE(1078), + [sym_sigil] = STATE(1078), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1078), + [sym_tuple] = STATE(1078), + [sym_bitstring] = STATE(1078), + [sym_map] = STATE(1078), + [sym_unary_operator] = STATE(1078), + [sym_binary_operator] = STATE(1078), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1078), + [sym_call] = STATE(1078), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_after_block] = STATE(4303), + [sym_rescue_block] = STATE(4303), + [sym_catch_block] = STATE(4303), + [sym_else_block] = STATE(4303), + [sym_access_call] = STATE(1078), + [sym_stab_clause] = STATE(4223), + [sym__stab_clause_left] = STATE(5656), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1078), + [aux_sym__terminator_repeat1] = STATE(1018), + [aux_sym_do_block_repeat1] = STATE(4303), [aux_sym__terminator_token1] = ACTIONS(61), [anon_sym_SEMI] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(65), @@ -25185,51 +25823,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [14] = { - [sym__expression] = STATE(1313), - [sym_block] = STATE(1313), - [sym__identifier] = STATE(14), - [sym_identifier] = STATE(14), - [sym_special_identifier] = STATE(14), - [sym_boolean] = STATE(1313), - [sym_nil] = STATE(1313), - [sym__atom] = STATE(1313), - [sym_quoted_atom] = STATE(1313), - [sym__quoted_i_double] = STATE(1146), - [sym__quoted_i_single] = STATE(1145), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(1313), - [sym_charlist] = STATE(1313), - [sym_sigil] = STATE(1313), - [sym_keywords] = STATE(1363), - [sym_pair] = STATE(1331), - [sym__keyword] = STATE(836), - [sym_quoted_keyword] = STATE(836), - [sym_list] = STATE(1313), - [sym_tuple] = STATE(1313), - [sym_bitstring] = STATE(1313), - [sym_map] = STATE(1313), - [sym_unary_operator] = STATE(1313), - [sym_binary_operator] = STATE(1313), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(1313), - [sym_call] = STATE(1313), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym__call_arguments_with_parentheses_immediate] = STATE(1096), - [sym__call_arguments_without_parentheses] = STATE(1149), - [sym_do_block] = STATE(1419), - [sym_access_call] = STATE(1313), - [sym_anonymous_function] = STATE(1313), + [sym__expression] = STATE(1256), + [sym_block] = STATE(1256), + [sym__identifier] = STATE(18), + [sym_identifier] = STATE(18), + [sym_special_identifier] = STATE(18), + [sym_boolean] = STATE(1256), + [sym_nil] = STATE(1256), + [sym__atom] = STATE(1256), + [sym_quoted_atom] = STATE(1256), + [sym__quoted_i_double] = STATE(1096), + [sym__quoted_i_single] = STATE(1095), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(1256), + [sym_charlist] = STATE(1256), + [sym_sigil] = STATE(1256), + [sym_keywords] = STATE(1269), + [sym_pair] = STATE(1196), + [sym__keyword] = STATE(826), + [sym_quoted_keyword] = STATE(826), + [sym_list] = STATE(1256), + [sym_tuple] = STATE(1256), + [sym_bitstring] = STATE(1256), + [sym_map] = STATE(1256), + [sym_unary_operator] = STATE(1256), + [sym_binary_operator] = STATE(1256), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(1256), + [sym_call] = STATE(1256), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym__call_arguments_with_parentheses_immediate] = STATE(1087), + [sym__call_arguments_without_parentheses] = STATE(1120), + [sym_do_block] = STATE(1650), + [sym_access_call] = STATE(1256), + [sym_anonymous_function] = STATE(1256), [aux_sym__terminator_token1] = ACTIONS(189), [anon_sym_SEMI] = ACTIONS(191), [anon_sym_LPAREN] = ACTIONS(193), @@ -25255,718 +25893,424 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), [anon_sym_LBRACE] = ACTIONS(215), [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(219), - [anon_sym_GT] = ACTIONS(219), - [anon_sym_PIPE] = ACTIONS(219), - [anon_sym_SLASH] = ACTIONS(219), - [anon_sym_TILDE] = ACTIONS(222), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(219), [anon_sym_COMMA] = ACTIONS(191), - [sym_keyword] = ACTIONS(224), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(230), - [anon_sym_PLUS] = ACTIONS(232), - [anon_sym_DASH] = ACTIONS(232), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_CARET] = ACTIONS(235), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(235), - [anon_sym_not] = ACTIONS(235), - [anon_sym_AT] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(219), - [anon_sym_BSLASH_BSLASH] = ACTIONS(219), - [anon_sym_when] = ACTIONS(219), - [anon_sym_COLON_COLON] = ACTIONS(219), + [sym_keyword] = ACTIONS(221), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(191), + [anon_sym_BSLASH_BSLASH] = ACTIONS(191), + [anon_sym_when] = ACTIONS(191), + [anon_sym_COLON_COLON] = ACTIONS(191), [anon_sym_EQ_GT] = ACTIONS(191), - [anon_sym_EQ] = ACTIONS(219), - [anon_sym_PIPE_PIPE] = ACTIONS(219), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(219), - [anon_sym_or] = ACTIONS(219), - [anon_sym_AMP_AMP] = ACTIONS(219), - [anon_sym_AMP_AMP_AMP] = ACTIONS(219), - [anon_sym_and] = ACTIONS(219), - [anon_sym_EQ_EQ] = ACTIONS(219), - [anon_sym_BANG_EQ] = ACTIONS(219), - [anon_sym_EQ_TILDE] = ACTIONS(219), - [anon_sym_EQ_EQ_EQ] = ACTIONS(219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(219), - [anon_sym_LT_EQ] = ACTIONS(219), - [anon_sym_GT_EQ] = ACTIONS(219), - [anon_sym_PIPE_GT] = ACTIONS(219), - [anon_sym_LT_LT_LT] = ACTIONS(219), - [anon_sym_GT_GT_GT] = ACTIONS(219), - [anon_sym_LT_LT_TILDE] = ACTIONS(219), - [anon_sym_TILDE_GT_GT] = ACTIONS(219), - [anon_sym_LT_TILDE] = ACTIONS(219), - [anon_sym_TILDE_GT] = ACTIONS(219), - [anon_sym_LT_TILDE_GT] = ACTIONS(219), - [anon_sym_LT_PIPE_GT] = ACTIONS(219), - [anon_sym_in] = ACTIONS(219), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_PIPE_PIPE] = ACTIONS(191), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(191), + [anon_sym_or] = ACTIONS(191), + [anon_sym_AMP_AMP] = ACTIONS(191), + [anon_sym_AMP_AMP_AMP] = ACTIONS(191), + [anon_sym_and] = ACTIONS(191), + [anon_sym_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ] = ACTIONS(191), + [anon_sym_EQ_TILDE] = ACTIONS(191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(191), + [anon_sym_LT_EQ] = ACTIONS(191), + [anon_sym_GT_EQ] = ACTIONS(191), + [anon_sym_PIPE_GT] = ACTIONS(191), + [anon_sym_LT_LT_LT] = ACTIONS(191), + [anon_sym_GT_GT_GT] = ACTIONS(191), + [anon_sym_LT_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT_GT] = ACTIONS(191), + [anon_sym_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_PIPE_GT] = ACTIONS(191), + [anon_sym_in] = ACTIONS(191), [anon_sym_CARET_CARET_CARET] = ACTIONS(191), [anon_sym_SLASH_SLASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(219), - [anon_sym_DASH_DASH] = ACTIONS(219), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(219), - [anon_sym_DASH_DASH_DASH] = ACTIONS(219), - [anon_sym_DOT_DOT] = ACTIONS(219), - [anon_sym_LT_GT] = ACTIONS(219), - [anon_sym_STAR] = ACTIONS(219), - [anon_sym_STAR_STAR] = ACTIONS(219), + [anon_sym_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH_DASH] = ACTIONS(191), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_LT_GT] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_STAR_STAR] = ACTIONS(191), [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(219), + [anon_sym_DASH_GT] = ACTIONS(191), + [anon_sym_DOT] = ACTIONS(191), [anon_sym_after] = ACTIONS(191), [anon_sym_catch] = ACTIONS(191), - [anon_sym_do] = ACTIONS(191), + [anon_sym_do] = ACTIONS(233), [anon_sym_else] = ACTIONS(191), [anon_sym_end] = ACTIONS(191), - [anon_sym_fn] = ACTIONS(239), + [anon_sym_fn] = ACTIONS(235), [anon_sym_rescue] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(237), [anon_sym_LBRACK2] = ACTIONS(189), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(189), + [sym__newline_before_do] = ACTIONS(239), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(243), - [sym__not_in] = ACTIONS(245), - [sym__quoted_atom_start] = ACTIONS(248), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(189), + [sym__quoted_atom_start] = ACTIONS(243), }, [15] = { - [sym__expression] = STATE(1209), - [sym_block] = STATE(1209), - [sym__identifier] = STATE(18), - [sym_identifier] = STATE(18), - [sym_special_identifier] = STATE(18), - [sym_boolean] = STATE(1209), - [sym_nil] = STATE(1209), - [sym__atom] = STATE(1209), - [sym_quoted_atom] = STATE(1209), - [sym__quoted_i_double] = STATE(1114), - [sym__quoted_i_single] = STATE(1100), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(1209), - [sym_charlist] = STATE(1209), - [sym_sigil] = STATE(1209), - [sym_keywords] = STATE(1147), - [sym_pair] = STATE(1265), - [sym__keyword] = STATE(794), - [sym_quoted_keyword] = STATE(794), - [sym_list] = STATE(1209), - [sym_tuple] = STATE(1209), - [sym_bitstring] = STATE(1209), - [sym_map] = STATE(1209), - [sym_unary_operator] = STATE(1209), - [sym_binary_operator] = STATE(1209), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(1209), - [sym_call] = STATE(1209), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym__call_arguments_with_parentheses_immediate] = STATE(1087), - [sym__call_arguments_without_parentheses] = STATE(1122), - [sym_do_block] = STATE(1238), - [sym_access_call] = STATE(1209), - [sym_anonymous_function] = STATE(1209), - [aux_sym__terminator_token1] = ACTIONS(250), - [anon_sym_SEMI] = ACTIONS(252), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(256), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), - [sym_alias] = ACTIONS(258), - [sym_integer] = ACTIONS(258), - [sym_float] = ACTIONS(258), - [sym_char] = ACTIONS(258), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(258), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(252), - [anon_sym_GT] = ACTIONS(252), - [anon_sym_PIPE] = ACTIONS(252), - [anon_sym_SLASH] = ACTIONS(252), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_COMMA] = ACTIONS(252), - [sym_keyword] = ACTIONS(278), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(252), - [anon_sym_DASH] = ACTIONS(252), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(286), - [anon_sym_not] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), - [anon_sym_LT_DASH] = ACTIONS(252), - [anon_sym_BSLASH_BSLASH] = ACTIONS(252), - [anon_sym_when] = ACTIONS(252), - [anon_sym_COLON_COLON] = ACTIONS(252), - [anon_sym_EQ_GT] = ACTIONS(252), - [anon_sym_EQ] = ACTIONS(252), - [anon_sym_PIPE_PIPE] = ACTIONS(252), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(252), - [anon_sym_or] = ACTIONS(252), - [anon_sym_AMP_AMP] = ACTIONS(252), - [anon_sym_AMP_AMP_AMP] = ACTIONS(252), - [anon_sym_and] = ACTIONS(252), - [anon_sym_EQ_EQ] = ACTIONS(252), - [anon_sym_BANG_EQ] = ACTIONS(252), - [anon_sym_EQ_TILDE] = ACTIONS(252), - [anon_sym_EQ_EQ_EQ] = ACTIONS(252), - [anon_sym_BANG_EQ_EQ] = ACTIONS(252), - [anon_sym_LT_EQ] = ACTIONS(252), - [anon_sym_GT_EQ] = ACTIONS(252), - [anon_sym_PIPE_GT] = ACTIONS(252), - [anon_sym_LT_LT_LT] = ACTIONS(252), - [anon_sym_GT_GT_GT] = ACTIONS(252), - [anon_sym_LT_LT_TILDE] = ACTIONS(252), - [anon_sym_TILDE_GT_GT] = ACTIONS(252), - [anon_sym_LT_TILDE] = ACTIONS(252), - [anon_sym_TILDE_GT] = ACTIONS(252), - [anon_sym_LT_TILDE_GT] = ACTIONS(252), - [anon_sym_LT_PIPE_GT] = ACTIONS(252), - [anon_sym_in] = ACTIONS(252), - [anon_sym_CARET_CARET_CARET] = ACTIONS(252), - [anon_sym_SLASH_SLASH] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(252), - [anon_sym_DASH_DASH] = ACTIONS(252), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(252), - [anon_sym_DASH_DASH_DASH] = ACTIONS(252), - [anon_sym_DOT_DOT] = ACTIONS(252), - [anon_sym_LT_GT] = ACTIONS(252), - [anon_sym_STAR] = ACTIONS(252), - [anon_sym_STAR_STAR] = ACTIONS(252), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(252), - [anon_sym_DOT] = ACTIONS(252), - [anon_sym_after] = ACTIONS(252), - [anon_sym_catch] = ACTIONS(252), - [anon_sym_do] = ACTIONS(252), - [anon_sym_else] = ACTIONS(252), - [anon_sym_end] = ACTIONS(252), - [anon_sym_fn] = ACTIONS(290), - [anon_sym_rescue] = ACTIONS(252), - [anon_sym_LPAREN2] = ACTIONS(292), - [anon_sym_LBRACK2] = ACTIONS(250), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(250), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(294), - [sym__not_in] = ACTIONS(250), - [sym__quoted_atom_start] = ACTIONS(296), - }, - [16] = { - [sym__expression] = STATE(1313), - [sym_block] = STATE(1313), - [sym__identifier] = STATE(14), - [sym_identifier] = STATE(14), - [sym_special_identifier] = STATE(14), - [sym_boolean] = STATE(1313), - [sym_nil] = STATE(1313), - [sym__atom] = STATE(1313), - [sym_quoted_atom] = STATE(1313), - [sym__quoted_i_double] = STATE(1146), - [sym__quoted_i_single] = STATE(1145), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(1313), - [sym_charlist] = STATE(1313), - [sym_sigil] = STATE(1313), - [sym_keywords] = STATE(1363), - [sym_pair] = STATE(1331), - [sym__keyword] = STATE(836), - [sym_quoted_keyword] = STATE(836), - [sym_list] = STATE(1313), - [sym_tuple] = STATE(1313), - [sym_bitstring] = STATE(1313), - [sym_map] = STATE(1313), - [sym_unary_operator] = STATE(1313), - [sym_binary_operator] = STATE(1313), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(1313), - [sym_call] = STATE(1313), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), + [sym__expression] = STATE(1513), + [sym_block] = STATE(1513), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1513), + [sym_nil] = STATE(1513), + [sym__atom] = STATE(1513), + [sym_quoted_atom] = STATE(1513), + [sym__quoted_i_double] = STATE(1276), + [sym__quoted_i_single] = STATE(1277), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(1513), + [sym_charlist] = STATE(1513), + [sym_sigil] = STATE(1513), + [sym_keywords] = STATE(1451), + [sym_pair] = STATE(1332), + [sym__keyword] = STATE(887), + [sym_quoted_keyword] = STATE(887), + [sym_list] = STATE(1513), + [sym_tuple] = STATE(1513), + [sym_bitstring] = STATE(1513), + [sym_map] = STATE(1513), + [sym_unary_operator] = STATE(1513), + [sym_binary_operator] = STATE(1513), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(1513), + [sym_call] = STATE(1513), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), [sym__call_arguments_with_parentheses_immediate] = STATE(1097), - [sym__call_arguments_without_parentheses] = STATE(1153), - [sym_do_block] = STATE(1406), - [sym_access_call] = STATE(1313), - [sym_anonymous_function] = STATE(1313), - [aux_sym__terminator_token1] = ACTIONS(250), - [anon_sym_SEMI] = ACTIONS(252), - [anon_sym_LPAREN] = ACTIONS(193), + [sym__call_arguments_without_parentheses] = STATE(1149), + [sym_do_block] = STATE(1453), + [sym_access_call] = STATE(1513), + [sym_anonymous_function] = STATE(1513), + [aux_sym__terminator_token1] = ACTIONS(245), + [anon_sym_SEMI] = ACTIONS(247), + [anon_sym_LPAREN] = ACTIONS(249), [aux_sym_identifier_token1] = ACTIONS(195), [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(197), + [sym_unused_identifier] = ACTIONS(251), [anon_sym___MODULE__] = ACTIONS(199), [anon_sym___DIR__] = ACTIONS(199), [anon_sym___ENV__] = ACTIONS(199), [anon_sym___CALLER__] = ACTIONS(199), [anon_sym___STACKTRACE__] = ACTIONS(199), - [sym_alias] = ACTIONS(201), - [sym_integer] = ACTIONS(201), - [sym_float] = ACTIONS(201), - [sym_char] = ACTIONS(201), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(252), - [anon_sym_GT] = ACTIONS(252), - [anon_sym_PIPE] = ACTIONS(252), - [anon_sym_SLASH] = ACTIONS(252), - [anon_sym_TILDE] = ACTIONS(222), - [anon_sym_COMMA] = ACTIONS(252), - [sym_keyword] = ACTIONS(224), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(230), - [anon_sym_PLUS] = ACTIONS(252), - [anon_sym_DASH] = ACTIONS(252), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_CARET] = ACTIONS(235), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(235), - [anon_sym_not] = ACTIONS(235), - [anon_sym_AT] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(252), - [anon_sym_BSLASH_BSLASH] = ACTIONS(252), - [anon_sym_when] = ACTIONS(252), - [anon_sym_COLON_COLON] = ACTIONS(252), - [anon_sym_EQ_GT] = ACTIONS(252), - [anon_sym_EQ] = ACTIONS(252), - [anon_sym_PIPE_PIPE] = ACTIONS(252), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(252), - [anon_sym_or] = ACTIONS(252), - [anon_sym_AMP_AMP] = ACTIONS(252), - [anon_sym_AMP_AMP_AMP] = ACTIONS(252), - [anon_sym_and] = ACTIONS(252), - [anon_sym_EQ_EQ] = ACTIONS(252), - [anon_sym_BANG_EQ] = ACTIONS(252), - [anon_sym_EQ_TILDE] = ACTIONS(252), - [anon_sym_EQ_EQ_EQ] = ACTIONS(252), - [anon_sym_BANG_EQ_EQ] = ACTIONS(252), - [anon_sym_LT_EQ] = ACTIONS(252), - [anon_sym_GT_EQ] = ACTIONS(252), - [anon_sym_PIPE_GT] = ACTIONS(252), - [anon_sym_LT_LT_LT] = ACTIONS(252), - [anon_sym_GT_GT_GT] = ACTIONS(252), - [anon_sym_LT_LT_TILDE] = ACTIONS(252), - [anon_sym_TILDE_GT_GT] = ACTIONS(252), - [anon_sym_LT_TILDE] = ACTIONS(252), - [anon_sym_TILDE_GT] = ACTIONS(252), - [anon_sym_LT_TILDE_GT] = ACTIONS(252), - [anon_sym_LT_PIPE_GT] = ACTIONS(252), - [anon_sym_in] = ACTIONS(252), - [anon_sym_CARET_CARET_CARET] = ACTIONS(252), - [anon_sym_SLASH_SLASH] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(252), - [anon_sym_DASH_DASH] = ACTIONS(252), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(252), - [anon_sym_DASH_DASH_DASH] = ACTIONS(252), - [anon_sym_DOT_DOT] = ACTIONS(252), - [anon_sym_LT_GT] = ACTIONS(252), - [anon_sym_STAR] = ACTIONS(252), - [anon_sym_STAR_STAR] = ACTIONS(252), + [sym_alias] = ACTIONS(253), + [sym_integer] = ACTIONS(253), + [sym_float] = ACTIONS(253), + [sym_char] = ACTIONS(253), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(253), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_COMMA] = ACTIONS(247), + [sym_keyword] = ACTIONS(276), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_BSLASH_BSLASH] = ACTIONS(271), + [anon_sym_when] = ACTIONS(271), + [anon_sym_COLON_COLON] = ACTIONS(271), + [anon_sym_EQ_GT] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_PIPE_PIPE] = ACTIONS(271), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(271), + [anon_sym_AMP_AMP_AMP] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_EQ_TILDE] = ACTIONS(271), + [anon_sym_EQ_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ_EQ] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_PIPE_GT] = ACTIONS(271), + [anon_sym_LT_LT_LT] = ACTIONS(271), + [anon_sym_GT_GT_GT] = ACTIONS(271), + [anon_sym_LT_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT_GT] = ACTIONS(271), + [anon_sym_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_PIPE_GT] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_CARET_CARET_CARET] = ACTIONS(247), + [anon_sym_SLASH_SLASH] = ACTIONS(247), + [anon_sym_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH] = ACTIONS(271), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH_DASH] = ACTIONS(271), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(252), - [anon_sym_after] = ACTIONS(252), - [anon_sym_catch] = ACTIONS(252), - [anon_sym_do] = ACTIONS(252), - [anon_sym_else] = ACTIONS(252), - [anon_sym_end] = ACTIONS(252), - [anon_sym_fn] = ACTIONS(239), - [anon_sym_rescue] = ACTIONS(252), - [anon_sym_LPAREN2] = ACTIONS(241), - [anon_sym_LBRACK2] = ACTIONS(250), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_after] = ACTIONS(247), + [anon_sym_catch] = ACTIONS(247), + [anon_sym_do] = ACTIONS(247), + [anon_sym_else] = ACTIONS(247), + [anon_sym_end] = ACTIONS(247), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_rescue] = ACTIONS(247), + [anon_sym_LPAREN2] = ACTIONS(293), + [anon_sym_LBRACK2] = ACTIONS(245), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(250), + [sym__newline_before_do] = ACTIONS(245), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(243), - [sym__not_in] = ACTIONS(250), - [sym__quoted_atom_start] = ACTIONS(248), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(297), + [sym__quoted_atom_start] = ACTIONS(300), }, - [17] = { - [sym__expression] = STATE(1209), - [sym_block] = STATE(1209), - [sym__identifier] = STATE(18), - [sym_identifier] = STATE(18), - [sym_special_identifier] = STATE(18), - [sym_boolean] = STATE(1209), - [sym_nil] = STATE(1209), - [sym__atom] = STATE(1209), - [sym_quoted_atom] = STATE(1209), - [sym__quoted_i_double] = STATE(1114), - [sym__quoted_i_single] = STATE(1100), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(1209), - [sym_charlist] = STATE(1209), - [sym_sigil] = STATE(1209), - [sym_keywords] = STATE(1147), - [sym_pair] = STATE(1265), - [sym__keyword] = STATE(794), - [sym_quoted_keyword] = STATE(794), - [sym_list] = STATE(1209), - [sym_tuple] = STATE(1209), - [sym_bitstring] = STATE(1209), - [sym_map] = STATE(1209), - [sym_unary_operator] = STATE(1209), - [sym_binary_operator] = STATE(1209), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(1209), - [sym_call] = STATE(1209), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym__call_arguments_with_parentheses_immediate] = STATE(1089), - [sym__call_arguments_without_parentheses] = STATE(1092), - [sym_do_block] = STATE(1489), - [sym_access_call] = STATE(1209), - [sym_anonymous_function] = STATE(1209), - [aux_sym__terminator_token1] = ACTIONS(250), - [anon_sym_SEMI] = ACTIONS(252), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(256), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), - [sym_alias] = ACTIONS(258), - [sym_integer] = ACTIONS(258), - [sym_float] = ACTIONS(258), - [sym_char] = ACTIONS(258), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(258), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(252), - [anon_sym_GT] = ACTIONS(252), - [anon_sym_PIPE] = ACTIONS(252), - [anon_sym_SLASH] = ACTIONS(252), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_COMMA] = ACTIONS(252), - [sym_keyword] = ACTIONS(278), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(252), - [anon_sym_DASH] = ACTIONS(252), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(286), - [anon_sym_not] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), - [anon_sym_LT_DASH] = ACTIONS(252), - [anon_sym_BSLASH_BSLASH] = ACTIONS(252), - [anon_sym_when] = ACTIONS(252), - [anon_sym_COLON_COLON] = ACTIONS(252), - [anon_sym_EQ_GT] = ACTIONS(252), - [anon_sym_EQ] = ACTIONS(252), - [anon_sym_PIPE_PIPE] = ACTIONS(252), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(252), - [anon_sym_or] = ACTIONS(252), - [anon_sym_AMP_AMP] = ACTIONS(252), - [anon_sym_AMP_AMP_AMP] = ACTIONS(252), - [anon_sym_and] = ACTIONS(252), - [anon_sym_EQ_EQ] = ACTIONS(252), - [anon_sym_BANG_EQ] = ACTIONS(252), - [anon_sym_EQ_TILDE] = ACTIONS(252), - [anon_sym_EQ_EQ_EQ] = ACTIONS(252), - [anon_sym_BANG_EQ_EQ] = ACTIONS(252), - [anon_sym_LT_EQ] = ACTIONS(252), - [anon_sym_GT_EQ] = ACTIONS(252), - [anon_sym_PIPE_GT] = ACTIONS(252), - [anon_sym_LT_LT_LT] = ACTIONS(252), - [anon_sym_GT_GT_GT] = ACTIONS(252), - [anon_sym_LT_LT_TILDE] = ACTIONS(252), - [anon_sym_TILDE_GT_GT] = ACTIONS(252), - [anon_sym_LT_TILDE] = ACTIONS(252), - [anon_sym_TILDE_GT] = ACTIONS(252), - [anon_sym_LT_TILDE_GT] = ACTIONS(252), - [anon_sym_LT_PIPE_GT] = ACTIONS(252), - [anon_sym_in] = ACTIONS(252), - [anon_sym_CARET_CARET_CARET] = ACTIONS(252), - [anon_sym_SLASH_SLASH] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(252), - [anon_sym_DASH_DASH] = ACTIONS(252), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(252), - [anon_sym_DASH_DASH_DASH] = ACTIONS(252), - [anon_sym_DOT_DOT] = ACTIONS(252), - [anon_sym_LT_GT] = ACTIONS(252), - [anon_sym_STAR] = ACTIONS(252), - [anon_sym_STAR_STAR] = ACTIONS(252), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(252), - [anon_sym_DOT] = ACTIONS(252), - [anon_sym_after] = ACTIONS(252), - [anon_sym_catch] = ACTIONS(252), - [anon_sym_do] = ACTIONS(298), - [anon_sym_else] = ACTIONS(252), - [anon_sym_end] = ACTIONS(252), - [anon_sym_fn] = ACTIONS(290), - [anon_sym_rescue] = ACTIONS(252), - [anon_sym_LPAREN2] = ACTIONS(292), - [anon_sym_LBRACK2] = ACTIONS(250), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(300), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(294), - [sym__not_in] = ACTIONS(250), - [sym__quoted_atom_start] = ACTIONS(296), - }, - [18] = { - [sym__expression] = STATE(1209), - [sym_block] = STATE(1209), - [sym__identifier] = STATE(18), - [sym_identifier] = STATE(18), - [sym_special_identifier] = STATE(18), - [sym_boolean] = STATE(1209), - [sym_nil] = STATE(1209), - [sym__atom] = STATE(1209), - [sym_quoted_atom] = STATE(1209), - [sym__quoted_i_double] = STATE(1114), - [sym__quoted_i_single] = STATE(1100), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(1209), - [sym_charlist] = STATE(1209), - [sym_sigil] = STATE(1209), - [sym_keywords] = STATE(1147), - [sym_pair] = STATE(1265), - [sym__keyword] = STATE(794), - [sym_quoted_keyword] = STATE(794), - [sym_list] = STATE(1209), - [sym_tuple] = STATE(1209), - [sym_bitstring] = STATE(1209), - [sym_map] = STATE(1209), - [sym_unary_operator] = STATE(1209), - [sym_binary_operator] = STATE(1209), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(1209), - [sym_call] = STATE(1209), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym__call_arguments_with_parentheses_immediate] = STATE(1086), - [sym__call_arguments_without_parentheses] = STATE(1112), - [sym_do_block] = STATE(1241), - [sym_access_call] = STATE(1209), - [sym_anonymous_function] = STATE(1209), + [16] = { + [sym__expression] = STATE(1513), + [sym_block] = STATE(1513), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1513), + [sym_nil] = STATE(1513), + [sym__atom] = STATE(1513), + [sym_quoted_atom] = STATE(1513), + [sym__quoted_i_double] = STATE(1276), + [sym__quoted_i_single] = STATE(1277), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(1513), + [sym_charlist] = STATE(1513), + [sym_sigil] = STATE(1513), + [sym_keywords] = STATE(1451), + [sym_pair] = STATE(1332), + [sym__keyword] = STATE(887), + [sym_quoted_keyword] = STATE(887), + [sym_list] = STATE(1513), + [sym_tuple] = STATE(1513), + [sym_bitstring] = STATE(1513), + [sym_map] = STATE(1513), + [sym_unary_operator] = STATE(1513), + [sym_binary_operator] = STATE(1513), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(1513), + [sym_call] = STATE(1513), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym__call_arguments_with_parentheses_immediate] = STATE(1091), + [sym__call_arguments_without_parentheses] = STATE(1237), + [sym_do_block] = STATE(1450), + [sym_access_call] = STATE(1513), + [sym_anonymous_function] = STATE(1513), [aux_sym__terminator_token1] = ACTIONS(189), [anon_sym_SEMI] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(254), + [anon_sym_LPAREN] = ACTIONS(249), [aux_sym_identifier_token1] = ACTIONS(195), [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(256), + [sym_unused_identifier] = ACTIONS(251), [anon_sym___MODULE__] = ACTIONS(199), [anon_sym___DIR__] = ACTIONS(199), [anon_sym___ENV__] = ACTIONS(199), [anon_sym___CALLER__] = ACTIONS(199), [anon_sym___STACKTRACE__] = ACTIONS(199), - [sym_alias] = ACTIONS(258), - [sym_integer] = ACTIONS(258), - [sym_float] = ACTIONS(258), - [sym_char] = ACTIONS(258), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(258), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(219), - [anon_sym_GT] = ACTIONS(219), - [anon_sym_PIPE] = ACTIONS(219), - [anon_sym_SLASH] = ACTIONS(219), - [anon_sym_TILDE] = ACTIONS(276), + [sym_alias] = ACTIONS(253), + [sym_integer] = ACTIONS(253), + [sym_float] = ACTIONS(253), + [sym_char] = ACTIONS(253), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(253), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(274), [anon_sym_COMMA] = ACTIONS(191), - [sym_keyword] = ACTIONS(278), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(302), - [anon_sym_DASH] = ACTIONS(302), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(286), - [anon_sym_not] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), - [anon_sym_LT_DASH] = ACTIONS(219), - [anon_sym_BSLASH_BSLASH] = ACTIONS(219), - [anon_sym_when] = ACTIONS(219), - [anon_sym_COLON_COLON] = ACTIONS(219), + [sym_keyword] = ACTIONS(276), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(191), + [anon_sym_BSLASH_BSLASH] = ACTIONS(191), + [anon_sym_when] = ACTIONS(191), + [anon_sym_COLON_COLON] = ACTIONS(191), [anon_sym_EQ_GT] = ACTIONS(191), - [anon_sym_EQ] = ACTIONS(219), - [anon_sym_PIPE_PIPE] = ACTIONS(219), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(219), - [anon_sym_or] = ACTIONS(219), - [anon_sym_AMP_AMP] = ACTIONS(219), - [anon_sym_AMP_AMP_AMP] = ACTIONS(219), - [anon_sym_and] = ACTIONS(219), - [anon_sym_EQ_EQ] = ACTIONS(219), - [anon_sym_BANG_EQ] = ACTIONS(219), - [anon_sym_EQ_TILDE] = ACTIONS(219), - [anon_sym_EQ_EQ_EQ] = ACTIONS(219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(219), - [anon_sym_LT_EQ] = ACTIONS(219), - [anon_sym_GT_EQ] = ACTIONS(219), - [anon_sym_PIPE_GT] = ACTIONS(219), - [anon_sym_LT_LT_LT] = ACTIONS(219), - [anon_sym_GT_GT_GT] = ACTIONS(219), - [anon_sym_LT_LT_TILDE] = ACTIONS(219), - [anon_sym_TILDE_GT_GT] = ACTIONS(219), - [anon_sym_LT_TILDE] = ACTIONS(219), - [anon_sym_TILDE_GT] = ACTIONS(219), - [anon_sym_LT_TILDE_GT] = ACTIONS(219), - [anon_sym_LT_PIPE_GT] = ACTIONS(219), - [anon_sym_in] = ACTIONS(219), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_PIPE_PIPE] = ACTIONS(191), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(191), + [anon_sym_or] = ACTIONS(191), + [anon_sym_AMP_AMP] = ACTIONS(191), + [anon_sym_AMP_AMP_AMP] = ACTIONS(191), + [anon_sym_and] = ACTIONS(191), + [anon_sym_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ] = ACTIONS(191), + [anon_sym_EQ_TILDE] = ACTIONS(191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(191), + [anon_sym_LT_EQ] = ACTIONS(191), + [anon_sym_GT_EQ] = ACTIONS(191), + [anon_sym_PIPE_GT] = ACTIONS(191), + [anon_sym_LT_LT_LT] = ACTIONS(191), + [anon_sym_GT_GT_GT] = ACTIONS(191), + [anon_sym_LT_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT_GT] = ACTIONS(191), + [anon_sym_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_PIPE_GT] = ACTIONS(191), + [anon_sym_in] = ACTIONS(191), [anon_sym_CARET_CARET_CARET] = ACTIONS(191), [anon_sym_SLASH_SLASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(219), - [anon_sym_DASH_DASH] = ACTIONS(219), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(219), - [anon_sym_DASH_DASH_DASH] = ACTIONS(219), - [anon_sym_DOT_DOT] = ACTIONS(219), - [anon_sym_LT_GT] = ACTIONS(219), - [anon_sym_STAR] = ACTIONS(219), - [anon_sym_STAR_STAR] = ACTIONS(219), + [anon_sym_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH_DASH] = ACTIONS(191), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_LT_GT] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_STAR_STAR] = ACTIONS(191), [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(219), - [anon_sym_DOT] = ACTIONS(219), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(191), [anon_sym_after] = ACTIONS(191), [anon_sym_catch] = ACTIONS(191), [anon_sym_do] = ACTIONS(191), [anon_sym_else] = ACTIONS(191), [anon_sym_end] = ACTIONS(191), - [anon_sym_fn] = ACTIONS(290), + [anon_sym_fn] = ACTIONS(291), [anon_sym_rescue] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(292), + [anon_sym_LPAREN2] = ACTIONS(293), [anon_sym_LBRACK2] = ACTIONS(189), [sym_comment] = ACTIONS(5), [sym__newline_before_do] = ACTIONS(189), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(294), - [sym__not_in] = ACTIONS(245), - [sym__quoted_atom_start] = ACTIONS(296), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(189), + [sym__quoted_atom_start] = ACTIONS(300), }, - [19] = { - [sym__expression] = STATE(1313), - [sym_block] = STATE(1313), - [sym__identifier] = STATE(14), - [sym_identifier] = STATE(14), - [sym_special_identifier] = STATE(14), - [sym_boolean] = STATE(1313), - [sym_nil] = STATE(1313), - [sym__atom] = STATE(1313), - [sym_quoted_atom] = STATE(1313), - [sym__quoted_i_double] = STATE(1146), - [sym__quoted_i_single] = STATE(1145), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(1313), - [sym_charlist] = STATE(1313), - [sym_sigil] = STATE(1313), - [sym_keywords] = STATE(1363), - [sym_pair] = STATE(1331), - [sym__keyword] = STATE(836), - [sym_quoted_keyword] = STATE(836), - [sym_list] = STATE(1313), - [sym_tuple] = STATE(1313), - [sym_bitstring] = STATE(1313), - [sym_map] = STATE(1313), - [sym_unary_operator] = STATE(1313), - [sym_binary_operator] = STATE(1313), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(1313), - [sym_call] = STATE(1313), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym__call_arguments_with_parentheses_immediate] = STATE(1115), - [sym__call_arguments_without_parentheses] = STATE(1272), - [sym_do_block] = STATE(1627), - [sym_access_call] = STATE(1313), - [sym_anonymous_function] = STATE(1313), - [aux_sym__terminator_token1] = ACTIONS(250), - [anon_sym_SEMI] = ACTIONS(252), + [17] = { + [sym__expression] = STATE(1256), + [sym_block] = STATE(1256), + [sym__identifier] = STATE(18), + [sym_identifier] = STATE(18), + [sym_special_identifier] = STATE(18), + [sym_boolean] = STATE(1256), + [sym_nil] = STATE(1256), + [sym__atom] = STATE(1256), + [sym_quoted_atom] = STATE(1256), + [sym__quoted_i_double] = STATE(1096), + [sym__quoted_i_single] = STATE(1095), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(1256), + [sym_charlist] = STATE(1256), + [sym_sigil] = STATE(1256), + [sym_keywords] = STATE(1269), + [sym_pair] = STATE(1196), + [sym__keyword] = STATE(826), + [sym_quoted_keyword] = STATE(826), + [sym_list] = STATE(1256), + [sym_tuple] = STATE(1256), + [sym_bitstring] = STATE(1256), + [sym_map] = STATE(1256), + [sym_unary_operator] = STATE(1256), + [sym_binary_operator] = STATE(1256), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(1256), + [sym_call] = STATE(1256), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym__call_arguments_with_parentheses_immediate] = STATE(1089), + [sym__call_arguments_without_parentheses] = STATE(1116), + [sym_do_block] = STATE(1160), + [sym_access_call] = STATE(1256), + [sym_anonymous_function] = STATE(1256), + [aux_sym__terminator_token1] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), [anon_sym_LPAREN] = ACTIONS(193), [aux_sym_identifier_token1] = ACTIONS(195), [anon_sym_DOT_DOT_DOT] = ACTIONS(195), @@ -25990,136 +26334,430 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), [anon_sym_LBRACE] = ACTIONS(215), [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(252), - [anon_sym_GT] = ACTIONS(252), - [anon_sym_PIPE] = ACTIONS(252), - [anon_sym_SLASH] = ACTIONS(252), - [anon_sym_TILDE] = ACTIONS(222), - [anon_sym_COMMA] = ACTIONS(252), - [sym_keyword] = ACTIONS(224), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(230), - [anon_sym_PLUS] = ACTIONS(252), - [anon_sym_DASH] = ACTIONS(252), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_CARET] = ACTIONS(235), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(235), - [anon_sym_not] = ACTIONS(235), - [anon_sym_AT] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(252), - [anon_sym_BSLASH_BSLASH] = ACTIONS(252), - [anon_sym_when] = ACTIONS(252), - [anon_sym_COLON_COLON] = ACTIONS(252), - [anon_sym_EQ_GT] = ACTIONS(252), - [anon_sym_EQ] = ACTIONS(252), - [anon_sym_PIPE_PIPE] = ACTIONS(252), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(252), - [anon_sym_or] = ACTIONS(252), - [anon_sym_AMP_AMP] = ACTIONS(252), - [anon_sym_AMP_AMP_AMP] = ACTIONS(252), - [anon_sym_and] = ACTIONS(252), - [anon_sym_EQ_EQ] = ACTIONS(252), - [anon_sym_BANG_EQ] = ACTIONS(252), - [anon_sym_EQ_TILDE] = ACTIONS(252), - [anon_sym_EQ_EQ_EQ] = ACTIONS(252), - [anon_sym_BANG_EQ_EQ] = ACTIONS(252), - [anon_sym_LT_EQ] = ACTIONS(252), - [anon_sym_GT_EQ] = ACTIONS(252), - [anon_sym_PIPE_GT] = ACTIONS(252), - [anon_sym_LT_LT_LT] = ACTIONS(252), - [anon_sym_GT_GT_GT] = ACTIONS(252), - [anon_sym_LT_LT_TILDE] = ACTIONS(252), - [anon_sym_TILDE_GT_GT] = ACTIONS(252), - [anon_sym_LT_TILDE] = ACTIONS(252), - [anon_sym_TILDE_GT] = ACTIONS(252), - [anon_sym_LT_TILDE_GT] = ACTIONS(252), - [anon_sym_LT_PIPE_GT] = ACTIONS(252), - [anon_sym_in] = ACTIONS(252), - [anon_sym_CARET_CARET_CARET] = ACTIONS(252), - [anon_sym_SLASH_SLASH] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(252), - [anon_sym_DASH_DASH] = ACTIONS(252), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(252), - [anon_sym_DASH_DASH_DASH] = ACTIONS(252), - [anon_sym_DOT_DOT] = ACTIONS(252), - [anon_sym_LT_GT] = ACTIONS(252), - [anon_sym_STAR] = ACTIONS(252), - [anon_sym_STAR_STAR] = ACTIONS(252), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_COMMA] = ACTIONS(191), + [sym_keyword] = ACTIONS(221), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(191), + [anon_sym_BSLASH_BSLASH] = ACTIONS(191), + [anon_sym_when] = ACTIONS(191), + [anon_sym_COLON_COLON] = ACTIONS(191), + [anon_sym_EQ_GT] = ACTIONS(191), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_PIPE_PIPE] = ACTIONS(191), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(191), + [anon_sym_or] = ACTIONS(191), + [anon_sym_AMP_AMP] = ACTIONS(191), + [anon_sym_AMP_AMP_AMP] = ACTIONS(191), + [anon_sym_and] = ACTIONS(191), + [anon_sym_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ] = ACTIONS(191), + [anon_sym_EQ_TILDE] = ACTIONS(191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(191), + [anon_sym_LT_EQ] = ACTIONS(191), + [anon_sym_GT_EQ] = ACTIONS(191), + [anon_sym_PIPE_GT] = ACTIONS(191), + [anon_sym_LT_LT_LT] = ACTIONS(191), + [anon_sym_GT_GT_GT] = ACTIONS(191), + [anon_sym_LT_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT_GT] = ACTIONS(191), + [anon_sym_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_PIPE_GT] = ACTIONS(191), + [anon_sym_in] = ACTIONS(191), + [anon_sym_CARET_CARET_CARET] = ACTIONS(191), + [anon_sym_SLASH_SLASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH_DASH] = ACTIONS(191), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_LT_GT] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_STAR_STAR] = ACTIONS(191), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(191), + [anon_sym_DOT] = ACTIONS(191), + [anon_sym_after] = ACTIONS(191), + [anon_sym_catch] = ACTIONS(191), + [anon_sym_do] = ACTIONS(191), + [anon_sym_else] = ACTIONS(191), + [anon_sym_end] = ACTIONS(191), + [anon_sym_fn] = ACTIONS(235), + [anon_sym_rescue] = ACTIONS(191), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_LBRACK2] = ACTIONS(189), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(189), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(189), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [18] = { + [sym__expression] = STATE(1256), + [sym_block] = STATE(1256), + [sym__identifier] = STATE(18), + [sym_identifier] = STATE(18), + [sym_special_identifier] = STATE(18), + [sym_boolean] = STATE(1256), + [sym_nil] = STATE(1256), + [sym__atom] = STATE(1256), + [sym_quoted_atom] = STATE(1256), + [sym__quoted_i_double] = STATE(1096), + [sym__quoted_i_single] = STATE(1095), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(1256), + [sym_charlist] = STATE(1256), + [sym_sigil] = STATE(1256), + [sym_keywords] = STATE(1269), + [sym_pair] = STATE(1196), + [sym__keyword] = STATE(826), + [sym_quoted_keyword] = STATE(826), + [sym_list] = STATE(1256), + [sym_tuple] = STATE(1256), + [sym_bitstring] = STATE(1256), + [sym_map] = STATE(1256), + [sym_unary_operator] = STATE(1256), + [sym_binary_operator] = STATE(1256), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(1256), + [sym_call] = STATE(1256), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym__call_arguments_with_parentheses_immediate] = STATE(1088), + [sym__call_arguments_without_parentheses] = STATE(1123), + [sym_do_block] = STATE(1168), + [sym_access_call] = STATE(1256), + [sym_anonymous_function] = STATE(1256), + [aux_sym__terminator_token1] = ACTIONS(245), + [anon_sym_SEMI] = ACTIONS(247), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(201), + [sym_integer] = ACTIONS(201), + [sym_float] = ACTIONS(201), + [sym_char] = ACTIONS(201), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(201), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_COMMA] = ACTIONS(247), + [sym_keyword] = ACTIONS(221), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(302), + [anon_sym_DASH] = ACTIONS(302), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_BSLASH_BSLASH] = ACTIONS(271), + [anon_sym_when] = ACTIONS(271), + [anon_sym_COLON_COLON] = ACTIONS(271), + [anon_sym_EQ_GT] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_PIPE_PIPE] = ACTIONS(271), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(271), + [anon_sym_AMP_AMP_AMP] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_EQ_TILDE] = ACTIONS(271), + [anon_sym_EQ_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ_EQ] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_PIPE_GT] = ACTIONS(271), + [anon_sym_LT_LT_LT] = ACTIONS(271), + [anon_sym_GT_GT_GT] = ACTIONS(271), + [anon_sym_LT_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT_GT] = ACTIONS(271), + [anon_sym_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_PIPE_GT] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_CARET_CARET_CARET] = ACTIONS(247), + [anon_sym_SLASH_SLASH] = ACTIONS(247), + [anon_sym_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH] = ACTIONS(271), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH_DASH] = ACTIONS(271), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(271), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_after] = ACTIONS(247), + [anon_sym_catch] = ACTIONS(247), + [anon_sym_do] = ACTIONS(247), + [anon_sym_else] = ACTIONS(247), + [anon_sym_end] = ACTIONS(247), + [anon_sym_fn] = ACTIONS(235), + [anon_sym_rescue] = ACTIONS(247), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_LBRACK2] = ACTIONS(245), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(245), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(297), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [19] = { + [sym__expression] = STATE(1513), + [sym_block] = STATE(1513), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1513), + [sym_nil] = STATE(1513), + [sym__atom] = STATE(1513), + [sym_quoted_atom] = STATE(1513), + [sym__quoted_i_double] = STATE(1276), + [sym__quoted_i_single] = STATE(1277), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(1513), + [sym_charlist] = STATE(1513), + [sym_sigil] = STATE(1513), + [sym_keywords] = STATE(1451), + [sym_pair] = STATE(1332), + [sym__keyword] = STATE(887), + [sym_quoted_keyword] = STATE(887), + [sym_list] = STATE(1513), + [sym_tuple] = STATE(1513), + [sym_bitstring] = STATE(1513), + [sym_map] = STATE(1513), + [sym_unary_operator] = STATE(1513), + [sym_binary_operator] = STATE(1513), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(1513), + [sym_call] = STATE(1513), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym__call_arguments_with_parentheses_immediate] = STATE(1118), + [sym__call_arguments_without_parentheses] = STATE(1281), + [sym_do_block] = STATE(1817), + [sym_access_call] = STATE(1513), + [sym_anonymous_function] = STATE(1513), + [aux_sym__terminator_token1] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(253), + [sym_integer] = ACTIONS(253), + [sym_float] = ACTIONS(253), + [sym_char] = ACTIONS(253), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(253), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_COMMA] = ACTIONS(191), + [sym_keyword] = ACTIONS(276), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(191), + [anon_sym_BSLASH_BSLASH] = ACTIONS(191), + [anon_sym_when] = ACTIONS(191), + [anon_sym_COLON_COLON] = ACTIONS(191), + [anon_sym_EQ_GT] = ACTIONS(191), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_PIPE_PIPE] = ACTIONS(191), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(191), + [anon_sym_or] = ACTIONS(191), + [anon_sym_AMP_AMP] = ACTIONS(191), + [anon_sym_AMP_AMP_AMP] = ACTIONS(191), + [anon_sym_and] = ACTIONS(191), + [anon_sym_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ] = ACTIONS(191), + [anon_sym_EQ_TILDE] = ACTIONS(191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(191), + [anon_sym_LT_EQ] = ACTIONS(191), + [anon_sym_GT_EQ] = ACTIONS(191), + [anon_sym_PIPE_GT] = ACTIONS(191), + [anon_sym_LT_LT_LT] = ACTIONS(191), + [anon_sym_GT_GT_GT] = ACTIONS(191), + [anon_sym_LT_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT_GT] = ACTIONS(191), + [anon_sym_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_PIPE_GT] = ACTIONS(191), + [anon_sym_in] = ACTIONS(191), + [anon_sym_CARET_CARET_CARET] = ACTIONS(191), + [anon_sym_SLASH_SLASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH_DASH] = ACTIONS(191), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_LT_GT] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_STAR_STAR] = ACTIONS(191), [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(252), - [anon_sym_after] = ACTIONS(252), - [anon_sym_catch] = ACTIONS(252), + [anon_sym_DOT] = ACTIONS(191), + [anon_sym_after] = ACTIONS(191), + [anon_sym_catch] = ACTIONS(191), [anon_sym_do] = ACTIONS(305), - [anon_sym_else] = ACTIONS(252), - [anon_sym_end] = ACTIONS(252), - [anon_sym_fn] = ACTIONS(239), - [anon_sym_rescue] = ACTIONS(252), - [anon_sym_LPAREN2] = ACTIONS(241), - [anon_sym_LBRACK2] = ACTIONS(250), + [anon_sym_else] = ACTIONS(191), + [anon_sym_end] = ACTIONS(191), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_rescue] = ACTIONS(191), + [anon_sym_LPAREN2] = ACTIONS(293), + [anon_sym_LBRACK2] = ACTIONS(189), [sym_comment] = ACTIONS(5), [sym__newline_before_do] = ACTIONS(307), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(243), - [sym__not_in] = ACTIONS(250), - [sym__quoted_atom_start] = ACTIONS(248), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(189), + [sym__quoted_atom_start] = ACTIONS(300), }, [20] = { - [sym__expression] = STATE(1066), - [sym_block] = STATE(1066), + [sym__expression] = STATE(1073), + [sym_block] = STATE(1073), [sym__identifier] = STATE(25), [sym_identifier] = STATE(25), [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1066), - [sym_nil] = STATE(1066), - [sym__atom] = STATE(1066), - [sym_quoted_atom] = STATE(1066), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1066), - [sym_charlist] = STATE(1066), - [sym_sigil] = STATE(1066), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1066), - [sym_tuple] = STATE(1066), - [sym_bitstring] = STATE(1066), - [sym_map] = STATE(1066), - [sym_unary_operator] = STATE(1066), - [sym_binary_operator] = STATE(1066), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1066), - [sym_call] = STATE(1066), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_after_block] = STATE(3696), - [sym_rescue_block] = STATE(3696), - [sym_catch_block] = STATE(3696), - [sym_else_block] = STATE(3696), - [sym_access_call] = STATE(1066), - [sym_stab_clause] = STATE(3599), - [sym__stab_clause_left] = STATE(4978), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1066), - [aux_sym_do_block_repeat1] = STATE(3696), + [sym_boolean] = STATE(1073), + [sym_nil] = STATE(1073), + [sym__atom] = STATE(1073), + [sym_quoted_atom] = STATE(1073), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1073), + [sym_charlist] = STATE(1073), + [sym_sigil] = STATE(1073), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1073), + [sym_tuple] = STATE(1073), + [sym_bitstring] = STATE(1073), + [sym_map] = STATE(1073), + [sym_unary_operator] = STATE(1073), + [sym_binary_operator] = STATE(1073), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1073), + [sym_call] = STATE(1073), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_after_block] = STATE(4281), + [sym_rescue_block] = STATE(4281), + [sym_catch_block] = STATE(4281), + [sym_else_block] = STATE(4281), + [sym_access_call] = STATE(1073), + [sym_stab_clause] = STATE(4254), + [sym__stab_clause_left] = STATE(5656), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1073), + [aux_sym_do_block_repeat1] = STATE(4281), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(65), [aux_sym_identifier_token1] = ACTIONS(67), @@ -26213,59 +26851,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [21] = { - [sym__expression] = STATE(1060), - [sym_block] = STATE(1060), + [sym__expression] = STATE(1513), + [sym_block] = STATE(1513), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1513), + [sym_nil] = STATE(1513), + [sym__atom] = STATE(1513), + [sym_quoted_atom] = STATE(1513), + [sym__quoted_i_double] = STATE(1276), + [sym__quoted_i_single] = STATE(1277), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(1513), + [sym_charlist] = STATE(1513), + [sym_sigil] = STATE(1513), + [sym_keywords] = STATE(1451), + [sym_pair] = STATE(1332), + [sym__keyword] = STATE(887), + [sym_quoted_keyword] = STATE(887), + [sym_list] = STATE(1513), + [sym_tuple] = STATE(1513), + [sym_bitstring] = STATE(1513), + [sym_map] = STATE(1513), + [sym_unary_operator] = STATE(1513), + [sym_binary_operator] = STATE(1513), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(1513), + [sym_call] = STATE(1513), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym__call_arguments_with_parentheses_immediate] = STATE(1126), + [sym__call_arguments_without_parentheses] = STATE(1294), + [sym_do_block] = STATE(1812), + [sym_access_call] = STATE(1513), + [sym_anonymous_function] = STATE(1513), + [aux_sym__terminator_token1] = ACTIONS(245), + [anon_sym_SEMI] = ACTIONS(247), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(253), + [sym_integer] = ACTIONS(253), + [sym_float] = ACTIONS(253), + [sym_char] = ACTIONS(253), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(253), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_COMMA] = ACTIONS(247), + [sym_keyword] = ACTIONS(276), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_BSLASH_BSLASH] = ACTIONS(271), + [anon_sym_when] = ACTIONS(271), + [anon_sym_COLON_COLON] = ACTIONS(271), + [anon_sym_EQ_GT] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_PIPE_PIPE] = ACTIONS(271), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(271), + [anon_sym_AMP_AMP_AMP] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_EQ_TILDE] = ACTIONS(271), + [anon_sym_EQ_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ_EQ] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_PIPE_GT] = ACTIONS(271), + [anon_sym_LT_LT_LT] = ACTIONS(271), + [anon_sym_GT_GT_GT] = ACTIONS(271), + [anon_sym_LT_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT_GT] = ACTIONS(271), + [anon_sym_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_PIPE_GT] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_CARET_CARET_CARET] = ACTIONS(247), + [anon_sym_SLASH_SLASH] = ACTIONS(247), + [anon_sym_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH] = ACTIONS(271), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH_DASH] = ACTIONS(271), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_after] = ACTIONS(247), + [anon_sym_catch] = ACTIONS(247), + [anon_sym_do] = ACTIONS(305), + [anon_sym_else] = ACTIONS(247), + [anon_sym_end] = ACTIONS(247), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_rescue] = ACTIONS(247), + [anon_sym_LPAREN2] = ACTIONS(293), + [anon_sym_LBRACK2] = ACTIONS(245), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(297), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [22] = { + [sym__expression] = STATE(1062), + [sym_block] = STATE(1062), [sym__identifier] = STATE(25), [sym_identifier] = STATE(25), [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1060), - [sym_nil] = STATE(1060), - [sym__atom] = STATE(1060), - [sym_quoted_atom] = STATE(1060), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1060), - [sym_charlist] = STATE(1060), - [sym_sigil] = STATE(1060), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1060), - [sym_tuple] = STATE(1060), - [sym_bitstring] = STATE(1060), - [sym_map] = STATE(1060), - [sym_unary_operator] = STATE(1060), - [sym_binary_operator] = STATE(1060), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1060), - [sym_call] = STATE(1060), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_after_block] = STATE(3717), - [sym_rescue_block] = STATE(3717), - [sym_catch_block] = STATE(3717), - [sym_else_block] = STATE(3717), - [sym_access_call] = STATE(1060), - [sym_stab_clause] = STATE(3626), - [sym__stab_clause_left] = STATE(4978), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1060), - [aux_sym_do_block_repeat1] = STATE(3717), + [sym_boolean] = STATE(1062), + [sym_nil] = STATE(1062), + [sym__atom] = STATE(1062), + [sym_quoted_atom] = STATE(1062), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1062), + [sym_charlist] = STATE(1062), + [sym_sigil] = STATE(1062), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1062), + [sym_tuple] = STATE(1062), + [sym_bitstring] = STATE(1062), + [sym_map] = STATE(1062), + [sym_unary_operator] = STATE(1062), + [sym_binary_operator] = STATE(1062), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1062), + [sym_call] = STATE(1062), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_after_block] = STATE(4319), + [sym_rescue_block] = STATE(4319), + [sym_catch_block] = STATE(4319), + [sym_else_block] = STATE(4319), + [sym_access_call] = STATE(1062), + [sym_stab_clause] = STATE(4204), + [sym__stab_clause_left] = STATE(5656), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1062), + [aux_sym_do_block_repeat1] = STATE(4319), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(65), [aux_sym_identifier_token1] = ACTIONS(67), @@ -26358,206 +27142,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(121), }, - [22] = { - [sym__expression] = STATE(1313), - [sym_block] = STATE(1313), - [sym__identifier] = STATE(14), - [sym_identifier] = STATE(14), - [sym_special_identifier] = STATE(14), - [sym_boolean] = STATE(1313), - [sym_nil] = STATE(1313), - [sym__atom] = STATE(1313), - [sym_quoted_atom] = STATE(1313), - [sym__quoted_i_double] = STATE(1146), - [sym__quoted_i_single] = STATE(1145), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(1313), - [sym_charlist] = STATE(1313), - [sym_sigil] = STATE(1313), - [sym_keywords] = STATE(1363), - [sym_pair] = STATE(1331), - [sym__keyword] = STATE(836), - [sym_quoted_keyword] = STATE(836), - [sym_list] = STATE(1313), - [sym_tuple] = STATE(1313), - [sym_bitstring] = STATE(1313), - [sym_map] = STATE(1313), - [sym_unary_operator] = STATE(1313), - [sym_binary_operator] = STATE(1313), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(1313), - [sym_call] = STATE(1313), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym__call_arguments_with_parentheses_immediate] = STATE(1116), - [sym__call_arguments_without_parentheses] = STATE(1275), - [sym_do_block] = STATE(1628), - [sym_access_call] = STATE(1313), - [sym_anonymous_function] = STATE(1313), - [aux_sym__terminator_token1] = ACTIONS(189), - [anon_sym_SEMI] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(197), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), - [sym_alias] = ACTIONS(201), - [sym_integer] = ACTIONS(201), - [sym_float] = ACTIONS(201), - [sym_char] = ACTIONS(201), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(219), - [anon_sym_GT] = ACTIONS(219), - [anon_sym_PIPE] = ACTIONS(219), - [anon_sym_SLASH] = ACTIONS(219), - [anon_sym_TILDE] = ACTIONS(222), - [anon_sym_COMMA] = ACTIONS(191), - [sym_keyword] = ACTIONS(224), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(230), - [anon_sym_PLUS] = ACTIONS(232), - [anon_sym_DASH] = ACTIONS(232), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_CARET] = ACTIONS(235), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(235), - [anon_sym_not] = ACTIONS(235), - [anon_sym_AT] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(219), - [anon_sym_BSLASH_BSLASH] = ACTIONS(219), - [anon_sym_when] = ACTIONS(219), - [anon_sym_COLON_COLON] = ACTIONS(219), - [anon_sym_EQ_GT] = ACTIONS(191), - [anon_sym_EQ] = ACTIONS(219), - [anon_sym_PIPE_PIPE] = ACTIONS(219), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(219), - [anon_sym_or] = ACTIONS(219), - [anon_sym_AMP_AMP] = ACTIONS(219), - [anon_sym_AMP_AMP_AMP] = ACTIONS(219), - [anon_sym_and] = ACTIONS(219), - [anon_sym_EQ_EQ] = ACTIONS(219), - [anon_sym_BANG_EQ] = ACTIONS(219), - [anon_sym_EQ_TILDE] = ACTIONS(219), - [anon_sym_EQ_EQ_EQ] = ACTIONS(219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(219), - [anon_sym_LT_EQ] = ACTIONS(219), - [anon_sym_GT_EQ] = ACTIONS(219), - [anon_sym_PIPE_GT] = ACTIONS(219), - [anon_sym_LT_LT_LT] = ACTIONS(219), - [anon_sym_GT_GT_GT] = ACTIONS(219), - [anon_sym_LT_LT_TILDE] = ACTIONS(219), - [anon_sym_TILDE_GT_GT] = ACTIONS(219), - [anon_sym_LT_TILDE] = ACTIONS(219), - [anon_sym_TILDE_GT] = ACTIONS(219), - [anon_sym_LT_TILDE_GT] = ACTIONS(219), - [anon_sym_LT_PIPE_GT] = ACTIONS(219), - [anon_sym_in] = ACTIONS(219), - [anon_sym_CARET_CARET_CARET] = ACTIONS(191), - [anon_sym_SLASH_SLASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(219), - [anon_sym_DASH_DASH] = ACTIONS(219), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(219), - [anon_sym_DASH_DASH_DASH] = ACTIONS(219), - [anon_sym_DOT_DOT] = ACTIONS(219), - [anon_sym_LT_GT] = ACTIONS(219), - [anon_sym_STAR] = ACTIONS(219), - [anon_sym_STAR_STAR] = ACTIONS(219), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(219), - [anon_sym_after] = ACTIONS(191), - [anon_sym_catch] = ACTIONS(191), - [anon_sym_do] = ACTIONS(305), - [anon_sym_else] = ACTIONS(191), - [anon_sym_end] = ACTIONS(191), - [anon_sym_fn] = ACTIONS(239), - [anon_sym_rescue] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(241), - [anon_sym_LBRACK2] = ACTIONS(189), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(243), - [sym__not_in] = ACTIONS(245), - [sym__quoted_atom_start] = ACTIONS(248), - }, [23] = { - [sym__expression] = STATE(1059), - [sym_block] = STATE(1059), + [sym__expression] = STATE(1066), + [sym_block] = STATE(1066), [sym__identifier] = STATE(25), [sym_identifier] = STATE(25), [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1059), - [sym_nil] = STATE(1059), - [sym__atom] = STATE(1059), - [sym_quoted_atom] = STATE(1059), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1059), - [sym_charlist] = STATE(1059), - [sym_sigil] = STATE(1059), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1059), - [sym_tuple] = STATE(1059), - [sym_bitstring] = STATE(1059), - [sym_map] = STATE(1059), - [sym_unary_operator] = STATE(1059), - [sym_binary_operator] = STATE(1059), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1059), - [sym_call] = STATE(1059), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_after_block] = STATE(3677), - [sym_rescue_block] = STATE(3677), - [sym_catch_block] = STATE(3677), - [sym_else_block] = STATE(3677), - [sym_access_call] = STATE(1059), - [sym_stab_clause] = STATE(3637), - [sym__stab_clause_left] = STATE(4978), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1059), - [aux_sym_do_block_repeat1] = STATE(3677), + [sym_boolean] = STATE(1066), + [sym_nil] = STATE(1066), + [sym__atom] = STATE(1066), + [sym_quoted_atom] = STATE(1066), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1066), + [sym_charlist] = STATE(1066), + [sym_sigil] = STATE(1066), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1066), + [sym_tuple] = STATE(1066), + [sym_bitstring] = STATE(1066), + [sym_map] = STATE(1066), + [sym_unary_operator] = STATE(1066), + [sym_binary_operator] = STATE(1066), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1066), + [sym_call] = STATE(1066), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_after_block] = STATE(4271), + [sym_rescue_block] = STATE(4271), + [sym_catch_block] = STATE(4271), + [sym_else_block] = STATE(4271), + [sym_access_call] = STATE(1066), + [sym_stab_clause] = STATE(4247), + [sym__stab_clause_left] = STATE(5656), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1066), + [aux_sym_do_block_repeat1] = STATE(4271), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(65), [aux_sym_identifier_token1] = ACTIONS(67), @@ -26651,59 +27289,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [24] = { - [sym__expression] = STATE(1069), - [sym_block] = STATE(1069), + [sym__expression] = STATE(1072), + [sym_block] = STATE(1072), [sym__identifier] = STATE(25), [sym_identifier] = STATE(25), [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1069), - [sym_nil] = STATE(1069), - [sym__atom] = STATE(1069), - [sym_quoted_atom] = STATE(1069), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1069), - [sym_charlist] = STATE(1069), - [sym_sigil] = STATE(1069), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1069), - [sym_tuple] = STATE(1069), - [sym_bitstring] = STATE(1069), - [sym_map] = STATE(1069), - [sym_unary_operator] = STATE(1069), - [sym_binary_operator] = STATE(1069), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1069), - [sym_call] = STATE(1069), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_after_block] = STATE(3698), - [sym_rescue_block] = STATE(3698), - [sym_catch_block] = STATE(3698), - [sym_else_block] = STATE(3698), - [sym_access_call] = STATE(1069), - [sym_stab_clause] = STATE(3605), - [sym__stab_clause_left] = STATE(4978), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1069), - [aux_sym_do_block_repeat1] = STATE(3698), + [sym_boolean] = STATE(1072), + [sym_nil] = STATE(1072), + [sym__atom] = STATE(1072), + [sym_quoted_atom] = STATE(1072), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1072), + [sym_charlist] = STATE(1072), + [sym_sigil] = STATE(1072), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1072), + [sym_tuple] = STATE(1072), + [sym_bitstring] = STATE(1072), + [sym_map] = STATE(1072), + [sym_unary_operator] = STATE(1072), + [sym_binary_operator] = STATE(1072), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1072), + [sym_call] = STATE(1072), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_after_block] = STATE(4296), + [sym_rescue_block] = STATE(4296), + [sym_catch_block] = STATE(4296), + [sym_else_block] = STATE(4296), + [sym_access_call] = STATE(1072), + [sym_stab_clause] = STATE(4243), + [sym__stab_clause_left] = STATE(5656), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1072), + [aux_sym_do_block_repeat1] = STATE(4296), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(65), [aux_sym_identifier_token1] = ACTIONS(67), @@ -26797,205 +27435,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [25] = { - [sym__expression] = STATE(1209), - [sym_block] = STATE(1209), + [sym__expression] = STATE(1256), + [sym_block] = STATE(1256), [sym__identifier] = STATE(18), [sym_identifier] = STATE(18), [sym_special_identifier] = STATE(18), - [sym_boolean] = STATE(1209), - [sym_nil] = STATE(1209), - [sym__atom] = STATE(1209), - [sym_quoted_atom] = STATE(1209), - [sym__quoted_i_double] = STATE(1114), - [sym__quoted_i_single] = STATE(1100), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(1209), - [sym_charlist] = STATE(1209), - [sym_sigil] = STATE(1209), - [sym_keywords] = STATE(1147), - [sym_pair] = STATE(1265), - [sym__keyword] = STATE(794), - [sym_quoted_keyword] = STATE(794), - [sym_list] = STATE(1209), - [sym_tuple] = STATE(1209), - [sym_bitstring] = STATE(1209), - [sym_map] = STATE(1209), - [sym_unary_operator] = STATE(1209), - [sym_binary_operator] = STATE(1209), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(1209), - [sym_call] = STATE(1209), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym__call_arguments_with_parentheses_immediate] = STATE(1088), - [sym__call_arguments_without_parentheses] = STATE(1095), - [sym_do_block] = STATE(1490), - [sym_access_call] = STATE(1209), - [sym_anonymous_function] = STATE(1209), - [aux_sym__terminator_token1] = ACTIONS(189), - [anon_sym_SEMI] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(254), + [sym_boolean] = STATE(1256), + [sym_nil] = STATE(1256), + [sym__atom] = STATE(1256), + [sym_quoted_atom] = STATE(1256), + [sym__quoted_i_double] = STATE(1096), + [sym__quoted_i_single] = STATE(1095), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(1256), + [sym_charlist] = STATE(1256), + [sym_sigil] = STATE(1256), + [sym_keywords] = STATE(1269), + [sym_pair] = STATE(1196), + [sym__keyword] = STATE(826), + [sym_quoted_keyword] = STATE(826), + [sym_list] = STATE(1256), + [sym_tuple] = STATE(1256), + [sym_bitstring] = STATE(1256), + [sym_map] = STATE(1256), + [sym_unary_operator] = STATE(1256), + [sym_binary_operator] = STATE(1256), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(1256), + [sym_call] = STATE(1256), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym__call_arguments_with_parentheses_immediate] = STATE(1085), + [sym__call_arguments_without_parentheses] = STATE(1098), + [sym_do_block] = STATE(1647), + [sym_access_call] = STATE(1256), + [sym_anonymous_function] = STATE(1256), + [aux_sym__terminator_token1] = ACTIONS(245), + [anon_sym_SEMI] = ACTIONS(247), + [anon_sym_LPAREN] = ACTIONS(193), [aux_sym_identifier_token1] = ACTIONS(195), [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(256), + [sym_unused_identifier] = ACTIONS(197), [anon_sym___MODULE__] = ACTIONS(199), [anon_sym___DIR__] = ACTIONS(199), [anon_sym___ENV__] = ACTIONS(199), [anon_sym___CALLER__] = ACTIONS(199), [anon_sym___STACKTRACE__] = ACTIONS(199), - [sym_alias] = ACTIONS(258), - [sym_integer] = ACTIONS(258), - [sym_float] = ACTIONS(258), - [sym_char] = ACTIONS(258), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(258), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(219), - [anon_sym_GT] = ACTIONS(219), - [anon_sym_PIPE] = ACTIONS(219), - [anon_sym_SLASH] = ACTIONS(219), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_COMMA] = ACTIONS(191), - [sym_keyword] = ACTIONS(278), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), + [sym_alias] = ACTIONS(201), + [sym_integer] = ACTIONS(201), + [sym_float] = ACTIONS(201), + [sym_char] = ACTIONS(201), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(201), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_COMMA] = ACTIONS(247), + [sym_keyword] = ACTIONS(221), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), [anon_sym_PLUS] = ACTIONS(302), [anon_sym_DASH] = ACTIONS(302), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(286), - [anon_sym_not] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), - [anon_sym_LT_DASH] = ACTIONS(219), - [anon_sym_BSLASH_BSLASH] = ACTIONS(219), - [anon_sym_when] = ACTIONS(219), - [anon_sym_COLON_COLON] = ACTIONS(219), - [anon_sym_EQ_GT] = ACTIONS(191), - [anon_sym_EQ] = ACTIONS(219), - [anon_sym_PIPE_PIPE] = ACTIONS(219), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(219), - [anon_sym_or] = ACTIONS(219), - [anon_sym_AMP_AMP] = ACTIONS(219), - [anon_sym_AMP_AMP_AMP] = ACTIONS(219), - [anon_sym_and] = ACTIONS(219), - [anon_sym_EQ_EQ] = ACTIONS(219), - [anon_sym_BANG_EQ] = ACTIONS(219), - [anon_sym_EQ_TILDE] = ACTIONS(219), - [anon_sym_EQ_EQ_EQ] = ACTIONS(219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(219), - [anon_sym_LT_EQ] = ACTIONS(219), - [anon_sym_GT_EQ] = ACTIONS(219), - [anon_sym_PIPE_GT] = ACTIONS(219), - [anon_sym_LT_LT_LT] = ACTIONS(219), - [anon_sym_GT_GT_GT] = ACTIONS(219), - [anon_sym_LT_LT_TILDE] = ACTIONS(219), - [anon_sym_TILDE_GT_GT] = ACTIONS(219), - [anon_sym_LT_TILDE] = ACTIONS(219), - [anon_sym_TILDE_GT] = ACTIONS(219), - [anon_sym_LT_TILDE_GT] = ACTIONS(219), - [anon_sym_LT_PIPE_GT] = ACTIONS(219), - [anon_sym_in] = ACTIONS(219), - [anon_sym_CARET_CARET_CARET] = ACTIONS(191), - [anon_sym_SLASH_SLASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(219), - [anon_sym_DASH_DASH] = ACTIONS(219), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(219), - [anon_sym_DASH_DASH_DASH] = ACTIONS(219), - [anon_sym_DOT_DOT] = ACTIONS(219), - [anon_sym_LT_GT] = ACTIONS(219), - [anon_sym_STAR] = ACTIONS(219), - [anon_sym_STAR_STAR] = ACTIONS(219), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_BSLASH_BSLASH] = ACTIONS(271), + [anon_sym_when] = ACTIONS(271), + [anon_sym_COLON_COLON] = ACTIONS(271), + [anon_sym_EQ_GT] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_PIPE_PIPE] = ACTIONS(271), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(271), + [anon_sym_AMP_AMP_AMP] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_EQ_TILDE] = ACTIONS(271), + [anon_sym_EQ_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ_EQ] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_PIPE_GT] = ACTIONS(271), + [anon_sym_LT_LT_LT] = ACTIONS(271), + [anon_sym_GT_GT_GT] = ACTIONS(271), + [anon_sym_LT_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT_GT] = ACTIONS(271), + [anon_sym_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_PIPE_GT] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_CARET_CARET_CARET] = ACTIONS(247), + [anon_sym_SLASH_SLASH] = ACTIONS(247), + [anon_sym_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH] = ACTIONS(271), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH_DASH] = ACTIONS(271), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(219), - [anon_sym_DOT] = ACTIONS(219), - [anon_sym_after] = ACTIONS(191), - [anon_sym_catch] = ACTIONS(191), - [anon_sym_do] = ACTIONS(298), - [anon_sym_else] = ACTIONS(191), - [anon_sym_end] = ACTIONS(191), - [anon_sym_fn] = ACTIONS(290), - [anon_sym_rescue] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(292), - [anon_sym_LBRACK2] = ACTIONS(189), + [anon_sym_DASH_GT] = ACTIONS(271), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_after] = ACTIONS(247), + [anon_sym_catch] = ACTIONS(247), + [anon_sym_do] = ACTIONS(233), + [anon_sym_else] = ACTIONS(247), + [anon_sym_end] = ACTIONS(247), + [anon_sym_fn] = ACTIONS(235), + [anon_sym_rescue] = ACTIONS(247), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_LBRACK2] = ACTIONS(245), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(294), - [sym__not_in] = ACTIONS(245), - [sym__quoted_atom_start] = ACTIONS(296), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(297), + [sym__quoted_atom_start] = ACTIONS(243), }, [26] = { - [sym__expression] = STATE(1078), - [sym_block] = STATE(1078), + [sym__expression] = STATE(1065), + [sym_block] = STATE(1065), [sym__identifier] = STATE(25), [sym_identifier] = STATE(25), [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1078), - [sym_nil] = STATE(1078), - [sym__atom] = STATE(1078), - [sym_quoted_atom] = STATE(1078), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1078), - [sym_charlist] = STATE(1078), - [sym_sigil] = STATE(1078), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1078), - [sym_tuple] = STATE(1078), - [sym_bitstring] = STATE(1078), - [sym_map] = STATE(1078), - [sym_unary_operator] = STATE(1078), - [sym_binary_operator] = STATE(1078), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1078), - [sym_call] = STATE(1078), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_after_block] = STATE(3670), - [sym_rescue_block] = STATE(3670), - [sym_catch_block] = STATE(3670), - [sym_else_block] = STATE(3670), - [sym_access_call] = STATE(1078), - [sym_stab_clause] = STATE(3651), - [sym__stab_clause_left] = STATE(4978), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1078), - [aux_sym_do_block_repeat1] = STATE(3670), + [sym_boolean] = STATE(1065), + [sym_nil] = STATE(1065), + [sym__atom] = STATE(1065), + [sym_quoted_atom] = STATE(1065), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1065), + [sym_charlist] = STATE(1065), + [sym_sigil] = STATE(1065), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1065), + [sym_tuple] = STATE(1065), + [sym_bitstring] = STATE(1065), + [sym_map] = STATE(1065), + [sym_unary_operator] = STATE(1065), + [sym_binary_operator] = STATE(1065), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1065), + [sym_call] = STATE(1065), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_after_block] = STATE(4302), + [sym_rescue_block] = STATE(4302), + [sym_catch_block] = STATE(4302), + [sym_else_block] = STATE(4302), + [sym_access_call] = STATE(1065), + [sym_stab_clause] = STATE(4203), + [sym__stab_clause_left] = STATE(5656), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1065), + [aux_sym_do_block_repeat1] = STATE(4302), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(65), [aux_sym_identifier_token1] = ACTIONS(67), @@ -27089,59 +27727,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [27] = { - [sym__expression] = STATE(1064), - [sym_block] = STATE(1064), + [sym__expression] = STATE(1076), + [sym_block] = STATE(1076), [sym__identifier] = STATE(25), [sym_identifier] = STATE(25), [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1064), - [sym_nil] = STATE(1064), - [sym__atom] = STATE(1064), - [sym_quoted_atom] = STATE(1064), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1064), - [sym_charlist] = STATE(1064), - [sym_sigil] = STATE(1064), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1064), - [sym_tuple] = STATE(1064), - [sym_bitstring] = STATE(1064), - [sym_map] = STATE(1064), - [sym_unary_operator] = STATE(1064), - [sym_binary_operator] = STATE(1064), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1064), - [sym_call] = STATE(1064), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_after_block] = STATE(3694), - [sym_rescue_block] = STATE(3694), - [sym_catch_block] = STATE(3694), - [sym_else_block] = STATE(3694), - [sym_access_call] = STATE(1064), - [sym_stab_clause] = STATE(3603), - [sym__stab_clause_left] = STATE(4978), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1064), - [aux_sym_do_block_repeat1] = STATE(3694), + [sym_boolean] = STATE(1076), + [sym_nil] = STATE(1076), + [sym__atom] = STATE(1076), + [sym_quoted_atom] = STATE(1076), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1076), + [sym_charlist] = STATE(1076), + [sym_sigil] = STATE(1076), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_bitstring] = STATE(1076), + [sym_map] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_binary_operator] = STATE(1076), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1076), + [sym_call] = STATE(1076), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_after_block] = STATE(4328), + [sym_rescue_block] = STATE(4328), + [sym_catch_block] = STATE(4328), + [sym_else_block] = STATE(4328), + [sym_access_call] = STATE(1076), + [sym_stab_clause] = STATE(4232), + [sym__stab_clause_left] = STATE(5656), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1076), + [aux_sym_do_block_repeat1] = STATE(4328), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(65), [aux_sym_identifier_token1] = ACTIONS(67), @@ -27235,59 +27873,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [28] = { - [sym__expression] = STATE(1061), - [sym_block] = STATE(1061), + [sym__expression] = STATE(1070), + [sym_block] = STATE(1070), [sym__identifier] = STATE(25), [sym_identifier] = STATE(25), [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1061), - [sym_nil] = STATE(1061), - [sym__atom] = STATE(1061), - [sym_quoted_atom] = STATE(1061), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1061), - [sym_charlist] = STATE(1061), - [sym_sigil] = STATE(1061), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1061), - [sym_tuple] = STATE(1061), - [sym_bitstring] = STATE(1061), - [sym_map] = STATE(1061), - [sym_unary_operator] = STATE(1061), - [sym_binary_operator] = STATE(1061), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1061), - [sym_call] = STATE(1061), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_after_block] = STATE(3678), - [sym_rescue_block] = STATE(3678), - [sym_catch_block] = STATE(3678), - [sym_else_block] = STATE(3678), - [sym_access_call] = STATE(1061), - [sym_stab_clause] = STATE(3654), - [sym__stab_clause_left] = STATE(4978), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1061), - [aux_sym_do_block_repeat1] = STATE(3678), + [sym_boolean] = STATE(1070), + [sym_nil] = STATE(1070), + [sym__atom] = STATE(1070), + [sym_quoted_atom] = STATE(1070), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1070), + [sym_charlist] = STATE(1070), + [sym_sigil] = STATE(1070), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1070), + [sym_tuple] = STATE(1070), + [sym_bitstring] = STATE(1070), + [sym_map] = STATE(1070), + [sym_unary_operator] = STATE(1070), + [sym_binary_operator] = STATE(1070), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1070), + [sym_call] = STATE(1070), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_after_block] = STATE(4299), + [sym_rescue_block] = STATE(4299), + [sym_catch_block] = STATE(4299), + [sym_else_block] = STATE(4299), + [sym_access_call] = STATE(1070), + [sym_stab_clause] = STATE(4235), + [sym__stab_clause_left] = STATE(5656), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1070), + [aux_sym_do_block_repeat1] = STATE(4299), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(65), [aux_sym_identifier_token1] = ACTIONS(67), @@ -27381,59 +28019,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [29] = { - [sym__expression] = STATE(1072), - [sym_block] = STATE(1072), + [sym__expression] = STATE(1063), + [sym_block] = STATE(1063), [sym__identifier] = STATE(25), [sym_identifier] = STATE(25), [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1072), - [sym_nil] = STATE(1072), - [sym__atom] = STATE(1072), - [sym_quoted_atom] = STATE(1072), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1072), - [sym_charlist] = STATE(1072), - [sym_sigil] = STATE(1072), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1072), - [sym_tuple] = STATE(1072), - [sym_bitstring] = STATE(1072), - [sym_map] = STATE(1072), - [sym_unary_operator] = STATE(1072), - [sym_binary_operator] = STATE(1072), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1072), - [sym_call] = STATE(1072), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_after_block] = STATE(3669), - [sym_rescue_block] = STATE(3669), - [sym_catch_block] = STATE(3669), - [sym_else_block] = STATE(3669), - [sym_access_call] = STATE(1072), - [sym_stab_clause] = STATE(3644), - [sym__stab_clause_left] = STATE(4978), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1072), - [aux_sym_do_block_repeat1] = STATE(3669), + [sym_boolean] = STATE(1063), + [sym_nil] = STATE(1063), + [sym__atom] = STATE(1063), + [sym_quoted_atom] = STATE(1063), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1063), + [sym_charlist] = STATE(1063), + [sym_sigil] = STATE(1063), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_bitstring] = STATE(1063), + [sym_map] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_binary_operator] = STATE(1063), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1063), + [sym_call] = STATE(1063), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_after_block] = STATE(4290), + [sym_rescue_block] = STATE(4290), + [sym_catch_block] = STATE(4290), + [sym_else_block] = STATE(4290), + [sym_access_call] = STATE(1063), + [sym_stab_clause] = STATE(4246), + [sym__stab_clause_left] = STATE(5656), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1063), + [aux_sym_do_block_repeat1] = STATE(4290), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(65), [aux_sym_identifier_token1] = ACTIONS(67), @@ -27527,59 +28165,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [30] = { - [sym__expression] = STATE(1067), - [sym_block] = STATE(1067), + [sym__expression] = STATE(1081), + [sym_block] = STATE(1081), [sym__identifier] = STATE(25), [sym_identifier] = STATE(25), [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1067), - [sym_nil] = STATE(1067), - [sym__atom] = STATE(1067), - [sym_quoted_atom] = STATE(1067), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1067), - [sym_charlist] = STATE(1067), - [sym_sigil] = STATE(1067), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1067), - [sym_tuple] = STATE(1067), - [sym_bitstring] = STATE(1067), - [sym_map] = STATE(1067), - [sym_unary_operator] = STATE(1067), - [sym_binary_operator] = STATE(1067), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1067), - [sym_call] = STATE(1067), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_after_block] = STATE(3711), - [sym_rescue_block] = STATE(3711), - [sym_catch_block] = STATE(3711), - [sym_else_block] = STATE(3711), - [sym_access_call] = STATE(1067), - [sym_stab_clause] = STATE(3627), - [sym__stab_clause_left] = STATE(4978), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1067), - [aux_sym_do_block_repeat1] = STATE(3711), + [sym_boolean] = STATE(1081), + [sym_nil] = STATE(1081), + [sym__atom] = STATE(1081), + [sym_quoted_atom] = STATE(1081), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1081), + [sym_charlist] = STATE(1081), + [sym_sigil] = STATE(1081), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1081), + [sym_tuple] = STATE(1081), + [sym_bitstring] = STATE(1081), + [sym_map] = STATE(1081), + [sym_unary_operator] = STATE(1081), + [sym_binary_operator] = STATE(1081), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1081), + [sym_call] = STATE(1081), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_after_block] = STATE(4278), + [sym_rescue_block] = STATE(4278), + [sym_catch_block] = STATE(4278), + [sym_else_block] = STATE(4278), + [sym_access_call] = STATE(1081), + [sym_stab_clause] = STATE(4238), + [sym__stab_clause_left] = STATE(5656), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1081), + [aux_sym_do_block_repeat1] = STATE(4278), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(65), [aux_sym_identifier_token1] = ACTIONS(67), @@ -27673,59 +28311,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [31] = { - [sym__expression] = STATE(1081), - [sym_block] = STATE(1081), + [sym__expression] = STATE(1060), + [sym_block] = STATE(1060), [sym__identifier] = STATE(25), [sym_identifier] = STATE(25), [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1081), - [sym_nil] = STATE(1081), - [sym__atom] = STATE(1081), - [sym_quoted_atom] = STATE(1081), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1081), - [sym_charlist] = STATE(1081), - [sym_sigil] = STATE(1081), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_bitstring] = STATE(1081), - [sym_map] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_binary_operator] = STATE(1081), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1081), - [sym_call] = STATE(1081), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_after_block] = STATE(3684), - [sym_rescue_block] = STATE(3684), - [sym_catch_block] = STATE(3684), - [sym_else_block] = STATE(3684), - [sym_access_call] = STATE(1081), - [sym_stab_clause] = STATE(3594), - [sym__stab_clause_left] = STATE(4978), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1081), - [aux_sym_do_block_repeat1] = STATE(3684), + [sym_boolean] = STATE(1060), + [sym_nil] = STATE(1060), + [sym__atom] = STATE(1060), + [sym_quoted_atom] = STATE(1060), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1060), + [sym_charlist] = STATE(1060), + [sym_sigil] = STATE(1060), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1060), + [sym_tuple] = STATE(1060), + [sym_bitstring] = STATE(1060), + [sym_map] = STATE(1060), + [sym_unary_operator] = STATE(1060), + [sym_binary_operator] = STATE(1060), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1060), + [sym_call] = STATE(1060), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_after_block] = STATE(4287), + [sym_rescue_block] = STATE(4287), + [sym_catch_block] = STATE(4287), + [sym_else_block] = STATE(4287), + [sym_access_call] = STATE(1060), + [sym_stab_clause] = STATE(4231), + [sym__stab_clause_left] = STATE(5656), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1060), + [aux_sym_do_block_repeat1] = STATE(4287), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(65), [aux_sym_identifier_token1] = ACTIONS(67), @@ -27819,59 +28457,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [32] = { - [sym__expression] = STATE(1082), - [sym_block] = STATE(1082), + [sym__expression] = STATE(1083), + [sym_block] = STATE(1083), [sym__identifier] = STATE(25), [sym_identifier] = STATE(25), [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1082), - [sym_nil] = STATE(1082), - [sym__atom] = STATE(1082), - [sym_quoted_atom] = STATE(1082), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1082), - [sym_charlist] = STATE(1082), - [sym_sigil] = STATE(1082), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1082), - [sym_tuple] = STATE(1082), - [sym_bitstring] = STATE(1082), - [sym_map] = STATE(1082), - [sym_unary_operator] = STATE(1082), - [sym_binary_operator] = STATE(1082), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1082), - [sym_call] = STATE(1082), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_after_block] = STATE(3690), - [sym_rescue_block] = STATE(3690), - [sym_catch_block] = STATE(3690), - [sym_else_block] = STATE(3690), - [sym_access_call] = STATE(1082), - [sym_stab_clause] = STATE(3638), - [sym__stab_clause_left] = STATE(4978), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1082), - [aux_sym_do_block_repeat1] = STATE(3690), + [sym_boolean] = STATE(1083), + [sym_nil] = STATE(1083), + [sym__atom] = STATE(1083), + [sym_quoted_atom] = STATE(1083), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1083), + [sym_charlist] = STATE(1083), + [sym_sigil] = STATE(1083), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1083), + [sym_tuple] = STATE(1083), + [sym_bitstring] = STATE(1083), + [sym_map] = STATE(1083), + [sym_unary_operator] = STATE(1083), + [sym_binary_operator] = STATE(1083), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1083), + [sym_call] = STATE(1083), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_after_block] = STATE(4295), + [sym_rescue_block] = STATE(4295), + [sym_catch_block] = STATE(4295), + [sym_else_block] = STATE(4295), + [sym_access_call] = STATE(1083), + [sym_stab_clause] = STATE(4241), + [sym__stab_clause_left] = STATE(5656), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1083), + [aux_sym_do_block_repeat1] = STATE(4295), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(65), [aux_sym_identifier_token1] = ACTIONS(67), @@ -27965,59 +28603,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [33] = { - [sym__expression] = STATE(1074), - [sym_block] = STATE(1074), + [sym__expression] = STATE(1082), + [sym_block] = STATE(1082), [sym__identifier] = STATE(25), [sym_identifier] = STATE(25), [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1074), - [sym_nil] = STATE(1074), - [sym__atom] = STATE(1074), - [sym_quoted_atom] = STATE(1074), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1074), - [sym_charlist] = STATE(1074), - [sym_sigil] = STATE(1074), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1074), - [sym_tuple] = STATE(1074), - [sym_bitstring] = STATE(1074), - [sym_map] = STATE(1074), - [sym_unary_operator] = STATE(1074), - [sym_binary_operator] = STATE(1074), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1074), - [sym_call] = STATE(1074), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_after_block] = STATE(3695), - [sym_rescue_block] = STATE(3695), - [sym_catch_block] = STATE(3695), - [sym_else_block] = STATE(3695), - [sym_access_call] = STATE(1074), - [sym_stab_clause] = STATE(3606), - [sym__stab_clause_left] = STATE(4978), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1074), - [aux_sym_do_block_repeat1] = STATE(3695), + [sym_boolean] = STATE(1082), + [sym_nil] = STATE(1082), + [sym__atom] = STATE(1082), + [sym_quoted_atom] = STATE(1082), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1082), + [sym_charlist] = STATE(1082), + [sym_sigil] = STATE(1082), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1082), + [sym_tuple] = STATE(1082), + [sym_bitstring] = STATE(1082), + [sym_map] = STATE(1082), + [sym_unary_operator] = STATE(1082), + [sym_binary_operator] = STATE(1082), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1082), + [sym_call] = STATE(1082), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_after_block] = STATE(4279), + [sym_rescue_block] = STATE(4279), + [sym_catch_block] = STATE(4279), + [sym_else_block] = STATE(4279), + [sym_access_call] = STATE(1082), + [sym_stab_clause] = STATE(4256), + [sym__stab_clause_left] = STATE(5656), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1082), + [aux_sym_do_block_repeat1] = STATE(4279), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(65), [aux_sym_identifier_token1] = ACTIONS(67), @@ -28111,202 +28749,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [34] = { - [sym__expression] = STATE(1933), - [sym_block] = STATE(1933), - [sym__identifier] = STATE(34), - [sym_identifier] = STATE(34), - [sym_special_identifier] = STATE(34), - [sym_boolean] = STATE(1933), - [sym_nil] = STATE(1933), - [sym__atom] = STATE(1933), - [sym_quoted_atom] = STATE(1933), - [sym__quoted_i_double] = STATE(1678), - [sym__quoted_i_single] = STATE(1677), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(1933), - [sym_charlist] = STATE(1933), - [sym_sigil] = STATE(1933), - [sym_keywords] = STATE(1934), - [sym_pair] = STATE(1922), - [sym__keyword] = STATE(901), - [sym_quoted_keyword] = STATE(901), - [sym_list] = STATE(1933), - [sym_tuple] = STATE(1933), - [sym_bitstring] = STATE(1933), - [sym_map] = STATE(1933), - [sym_unary_operator] = STATE(1933), - [sym_binary_operator] = STATE(1933), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(1933), - [sym_call] = STATE(1933), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(36), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym__call_arguments_with_parentheses_immediate] = STATE(1444), - [sym__call_arguments_without_parentheses] = STATE(1773), - [sym_do_block] = STATE(1918), - [sym_access_call] = STATE(1933), - [sym_anonymous_function] = STATE(1933), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(191), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(361), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(365), - [sym_integer] = ACTIONS(365), - [sym_float] = ACTIONS(365), - [sym_char] = ACTIONS(365), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), - [sym_atom] = ACTIONS(365), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_RBRACE] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_RBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(219), - [anon_sym_GT] = ACTIONS(219), - [anon_sym_PIPE] = ACTIONS(219), - [anon_sym_SLASH] = ACTIONS(219), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_COMMA] = ACTIONS(191), - [sym_keyword] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(396), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(396), - [anon_sym_not] = ACTIONS(396), - [anon_sym_AT] = ACTIONS(398), - [anon_sym_LT_DASH] = ACTIONS(219), - [anon_sym_BSLASH_BSLASH] = ACTIONS(219), - [anon_sym_when] = ACTIONS(219), - [anon_sym_COLON_COLON] = ACTIONS(219), - [anon_sym_EQ_GT] = ACTIONS(191), - [anon_sym_EQ] = ACTIONS(219), - [anon_sym_PIPE_PIPE] = ACTIONS(219), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(219), - [anon_sym_or] = ACTIONS(219), - [anon_sym_AMP_AMP] = ACTIONS(219), - [anon_sym_AMP_AMP_AMP] = ACTIONS(219), - [anon_sym_and] = ACTIONS(219), - [anon_sym_EQ_EQ] = ACTIONS(219), - [anon_sym_BANG_EQ] = ACTIONS(219), - [anon_sym_EQ_TILDE] = ACTIONS(219), - [anon_sym_EQ_EQ_EQ] = ACTIONS(219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(219), - [anon_sym_LT_EQ] = ACTIONS(219), - [anon_sym_GT_EQ] = ACTIONS(219), - [anon_sym_PIPE_GT] = ACTIONS(219), - [anon_sym_LT_LT_LT] = ACTIONS(219), - [anon_sym_GT_GT_GT] = ACTIONS(219), - [anon_sym_LT_LT_TILDE] = ACTIONS(219), - [anon_sym_TILDE_GT_GT] = ACTIONS(219), - [anon_sym_LT_TILDE] = ACTIONS(219), - [anon_sym_TILDE_GT] = ACTIONS(219), - [anon_sym_LT_TILDE_GT] = ACTIONS(219), - [anon_sym_LT_PIPE_GT] = ACTIONS(219), - [anon_sym_in] = ACTIONS(219), - [anon_sym_CARET_CARET_CARET] = ACTIONS(191), - [anon_sym_SLASH_SLASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(219), - [anon_sym_DASH_DASH] = ACTIONS(219), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(219), - [anon_sym_DASH_DASH_DASH] = ACTIONS(219), - [anon_sym_DOT_DOT] = ACTIONS(219), - [anon_sym_LT_GT] = ACTIONS(219), - [anon_sym_STAR] = ACTIONS(219), - [anon_sym_STAR_STAR] = ACTIONS(219), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(219), - [anon_sym_do] = ACTIONS(191), - [anon_sym_fn] = ACTIONS(400), - [anon_sym_LPAREN2] = ACTIONS(402), - [anon_sym_LBRACK2] = ACTIONS(189), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(189), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(404), - [sym__not_in] = ACTIONS(245), - [sym__quoted_atom_start] = ACTIONS(406), - }, - [35] = { - [sym__terminator] = STATE(66), - [sym__expression] = STATE(1108), - [sym_block] = STATE(1108), + [sym__terminator] = STATE(69), + [sym__expression] = STATE(1093), + [sym_block] = STATE(1093), [sym__identifier] = STATE(25), [sym_identifier] = STATE(25), [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1108), - [sym_nil] = STATE(1108), - [sym__atom] = STATE(1108), - [sym_quoted_atom] = STATE(1108), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1108), - [sym_charlist] = STATE(1108), - [sym_sigil] = STATE(1108), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1108), - [sym_tuple] = STATE(1108), - [sym_bitstring] = STATE(1108), - [sym_map] = STATE(1108), - [sym_unary_operator] = STATE(1108), - [sym_binary_operator] = STATE(1108), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1108), - [sym_call] = STATE(1108), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1108), - [sym_stab_clause] = STATE(3747), - [sym__stab_clause_left] = STATE(4978), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1108), - [aux_sym__terminator_repeat1] = STATE(1019), + [sym_boolean] = STATE(1093), + [sym_nil] = STATE(1093), + [sym__atom] = STATE(1093), + [sym_quoted_atom] = STATE(1093), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1093), + [sym_charlist] = STATE(1093), + [sym_sigil] = STATE(1093), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1093), + [sym_tuple] = STATE(1093), + [sym_bitstring] = STATE(1093), + [sym_map] = STATE(1093), + [sym_unary_operator] = STATE(1093), + [sym_binary_operator] = STATE(1093), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1093), + [sym_call] = STATE(1093), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1093), + [sym_stab_clause] = STATE(4335), + [sym__stab_clause_left] = STATE(5656), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1093), + [aux_sym__terminator_repeat1] = STATE(1018), [aux_sym__terminator_token1] = ACTIONS(61), - [anon_sym_SEMI] = ACTIONS(408), + [anon_sym_SEMI] = ACTIONS(357), [anon_sym_LPAREN] = ACTIONS(65), [aux_sym_identifier_token1] = ACTIONS(67), [anon_sym_DOT_DOT_DOT] = ACTIONS(67), @@ -28316,14 +28810,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ENV__] = ACTIONS(71), [anon_sym___CALLER__] = ACTIONS(71), [anon_sym___STACKTRACE__] = ACTIONS(71), - [sym_alias] = ACTIONS(410), - [sym_integer] = ACTIONS(410), - [sym_float] = ACTIONS(410), - [sym_char] = ACTIONS(410), + [sym_alias] = ACTIONS(359), + [sym_integer] = ACTIONS(359), + [sym_float] = ACTIONS(359), + [sym_char] = ACTIONS(359), [anon_sym_true] = ACTIONS(75), [anon_sym_false] = ACTIONS(75), [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(410), + [sym_atom] = ACTIONS(359), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), @@ -28385,12 +28879,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(105), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(412), - [anon_sym_catch] = ACTIONS(412), - [anon_sym_else] = ACTIONS(412), - [anon_sym_end] = ACTIONS(412), + [anon_sym_after] = ACTIONS(361), + [anon_sym_catch] = ACTIONS(361), + [anon_sym_else] = ACTIONS(361), + [anon_sym_end] = ACTIONS(361), [anon_sym_fn] = ACTIONS(115), - [anon_sym_rescue] = ACTIONS(412), + [anon_sym_rescue] = ACTIONS(361), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), @@ -28398,203 +28892,347 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(121), }, - [36] = { - [sym__expression] = STATE(1933), - [sym_block] = STATE(1933), - [sym__identifier] = STATE(34), - [sym_identifier] = STATE(34), - [sym_special_identifier] = STATE(34), - [sym_boolean] = STATE(1933), - [sym_nil] = STATE(1933), - [sym__atom] = STATE(1933), - [sym_quoted_atom] = STATE(1933), - [sym__quoted_i_double] = STATE(1678), - [sym__quoted_i_single] = STATE(1677), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(1933), - [sym_charlist] = STATE(1933), - [sym_sigil] = STATE(1933), - [sym_keywords] = STATE(1934), - [sym_pair] = STATE(1922), - [sym__keyword] = STATE(901), - [sym_quoted_keyword] = STATE(901), - [sym_list] = STATE(1933), - [sym_tuple] = STATE(1933), - [sym_bitstring] = STATE(1933), - [sym_map] = STATE(1933), - [sym_unary_operator] = STATE(1933), - [sym_binary_operator] = STATE(1933), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(1933), - [sym_call] = STATE(1933), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(36), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym__call_arguments_with_parentheses_immediate] = STATE(1443), - [sym__call_arguments_without_parentheses] = STATE(1758), - [sym_do_block] = STATE(1923), - [sym_access_call] = STATE(1933), - [sym_anonymous_function] = STATE(1933), + [35] = { + [sym__expression] = STATE(2109), + [sym_block] = STATE(2109), + [sym__identifier] = STATE(35), + [sym_identifier] = STATE(35), + [sym_special_identifier] = STATE(35), + [sym_boolean] = STATE(2109), + [sym_nil] = STATE(2109), + [sym__atom] = STATE(2109), + [sym_quoted_atom] = STATE(2109), + [sym__quoted_i_double] = STATE(1777), + [sym__quoted_i_single] = STATE(1778), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(2109), + [sym_charlist] = STATE(2109), + [sym_sigil] = STATE(2109), + [sym_keywords] = STATE(2106), + [sym_pair] = STATE(2099), + [sym__keyword] = STATE(511), + [sym_quoted_keyword] = STATE(511), + [sym_list] = STATE(2109), + [sym_tuple] = STATE(2109), + [sym_bitstring] = STATE(2109), + [sym_map] = STATE(2109), + [sym_unary_operator] = STATE(2109), + [sym_binary_operator] = STATE(2109), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(2109), + [sym_call] = STATE(2109), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym__call_arguments_with_parentheses_immediate] = STATE(1589), + [sym__call_arguments_without_parentheses] = STATE(1813), + [sym_do_block] = STATE(2159), + [sym_access_call] = STATE(2109), + [sym_anonymous_function] = STATE(2109), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(252), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(361), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(365), - [sym_integer] = ACTIONS(365), - [sym_float] = ACTIONS(365), - [sym_char] = ACTIONS(365), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), - [sym_atom] = ACTIONS(365), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_RBRACE] = ACTIONS(252), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_RBRACK] = ACTIONS(252), - [anon_sym_LT] = ACTIONS(252), - [anon_sym_GT] = ACTIONS(252), - [anon_sym_PIPE] = ACTIONS(252), - [anon_sym_SLASH] = ACTIONS(252), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_COMMA] = ACTIONS(252), - [sym_keyword] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(252), - [anon_sym_DASH] = ACTIONS(252), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(396), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(396), - [anon_sym_not] = ACTIONS(396), - [anon_sym_AT] = ACTIONS(398), - [anon_sym_LT_DASH] = ACTIONS(252), - [anon_sym_BSLASH_BSLASH] = ACTIONS(252), - [anon_sym_when] = ACTIONS(252), - [anon_sym_COLON_COLON] = ACTIONS(252), - [anon_sym_EQ_GT] = ACTIONS(252), - [anon_sym_EQ] = ACTIONS(252), - [anon_sym_PIPE_PIPE] = ACTIONS(252), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(252), - [anon_sym_or] = ACTIONS(252), - [anon_sym_AMP_AMP] = ACTIONS(252), - [anon_sym_AMP_AMP_AMP] = ACTIONS(252), - [anon_sym_and] = ACTIONS(252), - [anon_sym_EQ_EQ] = ACTIONS(252), - [anon_sym_BANG_EQ] = ACTIONS(252), - [anon_sym_EQ_TILDE] = ACTIONS(252), - [anon_sym_EQ_EQ_EQ] = ACTIONS(252), - [anon_sym_BANG_EQ_EQ] = ACTIONS(252), - [anon_sym_LT_EQ] = ACTIONS(252), - [anon_sym_GT_EQ] = ACTIONS(252), - [anon_sym_PIPE_GT] = ACTIONS(252), - [anon_sym_LT_LT_LT] = ACTIONS(252), - [anon_sym_GT_GT_GT] = ACTIONS(252), - [anon_sym_LT_LT_TILDE] = ACTIONS(252), - [anon_sym_TILDE_GT_GT] = ACTIONS(252), - [anon_sym_LT_TILDE] = ACTIONS(252), - [anon_sym_TILDE_GT] = ACTIONS(252), - [anon_sym_LT_TILDE_GT] = ACTIONS(252), - [anon_sym_LT_PIPE_GT] = ACTIONS(252), - [anon_sym_in] = ACTIONS(252), - [anon_sym_CARET_CARET_CARET] = ACTIONS(252), - [anon_sym_SLASH_SLASH] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(252), - [anon_sym_DASH_DASH] = ACTIONS(252), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(252), - [anon_sym_DASH_DASH_DASH] = ACTIONS(252), - [anon_sym_DOT_DOT] = ACTIONS(252), - [anon_sym_LT_GT] = ACTIONS(252), - [anon_sym_STAR] = ACTIONS(252), - [anon_sym_STAR_STAR] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(363), + [anon_sym_RPAREN] = ACTIONS(247), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(367), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(371), + [sym_integer] = ACTIONS(371), + [sym_float] = ACTIONS(371), + [sym_char] = ACTIONS(371), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_RBRACE] = ACTIONS(247), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_RBRACK] = ACTIONS(247), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_COMMA] = ACTIONS(247), + [sym_keyword] = ACTIONS(391), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_BANG] = ACTIONS(402), + [anon_sym_CARET] = ACTIONS(402), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(402), + [anon_sym_not] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(404), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_BSLASH_BSLASH] = ACTIONS(271), + [anon_sym_when] = ACTIONS(271), + [anon_sym_COLON_COLON] = ACTIONS(271), + [anon_sym_EQ_GT] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_PIPE_PIPE] = ACTIONS(271), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(271), + [anon_sym_AMP_AMP_AMP] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_EQ_TILDE] = ACTIONS(271), + [anon_sym_EQ_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ_EQ] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_PIPE_GT] = ACTIONS(271), + [anon_sym_LT_LT_LT] = ACTIONS(271), + [anon_sym_GT_GT_GT] = ACTIONS(271), + [anon_sym_LT_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT_GT] = ACTIONS(271), + [anon_sym_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_PIPE_GT] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_CARET_CARET_CARET] = ACTIONS(247), + [anon_sym_SLASH_SLASH] = ACTIONS(247), + [anon_sym_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH] = ACTIONS(271), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH_DASH] = ACTIONS(271), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(252), - [anon_sym_do] = ACTIONS(252), - [anon_sym_fn] = ACTIONS(400), - [anon_sym_LPAREN2] = ACTIONS(402), - [anon_sym_LBRACK2] = ACTIONS(250), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_do] = ACTIONS(247), + [anon_sym_fn] = ACTIONS(406), + [anon_sym_LPAREN2] = ACTIONS(408), + [anon_sym_LBRACK2] = ACTIONS(245), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(250), + [sym__newline_before_do] = ACTIONS(245), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(404), - [sym__not_in] = ACTIONS(250), - [sym__quoted_atom_start] = ACTIONS(406), + [sym__before_unary_op] = ACTIONS(410), + [sym__not_in] = ACTIONS(297), + [sym__quoted_atom_start] = ACTIONS(412), + }, + [36] = { + [sym__expression] = STATE(2109), + [sym_block] = STATE(2109), + [sym__identifier] = STATE(35), + [sym_identifier] = STATE(35), + [sym_special_identifier] = STATE(35), + [sym_boolean] = STATE(2109), + [sym_nil] = STATE(2109), + [sym__atom] = STATE(2109), + [sym_quoted_atom] = STATE(2109), + [sym__quoted_i_double] = STATE(1777), + [sym__quoted_i_single] = STATE(1778), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(2109), + [sym_charlist] = STATE(2109), + [sym_sigil] = STATE(2109), + [sym_keywords] = STATE(2106), + [sym_pair] = STATE(2099), + [sym__keyword] = STATE(511), + [sym_quoted_keyword] = STATE(511), + [sym_list] = STATE(2109), + [sym_tuple] = STATE(2109), + [sym_bitstring] = STATE(2109), + [sym_map] = STATE(2109), + [sym_unary_operator] = STATE(2109), + [sym_binary_operator] = STATE(2109), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(2109), + [sym_call] = STATE(2109), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym__call_arguments_with_parentheses_immediate] = STATE(1549), + [sym__call_arguments_without_parentheses] = STATE(1873), + [sym_do_block] = STATE(3163), + [sym_access_call] = STATE(2109), + [sym_anonymous_function] = STATE(2109), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(363), + [anon_sym_RPAREN] = ACTIONS(191), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(367), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(371), + [sym_integer] = ACTIONS(371), + [sym_float] = ACTIONS(371), + [sym_char] = ACTIONS(371), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_RBRACE] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_RBRACK] = ACTIONS(191), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_COMMA] = ACTIONS(191), + [sym_keyword] = ACTIONS(391), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(402), + [anon_sym_CARET] = ACTIONS(402), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(402), + [anon_sym_not] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(404), + [anon_sym_LT_DASH] = ACTIONS(191), + [anon_sym_BSLASH_BSLASH] = ACTIONS(191), + [anon_sym_when] = ACTIONS(191), + [anon_sym_COLON_COLON] = ACTIONS(191), + [anon_sym_EQ_GT] = ACTIONS(191), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_PIPE_PIPE] = ACTIONS(191), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(191), + [anon_sym_or] = ACTIONS(191), + [anon_sym_AMP_AMP] = ACTIONS(191), + [anon_sym_AMP_AMP_AMP] = ACTIONS(191), + [anon_sym_and] = ACTIONS(191), + [anon_sym_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ] = ACTIONS(191), + [anon_sym_EQ_TILDE] = ACTIONS(191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(191), + [anon_sym_LT_EQ] = ACTIONS(191), + [anon_sym_GT_EQ] = ACTIONS(191), + [anon_sym_PIPE_GT] = ACTIONS(191), + [anon_sym_LT_LT_LT] = ACTIONS(191), + [anon_sym_GT_GT_GT] = ACTIONS(191), + [anon_sym_LT_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT_GT] = ACTIONS(191), + [anon_sym_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_PIPE_GT] = ACTIONS(191), + [anon_sym_in] = ACTIONS(191), + [anon_sym_CARET_CARET_CARET] = ACTIONS(191), + [anon_sym_SLASH_SLASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH_DASH] = ACTIONS(191), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_LT_GT] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_STAR_STAR] = ACTIONS(191), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(191), + [anon_sym_do] = ACTIONS(414), + [anon_sym_fn] = ACTIONS(406), + [anon_sym_LPAREN2] = ACTIONS(408), + [anon_sym_LBRACK2] = ACTIONS(189), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(416), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(410), + [sym__not_in] = ACTIONS(189), + [sym__quoted_atom_start] = ACTIONS(412), }, [37] = { - [sym__terminator] = STATE(67), - [sym__expression] = STATE(1107), - [sym_block] = STATE(1107), + [sym__terminator] = STATE(71), + [sym__expression] = STATE(1100), + [sym_block] = STATE(1100), [sym__identifier] = STATE(25), [sym_identifier] = STATE(25), [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1107), - [sym_nil] = STATE(1107), - [sym__atom] = STATE(1107), - [sym_quoted_atom] = STATE(1107), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1107), - [sym_charlist] = STATE(1107), - [sym_sigil] = STATE(1107), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1107), - [sym_tuple] = STATE(1107), - [sym_bitstring] = STATE(1107), - [sym_map] = STATE(1107), - [sym_unary_operator] = STATE(1107), - [sym_binary_operator] = STATE(1107), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1107), - [sym_call] = STATE(1107), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1107), - [sym_stab_clause] = STATE(3726), - [sym__stab_clause_left] = STATE(4978), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1107), - [aux_sym__terminator_repeat1] = STATE(1019), + [sym_boolean] = STATE(1100), + [sym_nil] = STATE(1100), + [sym__atom] = STATE(1100), + [sym_quoted_atom] = STATE(1100), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1100), + [sym_charlist] = STATE(1100), + [sym_sigil] = STATE(1100), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1100), + [sym_tuple] = STATE(1100), + [sym_bitstring] = STATE(1100), + [sym_map] = STATE(1100), + [sym_unary_operator] = STATE(1100), + [sym_binary_operator] = STATE(1100), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1100), + [sym_call] = STATE(1100), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1100), + [sym_stab_clause] = STATE(4339), + [sym__stab_clause_left] = STATE(5656), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1100), + [aux_sym__terminator_repeat1] = STATE(1018), [aux_sym__terminator_token1] = ACTIONS(61), - [anon_sym_SEMI] = ACTIONS(414), + [anon_sym_SEMI] = ACTIONS(418), [anon_sym_LPAREN] = ACTIONS(65), [aux_sym_identifier_token1] = ACTIONS(67), [anon_sym_DOT_DOT_DOT] = ACTIONS(67), @@ -28604,14 +29242,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ENV__] = ACTIONS(71), [anon_sym___CALLER__] = ACTIONS(71), [anon_sym___STACKTRACE__] = ACTIONS(71), - [sym_alias] = ACTIONS(416), - [sym_integer] = ACTIONS(416), - [sym_float] = ACTIONS(416), - [sym_char] = ACTIONS(416), + [sym_alias] = ACTIONS(420), + [sym_integer] = ACTIONS(420), + [sym_float] = ACTIONS(420), + [sym_char] = ACTIONS(420), [anon_sym_true] = ACTIONS(75), [anon_sym_false] = ACTIONS(75), [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(416), + [sym_atom] = ACTIONS(420), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), @@ -28673,12 +29311,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(105), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(418), - [anon_sym_catch] = ACTIONS(418), - [anon_sym_else] = ACTIONS(418), - [anon_sym_end] = ACTIONS(418), + [anon_sym_after] = ACTIONS(422), + [anon_sym_catch] = ACTIONS(422), + [anon_sym_else] = ACTIONS(422), + [anon_sym_end] = ACTIONS(422), [anon_sym_fn] = ACTIONS(115), - [anon_sym_rescue] = ACTIONS(418), + [anon_sym_rescue] = ACTIONS(422), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), @@ -28687,58 +29325,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [38] = { - [sym__terminator] = STATE(70), - [sym__expression] = STATE(1103), - [sym_block] = STATE(1103), + [sym__terminator] = STATE(65), + [sym__expression] = STATE(1127), + [sym_block] = STATE(1127), [sym__identifier] = STATE(25), [sym_identifier] = STATE(25), [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1103), - [sym_nil] = STATE(1103), - [sym__atom] = STATE(1103), - [sym_quoted_atom] = STATE(1103), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1103), - [sym_charlist] = STATE(1103), - [sym_sigil] = STATE(1103), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1103), - [sym_tuple] = STATE(1103), - [sym_bitstring] = STATE(1103), - [sym_map] = STATE(1103), - [sym_unary_operator] = STATE(1103), - [sym_binary_operator] = STATE(1103), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1103), - [sym_call] = STATE(1103), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1103), - [sym_stab_clause] = STATE(3730), - [sym__stab_clause_left] = STATE(4978), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1103), - [aux_sym__terminator_repeat1] = STATE(1019), + [sym_boolean] = STATE(1127), + [sym_nil] = STATE(1127), + [sym__atom] = STATE(1127), + [sym_quoted_atom] = STATE(1127), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1127), + [sym_charlist] = STATE(1127), + [sym_sigil] = STATE(1127), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1127), + [sym_tuple] = STATE(1127), + [sym_bitstring] = STATE(1127), + [sym_map] = STATE(1127), + [sym_unary_operator] = STATE(1127), + [sym_binary_operator] = STATE(1127), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1127), + [sym_call] = STATE(1127), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1127), + [sym_stab_clause] = STATE(4343), + [sym__stab_clause_left] = STATE(5656), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1127), + [aux_sym__terminator_repeat1] = STATE(1018), [aux_sym__terminator_token1] = ACTIONS(61), - [anon_sym_SEMI] = ACTIONS(420), + [anon_sym_SEMI] = ACTIONS(424), [anon_sym_LPAREN] = ACTIONS(65), [aux_sym_identifier_token1] = ACTIONS(67), [anon_sym_DOT_DOT_DOT] = ACTIONS(67), @@ -28748,14 +29386,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ENV__] = ACTIONS(71), [anon_sym___CALLER__] = ACTIONS(71), [anon_sym___STACKTRACE__] = ACTIONS(71), - [sym_alias] = ACTIONS(422), - [sym_integer] = ACTIONS(422), - [sym_float] = ACTIONS(422), - [sym_char] = ACTIONS(422), + [sym_alias] = ACTIONS(426), + [sym_integer] = ACTIONS(426), + [sym_float] = ACTIONS(426), + [sym_char] = ACTIONS(426), [anon_sym_true] = ACTIONS(75), [anon_sym_false] = ACTIONS(75), [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(422), + [sym_atom] = ACTIONS(426), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), @@ -28817,12 +29455,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(105), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(424), - [anon_sym_catch] = ACTIONS(424), - [anon_sym_else] = ACTIONS(424), - [anon_sym_end] = ACTIONS(424), + [anon_sym_after] = ACTIONS(428), + [anon_sym_catch] = ACTIONS(428), + [anon_sym_else] = ACTIONS(428), + [anon_sym_end] = ACTIONS(428), [anon_sym_fn] = ACTIONS(115), - [anon_sym_rescue] = ACTIONS(424), + [anon_sym_rescue] = ACTIONS(428), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), @@ -28831,58 +29469,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [39] = { - [sym__terminator] = STATE(71), - [sym__expression] = STATE(1090), - [sym_block] = STATE(1090), + [sym__terminator] = STATE(67), + [sym__expression] = STATE(1130), + [sym_block] = STATE(1130), [sym__identifier] = STATE(25), [sym_identifier] = STATE(25), [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1090), - [sym_nil] = STATE(1090), - [sym__atom] = STATE(1090), - [sym_quoted_atom] = STATE(1090), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1090), - [sym_charlist] = STATE(1090), - [sym_sigil] = STATE(1090), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1090), - [sym_tuple] = STATE(1090), - [sym_bitstring] = STATE(1090), - [sym_map] = STATE(1090), - [sym_unary_operator] = STATE(1090), - [sym_binary_operator] = STATE(1090), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1090), - [sym_call] = STATE(1090), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1090), - [sym_stab_clause] = STATE(3737), - [sym__stab_clause_left] = STATE(4978), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1090), - [aux_sym__terminator_repeat1] = STATE(1019), + [sym_boolean] = STATE(1130), + [sym_nil] = STATE(1130), + [sym__atom] = STATE(1130), + [sym_quoted_atom] = STATE(1130), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1130), + [sym_charlist] = STATE(1130), + [sym_sigil] = STATE(1130), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1130), + [sym_tuple] = STATE(1130), + [sym_bitstring] = STATE(1130), + [sym_map] = STATE(1130), + [sym_unary_operator] = STATE(1130), + [sym_binary_operator] = STATE(1130), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1130), + [sym_call] = STATE(1130), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1130), + [sym_stab_clause] = STATE(4331), + [sym__stab_clause_left] = STATE(5656), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1130), + [aux_sym__terminator_repeat1] = STATE(1018), [aux_sym__terminator_token1] = ACTIONS(61), - [anon_sym_SEMI] = ACTIONS(426), + [anon_sym_SEMI] = ACTIONS(430), [anon_sym_LPAREN] = ACTIONS(65), [aux_sym_identifier_token1] = ACTIONS(67), [anon_sym_DOT_DOT_DOT] = ACTIONS(67), @@ -28892,14 +29530,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ENV__] = ACTIONS(71), [anon_sym___CALLER__] = ACTIONS(71), [anon_sym___STACKTRACE__] = ACTIONS(71), - [sym_alias] = ACTIONS(428), - [sym_integer] = ACTIONS(428), - [sym_float] = ACTIONS(428), - [sym_char] = ACTIONS(428), + [sym_alias] = ACTIONS(432), + [sym_integer] = ACTIONS(432), + [sym_float] = ACTIONS(432), + [sym_char] = ACTIONS(432), [anon_sym_true] = ACTIONS(75), [anon_sym_false] = ACTIONS(75), [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(428), + [sym_atom] = ACTIONS(432), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), @@ -28961,12 +29599,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(105), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(430), - [anon_sym_catch] = ACTIONS(430), - [anon_sym_else] = ACTIONS(430), - [anon_sym_end] = ACTIONS(430), + [anon_sym_after] = ACTIONS(434), + [anon_sym_catch] = ACTIONS(434), + [anon_sym_else] = ACTIONS(434), + [anon_sym_end] = ACTIONS(434), [anon_sym_fn] = ACTIONS(115), - [anon_sym_rescue] = ACTIONS(430), + [anon_sym_rescue] = ACTIONS(434), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), @@ -28975,199 +29613,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [40] = { - [sym__expression] = STATE(1933), - [sym_block] = STATE(1933), - [sym__identifier] = STATE(34), - [sym_identifier] = STATE(34), - [sym_special_identifier] = STATE(34), - [sym_boolean] = STATE(1933), - [sym_nil] = STATE(1933), - [sym__atom] = STATE(1933), - [sym_quoted_atom] = STATE(1933), - [sym__quoted_i_double] = STATE(1678), - [sym__quoted_i_single] = STATE(1677), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(1933), - [sym_charlist] = STATE(1933), - [sym_sigil] = STATE(1933), - [sym_keywords] = STATE(1934), - [sym_pair] = STATE(1922), - [sym__keyword] = STATE(901), - [sym_quoted_keyword] = STATE(901), - [sym_list] = STATE(1933), - [sym_tuple] = STATE(1933), - [sym_bitstring] = STATE(1933), - [sym_map] = STATE(1933), - [sym_unary_operator] = STATE(1933), - [sym_binary_operator] = STATE(1933), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(1933), - [sym_call] = STATE(1933), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(36), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym__call_arguments_with_parentheses_immediate] = STATE(1518), - [sym__call_arguments_without_parentheses] = STATE(1730), - [sym_do_block] = STATE(2562), - [sym_access_call] = STATE(1933), - [sym_anonymous_function] = STATE(1933), + [sym__expression] = STATE(2109), + [sym_block] = STATE(2109), + [sym__identifier] = STATE(35), + [sym_identifier] = STATE(35), + [sym_special_identifier] = STATE(35), + [sym_boolean] = STATE(2109), + [sym_nil] = STATE(2109), + [sym__atom] = STATE(2109), + [sym_quoted_atom] = STATE(2109), + [sym__quoted_i_double] = STATE(1777), + [sym__quoted_i_single] = STATE(1778), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(2109), + [sym_charlist] = STATE(2109), + [sym_sigil] = STATE(2109), + [sym_keywords] = STATE(2106), + [sym_pair] = STATE(2099), + [sym__keyword] = STATE(511), + [sym_quoted_keyword] = STATE(511), + [sym_list] = STATE(2109), + [sym_tuple] = STATE(2109), + [sym_bitstring] = STATE(2109), + [sym_map] = STATE(2109), + [sym_unary_operator] = STATE(2109), + [sym_binary_operator] = STATE(2109), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(2109), + [sym_call] = STATE(2109), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym__call_arguments_with_parentheses_immediate] = STATE(1591), + [sym__call_arguments_without_parentheses] = STATE(1816), + [sym_do_block] = STATE(2155), + [sym_access_call] = STATE(2109), + [sym_anonymous_function] = STATE(2109), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(252), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(361), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(365), - [sym_integer] = ACTIONS(365), - [sym_float] = ACTIONS(365), - [sym_char] = ACTIONS(365), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), - [sym_atom] = ACTIONS(365), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_RBRACE] = ACTIONS(252), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_RBRACK] = ACTIONS(252), - [anon_sym_LT] = ACTIONS(252), - [anon_sym_GT] = ACTIONS(252), - [anon_sym_PIPE] = ACTIONS(252), - [anon_sym_SLASH] = ACTIONS(252), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_COMMA] = ACTIONS(252), - [sym_keyword] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(252), - [anon_sym_DASH] = ACTIONS(252), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(396), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(396), - [anon_sym_not] = ACTIONS(396), - [anon_sym_AT] = ACTIONS(398), - [anon_sym_LT_DASH] = ACTIONS(252), - [anon_sym_BSLASH_BSLASH] = ACTIONS(252), - [anon_sym_when] = ACTIONS(252), - [anon_sym_COLON_COLON] = ACTIONS(252), - [anon_sym_EQ_GT] = ACTIONS(252), - [anon_sym_EQ] = ACTIONS(252), - [anon_sym_PIPE_PIPE] = ACTIONS(252), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(252), - [anon_sym_or] = ACTIONS(252), - [anon_sym_AMP_AMP] = ACTIONS(252), - [anon_sym_AMP_AMP_AMP] = ACTIONS(252), - [anon_sym_and] = ACTIONS(252), - [anon_sym_EQ_EQ] = ACTIONS(252), - [anon_sym_BANG_EQ] = ACTIONS(252), - [anon_sym_EQ_TILDE] = ACTIONS(252), - [anon_sym_EQ_EQ_EQ] = ACTIONS(252), - [anon_sym_BANG_EQ_EQ] = ACTIONS(252), - [anon_sym_LT_EQ] = ACTIONS(252), - [anon_sym_GT_EQ] = ACTIONS(252), - [anon_sym_PIPE_GT] = ACTIONS(252), - [anon_sym_LT_LT_LT] = ACTIONS(252), - [anon_sym_GT_GT_GT] = ACTIONS(252), - [anon_sym_LT_LT_TILDE] = ACTIONS(252), - [anon_sym_TILDE_GT_GT] = ACTIONS(252), - [anon_sym_LT_TILDE] = ACTIONS(252), - [anon_sym_TILDE_GT] = ACTIONS(252), - [anon_sym_LT_TILDE_GT] = ACTIONS(252), - [anon_sym_LT_PIPE_GT] = ACTIONS(252), - [anon_sym_in] = ACTIONS(252), - [anon_sym_CARET_CARET_CARET] = ACTIONS(252), - [anon_sym_SLASH_SLASH] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(252), - [anon_sym_DASH_DASH] = ACTIONS(252), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(252), - [anon_sym_DASH_DASH_DASH] = ACTIONS(252), - [anon_sym_DOT_DOT] = ACTIONS(252), - [anon_sym_LT_GT] = ACTIONS(252), - [anon_sym_STAR] = ACTIONS(252), - [anon_sym_STAR_STAR] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(363), + [anon_sym_RPAREN] = ACTIONS(191), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(367), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(371), + [sym_integer] = ACTIONS(371), + [sym_float] = ACTIONS(371), + [sym_char] = ACTIONS(371), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_RBRACE] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_RBRACK] = ACTIONS(191), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_COMMA] = ACTIONS(191), + [sym_keyword] = ACTIONS(391), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(402), + [anon_sym_CARET] = ACTIONS(402), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(402), + [anon_sym_not] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(404), + [anon_sym_LT_DASH] = ACTIONS(191), + [anon_sym_BSLASH_BSLASH] = ACTIONS(191), + [anon_sym_when] = ACTIONS(191), + [anon_sym_COLON_COLON] = ACTIONS(191), + [anon_sym_EQ_GT] = ACTIONS(191), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_PIPE_PIPE] = ACTIONS(191), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(191), + [anon_sym_or] = ACTIONS(191), + [anon_sym_AMP_AMP] = ACTIONS(191), + [anon_sym_AMP_AMP_AMP] = ACTIONS(191), + [anon_sym_and] = ACTIONS(191), + [anon_sym_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ] = ACTIONS(191), + [anon_sym_EQ_TILDE] = ACTIONS(191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(191), + [anon_sym_LT_EQ] = ACTIONS(191), + [anon_sym_GT_EQ] = ACTIONS(191), + [anon_sym_PIPE_GT] = ACTIONS(191), + [anon_sym_LT_LT_LT] = ACTIONS(191), + [anon_sym_GT_GT_GT] = ACTIONS(191), + [anon_sym_LT_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT_GT] = ACTIONS(191), + [anon_sym_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_PIPE_GT] = ACTIONS(191), + [anon_sym_in] = ACTIONS(191), + [anon_sym_CARET_CARET_CARET] = ACTIONS(191), + [anon_sym_SLASH_SLASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH_DASH] = ACTIONS(191), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_LT_GT] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_STAR_STAR] = ACTIONS(191), [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(252), - [anon_sym_do] = ACTIONS(432), - [anon_sym_fn] = ACTIONS(400), - [anon_sym_LPAREN2] = ACTIONS(402), - [anon_sym_LBRACK2] = ACTIONS(250), + [anon_sym_DOT] = ACTIONS(191), + [anon_sym_do] = ACTIONS(191), + [anon_sym_fn] = ACTIONS(406), + [anon_sym_LPAREN2] = ACTIONS(408), + [anon_sym_LBRACK2] = ACTIONS(189), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(434), + [sym__newline_before_do] = ACTIONS(189), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(404), - [sym__not_in] = ACTIONS(250), - [sym__quoted_atom_start] = ACTIONS(406), + [sym__before_unary_op] = ACTIONS(410), + [sym__not_in] = ACTIONS(189), + [sym__quoted_atom_start] = ACTIONS(412), }, [41] = { - [sym__expression] = STATE(2270), - [sym_block] = STATE(2270), - [sym__identifier] = STATE(47), - [sym_identifier] = STATE(47), - [sym_special_identifier] = STATE(47), - [sym_boolean] = STATE(2270), - [sym_nil] = STATE(2270), - [sym__atom] = STATE(2270), - [sym_quoted_atom] = STATE(2270), - [sym__quoted_i_double] = STATE(1146), - [sym__quoted_i_single] = STATE(1145), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2270), - [sym_charlist] = STATE(2270), - [sym_sigil] = STATE(2270), - [sym_keywords] = STATE(1363), - [sym_pair] = STATE(2125), - [sym__keyword] = STATE(492), - [sym_quoted_keyword] = STATE(492), - [sym_list] = STATE(2270), - [sym_tuple] = STATE(2270), - [sym_bitstring] = STATE(2270), - [sym_map] = STATE(2270), - [sym_unary_operator] = STATE(2270), - [sym_binary_operator] = STATE(2270), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2270), - [sym_call] = STATE(2270), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(41), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), + [sym__expression] = STATE(2638), + [sym_block] = STATE(2638), + [sym__identifier] = STATE(41), + [sym_identifier] = STATE(41), + [sym_special_identifier] = STATE(41), + [sym_boolean] = STATE(2638), + [sym_nil] = STATE(2638), + [sym__atom] = STATE(2638), + [sym_quoted_atom] = STATE(2638), + [sym__quoted_i_double] = STATE(1276), + [sym__quoted_i_single] = STATE(1277), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(2638), + [sym_charlist] = STATE(2638), + [sym_sigil] = STATE(2638), + [sym_keywords] = STATE(1451), + [sym_pair] = STATE(2214), + [sym__keyword] = STATE(799), + [sym_quoted_keyword] = STATE(799), + [sym_list] = STATE(2638), + [sym_tuple] = STATE(2638), + [sym_bitstring] = STATE(2638), + [sym_map] = STATE(2638), + [sym_unary_operator] = STATE(2638), + [sym_binary_operator] = STATE(2638), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(2638), + [sym_call] = STATE(2638), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), [sym__call_arguments_with_parentheses_immediate] = STATE(1097), - [sym__call_arguments_without_parentheses] = STATE(1153), - [sym_do_block] = STATE(1406), - [sym_access_call] = STATE(2270), - [sym_anonymous_function] = STATE(2270), - [aux_sym__terminator_token1] = ACTIONS(250), - [anon_sym_SEMI] = ACTIONS(252), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_RPAREN] = ACTIONS(252), + [sym__call_arguments_without_parentheses] = STATE(1149), + [sym_do_block] = STATE(1453), + [sym_access_call] = STATE(2638), + [sym_anonymous_function] = STATE(2638), + [aux_sym__terminator_token1] = ACTIONS(245), + [anon_sym_SEMI] = ACTIONS(247), + [anon_sym_LPAREN] = ACTIONS(249), [aux_sym_identifier_token1] = ACTIONS(436), [anon_sym_DOT_DOT_DOT] = ACTIONS(436), [sym_unused_identifier] = ACTIONS(438), @@ -29180,852 +29817,852 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(442), [sym_float] = ACTIONS(442), [sym_char] = ACTIONS(442), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), [sym_atom] = ACTIONS(442), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(252), - [anon_sym_GT] = ACTIONS(252), - [anon_sym_PIPE] = ACTIONS(252), - [anon_sym_SLASH] = ACTIONS(252), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_COMMA] = ACTIONS(252), + [anon_sym_COMMA] = ACTIONS(247), [sym_keyword] = ACTIONS(446), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), [anon_sym_AMP] = ACTIONS(448), - [anon_sym_PLUS] = ACTIONS(252), - [anon_sym_DASH] = ACTIONS(252), - [anon_sym_BANG] = ACTIONS(450), - [anon_sym_CARET] = ACTIONS(450), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), - [anon_sym_not] = ACTIONS(450), - [anon_sym_AT] = ACTIONS(452), - [anon_sym_LT_DASH] = ACTIONS(252), - [anon_sym_BSLASH_BSLASH] = ACTIONS(252), - [anon_sym_when] = ACTIONS(252), - [anon_sym_COLON_COLON] = ACTIONS(252), - [anon_sym_EQ_GT] = ACTIONS(252), - [anon_sym_EQ] = ACTIONS(252), - [anon_sym_PIPE_PIPE] = ACTIONS(252), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(252), - [anon_sym_or] = ACTIONS(252), - [anon_sym_AMP_AMP] = ACTIONS(252), - [anon_sym_AMP_AMP_AMP] = ACTIONS(252), - [anon_sym_and] = ACTIONS(252), - [anon_sym_EQ_EQ] = ACTIONS(252), - [anon_sym_BANG_EQ] = ACTIONS(252), - [anon_sym_EQ_TILDE] = ACTIONS(252), - [anon_sym_EQ_EQ_EQ] = ACTIONS(252), - [anon_sym_BANG_EQ_EQ] = ACTIONS(252), - [anon_sym_LT_EQ] = ACTIONS(252), - [anon_sym_GT_EQ] = ACTIONS(252), - [anon_sym_PIPE_GT] = ACTIONS(252), - [anon_sym_LT_LT_LT] = ACTIONS(252), - [anon_sym_GT_GT_GT] = ACTIONS(252), - [anon_sym_LT_LT_TILDE] = ACTIONS(252), - [anon_sym_TILDE_GT_GT] = ACTIONS(252), - [anon_sym_LT_TILDE] = ACTIONS(252), - [anon_sym_TILDE_GT] = ACTIONS(252), - [anon_sym_LT_TILDE_GT] = ACTIONS(252), - [anon_sym_LT_PIPE_GT] = ACTIONS(252), - [anon_sym_in] = ACTIONS(252), - [anon_sym_CARET_CARET_CARET] = ACTIONS(252), - [anon_sym_SLASH_SLASH] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(252), - [anon_sym_DASH_DASH] = ACTIONS(252), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(252), - [anon_sym_DASH_DASH_DASH] = ACTIONS(252), - [anon_sym_DOT_DOT] = ACTIONS(252), - [anon_sym_LT_GT] = ACTIONS(252), - [anon_sym_STAR] = ACTIONS(252), - [anon_sym_STAR_STAR] = ACTIONS(252), + [anon_sym_PLUS] = ACTIONS(450), + [anon_sym_DASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(453), + [anon_sym_not] = ACTIONS(453), + [anon_sym_AT] = ACTIONS(455), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_BSLASH_BSLASH] = ACTIONS(271), + [anon_sym_when] = ACTIONS(271), + [anon_sym_COLON_COLON] = ACTIONS(271), + [anon_sym_EQ_GT] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_PIPE_PIPE] = ACTIONS(271), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(271), + [anon_sym_AMP_AMP_AMP] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_EQ_TILDE] = ACTIONS(271), + [anon_sym_EQ_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ_EQ] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_PIPE_GT] = ACTIONS(271), + [anon_sym_LT_LT_LT] = ACTIONS(271), + [anon_sym_GT_GT_GT] = ACTIONS(271), + [anon_sym_LT_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT_GT] = ACTIONS(271), + [anon_sym_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_PIPE_GT] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_CARET_CARET_CARET] = ACTIONS(247), + [anon_sym_SLASH_SLASH] = ACTIONS(247), + [anon_sym_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH] = ACTIONS(271), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH_DASH] = ACTIONS(271), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(252), - [anon_sym_do] = ACTIONS(252), - [anon_sym_fn] = ACTIONS(239), - [anon_sym_LPAREN2] = ACTIONS(241), - [anon_sym_LBRACK2] = ACTIONS(250), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_do] = ACTIONS(247), + [anon_sym_end] = ACTIONS(247), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_LPAREN2] = ACTIONS(293), + [anon_sym_LBRACK2] = ACTIONS(245), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(250), + [sym__newline_before_do] = ACTIONS(245), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(454), - [sym__not_in] = ACTIONS(250), - [sym__quoted_atom_start] = ACTIONS(248), + [sym__before_unary_op] = ACTIONS(457), + [sym__not_in] = ACTIONS(297), + [sym__quoted_atom_start] = ACTIONS(300), }, [42] = { - [sym__expression] = STATE(2171), - [sym_block] = STATE(2171), + [sym__expression] = STATE(2183), + [sym_block] = STATE(2183), [sym__identifier] = STATE(42), [sym_identifier] = STATE(42), [sym_special_identifier] = STATE(42), - [sym_boolean] = STATE(2171), - [sym_nil] = STATE(2171), - [sym__atom] = STATE(2171), - [sym_quoted_atom] = STATE(2171), - [sym__quoted_i_double] = STATE(1146), - [sym__quoted_i_single] = STATE(1145), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2171), - [sym_charlist] = STATE(2171), - [sym_sigil] = STATE(2171), - [sym_keywords] = STATE(1363), - [sym_pair] = STATE(2136), - [sym__keyword] = STATE(774), - [sym_quoted_keyword] = STATE(774), - [sym_list] = STATE(2171), - [sym_tuple] = STATE(2171), - [sym_bitstring] = STATE(2171), - [sym_map] = STATE(2171), - [sym_unary_operator] = STATE(2171), - [sym_binary_operator] = STATE(2171), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2171), - [sym_call] = STATE(2171), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym__call_arguments_with_parentheses_immediate] = STATE(1096), - [sym__call_arguments_without_parentheses] = STATE(1149), - [sym_do_block] = STATE(1419), - [sym_access_call] = STATE(2171), - [sym_anonymous_function] = STATE(2171), - [aux_sym__terminator_token1] = ACTIONS(189), - [anon_sym_SEMI] = ACTIONS(191), + [sym_boolean] = STATE(2183), + [sym_nil] = STATE(2183), + [sym__atom] = STATE(2183), + [sym_quoted_atom] = STATE(2183), + [sym__quoted_i_double] = STATE(1096), + [sym__quoted_i_single] = STATE(1095), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(2183), + [sym_charlist] = STATE(2183), + [sym_sigil] = STATE(2183), + [sym_keywords] = STATE(1269), + [sym_pair] = STATE(2110), + [sym__keyword] = STATE(873), + [sym_quoted_keyword] = STATE(873), + [sym_list] = STATE(2183), + [sym_tuple] = STATE(2183), + [sym_bitstring] = STATE(2183), + [sym_map] = STATE(2183), + [sym_unary_operator] = STATE(2183), + [sym_binary_operator] = STATE(2183), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(2183), + [sym_call] = STATE(2183), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym__call_arguments_with_parentheses_immediate] = STATE(1088), + [sym__call_arguments_without_parentheses] = STATE(1123), + [sym_do_block] = STATE(1168), + [sym_access_call] = STATE(2183), + [sym_anonymous_function] = STATE(2183), + [aux_sym__terminator_token1] = ACTIONS(245), + [anon_sym_SEMI] = ACTIONS(247), [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(456), - [sym_unused_identifier] = ACTIONS(458), - [anon_sym___MODULE__] = ACTIONS(460), - [anon_sym___DIR__] = ACTIONS(460), - [anon_sym___ENV__] = ACTIONS(460), - [anon_sym___CALLER__] = ACTIONS(460), - [anon_sym___STACKTRACE__] = ACTIONS(460), - [sym_alias] = ACTIONS(462), - [sym_integer] = ACTIONS(462), - [sym_float] = ACTIONS(462), - [sym_char] = ACTIONS(462), + [anon_sym_RPAREN] = ACTIONS(247), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(461), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), + [sym_alias] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(465), + [sym_char] = ACTIONS(465), [anon_sym_true] = ACTIONS(203), [anon_sym_false] = ACTIONS(203), [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(462), + [sym_atom] = ACTIONS(465), [anon_sym_DQUOTE] = ACTIONS(207), [anon_sym_SQUOTE] = ACTIONS(209), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), [anon_sym_LBRACE] = ACTIONS(215), [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(219), - [anon_sym_GT] = ACTIONS(219), - [anon_sym_PIPE] = ACTIONS(219), - [anon_sym_SLASH] = ACTIONS(219), - [anon_sym_TILDE] = ACTIONS(464), - [anon_sym_COMMA] = ACTIONS(191), - [sym_keyword] = ACTIONS(466), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(470), - [anon_sym_BANG] = ACTIONS(473), - [anon_sym_CARET] = ACTIONS(473), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), - [anon_sym_not] = ACTIONS(473), - [anon_sym_AT] = ACTIONS(475), - [anon_sym_LT_DASH] = ACTIONS(219), - [anon_sym_BSLASH_BSLASH] = ACTIONS(219), - [anon_sym_when] = ACTIONS(219), - [anon_sym_COLON_COLON] = ACTIONS(219), - [anon_sym_EQ_GT] = ACTIONS(191), - [anon_sym_EQ] = ACTIONS(219), - [anon_sym_PIPE_PIPE] = ACTIONS(219), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(219), - [anon_sym_or] = ACTIONS(219), - [anon_sym_AMP_AMP] = ACTIONS(219), - [anon_sym_AMP_AMP_AMP] = ACTIONS(219), - [anon_sym_and] = ACTIONS(219), - [anon_sym_EQ_EQ] = ACTIONS(219), - [anon_sym_BANG_EQ] = ACTIONS(219), - [anon_sym_EQ_TILDE] = ACTIONS(219), - [anon_sym_EQ_EQ_EQ] = ACTIONS(219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(219), - [anon_sym_LT_EQ] = ACTIONS(219), - [anon_sym_GT_EQ] = ACTIONS(219), - [anon_sym_PIPE_GT] = ACTIONS(219), - [anon_sym_LT_LT_LT] = ACTIONS(219), - [anon_sym_GT_GT_GT] = ACTIONS(219), - [anon_sym_LT_LT_TILDE] = ACTIONS(219), - [anon_sym_TILDE_GT_GT] = ACTIONS(219), - [anon_sym_LT_TILDE] = ACTIONS(219), - [anon_sym_TILDE_GT] = ACTIONS(219), - [anon_sym_LT_TILDE_GT] = ACTIONS(219), - [anon_sym_LT_PIPE_GT] = ACTIONS(219), - [anon_sym_in] = ACTIONS(219), - [anon_sym_CARET_CARET_CARET] = ACTIONS(191), - [anon_sym_SLASH_SLASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(219), - [anon_sym_DASH_DASH] = ACTIONS(219), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(219), - [anon_sym_DASH_DASH_DASH] = ACTIONS(219), - [anon_sym_DOT_DOT] = ACTIONS(219), - [anon_sym_LT_GT] = ACTIONS(219), - [anon_sym_STAR] = ACTIONS(219), - [anon_sym_STAR_STAR] = ACTIONS(219), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_COMMA] = ACTIONS(247), + [sym_keyword] = ACTIONS(469), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_CARET] = ACTIONS(476), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(476), + [anon_sym_not] = ACTIONS(476), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_BSLASH_BSLASH] = ACTIONS(271), + [anon_sym_when] = ACTIONS(271), + [anon_sym_COLON_COLON] = ACTIONS(271), + [anon_sym_EQ_GT] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_PIPE_PIPE] = ACTIONS(271), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(271), + [anon_sym_AMP_AMP_AMP] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_EQ_TILDE] = ACTIONS(271), + [anon_sym_EQ_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ_EQ] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_PIPE_GT] = ACTIONS(271), + [anon_sym_LT_LT_LT] = ACTIONS(271), + [anon_sym_GT_GT_GT] = ACTIONS(271), + [anon_sym_LT_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT_GT] = ACTIONS(271), + [anon_sym_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_PIPE_GT] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_CARET_CARET_CARET] = ACTIONS(247), + [anon_sym_SLASH_SLASH] = ACTIONS(247), + [anon_sym_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH] = ACTIONS(271), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH_DASH] = ACTIONS(271), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(219), - [anon_sym_do] = ACTIONS(191), - [anon_sym_end] = ACTIONS(191), - [anon_sym_fn] = ACTIONS(239), - [anon_sym_LPAREN2] = ACTIONS(241), - [anon_sym_LBRACK2] = ACTIONS(189), + [anon_sym_DASH_GT] = ACTIONS(271), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_do] = ACTIONS(247), + [anon_sym_fn] = ACTIONS(235), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_LBRACK2] = ACTIONS(245), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(189), + [sym__newline_before_do] = ACTIONS(245), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(477), - [sym__not_in] = ACTIONS(245), - [sym__quoted_atom_start] = ACTIONS(248), + [sym__before_unary_op] = ACTIONS(480), + [sym__not_in] = ACTIONS(297), + [sym__quoted_atom_start] = ACTIONS(243), }, [43] = { - [sym__expression] = STATE(2148), - [sym_block] = STATE(2148), - [sym__identifier] = STATE(45), - [sym_identifier] = STATE(45), - [sym_special_identifier] = STATE(45), - [sym_boolean] = STATE(2148), - [sym_nil] = STATE(2148), - [sym__atom] = STATE(2148), - [sym_quoted_atom] = STATE(2148), - [sym__quoted_i_double] = STATE(2235), - [sym__quoted_i_single] = STATE(2189), - [sym__quoted_i_heredoc_single] = STATE(2713), - [sym__quoted_i_heredoc_double] = STATE(2714), - [sym_string] = STATE(2148), - [sym_charlist] = STATE(2148), - [sym_sigil] = STATE(2148), - [sym_keywords] = STATE(2580), - [sym_pair] = STATE(2129), - [sym__keyword] = STATE(726), - [sym_quoted_keyword] = STATE(726), - [sym_list] = STATE(2148), - [sym_tuple] = STATE(2148), - [sym_bitstring] = STATE(2148), - [sym_map] = STATE(2148), - [sym_unary_operator] = STATE(2148), - [sym_binary_operator] = STATE(2148), - [sym_operator_identifier] = STATE(4988), - [sym_dot] = STATE(2148), - [sym_call] = STATE(2148), - [sym__call_without_parentheses] = STATE(2712), - [sym__call_with_parentheses] = STATE(2711), - [sym__local_call_without_parentheses] = STATE(2710), - [sym__local_call_with_parentheses] = STATE(1879), - [sym__local_call_just_do_block] = STATE(2709), - [sym__remote_call_without_parentheses] = STATE(2708), - [sym__remote_call_with_parentheses] = STATE(1859), - [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1919), - [sym__anonymous_dot] = STATE(4871), - [sym__double_call] = STATE(2707), - [sym__call_arguments_with_parentheses_immediate] = STATE(1982), - [sym__call_arguments_without_parentheses] = STATE(2264), - [sym_do_block] = STATE(2664), - [sym_access_call] = STATE(2148), - [sym_anonymous_function] = STATE(2148), - [ts_builtin_sym_end] = ACTIONS(250), - [aux_sym__terminator_token1] = ACTIONS(250), - [anon_sym_SEMI] = ACTIONS(252), - [anon_sym_LPAREN] = ACTIONS(479), - [aux_sym_identifier_token1] = ACTIONS(481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(481), - [sym_unused_identifier] = ACTIONS(483), - [anon_sym___MODULE__] = ACTIONS(485), - [anon_sym___DIR__] = ACTIONS(485), - [anon_sym___ENV__] = ACTIONS(485), - [anon_sym___CALLER__] = ACTIONS(485), - [anon_sym___STACKTRACE__] = ACTIONS(485), - [sym_alias] = ACTIONS(487), - [sym_integer] = ACTIONS(487), - [sym_float] = ACTIONS(487), - [sym_char] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_nil] = ACTIONS(491), - [sym_atom] = ACTIONS(487), - [anon_sym_DQUOTE] = ACTIONS(493), - [anon_sym_SQUOTE] = ACTIONS(495), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(497), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(499), - [anon_sym_LBRACE] = ACTIONS(501), - [anon_sym_LBRACK] = ACTIONS(503), - [anon_sym_LT] = ACTIONS(252), - [anon_sym_GT] = ACTIONS(252), - [anon_sym_PIPE] = ACTIONS(252), - [anon_sym_SLASH] = ACTIONS(252), - [anon_sym_TILDE] = ACTIONS(505), - [anon_sym_COMMA] = ACTIONS(252), - [sym_keyword] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(252), - [anon_sym_DASH] = ACTIONS(252), - [anon_sym_BANG] = ACTIONS(515), - [anon_sym_CARET] = ACTIONS(515), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(515), - [anon_sym_not] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(517), - [anon_sym_LT_DASH] = ACTIONS(252), - [anon_sym_BSLASH_BSLASH] = ACTIONS(252), - [anon_sym_when] = ACTIONS(252), - [anon_sym_COLON_COLON] = ACTIONS(252), - [anon_sym_EQ_GT] = ACTIONS(252), - [anon_sym_EQ] = ACTIONS(252), - [anon_sym_PIPE_PIPE] = ACTIONS(252), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(252), - [anon_sym_or] = ACTIONS(252), - [anon_sym_AMP_AMP] = ACTIONS(252), - [anon_sym_AMP_AMP_AMP] = ACTIONS(252), - [anon_sym_and] = ACTIONS(252), - [anon_sym_EQ_EQ] = ACTIONS(252), - [anon_sym_BANG_EQ] = ACTIONS(252), - [anon_sym_EQ_TILDE] = ACTIONS(252), - [anon_sym_EQ_EQ_EQ] = ACTIONS(252), - [anon_sym_BANG_EQ_EQ] = ACTIONS(252), - [anon_sym_LT_EQ] = ACTIONS(252), - [anon_sym_GT_EQ] = ACTIONS(252), - [anon_sym_PIPE_GT] = ACTIONS(252), - [anon_sym_LT_LT_LT] = ACTIONS(252), - [anon_sym_GT_GT_GT] = ACTIONS(252), - [anon_sym_LT_LT_TILDE] = ACTIONS(252), - [anon_sym_TILDE_GT_GT] = ACTIONS(252), - [anon_sym_LT_TILDE] = ACTIONS(252), - [anon_sym_TILDE_GT] = ACTIONS(252), - [anon_sym_LT_TILDE_GT] = ACTIONS(252), - [anon_sym_LT_PIPE_GT] = ACTIONS(252), - [anon_sym_in] = ACTIONS(252), - [anon_sym_CARET_CARET_CARET] = ACTIONS(252), - [anon_sym_SLASH_SLASH] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(252), - [anon_sym_DASH_DASH] = ACTIONS(252), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(252), - [anon_sym_DASH_DASH_DASH] = ACTIONS(252), - [anon_sym_DOT_DOT] = ACTIONS(252), - [anon_sym_LT_GT] = ACTIONS(252), - [anon_sym_STAR] = ACTIONS(252), - [anon_sym_STAR_STAR] = ACTIONS(252), + [sym__expression] = STATE(2183), + [sym_block] = STATE(2183), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2183), + [sym_nil] = STATE(2183), + [sym__atom] = STATE(2183), + [sym_quoted_atom] = STATE(2183), + [sym__quoted_i_double] = STATE(1096), + [sym__quoted_i_single] = STATE(1095), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(2183), + [sym_charlist] = STATE(2183), + [sym_sigil] = STATE(2183), + [sym_keywords] = STATE(1269), + [sym_pair] = STATE(2110), + [sym__keyword] = STATE(873), + [sym_quoted_keyword] = STATE(873), + [sym_list] = STATE(2183), + [sym_tuple] = STATE(2183), + [sym_bitstring] = STATE(2183), + [sym_map] = STATE(2183), + [sym_unary_operator] = STATE(2183), + [sym_binary_operator] = STATE(2183), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(2183), + [sym_call] = STATE(2183), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym__call_arguments_with_parentheses_immediate] = STATE(1087), + [sym__call_arguments_without_parentheses] = STATE(1120), + [sym_do_block] = STATE(1650), + [sym_access_call] = STATE(2183), + [sym_anonymous_function] = STATE(2183), + [aux_sym__terminator_token1] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_RPAREN] = ACTIONS(191), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(461), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), + [sym_alias] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(465), + [sym_char] = ACTIONS(465), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(465), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_COMMA] = ACTIONS(191), + [sym_keyword] = ACTIONS(469), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_CARET] = ACTIONS(476), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(476), + [anon_sym_not] = ACTIONS(476), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_LT_DASH] = ACTIONS(191), + [anon_sym_BSLASH_BSLASH] = ACTIONS(191), + [anon_sym_when] = ACTIONS(191), + [anon_sym_COLON_COLON] = ACTIONS(191), + [anon_sym_EQ_GT] = ACTIONS(191), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_PIPE_PIPE] = ACTIONS(191), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(191), + [anon_sym_or] = ACTIONS(191), + [anon_sym_AMP_AMP] = ACTIONS(191), + [anon_sym_AMP_AMP_AMP] = ACTIONS(191), + [anon_sym_and] = ACTIONS(191), + [anon_sym_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ] = ACTIONS(191), + [anon_sym_EQ_TILDE] = ACTIONS(191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(191), + [anon_sym_LT_EQ] = ACTIONS(191), + [anon_sym_GT_EQ] = ACTIONS(191), + [anon_sym_PIPE_GT] = ACTIONS(191), + [anon_sym_LT_LT_LT] = ACTIONS(191), + [anon_sym_GT_GT_GT] = ACTIONS(191), + [anon_sym_LT_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT_GT] = ACTIONS(191), + [anon_sym_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_PIPE_GT] = ACTIONS(191), + [anon_sym_in] = ACTIONS(191), + [anon_sym_CARET_CARET_CARET] = ACTIONS(191), + [anon_sym_SLASH_SLASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH_DASH] = ACTIONS(191), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_LT_GT] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_STAR_STAR] = ACTIONS(191), [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(252), - [anon_sym_do] = ACTIONS(252), - [anon_sym_fn] = ACTIONS(519), - [anon_sym_LPAREN2] = ACTIONS(521), - [anon_sym_LBRACK2] = ACTIONS(250), + [anon_sym_DASH_GT] = ACTIONS(191), + [anon_sym_DOT] = ACTIONS(191), + [anon_sym_do] = ACTIONS(233), + [anon_sym_fn] = ACTIONS(235), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_LBRACK2] = ACTIONS(189), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(250), + [sym__newline_before_do] = ACTIONS(239), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(523), - [sym__not_in] = ACTIONS(250), - [sym__quoted_atom_start] = ACTIONS(525), + [sym__before_unary_op] = ACTIONS(480), + [sym__not_in] = ACTIONS(189), + [sym__quoted_atom_start] = ACTIONS(243), }, [44] = { - [sym__expression] = STATE(1979), - [sym_block] = STATE(1979), - [sym__identifier] = STATE(48), - [sym_identifier] = STATE(48), - [sym_special_identifier] = STATE(48), - [sym_boolean] = STATE(1979), - [sym_nil] = STATE(1979), - [sym__atom] = STATE(1979), - [sym_quoted_atom] = STATE(1979), - [sym__quoted_i_double] = STATE(1114), - [sym__quoted_i_single] = STATE(1100), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(1979), - [sym_charlist] = STATE(1979), - [sym_sigil] = STATE(1979), - [sym_keywords] = STATE(1147), - [sym_pair] = STATE(1886), - [sym__keyword] = STATE(786), - [sym_quoted_keyword] = STATE(786), - [sym_list] = STATE(1979), - [sym_tuple] = STATE(1979), - [sym_bitstring] = STATE(1979), - [sym_map] = STATE(1979), - [sym_unary_operator] = STATE(1979), - [sym_binary_operator] = STATE(1979), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(1979), - [sym_call] = STATE(1979), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym__call_arguments_with_parentheses_immediate] = STATE(1087), - [sym__call_arguments_without_parentheses] = STATE(1122), - [sym_do_block] = STATE(1238), - [sym_access_call] = STATE(1979), - [sym_anonymous_function] = STATE(1979), - [aux_sym__terminator_token1] = ACTIONS(250), - [anon_sym_SEMI] = ACTIONS(252), - [anon_sym_LPAREN] = ACTIONS(254), - [anon_sym_RPAREN] = ACTIONS(252), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(527), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(529), - [sym_integer] = ACTIONS(529), - [sym_float] = ACTIONS(529), - [sym_char] = ACTIONS(529), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(252), - [anon_sym_GT] = ACTIONS(252), - [anon_sym_PIPE] = ACTIONS(252), - [anon_sym_SLASH] = ACTIONS(252), - [anon_sym_TILDE] = ACTIONS(531), - [anon_sym_COMMA] = ACTIONS(252), - [sym_keyword] = ACTIONS(533), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(252), - [anon_sym_DASH] = ACTIONS(252), - [anon_sym_BANG] = ACTIONS(537), - [anon_sym_CARET] = ACTIONS(537), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), - [anon_sym_not] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(539), - [anon_sym_LT_DASH] = ACTIONS(252), - [anon_sym_BSLASH_BSLASH] = ACTIONS(252), - [anon_sym_when] = ACTIONS(252), - [anon_sym_COLON_COLON] = ACTIONS(252), - [anon_sym_EQ_GT] = ACTIONS(252), - [anon_sym_EQ] = ACTIONS(252), - [anon_sym_PIPE_PIPE] = ACTIONS(252), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(252), - [anon_sym_or] = ACTIONS(252), - [anon_sym_AMP_AMP] = ACTIONS(252), - [anon_sym_AMP_AMP_AMP] = ACTIONS(252), - [anon_sym_and] = ACTIONS(252), - [anon_sym_EQ_EQ] = ACTIONS(252), - [anon_sym_BANG_EQ] = ACTIONS(252), - [anon_sym_EQ_TILDE] = ACTIONS(252), - [anon_sym_EQ_EQ_EQ] = ACTIONS(252), - [anon_sym_BANG_EQ_EQ] = ACTIONS(252), - [anon_sym_LT_EQ] = ACTIONS(252), - [anon_sym_GT_EQ] = ACTIONS(252), - [anon_sym_PIPE_GT] = ACTIONS(252), - [anon_sym_LT_LT_LT] = ACTIONS(252), - [anon_sym_GT_GT_GT] = ACTIONS(252), - [anon_sym_LT_LT_TILDE] = ACTIONS(252), - [anon_sym_TILDE_GT_GT] = ACTIONS(252), - [anon_sym_LT_TILDE] = ACTIONS(252), - [anon_sym_TILDE_GT] = ACTIONS(252), - [anon_sym_LT_TILDE_GT] = ACTIONS(252), - [anon_sym_LT_PIPE_GT] = ACTIONS(252), - [anon_sym_in] = ACTIONS(252), - [anon_sym_CARET_CARET_CARET] = ACTIONS(252), - [anon_sym_SLASH_SLASH] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(252), - [anon_sym_DASH_DASH] = ACTIONS(252), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(252), - [anon_sym_DASH_DASH_DASH] = ACTIONS(252), - [anon_sym_DOT_DOT] = ACTIONS(252), - [anon_sym_LT_GT] = ACTIONS(252), - [anon_sym_STAR] = ACTIONS(252), - [anon_sym_STAR_STAR] = ACTIONS(252), + [sym__expression] = STATE(2338), + [sym_block] = STATE(2338), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(2338), + [sym_nil] = STATE(2338), + [sym__atom] = STATE(2338), + [sym_quoted_atom] = STATE(2338), + [sym__quoted_i_double] = STATE(1276), + [sym__quoted_i_single] = STATE(1277), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(2338), + [sym_charlist] = STATE(2338), + [sym_sigil] = STATE(2338), + [sym_keywords] = STATE(1451), + [sym_pair] = STATE(2388), + [sym__keyword] = STATE(505), + [sym_quoted_keyword] = STATE(505), + [sym_list] = STATE(2338), + [sym_tuple] = STATE(2338), + [sym_bitstring] = STATE(2338), + [sym_map] = STATE(2338), + [sym_unary_operator] = STATE(2338), + [sym_binary_operator] = STATE(2338), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(2338), + [sym_call] = STATE(2338), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym__call_arguments_with_parentheses_immediate] = STATE(1097), + [sym__call_arguments_without_parentheses] = STATE(1149), + [sym_do_block] = STATE(1453), + [sym_access_call] = STATE(2338), + [sym_anonymous_function] = STATE(2338), + [aux_sym__terminator_token1] = ACTIONS(245), + [anon_sym_SEMI] = ACTIONS(247), + [anon_sym_LPAREN] = ACTIONS(249), + [anon_sym_RPAREN] = ACTIONS(247), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(482), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), + [sym_alias] = ACTIONS(484), + [sym_integer] = ACTIONS(484), + [sym_float] = ACTIONS(484), + [sym_char] = ACTIONS(484), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(484), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(486), + [anon_sym_COMMA] = ACTIONS(247), + [sym_keyword] = ACTIONS(488), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_CARET] = ACTIONS(495), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(495), + [anon_sym_not] = ACTIONS(495), + [anon_sym_AT] = ACTIONS(497), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_BSLASH_BSLASH] = ACTIONS(271), + [anon_sym_when] = ACTIONS(271), + [anon_sym_COLON_COLON] = ACTIONS(271), + [anon_sym_EQ_GT] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_PIPE_PIPE] = ACTIONS(271), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(271), + [anon_sym_AMP_AMP_AMP] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_EQ_TILDE] = ACTIONS(271), + [anon_sym_EQ_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ_EQ] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_PIPE_GT] = ACTIONS(271), + [anon_sym_LT_LT_LT] = ACTIONS(271), + [anon_sym_GT_GT_GT] = ACTIONS(271), + [anon_sym_LT_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT_GT] = ACTIONS(271), + [anon_sym_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_PIPE_GT] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_CARET_CARET_CARET] = ACTIONS(247), + [anon_sym_SLASH_SLASH] = ACTIONS(247), + [anon_sym_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH] = ACTIONS(271), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH_DASH] = ACTIONS(271), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(252), - [anon_sym_DOT] = ACTIONS(252), - [anon_sym_do] = ACTIONS(252), - [anon_sym_fn] = ACTIONS(290), - [anon_sym_LPAREN2] = ACTIONS(292), - [anon_sym_LBRACK2] = ACTIONS(250), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_do] = ACTIONS(247), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_LPAREN2] = ACTIONS(293), + [anon_sym_LBRACK2] = ACTIONS(245), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(250), + [sym__newline_before_do] = ACTIONS(245), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(541), - [sym__not_in] = ACTIONS(250), - [sym__quoted_atom_start] = ACTIONS(296), + [sym__before_unary_op] = ACTIONS(499), + [sym__not_in] = ACTIONS(297), + [sym__quoted_atom_start] = ACTIONS(300), }, [45] = { - [sym__expression] = STATE(2148), - [sym_block] = STATE(2148), - [sym__identifier] = STATE(45), - [sym_identifier] = STATE(45), - [sym_special_identifier] = STATE(45), - [sym_boolean] = STATE(2148), - [sym_nil] = STATE(2148), - [sym__atom] = STATE(2148), - [sym_quoted_atom] = STATE(2148), - [sym__quoted_i_double] = STATE(2235), - [sym__quoted_i_single] = STATE(2189), - [sym__quoted_i_heredoc_single] = STATE(2713), - [sym__quoted_i_heredoc_double] = STATE(2714), - [sym_string] = STATE(2148), - [sym_charlist] = STATE(2148), - [sym_sigil] = STATE(2148), - [sym_keywords] = STATE(2580), - [sym_pair] = STATE(2129), - [sym__keyword] = STATE(726), - [sym_quoted_keyword] = STATE(726), - [sym_list] = STATE(2148), - [sym_tuple] = STATE(2148), - [sym_bitstring] = STATE(2148), - [sym_map] = STATE(2148), - [sym_unary_operator] = STATE(2148), - [sym_binary_operator] = STATE(2148), - [sym_operator_identifier] = STATE(4988), - [sym_dot] = STATE(2148), - [sym_call] = STATE(2148), - [sym__call_without_parentheses] = STATE(2712), - [sym__call_with_parentheses] = STATE(2711), - [sym__local_call_without_parentheses] = STATE(2710), - [sym__local_call_with_parentheses] = STATE(1879), - [sym__local_call_just_do_block] = STATE(2709), - [sym__remote_call_without_parentheses] = STATE(2708), - [sym__remote_call_with_parentheses] = STATE(1859), - [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1919), - [sym__anonymous_dot] = STATE(4871), - [sym__double_call] = STATE(2707), - [sym__call_arguments_with_parentheses_immediate] = STATE(1977), - [sym__call_arguments_without_parentheses] = STATE(2268), - [sym_do_block] = STATE(2665), - [sym_access_call] = STATE(2148), - [sym_anonymous_function] = STATE(2148), + [sym__expression] = STATE(2338), + [sym_block] = STATE(2338), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(2338), + [sym_nil] = STATE(2338), + [sym__atom] = STATE(2338), + [sym_quoted_atom] = STATE(2338), + [sym__quoted_i_double] = STATE(1276), + [sym__quoted_i_single] = STATE(1277), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(2338), + [sym_charlist] = STATE(2338), + [sym_sigil] = STATE(2338), + [sym_keywords] = STATE(1451), + [sym_pair] = STATE(2388), + [sym__keyword] = STATE(505), + [sym_quoted_keyword] = STATE(505), + [sym_list] = STATE(2338), + [sym_tuple] = STATE(2338), + [sym_bitstring] = STATE(2338), + [sym_map] = STATE(2338), + [sym_unary_operator] = STATE(2338), + [sym_binary_operator] = STATE(2338), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(2338), + [sym_call] = STATE(2338), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym__call_arguments_with_parentheses_immediate] = STATE(1118), + [sym__call_arguments_without_parentheses] = STATE(1281), + [sym_do_block] = STATE(1817), + [sym_access_call] = STATE(2338), + [sym_anonymous_function] = STATE(2338), + [aux_sym__terminator_token1] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(249), + [anon_sym_RPAREN] = ACTIONS(191), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(482), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), + [sym_alias] = ACTIONS(484), + [sym_integer] = ACTIONS(484), + [sym_float] = ACTIONS(484), + [sym_char] = ACTIONS(484), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(484), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(486), + [anon_sym_COMMA] = ACTIONS(191), + [sym_keyword] = ACTIONS(488), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_CARET] = ACTIONS(495), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(495), + [anon_sym_not] = ACTIONS(495), + [anon_sym_AT] = ACTIONS(497), + [anon_sym_LT_DASH] = ACTIONS(191), + [anon_sym_BSLASH_BSLASH] = ACTIONS(191), + [anon_sym_when] = ACTIONS(191), + [anon_sym_COLON_COLON] = ACTIONS(191), + [anon_sym_EQ_GT] = ACTIONS(191), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_PIPE_PIPE] = ACTIONS(191), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(191), + [anon_sym_or] = ACTIONS(191), + [anon_sym_AMP_AMP] = ACTIONS(191), + [anon_sym_AMP_AMP_AMP] = ACTIONS(191), + [anon_sym_and] = ACTIONS(191), + [anon_sym_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ] = ACTIONS(191), + [anon_sym_EQ_TILDE] = ACTIONS(191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(191), + [anon_sym_LT_EQ] = ACTIONS(191), + [anon_sym_GT_EQ] = ACTIONS(191), + [anon_sym_PIPE_GT] = ACTIONS(191), + [anon_sym_LT_LT_LT] = ACTIONS(191), + [anon_sym_GT_GT_GT] = ACTIONS(191), + [anon_sym_LT_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT_GT] = ACTIONS(191), + [anon_sym_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_PIPE_GT] = ACTIONS(191), + [anon_sym_in] = ACTIONS(191), + [anon_sym_CARET_CARET_CARET] = ACTIONS(191), + [anon_sym_SLASH_SLASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH_DASH] = ACTIONS(191), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_LT_GT] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_STAR_STAR] = ACTIONS(191), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(191), + [anon_sym_do] = ACTIONS(305), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_LPAREN2] = ACTIONS(293), + [anon_sym_LBRACK2] = ACTIONS(189), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(307), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(499), + [sym__not_in] = ACTIONS(189), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [46] = { + [sym__expression] = STATE(2217), + [sym_block] = STATE(2217), + [sym__identifier] = STATE(51), + [sym_identifier] = STATE(51), + [sym_special_identifier] = STATE(51), + [sym_boolean] = STATE(2217), + [sym_nil] = STATE(2217), + [sym__atom] = STATE(2217), + [sym_quoted_atom] = STATE(2217), + [sym__quoted_i_double] = STATE(2651), + [sym__quoted_i_single] = STATE(2652), + [sym__quoted_i_heredoc_single] = STATE(2751), + [sym__quoted_i_heredoc_double] = STATE(2852), + [sym_string] = STATE(2217), + [sym_charlist] = STATE(2217), + [sym_sigil] = STATE(2217), + [sym_keywords] = STATE(2703), + [sym_pair] = STATE(2277), + [sym__keyword] = STATE(780), + [sym_quoted_keyword] = STATE(780), + [sym_list] = STATE(2217), + [sym_tuple] = STATE(2217), + [sym_bitstring] = STATE(2217), + [sym_map] = STATE(2217), + [sym_unary_operator] = STATE(2217), + [sym_binary_operator] = STATE(2217), + [sym_operator_identifier] = STATE(5596), + [sym_dot] = STATE(2217), + [sym_call] = STATE(2217), + [sym__call_without_parentheses] = STATE(2764), + [sym__call_with_parentheses] = STATE(2765), + [sym__local_call_without_parentheses] = STATE(2767), + [sym__local_call_with_parentheses] = STATE(2120), + [sym__local_call_just_do_block] = STATE(2833), + [sym__remote_call_without_parentheses] = STATE(2843), + [sym__remote_call_with_parentheses] = STATE(2108), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2107), + [sym__anonymous_dot] = STATE(5500), + [sym__double_call] = STATE(2844), + [sym__call_arguments_with_parentheses_immediate] = STATE(2041), + [sym__call_arguments_without_parentheses] = STATE(2346), + [sym_do_block] = STATE(2887), + [sym_access_call] = STATE(2217), + [sym_anonymous_function] = STATE(2217), [ts_builtin_sym_end] = ACTIONS(189), [aux_sym__terminator_token1] = ACTIONS(189), [anon_sym_SEMI] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(479), - [aux_sym_identifier_token1] = ACTIONS(481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(481), - [sym_unused_identifier] = ACTIONS(483), - [anon_sym___MODULE__] = ACTIONS(485), - [anon_sym___DIR__] = ACTIONS(485), - [anon_sym___ENV__] = ACTIONS(485), - [anon_sym___CALLER__] = ACTIONS(485), - [anon_sym___STACKTRACE__] = ACTIONS(485), - [sym_alias] = ACTIONS(487), - [sym_integer] = ACTIONS(487), - [sym_float] = ACTIONS(487), - [sym_char] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_nil] = ACTIONS(491), - [sym_atom] = ACTIONS(487), - [anon_sym_DQUOTE] = ACTIONS(493), - [anon_sym_SQUOTE] = ACTIONS(495), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(497), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(499), - [anon_sym_LBRACE] = ACTIONS(501), - [anon_sym_LBRACK] = ACTIONS(503), - [anon_sym_LT] = ACTIONS(219), - [anon_sym_GT] = ACTIONS(219), - [anon_sym_PIPE] = ACTIONS(219), - [anon_sym_SLASH] = ACTIONS(219), - [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(509), + [sym_integer] = ACTIONS(509), + [sym_float] = ACTIONS(509), + [sym_char] = ACTIONS(509), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(527), [anon_sym_COMMA] = ACTIONS(191), - [sym_keyword] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(543), - [anon_sym_BANG] = ACTIONS(515), - [anon_sym_CARET] = ACTIONS(515), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(515), - [anon_sym_not] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(517), - [anon_sym_LT_DASH] = ACTIONS(219), - [anon_sym_BSLASH_BSLASH] = ACTIONS(219), - [anon_sym_when] = ACTIONS(219), - [anon_sym_COLON_COLON] = ACTIONS(219), + [sym_keyword] = ACTIONS(529), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(191), + [anon_sym_BSLASH_BSLASH] = ACTIONS(191), + [anon_sym_when] = ACTIONS(191), + [anon_sym_COLON_COLON] = ACTIONS(191), [anon_sym_EQ_GT] = ACTIONS(191), - [anon_sym_EQ] = ACTIONS(219), - [anon_sym_PIPE_PIPE] = ACTIONS(219), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(219), - [anon_sym_or] = ACTIONS(219), - [anon_sym_AMP_AMP] = ACTIONS(219), - [anon_sym_AMP_AMP_AMP] = ACTIONS(219), - [anon_sym_and] = ACTIONS(219), - [anon_sym_EQ_EQ] = ACTIONS(219), - [anon_sym_BANG_EQ] = ACTIONS(219), - [anon_sym_EQ_TILDE] = ACTIONS(219), - [anon_sym_EQ_EQ_EQ] = ACTIONS(219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(219), - [anon_sym_LT_EQ] = ACTIONS(219), - [anon_sym_GT_EQ] = ACTIONS(219), - [anon_sym_PIPE_GT] = ACTIONS(219), - [anon_sym_LT_LT_LT] = ACTIONS(219), - [anon_sym_GT_GT_GT] = ACTIONS(219), - [anon_sym_LT_LT_TILDE] = ACTIONS(219), - [anon_sym_TILDE_GT_GT] = ACTIONS(219), - [anon_sym_LT_TILDE] = ACTIONS(219), - [anon_sym_TILDE_GT] = ACTIONS(219), - [anon_sym_LT_TILDE_GT] = ACTIONS(219), - [anon_sym_LT_PIPE_GT] = ACTIONS(219), - [anon_sym_in] = ACTIONS(219), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_PIPE_PIPE] = ACTIONS(191), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(191), + [anon_sym_or] = ACTIONS(191), + [anon_sym_AMP_AMP] = ACTIONS(191), + [anon_sym_AMP_AMP_AMP] = ACTIONS(191), + [anon_sym_and] = ACTIONS(191), + [anon_sym_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ] = ACTIONS(191), + [anon_sym_EQ_TILDE] = ACTIONS(191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(191), + [anon_sym_LT_EQ] = ACTIONS(191), + [anon_sym_GT_EQ] = ACTIONS(191), + [anon_sym_PIPE_GT] = ACTIONS(191), + [anon_sym_LT_LT_LT] = ACTIONS(191), + [anon_sym_GT_GT_GT] = ACTIONS(191), + [anon_sym_LT_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT_GT] = ACTIONS(191), + [anon_sym_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_PIPE_GT] = ACTIONS(191), + [anon_sym_in] = ACTIONS(191), [anon_sym_CARET_CARET_CARET] = ACTIONS(191), [anon_sym_SLASH_SLASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(219), - [anon_sym_DASH_DASH] = ACTIONS(219), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(219), - [anon_sym_DASH_DASH_DASH] = ACTIONS(219), - [anon_sym_DOT_DOT] = ACTIONS(219), - [anon_sym_LT_GT] = ACTIONS(219), - [anon_sym_STAR] = ACTIONS(219), - [anon_sym_STAR_STAR] = ACTIONS(219), + [anon_sym_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH_DASH] = ACTIONS(191), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_LT_GT] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_STAR_STAR] = ACTIONS(191), [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(219), + [anon_sym_DOT] = ACTIONS(191), [anon_sym_do] = ACTIONS(191), - [anon_sym_fn] = ACTIONS(519), - [anon_sym_LPAREN2] = ACTIONS(521), + [anon_sym_fn] = ACTIONS(541), + [anon_sym_LPAREN2] = ACTIONS(543), [anon_sym_LBRACK2] = ACTIONS(189), [sym_comment] = ACTIONS(5), [sym__newline_before_do] = ACTIONS(189), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(523), - [sym__not_in] = ACTIONS(245), - [sym__quoted_atom_start] = ACTIONS(525), - }, - [46] = { - [sym__expression] = STATE(2148), - [sym_block] = STATE(2148), - [sym__identifier] = STATE(45), - [sym_identifier] = STATE(45), - [sym_special_identifier] = STATE(45), - [sym_boolean] = STATE(2148), - [sym_nil] = STATE(2148), - [sym__atom] = STATE(2148), - [sym_quoted_atom] = STATE(2148), - [sym__quoted_i_double] = STATE(2235), - [sym__quoted_i_single] = STATE(2189), - [sym__quoted_i_heredoc_single] = STATE(2713), - [sym__quoted_i_heredoc_double] = STATE(2714), - [sym_string] = STATE(2148), - [sym_charlist] = STATE(2148), - [sym_sigil] = STATE(2148), - [sym_keywords] = STATE(2580), - [sym_pair] = STATE(2129), - [sym__keyword] = STATE(726), - [sym_quoted_keyword] = STATE(726), - [sym_list] = STATE(2148), - [sym_tuple] = STATE(2148), - [sym_bitstring] = STATE(2148), - [sym_map] = STATE(2148), - [sym_unary_operator] = STATE(2148), - [sym_binary_operator] = STATE(2148), - [sym_operator_identifier] = STATE(4988), - [sym_dot] = STATE(2148), - [sym_call] = STATE(2148), - [sym__call_without_parentheses] = STATE(2712), - [sym__call_with_parentheses] = STATE(2711), - [sym__local_call_without_parentheses] = STATE(2710), - [sym__local_call_with_parentheses] = STATE(1879), - [sym__local_call_just_do_block] = STATE(2709), - [sym__remote_call_without_parentheses] = STATE(2708), - [sym__remote_call_with_parentheses] = STATE(1859), - [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1919), - [sym__anonymous_dot] = STATE(4871), - [sym__double_call] = STATE(2707), - [sym__call_arguments_with_parentheses_immediate] = STATE(1898), - [sym__call_arguments_without_parentheses] = STATE(2037), - [sym_do_block] = STATE(3242), - [sym_access_call] = STATE(2148), - [sym_anonymous_function] = STATE(2148), - [ts_builtin_sym_end] = ACTIONS(250), - [aux_sym__terminator_token1] = ACTIONS(250), - [anon_sym_SEMI] = ACTIONS(252), - [anon_sym_LPAREN] = ACTIONS(479), - [aux_sym_identifier_token1] = ACTIONS(481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(481), - [sym_unused_identifier] = ACTIONS(483), - [anon_sym___MODULE__] = ACTIONS(485), - [anon_sym___DIR__] = ACTIONS(485), - [anon_sym___ENV__] = ACTIONS(485), - [anon_sym___CALLER__] = ACTIONS(485), - [anon_sym___STACKTRACE__] = ACTIONS(485), - [sym_alias] = ACTIONS(487), - [sym_integer] = ACTIONS(487), - [sym_float] = ACTIONS(487), - [sym_char] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_nil] = ACTIONS(491), - [sym_atom] = ACTIONS(487), - [anon_sym_DQUOTE] = ACTIONS(493), - [anon_sym_SQUOTE] = ACTIONS(495), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(497), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(499), - [anon_sym_LBRACE] = ACTIONS(501), - [anon_sym_LBRACK] = ACTIONS(503), - [anon_sym_LT] = ACTIONS(252), - [anon_sym_GT] = ACTIONS(252), - [anon_sym_PIPE] = ACTIONS(252), - [anon_sym_SLASH] = ACTIONS(252), - [anon_sym_TILDE] = ACTIONS(505), - [anon_sym_COMMA] = ACTIONS(252), - [sym_keyword] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(252), - [anon_sym_DASH] = ACTIONS(252), - [anon_sym_BANG] = ACTIONS(515), - [anon_sym_CARET] = ACTIONS(515), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(515), - [anon_sym_not] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(517), - [anon_sym_LT_DASH] = ACTIONS(252), - [anon_sym_BSLASH_BSLASH] = ACTIONS(252), - [anon_sym_when] = ACTIONS(252), - [anon_sym_COLON_COLON] = ACTIONS(252), - [anon_sym_EQ_GT] = ACTIONS(252), - [anon_sym_EQ] = ACTIONS(252), - [anon_sym_PIPE_PIPE] = ACTIONS(252), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(252), - [anon_sym_or] = ACTIONS(252), - [anon_sym_AMP_AMP] = ACTIONS(252), - [anon_sym_AMP_AMP_AMP] = ACTIONS(252), - [anon_sym_and] = ACTIONS(252), - [anon_sym_EQ_EQ] = ACTIONS(252), - [anon_sym_BANG_EQ] = ACTIONS(252), - [anon_sym_EQ_TILDE] = ACTIONS(252), - [anon_sym_EQ_EQ_EQ] = ACTIONS(252), - [anon_sym_BANG_EQ_EQ] = ACTIONS(252), - [anon_sym_LT_EQ] = ACTIONS(252), - [anon_sym_GT_EQ] = ACTIONS(252), - [anon_sym_PIPE_GT] = ACTIONS(252), - [anon_sym_LT_LT_LT] = ACTIONS(252), - [anon_sym_GT_GT_GT] = ACTIONS(252), - [anon_sym_LT_LT_TILDE] = ACTIONS(252), - [anon_sym_TILDE_GT_GT] = ACTIONS(252), - [anon_sym_LT_TILDE] = ACTIONS(252), - [anon_sym_TILDE_GT] = ACTIONS(252), - [anon_sym_LT_TILDE_GT] = ACTIONS(252), - [anon_sym_LT_PIPE_GT] = ACTIONS(252), - [anon_sym_in] = ACTIONS(252), - [anon_sym_CARET_CARET_CARET] = ACTIONS(252), - [anon_sym_SLASH_SLASH] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(252), - [anon_sym_DASH_DASH] = ACTIONS(252), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(252), - [anon_sym_DASH_DASH_DASH] = ACTIONS(252), - [anon_sym_DOT_DOT] = ACTIONS(252), - [anon_sym_LT_GT] = ACTIONS(252), - [anon_sym_STAR] = ACTIONS(252), - [anon_sym_STAR_STAR] = ACTIONS(252), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(252), - [anon_sym_do] = ACTIONS(546), - [anon_sym_fn] = ACTIONS(519), - [anon_sym_LPAREN2] = ACTIONS(521), - [anon_sym_LBRACK2] = ACTIONS(250), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(548), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(523), - [sym__not_in] = ACTIONS(250), - [sym__quoted_atom_start] = ACTIONS(525), + [sym__before_unary_op] = ACTIONS(545), + [sym__not_in] = ACTIONS(189), + [sym__quoted_atom_start] = ACTIONS(547), }, [47] = { - [sym__expression] = STATE(2270), - [sym_block] = STATE(2270), - [sym__identifier] = STATE(47), - [sym_identifier] = STATE(47), - [sym_special_identifier] = STATE(47), - [sym_boolean] = STATE(2270), - [sym_nil] = STATE(2270), - [sym__atom] = STATE(2270), - [sym_quoted_atom] = STATE(2270), - [sym__quoted_i_double] = STATE(1146), - [sym__quoted_i_single] = STATE(1145), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2270), - [sym_charlist] = STATE(2270), - [sym_sigil] = STATE(2270), - [sym_keywords] = STATE(1363), - [sym_pair] = STATE(2125), - [sym__keyword] = STATE(492), - [sym_quoted_keyword] = STATE(492), - [sym_list] = STATE(2270), - [sym_tuple] = STATE(2270), - [sym_bitstring] = STATE(2270), - [sym_map] = STATE(2270), - [sym_unary_operator] = STATE(2270), - [sym_binary_operator] = STATE(2270), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2270), - [sym_call] = STATE(2270), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(41), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym__call_arguments_with_parentheses_immediate] = STATE(1096), - [sym__call_arguments_without_parentheses] = STATE(1149), - [sym_do_block] = STATE(1419), - [sym_access_call] = STATE(2270), - [sym_anonymous_function] = STATE(2270), + [sym__expression] = STATE(2638), + [sym_block] = STATE(2638), + [sym__identifier] = STATE(41), + [sym_identifier] = STATE(41), + [sym_special_identifier] = STATE(41), + [sym_boolean] = STATE(2638), + [sym_nil] = STATE(2638), + [sym__atom] = STATE(2638), + [sym_quoted_atom] = STATE(2638), + [sym__quoted_i_double] = STATE(1276), + [sym__quoted_i_single] = STATE(1277), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(2638), + [sym_charlist] = STATE(2638), + [sym_sigil] = STATE(2638), + [sym_keywords] = STATE(1451), + [sym_pair] = STATE(2214), + [sym__keyword] = STATE(799), + [sym_quoted_keyword] = STATE(799), + [sym_list] = STATE(2638), + [sym_tuple] = STATE(2638), + [sym_bitstring] = STATE(2638), + [sym_map] = STATE(2638), + [sym_unary_operator] = STATE(2638), + [sym_binary_operator] = STATE(2638), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(2638), + [sym_call] = STATE(2638), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym__call_arguments_with_parentheses_immediate] = STATE(1118), + [sym__call_arguments_without_parentheses] = STATE(1281), + [sym_do_block] = STATE(1817), + [sym_access_call] = STATE(2638), + [sym_anonymous_function] = STATE(2638), [aux_sym__terminator_token1] = ACTIONS(189), [anon_sym_SEMI] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_RPAREN] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(249), [aux_sym_identifier_token1] = ACTIONS(436), [anon_sym_DOT_DOT_DOT] = ACTIONS(436), [sym_unused_identifier] = ACTIONS(438), @@ -30038,1144 +30675,1145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(442), [sym_float] = ACTIONS(442), [sym_char] = ACTIONS(442), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), [sym_atom] = ACTIONS(442), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(219), - [anon_sym_GT] = ACTIONS(219), - [anon_sym_PIPE] = ACTIONS(219), - [anon_sym_SLASH] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), [anon_sym_TILDE] = ACTIONS(444), [anon_sym_COMMA] = ACTIONS(191), [sym_keyword] = ACTIONS(446), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), [anon_sym_AMP] = ACTIONS(448), - [anon_sym_PLUS] = ACTIONS(550), - [anon_sym_DASH] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(450), - [anon_sym_CARET] = ACTIONS(450), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), - [anon_sym_not] = ACTIONS(450), - [anon_sym_AT] = ACTIONS(452), - [anon_sym_LT_DASH] = ACTIONS(219), - [anon_sym_BSLASH_BSLASH] = ACTIONS(219), - [anon_sym_when] = ACTIONS(219), - [anon_sym_COLON_COLON] = ACTIONS(219), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(453), + [anon_sym_not] = ACTIONS(453), + [anon_sym_AT] = ACTIONS(455), + [anon_sym_LT_DASH] = ACTIONS(191), + [anon_sym_BSLASH_BSLASH] = ACTIONS(191), + [anon_sym_when] = ACTIONS(191), + [anon_sym_COLON_COLON] = ACTIONS(191), [anon_sym_EQ_GT] = ACTIONS(191), - [anon_sym_EQ] = ACTIONS(219), - [anon_sym_PIPE_PIPE] = ACTIONS(219), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(219), - [anon_sym_or] = ACTIONS(219), - [anon_sym_AMP_AMP] = ACTIONS(219), - [anon_sym_AMP_AMP_AMP] = ACTIONS(219), - [anon_sym_and] = ACTIONS(219), - [anon_sym_EQ_EQ] = ACTIONS(219), - [anon_sym_BANG_EQ] = ACTIONS(219), - [anon_sym_EQ_TILDE] = ACTIONS(219), - [anon_sym_EQ_EQ_EQ] = ACTIONS(219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(219), - [anon_sym_LT_EQ] = ACTIONS(219), - [anon_sym_GT_EQ] = ACTIONS(219), - [anon_sym_PIPE_GT] = ACTIONS(219), - [anon_sym_LT_LT_LT] = ACTIONS(219), - [anon_sym_GT_GT_GT] = ACTIONS(219), - [anon_sym_LT_LT_TILDE] = ACTIONS(219), - [anon_sym_TILDE_GT_GT] = ACTIONS(219), - [anon_sym_LT_TILDE] = ACTIONS(219), - [anon_sym_TILDE_GT] = ACTIONS(219), - [anon_sym_LT_TILDE_GT] = ACTIONS(219), - [anon_sym_LT_PIPE_GT] = ACTIONS(219), - [anon_sym_in] = ACTIONS(219), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_PIPE_PIPE] = ACTIONS(191), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(191), + [anon_sym_or] = ACTIONS(191), + [anon_sym_AMP_AMP] = ACTIONS(191), + [anon_sym_AMP_AMP_AMP] = ACTIONS(191), + [anon_sym_and] = ACTIONS(191), + [anon_sym_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ] = ACTIONS(191), + [anon_sym_EQ_TILDE] = ACTIONS(191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(191), + [anon_sym_LT_EQ] = ACTIONS(191), + [anon_sym_GT_EQ] = ACTIONS(191), + [anon_sym_PIPE_GT] = ACTIONS(191), + [anon_sym_LT_LT_LT] = ACTIONS(191), + [anon_sym_GT_GT_GT] = ACTIONS(191), + [anon_sym_LT_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT_GT] = ACTIONS(191), + [anon_sym_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_PIPE_GT] = ACTIONS(191), + [anon_sym_in] = ACTIONS(191), [anon_sym_CARET_CARET_CARET] = ACTIONS(191), [anon_sym_SLASH_SLASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(219), - [anon_sym_DASH_DASH] = ACTIONS(219), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(219), - [anon_sym_DASH_DASH_DASH] = ACTIONS(219), - [anon_sym_DOT_DOT] = ACTIONS(219), - [anon_sym_LT_GT] = ACTIONS(219), - [anon_sym_STAR] = ACTIONS(219), - [anon_sym_STAR_STAR] = ACTIONS(219), + [anon_sym_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH_DASH] = ACTIONS(191), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_LT_GT] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_STAR_STAR] = ACTIONS(191), [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(219), - [anon_sym_do] = ACTIONS(191), - [anon_sym_fn] = ACTIONS(239), - [anon_sym_LPAREN2] = ACTIONS(241), - [anon_sym_LBRACK2] = ACTIONS(189), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(189), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(454), - [sym__not_in] = ACTIONS(245), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [48] = { - [sym__expression] = STATE(1979), - [sym_block] = STATE(1979), - [sym__identifier] = STATE(48), - [sym_identifier] = STATE(48), - [sym_special_identifier] = STATE(48), - [sym_boolean] = STATE(1979), - [sym_nil] = STATE(1979), - [sym__atom] = STATE(1979), - [sym_quoted_atom] = STATE(1979), - [sym__quoted_i_double] = STATE(1114), - [sym__quoted_i_single] = STATE(1100), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(1979), - [sym_charlist] = STATE(1979), - [sym_sigil] = STATE(1979), - [sym_keywords] = STATE(1147), - [sym_pair] = STATE(1886), - [sym__keyword] = STATE(786), - [sym_quoted_keyword] = STATE(786), - [sym_list] = STATE(1979), - [sym_tuple] = STATE(1979), - [sym_bitstring] = STATE(1979), - [sym_map] = STATE(1979), - [sym_unary_operator] = STATE(1979), - [sym_binary_operator] = STATE(1979), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(1979), - [sym_call] = STATE(1979), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym__call_arguments_with_parentheses_immediate] = STATE(1086), - [sym__call_arguments_without_parentheses] = STATE(1112), - [sym_do_block] = STATE(1241), - [sym_access_call] = STATE(1979), - [sym_anonymous_function] = STATE(1979), - [aux_sym__terminator_token1] = ACTIONS(189), - [anon_sym_SEMI] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(254), - [anon_sym_RPAREN] = ACTIONS(191), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(527), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(529), - [sym_integer] = ACTIONS(529), - [sym_float] = ACTIONS(529), - [sym_char] = ACTIONS(529), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(219), - [anon_sym_GT] = ACTIONS(219), - [anon_sym_PIPE] = ACTIONS(219), - [anon_sym_SLASH] = ACTIONS(219), - [anon_sym_TILDE] = ACTIONS(531), - [anon_sym_COMMA] = ACTIONS(191), - [sym_keyword] = ACTIONS(533), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(553), - [anon_sym_BANG] = ACTIONS(537), - [anon_sym_CARET] = ACTIONS(537), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), - [anon_sym_not] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(539), - [anon_sym_LT_DASH] = ACTIONS(219), - [anon_sym_BSLASH_BSLASH] = ACTIONS(219), - [anon_sym_when] = ACTIONS(219), - [anon_sym_COLON_COLON] = ACTIONS(219), - [anon_sym_EQ_GT] = ACTIONS(191), - [anon_sym_EQ] = ACTIONS(219), - [anon_sym_PIPE_PIPE] = ACTIONS(219), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(219), - [anon_sym_or] = ACTIONS(219), - [anon_sym_AMP_AMP] = ACTIONS(219), - [anon_sym_AMP_AMP_AMP] = ACTIONS(219), - [anon_sym_and] = ACTIONS(219), - [anon_sym_EQ_EQ] = ACTIONS(219), - [anon_sym_BANG_EQ] = ACTIONS(219), - [anon_sym_EQ_TILDE] = ACTIONS(219), - [anon_sym_EQ_EQ_EQ] = ACTIONS(219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(219), - [anon_sym_LT_EQ] = ACTIONS(219), - [anon_sym_GT_EQ] = ACTIONS(219), - [anon_sym_PIPE_GT] = ACTIONS(219), - [anon_sym_LT_LT_LT] = ACTIONS(219), - [anon_sym_GT_GT_GT] = ACTIONS(219), - [anon_sym_LT_LT_TILDE] = ACTIONS(219), - [anon_sym_TILDE_GT_GT] = ACTIONS(219), - [anon_sym_LT_TILDE] = ACTIONS(219), - [anon_sym_TILDE_GT] = ACTIONS(219), - [anon_sym_LT_TILDE_GT] = ACTIONS(219), - [anon_sym_LT_PIPE_GT] = ACTIONS(219), - [anon_sym_in] = ACTIONS(219), - [anon_sym_CARET_CARET_CARET] = ACTIONS(191), - [anon_sym_SLASH_SLASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(219), - [anon_sym_DASH_DASH] = ACTIONS(219), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(219), - [anon_sym_DASH_DASH_DASH] = ACTIONS(219), - [anon_sym_DOT_DOT] = ACTIONS(219), - [anon_sym_LT_GT] = ACTIONS(219), - [anon_sym_STAR] = ACTIONS(219), - [anon_sym_STAR_STAR] = ACTIONS(219), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(219), - [anon_sym_DOT] = ACTIONS(219), - [anon_sym_do] = ACTIONS(191), - [anon_sym_fn] = ACTIONS(290), - [anon_sym_LPAREN2] = ACTIONS(292), - [anon_sym_LBRACK2] = ACTIONS(189), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(189), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(541), - [sym__not_in] = ACTIONS(245), - [sym__quoted_atom_start] = ACTIONS(296), - }, - [49] = { - [sym__expression] = STATE(2171), - [sym_block] = STATE(2171), - [sym__identifier] = STATE(42), - [sym_identifier] = STATE(42), - [sym_special_identifier] = STATE(42), - [sym_boolean] = STATE(2171), - [sym_nil] = STATE(2171), - [sym__atom] = STATE(2171), - [sym_quoted_atom] = STATE(2171), - [sym__quoted_i_double] = STATE(1146), - [sym__quoted_i_single] = STATE(1145), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2171), - [sym_charlist] = STATE(2171), - [sym_sigil] = STATE(2171), - [sym_keywords] = STATE(1363), - [sym_pair] = STATE(2136), - [sym__keyword] = STATE(774), - [sym_quoted_keyword] = STATE(774), - [sym_list] = STATE(2171), - [sym_tuple] = STATE(2171), - [sym_bitstring] = STATE(2171), - [sym_map] = STATE(2171), - [sym_unary_operator] = STATE(2171), - [sym_binary_operator] = STATE(2171), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2171), - [sym_call] = STATE(2171), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym__call_arguments_with_parentheses_immediate] = STATE(1115), - [sym__call_arguments_without_parentheses] = STATE(1272), - [sym_do_block] = STATE(1627), - [sym_access_call] = STATE(2171), - [sym_anonymous_function] = STATE(2171), - [aux_sym__terminator_token1] = ACTIONS(250), - [anon_sym_SEMI] = ACTIONS(252), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(456), - [sym_unused_identifier] = ACTIONS(458), - [anon_sym___MODULE__] = ACTIONS(460), - [anon_sym___DIR__] = ACTIONS(460), - [anon_sym___ENV__] = ACTIONS(460), - [anon_sym___CALLER__] = ACTIONS(460), - [anon_sym___STACKTRACE__] = ACTIONS(460), - [sym_alias] = ACTIONS(462), - [sym_integer] = ACTIONS(462), - [sym_float] = ACTIONS(462), - [sym_char] = ACTIONS(462), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(462), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(252), - [anon_sym_GT] = ACTIONS(252), - [anon_sym_PIPE] = ACTIONS(252), - [anon_sym_SLASH] = ACTIONS(252), - [anon_sym_TILDE] = ACTIONS(464), - [anon_sym_COMMA] = ACTIONS(252), - [sym_keyword] = ACTIONS(466), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(252), - [anon_sym_DASH] = ACTIONS(252), - [anon_sym_BANG] = ACTIONS(473), - [anon_sym_CARET] = ACTIONS(473), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), - [anon_sym_not] = ACTIONS(473), - [anon_sym_AT] = ACTIONS(475), - [anon_sym_LT_DASH] = ACTIONS(252), - [anon_sym_BSLASH_BSLASH] = ACTIONS(252), - [anon_sym_when] = ACTIONS(252), - [anon_sym_COLON_COLON] = ACTIONS(252), - [anon_sym_EQ_GT] = ACTIONS(252), - [anon_sym_EQ] = ACTIONS(252), - [anon_sym_PIPE_PIPE] = ACTIONS(252), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(252), - [anon_sym_or] = ACTIONS(252), - [anon_sym_AMP_AMP] = ACTIONS(252), - [anon_sym_AMP_AMP_AMP] = ACTIONS(252), - [anon_sym_and] = ACTIONS(252), - [anon_sym_EQ_EQ] = ACTIONS(252), - [anon_sym_BANG_EQ] = ACTIONS(252), - [anon_sym_EQ_TILDE] = ACTIONS(252), - [anon_sym_EQ_EQ_EQ] = ACTIONS(252), - [anon_sym_BANG_EQ_EQ] = ACTIONS(252), - [anon_sym_LT_EQ] = ACTIONS(252), - [anon_sym_GT_EQ] = ACTIONS(252), - [anon_sym_PIPE_GT] = ACTIONS(252), - [anon_sym_LT_LT_LT] = ACTIONS(252), - [anon_sym_GT_GT_GT] = ACTIONS(252), - [anon_sym_LT_LT_TILDE] = ACTIONS(252), - [anon_sym_TILDE_GT_GT] = ACTIONS(252), - [anon_sym_LT_TILDE] = ACTIONS(252), - [anon_sym_TILDE_GT] = ACTIONS(252), - [anon_sym_LT_TILDE_GT] = ACTIONS(252), - [anon_sym_LT_PIPE_GT] = ACTIONS(252), - [anon_sym_in] = ACTIONS(252), - [anon_sym_CARET_CARET_CARET] = ACTIONS(252), - [anon_sym_SLASH_SLASH] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(252), - [anon_sym_DASH_DASH] = ACTIONS(252), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(252), - [anon_sym_DASH_DASH_DASH] = ACTIONS(252), - [anon_sym_DOT_DOT] = ACTIONS(252), - [anon_sym_LT_GT] = ACTIONS(252), - [anon_sym_STAR] = ACTIONS(252), - [anon_sym_STAR_STAR] = ACTIONS(252), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(252), - [anon_sym_do] = ACTIONS(305), - [anon_sym_end] = ACTIONS(252), - [anon_sym_fn] = ACTIONS(239), - [anon_sym_LPAREN2] = ACTIONS(241), - [anon_sym_LBRACK2] = ACTIONS(250), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(307), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(477), - [sym__not_in] = ACTIONS(250), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [50] = { - [sym__expression] = STATE(2270), - [sym_block] = STATE(2270), - [sym__identifier] = STATE(47), - [sym_identifier] = STATE(47), - [sym_special_identifier] = STATE(47), - [sym_boolean] = STATE(2270), - [sym_nil] = STATE(2270), - [sym__atom] = STATE(2270), - [sym_quoted_atom] = STATE(2270), - [sym__quoted_i_double] = STATE(1146), - [sym__quoted_i_single] = STATE(1145), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2270), - [sym_charlist] = STATE(2270), - [sym_sigil] = STATE(2270), - [sym_keywords] = STATE(1363), - [sym_pair] = STATE(2125), - [sym__keyword] = STATE(492), - [sym_quoted_keyword] = STATE(492), - [sym_list] = STATE(2270), - [sym_tuple] = STATE(2270), - [sym_bitstring] = STATE(2270), - [sym_map] = STATE(2270), - [sym_unary_operator] = STATE(2270), - [sym_binary_operator] = STATE(2270), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2270), - [sym_call] = STATE(2270), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(41), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym__call_arguments_with_parentheses_immediate] = STATE(1115), - [sym__call_arguments_without_parentheses] = STATE(1272), - [sym_do_block] = STATE(1627), - [sym_access_call] = STATE(2270), - [sym_anonymous_function] = STATE(2270), - [aux_sym__terminator_token1] = ACTIONS(250), - [anon_sym_SEMI] = ACTIONS(252), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_RPAREN] = ACTIONS(252), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(438), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(442), - [sym_integer] = ACTIONS(442), - [sym_float] = ACTIONS(442), - [sym_char] = ACTIONS(442), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(442), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(252), - [anon_sym_GT] = ACTIONS(252), - [anon_sym_PIPE] = ACTIONS(252), - [anon_sym_SLASH] = ACTIONS(252), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_COMMA] = ACTIONS(252), - [sym_keyword] = ACTIONS(446), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(448), - [anon_sym_PLUS] = ACTIONS(252), - [anon_sym_DASH] = ACTIONS(252), - [anon_sym_BANG] = ACTIONS(450), - [anon_sym_CARET] = ACTIONS(450), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), - [anon_sym_not] = ACTIONS(450), - [anon_sym_AT] = ACTIONS(452), - [anon_sym_LT_DASH] = ACTIONS(252), - [anon_sym_BSLASH_BSLASH] = ACTIONS(252), - [anon_sym_when] = ACTIONS(252), - [anon_sym_COLON_COLON] = ACTIONS(252), - [anon_sym_EQ_GT] = ACTIONS(252), - [anon_sym_EQ] = ACTIONS(252), - [anon_sym_PIPE_PIPE] = ACTIONS(252), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(252), - [anon_sym_or] = ACTIONS(252), - [anon_sym_AMP_AMP] = ACTIONS(252), - [anon_sym_AMP_AMP_AMP] = ACTIONS(252), - [anon_sym_and] = ACTIONS(252), - [anon_sym_EQ_EQ] = ACTIONS(252), - [anon_sym_BANG_EQ] = ACTIONS(252), - [anon_sym_EQ_TILDE] = ACTIONS(252), - [anon_sym_EQ_EQ_EQ] = ACTIONS(252), - [anon_sym_BANG_EQ_EQ] = ACTIONS(252), - [anon_sym_LT_EQ] = ACTIONS(252), - [anon_sym_GT_EQ] = ACTIONS(252), - [anon_sym_PIPE_GT] = ACTIONS(252), - [anon_sym_LT_LT_LT] = ACTIONS(252), - [anon_sym_GT_GT_GT] = ACTIONS(252), - [anon_sym_LT_LT_TILDE] = ACTIONS(252), - [anon_sym_TILDE_GT_GT] = ACTIONS(252), - [anon_sym_LT_TILDE] = ACTIONS(252), - [anon_sym_TILDE_GT] = ACTIONS(252), - [anon_sym_LT_TILDE_GT] = ACTIONS(252), - [anon_sym_LT_PIPE_GT] = ACTIONS(252), - [anon_sym_in] = ACTIONS(252), - [anon_sym_CARET_CARET_CARET] = ACTIONS(252), - [anon_sym_SLASH_SLASH] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(252), - [anon_sym_DASH_DASH] = ACTIONS(252), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(252), - [anon_sym_DASH_DASH_DASH] = ACTIONS(252), - [anon_sym_DOT_DOT] = ACTIONS(252), - [anon_sym_LT_GT] = ACTIONS(252), - [anon_sym_STAR] = ACTIONS(252), - [anon_sym_STAR_STAR] = ACTIONS(252), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(252), - [anon_sym_do] = ACTIONS(305), - [anon_sym_fn] = ACTIONS(239), - [anon_sym_LPAREN2] = ACTIONS(241), - [anon_sym_LBRACK2] = ACTIONS(250), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(307), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(454), - [sym__not_in] = ACTIONS(250), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [51] = { - [sym__expression] = STATE(1933), - [sym_block] = STATE(1933), - [sym__identifier] = STATE(34), - [sym_identifier] = STATE(34), - [sym_special_identifier] = STATE(34), - [sym_boolean] = STATE(1933), - [sym_nil] = STATE(1933), - [sym__atom] = STATE(1933), - [sym_quoted_atom] = STATE(1933), - [sym__quoted_i_double] = STATE(1678), - [sym__quoted_i_single] = STATE(1677), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(1933), - [sym_charlist] = STATE(1933), - [sym_sigil] = STATE(1933), - [sym_keywords] = STATE(1934), - [sym_pair] = STATE(1922), - [sym__keyword] = STATE(901), - [sym_quoted_keyword] = STATE(901), - [sym_list] = STATE(1933), - [sym_tuple] = STATE(1933), - [sym_bitstring] = STATE(1933), - [sym_map] = STATE(1933), - [sym_unary_operator] = STATE(1933), - [sym_binary_operator] = STATE(1933), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(1933), - [sym_call] = STATE(1933), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(36), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym__call_arguments_with_parentheses_immediate] = STATE(1498), - [sym__call_arguments_without_parentheses] = STATE(1735), - [sym_do_block] = STATE(2561), - [sym_access_call] = STATE(1933), - [sym_anonymous_function] = STATE(1933), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(191), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(361), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(365), - [sym_integer] = ACTIONS(365), - [sym_float] = ACTIONS(365), - [sym_char] = ACTIONS(365), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), - [sym_atom] = ACTIONS(365), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_RBRACE] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_RBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(219), - [anon_sym_GT] = ACTIONS(219), - [anon_sym_PIPE] = ACTIONS(219), - [anon_sym_SLASH] = ACTIONS(219), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_COMMA] = ACTIONS(191), - [sym_keyword] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(396), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(396), - [anon_sym_not] = ACTIONS(396), - [anon_sym_AT] = ACTIONS(398), - [anon_sym_LT_DASH] = ACTIONS(219), - [anon_sym_BSLASH_BSLASH] = ACTIONS(219), - [anon_sym_when] = ACTIONS(219), - [anon_sym_COLON_COLON] = ACTIONS(219), - [anon_sym_EQ_GT] = ACTIONS(191), - [anon_sym_EQ] = ACTIONS(219), - [anon_sym_PIPE_PIPE] = ACTIONS(219), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(219), - [anon_sym_or] = ACTIONS(219), - [anon_sym_AMP_AMP] = ACTIONS(219), - [anon_sym_AMP_AMP_AMP] = ACTIONS(219), - [anon_sym_and] = ACTIONS(219), - [anon_sym_EQ_EQ] = ACTIONS(219), - [anon_sym_BANG_EQ] = ACTIONS(219), - [anon_sym_EQ_TILDE] = ACTIONS(219), - [anon_sym_EQ_EQ_EQ] = ACTIONS(219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(219), - [anon_sym_LT_EQ] = ACTIONS(219), - [anon_sym_GT_EQ] = ACTIONS(219), - [anon_sym_PIPE_GT] = ACTIONS(219), - [anon_sym_LT_LT_LT] = ACTIONS(219), - [anon_sym_GT_GT_GT] = ACTIONS(219), - [anon_sym_LT_LT_TILDE] = ACTIONS(219), - [anon_sym_TILDE_GT_GT] = ACTIONS(219), - [anon_sym_LT_TILDE] = ACTIONS(219), - [anon_sym_TILDE_GT] = ACTIONS(219), - [anon_sym_LT_TILDE_GT] = ACTIONS(219), - [anon_sym_LT_PIPE_GT] = ACTIONS(219), - [anon_sym_in] = ACTIONS(219), - [anon_sym_CARET_CARET_CARET] = ACTIONS(191), - [anon_sym_SLASH_SLASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(219), - [anon_sym_DASH_DASH] = ACTIONS(219), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(219), - [anon_sym_DASH_DASH_DASH] = ACTIONS(219), - [anon_sym_DOT_DOT] = ACTIONS(219), - [anon_sym_LT_GT] = ACTIONS(219), - [anon_sym_STAR] = ACTIONS(219), - [anon_sym_STAR_STAR] = ACTIONS(219), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(219), - [anon_sym_do] = ACTIONS(432), - [anon_sym_fn] = ACTIONS(400), - [anon_sym_LPAREN2] = ACTIONS(402), - [anon_sym_LBRACK2] = ACTIONS(189), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(404), - [sym__not_in] = ACTIONS(245), - [sym__quoted_atom_start] = ACTIONS(406), - }, - [52] = { - [sym__expression] = STATE(2171), - [sym_block] = STATE(2171), - [sym__identifier] = STATE(42), - [sym_identifier] = STATE(42), - [sym_special_identifier] = STATE(42), - [sym_boolean] = STATE(2171), - [sym_nil] = STATE(2171), - [sym__atom] = STATE(2171), - [sym_quoted_atom] = STATE(2171), - [sym__quoted_i_double] = STATE(1146), - [sym__quoted_i_single] = STATE(1145), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2171), - [sym_charlist] = STATE(2171), - [sym_sigil] = STATE(2171), - [sym_keywords] = STATE(1363), - [sym_pair] = STATE(2136), - [sym__keyword] = STATE(774), - [sym_quoted_keyword] = STATE(774), - [sym_list] = STATE(2171), - [sym_tuple] = STATE(2171), - [sym_bitstring] = STATE(2171), - [sym_map] = STATE(2171), - [sym_unary_operator] = STATE(2171), - [sym_binary_operator] = STATE(2171), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2171), - [sym_call] = STATE(2171), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym__call_arguments_with_parentheses_immediate] = STATE(1097), - [sym__call_arguments_without_parentheses] = STATE(1153), - [sym_do_block] = STATE(1406), - [sym_access_call] = STATE(2171), - [sym_anonymous_function] = STATE(2171), - [aux_sym__terminator_token1] = ACTIONS(250), - [anon_sym_SEMI] = ACTIONS(252), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(456), - [sym_unused_identifier] = ACTIONS(458), - [anon_sym___MODULE__] = ACTIONS(460), - [anon_sym___DIR__] = ACTIONS(460), - [anon_sym___ENV__] = ACTIONS(460), - [anon_sym___CALLER__] = ACTIONS(460), - [anon_sym___STACKTRACE__] = ACTIONS(460), - [sym_alias] = ACTIONS(462), - [sym_integer] = ACTIONS(462), - [sym_float] = ACTIONS(462), - [sym_char] = ACTIONS(462), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(462), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(252), - [anon_sym_GT] = ACTIONS(252), - [anon_sym_PIPE] = ACTIONS(252), - [anon_sym_SLASH] = ACTIONS(252), - [anon_sym_TILDE] = ACTIONS(464), - [anon_sym_COMMA] = ACTIONS(252), - [sym_keyword] = ACTIONS(466), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(252), - [anon_sym_DASH] = ACTIONS(252), - [anon_sym_BANG] = ACTIONS(473), - [anon_sym_CARET] = ACTIONS(473), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), - [anon_sym_not] = ACTIONS(473), - [anon_sym_AT] = ACTIONS(475), - [anon_sym_LT_DASH] = ACTIONS(252), - [anon_sym_BSLASH_BSLASH] = ACTIONS(252), - [anon_sym_when] = ACTIONS(252), - [anon_sym_COLON_COLON] = ACTIONS(252), - [anon_sym_EQ_GT] = ACTIONS(252), - [anon_sym_EQ] = ACTIONS(252), - [anon_sym_PIPE_PIPE] = ACTIONS(252), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(252), - [anon_sym_or] = ACTIONS(252), - [anon_sym_AMP_AMP] = ACTIONS(252), - [anon_sym_AMP_AMP_AMP] = ACTIONS(252), - [anon_sym_and] = ACTIONS(252), - [anon_sym_EQ_EQ] = ACTIONS(252), - [anon_sym_BANG_EQ] = ACTIONS(252), - [anon_sym_EQ_TILDE] = ACTIONS(252), - [anon_sym_EQ_EQ_EQ] = ACTIONS(252), - [anon_sym_BANG_EQ_EQ] = ACTIONS(252), - [anon_sym_LT_EQ] = ACTIONS(252), - [anon_sym_GT_EQ] = ACTIONS(252), - [anon_sym_PIPE_GT] = ACTIONS(252), - [anon_sym_LT_LT_LT] = ACTIONS(252), - [anon_sym_GT_GT_GT] = ACTIONS(252), - [anon_sym_LT_LT_TILDE] = ACTIONS(252), - [anon_sym_TILDE_GT_GT] = ACTIONS(252), - [anon_sym_LT_TILDE] = ACTIONS(252), - [anon_sym_TILDE_GT] = ACTIONS(252), - [anon_sym_LT_TILDE_GT] = ACTIONS(252), - [anon_sym_LT_PIPE_GT] = ACTIONS(252), - [anon_sym_in] = ACTIONS(252), - [anon_sym_CARET_CARET_CARET] = ACTIONS(252), - [anon_sym_SLASH_SLASH] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(252), - [anon_sym_DASH_DASH] = ACTIONS(252), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(252), - [anon_sym_DASH_DASH_DASH] = ACTIONS(252), - [anon_sym_DOT_DOT] = ACTIONS(252), - [anon_sym_LT_GT] = ACTIONS(252), - [anon_sym_STAR] = ACTIONS(252), - [anon_sym_STAR_STAR] = ACTIONS(252), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(252), - [anon_sym_do] = ACTIONS(252), - [anon_sym_end] = ACTIONS(252), - [anon_sym_fn] = ACTIONS(239), - [anon_sym_LPAREN2] = ACTIONS(241), - [anon_sym_LBRACK2] = ACTIONS(250), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(250), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(477), - [sym__not_in] = ACTIONS(250), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [53] = { - [sym__expression] = STATE(1979), - [sym_block] = STATE(1979), - [sym__identifier] = STATE(48), - [sym_identifier] = STATE(48), - [sym_special_identifier] = STATE(48), - [sym_boolean] = STATE(1979), - [sym_nil] = STATE(1979), - [sym__atom] = STATE(1979), - [sym_quoted_atom] = STATE(1979), - [sym__quoted_i_double] = STATE(1114), - [sym__quoted_i_single] = STATE(1100), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(1979), - [sym_charlist] = STATE(1979), - [sym_sigil] = STATE(1979), - [sym_keywords] = STATE(1147), - [sym_pair] = STATE(1886), - [sym__keyword] = STATE(786), - [sym_quoted_keyword] = STATE(786), - [sym_list] = STATE(1979), - [sym_tuple] = STATE(1979), - [sym_bitstring] = STATE(1979), - [sym_map] = STATE(1979), - [sym_unary_operator] = STATE(1979), - [sym_binary_operator] = STATE(1979), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(1979), - [sym_call] = STATE(1979), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym__call_arguments_with_parentheses_immediate] = STATE(1089), - [sym__call_arguments_without_parentheses] = STATE(1092), - [sym_do_block] = STATE(1489), - [sym_access_call] = STATE(1979), - [sym_anonymous_function] = STATE(1979), - [aux_sym__terminator_token1] = ACTIONS(250), - [anon_sym_SEMI] = ACTIONS(252), - [anon_sym_LPAREN] = ACTIONS(254), - [anon_sym_RPAREN] = ACTIONS(252), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(527), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(529), - [sym_integer] = ACTIONS(529), - [sym_float] = ACTIONS(529), - [sym_char] = ACTIONS(529), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(252), - [anon_sym_GT] = ACTIONS(252), - [anon_sym_PIPE] = ACTIONS(252), - [anon_sym_SLASH] = ACTIONS(252), - [anon_sym_TILDE] = ACTIONS(531), - [anon_sym_COMMA] = ACTIONS(252), - [sym_keyword] = ACTIONS(533), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(252), - [anon_sym_DASH] = ACTIONS(252), - [anon_sym_BANG] = ACTIONS(537), - [anon_sym_CARET] = ACTIONS(537), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), - [anon_sym_not] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(539), - [anon_sym_LT_DASH] = ACTIONS(252), - [anon_sym_BSLASH_BSLASH] = ACTIONS(252), - [anon_sym_when] = ACTIONS(252), - [anon_sym_COLON_COLON] = ACTIONS(252), - [anon_sym_EQ_GT] = ACTIONS(252), - [anon_sym_EQ] = ACTIONS(252), - [anon_sym_PIPE_PIPE] = ACTIONS(252), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(252), - [anon_sym_or] = ACTIONS(252), - [anon_sym_AMP_AMP] = ACTIONS(252), - [anon_sym_AMP_AMP_AMP] = ACTIONS(252), - [anon_sym_and] = ACTIONS(252), - [anon_sym_EQ_EQ] = ACTIONS(252), - [anon_sym_BANG_EQ] = ACTIONS(252), - [anon_sym_EQ_TILDE] = ACTIONS(252), - [anon_sym_EQ_EQ_EQ] = ACTIONS(252), - [anon_sym_BANG_EQ_EQ] = ACTIONS(252), - [anon_sym_LT_EQ] = ACTIONS(252), - [anon_sym_GT_EQ] = ACTIONS(252), - [anon_sym_PIPE_GT] = ACTIONS(252), - [anon_sym_LT_LT_LT] = ACTIONS(252), - [anon_sym_GT_GT_GT] = ACTIONS(252), - [anon_sym_LT_LT_TILDE] = ACTIONS(252), - [anon_sym_TILDE_GT_GT] = ACTIONS(252), - [anon_sym_LT_TILDE] = ACTIONS(252), - [anon_sym_TILDE_GT] = ACTIONS(252), - [anon_sym_LT_TILDE_GT] = ACTIONS(252), - [anon_sym_LT_PIPE_GT] = ACTIONS(252), - [anon_sym_in] = ACTIONS(252), - [anon_sym_CARET_CARET_CARET] = ACTIONS(252), - [anon_sym_SLASH_SLASH] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(252), - [anon_sym_DASH_DASH] = ACTIONS(252), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(252), - [anon_sym_DASH_DASH_DASH] = ACTIONS(252), - [anon_sym_DOT_DOT] = ACTIONS(252), - [anon_sym_LT_GT] = ACTIONS(252), - [anon_sym_STAR] = ACTIONS(252), - [anon_sym_STAR_STAR] = ACTIONS(252), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(252), - [anon_sym_DOT] = ACTIONS(252), - [anon_sym_do] = ACTIONS(298), - [anon_sym_fn] = ACTIONS(290), - [anon_sym_LPAREN2] = ACTIONS(292), - [anon_sym_LBRACK2] = ACTIONS(250), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(300), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(541), - [sym__not_in] = ACTIONS(250), - [sym__quoted_atom_start] = ACTIONS(296), - }, - [54] = { - [sym__expression] = STATE(2171), - [sym_block] = STATE(2171), - [sym__identifier] = STATE(42), - [sym_identifier] = STATE(42), - [sym_special_identifier] = STATE(42), - [sym_boolean] = STATE(2171), - [sym_nil] = STATE(2171), - [sym__atom] = STATE(2171), - [sym_quoted_atom] = STATE(2171), - [sym__quoted_i_double] = STATE(1146), - [sym__quoted_i_single] = STATE(1145), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2171), - [sym_charlist] = STATE(2171), - [sym_sigil] = STATE(2171), - [sym_keywords] = STATE(1363), - [sym_pair] = STATE(2136), - [sym__keyword] = STATE(774), - [sym_quoted_keyword] = STATE(774), - [sym_list] = STATE(2171), - [sym_tuple] = STATE(2171), - [sym_bitstring] = STATE(2171), - [sym_map] = STATE(2171), - [sym_unary_operator] = STATE(2171), - [sym_binary_operator] = STATE(2171), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2171), - [sym_call] = STATE(2171), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym__call_arguments_with_parentheses_immediate] = STATE(1116), - [sym__call_arguments_without_parentheses] = STATE(1275), - [sym_do_block] = STATE(1628), - [sym_access_call] = STATE(2171), - [sym_anonymous_function] = STATE(2171), - [aux_sym__terminator_token1] = ACTIONS(189), - [anon_sym_SEMI] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(456), - [sym_unused_identifier] = ACTIONS(458), - [anon_sym___MODULE__] = ACTIONS(460), - [anon_sym___DIR__] = ACTIONS(460), - [anon_sym___ENV__] = ACTIONS(460), - [anon_sym___CALLER__] = ACTIONS(460), - [anon_sym___STACKTRACE__] = ACTIONS(460), - [sym_alias] = ACTIONS(462), - [sym_integer] = ACTIONS(462), - [sym_float] = ACTIONS(462), - [sym_char] = ACTIONS(462), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(462), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(219), - [anon_sym_GT] = ACTIONS(219), - [anon_sym_PIPE] = ACTIONS(219), - [anon_sym_SLASH] = ACTIONS(219), - [anon_sym_TILDE] = ACTIONS(464), - [anon_sym_COMMA] = ACTIONS(191), - [sym_keyword] = ACTIONS(466), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(470), - [anon_sym_BANG] = ACTIONS(473), - [anon_sym_CARET] = ACTIONS(473), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), - [anon_sym_not] = ACTIONS(473), - [anon_sym_AT] = ACTIONS(475), - [anon_sym_LT_DASH] = ACTIONS(219), - [anon_sym_BSLASH_BSLASH] = ACTIONS(219), - [anon_sym_when] = ACTIONS(219), - [anon_sym_COLON_COLON] = ACTIONS(219), - [anon_sym_EQ_GT] = ACTIONS(191), - [anon_sym_EQ] = ACTIONS(219), - [anon_sym_PIPE_PIPE] = ACTIONS(219), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(219), - [anon_sym_or] = ACTIONS(219), - [anon_sym_AMP_AMP] = ACTIONS(219), - [anon_sym_AMP_AMP_AMP] = ACTIONS(219), - [anon_sym_and] = ACTIONS(219), - [anon_sym_EQ_EQ] = ACTIONS(219), - [anon_sym_BANG_EQ] = ACTIONS(219), - [anon_sym_EQ_TILDE] = ACTIONS(219), - [anon_sym_EQ_EQ_EQ] = ACTIONS(219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(219), - [anon_sym_LT_EQ] = ACTIONS(219), - [anon_sym_GT_EQ] = ACTIONS(219), - [anon_sym_PIPE_GT] = ACTIONS(219), - [anon_sym_LT_LT_LT] = ACTIONS(219), - [anon_sym_GT_GT_GT] = ACTIONS(219), - [anon_sym_LT_LT_TILDE] = ACTIONS(219), - [anon_sym_TILDE_GT_GT] = ACTIONS(219), - [anon_sym_LT_TILDE] = ACTIONS(219), - [anon_sym_TILDE_GT] = ACTIONS(219), - [anon_sym_LT_TILDE_GT] = ACTIONS(219), - [anon_sym_LT_PIPE_GT] = ACTIONS(219), - [anon_sym_in] = ACTIONS(219), - [anon_sym_CARET_CARET_CARET] = ACTIONS(191), - [anon_sym_SLASH_SLASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(219), - [anon_sym_DASH_DASH] = ACTIONS(219), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(219), - [anon_sym_DASH_DASH_DASH] = ACTIONS(219), - [anon_sym_DOT_DOT] = ACTIONS(219), - [anon_sym_LT_GT] = ACTIONS(219), - [anon_sym_STAR] = ACTIONS(219), - [anon_sym_STAR_STAR] = ACTIONS(219), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(219), + [anon_sym_DOT] = ACTIONS(191), [anon_sym_do] = ACTIONS(305), [anon_sym_end] = ACTIONS(191), - [anon_sym_fn] = ACTIONS(239), - [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_LPAREN2] = ACTIONS(293), [anon_sym_LBRACK2] = ACTIONS(189), [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(307), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(457), + [sym__not_in] = ACTIONS(189), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [48] = { + [sym__expression] = STATE(2109), + [sym_block] = STATE(2109), + [sym__identifier] = STATE(35), + [sym_identifier] = STATE(35), + [sym_special_identifier] = STATE(35), + [sym_boolean] = STATE(2109), + [sym_nil] = STATE(2109), + [sym__atom] = STATE(2109), + [sym_quoted_atom] = STATE(2109), + [sym__quoted_i_double] = STATE(1777), + [sym__quoted_i_single] = STATE(1778), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(2109), + [sym_charlist] = STATE(2109), + [sym_sigil] = STATE(2109), + [sym_keywords] = STATE(2106), + [sym_pair] = STATE(2099), + [sym__keyword] = STATE(511), + [sym_quoted_keyword] = STATE(511), + [sym_list] = STATE(2109), + [sym_tuple] = STATE(2109), + [sym_bitstring] = STATE(2109), + [sym_map] = STATE(2109), + [sym_unary_operator] = STATE(2109), + [sym_binary_operator] = STATE(2109), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(2109), + [sym_call] = STATE(2109), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym__call_arguments_with_parentheses_immediate] = STATE(1546), + [sym__call_arguments_without_parentheses] = STATE(1870), + [sym_do_block] = STATE(3167), + [sym_access_call] = STATE(2109), + [sym_anonymous_function] = STATE(2109), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(363), + [anon_sym_RPAREN] = ACTIONS(247), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(367), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(371), + [sym_integer] = ACTIONS(371), + [sym_float] = ACTIONS(371), + [sym_char] = ACTIONS(371), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_RBRACE] = ACTIONS(247), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_RBRACK] = ACTIONS(247), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_COMMA] = ACTIONS(247), + [sym_keyword] = ACTIONS(391), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_BANG] = ACTIONS(402), + [anon_sym_CARET] = ACTIONS(402), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(402), + [anon_sym_not] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(404), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_BSLASH_BSLASH] = ACTIONS(271), + [anon_sym_when] = ACTIONS(271), + [anon_sym_COLON_COLON] = ACTIONS(271), + [anon_sym_EQ_GT] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_PIPE_PIPE] = ACTIONS(271), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(271), + [anon_sym_AMP_AMP_AMP] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_EQ_TILDE] = ACTIONS(271), + [anon_sym_EQ_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ_EQ] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_PIPE_GT] = ACTIONS(271), + [anon_sym_LT_LT_LT] = ACTIONS(271), + [anon_sym_GT_GT_GT] = ACTIONS(271), + [anon_sym_LT_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT_GT] = ACTIONS(271), + [anon_sym_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_PIPE_GT] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_CARET_CARET_CARET] = ACTIONS(247), + [anon_sym_SLASH_SLASH] = ACTIONS(247), + [anon_sym_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH] = ACTIONS(271), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH_DASH] = ACTIONS(271), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_do] = ACTIONS(414), + [anon_sym_fn] = ACTIONS(406), + [anon_sym_LPAREN2] = ACTIONS(408), + [anon_sym_LBRACK2] = ACTIONS(245), + [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(477), - [sym__not_in] = ACTIONS(245), - [sym__quoted_atom_start] = ACTIONS(248), + [sym__before_unary_op] = ACTIONS(410), + [sym__not_in] = ACTIONS(297), + [sym__quoted_atom_start] = ACTIONS(412), + }, + [49] = { + [sym__expression] = STATE(2183), + [sym_block] = STATE(2183), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2183), + [sym_nil] = STATE(2183), + [sym__atom] = STATE(2183), + [sym_quoted_atom] = STATE(2183), + [sym__quoted_i_double] = STATE(1096), + [sym__quoted_i_single] = STATE(1095), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(2183), + [sym_charlist] = STATE(2183), + [sym_sigil] = STATE(2183), + [sym_keywords] = STATE(1269), + [sym_pair] = STATE(2110), + [sym__keyword] = STATE(873), + [sym_quoted_keyword] = STATE(873), + [sym_list] = STATE(2183), + [sym_tuple] = STATE(2183), + [sym_bitstring] = STATE(2183), + [sym_map] = STATE(2183), + [sym_unary_operator] = STATE(2183), + [sym_binary_operator] = STATE(2183), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(2183), + [sym_call] = STATE(2183), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym__call_arguments_with_parentheses_immediate] = STATE(1089), + [sym__call_arguments_without_parentheses] = STATE(1116), + [sym_do_block] = STATE(1160), + [sym_access_call] = STATE(2183), + [sym_anonymous_function] = STATE(2183), + [aux_sym__terminator_token1] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_RPAREN] = ACTIONS(191), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(461), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), + [sym_alias] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(465), + [sym_char] = ACTIONS(465), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(465), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_COMMA] = ACTIONS(191), + [sym_keyword] = ACTIONS(469), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_CARET] = ACTIONS(476), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(476), + [anon_sym_not] = ACTIONS(476), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_LT_DASH] = ACTIONS(191), + [anon_sym_BSLASH_BSLASH] = ACTIONS(191), + [anon_sym_when] = ACTIONS(191), + [anon_sym_COLON_COLON] = ACTIONS(191), + [anon_sym_EQ_GT] = ACTIONS(191), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_PIPE_PIPE] = ACTIONS(191), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(191), + [anon_sym_or] = ACTIONS(191), + [anon_sym_AMP_AMP] = ACTIONS(191), + [anon_sym_AMP_AMP_AMP] = ACTIONS(191), + [anon_sym_and] = ACTIONS(191), + [anon_sym_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ] = ACTIONS(191), + [anon_sym_EQ_TILDE] = ACTIONS(191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(191), + [anon_sym_LT_EQ] = ACTIONS(191), + [anon_sym_GT_EQ] = ACTIONS(191), + [anon_sym_PIPE_GT] = ACTIONS(191), + [anon_sym_LT_LT_LT] = ACTIONS(191), + [anon_sym_GT_GT_GT] = ACTIONS(191), + [anon_sym_LT_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT_GT] = ACTIONS(191), + [anon_sym_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_PIPE_GT] = ACTIONS(191), + [anon_sym_in] = ACTIONS(191), + [anon_sym_CARET_CARET_CARET] = ACTIONS(191), + [anon_sym_SLASH_SLASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH_DASH] = ACTIONS(191), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_LT_GT] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_STAR_STAR] = ACTIONS(191), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(191), + [anon_sym_DOT] = ACTIONS(191), + [anon_sym_do] = ACTIONS(191), + [anon_sym_fn] = ACTIONS(235), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_LBRACK2] = ACTIONS(189), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(189), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(480), + [sym__not_in] = ACTIONS(189), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [50] = { + [sym__expression] = STATE(2338), + [sym_block] = STATE(2338), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(2338), + [sym_nil] = STATE(2338), + [sym__atom] = STATE(2338), + [sym_quoted_atom] = STATE(2338), + [sym__quoted_i_double] = STATE(1276), + [sym__quoted_i_single] = STATE(1277), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(2338), + [sym_charlist] = STATE(2338), + [sym_sigil] = STATE(2338), + [sym_keywords] = STATE(1451), + [sym_pair] = STATE(2388), + [sym__keyword] = STATE(505), + [sym_quoted_keyword] = STATE(505), + [sym_list] = STATE(2338), + [sym_tuple] = STATE(2338), + [sym_bitstring] = STATE(2338), + [sym_map] = STATE(2338), + [sym_unary_operator] = STATE(2338), + [sym_binary_operator] = STATE(2338), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(2338), + [sym_call] = STATE(2338), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym__call_arguments_with_parentheses_immediate] = STATE(1091), + [sym__call_arguments_without_parentheses] = STATE(1237), + [sym_do_block] = STATE(1450), + [sym_access_call] = STATE(2338), + [sym_anonymous_function] = STATE(2338), + [aux_sym__terminator_token1] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(249), + [anon_sym_RPAREN] = ACTIONS(191), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(482), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), + [sym_alias] = ACTIONS(484), + [sym_integer] = ACTIONS(484), + [sym_float] = ACTIONS(484), + [sym_char] = ACTIONS(484), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(484), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(486), + [anon_sym_COMMA] = ACTIONS(191), + [sym_keyword] = ACTIONS(488), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_CARET] = ACTIONS(495), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(495), + [anon_sym_not] = ACTIONS(495), + [anon_sym_AT] = ACTIONS(497), + [anon_sym_LT_DASH] = ACTIONS(191), + [anon_sym_BSLASH_BSLASH] = ACTIONS(191), + [anon_sym_when] = ACTIONS(191), + [anon_sym_COLON_COLON] = ACTIONS(191), + [anon_sym_EQ_GT] = ACTIONS(191), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_PIPE_PIPE] = ACTIONS(191), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(191), + [anon_sym_or] = ACTIONS(191), + [anon_sym_AMP_AMP] = ACTIONS(191), + [anon_sym_AMP_AMP_AMP] = ACTIONS(191), + [anon_sym_and] = ACTIONS(191), + [anon_sym_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ] = ACTIONS(191), + [anon_sym_EQ_TILDE] = ACTIONS(191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(191), + [anon_sym_LT_EQ] = ACTIONS(191), + [anon_sym_GT_EQ] = ACTIONS(191), + [anon_sym_PIPE_GT] = ACTIONS(191), + [anon_sym_LT_LT_LT] = ACTIONS(191), + [anon_sym_GT_GT_GT] = ACTIONS(191), + [anon_sym_LT_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT_GT] = ACTIONS(191), + [anon_sym_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_PIPE_GT] = ACTIONS(191), + [anon_sym_in] = ACTIONS(191), + [anon_sym_CARET_CARET_CARET] = ACTIONS(191), + [anon_sym_SLASH_SLASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH_DASH] = ACTIONS(191), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_LT_GT] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_STAR_STAR] = ACTIONS(191), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(191), + [anon_sym_do] = ACTIONS(191), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_LPAREN2] = ACTIONS(293), + [anon_sym_LBRACK2] = ACTIONS(189), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(189), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(499), + [sym__not_in] = ACTIONS(189), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [51] = { + [sym__expression] = STATE(2217), + [sym_block] = STATE(2217), + [sym__identifier] = STATE(51), + [sym_identifier] = STATE(51), + [sym_special_identifier] = STATE(51), + [sym_boolean] = STATE(2217), + [sym_nil] = STATE(2217), + [sym__atom] = STATE(2217), + [sym_quoted_atom] = STATE(2217), + [sym__quoted_i_double] = STATE(2651), + [sym__quoted_i_single] = STATE(2652), + [sym__quoted_i_heredoc_single] = STATE(2751), + [sym__quoted_i_heredoc_double] = STATE(2852), + [sym_string] = STATE(2217), + [sym_charlist] = STATE(2217), + [sym_sigil] = STATE(2217), + [sym_keywords] = STATE(2703), + [sym_pair] = STATE(2277), + [sym__keyword] = STATE(780), + [sym_quoted_keyword] = STATE(780), + [sym_list] = STATE(2217), + [sym_tuple] = STATE(2217), + [sym_bitstring] = STATE(2217), + [sym_map] = STATE(2217), + [sym_unary_operator] = STATE(2217), + [sym_binary_operator] = STATE(2217), + [sym_operator_identifier] = STATE(5596), + [sym_dot] = STATE(2217), + [sym_call] = STATE(2217), + [sym__call_without_parentheses] = STATE(2764), + [sym__call_with_parentheses] = STATE(2765), + [sym__local_call_without_parentheses] = STATE(2767), + [sym__local_call_with_parentheses] = STATE(2120), + [sym__local_call_just_do_block] = STATE(2833), + [sym__remote_call_without_parentheses] = STATE(2843), + [sym__remote_call_with_parentheses] = STATE(2108), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2107), + [sym__anonymous_dot] = STATE(5500), + [sym__double_call] = STATE(2844), + [sym__call_arguments_with_parentheses_immediate] = STATE(2049), + [sym__call_arguments_without_parentheses] = STATE(2339), + [sym_do_block] = STATE(3094), + [sym_access_call] = STATE(2217), + [sym_anonymous_function] = STATE(2217), + [ts_builtin_sym_end] = ACTIONS(245), + [aux_sym__terminator_token1] = ACTIONS(245), + [anon_sym_SEMI] = ACTIONS(247), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(509), + [sym_integer] = ACTIONS(509), + [sym_float] = ACTIONS(509), + [sym_char] = ACTIONS(509), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_COMMA] = ACTIONS(247), + [sym_keyword] = ACTIONS(529), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(549), + [anon_sym_DASH] = ACTIONS(549), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_BSLASH_BSLASH] = ACTIONS(271), + [anon_sym_when] = ACTIONS(271), + [anon_sym_COLON_COLON] = ACTIONS(271), + [anon_sym_EQ_GT] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_PIPE_PIPE] = ACTIONS(271), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(271), + [anon_sym_AMP_AMP_AMP] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_EQ_TILDE] = ACTIONS(271), + [anon_sym_EQ_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ_EQ] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_PIPE_GT] = ACTIONS(271), + [anon_sym_LT_LT_LT] = ACTIONS(271), + [anon_sym_GT_GT_GT] = ACTIONS(271), + [anon_sym_LT_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT_GT] = ACTIONS(271), + [anon_sym_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_PIPE_GT] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_CARET_CARET_CARET] = ACTIONS(247), + [anon_sym_SLASH_SLASH] = ACTIONS(247), + [anon_sym_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH] = ACTIONS(271), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH_DASH] = ACTIONS(271), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_do] = ACTIONS(247), + [anon_sym_fn] = ACTIONS(541), + [anon_sym_LPAREN2] = ACTIONS(543), + [anon_sym_LBRACK2] = ACTIONS(245), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(245), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(545), + [sym__not_in] = ACTIONS(297), + [sym__quoted_atom_start] = ACTIONS(547), + }, + [52] = { + [sym__expression] = STATE(2217), + [sym_block] = STATE(2217), + [sym__identifier] = STATE(51), + [sym_identifier] = STATE(51), + [sym_special_identifier] = STATE(51), + [sym_boolean] = STATE(2217), + [sym_nil] = STATE(2217), + [sym__atom] = STATE(2217), + [sym_quoted_atom] = STATE(2217), + [sym__quoted_i_double] = STATE(2651), + [sym__quoted_i_single] = STATE(2652), + [sym__quoted_i_heredoc_single] = STATE(2751), + [sym__quoted_i_heredoc_double] = STATE(2852), + [sym_string] = STATE(2217), + [sym_charlist] = STATE(2217), + [sym_sigil] = STATE(2217), + [sym_keywords] = STATE(2703), + [sym_pair] = STATE(2277), + [sym__keyword] = STATE(780), + [sym_quoted_keyword] = STATE(780), + [sym_list] = STATE(2217), + [sym_tuple] = STATE(2217), + [sym_bitstring] = STATE(2217), + [sym_map] = STATE(2217), + [sym_unary_operator] = STATE(2217), + [sym_binary_operator] = STATE(2217), + [sym_operator_identifier] = STATE(5596), + [sym_dot] = STATE(2217), + [sym_call] = STATE(2217), + [sym__call_without_parentheses] = STATE(2764), + [sym__call_with_parentheses] = STATE(2765), + [sym__local_call_without_parentheses] = STATE(2767), + [sym__local_call_with_parentheses] = STATE(2120), + [sym__local_call_just_do_block] = STATE(2833), + [sym__remote_call_without_parentheses] = STATE(2843), + [sym__remote_call_with_parentheses] = STATE(2108), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2107), + [sym__anonymous_dot] = STATE(5500), + [sym__double_call] = STATE(2844), + [sym__call_arguments_with_parentheses_immediate] = STATE(2194), + [sym__call_arguments_without_parentheses] = STATE(2233), + [sym_do_block] = STATE(3855), + [sym_access_call] = STATE(2217), + [sym_anonymous_function] = STATE(2217), + [ts_builtin_sym_end] = ACTIONS(189), + [aux_sym__terminator_token1] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(509), + [sym_integer] = ACTIONS(509), + [sym_float] = ACTIONS(509), + [sym_char] = ACTIONS(509), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_COMMA] = ACTIONS(191), + [sym_keyword] = ACTIONS(529), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(191), + [anon_sym_BSLASH_BSLASH] = ACTIONS(191), + [anon_sym_when] = ACTIONS(191), + [anon_sym_COLON_COLON] = ACTIONS(191), + [anon_sym_EQ_GT] = ACTIONS(191), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_PIPE_PIPE] = ACTIONS(191), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(191), + [anon_sym_or] = ACTIONS(191), + [anon_sym_AMP_AMP] = ACTIONS(191), + [anon_sym_AMP_AMP_AMP] = ACTIONS(191), + [anon_sym_and] = ACTIONS(191), + [anon_sym_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ] = ACTIONS(191), + [anon_sym_EQ_TILDE] = ACTIONS(191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(191), + [anon_sym_LT_EQ] = ACTIONS(191), + [anon_sym_GT_EQ] = ACTIONS(191), + [anon_sym_PIPE_GT] = ACTIONS(191), + [anon_sym_LT_LT_LT] = ACTIONS(191), + [anon_sym_GT_GT_GT] = ACTIONS(191), + [anon_sym_LT_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT_GT] = ACTIONS(191), + [anon_sym_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_PIPE_GT] = ACTIONS(191), + [anon_sym_in] = ACTIONS(191), + [anon_sym_CARET_CARET_CARET] = ACTIONS(191), + [anon_sym_SLASH_SLASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH_DASH] = ACTIONS(191), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_LT_GT] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_STAR_STAR] = ACTIONS(191), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(191), + [anon_sym_do] = ACTIONS(552), + [anon_sym_fn] = ACTIONS(541), + [anon_sym_LPAREN2] = ACTIONS(543), + [anon_sym_LBRACK2] = ACTIONS(189), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(554), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(545), + [sym__not_in] = ACTIONS(189), + [sym__quoted_atom_start] = ACTIONS(547), + }, + [53] = { + [sym__expression] = STATE(2638), + [sym_block] = STATE(2638), + [sym__identifier] = STATE(41), + [sym_identifier] = STATE(41), + [sym_special_identifier] = STATE(41), + [sym_boolean] = STATE(2638), + [sym_nil] = STATE(2638), + [sym__atom] = STATE(2638), + [sym_quoted_atom] = STATE(2638), + [sym__quoted_i_double] = STATE(1276), + [sym__quoted_i_single] = STATE(1277), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(2638), + [sym_charlist] = STATE(2638), + [sym_sigil] = STATE(2638), + [sym_keywords] = STATE(1451), + [sym_pair] = STATE(2214), + [sym__keyword] = STATE(799), + [sym_quoted_keyword] = STATE(799), + [sym_list] = STATE(2638), + [sym_tuple] = STATE(2638), + [sym_bitstring] = STATE(2638), + [sym_map] = STATE(2638), + [sym_unary_operator] = STATE(2638), + [sym_binary_operator] = STATE(2638), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(2638), + [sym_call] = STATE(2638), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym__call_arguments_with_parentheses_immediate] = STATE(1091), + [sym__call_arguments_without_parentheses] = STATE(1237), + [sym_do_block] = STATE(1450), + [sym_access_call] = STATE(2638), + [sym_anonymous_function] = STATE(2638), + [aux_sym__terminator_token1] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(442), + [sym_integer] = ACTIONS(442), + [sym_float] = ACTIONS(442), + [sym_char] = ACTIONS(442), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(442), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_COMMA] = ACTIONS(191), + [sym_keyword] = ACTIONS(446), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(453), + [anon_sym_not] = ACTIONS(453), + [anon_sym_AT] = ACTIONS(455), + [anon_sym_LT_DASH] = ACTIONS(191), + [anon_sym_BSLASH_BSLASH] = ACTIONS(191), + [anon_sym_when] = ACTIONS(191), + [anon_sym_COLON_COLON] = ACTIONS(191), + [anon_sym_EQ_GT] = ACTIONS(191), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_PIPE_PIPE] = ACTIONS(191), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(191), + [anon_sym_or] = ACTIONS(191), + [anon_sym_AMP_AMP] = ACTIONS(191), + [anon_sym_AMP_AMP_AMP] = ACTIONS(191), + [anon_sym_and] = ACTIONS(191), + [anon_sym_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ] = ACTIONS(191), + [anon_sym_EQ_TILDE] = ACTIONS(191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(191), + [anon_sym_LT_EQ] = ACTIONS(191), + [anon_sym_GT_EQ] = ACTIONS(191), + [anon_sym_PIPE_GT] = ACTIONS(191), + [anon_sym_LT_LT_LT] = ACTIONS(191), + [anon_sym_GT_GT_GT] = ACTIONS(191), + [anon_sym_LT_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT_GT] = ACTIONS(191), + [anon_sym_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_PIPE_GT] = ACTIONS(191), + [anon_sym_in] = ACTIONS(191), + [anon_sym_CARET_CARET_CARET] = ACTIONS(191), + [anon_sym_SLASH_SLASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH_DASH] = ACTIONS(191), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_LT_GT] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_STAR_STAR] = ACTIONS(191), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(191), + [anon_sym_do] = ACTIONS(191), + [anon_sym_end] = ACTIONS(191), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_LPAREN2] = ACTIONS(293), + [anon_sym_LBRACK2] = ACTIONS(189), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(189), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(457), + [sym__not_in] = ACTIONS(189), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [54] = { + [sym__expression] = STATE(2217), + [sym_block] = STATE(2217), + [sym__identifier] = STATE(51), + [sym_identifier] = STATE(51), + [sym_special_identifier] = STATE(51), + [sym_boolean] = STATE(2217), + [sym_nil] = STATE(2217), + [sym__atom] = STATE(2217), + [sym_quoted_atom] = STATE(2217), + [sym__quoted_i_double] = STATE(2651), + [sym__quoted_i_single] = STATE(2652), + [sym__quoted_i_heredoc_single] = STATE(2751), + [sym__quoted_i_heredoc_double] = STATE(2852), + [sym_string] = STATE(2217), + [sym_charlist] = STATE(2217), + [sym_sigil] = STATE(2217), + [sym_keywords] = STATE(2703), + [sym_pair] = STATE(2277), + [sym__keyword] = STATE(780), + [sym_quoted_keyword] = STATE(780), + [sym_list] = STATE(2217), + [sym_tuple] = STATE(2217), + [sym_bitstring] = STATE(2217), + [sym_map] = STATE(2217), + [sym_unary_operator] = STATE(2217), + [sym_binary_operator] = STATE(2217), + [sym_operator_identifier] = STATE(5596), + [sym_dot] = STATE(2217), + [sym_call] = STATE(2217), + [sym__call_without_parentheses] = STATE(2764), + [sym__call_with_parentheses] = STATE(2765), + [sym__local_call_without_parentheses] = STATE(2767), + [sym__local_call_with_parentheses] = STATE(2120), + [sym__local_call_just_do_block] = STATE(2833), + [sym__remote_call_without_parentheses] = STATE(2843), + [sym__remote_call_with_parentheses] = STATE(2108), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2107), + [sym__anonymous_dot] = STATE(5500), + [sym__double_call] = STATE(2844), + [sym__call_arguments_with_parentheses_immediate] = STATE(2195), + [sym__call_arguments_without_parentheses] = STATE(2223), + [sym_do_block] = STATE(3853), + [sym_access_call] = STATE(2217), + [sym_anonymous_function] = STATE(2217), + [ts_builtin_sym_end] = ACTIONS(245), + [aux_sym__terminator_token1] = ACTIONS(245), + [anon_sym_SEMI] = ACTIONS(247), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(509), + [sym_integer] = ACTIONS(509), + [sym_float] = ACTIONS(509), + [sym_char] = ACTIONS(509), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_COMMA] = ACTIONS(247), + [sym_keyword] = ACTIONS(529), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(549), + [anon_sym_DASH] = ACTIONS(549), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_BSLASH_BSLASH] = ACTIONS(271), + [anon_sym_when] = ACTIONS(271), + [anon_sym_COLON_COLON] = ACTIONS(271), + [anon_sym_EQ_GT] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_PIPE_PIPE] = ACTIONS(271), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(271), + [anon_sym_AMP_AMP_AMP] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_EQ_TILDE] = ACTIONS(271), + [anon_sym_EQ_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ_EQ] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_PIPE_GT] = ACTIONS(271), + [anon_sym_LT_LT_LT] = ACTIONS(271), + [anon_sym_GT_GT_GT] = ACTIONS(271), + [anon_sym_LT_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT_GT] = ACTIONS(271), + [anon_sym_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_PIPE_GT] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_CARET_CARET_CARET] = ACTIONS(247), + [anon_sym_SLASH_SLASH] = ACTIONS(247), + [anon_sym_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH] = ACTIONS(271), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH_DASH] = ACTIONS(271), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_do] = ACTIONS(552), + [anon_sym_fn] = ACTIONS(541), + [anon_sym_LPAREN2] = ACTIONS(543), + [anon_sym_LBRACK2] = ACTIONS(245), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(545), + [sym__not_in] = ACTIONS(297), + [sym__quoted_atom_start] = ACTIONS(547), }, [55] = { - [sym__expression] = STATE(2103), - [sym_block] = STATE(2103), - [sym__identifier] = STATE(60), - [sym_identifier] = STATE(60), - [sym_special_identifier] = STATE(60), - [sym_boolean] = STATE(2103), - [sym_nil] = STATE(2103), - [sym__atom] = STATE(2103), - [sym_quoted_atom] = STATE(2103), - [sym__quoted_i_double] = STATE(2012), - [sym__quoted_i_single] = STATE(2011), - [sym__quoted_i_heredoc_single] = STATE(2413), - [sym__quoted_i_heredoc_double] = STATE(2414), - [sym_string] = STATE(2103), - [sym_charlist] = STATE(2103), - [sym_sigil] = STATE(2103), - [sym_keywords] = STATE(2756), - [sym_pair] = STATE(2310), - [sym__keyword] = STATE(445), - [sym_quoted_keyword] = STATE(445), - [sym_list] = STATE(2103), - [sym_tuple] = STATE(2103), - [sym_bitstring] = STATE(2103), - [sym_map] = STATE(2103), - [sym_unary_operator] = STATE(2103), - [sym_binary_operator] = STATE(2103), - [sym_operator_identifier] = STATE(5028), - [sym_dot] = STATE(2103), - [sym_call] = STATE(2103), - [sym__call_without_parentheses] = STATE(2412), - [sym__call_with_parentheses] = STATE(2411), - [sym__local_call_without_parentheses] = STATE(2410), - [sym__local_call_with_parentheses] = STATE(1910), - [sym__local_call_just_do_block] = STATE(2409), - [sym__remote_call_without_parentheses] = STATE(2408), - [sym__remote_call_with_parentheses] = STATE(1916), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(1975), - [sym__anonymous_dot] = STATE(4890), - [sym__double_call] = STATE(2407), - [sym__call_arguments_with_parentheses_immediate] = STATE(1917), - [sym__call_arguments_without_parentheses] = STATE(2069), - [sym_do_block] = STATE(3374), - [sym_access_call] = STATE(2103), - [sym_anonymous_function] = STATE(2103), + [sym__expression] = STATE(2653), + [sym_block] = STATE(2653), + [sym__identifier] = STATE(56), + [sym_identifier] = STATE(56), + [sym_special_identifier] = STATE(56), + [sym_boolean] = STATE(2653), + [sym_nil] = STATE(2653), + [sym__atom] = STATE(2653), + [sym_quoted_atom] = STATE(2653), + [sym__quoted_i_double] = STATE(2227), + [sym__quoted_i_single] = STATE(2228), + [sym__quoted_i_heredoc_single] = STATE(2910), + [sym__quoted_i_heredoc_double] = STATE(2805), + [sym_string] = STATE(2653), + [sym_charlist] = STATE(2653), + [sym_sigil] = STATE(2653), + [sym_keywords] = STATE(2740), + [sym_pair] = STATE(2287), + [sym__keyword] = STATE(480), + [sym_quoted_keyword] = STATE(480), + [sym_list] = STATE(2653), + [sym_tuple] = STATE(2653), + [sym_bitstring] = STATE(2653), + [sym_map] = STATE(2653), + [sym_unary_operator] = STATE(2653), + [sym_binary_operator] = STATE(2653), + [sym_operator_identifier] = STATE(5636), + [sym_dot] = STATE(2653), + [sym_call] = STATE(2653), + [sym__call_without_parentheses] = STATE(2883), + [sym__call_with_parentheses] = STATE(2876), + [sym__local_call_without_parentheses] = STATE(2870), + [sym__local_call_with_parentheses] = STATE(2037), + [sym__local_call_just_do_block] = STATE(2853), + [sym__remote_call_without_parentheses] = STATE(2846), + [sym__remote_call_with_parentheses] = STATE(2038), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2051), + [sym__anonymous_dot] = STATE(5534), + [sym__double_call] = STATE(2836), + [sym__call_arguments_with_parentheses_immediate] = STATE(2076), + [sym__call_arguments_without_parentheses] = STATE(2660), + [sym_do_block] = STATE(3806), + [sym_access_call] = STATE(2653), + [sym_anonymous_function] = STATE(2653), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_RPAREN] = ACTIONS(252), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [anon_sym_RPAREN] = ACTIONS(191), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), [sym_unused_identifier] = ACTIONS(558), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), [sym_alias] = ACTIONS(560), [sym_integer] = ACTIONS(560), [sym_float] = ACTIONS(560), @@ -31190,411 +31828,1120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), [anon_sym_LBRACE] = ACTIONS(574), [anon_sym_LBRACK] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(252), - [anon_sym_GT] = ACTIONS(252), - [anon_sym_PIPE] = ACTIONS(252), - [anon_sym_SLASH] = ACTIONS(252), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), [anon_sym_TILDE] = ACTIONS(578), - [anon_sym_COMMA] = ACTIONS(252), + [anon_sym_COMMA] = ACTIONS(191), [sym_keyword] = ACTIONS(580), [anon_sym_LT_LT] = ACTIONS(582), [anon_sym_PERCENT] = ACTIONS(584), [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(252), - [anon_sym_DASH] = ACTIONS(252), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), [anon_sym_BANG] = ACTIONS(588), [anon_sym_CARET] = ACTIONS(588), [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), [anon_sym_not] = ACTIONS(588), [anon_sym_AT] = ACTIONS(590), - [anon_sym_LT_DASH] = ACTIONS(252), - [anon_sym_BSLASH_BSLASH] = ACTIONS(252), - [anon_sym_when] = ACTIONS(252), - [anon_sym_COLON_COLON] = ACTIONS(252), - [anon_sym_EQ_GT] = ACTIONS(252), - [anon_sym_EQ] = ACTIONS(252), - [anon_sym_PIPE_PIPE] = ACTIONS(252), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(252), - [anon_sym_or] = ACTIONS(252), - [anon_sym_AMP_AMP] = ACTIONS(252), - [anon_sym_AMP_AMP_AMP] = ACTIONS(252), - [anon_sym_and] = ACTIONS(252), - [anon_sym_EQ_EQ] = ACTIONS(252), - [anon_sym_BANG_EQ] = ACTIONS(252), - [anon_sym_EQ_TILDE] = ACTIONS(252), - [anon_sym_EQ_EQ_EQ] = ACTIONS(252), - [anon_sym_BANG_EQ_EQ] = ACTIONS(252), - [anon_sym_LT_EQ] = ACTIONS(252), - [anon_sym_GT_EQ] = ACTIONS(252), - [anon_sym_PIPE_GT] = ACTIONS(252), - [anon_sym_LT_LT_LT] = ACTIONS(252), - [anon_sym_GT_GT_GT] = ACTIONS(252), - [anon_sym_LT_LT_TILDE] = ACTIONS(252), - [anon_sym_TILDE_GT_GT] = ACTIONS(252), - [anon_sym_LT_TILDE] = ACTIONS(252), - [anon_sym_TILDE_GT] = ACTIONS(252), - [anon_sym_LT_TILDE_GT] = ACTIONS(252), - [anon_sym_LT_PIPE_GT] = ACTIONS(252), - [anon_sym_in] = ACTIONS(252), - [anon_sym_CARET_CARET_CARET] = ACTIONS(252), - [anon_sym_SLASH_SLASH] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(252), - [anon_sym_DASH_DASH] = ACTIONS(252), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(252), - [anon_sym_DASH_DASH_DASH] = ACTIONS(252), - [anon_sym_DOT_DOT] = ACTIONS(252), - [anon_sym_LT_GT] = ACTIONS(252), - [anon_sym_STAR] = ACTIONS(252), - [anon_sym_STAR_STAR] = ACTIONS(252), + [anon_sym_LT_DASH] = ACTIONS(191), + [anon_sym_BSLASH_BSLASH] = ACTIONS(191), + [anon_sym_when] = ACTIONS(191), + [anon_sym_COLON_COLON] = ACTIONS(191), + [anon_sym_EQ_GT] = ACTIONS(191), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_PIPE_PIPE] = ACTIONS(191), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(191), + [anon_sym_or] = ACTIONS(191), + [anon_sym_AMP_AMP] = ACTIONS(191), + [anon_sym_AMP_AMP_AMP] = ACTIONS(191), + [anon_sym_and] = ACTIONS(191), + [anon_sym_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ] = ACTIONS(191), + [anon_sym_EQ_TILDE] = ACTIONS(191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(191), + [anon_sym_LT_EQ] = ACTIONS(191), + [anon_sym_GT_EQ] = ACTIONS(191), + [anon_sym_PIPE_GT] = ACTIONS(191), + [anon_sym_LT_LT_LT] = ACTIONS(191), + [anon_sym_GT_GT_GT] = ACTIONS(191), + [anon_sym_LT_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT_GT] = ACTIONS(191), + [anon_sym_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_PIPE_GT] = ACTIONS(191), + [anon_sym_in] = ACTIONS(191), + [anon_sym_CARET_CARET_CARET] = ACTIONS(191), + [anon_sym_SLASH_SLASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH_DASH] = ACTIONS(191), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_LT_GT] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_STAR_STAR] = ACTIONS(191), [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(252), - [anon_sym_DOT] = ACTIONS(252), + [anon_sym_DASH_GT] = ACTIONS(191), + [anon_sym_DOT] = ACTIONS(191), [anon_sym_do] = ACTIONS(592), [anon_sym_fn] = ACTIONS(594), [anon_sym_LPAREN2] = ACTIONS(596), - [anon_sym_LBRACK2] = ACTIONS(250), + [anon_sym_LBRACK2] = ACTIONS(189), [sym_comment] = ACTIONS(5), [sym__newline_before_do] = ACTIONS(598), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), [sym__before_unary_op] = ACTIONS(600), - [sym__not_in] = ACTIONS(250), + [sym__not_in] = ACTIONS(189), [sym__quoted_atom_start] = ACTIONS(602), }, [56] = { - [sym__expression] = STATE(1979), - [sym_block] = STATE(1979), - [sym__identifier] = STATE(48), - [sym_identifier] = STATE(48), - [sym_special_identifier] = STATE(48), - [sym_boolean] = STATE(1979), - [sym_nil] = STATE(1979), - [sym__atom] = STATE(1979), - [sym_quoted_atom] = STATE(1979), - [sym__quoted_i_double] = STATE(1114), - [sym__quoted_i_single] = STATE(1100), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(1979), - [sym_charlist] = STATE(1979), - [sym_sigil] = STATE(1979), - [sym_keywords] = STATE(1147), - [sym_pair] = STATE(1886), - [sym__keyword] = STATE(786), - [sym_quoted_keyword] = STATE(786), - [sym_list] = STATE(1979), - [sym_tuple] = STATE(1979), - [sym_bitstring] = STATE(1979), - [sym_map] = STATE(1979), - [sym_unary_operator] = STATE(1979), - [sym_binary_operator] = STATE(1979), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(1979), - [sym_call] = STATE(1979), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym__call_arguments_with_parentheses_immediate] = STATE(1088), - [sym__call_arguments_without_parentheses] = STATE(1095), - [sym_do_block] = STATE(1490), - [sym_access_call] = STATE(1979), - [sym_anonymous_function] = STATE(1979), - [aux_sym__terminator_token1] = ACTIONS(189), - [anon_sym_SEMI] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(254), - [anon_sym_RPAREN] = ACTIONS(191), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(527), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(529), - [sym_integer] = ACTIONS(529), - [sym_float] = ACTIONS(529), - [sym_char] = ACTIONS(529), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(219), - [anon_sym_GT] = ACTIONS(219), - [anon_sym_PIPE] = ACTIONS(219), - [anon_sym_SLASH] = ACTIONS(219), - [anon_sym_TILDE] = ACTIONS(531), - [anon_sym_COMMA] = ACTIONS(191), - [sym_keyword] = ACTIONS(533), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(553), - [anon_sym_BANG] = ACTIONS(537), - [anon_sym_CARET] = ACTIONS(537), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), - [anon_sym_not] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(539), - [anon_sym_LT_DASH] = ACTIONS(219), - [anon_sym_BSLASH_BSLASH] = ACTIONS(219), - [anon_sym_when] = ACTIONS(219), - [anon_sym_COLON_COLON] = ACTIONS(219), - [anon_sym_EQ_GT] = ACTIONS(191), - [anon_sym_EQ] = ACTIONS(219), - [anon_sym_PIPE_PIPE] = ACTIONS(219), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(219), - [anon_sym_or] = ACTIONS(219), - [anon_sym_AMP_AMP] = ACTIONS(219), - [anon_sym_AMP_AMP_AMP] = ACTIONS(219), - [anon_sym_and] = ACTIONS(219), - [anon_sym_EQ_EQ] = ACTIONS(219), - [anon_sym_BANG_EQ] = ACTIONS(219), - [anon_sym_EQ_TILDE] = ACTIONS(219), - [anon_sym_EQ_EQ_EQ] = ACTIONS(219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(219), - [anon_sym_LT_EQ] = ACTIONS(219), - [anon_sym_GT_EQ] = ACTIONS(219), - [anon_sym_PIPE_GT] = ACTIONS(219), - [anon_sym_LT_LT_LT] = ACTIONS(219), - [anon_sym_GT_GT_GT] = ACTIONS(219), - [anon_sym_LT_LT_TILDE] = ACTIONS(219), - [anon_sym_TILDE_GT_GT] = ACTIONS(219), - [anon_sym_LT_TILDE] = ACTIONS(219), - [anon_sym_TILDE_GT] = ACTIONS(219), - [anon_sym_LT_TILDE_GT] = ACTIONS(219), - [anon_sym_LT_PIPE_GT] = ACTIONS(219), - [anon_sym_in] = ACTIONS(219), - [anon_sym_CARET_CARET_CARET] = ACTIONS(191), - [anon_sym_SLASH_SLASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(219), - [anon_sym_DASH_DASH] = ACTIONS(219), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(219), - [anon_sym_DASH_DASH_DASH] = ACTIONS(219), - [anon_sym_DOT_DOT] = ACTIONS(219), - [anon_sym_LT_GT] = ACTIONS(219), - [anon_sym_STAR] = ACTIONS(219), - [anon_sym_STAR_STAR] = ACTIONS(219), + [sym__expression] = STATE(2653), + [sym_block] = STATE(2653), + [sym__identifier] = STATE(56), + [sym_identifier] = STATE(56), + [sym_special_identifier] = STATE(56), + [sym_boolean] = STATE(2653), + [sym_nil] = STATE(2653), + [sym__atom] = STATE(2653), + [sym_quoted_atom] = STATE(2653), + [sym__quoted_i_double] = STATE(2227), + [sym__quoted_i_single] = STATE(2228), + [sym__quoted_i_heredoc_single] = STATE(2910), + [sym__quoted_i_heredoc_double] = STATE(2805), + [sym_string] = STATE(2653), + [sym_charlist] = STATE(2653), + [sym_sigil] = STATE(2653), + [sym_keywords] = STATE(2740), + [sym_pair] = STATE(2287), + [sym__keyword] = STATE(480), + [sym_quoted_keyword] = STATE(480), + [sym_list] = STATE(2653), + [sym_tuple] = STATE(2653), + [sym_bitstring] = STATE(2653), + [sym_map] = STATE(2653), + [sym_unary_operator] = STATE(2653), + [sym_binary_operator] = STATE(2653), + [sym_operator_identifier] = STATE(5636), + [sym_dot] = STATE(2653), + [sym_call] = STATE(2653), + [sym__call_without_parentheses] = STATE(2883), + [sym__call_with_parentheses] = STATE(2876), + [sym__local_call_without_parentheses] = STATE(2870), + [sym__local_call_with_parentheses] = STATE(2037), + [sym__local_call_just_do_block] = STATE(2853), + [sym__remote_call_without_parentheses] = STATE(2846), + [sym__remote_call_with_parentheses] = STATE(2038), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2051), + [sym__anonymous_dot] = STATE(5534), + [sym__double_call] = STATE(2836), + [sym__call_arguments_with_parentheses_immediate] = STATE(2053), + [sym__call_arguments_without_parentheses] = STATE(2662), + [sym_do_block] = STATE(2689), + [sym_access_call] = STATE(2653), + [sym_anonymous_function] = STATE(2653), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [anon_sym_RPAREN] = ACTIONS(247), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(560), + [sym_integer] = ACTIONS(560), + [sym_float] = ACTIONS(560), + [sym_char] = ACTIONS(560), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(560), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_COMMA] = ACTIONS(247), + [sym_keyword] = ACTIONS(580), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(604), + [anon_sym_DASH] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_BSLASH_BSLASH] = ACTIONS(271), + [anon_sym_when] = ACTIONS(271), + [anon_sym_COLON_COLON] = ACTIONS(271), + [anon_sym_EQ_GT] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_PIPE_PIPE] = ACTIONS(271), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(271), + [anon_sym_AMP_AMP_AMP] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_EQ_TILDE] = ACTIONS(271), + [anon_sym_EQ_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ_EQ] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_PIPE_GT] = ACTIONS(271), + [anon_sym_LT_LT_LT] = ACTIONS(271), + [anon_sym_GT_GT_GT] = ACTIONS(271), + [anon_sym_LT_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT_GT] = ACTIONS(271), + [anon_sym_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_PIPE_GT] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_CARET_CARET_CARET] = ACTIONS(247), + [anon_sym_SLASH_SLASH] = ACTIONS(247), + [anon_sym_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH] = ACTIONS(271), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH_DASH] = ACTIONS(271), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(219), - [anon_sym_DOT] = ACTIONS(219), - [anon_sym_do] = ACTIONS(298), - [anon_sym_fn] = ACTIONS(290), - [anon_sym_LPAREN2] = ACTIONS(292), - [anon_sym_LBRACK2] = ACTIONS(189), + [anon_sym_DASH_GT] = ACTIONS(271), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_do] = ACTIONS(247), + [anon_sym_fn] = ACTIONS(594), + [anon_sym_LPAREN2] = ACTIONS(596), + [anon_sym_LBRACK2] = ACTIONS(245), [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(245), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(541), - [sym__not_in] = ACTIONS(245), - [sym__quoted_atom_start] = ACTIONS(296), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(297), + [sym__quoted_atom_start] = ACTIONS(602), }, [57] = { - [sym__expression] = STATE(2148), - [sym_block] = STATE(2148), - [sym__identifier] = STATE(45), - [sym_identifier] = STATE(45), - [sym_special_identifier] = STATE(45), - [sym_boolean] = STATE(2148), - [sym_nil] = STATE(2148), - [sym__atom] = STATE(2148), - [sym_quoted_atom] = STATE(2148), - [sym__quoted_i_double] = STATE(2235), - [sym__quoted_i_single] = STATE(2189), - [sym__quoted_i_heredoc_single] = STATE(2713), - [sym__quoted_i_heredoc_double] = STATE(2714), - [sym_string] = STATE(2148), - [sym_charlist] = STATE(2148), - [sym_sigil] = STATE(2148), - [sym_keywords] = STATE(2580), - [sym_pair] = STATE(2129), - [sym__keyword] = STATE(726), - [sym_quoted_keyword] = STATE(726), - [sym_list] = STATE(2148), - [sym_tuple] = STATE(2148), - [sym_bitstring] = STATE(2148), - [sym_map] = STATE(2148), - [sym_unary_operator] = STATE(2148), - [sym_binary_operator] = STATE(2148), - [sym_operator_identifier] = STATE(4988), - [sym_dot] = STATE(2148), - [sym_call] = STATE(2148), - [sym__call_without_parentheses] = STATE(2712), - [sym__call_with_parentheses] = STATE(2711), - [sym__local_call_without_parentheses] = STATE(2710), - [sym__local_call_with_parentheses] = STATE(1879), - [sym__local_call_just_do_block] = STATE(2709), - [sym__remote_call_without_parentheses] = STATE(2708), - [sym__remote_call_with_parentheses] = STATE(1859), - [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1919), - [sym__anonymous_dot] = STATE(4871), - [sym__double_call] = STATE(2707), - [sym__call_arguments_with_parentheses_immediate] = STATE(1981), - [sym__call_arguments_without_parentheses] = STATE(2145), - [sym_do_block] = STATE(3239), - [sym_access_call] = STATE(2148), - [sym_anonymous_function] = STATE(2148), - [ts_builtin_sym_end] = ACTIONS(189), - [aux_sym__terminator_token1] = ACTIONS(189), - [anon_sym_SEMI] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(479), - [aux_sym_identifier_token1] = ACTIONS(481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(481), - [sym_unused_identifier] = ACTIONS(483), - [anon_sym___MODULE__] = ACTIONS(485), - [anon_sym___DIR__] = ACTIONS(485), - [anon_sym___ENV__] = ACTIONS(485), - [anon_sym___CALLER__] = ACTIONS(485), - [anon_sym___STACKTRACE__] = ACTIONS(485), - [sym_alias] = ACTIONS(487), - [sym_integer] = ACTIONS(487), - [sym_float] = ACTIONS(487), - [sym_char] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_nil] = ACTIONS(491), - [sym_atom] = ACTIONS(487), - [anon_sym_DQUOTE] = ACTIONS(493), - [anon_sym_SQUOTE] = ACTIONS(495), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(497), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(499), - [anon_sym_LBRACE] = ACTIONS(501), - [anon_sym_LBRACK] = ACTIONS(503), - [anon_sym_LT] = ACTIONS(219), - [anon_sym_GT] = ACTIONS(219), - [anon_sym_PIPE] = ACTIONS(219), - [anon_sym_SLASH] = ACTIONS(219), - [anon_sym_TILDE] = ACTIONS(505), + [sym__expression] = STATE(2653), + [sym_block] = STATE(2653), + [sym__identifier] = STATE(56), + [sym_identifier] = STATE(56), + [sym_special_identifier] = STATE(56), + [sym_boolean] = STATE(2653), + [sym_nil] = STATE(2653), + [sym__atom] = STATE(2653), + [sym_quoted_atom] = STATE(2653), + [sym__quoted_i_double] = STATE(2227), + [sym__quoted_i_single] = STATE(2228), + [sym__quoted_i_heredoc_single] = STATE(2910), + [sym__quoted_i_heredoc_double] = STATE(2805), + [sym_string] = STATE(2653), + [sym_charlist] = STATE(2653), + [sym_sigil] = STATE(2653), + [sym_keywords] = STATE(2740), + [sym_pair] = STATE(2287), + [sym__keyword] = STATE(480), + [sym_quoted_keyword] = STATE(480), + [sym_list] = STATE(2653), + [sym_tuple] = STATE(2653), + [sym_bitstring] = STATE(2653), + [sym_map] = STATE(2653), + [sym_unary_operator] = STATE(2653), + [sym_binary_operator] = STATE(2653), + [sym_operator_identifier] = STATE(5636), + [sym_dot] = STATE(2653), + [sym_call] = STATE(2653), + [sym__call_without_parentheses] = STATE(2883), + [sym__call_with_parentheses] = STATE(2876), + [sym__local_call_without_parentheses] = STATE(2870), + [sym__local_call_with_parentheses] = STATE(2037), + [sym__local_call_just_do_block] = STATE(2853), + [sym__remote_call_without_parentheses] = STATE(2846), + [sym__remote_call_with_parentheses] = STATE(2038), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2051), + [sym__anonymous_dot] = STATE(5534), + [sym__double_call] = STATE(2836), + [sym__call_arguments_with_parentheses_immediate] = STATE(2074), + [sym__call_arguments_without_parentheses] = STATE(2211), + [sym_do_block] = STATE(2692), + [sym_access_call] = STATE(2653), + [sym_anonymous_function] = STATE(2653), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [anon_sym_RPAREN] = ACTIONS(191), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(560), + [sym_integer] = ACTIONS(560), + [sym_float] = ACTIONS(560), + [sym_char] = ACTIONS(560), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(560), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(578), [anon_sym_COMMA] = ACTIONS(191), - [sym_keyword] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(543), - [anon_sym_BANG] = ACTIONS(515), - [anon_sym_CARET] = ACTIONS(515), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(515), - [anon_sym_not] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(517), - [anon_sym_LT_DASH] = ACTIONS(219), - [anon_sym_BSLASH_BSLASH] = ACTIONS(219), - [anon_sym_when] = ACTIONS(219), - [anon_sym_COLON_COLON] = ACTIONS(219), + [sym_keyword] = ACTIONS(580), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(191), + [anon_sym_BSLASH_BSLASH] = ACTIONS(191), + [anon_sym_when] = ACTIONS(191), + [anon_sym_COLON_COLON] = ACTIONS(191), [anon_sym_EQ_GT] = ACTIONS(191), - [anon_sym_EQ] = ACTIONS(219), - [anon_sym_PIPE_PIPE] = ACTIONS(219), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(219), - [anon_sym_or] = ACTIONS(219), - [anon_sym_AMP_AMP] = ACTIONS(219), - [anon_sym_AMP_AMP_AMP] = ACTIONS(219), - [anon_sym_and] = ACTIONS(219), - [anon_sym_EQ_EQ] = ACTIONS(219), - [anon_sym_BANG_EQ] = ACTIONS(219), - [anon_sym_EQ_TILDE] = ACTIONS(219), - [anon_sym_EQ_EQ_EQ] = ACTIONS(219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(219), - [anon_sym_LT_EQ] = ACTIONS(219), - [anon_sym_GT_EQ] = ACTIONS(219), - [anon_sym_PIPE_GT] = ACTIONS(219), - [anon_sym_LT_LT_LT] = ACTIONS(219), - [anon_sym_GT_GT_GT] = ACTIONS(219), - [anon_sym_LT_LT_TILDE] = ACTIONS(219), - [anon_sym_TILDE_GT_GT] = ACTIONS(219), - [anon_sym_LT_TILDE] = ACTIONS(219), - [anon_sym_TILDE_GT] = ACTIONS(219), - [anon_sym_LT_TILDE_GT] = ACTIONS(219), - [anon_sym_LT_PIPE_GT] = ACTIONS(219), - [anon_sym_in] = ACTIONS(219), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_PIPE_PIPE] = ACTIONS(191), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(191), + [anon_sym_or] = ACTIONS(191), + [anon_sym_AMP_AMP] = ACTIONS(191), + [anon_sym_AMP_AMP_AMP] = ACTIONS(191), + [anon_sym_and] = ACTIONS(191), + [anon_sym_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ] = ACTIONS(191), + [anon_sym_EQ_TILDE] = ACTIONS(191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(191), + [anon_sym_LT_EQ] = ACTIONS(191), + [anon_sym_GT_EQ] = ACTIONS(191), + [anon_sym_PIPE_GT] = ACTIONS(191), + [anon_sym_LT_LT_LT] = ACTIONS(191), + [anon_sym_GT_GT_GT] = ACTIONS(191), + [anon_sym_LT_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT_GT] = ACTIONS(191), + [anon_sym_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_PIPE_GT] = ACTIONS(191), + [anon_sym_in] = ACTIONS(191), [anon_sym_CARET_CARET_CARET] = ACTIONS(191), [anon_sym_SLASH_SLASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(219), - [anon_sym_DASH_DASH] = ACTIONS(219), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(219), - [anon_sym_DASH_DASH_DASH] = ACTIONS(219), - [anon_sym_DOT_DOT] = ACTIONS(219), - [anon_sym_LT_GT] = ACTIONS(219), - [anon_sym_STAR] = ACTIONS(219), - [anon_sym_STAR_STAR] = ACTIONS(219), + [anon_sym_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH_DASH] = ACTIONS(191), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_LT_GT] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_STAR_STAR] = ACTIONS(191), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(191), + [anon_sym_DOT] = ACTIONS(191), + [anon_sym_do] = ACTIONS(191), + [anon_sym_fn] = ACTIONS(594), + [anon_sym_LPAREN2] = ACTIONS(596), + [anon_sym_LBRACK2] = ACTIONS(189), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(189), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(189), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [58] = { + [sym__expression] = STATE(2898), + [sym_block] = STATE(2898), + [sym__identifier] = STATE(61), + [sym_identifier] = STATE(61), + [sym_special_identifier] = STATE(61), + [sym_boolean] = STATE(2898), + [sym_nil] = STATE(2898), + [sym__atom] = STATE(2898), + [sym_quoted_atom] = STATE(2898), + [sym__quoted_i_double] = STATE(2972), + [sym__quoted_i_single] = STATE(2970), + [sym__quoted_i_heredoc_single] = STATE(3316), + [sym__quoted_i_heredoc_double] = STATE(3315), + [sym_string] = STATE(2898), + [sym_charlist] = STATE(2898), + [sym_sigil] = STATE(2898), + [sym_keywords] = STATE(3379), + [sym_pair] = STATE(2745), + [sym__keyword] = STATE(465), + [sym_quoted_keyword] = STATE(465), + [sym_list] = STATE(2898), + [sym_tuple] = STATE(2898), + [sym_bitstring] = STATE(2898), + [sym_map] = STATE(2898), + [sym_unary_operator] = STATE(2898), + [sym_binary_operator] = STATE(2898), + [sym_operator_identifier] = STATE(5628), + [sym_dot] = STATE(2898), + [sym_call] = STATE(2898), + [sym__call_without_parentheses] = STATE(3314), + [sym__call_with_parentheses] = STATE(3313), + [sym__local_call_without_parentheses] = STATE(3312), + [sym__local_call_with_parentheses] = STATE(2420), + [sym__local_call_just_do_block] = STATE(3311), + [sym__remote_call_without_parentheses] = STATE(3310), + [sym__remote_call_with_parentheses] = STATE(2423), + [sym__remote_dot] = STATE(60), + [sym__anonymous_call] = STATE(2425), + [sym__anonymous_dot] = STATE(5498), + [sym__double_call] = STATE(3309), + [sym__call_arguments_with_parentheses_immediate] = STATE(2634), + [sym__call_arguments_without_parentheses] = STATE(2891), + [sym_do_block] = STATE(4080), + [sym_access_call] = STATE(2898), + [sym_anonymous_function] = STATE(2898), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(615), + [sym_integer] = ACTIONS(615), + [sym_float] = ACTIONS(615), + [sym_char] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(615), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_COMMA] = ACTIONS(191), + [sym_keyword] = ACTIONS(635), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_GT_GT] = ACTIONS(191), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(643), + [anon_sym_not] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [anon_sym_LT_DASH] = ACTIONS(191), + [anon_sym_BSLASH_BSLASH] = ACTIONS(191), + [anon_sym_when] = ACTIONS(191), + [anon_sym_COLON_COLON] = ACTIONS(191), + [anon_sym_EQ_GT] = ACTIONS(191), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_PIPE_PIPE] = ACTIONS(191), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(191), + [anon_sym_or] = ACTIONS(191), + [anon_sym_AMP_AMP] = ACTIONS(191), + [anon_sym_AMP_AMP_AMP] = ACTIONS(191), + [anon_sym_and] = ACTIONS(191), + [anon_sym_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ] = ACTIONS(191), + [anon_sym_EQ_TILDE] = ACTIONS(191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(191), + [anon_sym_LT_EQ] = ACTIONS(191), + [anon_sym_GT_EQ] = ACTIONS(191), + [anon_sym_PIPE_GT] = ACTIONS(191), + [anon_sym_LT_LT_LT] = ACTIONS(191), + [anon_sym_GT_GT_GT] = ACTIONS(191), + [anon_sym_LT_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT_GT] = ACTIONS(191), + [anon_sym_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_PIPE_GT] = ACTIONS(191), + [anon_sym_in] = ACTIONS(191), + [anon_sym_CARET_CARET_CARET] = ACTIONS(191), + [anon_sym_SLASH_SLASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH_DASH] = ACTIONS(191), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_LT_GT] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_STAR_STAR] = ACTIONS(191), [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(219), - [anon_sym_do] = ACTIONS(546), - [anon_sym_fn] = ACTIONS(519), - [anon_sym_LPAREN2] = ACTIONS(521), + [anon_sym_DOT] = ACTIONS(191), + [anon_sym_do] = ACTIONS(647), + [anon_sym_fn] = ACTIONS(649), + [anon_sym_LPAREN2] = ACTIONS(651), [anon_sym_LBRACK2] = ACTIONS(189), [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(653), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(655), + [sym__not_in] = ACTIONS(189), + [sym__quoted_atom_start] = ACTIONS(657), + }, + [59] = { + [sym__expression] = STATE(2183), + [sym_block] = STATE(2183), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2183), + [sym_nil] = STATE(2183), + [sym__atom] = STATE(2183), + [sym_quoted_atom] = STATE(2183), + [sym__quoted_i_double] = STATE(1096), + [sym__quoted_i_single] = STATE(1095), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(2183), + [sym_charlist] = STATE(2183), + [sym_sigil] = STATE(2183), + [sym_keywords] = STATE(1269), + [sym_pair] = STATE(2110), + [sym__keyword] = STATE(873), + [sym_quoted_keyword] = STATE(873), + [sym_list] = STATE(2183), + [sym_tuple] = STATE(2183), + [sym_bitstring] = STATE(2183), + [sym_map] = STATE(2183), + [sym_unary_operator] = STATE(2183), + [sym_binary_operator] = STATE(2183), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(2183), + [sym_call] = STATE(2183), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym__call_arguments_with_parentheses_immediate] = STATE(1085), + [sym__call_arguments_without_parentheses] = STATE(1098), + [sym_do_block] = STATE(1647), + [sym_access_call] = STATE(2183), + [sym_anonymous_function] = STATE(2183), + [aux_sym__terminator_token1] = ACTIONS(245), + [anon_sym_SEMI] = ACTIONS(247), + [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_RPAREN] = ACTIONS(247), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(461), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), + [sym_alias] = ACTIONS(465), + [sym_integer] = ACTIONS(465), + [sym_float] = ACTIONS(465), + [sym_char] = ACTIONS(465), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(465), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_COMMA] = ACTIONS(247), + [sym_keyword] = ACTIONS(469), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_CARET] = ACTIONS(476), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(476), + [anon_sym_not] = ACTIONS(476), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_BSLASH_BSLASH] = ACTIONS(271), + [anon_sym_when] = ACTIONS(271), + [anon_sym_COLON_COLON] = ACTIONS(271), + [anon_sym_EQ_GT] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_PIPE_PIPE] = ACTIONS(271), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(271), + [anon_sym_AMP_AMP_AMP] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_EQ_TILDE] = ACTIONS(271), + [anon_sym_EQ_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ_EQ] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_PIPE_GT] = ACTIONS(271), + [anon_sym_LT_LT_LT] = ACTIONS(271), + [anon_sym_GT_GT_GT] = ACTIONS(271), + [anon_sym_LT_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT_GT] = ACTIONS(271), + [anon_sym_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_PIPE_GT] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_CARET_CARET_CARET] = ACTIONS(247), + [anon_sym_SLASH_SLASH] = ACTIONS(247), + [anon_sym_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH] = ACTIONS(271), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH_DASH] = ACTIONS(271), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(271), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_do] = ACTIONS(233), + [anon_sym_fn] = ACTIONS(235), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_LBRACK2] = ACTIONS(245), + [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(523), - [sym__not_in] = ACTIONS(245), - [sym__quoted_atom_start] = ACTIONS(525), + [sym__before_unary_op] = ACTIONS(480), + [sym__not_in] = ACTIONS(297), + [sym__quoted_atom_start] = ACTIONS(243), }, - [58] = { - [sym__expression] = STATE(2270), - [sym_block] = STATE(2270), - [sym__identifier] = STATE(47), - [sym_identifier] = STATE(47), - [sym_special_identifier] = STATE(47), - [sym_boolean] = STATE(2270), - [sym_nil] = STATE(2270), - [sym__atom] = STATE(2270), - [sym_quoted_atom] = STATE(2270), - [sym__quoted_i_double] = STATE(1146), - [sym__quoted_i_single] = STATE(1145), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2270), - [sym_charlist] = STATE(2270), - [sym_sigil] = STATE(2270), - [sym_keywords] = STATE(1363), - [sym_pair] = STATE(2125), - [sym__keyword] = STATE(492), - [sym_quoted_keyword] = STATE(492), - [sym_list] = STATE(2270), - [sym_tuple] = STATE(2270), - [sym_bitstring] = STATE(2270), - [sym_map] = STATE(2270), - [sym_unary_operator] = STATE(2270), - [sym_binary_operator] = STATE(2270), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2270), - [sym_call] = STATE(2270), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(41), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym__call_arguments_with_parentheses_immediate] = STATE(1116), - [sym__call_arguments_without_parentheses] = STATE(1275), - [sym_do_block] = STATE(1628), - [sym_access_call] = STATE(2270), - [sym_anonymous_function] = STATE(2270), - [aux_sym__terminator_token1] = ACTIONS(189), - [anon_sym_SEMI] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(193), - [anon_sym_RPAREN] = ACTIONS(191), + [60] = { + [sym__expression] = STATE(2898), + [sym_block] = STATE(2898), + [sym__identifier] = STATE(61), + [sym_identifier] = STATE(61), + [sym_special_identifier] = STATE(61), + [sym_boolean] = STATE(2898), + [sym_nil] = STATE(2898), + [sym__atom] = STATE(2898), + [sym_quoted_atom] = STATE(2898), + [sym__quoted_i_double] = STATE(2972), + [sym__quoted_i_single] = STATE(2970), + [sym__quoted_i_heredoc_single] = STATE(3316), + [sym__quoted_i_heredoc_double] = STATE(3315), + [sym_string] = STATE(2898), + [sym_charlist] = STATE(2898), + [sym_sigil] = STATE(2898), + [sym_keywords] = STATE(3379), + [sym_pair] = STATE(2745), + [sym__keyword] = STATE(465), + [sym_quoted_keyword] = STATE(465), + [sym_list] = STATE(2898), + [sym_tuple] = STATE(2898), + [sym_bitstring] = STATE(2898), + [sym_map] = STATE(2898), + [sym_unary_operator] = STATE(2898), + [sym_binary_operator] = STATE(2898), + [sym_operator_identifier] = STATE(5628), + [sym_dot] = STATE(2898), + [sym_call] = STATE(2898), + [sym__call_without_parentheses] = STATE(3314), + [sym__call_with_parentheses] = STATE(3313), + [sym__local_call_without_parentheses] = STATE(3312), + [sym__local_call_with_parentheses] = STATE(2420), + [sym__local_call_just_do_block] = STATE(3311), + [sym__remote_call_without_parentheses] = STATE(3310), + [sym__remote_call_with_parentheses] = STATE(2423), + [sym__remote_dot] = STATE(60), + [sym__anonymous_call] = STATE(2425), + [sym__anonymous_dot] = STATE(5498), + [sym__double_call] = STATE(3309), + [sym__call_arguments_with_parentheses_immediate] = STATE(2471), + [sym__call_arguments_without_parentheses] = STATE(3114), + [sym_do_block] = STATE(3247), + [sym_access_call] = STATE(2898), + [sym_anonymous_function] = STATE(2898), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(615), + [sym_integer] = ACTIONS(615), + [sym_float] = ACTIONS(615), + [sym_char] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(615), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_COMMA] = ACTIONS(191), + [sym_keyword] = ACTIONS(635), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_GT_GT] = ACTIONS(191), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(643), + [anon_sym_not] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [anon_sym_LT_DASH] = ACTIONS(191), + [anon_sym_BSLASH_BSLASH] = ACTIONS(191), + [anon_sym_when] = ACTIONS(191), + [anon_sym_COLON_COLON] = ACTIONS(191), + [anon_sym_EQ_GT] = ACTIONS(191), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_PIPE_PIPE] = ACTIONS(191), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(191), + [anon_sym_or] = ACTIONS(191), + [anon_sym_AMP_AMP] = ACTIONS(191), + [anon_sym_AMP_AMP_AMP] = ACTIONS(191), + [anon_sym_and] = ACTIONS(191), + [anon_sym_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ] = ACTIONS(191), + [anon_sym_EQ_TILDE] = ACTIONS(191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(191), + [anon_sym_LT_EQ] = ACTIONS(191), + [anon_sym_GT_EQ] = ACTIONS(191), + [anon_sym_PIPE_GT] = ACTIONS(191), + [anon_sym_LT_LT_LT] = ACTIONS(191), + [anon_sym_GT_GT_GT] = ACTIONS(191), + [anon_sym_LT_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT_GT] = ACTIONS(191), + [anon_sym_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_PIPE_GT] = ACTIONS(191), + [anon_sym_in] = ACTIONS(191), + [anon_sym_CARET_CARET_CARET] = ACTIONS(191), + [anon_sym_SLASH_SLASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH_DASH] = ACTIONS(191), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_LT_GT] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_STAR_STAR] = ACTIONS(191), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(191), + [anon_sym_do] = ACTIONS(191), + [anon_sym_fn] = ACTIONS(649), + [anon_sym_LPAREN2] = ACTIONS(651), + [anon_sym_LBRACK2] = ACTIONS(189), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(189), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(655), + [sym__not_in] = ACTIONS(189), + [sym__quoted_atom_start] = ACTIONS(657), + }, + [61] = { + [sym__expression] = STATE(2898), + [sym_block] = STATE(2898), + [sym__identifier] = STATE(61), + [sym_identifier] = STATE(61), + [sym_special_identifier] = STATE(61), + [sym_boolean] = STATE(2898), + [sym_nil] = STATE(2898), + [sym__atom] = STATE(2898), + [sym_quoted_atom] = STATE(2898), + [sym__quoted_i_double] = STATE(2972), + [sym__quoted_i_single] = STATE(2970), + [sym__quoted_i_heredoc_single] = STATE(3316), + [sym__quoted_i_heredoc_double] = STATE(3315), + [sym_string] = STATE(2898), + [sym_charlist] = STATE(2898), + [sym_sigil] = STATE(2898), + [sym_keywords] = STATE(3379), + [sym_pair] = STATE(2745), + [sym__keyword] = STATE(465), + [sym_quoted_keyword] = STATE(465), + [sym_list] = STATE(2898), + [sym_tuple] = STATE(2898), + [sym_bitstring] = STATE(2898), + [sym_map] = STATE(2898), + [sym_unary_operator] = STATE(2898), + [sym_binary_operator] = STATE(2898), + [sym_operator_identifier] = STATE(5628), + [sym_dot] = STATE(2898), + [sym_call] = STATE(2898), + [sym__call_without_parentheses] = STATE(3314), + [sym__call_with_parentheses] = STATE(3313), + [sym__local_call_without_parentheses] = STATE(3312), + [sym__local_call_with_parentheses] = STATE(2420), + [sym__local_call_just_do_block] = STATE(3311), + [sym__remote_call_without_parentheses] = STATE(3310), + [sym__remote_call_with_parentheses] = STATE(2423), + [sym__remote_dot] = STATE(60), + [sym__anonymous_call] = STATE(2425), + [sym__anonymous_dot] = STATE(5498), + [sym__double_call] = STATE(3309), + [sym__call_arguments_with_parentheses_immediate] = STATE(2466), + [sym__call_arguments_without_parentheses] = STATE(3112), + [sym_do_block] = STATE(3251), + [sym_access_call] = STATE(2898), + [sym_anonymous_function] = STATE(2898), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(615), + [sym_integer] = ACTIONS(615), + [sym_float] = ACTIONS(615), + [sym_char] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(615), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_COMMA] = ACTIONS(247), + [sym_keyword] = ACTIONS(635), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_GT_GT] = ACTIONS(247), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(643), + [anon_sym_not] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_BSLASH_BSLASH] = ACTIONS(271), + [anon_sym_when] = ACTIONS(271), + [anon_sym_COLON_COLON] = ACTIONS(271), + [anon_sym_EQ_GT] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_PIPE_PIPE] = ACTIONS(271), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(271), + [anon_sym_AMP_AMP_AMP] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_EQ_TILDE] = ACTIONS(271), + [anon_sym_EQ_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ_EQ] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_PIPE_GT] = ACTIONS(271), + [anon_sym_LT_LT_LT] = ACTIONS(271), + [anon_sym_GT_GT_GT] = ACTIONS(271), + [anon_sym_LT_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT_GT] = ACTIONS(271), + [anon_sym_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_PIPE_GT] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_CARET_CARET_CARET] = ACTIONS(247), + [anon_sym_SLASH_SLASH] = ACTIONS(247), + [anon_sym_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH] = ACTIONS(271), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH_DASH] = ACTIONS(271), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_do] = ACTIONS(247), + [anon_sym_fn] = ACTIONS(649), + [anon_sym_LPAREN2] = ACTIONS(651), + [anon_sym_LBRACK2] = ACTIONS(245), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(245), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(655), + [sym__not_in] = ACTIONS(297), + [sym__quoted_atom_start] = ACTIONS(657), + }, + [62] = { + [sym__expression] = STATE(2338), + [sym_block] = STATE(2338), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(2338), + [sym_nil] = STATE(2338), + [sym__atom] = STATE(2338), + [sym_quoted_atom] = STATE(2338), + [sym__quoted_i_double] = STATE(1276), + [sym__quoted_i_single] = STATE(1277), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(2338), + [sym_charlist] = STATE(2338), + [sym_sigil] = STATE(2338), + [sym_keywords] = STATE(1451), + [sym_pair] = STATE(2388), + [sym__keyword] = STATE(505), + [sym_quoted_keyword] = STATE(505), + [sym_list] = STATE(2338), + [sym_tuple] = STATE(2338), + [sym_bitstring] = STATE(2338), + [sym_map] = STATE(2338), + [sym_unary_operator] = STATE(2338), + [sym_binary_operator] = STATE(2338), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(2338), + [sym_call] = STATE(2338), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym__call_arguments_with_parentheses_immediate] = STATE(1126), + [sym__call_arguments_without_parentheses] = STATE(1294), + [sym_do_block] = STATE(1812), + [sym_access_call] = STATE(2338), + [sym_anonymous_function] = STATE(2338), + [aux_sym__terminator_token1] = ACTIONS(245), + [anon_sym_SEMI] = ACTIONS(247), + [anon_sym_LPAREN] = ACTIONS(249), + [anon_sym_RPAREN] = ACTIONS(247), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(482), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), + [sym_alias] = ACTIONS(484), + [sym_integer] = ACTIONS(484), + [sym_float] = ACTIONS(484), + [sym_char] = ACTIONS(484), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(484), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(486), + [anon_sym_COMMA] = ACTIONS(247), + [sym_keyword] = ACTIONS(488), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_CARET] = ACTIONS(495), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(495), + [anon_sym_not] = ACTIONS(495), + [anon_sym_AT] = ACTIONS(497), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_BSLASH_BSLASH] = ACTIONS(271), + [anon_sym_when] = ACTIONS(271), + [anon_sym_COLON_COLON] = ACTIONS(271), + [anon_sym_EQ_GT] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_PIPE_PIPE] = ACTIONS(271), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(271), + [anon_sym_AMP_AMP_AMP] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_EQ_TILDE] = ACTIONS(271), + [anon_sym_EQ_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ_EQ] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_PIPE_GT] = ACTIONS(271), + [anon_sym_LT_LT_LT] = ACTIONS(271), + [anon_sym_GT_GT_GT] = ACTIONS(271), + [anon_sym_LT_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT_GT] = ACTIONS(271), + [anon_sym_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_PIPE_GT] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_CARET_CARET_CARET] = ACTIONS(247), + [anon_sym_SLASH_SLASH] = ACTIONS(247), + [anon_sym_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH] = ACTIONS(271), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH_DASH] = ACTIONS(271), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_do] = ACTIONS(305), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_LPAREN2] = ACTIONS(293), + [anon_sym_LBRACK2] = ACTIONS(245), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(499), + [sym__not_in] = ACTIONS(297), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [63] = { + [sym__expression] = STATE(2638), + [sym_block] = STATE(2638), + [sym__identifier] = STATE(41), + [sym_identifier] = STATE(41), + [sym_special_identifier] = STATE(41), + [sym_boolean] = STATE(2638), + [sym_nil] = STATE(2638), + [sym__atom] = STATE(2638), + [sym_quoted_atom] = STATE(2638), + [sym__quoted_i_double] = STATE(1276), + [sym__quoted_i_single] = STATE(1277), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(2638), + [sym_charlist] = STATE(2638), + [sym_sigil] = STATE(2638), + [sym_keywords] = STATE(1451), + [sym_pair] = STATE(2214), + [sym__keyword] = STATE(799), + [sym_quoted_keyword] = STATE(799), + [sym_list] = STATE(2638), + [sym_tuple] = STATE(2638), + [sym_bitstring] = STATE(2638), + [sym_map] = STATE(2638), + [sym_unary_operator] = STATE(2638), + [sym_binary_operator] = STATE(2638), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(2638), + [sym_call] = STATE(2638), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym__call_arguments_with_parentheses_immediate] = STATE(1126), + [sym__call_arguments_without_parentheses] = STATE(1294), + [sym_do_block] = STATE(1812), + [sym_access_call] = STATE(2638), + [sym_anonymous_function] = STATE(2638), + [aux_sym__terminator_token1] = ACTIONS(245), + [anon_sym_SEMI] = ACTIONS(247), + [anon_sym_LPAREN] = ACTIONS(249), [aux_sym_identifier_token1] = ACTIONS(436), [anon_sym_DOT_DOT_DOT] = ACTIONS(436), [sym_unused_identifier] = ACTIONS(438), @@ -31607,853 +32954,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(442), [sym_float] = ACTIONS(442), [sym_char] = ACTIONS(442), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), [sym_atom] = ACTIONS(442), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(219), - [anon_sym_GT] = ACTIONS(219), - [anon_sym_PIPE] = ACTIONS(219), - [anon_sym_SLASH] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_COMMA] = ACTIONS(191), + [anon_sym_COMMA] = ACTIONS(247), [sym_keyword] = ACTIONS(446), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), [anon_sym_AMP] = ACTIONS(448), - [anon_sym_PLUS] = ACTIONS(550), - [anon_sym_DASH] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(450), - [anon_sym_CARET] = ACTIONS(450), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), - [anon_sym_not] = ACTIONS(450), - [anon_sym_AT] = ACTIONS(452), - [anon_sym_LT_DASH] = ACTIONS(219), - [anon_sym_BSLASH_BSLASH] = ACTIONS(219), - [anon_sym_when] = ACTIONS(219), - [anon_sym_COLON_COLON] = ACTIONS(219), - [anon_sym_EQ_GT] = ACTIONS(191), - [anon_sym_EQ] = ACTIONS(219), - [anon_sym_PIPE_PIPE] = ACTIONS(219), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(219), - [anon_sym_or] = ACTIONS(219), - [anon_sym_AMP_AMP] = ACTIONS(219), - [anon_sym_AMP_AMP_AMP] = ACTIONS(219), - [anon_sym_and] = ACTIONS(219), - [anon_sym_EQ_EQ] = ACTIONS(219), - [anon_sym_BANG_EQ] = ACTIONS(219), - [anon_sym_EQ_TILDE] = ACTIONS(219), - [anon_sym_EQ_EQ_EQ] = ACTIONS(219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(219), - [anon_sym_LT_EQ] = ACTIONS(219), - [anon_sym_GT_EQ] = ACTIONS(219), - [anon_sym_PIPE_GT] = ACTIONS(219), - [anon_sym_LT_LT_LT] = ACTIONS(219), - [anon_sym_GT_GT_GT] = ACTIONS(219), - [anon_sym_LT_LT_TILDE] = ACTIONS(219), - [anon_sym_TILDE_GT_GT] = ACTIONS(219), - [anon_sym_LT_TILDE] = ACTIONS(219), - [anon_sym_TILDE_GT] = ACTIONS(219), - [anon_sym_LT_TILDE_GT] = ACTIONS(219), - [anon_sym_LT_PIPE_GT] = ACTIONS(219), - [anon_sym_in] = ACTIONS(219), - [anon_sym_CARET_CARET_CARET] = ACTIONS(191), - [anon_sym_SLASH_SLASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(219), - [anon_sym_DASH_DASH] = ACTIONS(219), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(219), - [anon_sym_DASH_DASH_DASH] = ACTIONS(219), - [anon_sym_DOT_DOT] = ACTIONS(219), - [anon_sym_LT_GT] = ACTIONS(219), - [anon_sym_STAR] = ACTIONS(219), - [anon_sym_STAR_STAR] = ACTIONS(219), + [anon_sym_PLUS] = ACTIONS(450), + [anon_sym_DASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(453), + [anon_sym_not] = ACTIONS(453), + [anon_sym_AT] = ACTIONS(455), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_BSLASH_BSLASH] = ACTIONS(271), + [anon_sym_when] = ACTIONS(271), + [anon_sym_COLON_COLON] = ACTIONS(271), + [anon_sym_EQ_GT] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_PIPE_PIPE] = ACTIONS(271), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(271), + [anon_sym_AMP_AMP_AMP] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_EQ_TILDE] = ACTIONS(271), + [anon_sym_EQ_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ_EQ] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_PIPE_GT] = ACTIONS(271), + [anon_sym_LT_LT_LT] = ACTIONS(271), + [anon_sym_GT_GT_GT] = ACTIONS(271), + [anon_sym_LT_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT_GT] = ACTIONS(271), + [anon_sym_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_PIPE_GT] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_CARET_CARET_CARET] = ACTIONS(247), + [anon_sym_SLASH_SLASH] = ACTIONS(247), + [anon_sym_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH] = ACTIONS(271), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH_DASH] = ACTIONS(271), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(219), + [anon_sym_DOT] = ACTIONS(271), [anon_sym_do] = ACTIONS(305), - [anon_sym_fn] = ACTIONS(239), - [anon_sym_LPAREN2] = ACTIONS(241), - [anon_sym_LBRACK2] = ACTIONS(189), + [anon_sym_end] = ACTIONS(247), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_LPAREN2] = ACTIONS(293), + [anon_sym_LBRACK2] = ACTIONS(245), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(454), - [sym__not_in] = ACTIONS(245), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [59] = { - [sym__expression] = STATE(2732), - [sym_block] = STATE(2732), - [sym__identifier] = STATE(63), - [sym_identifier] = STATE(63), - [sym_special_identifier] = STATE(63), - [sym_boolean] = STATE(2732), - [sym_nil] = STATE(2732), - [sym__atom] = STATE(2732), - [sym_quoted_atom] = STATE(2732), - [sym__quoted_i_double] = STATE(2570), - [sym__quoted_i_single] = STATE(2569), - [sym__quoted_i_heredoc_single] = STATE(2987), - [sym__quoted_i_heredoc_double] = STATE(2988), - [sym_string] = STATE(2732), - [sym_charlist] = STATE(2732), - [sym_sigil] = STATE(2732), - [sym_keywords] = STATE(3106), - [sym_pair] = STATE(2758), - [sym__keyword] = STATE(459), - [sym_quoted_keyword] = STATE(459), - [sym_list] = STATE(2732), - [sym_tuple] = STATE(2732), - [sym_bitstring] = STATE(2732), - [sym_map] = STATE(2732), - [sym_unary_operator] = STATE(2732), - [sym_binary_operator] = STATE(2732), - [sym_operator_identifier] = STATE(5020), - [sym_dot] = STATE(2732), - [sym_call] = STATE(2732), - [sym__call_without_parentheses] = STATE(2986), - [sym__call_with_parentheses] = STATE(2985), - [sym__local_call_without_parentheses] = STATE(2984), - [sym__local_call_with_parentheses] = STATE(2047), - [sym__local_call_just_do_block] = STATE(2983), - [sym__remote_call_without_parentheses] = STATE(2982), - [sym__remote_call_with_parentheses] = STATE(2050), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(2052), - [sym__anonymous_dot] = STATE(4887), - [sym__double_call] = STATE(2981), - [sym__call_arguments_with_parentheses_immediate] = STATE(2031), - [sym__call_arguments_without_parentheses] = STATE(2740), - [sym_do_block] = STATE(3444), - [sym_access_call] = STATE(2732), - [sym_anonymous_function] = STATE(2732), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(604), - [aux_sym_identifier_token1] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(606), - [sym_unused_identifier] = ACTIONS(608), - [anon_sym___MODULE__] = ACTIONS(610), - [anon_sym___DIR__] = ACTIONS(610), - [anon_sym___ENV__] = ACTIONS(610), - [anon_sym___CALLER__] = ACTIONS(610), - [anon_sym___STACKTRACE__] = ACTIONS(610), - [sym_alias] = ACTIONS(612), - [sym_integer] = ACTIONS(612), - [sym_float] = ACTIONS(612), - [sym_char] = ACTIONS(612), - [anon_sym_true] = ACTIONS(614), - [anon_sym_false] = ACTIONS(614), - [anon_sym_nil] = ACTIONS(616), - [sym_atom] = ACTIONS(612), - [anon_sym_DQUOTE] = ACTIONS(618), - [anon_sym_SQUOTE] = ACTIONS(620), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(624), - [anon_sym_LBRACE] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_LT] = ACTIONS(252), - [anon_sym_GT] = ACTIONS(252), - [anon_sym_PIPE] = ACTIONS(252), - [anon_sym_SLASH] = ACTIONS(252), - [anon_sym_TILDE] = ACTIONS(630), - [anon_sym_COMMA] = ACTIONS(252), - [sym_keyword] = ACTIONS(632), - [anon_sym_LT_LT] = ACTIONS(634), - [anon_sym_GT_GT] = ACTIONS(252), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_AMP] = ACTIONS(638), - [anon_sym_PLUS] = ACTIONS(252), - [anon_sym_DASH] = ACTIONS(252), - [anon_sym_BANG] = ACTIONS(640), - [anon_sym_CARET] = ACTIONS(640), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(640), - [anon_sym_not] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(642), - [anon_sym_LT_DASH] = ACTIONS(252), - [anon_sym_BSLASH_BSLASH] = ACTIONS(252), - [anon_sym_when] = ACTIONS(252), - [anon_sym_COLON_COLON] = ACTIONS(252), - [anon_sym_EQ_GT] = ACTIONS(252), - [anon_sym_EQ] = ACTIONS(252), - [anon_sym_PIPE_PIPE] = ACTIONS(252), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(252), - [anon_sym_or] = ACTIONS(252), - [anon_sym_AMP_AMP] = ACTIONS(252), - [anon_sym_AMP_AMP_AMP] = ACTIONS(252), - [anon_sym_and] = ACTIONS(252), - [anon_sym_EQ_EQ] = ACTIONS(252), - [anon_sym_BANG_EQ] = ACTIONS(252), - [anon_sym_EQ_TILDE] = ACTIONS(252), - [anon_sym_EQ_EQ_EQ] = ACTIONS(252), - [anon_sym_BANG_EQ_EQ] = ACTIONS(252), - [anon_sym_LT_EQ] = ACTIONS(252), - [anon_sym_GT_EQ] = ACTIONS(252), - [anon_sym_PIPE_GT] = ACTIONS(252), - [anon_sym_LT_LT_LT] = ACTIONS(252), - [anon_sym_GT_GT_GT] = ACTIONS(252), - [anon_sym_LT_LT_TILDE] = ACTIONS(252), - [anon_sym_TILDE_GT_GT] = ACTIONS(252), - [anon_sym_LT_TILDE] = ACTIONS(252), - [anon_sym_TILDE_GT] = ACTIONS(252), - [anon_sym_LT_TILDE_GT] = ACTIONS(252), - [anon_sym_LT_PIPE_GT] = ACTIONS(252), - [anon_sym_in] = ACTIONS(252), - [anon_sym_CARET_CARET_CARET] = ACTIONS(252), - [anon_sym_SLASH_SLASH] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(252), - [anon_sym_DASH_DASH] = ACTIONS(252), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(252), - [anon_sym_DASH_DASH_DASH] = ACTIONS(252), - [anon_sym_DOT_DOT] = ACTIONS(252), - [anon_sym_LT_GT] = ACTIONS(252), - [anon_sym_STAR] = ACTIONS(252), - [anon_sym_STAR_STAR] = ACTIONS(252), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(252), - [anon_sym_do] = ACTIONS(644), - [anon_sym_fn] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_LBRACK2] = ACTIONS(250), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(650), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(652), - [sym__not_in] = ACTIONS(250), - [sym__quoted_atom_start] = ACTIONS(654), - }, - [60] = { - [sym__expression] = STATE(2103), - [sym_block] = STATE(2103), - [sym__identifier] = STATE(60), - [sym_identifier] = STATE(60), - [sym_special_identifier] = STATE(60), - [sym_boolean] = STATE(2103), - [sym_nil] = STATE(2103), - [sym__atom] = STATE(2103), - [sym_quoted_atom] = STATE(2103), - [sym__quoted_i_double] = STATE(2012), - [sym__quoted_i_single] = STATE(2011), - [sym__quoted_i_heredoc_single] = STATE(2413), - [sym__quoted_i_heredoc_double] = STATE(2414), - [sym_string] = STATE(2103), - [sym_charlist] = STATE(2103), - [sym_sigil] = STATE(2103), - [sym_keywords] = STATE(2756), - [sym_pair] = STATE(2310), - [sym__keyword] = STATE(445), - [sym_quoted_keyword] = STATE(445), - [sym_list] = STATE(2103), - [sym_tuple] = STATE(2103), - [sym_bitstring] = STATE(2103), - [sym_map] = STATE(2103), - [sym_unary_operator] = STATE(2103), - [sym_binary_operator] = STATE(2103), - [sym_operator_identifier] = STATE(5028), - [sym_dot] = STATE(2103), - [sym_call] = STATE(2103), - [sym__call_without_parentheses] = STATE(2412), - [sym__call_with_parentheses] = STATE(2411), - [sym__local_call_without_parentheses] = STATE(2410), - [sym__local_call_with_parentheses] = STATE(1910), - [sym__local_call_just_do_block] = STATE(2409), - [sym__remote_call_without_parentheses] = STATE(2408), - [sym__remote_call_with_parentheses] = STATE(1916), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(1975), - [sym__anonymous_dot] = STATE(4890), - [sym__double_call] = STATE(2407), - [sym__call_arguments_with_parentheses_immediate] = STATE(1964), - [sym__call_arguments_without_parentheses] = STATE(2269), - [sym_do_block] = STATE(2393), - [sym_access_call] = STATE(2103), - [sym_anonymous_function] = STATE(2103), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_RPAREN] = ACTIONS(191), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(558), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(560), - [sym_char] = ACTIONS(560), - [anon_sym_true] = ACTIONS(562), - [anon_sym_false] = ACTIONS(562), - [anon_sym_nil] = ACTIONS(564), - [sym_atom] = ACTIONS(560), - [anon_sym_DQUOTE] = ACTIONS(566), - [anon_sym_SQUOTE] = ACTIONS(568), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), - [anon_sym_LBRACE] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(219), - [anon_sym_GT] = ACTIONS(219), - [anon_sym_PIPE] = ACTIONS(219), - [anon_sym_SLASH] = ACTIONS(219), - [anon_sym_TILDE] = ACTIONS(578), - [anon_sym_COMMA] = ACTIONS(191), - [sym_keyword] = ACTIONS(580), - [anon_sym_LT_LT] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(656), - [anon_sym_DASH] = ACTIONS(656), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_CARET] = ACTIONS(588), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), - [anon_sym_not] = ACTIONS(588), - [anon_sym_AT] = ACTIONS(590), - [anon_sym_LT_DASH] = ACTIONS(219), - [anon_sym_BSLASH_BSLASH] = ACTIONS(219), - [anon_sym_when] = ACTIONS(219), - [anon_sym_COLON_COLON] = ACTIONS(219), - [anon_sym_EQ_GT] = ACTIONS(191), - [anon_sym_EQ] = ACTIONS(219), - [anon_sym_PIPE_PIPE] = ACTIONS(219), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(219), - [anon_sym_or] = ACTIONS(219), - [anon_sym_AMP_AMP] = ACTIONS(219), - [anon_sym_AMP_AMP_AMP] = ACTIONS(219), - [anon_sym_and] = ACTIONS(219), - [anon_sym_EQ_EQ] = ACTIONS(219), - [anon_sym_BANG_EQ] = ACTIONS(219), - [anon_sym_EQ_TILDE] = ACTIONS(219), - [anon_sym_EQ_EQ_EQ] = ACTIONS(219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(219), - [anon_sym_LT_EQ] = ACTIONS(219), - [anon_sym_GT_EQ] = ACTIONS(219), - [anon_sym_PIPE_GT] = ACTIONS(219), - [anon_sym_LT_LT_LT] = ACTIONS(219), - [anon_sym_GT_GT_GT] = ACTIONS(219), - [anon_sym_LT_LT_TILDE] = ACTIONS(219), - [anon_sym_TILDE_GT_GT] = ACTIONS(219), - [anon_sym_LT_TILDE] = ACTIONS(219), - [anon_sym_TILDE_GT] = ACTIONS(219), - [anon_sym_LT_TILDE_GT] = ACTIONS(219), - [anon_sym_LT_PIPE_GT] = ACTIONS(219), - [anon_sym_in] = ACTIONS(219), - [anon_sym_CARET_CARET_CARET] = ACTIONS(191), - [anon_sym_SLASH_SLASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(219), - [anon_sym_DASH_DASH] = ACTIONS(219), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(219), - [anon_sym_DASH_DASH_DASH] = ACTIONS(219), - [anon_sym_DOT_DOT] = ACTIONS(219), - [anon_sym_LT_GT] = ACTIONS(219), - [anon_sym_STAR] = ACTIONS(219), - [anon_sym_STAR_STAR] = ACTIONS(219), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(219), - [anon_sym_DOT] = ACTIONS(219), - [anon_sym_do] = ACTIONS(191), - [anon_sym_fn] = ACTIONS(594), - [anon_sym_LPAREN2] = ACTIONS(596), - [anon_sym_LBRACK2] = ACTIONS(189), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(189), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(600), - [sym__not_in] = ACTIONS(245), - [sym__quoted_atom_start] = ACTIONS(602), - }, - [61] = { - [sym__expression] = STATE(2103), - [sym_block] = STATE(2103), - [sym__identifier] = STATE(60), - [sym_identifier] = STATE(60), - [sym_special_identifier] = STATE(60), - [sym_boolean] = STATE(2103), - [sym_nil] = STATE(2103), - [sym__atom] = STATE(2103), - [sym_quoted_atom] = STATE(2103), - [sym__quoted_i_double] = STATE(2012), - [sym__quoted_i_single] = STATE(2011), - [sym__quoted_i_heredoc_single] = STATE(2413), - [sym__quoted_i_heredoc_double] = STATE(2414), - [sym_string] = STATE(2103), - [sym_charlist] = STATE(2103), - [sym_sigil] = STATE(2103), - [sym_keywords] = STATE(2756), - [sym_pair] = STATE(2310), - [sym__keyword] = STATE(445), - [sym_quoted_keyword] = STATE(445), - [sym_list] = STATE(2103), - [sym_tuple] = STATE(2103), - [sym_bitstring] = STATE(2103), - [sym_map] = STATE(2103), - [sym_unary_operator] = STATE(2103), - [sym_binary_operator] = STATE(2103), - [sym_operator_identifier] = STATE(5028), - [sym_dot] = STATE(2103), - [sym_call] = STATE(2103), - [sym__call_without_parentheses] = STATE(2412), - [sym__call_with_parentheses] = STATE(2411), - [sym__local_call_without_parentheses] = STATE(2410), - [sym__local_call_with_parentheses] = STATE(1910), - [sym__local_call_just_do_block] = STATE(2409), - [sym__remote_call_without_parentheses] = STATE(2408), - [sym__remote_call_with_parentheses] = STATE(1916), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(1975), - [sym__anonymous_dot] = STATE(4890), - [sym__double_call] = STATE(2407), - [sym__call_arguments_with_parentheses_immediate] = STATE(1959), - [sym__call_arguments_without_parentheses] = STATE(2274), - [sym_do_block] = STATE(2392), - [sym_access_call] = STATE(2103), - [sym_anonymous_function] = STATE(2103), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_RPAREN] = ACTIONS(252), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(558), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(560), - [sym_integer] = ACTIONS(560), - [sym_float] = ACTIONS(560), - [sym_char] = ACTIONS(560), - [anon_sym_true] = ACTIONS(562), - [anon_sym_false] = ACTIONS(562), - [anon_sym_nil] = ACTIONS(564), - [sym_atom] = ACTIONS(560), - [anon_sym_DQUOTE] = ACTIONS(566), - [anon_sym_SQUOTE] = ACTIONS(568), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), - [anon_sym_LBRACE] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(252), - [anon_sym_GT] = ACTIONS(252), - [anon_sym_PIPE] = ACTIONS(252), - [anon_sym_SLASH] = ACTIONS(252), - [anon_sym_TILDE] = ACTIONS(578), - [anon_sym_COMMA] = ACTIONS(252), - [sym_keyword] = ACTIONS(580), - [anon_sym_LT_LT] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(252), - [anon_sym_DASH] = ACTIONS(252), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_CARET] = ACTIONS(588), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), - [anon_sym_not] = ACTIONS(588), - [anon_sym_AT] = ACTIONS(590), - [anon_sym_LT_DASH] = ACTIONS(252), - [anon_sym_BSLASH_BSLASH] = ACTIONS(252), - [anon_sym_when] = ACTIONS(252), - [anon_sym_COLON_COLON] = ACTIONS(252), - [anon_sym_EQ_GT] = ACTIONS(252), - [anon_sym_EQ] = ACTIONS(252), - [anon_sym_PIPE_PIPE] = ACTIONS(252), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(252), - [anon_sym_or] = ACTIONS(252), - [anon_sym_AMP_AMP] = ACTIONS(252), - [anon_sym_AMP_AMP_AMP] = ACTIONS(252), - [anon_sym_and] = ACTIONS(252), - [anon_sym_EQ_EQ] = ACTIONS(252), - [anon_sym_BANG_EQ] = ACTIONS(252), - [anon_sym_EQ_TILDE] = ACTIONS(252), - [anon_sym_EQ_EQ_EQ] = ACTIONS(252), - [anon_sym_BANG_EQ_EQ] = ACTIONS(252), - [anon_sym_LT_EQ] = ACTIONS(252), - [anon_sym_GT_EQ] = ACTIONS(252), - [anon_sym_PIPE_GT] = ACTIONS(252), - [anon_sym_LT_LT_LT] = ACTIONS(252), - [anon_sym_GT_GT_GT] = ACTIONS(252), - [anon_sym_LT_LT_TILDE] = ACTIONS(252), - [anon_sym_TILDE_GT_GT] = ACTIONS(252), - [anon_sym_LT_TILDE] = ACTIONS(252), - [anon_sym_TILDE_GT] = ACTIONS(252), - [anon_sym_LT_TILDE_GT] = ACTIONS(252), - [anon_sym_LT_PIPE_GT] = ACTIONS(252), - [anon_sym_in] = ACTIONS(252), - [anon_sym_CARET_CARET_CARET] = ACTIONS(252), - [anon_sym_SLASH_SLASH] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(252), - [anon_sym_DASH_DASH] = ACTIONS(252), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(252), - [anon_sym_DASH_DASH_DASH] = ACTIONS(252), - [anon_sym_DOT_DOT] = ACTIONS(252), - [anon_sym_LT_GT] = ACTIONS(252), - [anon_sym_STAR] = ACTIONS(252), - [anon_sym_STAR_STAR] = ACTIONS(252), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(252), - [anon_sym_DOT] = ACTIONS(252), - [anon_sym_do] = ACTIONS(252), - [anon_sym_fn] = ACTIONS(594), - [anon_sym_LPAREN2] = ACTIONS(596), - [anon_sym_LBRACK2] = ACTIONS(250), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(250), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(600), - [sym__not_in] = ACTIONS(250), - [sym__quoted_atom_start] = ACTIONS(602), - }, - [62] = { - [sym__expression] = STATE(2732), - [sym_block] = STATE(2732), - [sym__identifier] = STATE(63), - [sym_identifier] = STATE(63), - [sym_special_identifier] = STATE(63), - [sym_boolean] = STATE(2732), - [sym_nil] = STATE(2732), - [sym__atom] = STATE(2732), - [sym_quoted_atom] = STATE(2732), - [sym__quoted_i_double] = STATE(2570), - [sym__quoted_i_single] = STATE(2569), - [sym__quoted_i_heredoc_single] = STATE(2987), - [sym__quoted_i_heredoc_double] = STATE(2988), - [sym_string] = STATE(2732), - [sym_charlist] = STATE(2732), - [sym_sigil] = STATE(2732), - [sym_keywords] = STATE(3106), - [sym_pair] = STATE(2758), - [sym__keyword] = STATE(459), - [sym_quoted_keyword] = STATE(459), - [sym_list] = STATE(2732), - [sym_tuple] = STATE(2732), - [sym_bitstring] = STATE(2732), - [sym_map] = STATE(2732), - [sym_unary_operator] = STATE(2732), - [sym_binary_operator] = STATE(2732), - [sym_operator_identifier] = STATE(5020), - [sym_dot] = STATE(2732), - [sym_call] = STATE(2732), - [sym__call_without_parentheses] = STATE(2986), - [sym__call_with_parentheses] = STATE(2985), - [sym__local_call_without_parentheses] = STATE(2984), - [sym__local_call_with_parentheses] = STATE(2047), - [sym__local_call_just_do_block] = STATE(2983), - [sym__remote_call_without_parentheses] = STATE(2982), - [sym__remote_call_with_parentheses] = STATE(2050), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(2052), - [sym__anonymous_dot] = STATE(4887), - [sym__double_call] = STATE(2981), - [sym__call_arguments_with_parentheses_immediate] = STATE(2097), - [sym__call_arguments_without_parentheses] = STATE(2504), - [sym_do_block] = STATE(2962), - [sym_access_call] = STATE(2732), - [sym_anonymous_function] = STATE(2732), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(604), - [aux_sym_identifier_token1] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(606), - [sym_unused_identifier] = ACTIONS(608), - [anon_sym___MODULE__] = ACTIONS(610), - [anon_sym___DIR__] = ACTIONS(610), - [anon_sym___ENV__] = ACTIONS(610), - [anon_sym___CALLER__] = ACTIONS(610), - [anon_sym___STACKTRACE__] = ACTIONS(610), - [sym_alias] = ACTIONS(612), - [sym_integer] = ACTIONS(612), - [sym_float] = ACTIONS(612), - [sym_char] = ACTIONS(612), - [anon_sym_true] = ACTIONS(614), - [anon_sym_false] = ACTIONS(614), - [anon_sym_nil] = ACTIONS(616), - [sym_atom] = ACTIONS(612), - [anon_sym_DQUOTE] = ACTIONS(618), - [anon_sym_SQUOTE] = ACTIONS(620), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(624), - [anon_sym_LBRACE] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_LT] = ACTIONS(252), - [anon_sym_GT] = ACTIONS(252), - [anon_sym_PIPE] = ACTIONS(252), - [anon_sym_SLASH] = ACTIONS(252), - [anon_sym_TILDE] = ACTIONS(630), - [anon_sym_COMMA] = ACTIONS(252), - [sym_keyword] = ACTIONS(632), - [anon_sym_LT_LT] = ACTIONS(634), - [anon_sym_GT_GT] = ACTIONS(252), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_AMP] = ACTIONS(638), - [anon_sym_PLUS] = ACTIONS(252), - [anon_sym_DASH] = ACTIONS(252), - [anon_sym_BANG] = ACTIONS(640), - [anon_sym_CARET] = ACTIONS(640), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(640), - [anon_sym_not] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(642), - [anon_sym_LT_DASH] = ACTIONS(252), - [anon_sym_BSLASH_BSLASH] = ACTIONS(252), - [anon_sym_when] = ACTIONS(252), - [anon_sym_COLON_COLON] = ACTIONS(252), - [anon_sym_EQ_GT] = ACTIONS(252), - [anon_sym_EQ] = ACTIONS(252), - [anon_sym_PIPE_PIPE] = ACTIONS(252), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(252), - [anon_sym_or] = ACTIONS(252), - [anon_sym_AMP_AMP] = ACTIONS(252), - [anon_sym_AMP_AMP_AMP] = ACTIONS(252), - [anon_sym_and] = ACTIONS(252), - [anon_sym_EQ_EQ] = ACTIONS(252), - [anon_sym_BANG_EQ] = ACTIONS(252), - [anon_sym_EQ_TILDE] = ACTIONS(252), - [anon_sym_EQ_EQ_EQ] = ACTIONS(252), - [anon_sym_BANG_EQ_EQ] = ACTIONS(252), - [anon_sym_LT_EQ] = ACTIONS(252), - [anon_sym_GT_EQ] = ACTIONS(252), - [anon_sym_PIPE_GT] = ACTIONS(252), - [anon_sym_LT_LT_LT] = ACTIONS(252), - [anon_sym_GT_GT_GT] = ACTIONS(252), - [anon_sym_LT_LT_TILDE] = ACTIONS(252), - [anon_sym_TILDE_GT_GT] = ACTIONS(252), - [anon_sym_LT_TILDE] = ACTIONS(252), - [anon_sym_TILDE_GT] = ACTIONS(252), - [anon_sym_LT_TILDE_GT] = ACTIONS(252), - [anon_sym_LT_PIPE_GT] = ACTIONS(252), - [anon_sym_in] = ACTIONS(252), - [anon_sym_CARET_CARET_CARET] = ACTIONS(252), - [anon_sym_SLASH_SLASH] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(252), - [anon_sym_DASH_DASH] = ACTIONS(252), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(252), - [anon_sym_DASH_DASH_DASH] = ACTIONS(252), - [anon_sym_DOT_DOT] = ACTIONS(252), - [anon_sym_LT_GT] = ACTIONS(252), - [anon_sym_STAR] = ACTIONS(252), - [anon_sym_STAR_STAR] = ACTIONS(252), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(252), - [anon_sym_do] = ACTIONS(252), - [anon_sym_fn] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_LBRACK2] = ACTIONS(250), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(250), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(652), - [sym__not_in] = ACTIONS(250), - [sym__quoted_atom_start] = ACTIONS(654), - }, - [63] = { - [sym__expression] = STATE(2732), - [sym_block] = STATE(2732), - [sym__identifier] = STATE(63), - [sym_identifier] = STATE(63), - [sym_special_identifier] = STATE(63), - [sym_boolean] = STATE(2732), - [sym_nil] = STATE(2732), - [sym__atom] = STATE(2732), - [sym_quoted_atom] = STATE(2732), - [sym__quoted_i_double] = STATE(2570), - [sym__quoted_i_single] = STATE(2569), - [sym__quoted_i_heredoc_single] = STATE(2987), - [sym__quoted_i_heredoc_double] = STATE(2988), - [sym_string] = STATE(2732), - [sym_charlist] = STATE(2732), - [sym_sigil] = STATE(2732), - [sym_keywords] = STATE(3106), - [sym_pair] = STATE(2758), - [sym__keyword] = STATE(459), - [sym_quoted_keyword] = STATE(459), - [sym_list] = STATE(2732), - [sym_tuple] = STATE(2732), - [sym_bitstring] = STATE(2732), - [sym_map] = STATE(2732), - [sym_unary_operator] = STATE(2732), - [sym_binary_operator] = STATE(2732), - [sym_operator_identifier] = STATE(5020), - [sym_dot] = STATE(2732), - [sym_call] = STATE(2732), - [sym__call_without_parentheses] = STATE(2986), - [sym__call_with_parentheses] = STATE(2985), - [sym__local_call_without_parentheses] = STATE(2984), - [sym__local_call_with_parentheses] = STATE(2047), - [sym__local_call_just_do_block] = STATE(2983), - [sym__remote_call_without_parentheses] = STATE(2982), - [sym__remote_call_with_parentheses] = STATE(2050), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(2052), - [sym__anonymous_dot] = STATE(4887), - [sym__double_call] = STATE(2981), - [sym__call_arguments_with_parentheses_immediate] = STATE(2092), - [sym__call_arguments_without_parentheses] = STATE(2507), - [sym_do_block] = STATE(2963), - [sym_access_call] = STATE(2732), - [sym_anonymous_function] = STATE(2732), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(604), - [aux_sym_identifier_token1] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(606), - [sym_unused_identifier] = ACTIONS(608), - [anon_sym___MODULE__] = ACTIONS(610), - [anon_sym___DIR__] = ACTIONS(610), - [anon_sym___ENV__] = ACTIONS(610), - [anon_sym___CALLER__] = ACTIONS(610), - [anon_sym___STACKTRACE__] = ACTIONS(610), - [sym_alias] = ACTIONS(612), - [sym_integer] = ACTIONS(612), - [sym_float] = ACTIONS(612), - [sym_char] = ACTIONS(612), - [anon_sym_true] = ACTIONS(614), - [anon_sym_false] = ACTIONS(614), - [anon_sym_nil] = ACTIONS(616), - [sym_atom] = ACTIONS(612), - [anon_sym_DQUOTE] = ACTIONS(618), - [anon_sym_SQUOTE] = ACTIONS(620), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(624), - [anon_sym_LBRACE] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_LT] = ACTIONS(219), - [anon_sym_GT] = ACTIONS(219), - [anon_sym_PIPE] = ACTIONS(219), - [anon_sym_SLASH] = ACTIONS(219), - [anon_sym_TILDE] = ACTIONS(630), - [anon_sym_COMMA] = ACTIONS(191), - [sym_keyword] = ACTIONS(632), - [anon_sym_LT_LT] = ACTIONS(634), - [anon_sym_GT_GT] = ACTIONS(191), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_AMP] = ACTIONS(638), - [anon_sym_PLUS] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(659), - [anon_sym_BANG] = ACTIONS(640), - [anon_sym_CARET] = ACTIONS(640), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(640), - [anon_sym_not] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(642), - [anon_sym_LT_DASH] = ACTIONS(219), - [anon_sym_BSLASH_BSLASH] = ACTIONS(219), - [anon_sym_when] = ACTIONS(219), - [anon_sym_COLON_COLON] = ACTIONS(219), - [anon_sym_EQ_GT] = ACTIONS(191), - [anon_sym_EQ] = ACTIONS(219), - [anon_sym_PIPE_PIPE] = ACTIONS(219), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(219), - [anon_sym_or] = ACTIONS(219), - [anon_sym_AMP_AMP] = ACTIONS(219), - [anon_sym_AMP_AMP_AMP] = ACTIONS(219), - [anon_sym_and] = ACTIONS(219), - [anon_sym_EQ_EQ] = ACTIONS(219), - [anon_sym_BANG_EQ] = ACTIONS(219), - [anon_sym_EQ_TILDE] = ACTIONS(219), - [anon_sym_EQ_EQ_EQ] = ACTIONS(219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(219), - [anon_sym_LT_EQ] = ACTIONS(219), - [anon_sym_GT_EQ] = ACTIONS(219), - [anon_sym_PIPE_GT] = ACTIONS(219), - [anon_sym_LT_LT_LT] = ACTIONS(219), - [anon_sym_GT_GT_GT] = ACTIONS(219), - [anon_sym_LT_LT_TILDE] = ACTIONS(219), - [anon_sym_TILDE_GT_GT] = ACTIONS(219), - [anon_sym_LT_TILDE] = ACTIONS(219), - [anon_sym_TILDE_GT] = ACTIONS(219), - [anon_sym_LT_TILDE_GT] = ACTIONS(219), - [anon_sym_LT_PIPE_GT] = ACTIONS(219), - [anon_sym_in] = ACTIONS(219), - [anon_sym_CARET_CARET_CARET] = ACTIONS(191), - [anon_sym_SLASH_SLASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(219), - [anon_sym_DASH_DASH] = ACTIONS(219), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(219), - [anon_sym_DASH_DASH_DASH] = ACTIONS(219), - [anon_sym_DOT_DOT] = ACTIONS(219), - [anon_sym_LT_GT] = ACTIONS(219), - [anon_sym_STAR] = ACTIONS(219), - [anon_sym_STAR_STAR] = ACTIONS(219), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(219), - [anon_sym_do] = ACTIONS(191), - [anon_sym_fn] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_LBRACK2] = ACTIONS(189), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(189), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(652), - [sym__not_in] = ACTIONS(245), - [sym__quoted_atom_start] = ACTIONS(654), + [sym__before_unary_op] = ACTIONS(457), + [sym__not_in] = ACTIONS(297), + [sym__quoted_atom_start] = ACTIONS(300), }, [64] = { - [sym__expression] = STATE(2103), - [sym_block] = STATE(2103), - [sym__identifier] = STATE(60), - [sym_identifier] = STATE(60), - [sym_special_identifier] = STATE(60), - [sym_boolean] = STATE(2103), - [sym_nil] = STATE(2103), - [sym__atom] = STATE(2103), - [sym_quoted_atom] = STATE(2103), - [sym__quoted_i_double] = STATE(2012), - [sym__quoted_i_single] = STATE(2011), - [sym__quoted_i_heredoc_single] = STATE(2413), - [sym__quoted_i_heredoc_double] = STATE(2414), - [sym_string] = STATE(2103), - [sym_charlist] = STATE(2103), - [sym_sigil] = STATE(2103), - [sym_keywords] = STATE(2756), - [sym_pair] = STATE(2310), - [sym__keyword] = STATE(445), - [sym_quoted_keyword] = STATE(445), - [sym_list] = STATE(2103), - [sym_tuple] = STATE(2103), - [sym_bitstring] = STATE(2103), - [sym_map] = STATE(2103), - [sym_unary_operator] = STATE(2103), - [sym_binary_operator] = STATE(2103), - [sym_operator_identifier] = STATE(5028), - [sym_dot] = STATE(2103), - [sym_call] = STATE(2103), - [sym__call_without_parentheses] = STATE(2412), - [sym__call_with_parentheses] = STATE(2411), - [sym__local_call_without_parentheses] = STATE(2410), - [sym__local_call_with_parentheses] = STATE(1910), - [sym__local_call_just_do_block] = STATE(2409), - [sym__remote_call_without_parentheses] = STATE(2408), - [sym__remote_call_with_parentheses] = STATE(1916), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(1975), - [sym__anonymous_dot] = STATE(4890), - [sym__double_call] = STATE(2407), - [sym__call_arguments_with_parentheses_immediate] = STATE(1920), - [sym__call_arguments_without_parentheses] = STATE(2094), - [sym_do_block] = STATE(3272), - [sym_access_call] = STATE(2103), - [sym_anonymous_function] = STATE(2103), + [sym__expression] = STATE(2653), + [sym_block] = STATE(2653), + [sym__identifier] = STATE(56), + [sym_identifier] = STATE(56), + [sym_special_identifier] = STATE(56), + [sym_boolean] = STATE(2653), + [sym_nil] = STATE(2653), + [sym__atom] = STATE(2653), + [sym_quoted_atom] = STATE(2653), + [sym__quoted_i_double] = STATE(2227), + [sym__quoted_i_single] = STATE(2228), + [sym__quoted_i_heredoc_single] = STATE(2910), + [sym__quoted_i_heredoc_double] = STATE(2805), + [sym_string] = STATE(2653), + [sym_charlist] = STATE(2653), + [sym_sigil] = STATE(2653), + [sym_keywords] = STATE(2740), + [sym_pair] = STATE(2287), + [sym__keyword] = STATE(480), + [sym_quoted_keyword] = STATE(480), + [sym_list] = STATE(2653), + [sym_tuple] = STATE(2653), + [sym_bitstring] = STATE(2653), + [sym_map] = STATE(2653), + [sym_unary_operator] = STATE(2653), + [sym_binary_operator] = STATE(2653), + [sym_operator_identifier] = STATE(5636), + [sym_dot] = STATE(2653), + [sym_call] = STATE(2653), + [sym__call_without_parentheses] = STATE(2883), + [sym__call_with_parentheses] = STATE(2876), + [sym__local_call_without_parentheses] = STATE(2870), + [sym__local_call_with_parentheses] = STATE(2037), + [sym__local_call_just_do_block] = STATE(2853), + [sym__remote_call_without_parentheses] = STATE(2846), + [sym__remote_call_with_parentheses] = STATE(2038), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2051), + [sym__anonymous_dot] = STATE(5534), + [sym__double_call] = STATE(2836), + [sym__call_arguments_with_parentheses_immediate] = STATE(2081), + [sym__call_arguments_without_parentheses] = STATE(2654), + [sym_do_block] = STATE(3809), + [sym_access_call] = STATE(2653), + [sym_anonymous_function] = STATE(2653), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_RPAREN] = ACTIONS(191), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [anon_sym_RPAREN] = ACTIONS(247), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), [sym_unused_identifier] = ACTIONS(558), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), [sym_alias] = ACTIONS(560), [sym_integer] = ACTIONS(560), [sym_float] = ACTIONS(560), @@ -32468,266 +33106,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), [anon_sym_LBRACE] = ACTIONS(574), [anon_sym_LBRACK] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(219), - [anon_sym_GT] = ACTIONS(219), - [anon_sym_PIPE] = ACTIONS(219), - [anon_sym_SLASH] = ACTIONS(219), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), [anon_sym_TILDE] = ACTIONS(578), - [anon_sym_COMMA] = ACTIONS(191), + [anon_sym_COMMA] = ACTIONS(247), [sym_keyword] = ACTIONS(580), [anon_sym_LT_LT] = ACTIONS(582), [anon_sym_PERCENT] = ACTIONS(584), [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(656), - [anon_sym_DASH] = ACTIONS(656), + [anon_sym_PLUS] = ACTIONS(604), + [anon_sym_DASH] = ACTIONS(604), [anon_sym_BANG] = ACTIONS(588), [anon_sym_CARET] = ACTIONS(588), [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), [anon_sym_not] = ACTIONS(588), [anon_sym_AT] = ACTIONS(590), - [anon_sym_LT_DASH] = ACTIONS(219), - [anon_sym_BSLASH_BSLASH] = ACTIONS(219), - [anon_sym_when] = ACTIONS(219), - [anon_sym_COLON_COLON] = ACTIONS(219), - [anon_sym_EQ_GT] = ACTIONS(191), - [anon_sym_EQ] = ACTIONS(219), - [anon_sym_PIPE_PIPE] = ACTIONS(219), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(219), - [anon_sym_or] = ACTIONS(219), - [anon_sym_AMP_AMP] = ACTIONS(219), - [anon_sym_AMP_AMP_AMP] = ACTIONS(219), - [anon_sym_and] = ACTIONS(219), - [anon_sym_EQ_EQ] = ACTIONS(219), - [anon_sym_BANG_EQ] = ACTIONS(219), - [anon_sym_EQ_TILDE] = ACTIONS(219), - [anon_sym_EQ_EQ_EQ] = ACTIONS(219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(219), - [anon_sym_LT_EQ] = ACTIONS(219), - [anon_sym_GT_EQ] = ACTIONS(219), - [anon_sym_PIPE_GT] = ACTIONS(219), - [anon_sym_LT_LT_LT] = ACTIONS(219), - [anon_sym_GT_GT_GT] = ACTIONS(219), - [anon_sym_LT_LT_TILDE] = ACTIONS(219), - [anon_sym_TILDE_GT_GT] = ACTIONS(219), - [anon_sym_LT_TILDE] = ACTIONS(219), - [anon_sym_TILDE_GT] = ACTIONS(219), - [anon_sym_LT_TILDE_GT] = ACTIONS(219), - [anon_sym_LT_PIPE_GT] = ACTIONS(219), - [anon_sym_in] = ACTIONS(219), - [anon_sym_CARET_CARET_CARET] = ACTIONS(191), - [anon_sym_SLASH_SLASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(219), - [anon_sym_DASH_DASH] = ACTIONS(219), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(219), - [anon_sym_DASH_DASH_DASH] = ACTIONS(219), - [anon_sym_DOT_DOT] = ACTIONS(219), - [anon_sym_LT_GT] = ACTIONS(219), - [anon_sym_STAR] = ACTIONS(219), - [anon_sym_STAR_STAR] = ACTIONS(219), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_BSLASH_BSLASH] = ACTIONS(271), + [anon_sym_when] = ACTIONS(271), + [anon_sym_COLON_COLON] = ACTIONS(271), + [anon_sym_EQ_GT] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_PIPE_PIPE] = ACTIONS(271), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(271), + [anon_sym_AMP_AMP_AMP] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_EQ_TILDE] = ACTIONS(271), + [anon_sym_EQ_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ_EQ] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_PIPE_GT] = ACTIONS(271), + [anon_sym_LT_LT_LT] = ACTIONS(271), + [anon_sym_GT_GT_GT] = ACTIONS(271), + [anon_sym_LT_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT_GT] = ACTIONS(271), + [anon_sym_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_PIPE_GT] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_CARET_CARET_CARET] = ACTIONS(247), + [anon_sym_SLASH_SLASH] = ACTIONS(247), + [anon_sym_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH] = ACTIONS(271), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH_DASH] = ACTIONS(271), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(219), - [anon_sym_DOT] = ACTIONS(219), + [anon_sym_DASH_GT] = ACTIONS(271), + [anon_sym_DOT] = ACTIONS(271), [anon_sym_do] = ACTIONS(592), [anon_sym_fn] = ACTIONS(594), [anon_sym_LPAREN2] = ACTIONS(596), - [anon_sym_LBRACK2] = ACTIONS(189), + [anon_sym_LBRACK2] = ACTIONS(245), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), [sym__before_unary_op] = ACTIONS(600), - [sym__not_in] = ACTIONS(245), + [sym__not_in] = ACTIONS(297), [sym__quoted_atom_start] = ACTIONS(602), }, [65] = { - [sym__expression] = STATE(2369), - [sym_block] = STATE(2369), - [sym__identifier] = STATE(68), - [sym_identifier] = STATE(68), - [sym_special_identifier] = STATE(68), - [sym_boolean] = STATE(2369), - [sym_nil] = STATE(2369), - [sym__atom] = STATE(2369), - [sym_quoted_atom] = STATE(2369), - [sym__quoted_i_double] = STATE(1678), - [sym__quoted_i_single] = STATE(1677), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(2369), - [sym_charlist] = STATE(2369), - [sym_sigil] = STATE(2369), - [sym_keywords] = STATE(1934), - [sym_pair] = STATE(2722), - [sym__keyword] = STATE(660), - [sym_quoted_keyword] = STATE(660), - [sym_list] = STATE(2369), - [sym_tuple] = STATE(2369), - [sym_bitstring] = STATE(2369), - [sym_map] = STATE(2369), - [sym_unary_operator] = STATE(2369), - [sym_binary_operator] = STATE(2369), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(2369), - [sym_call] = STATE(2369), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym__call_arguments_with_parentheses_immediate] = STATE(1518), - [sym__call_arguments_without_parentheses] = STATE(1730), - [sym_do_block] = STATE(2562), - [sym_access_call] = STATE(2369), - [sym_anonymous_function] = STATE(2369), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(662), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(664), - [sym_integer] = ACTIONS(664), - [sym_float] = ACTIONS(664), - [sym_char] = ACTIONS(664), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), - [sym_atom] = ACTIONS(664), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(252), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(252), - [anon_sym_GT] = ACTIONS(252), - [anon_sym_PIPE] = ACTIONS(252), - [anon_sym_SLASH] = ACTIONS(252), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_COMMA] = ACTIONS(252), - [sym_keyword] = ACTIONS(666), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(252), - [anon_sym_DASH] = ACTIONS(252), - [anon_sym_BANG] = ACTIONS(670), - [anon_sym_CARET] = ACTIONS(670), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(670), - [anon_sym_not] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(672), - [anon_sym_LT_DASH] = ACTIONS(252), - [anon_sym_BSLASH_BSLASH] = ACTIONS(252), - [anon_sym_when] = ACTIONS(252), - [anon_sym_COLON_COLON] = ACTIONS(252), - [anon_sym_EQ_GT] = ACTIONS(252), - [anon_sym_EQ] = ACTIONS(252), - [anon_sym_PIPE_PIPE] = ACTIONS(252), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(252), - [anon_sym_or] = ACTIONS(252), - [anon_sym_AMP_AMP] = ACTIONS(252), - [anon_sym_AMP_AMP_AMP] = ACTIONS(252), - [anon_sym_and] = ACTIONS(252), - [anon_sym_EQ_EQ] = ACTIONS(252), - [anon_sym_BANG_EQ] = ACTIONS(252), - [anon_sym_EQ_TILDE] = ACTIONS(252), - [anon_sym_EQ_EQ_EQ] = ACTIONS(252), - [anon_sym_BANG_EQ_EQ] = ACTIONS(252), - [anon_sym_LT_EQ] = ACTIONS(252), - [anon_sym_GT_EQ] = ACTIONS(252), - [anon_sym_PIPE_GT] = ACTIONS(252), - [anon_sym_LT_LT_LT] = ACTIONS(252), - [anon_sym_GT_GT_GT] = ACTIONS(252), - [anon_sym_LT_LT_TILDE] = ACTIONS(252), - [anon_sym_TILDE_GT_GT] = ACTIONS(252), - [anon_sym_LT_TILDE] = ACTIONS(252), - [anon_sym_TILDE_GT] = ACTIONS(252), - [anon_sym_LT_TILDE_GT] = ACTIONS(252), - [anon_sym_LT_PIPE_GT] = ACTIONS(252), - [anon_sym_in] = ACTIONS(252), - [anon_sym_CARET_CARET_CARET] = ACTIONS(252), - [anon_sym_SLASH_SLASH] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(252), - [anon_sym_DASH_DASH] = ACTIONS(252), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(252), - [anon_sym_DASH_DASH_DASH] = ACTIONS(252), - [anon_sym_DOT_DOT] = ACTIONS(252), - [anon_sym_LT_GT] = ACTIONS(252), - [anon_sym_STAR] = ACTIONS(252), - [anon_sym_STAR_STAR] = ACTIONS(252), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(252), - [anon_sym_do] = ACTIONS(432), - [anon_sym_fn] = ACTIONS(400), - [anon_sym_LPAREN2] = ACTIONS(402), - [anon_sym_LBRACK2] = ACTIONS(250), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(434), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(674), - [sym__not_in] = ACTIONS(250), - [sym__quoted_atom_start] = ACTIONS(406), - }, - [66] = { - [sym__expression] = STATE(1091), - [sym_block] = STATE(1091), + [sym__expression] = STATE(1135), + [sym_block] = STATE(1135), [sym__identifier] = STATE(25), [sym_identifier] = STATE(25), [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1091), - [sym_nil] = STATE(1091), - [sym__atom] = STATE(1091), - [sym_quoted_atom] = STATE(1091), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1091), - [sym_charlist] = STATE(1091), - [sym_sigil] = STATE(1091), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1091), - [sym_tuple] = STATE(1091), - [sym_bitstring] = STATE(1091), - [sym_map] = STATE(1091), - [sym_unary_operator] = STATE(1091), - [sym_binary_operator] = STATE(1091), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1091), - [sym_call] = STATE(1091), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1091), - [sym_stab_clause] = STATE(3736), - [sym__stab_clause_left] = STATE(4978), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1091), + [sym_boolean] = STATE(1135), + [sym_nil] = STATE(1135), + [sym__atom] = STATE(1135), + [sym_quoted_atom] = STATE(1135), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1135), + [sym_charlist] = STATE(1135), + [sym_sigil] = STATE(1135), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1135), + [sym_tuple] = STATE(1135), + [sym_bitstring] = STATE(1135), + [sym_map] = STATE(1135), + [sym_unary_operator] = STATE(1135), + [sym_binary_operator] = STATE(1135), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1135), + [sym_call] = STATE(1135), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1135), + [sym_stab_clause] = STATE(4360), + [sym__stab_clause_left] = STATE(5656), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1135), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(65), [aux_sym_identifier_token1] = ACTIONS(67), @@ -32738,14 +33235,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ENV__] = ACTIONS(71), [anon_sym___CALLER__] = ACTIONS(71), [anon_sym___STACKTRACE__] = ACTIONS(71), - [sym_alias] = ACTIONS(676), - [sym_integer] = ACTIONS(676), - [sym_float] = ACTIONS(676), - [sym_char] = ACTIONS(676), + [sym_alias] = ACTIONS(662), + [sym_integer] = ACTIONS(662), + [sym_float] = ACTIONS(662), + [sym_char] = ACTIONS(662), [anon_sym_true] = ACTIONS(75), [anon_sym_false] = ACTIONS(75), [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(676), + [sym_atom] = ACTIONS(662), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), @@ -32807,12 +33304,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(105), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(678), - [anon_sym_catch] = ACTIONS(678), - [anon_sym_else] = ACTIONS(678), - [anon_sym_end] = ACTIONS(678), + [anon_sym_after] = ACTIONS(664), + [anon_sym_catch] = ACTIONS(664), + [anon_sym_else] = ACTIONS(664), + [anon_sym_end] = ACTIONS(664), [anon_sym_fn] = ACTIONS(115), - [anon_sym_rescue] = ACTIONS(678), + [anon_sym_rescue] = ACTIONS(664), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), @@ -32820,55 +33317,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(121), }, + [66] = { + [sym__expression] = STATE(2898), + [sym_block] = STATE(2898), + [sym__identifier] = STATE(61), + [sym_identifier] = STATE(61), + [sym_special_identifier] = STATE(61), + [sym_boolean] = STATE(2898), + [sym_nil] = STATE(2898), + [sym__atom] = STATE(2898), + [sym_quoted_atom] = STATE(2898), + [sym__quoted_i_double] = STATE(2972), + [sym__quoted_i_single] = STATE(2970), + [sym__quoted_i_heredoc_single] = STATE(3316), + [sym__quoted_i_heredoc_double] = STATE(3315), + [sym_string] = STATE(2898), + [sym_charlist] = STATE(2898), + [sym_sigil] = STATE(2898), + [sym_keywords] = STATE(3379), + [sym_pair] = STATE(2745), + [sym__keyword] = STATE(465), + [sym_quoted_keyword] = STATE(465), + [sym_list] = STATE(2898), + [sym_tuple] = STATE(2898), + [sym_bitstring] = STATE(2898), + [sym_map] = STATE(2898), + [sym_unary_operator] = STATE(2898), + [sym_binary_operator] = STATE(2898), + [sym_operator_identifier] = STATE(5628), + [sym_dot] = STATE(2898), + [sym_call] = STATE(2898), + [sym__call_without_parentheses] = STATE(3314), + [sym__call_with_parentheses] = STATE(3313), + [sym__local_call_without_parentheses] = STATE(3312), + [sym__local_call_with_parentheses] = STATE(2420), + [sym__local_call_just_do_block] = STATE(3311), + [sym__remote_call_without_parentheses] = STATE(3310), + [sym__remote_call_with_parentheses] = STATE(2423), + [sym__remote_dot] = STATE(60), + [sym__anonymous_call] = STATE(2425), + [sym__anonymous_dot] = STATE(5498), + [sym__double_call] = STATE(3309), + [sym__call_arguments_with_parentheses_immediate] = STATE(2632), + [sym__call_arguments_without_parentheses] = STATE(2895), + [sym_do_block] = STATE(4001), + [sym_access_call] = STATE(2898), + [sym_anonymous_function] = STATE(2898), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(615), + [sym_integer] = ACTIONS(615), + [sym_float] = ACTIONS(615), + [sym_char] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(615), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_COMMA] = ACTIONS(247), + [sym_keyword] = ACTIONS(635), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_GT_GT] = ACTIONS(247), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(643), + [anon_sym_not] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_BSLASH_BSLASH] = ACTIONS(271), + [anon_sym_when] = ACTIONS(271), + [anon_sym_COLON_COLON] = ACTIONS(271), + [anon_sym_EQ_GT] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_PIPE_PIPE] = ACTIONS(271), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(271), + [anon_sym_AMP_AMP_AMP] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_EQ_TILDE] = ACTIONS(271), + [anon_sym_EQ_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ_EQ] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_PIPE_GT] = ACTIONS(271), + [anon_sym_LT_LT_LT] = ACTIONS(271), + [anon_sym_GT_GT_GT] = ACTIONS(271), + [anon_sym_LT_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT_GT] = ACTIONS(271), + [anon_sym_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_PIPE_GT] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_CARET_CARET_CARET] = ACTIONS(247), + [anon_sym_SLASH_SLASH] = ACTIONS(247), + [anon_sym_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH] = ACTIONS(271), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH_DASH] = ACTIONS(271), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_do] = ACTIONS(647), + [anon_sym_fn] = ACTIONS(649), + [anon_sym_LPAREN2] = ACTIONS(651), + [anon_sym_LBRACK2] = ACTIONS(245), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(655), + [sym__not_in] = ACTIONS(297), + [sym__quoted_atom_start] = ACTIONS(657), + }, [67] = { - [sym__expression] = STATE(1124), - [sym_block] = STATE(1124), + [sym__expression] = STATE(1134), + [sym_block] = STATE(1134), [sym__identifier] = STATE(25), [sym_identifier] = STATE(25), [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1124), - [sym_nil] = STATE(1124), - [sym__atom] = STATE(1124), - [sym_quoted_atom] = STATE(1124), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1124), - [sym_charlist] = STATE(1124), - [sym_sigil] = STATE(1124), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1124), - [sym_tuple] = STATE(1124), - [sym_bitstring] = STATE(1124), - [sym_map] = STATE(1124), - [sym_unary_operator] = STATE(1124), - [sym_binary_operator] = STATE(1124), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1124), - [sym_call] = STATE(1124), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1124), - [sym_stab_clause] = STATE(3751), - [sym__stab_clause_left] = STATE(4978), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1124), + [sym_boolean] = STATE(1134), + [sym_nil] = STATE(1134), + [sym__atom] = STATE(1134), + [sym_quoted_atom] = STATE(1134), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1134), + [sym_charlist] = STATE(1134), + [sym_sigil] = STATE(1134), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1134), + [sym_tuple] = STATE(1134), + [sym_bitstring] = STATE(1134), + [sym_map] = STATE(1134), + [sym_unary_operator] = STATE(1134), + [sym_binary_operator] = STATE(1134), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1134), + [sym_call] = STATE(1134), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1134), + [sym_stab_clause] = STATE(4346), + [sym__stab_clause_left] = STATE(5656), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1134), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(65), [aux_sym_identifier_token1] = ACTIONS(67), @@ -32879,14 +33517,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ENV__] = ACTIONS(71), [anon_sym___CALLER__] = ACTIONS(71), [anon_sym___STACKTRACE__] = ACTIONS(71), - [sym_alias] = ACTIONS(680), - [sym_integer] = ACTIONS(680), - [sym_float] = ACTIONS(680), - [sym_char] = ACTIONS(680), + [sym_alias] = ACTIONS(666), + [sym_integer] = ACTIONS(666), + [sym_float] = ACTIONS(666), + [sym_char] = ACTIONS(666), [anon_sym_true] = ACTIONS(75), [anon_sym_false] = ACTIONS(75), [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(680), + [sym_atom] = ACTIONS(666), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), @@ -32948,12 +33586,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(105), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(682), - [anon_sym_catch] = ACTIONS(682), - [anon_sym_else] = ACTIONS(682), - [anon_sym_end] = ACTIONS(682), + [anon_sym_after] = ACTIONS(668), + [anon_sym_catch] = ACTIONS(668), + [anon_sym_else] = ACTIONS(668), + [anon_sym_end] = ACTIONS(668), [anon_sym_fn] = ACTIONS(115), - [anon_sym_rescue] = ACTIONS(682), + [anon_sym_rescue] = ACTIONS(668), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), @@ -32962,336 +33600,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [68] = { - [sym__expression] = STATE(2369), - [sym_block] = STATE(2369), - [sym__identifier] = STATE(68), - [sym_identifier] = STATE(68), - [sym_special_identifier] = STATE(68), - [sym_boolean] = STATE(2369), - [sym_nil] = STATE(2369), - [sym__atom] = STATE(2369), - [sym_quoted_atom] = STATE(2369), - [sym__quoted_i_double] = STATE(1678), - [sym__quoted_i_single] = STATE(1677), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(2369), - [sym_charlist] = STATE(2369), - [sym_sigil] = STATE(2369), - [sym_keywords] = STATE(1934), - [sym_pair] = STATE(2722), - [sym__keyword] = STATE(660), - [sym_quoted_keyword] = STATE(660), - [sym_list] = STATE(2369), - [sym_tuple] = STATE(2369), - [sym_bitstring] = STATE(2369), - [sym_map] = STATE(2369), - [sym_unary_operator] = STATE(2369), - [sym_binary_operator] = STATE(2369), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(2369), - [sym_call] = STATE(2369), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym__call_arguments_with_parentheses_immediate] = STATE(1444), - [sym__call_arguments_without_parentheses] = STATE(1773), - [sym_do_block] = STATE(1918), - [sym_access_call] = STATE(2369), - [sym_anonymous_function] = STATE(2369), + [sym__expression] = STATE(2716), + [sym_block] = STATE(2716), + [sym__identifier] = STATE(70), + [sym_identifier] = STATE(70), + [sym_special_identifier] = STATE(70), + [sym_boolean] = STATE(2716), + [sym_nil] = STATE(2716), + [sym__atom] = STATE(2716), + [sym_quoted_atom] = STATE(2716), + [sym__quoted_i_double] = STATE(1777), + [sym__quoted_i_single] = STATE(1778), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(2716), + [sym_charlist] = STATE(2716), + [sym_sigil] = STATE(2716), + [sym_keywords] = STATE(2106), + [sym_pair] = STATE(2680), + [sym__keyword] = STATE(642), + [sym_quoted_keyword] = STATE(642), + [sym_list] = STATE(2716), + [sym_tuple] = STATE(2716), + [sym_bitstring] = STATE(2716), + [sym_map] = STATE(2716), + [sym_unary_operator] = STATE(2716), + [sym_binary_operator] = STATE(2716), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(2716), + [sym_call] = STATE(2716), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym__call_arguments_with_parentheses_immediate] = STATE(1591), + [sym__call_arguments_without_parentheses] = STATE(1816), + [sym_do_block] = STATE(2155), + [sym_access_call] = STATE(2716), + [sym_anonymous_function] = STATE(2716), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(662), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(664), - [sym_integer] = ACTIONS(664), - [sym_float] = ACTIONS(664), - [sym_char] = ACTIONS(664), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), - [sym_atom] = ACTIONS(664), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(219), - [anon_sym_GT] = ACTIONS(219), - [anon_sym_PIPE] = ACTIONS(219), - [anon_sym_SLASH] = ACTIONS(219), - [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(672), + [sym_integer] = ACTIONS(672), + [sym_float] = ACTIONS(672), + [sym_char] = ACTIONS(672), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(672), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(389), [anon_sym_COMMA] = ACTIONS(191), - [sym_keyword] = ACTIONS(666), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_DASH] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(670), - [anon_sym_CARET] = ACTIONS(670), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(670), - [anon_sym_not] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(672), - [anon_sym_LT_DASH] = ACTIONS(219), - [anon_sym_BSLASH_BSLASH] = ACTIONS(219), - [anon_sym_when] = ACTIONS(219), - [anon_sym_COLON_COLON] = ACTIONS(219), + [sym_keyword] = ACTIONS(674), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(678), + [anon_sym_CARET] = ACTIONS(678), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(678), + [anon_sym_not] = ACTIONS(678), + [anon_sym_AT] = ACTIONS(680), + [anon_sym_LT_DASH] = ACTIONS(191), + [anon_sym_BSLASH_BSLASH] = ACTIONS(191), + [anon_sym_when] = ACTIONS(191), + [anon_sym_COLON_COLON] = ACTIONS(191), [anon_sym_EQ_GT] = ACTIONS(191), - [anon_sym_EQ] = ACTIONS(219), - [anon_sym_PIPE_PIPE] = ACTIONS(219), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(219), - [anon_sym_or] = ACTIONS(219), - [anon_sym_AMP_AMP] = ACTIONS(219), - [anon_sym_AMP_AMP_AMP] = ACTIONS(219), - [anon_sym_and] = ACTIONS(219), - [anon_sym_EQ_EQ] = ACTIONS(219), - [anon_sym_BANG_EQ] = ACTIONS(219), - [anon_sym_EQ_TILDE] = ACTIONS(219), - [anon_sym_EQ_EQ_EQ] = ACTIONS(219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(219), - [anon_sym_LT_EQ] = ACTIONS(219), - [anon_sym_GT_EQ] = ACTIONS(219), - [anon_sym_PIPE_GT] = ACTIONS(219), - [anon_sym_LT_LT_LT] = ACTIONS(219), - [anon_sym_GT_GT_GT] = ACTIONS(219), - [anon_sym_LT_LT_TILDE] = ACTIONS(219), - [anon_sym_TILDE_GT_GT] = ACTIONS(219), - [anon_sym_LT_TILDE] = ACTIONS(219), - [anon_sym_TILDE_GT] = ACTIONS(219), - [anon_sym_LT_TILDE_GT] = ACTIONS(219), - [anon_sym_LT_PIPE_GT] = ACTIONS(219), - [anon_sym_in] = ACTIONS(219), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_PIPE_PIPE] = ACTIONS(191), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(191), + [anon_sym_or] = ACTIONS(191), + [anon_sym_AMP_AMP] = ACTIONS(191), + [anon_sym_AMP_AMP_AMP] = ACTIONS(191), + [anon_sym_and] = ACTIONS(191), + [anon_sym_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ] = ACTIONS(191), + [anon_sym_EQ_TILDE] = ACTIONS(191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(191), + [anon_sym_LT_EQ] = ACTIONS(191), + [anon_sym_GT_EQ] = ACTIONS(191), + [anon_sym_PIPE_GT] = ACTIONS(191), + [anon_sym_LT_LT_LT] = ACTIONS(191), + [anon_sym_GT_GT_GT] = ACTIONS(191), + [anon_sym_LT_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT_GT] = ACTIONS(191), + [anon_sym_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_PIPE_GT] = ACTIONS(191), + [anon_sym_in] = ACTIONS(191), [anon_sym_CARET_CARET_CARET] = ACTIONS(191), [anon_sym_SLASH_SLASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(219), - [anon_sym_DASH_DASH] = ACTIONS(219), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(219), - [anon_sym_DASH_DASH_DASH] = ACTIONS(219), - [anon_sym_DOT_DOT] = ACTIONS(219), - [anon_sym_LT_GT] = ACTIONS(219), - [anon_sym_STAR] = ACTIONS(219), - [anon_sym_STAR_STAR] = ACTIONS(219), + [anon_sym_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH_DASH] = ACTIONS(191), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_LT_GT] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_STAR_STAR] = ACTIONS(191), [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(219), + [anon_sym_DOT] = ACTIONS(191), [anon_sym_do] = ACTIONS(191), - [anon_sym_fn] = ACTIONS(400), - [anon_sym_LPAREN2] = ACTIONS(402), + [anon_sym_fn] = ACTIONS(406), + [anon_sym_LPAREN2] = ACTIONS(408), [anon_sym_LBRACK2] = ACTIONS(189), [sym_comment] = ACTIONS(5), [sym__newline_before_do] = ACTIONS(189), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(674), - [sym__not_in] = ACTIONS(245), - [sym__quoted_atom_start] = ACTIONS(406), + [sym__before_unary_op] = ACTIONS(682), + [sym__not_in] = ACTIONS(189), + [sym__quoted_atom_start] = ACTIONS(412), }, [69] = { - [sym__expression] = STATE(2369), - [sym_block] = STATE(2369), - [sym__identifier] = STATE(68), - [sym_identifier] = STATE(68), - [sym_special_identifier] = STATE(68), - [sym_boolean] = STATE(2369), - [sym_nil] = STATE(2369), - [sym__atom] = STATE(2369), - [sym_quoted_atom] = STATE(2369), - [sym__quoted_i_double] = STATE(1678), - [sym__quoted_i_single] = STATE(1677), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(2369), - [sym_charlist] = STATE(2369), - [sym_sigil] = STATE(2369), - [sym_keywords] = STATE(1934), - [sym_pair] = STATE(2722), - [sym__keyword] = STATE(660), - [sym_quoted_keyword] = STATE(660), - [sym_list] = STATE(2369), - [sym_tuple] = STATE(2369), - [sym_bitstring] = STATE(2369), - [sym_map] = STATE(2369), - [sym_unary_operator] = STATE(2369), - [sym_binary_operator] = STATE(2369), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(2369), - [sym_call] = STATE(2369), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym__call_arguments_with_parentheses_immediate] = STATE(1443), - [sym__call_arguments_without_parentheses] = STATE(1758), - [sym_do_block] = STATE(1923), - [sym_access_call] = STATE(2369), - [sym_anonymous_function] = STATE(2369), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(662), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(664), - [sym_integer] = ACTIONS(664), - [sym_float] = ACTIONS(664), - [sym_char] = ACTIONS(664), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), - [sym_atom] = ACTIONS(664), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(252), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(252), - [anon_sym_GT] = ACTIONS(252), - [anon_sym_PIPE] = ACTIONS(252), - [anon_sym_SLASH] = ACTIONS(252), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_COMMA] = ACTIONS(252), - [sym_keyword] = ACTIONS(666), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(252), - [anon_sym_DASH] = ACTIONS(252), - [anon_sym_BANG] = ACTIONS(670), - [anon_sym_CARET] = ACTIONS(670), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(670), - [anon_sym_not] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(672), - [anon_sym_LT_DASH] = ACTIONS(252), - [anon_sym_BSLASH_BSLASH] = ACTIONS(252), - [anon_sym_when] = ACTIONS(252), - [anon_sym_COLON_COLON] = ACTIONS(252), - [anon_sym_EQ_GT] = ACTIONS(252), - [anon_sym_EQ] = ACTIONS(252), - [anon_sym_PIPE_PIPE] = ACTIONS(252), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(252), - [anon_sym_or] = ACTIONS(252), - [anon_sym_AMP_AMP] = ACTIONS(252), - [anon_sym_AMP_AMP_AMP] = ACTIONS(252), - [anon_sym_and] = ACTIONS(252), - [anon_sym_EQ_EQ] = ACTIONS(252), - [anon_sym_BANG_EQ] = ACTIONS(252), - [anon_sym_EQ_TILDE] = ACTIONS(252), - [anon_sym_EQ_EQ_EQ] = ACTIONS(252), - [anon_sym_BANG_EQ_EQ] = ACTIONS(252), - [anon_sym_LT_EQ] = ACTIONS(252), - [anon_sym_GT_EQ] = ACTIONS(252), - [anon_sym_PIPE_GT] = ACTIONS(252), - [anon_sym_LT_LT_LT] = ACTIONS(252), - [anon_sym_GT_GT_GT] = ACTIONS(252), - [anon_sym_LT_LT_TILDE] = ACTIONS(252), - [anon_sym_TILDE_GT_GT] = ACTIONS(252), - [anon_sym_LT_TILDE] = ACTIONS(252), - [anon_sym_TILDE_GT] = ACTIONS(252), - [anon_sym_LT_TILDE_GT] = ACTIONS(252), - [anon_sym_LT_PIPE_GT] = ACTIONS(252), - [anon_sym_in] = ACTIONS(252), - [anon_sym_CARET_CARET_CARET] = ACTIONS(252), - [anon_sym_SLASH_SLASH] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(252), - [anon_sym_DASH_DASH] = ACTIONS(252), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(252), - [anon_sym_DASH_DASH_DASH] = ACTIONS(252), - [anon_sym_DOT_DOT] = ACTIONS(252), - [anon_sym_LT_GT] = ACTIONS(252), - [anon_sym_STAR] = ACTIONS(252), - [anon_sym_STAR_STAR] = ACTIONS(252), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(252), - [anon_sym_do] = ACTIONS(252), - [anon_sym_fn] = ACTIONS(400), - [anon_sym_LPAREN2] = ACTIONS(402), - [anon_sym_LBRACK2] = ACTIONS(250), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(250), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(674), - [sym__not_in] = ACTIONS(250), - [sym__quoted_atom_start] = ACTIONS(406), - }, - [70] = { - [sym__expression] = STATE(1129), - [sym_block] = STATE(1129), + [sym__expression] = STATE(1101), + [sym_block] = STATE(1101), [sym__identifier] = STATE(25), [sym_identifier] = STATE(25), [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1129), - [sym_nil] = STATE(1129), - [sym__atom] = STATE(1129), - [sym_quoted_atom] = STATE(1129), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1129), - [sym_charlist] = STATE(1129), - [sym_sigil] = STATE(1129), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1129), - [sym_tuple] = STATE(1129), - [sym_bitstring] = STATE(1129), - [sym_map] = STATE(1129), - [sym_unary_operator] = STATE(1129), - [sym_binary_operator] = STATE(1129), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1129), - [sym_call] = STATE(1129), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1129), - [sym_stab_clause] = STATE(3745), - [sym__stab_clause_left] = STATE(4978), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1129), + [sym_boolean] = STATE(1101), + [sym_nil] = STATE(1101), + [sym__atom] = STATE(1101), + [sym_quoted_atom] = STATE(1101), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1101), + [sym_charlist] = STATE(1101), + [sym_sigil] = STATE(1101), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1101), + [sym_tuple] = STATE(1101), + [sym_bitstring] = STATE(1101), + [sym_map] = STATE(1101), + [sym_unary_operator] = STATE(1101), + [sym_binary_operator] = STATE(1101), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1101), + [sym_call] = STATE(1101), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1101), + [sym_stab_clause] = STATE(4352), + [sym__stab_clause_left] = STATE(5656), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1101), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(65), [aux_sym_identifier_token1] = ACTIONS(67), @@ -33302,14 +33799,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ENV__] = ACTIONS(71), [anon_sym___CALLER__] = ACTIONS(71), [anon_sym___STACKTRACE__] = ACTIONS(71), - [sym_alias] = ACTIONS(690), - [sym_integer] = ACTIONS(690), - [sym_float] = ACTIONS(690), - [sym_char] = ACTIONS(690), + [sym_alias] = ACTIONS(684), + [sym_integer] = ACTIONS(684), + [sym_float] = ACTIONS(684), + [sym_char] = ACTIONS(684), [anon_sym_true] = ACTIONS(75), [anon_sym_false] = ACTIONS(75), [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(690), + [sym_atom] = ACTIONS(684), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), @@ -33371,12 +33868,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(105), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(692), - [anon_sym_catch] = ACTIONS(692), - [anon_sym_else] = ACTIONS(692), - [anon_sym_end] = ACTIONS(692), + [anon_sym_after] = ACTIONS(686), + [anon_sym_catch] = ACTIONS(686), + [anon_sym_else] = ACTIONS(686), + [anon_sym_end] = ACTIONS(686), [anon_sym_fn] = ACTIONS(115), - [anon_sym_rescue] = ACTIONS(692), + [anon_sym_rescue] = ACTIONS(686), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), @@ -33384,55 +33881,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(121), }, + [70] = { + [sym__expression] = STATE(2716), + [sym_block] = STATE(2716), + [sym__identifier] = STATE(70), + [sym_identifier] = STATE(70), + [sym_special_identifier] = STATE(70), + [sym_boolean] = STATE(2716), + [sym_nil] = STATE(2716), + [sym__atom] = STATE(2716), + [sym_quoted_atom] = STATE(2716), + [sym__quoted_i_double] = STATE(1777), + [sym__quoted_i_single] = STATE(1778), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(2716), + [sym_charlist] = STATE(2716), + [sym_sigil] = STATE(2716), + [sym_keywords] = STATE(2106), + [sym_pair] = STATE(2680), + [sym__keyword] = STATE(642), + [sym_quoted_keyword] = STATE(642), + [sym_list] = STATE(2716), + [sym_tuple] = STATE(2716), + [sym_bitstring] = STATE(2716), + [sym_map] = STATE(2716), + [sym_unary_operator] = STATE(2716), + [sym_binary_operator] = STATE(2716), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(2716), + [sym_call] = STATE(2716), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym__call_arguments_with_parentheses_immediate] = STATE(1589), + [sym__call_arguments_without_parentheses] = STATE(1813), + [sym_do_block] = STATE(2159), + [sym_access_call] = STATE(2716), + [sym_anonymous_function] = STATE(2716), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(672), + [sym_integer] = ACTIONS(672), + [sym_float] = ACTIONS(672), + [sym_char] = ACTIONS(672), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(672), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_COMMA] = ACTIONS(247), + [sym_keyword] = ACTIONS(674), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(678), + [anon_sym_CARET] = ACTIONS(678), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(678), + [anon_sym_not] = ACTIONS(678), + [anon_sym_AT] = ACTIONS(680), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_BSLASH_BSLASH] = ACTIONS(271), + [anon_sym_when] = ACTIONS(271), + [anon_sym_COLON_COLON] = ACTIONS(271), + [anon_sym_EQ_GT] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_PIPE_PIPE] = ACTIONS(271), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(271), + [anon_sym_AMP_AMP_AMP] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_EQ_TILDE] = ACTIONS(271), + [anon_sym_EQ_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ_EQ] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_PIPE_GT] = ACTIONS(271), + [anon_sym_LT_LT_LT] = ACTIONS(271), + [anon_sym_GT_GT_GT] = ACTIONS(271), + [anon_sym_LT_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT_GT] = ACTIONS(271), + [anon_sym_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_PIPE_GT] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_CARET_CARET_CARET] = ACTIONS(247), + [anon_sym_SLASH_SLASH] = ACTIONS(247), + [anon_sym_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH] = ACTIONS(271), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH_DASH] = ACTIONS(271), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_do] = ACTIONS(247), + [anon_sym_fn] = ACTIONS(406), + [anon_sym_LPAREN2] = ACTIONS(408), + [anon_sym_LBRACK2] = ACTIONS(245), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(245), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(682), + [sym__not_in] = ACTIONS(297), + [sym__quoted_atom_start] = ACTIONS(412), + }, [71] = { - [sym__expression] = STATE(1132), - [sym_block] = STATE(1132), + [sym__expression] = STATE(1117), + [sym_block] = STATE(1117), [sym__identifier] = STATE(25), [sym_identifier] = STATE(25), [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1132), - [sym_nil] = STATE(1132), - [sym__atom] = STATE(1132), - [sym_quoted_atom] = STATE(1132), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1132), - [sym_charlist] = STATE(1132), - [sym_sigil] = STATE(1132), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1132), - [sym_tuple] = STATE(1132), - [sym_bitstring] = STATE(1132), - [sym_map] = STATE(1132), - [sym_unary_operator] = STATE(1132), - [sym_binary_operator] = STATE(1132), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1132), - [sym_call] = STATE(1132), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1132), - [sym_stab_clause] = STATE(3724), - [sym__stab_clause_left] = STATE(4978), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1132), + [sym_boolean] = STATE(1117), + [sym_nil] = STATE(1117), + [sym__atom] = STATE(1117), + [sym_quoted_atom] = STATE(1117), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1117), + [sym_charlist] = STATE(1117), + [sym_sigil] = STATE(1117), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1117), + [sym_tuple] = STATE(1117), + [sym_bitstring] = STATE(1117), + [sym_map] = STATE(1117), + [sym_unary_operator] = STATE(1117), + [sym_binary_operator] = STATE(1117), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1117), + [sym_call] = STATE(1117), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1117), + [sym_stab_clause] = STATE(4356), + [sym__stab_clause_left] = STATE(5656), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1117), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(65), [aux_sym_identifier_token1] = ACTIONS(67), @@ -33526,196 +34164,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [72] = { - [sym__expression] = STATE(2732), - [sym_block] = STATE(2732), - [sym__identifier] = STATE(63), - [sym_identifier] = STATE(63), - [sym_special_identifier] = STATE(63), - [sym_boolean] = STATE(2732), - [sym_nil] = STATE(2732), - [sym__atom] = STATE(2732), - [sym_quoted_atom] = STATE(2732), - [sym__quoted_i_double] = STATE(2570), - [sym__quoted_i_single] = STATE(2569), - [sym__quoted_i_heredoc_single] = STATE(2987), - [sym__quoted_i_heredoc_double] = STATE(2988), - [sym_string] = STATE(2732), - [sym_charlist] = STATE(2732), - [sym_sigil] = STATE(2732), - [sym_keywords] = STATE(3106), - [sym_pair] = STATE(2758), - [sym__keyword] = STATE(459), - [sym_quoted_keyword] = STATE(459), - [sym_list] = STATE(2732), - [sym_tuple] = STATE(2732), - [sym_bitstring] = STATE(2732), - [sym_map] = STATE(2732), - [sym_unary_operator] = STATE(2732), - [sym_binary_operator] = STATE(2732), - [sym_operator_identifier] = STATE(5020), - [sym_dot] = STATE(2732), - [sym_call] = STATE(2732), - [sym__call_without_parentheses] = STATE(2986), - [sym__call_with_parentheses] = STATE(2985), - [sym__local_call_without_parentheses] = STATE(2984), - [sym__local_call_with_parentheses] = STATE(2047), - [sym__local_call_just_do_block] = STATE(2983), - [sym__remote_call_without_parentheses] = STATE(2982), - [sym__remote_call_with_parentheses] = STATE(2050), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(2052), - [sym__anonymous_dot] = STATE(4887), - [sym__double_call] = STATE(2981), - [sym__call_arguments_with_parentheses_immediate] = STATE(2040), - [sym__call_arguments_without_parentheses] = STATE(2736), - [sym_do_block] = STATE(3442), - [sym_access_call] = STATE(2732), - [sym_anonymous_function] = STATE(2732), + [sym__expression] = STATE(2716), + [sym_block] = STATE(2716), + [sym__identifier] = STATE(70), + [sym_identifier] = STATE(70), + [sym_special_identifier] = STATE(70), + [sym_boolean] = STATE(2716), + [sym_nil] = STATE(2716), + [sym__atom] = STATE(2716), + [sym_quoted_atom] = STATE(2716), + [sym__quoted_i_double] = STATE(1777), + [sym__quoted_i_single] = STATE(1778), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(2716), + [sym_charlist] = STATE(2716), + [sym_sigil] = STATE(2716), + [sym_keywords] = STATE(2106), + [sym_pair] = STATE(2680), + [sym__keyword] = STATE(642), + [sym_quoted_keyword] = STATE(642), + [sym_list] = STATE(2716), + [sym_tuple] = STATE(2716), + [sym_bitstring] = STATE(2716), + [sym_map] = STATE(2716), + [sym_unary_operator] = STATE(2716), + [sym_binary_operator] = STATE(2716), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(2716), + [sym_call] = STATE(2716), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym__call_arguments_with_parentheses_immediate] = STATE(1549), + [sym__call_arguments_without_parentheses] = STATE(1873), + [sym_do_block] = STATE(3163), + [sym_access_call] = STATE(2716), + [sym_anonymous_function] = STATE(2716), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(604), - [aux_sym_identifier_token1] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(606), - [sym_unused_identifier] = ACTIONS(608), - [anon_sym___MODULE__] = ACTIONS(610), - [anon_sym___DIR__] = ACTIONS(610), - [anon_sym___ENV__] = ACTIONS(610), - [anon_sym___CALLER__] = ACTIONS(610), - [anon_sym___STACKTRACE__] = ACTIONS(610), - [sym_alias] = ACTIONS(612), - [sym_integer] = ACTIONS(612), - [sym_float] = ACTIONS(612), - [sym_char] = ACTIONS(612), - [anon_sym_true] = ACTIONS(614), - [anon_sym_false] = ACTIONS(614), - [anon_sym_nil] = ACTIONS(616), - [sym_atom] = ACTIONS(612), - [anon_sym_DQUOTE] = ACTIONS(618), - [anon_sym_SQUOTE] = ACTIONS(620), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(624), - [anon_sym_LBRACE] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_LT] = ACTIONS(219), - [anon_sym_GT] = ACTIONS(219), - [anon_sym_PIPE] = ACTIONS(219), - [anon_sym_SLASH] = ACTIONS(219), - [anon_sym_TILDE] = ACTIONS(630), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(672), + [sym_integer] = ACTIONS(672), + [sym_float] = ACTIONS(672), + [sym_char] = ACTIONS(672), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(672), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(389), [anon_sym_COMMA] = ACTIONS(191), - [sym_keyword] = ACTIONS(632), - [anon_sym_LT_LT] = ACTIONS(634), - [anon_sym_GT_GT] = ACTIONS(191), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_AMP] = ACTIONS(638), - [anon_sym_PLUS] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(659), - [anon_sym_BANG] = ACTIONS(640), - [anon_sym_CARET] = ACTIONS(640), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(640), - [anon_sym_not] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(642), - [anon_sym_LT_DASH] = ACTIONS(219), - [anon_sym_BSLASH_BSLASH] = ACTIONS(219), - [anon_sym_when] = ACTIONS(219), - [anon_sym_COLON_COLON] = ACTIONS(219), + [sym_keyword] = ACTIONS(674), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(678), + [anon_sym_CARET] = ACTIONS(678), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(678), + [anon_sym_not] = ACTIONS(678), + [anon_sym_AT] = ACTIONS(680), + [anon_sym_LT_DASH] = ACTIONS(191), + [anon_sym_BSLASH_BSLASH] = ACTIONS(191), + [anon_sym_when] = ACTIONS(191), + [anon_sym_COLON_COLON] = ACTIONS(191), [anon_sym_EQ_GT] = ACTIONS(191), - [anon_sym_EQ] = ACTIONS(219), - [anon_sym_PIPE_PIPE] = ACTIONS(219), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(219), - [anon_sym_or] = ACTIONS(219), - [anon_sym_AMP_AMP] = ACTIONS(219), - [anon_sym_AMP_AMP_AMP] = ACTIONS(219), - [anon_sym_and] = ACTIONS(219), - [anon_sym_EQ_EQ] = ACTIONS(219), - [anon_sym_BANG_EQ] = ACTIONS(219), - [anon_sym_EQ_TILDE] = ACTIONS(219), - [anon_sym_EQ_EQ_EQ] = ACTIONS(219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(219), - [anon_sym_LT_EQ] = ACTIONS(219), - [anon_sym_GT_EQ] = ACTIONS(219), - [anon_sym_PIPE_GT] = ACTIONS(219), - [anon_sym_LT_LT_LT] = ACTIONS(219), - [anon_sym_GT_GT_GT] = ACTIONS(219), - [anon_sym_LT_LT_TILDE] = ACTIONS(219), - [anon_sym_TILDE_GT_GT] = ACTIONS(219), - [anon_sym_LT_TILDE] = ACTIONS(219), - [anon_sym_TILDE_GT] = ACTIONS(219), - [anon_sym_LT_TILDE_GT] = ACTIONS(219), - [anon_sym_LT_PIPE_GT] = ACTIONS(219), - [anon_sym_in] = ACTIONS(219), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_PIPE_PIPE] = ACTIONS(191), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(191), + [anon_sym_or] = ACTIONS(191), + [anon_sym_AMP_AMP] = ACTIONS(191), + [anon_sym_AMP_AMP_AMP] = ACTIONS(191), + [anon_sym_and] = ACTIONS(191), + [anon_sym_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ] = ACTIONS(191), + [anon_sym_EQ_TILDE] = ACTIONS(191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(191), + [anon_sym_LT_EQ] = ACTIONS(191), + [anon_sym_GT_EQ] = ACTIONS(191), + [anon_sym_PIPE_GT] = ACTIONS(191), + [anon_sym_LT_LT_LT] = ACTIONS(191), + [anon_sym_GT_GT_GT] = ACTIONS(191), + [anon_sym_LT_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT_GT] = ACTIONS(191), + [anon_sym_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_PIPE_GT] = ACTIONS(191), + [anon_sym_in] = ACTIONS(191), [anon_sym_CARET_CARET_CARET] = ACTIONS(191), [anon_sym_SLASH_SLASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(219), - [anon_sym_DASH_DASH] = ACTIONS(219), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(219), - [anon_sym_DASH_DASH_DASH] = ACTIONS(219), - [anon_sym_DOT_DOT] = ACTIONS(219), - [anon_sym_LT_GT] = ACTIONS(219), - [anon_sym_STAR] = ACTIONS(219), - [anon_sym_STAR_STAR] = ACTIONS(219), + [anon_sym_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH_DASH] = ACTIONS(191), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_LT_GT] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_STAR_STAR] = ACTIONS(191), [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(219), - [anon_sym_do] = ACTIONS(644), - [anon_sym_fn] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), + [anon_sym_DOT] = ACTIONS(191), + [anon_sym_do] = ACTIONS(414), + [anon_sym_fn] = ACTIONS(406), + [anon_sym_LPAREN2] = ACTIONS(408), [anon_sym_LBRACK2] = ACTIONS(189), [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(416), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(652), - [sym__not_in] = ACTIONS(245), - [sym__quoted_atom_start] = ACTIONS(654), + [sym__before_unary_op] = ACTIONS(682), + [sym__not_in] = ACTIONS(189), + [sym__quoted_atom_start] = ACTIONS(412), }, [73] = { - [sym__terminator] = STATE(123), - [sym__expression] = STATE(1818), - [sym_block] = STATE(1818), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(1818), - [sym_nil] = STATE(1818), - [sym__atom] = STATE(1818), - [sym_quoted_atom] = STATE(1818), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1818), - [sym_charlist] = STATE(1818), - [sym_sigil] = STATE(1818), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1818), - [sym_tuple] = STATE(1818), - [sym_bitstring] = STATE(1818), - [sym_map] = STATE(1818), - [sym_unary_operator] = STATE(1818), - [sym_binary_operator] = STATE(1818), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1818), - [sym_call] = STATE(1818), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1818), - [sym_stab_clause] = STATE(4314), - [sym__stab_clause_left] = STATE(5021), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1818), + [sym__terminator] = STATE(119), + [sym__expression] = STATE(1736), + [sym_block] = STATE(1736), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(1736), + [sym_nil] = STATE(1736), + [sym__atom] = STATE(1736), + [sym_quoted_atom] = STATE(1736), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1736), + [sym_charlist] = STATE(1736), + [sym_sigil] = STATE(1736), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1736), + [sym_tuple] = STATE(1736), + [sym_bitstring] = STATE(1736), + [sym_map] = STATE(1736), + [sym_unary_operator] = STATE(1736), + [sym_binary_operator] = STATE(1736), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1736), + [sym_call] = STATE(1736), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1736), + [sym_stab_clause] = STATE(4928), + [sym__stab_clause_left] = STATE(5624), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1736), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(698), [anon_sym_SEMI] = ACTIONS(700), @@ -33807,55 +34445,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [74] = { - [sym__terminator] = STATE(121), - [sym__expression] = STATE(1725), - [sym_block] = STATE(1725), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(1725), - [sym_nil] = STATE(1725), - [sym__atom] = STATE(1725), - [sym_quoted_atom] = STATE(1725), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1725), - [sym_charlist] = STATE(1725), - [sym_sigil] = STATE(1725), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1725), - [sym_tuple] = STATE(1725), - [sym_bitstring] = STATE(1725), - [sym_map] = STATE(1725), - [sym_unary_operator] = STATE(1725), - [sym_binary_operator] = STATE(1725), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1725), - [sym_call] = STATE(1725), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1725), - [sym_stab_clause] = STATE(4413), - [sym__stab_clause_left] = STATE(5021), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1725), + [sym__terminator] = STATE(113), + [sym__expression] = STATE(1523), + [sym_block] = STATE(1523), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(1523), + [sym_nil] = STATE(1523), + [sym__atom] = STATE(1523), + [sym_quoted_atom] = STATE(1523), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1523), + [sym_charlist] = STATE(1523), + [sym_sigil] = STATE(1523), + [sym_keywords] = STATE(5443), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1523), + [sym_tuple] = STATE(1523), + [sym_bitstring] = STATE(1523), + [sym_map] = STATE(1523), + [sym_unary_operator] = STATE(1523), + [sym_binary_operator] = STATE(1523), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1523), + [sym_call] = STATE(1523), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1523), + [sym_stab_clause] = STATE(5035), + [sym__stab_clause_left] = STATE(5624), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1523), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(698), [anon_sym_SEMI] = ACTIONS(724), @@ -33947,55 +34585,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [75] = { - [sym__terminator] = STATE(119), - [sym__expression] = STATE(1563), - [sym_block] = STATE(1563), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(1563), - [sym_nil] = STATE(1563), - [sym__atom] = STATE(1563), - [sym_quoted_atom] = STATE(1563), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1563), - [sym_charlist] = STATE(1563), - [sym_sigil] = STATE(1563), - [sym_keywords] = STATE(4837), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1563), - [sym_tuple] = STATE(1563), - [sym_bitstring] = STATE(1563), - [sym_map] = STATE(1563), - [sym_unary_operator] = STATE(1563), - [sym_binary_operator] = STATE(1563), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1563), - [sym_call] = STATE(1563), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1563), - [sym_stab_clause] = STATE(4377), - [sym__stab_clause_left] = STATE(5021), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1563), + [sym__terminator] = STATE(115), + [sym__expression] = STATE(1743), + [sym_block] = STATE(1743), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(1743), + [sym_nil] = STATE(1743), + [sym__atom] = STATE(1743), + [sym_quoted_atom] = STATE(1743), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1743), + [sym_charlist] = STATE(1743), + [sym_sigil] = STATE(1743), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1743), + [sym_tuple] = STATE(1743), + [sym_bitstring] = STATE(1743), + [sym_map] = STATE(1743), + [sym_unary_operator] = STATE(1743), + [sym_binary_operator] = STATE(1743), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1743), + [sym_call] = STATE(1743), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1743), + [sym_stab_clause] = STATE(4950), + [sym__stab_clause_left] = STATE(5624), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1743), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(698), [anon_sym_SEMI] = ACTIONS(730), @@ -34087,55 +34725,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [76] = { - [sym__terminator] = STATE(124), - [sym__expression] = STATE(1683), - [sym_block] = STATE(1683), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(1683), - [sym_nil] = STATE(1683), - [sym__atom] = STATE(1683), - [sym_quoted_atom] = STATE(1683), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1683), - [sym_charlist] = STATE(1683), - [sym_sigil] = STATE(1683), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1683), - [sym_tuple] = STATE(1683), - [sym_bitstring] = STATE(1683), - [sym_map] = STATE(1683), - [sym_unary_operator] = STATE(1683), - [sym_binary_operator] = STATE(1683), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1683), - [sym_call] = STATE(1683), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1683), - [sym_stab_clause] = STATE(4304), - [sym__stab_clause_left] = STATE(5021), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1683), + [sym__terminator] = STATE(123), + [sym__expression] = STATE(1965), + [sym_block] = STATE(1965), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(1965), + [sym_nil] = STATE(1965), + [sym__atom] = STATE(1965), + [sym_quoted_atom] = STATE(1965), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1965), + [sym_charlist] = STATE(1965), + [sym_sigil] = STATE(1965), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1965), + [sym_tuple] = STATE(1965), + [sym_bitstring] = STATE(1965), + [sym_map] = STATE(1965), + [sym_unary_operator] = STATE(1965), + [sym_binary_operator] = STATE(1965), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1965), + [sym_call] = STATE(1965), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1965), + [sym_stab_clause] = STATE(5028), + [sym__stab_clause_left] = STATE(5624), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1965), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(698), [anon_sym_SEMI] = ACTIONS(736), @@ -34227,55 +34865,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [77] = { - [sym__terminator] = STATE(115), - [sym__expression] = STATE(1776), - [sym_block] = STATE(1776), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(1776), - [sym_nil] = STATE(1776), - [sym__atom] = STATE(1776), - [sym_quoted_atom] = STATE(1776), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1776), - [sym_charlist] = STATE(1776), - [sym_sigil] = STATE(1776), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1776), - [sym_tuple] = STATE(1776), - [sym_bitstring] = STATE(1776), - [sym_map] = STATE(1776), - [sym_unary_operator] = STATE(1776), - [sym_binary_operator] = STATE(1776), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1776), - [sym_call] = STATE(1776), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1776), - [sym_stab_clause] = STATE(4381), - [sym__stab_clause_left] = STATE(5021), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1776), + [sym__terminator] = STATE(117), + [sym__expression] = STATE(1735), + [sym_block] = STATE(1735), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(1735), + [sym_nil] = STATE(1735), + [sym__atom] = STATE(1735), + [sym_quoted_atom] = STATE(1735), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1735), + [sym_charlist] = STATE(1735), + [sym_sigil] = STATE(1735), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1735), + [sym_tuple] = STATE(1735), + [sym_bitstring] = STATE(1735), + [sym_map] = STATE(1735), + [sym_unary_operator] = STATE(1735), + [sym_binary_operator] = STATE(1735), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1735), + [sym_call] = STATE(1735), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1735), + [sym_stab_clause] = STATE(4922), + [sym__stab_clause_left] = STATE(5624), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1735), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(698), [anon_sym_SEMI] = ACTIONS(742), @@ -34367,60 +35005,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [78] = { - [sym__terminator] = STATE(115), - [sym__expression] = STATE(1797), - [sym_block] = STATE(1797), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(1797), - [sym_nil] = STATE(1797), - [sym__atom] = STATE(1797), - [sym_quoted_atom] = STATE(1797), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1797), - [sym_charlist] = STATE(1797), - [sym_sigil] = STATE(1797), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1797), - [sym_tuple] = STATE(1797), - [sym_bitstring] = STATE(1797), - [sym_map] = STATE(1797), - [sym_unary_operator] = STATE(1797), - [sym_binary_operator] = STATE(1797), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1797), - [sym_call] = STATE(1797), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1797), - [sym_stab_clause] = STATE(4381), - [sym__stab_clause_left] = STATE(5021), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1797), + [sym__terminator] = STATE(124), + [sym__expression] = STATE(1949), + [sym_block] = STATE(1949), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(1949), + [sym_nil] = STATE(1949), + [sym__atom] = STATE(1949), + [sym_quoted_atom] = STATE(1949), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1949), + [sym_charlist] = STATE(1949), + [sym_sigil] = STATE(1949), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1949), + [sym_tuple] = STATE(1949), + [sym_bitstring] = STATE(1949), + [sym_map] = STATE(1949), + [sym_unary_operator] = STATE(1949), + [sym_binary_operator] = STATE(1949), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1949), + [sym_call] = STATE(1949), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1949), + [sym_stab_clause] = STATE(4905), + [sym__stab_clause_left] = STATE(5624), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1949), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(742), + [anon_sym_SEMI] = ACTIONS(748), [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_RPAREN] = ACTIONS(744), + [anon_sym_RPAREN] = ACTIONS(750), [aux_sym_identifier_token1] = ACTIONS(704), [anon_sym_DOT_DOT_DOT] = ACTIONS(704), [sym_unused_identifier] = ACTIONS(706), @@ -34429,14 +35067,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ENV__] = ACTIONS(708), [anon_sym___CALLER__] = ACTIONS(708), [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(748), - [sym_integer] = ACTIONS(748), - [sym_float] = ACTIONS(748), - [sym_char] = ACTIONS(748), + [sym_alias] = ACTIONS(752), + [sym_integer] = ACTIONS(752), + [sym_float] = ACTIONS(752), + [sym_char] = ACTIONS(752), [anon_sym_true] = ACTIONS(75), [anon_sym_false] = ACTIONS(75), [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(748), + [sym_atom] = ACTIONS(752), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), @@ -34507,60 +35145,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [79] = { - [sym__terminator] = STATE(121), - [sym__expression] = STATE(1706), - [sym_block] = STATE(1706), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(1706), - [sym_nil] = STATE(1706), - [sym__atom] = STATE(1706), - [sym_quoted_atom] = STATE(1706), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1706), - [sym_charlist] = STATE(1706), - [sym_sigil] = STATE(1706), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1706), - [sym_tuple] = STATE(1706), - [sym_bitstring] = STATE(1706), - [sym_map] = STATE(1706), - [sym_unary_operator] = STATE(1706), - [sym_binary_operator] = STATE(1706), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1706), - [sym_call] = STATE(1706), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1706), - [sym_stab_clause] = STATE(4413), - [sym__stab_clause_left] = STATE(5021), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1706), + [sym__terminator] = STATE(122), + [sym__expression] = STATE(1730), + [sym_block] = STATE(1730), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(1730), + [sym_nil] = STATE(1730), + [sym__atom] = STATE(1730), + [sym_quoted_atom] = STATE(1730), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1730), + [sym_charlist] = STATE(1730), + [sym_sigil] = STATE(1730), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1730), + [sym_tuple] = STATE(1730), + [sym_bitstring] = STATE(1730), + [sym_map] = STATE(1730), + [sym_unary_operator] = STATE(1730), + [sym_binary_operator] = STATE(1730), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1730), + [sym_call] = STATE(1730), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1730), + [sym_stab_clause] = STATE(5021), + [sym__stab_clause_left] = STATE(5624), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1730), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(724), + [anon_sym_SEMI] = ACTIONS(754), [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_RPAREN] = ACTIONS(726), + [anon_sym_RPAREN] = ACTIONS(756), [aux_sym_identifier_token1] = ACTIONS(704), [anon_sym_DOT_DOT_DOT] = ACTIONS(704), [sym_unused_identifier] = ACTIONS(706), @@ -34569,14 +35207,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ENV__] = ACTIONS(708), [anon_sym___CALLER__] = ACTIONS(708), [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(750), - [sym_integer] = ACTIONS(750), - [sym_float] = ACTIONS(750), - [sym_char] = ACTIONS(750), + [sym_alias] = ACTIONS(758), + [sym_integer] = ACTIONS(758), + [sym_float] = ACTIONS(758), + [sym_char] = ACTIONS(758), [anon_sym_true] = ACTIONS(75), [anon_sym_false] = ACTIONS(75), [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(750), + [sym_atom] = ACTIONS(758), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), @@ -34647,200 +35285,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [80] = { - [sym__terminator] = STATE(119), - [sym__expression] = STATE(1696), - [sym_block] = STATE(1696), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(1696), - [sym_nil] = STATE(1696), - [sym__atom] = STATE(1696), - [sym_quoted_atom] = STATE(1696), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1696), - [sym_charlist] = STATE(1696), - [sym_sigil] = STATE(1696), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1696), - [sym_tuple] = STATE(1696), - [sym_bitstring] = STATE(1696), - [sym_map] = STATE(1696), - [sym_unary_operator] = STATE(1696), - [sym_binary_operator] = STATE(1696), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1696), - [sym_call] = STATE(1696), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1696), - [sym_stab_clause] = STATE(4377), - [sym__stab_clause_left] = STATE(5021), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1696), + [sym__terminator] = STATE(124), + [sym__expression] = STATE(1956), + [sym_block] = STATE(1956), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(1956), + [sym_nil] = STATE(1956), + [sym__atom] = STATE(1956), + [sym_quoted_atom] = STATE(1956), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1956), + [sym_charlist] = STATE(1956), + [sym_sigil] = STATE(1956), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1956), + [sym_tuple] = STATE(1956), + [sym_bitstring] = STATE(1956), + [sym_map] = STATE(1956), + [sym_unary_operator] = STATE(1956), + [sym_binary_operator] = STATE(1956), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1956), + [sym_call] = STATE(1956), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1956), + [sym_stab_clause] = STATE(4905), + [sym__stab_clause_left] = STATE(5624), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1956), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(730), + [anon_sym_SEMI] = ACTIONS(748), [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_RPAREN] = ACTIONS(752), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(706), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(754), - [sym_integer] = ACTIONS(754), - [sym_float] = ACTIONS(754), - [sym_char] = ACTIONS(754), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(754), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(712), - [sym_keyword] = ACTIONS(93), - [anon_sym_LT_LT] = ACTIONS(95), - [anon_sym_PERCENT] = ACTIONS(97), - [anon_sym_AMP] = ACTIONS(714), - [anon_sym_PLUS] = ACTIONS(716), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_CARET] = ACTIONS(716), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), - [anon_sym_not] = ACTIONS(716), - [anon_sym_AT] = ACTIONS(718), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(720), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(115), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(722), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(121), - }, - [81] = { - [sym__terminator] = STATE(116), - [sym__expression] = STATE(1805), - [sym_block] = STATE(1805), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(1805), - [sym_nil] = STATE(1805), - [sym__atom] = STATE(1805), - [sym_quoted_atom] = STATE(1805), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1805), - [sym_charlist] = STATE(1805), - [sym_sigil] = STATE(1805), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1805), - [sym_tuple] = STATE(1805), - [sym_bitstring] = STATE(1805), - [sym_map] = STATE(1805), - [sym_unary_operator] = STATE(1805), - [sym_binary_operator] = STATE(1805), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1805), - [sym_call] = STATE(1805), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1805), - [sym_stab_clause] = STATE(4414), - [sym__stab_clause_left] = STATE(5021), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1805), - [aux_sym__terminator_repeat1] = STATE(1026), - [aux_sym__terminator_token1] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(756), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_RPAREN] = ACTIONS(750), [aux_sym_identifier_token1] = ACTIONS(704), [anon_sym_DOT_DOT_DOT] = ACTIONS(704), [sym_unused_identifier] = ACTIONS(706), @@ -34926,59 +35424,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(121), }, - [82] = { - [sym__terminator] = STATE(124), - [sym__expression] = STATE(1522), - [sym_block] = STATE(1522), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(1522), - [sym_nil] = STATE(1522), - [sym__atom] = STATE(1522), - [sym_quoted_atom] = STATE(1522), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1522), - [sym_charlist] = STATE(1522), - [sym_sigil] = STATE(1522), - [sym_keywords] = STATE(4837), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1522), - [sym_tuple] = STATE(1522), - [sym_bitstring] = STATE(1522), - [sym_map] = STATE(1522), - [sym_unary_operator] = STATE(1522), - [sym_binary_operator] = STATE(1522), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1522), - [sym_call] = STATE(1522), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1522), - [sym_stab_clause] = STATE(4304), - [sym__stab_clause_left] = STATE(5021), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1522), + [81] = { + [sym__terminator] = STATE(115), + [sym__expression] = STATE(1649), + [sym_block] = STATE(1649), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(1649), + [sym_nil] = STATE(1649), + [sym__atom] = STATE(1649), + [sym_quoted_atom] = STATE(1649), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1649), + [sym_charlist] = STATE(1649), + [sym_sigil] = STATE(1649), + [sym_keywords] = STATE(5443), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1649), + [sym_tuple] = STATE(1649), + [sym_bitstring] = STATE(1649), + [sym_map] = STATE(1649), + [sym_unary_operator] = STATE(1649), + [sym_binary_operator] = STATE(1649), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1649), + [sym_call] = STATE(1649), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1649), + [sym_stab_clause] = STATE(4950), + [sym__stab_clause_left] = STATE(5624), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1649), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(736), + [anon_sym_SEMI] = ACTIONS(730), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_RPAREN] = ACTIONS(762), [aux_sym_identifier_token1] = ACTIONS(704), @@ -35066,56 +35564,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(121), }, - [83] = { - [sym__terminator] = STATE(122), - [sym__expression] = STATE(1782), - [sym_block] = STATE(1782), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(1782), - [sym_nil] = STATE(1782), - [sym__atom] = STATE(1782), - [sym_quoted_atom] = STATE(1782), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1782), - [sym_charlist] = STATE(1782), - [sym_sigil] = STATE(1782), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1782), - [sym_tuple] = STATE(1782), - [sym_bitstring] = STATE(1782), - [sym_map] = STATE(1782), - [sym_unary_operator] = STATE(1782), - [sym_binary_operator] = STATE(1782), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1782), - [sym_call] = STATE(1782), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1782), - [sym_stab_clause] = STATE(4380), - [sym__stab_clause_left] = STATE(5021), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1782), + [82] = { + [sym__terminator] = STATE(121), + [sym__expression] = STATE(1749), + [sym_block] = STATE(1749), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(1749), + [sym_nil] = STATE(1749), + [sym__atom] = STATE(1749), + [sym_quoted_atom] = STATE(1749), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1749), + [sym_charlist] = STATE(1749), + [sym_sigil] = STATE(1749), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1749), + [sym_tuple] = STATE(1749), + [sym_bitstring] = STATE(1749), + [sym_map] = STATE(1749), + [sym_unary_operator] = STATE(1749), + [sym_binary_operator] = STATE(1749), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1749), + [sym_call] = STATE(1749), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1749), + [sym_stab_clause] = STATE(4970), + [sym__stab_clause_left] = STATE(5624), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1749), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(698), [anon_sym_SEMI] = ACTIONS(766), @@ -35206,61 +35704,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(121), }, - [84] = { - [sym__terminator] = STATE(114), - [sym__expression] = STATE(1775), - [sym_block] = STATE(1775), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(1775), - [sym_nil] = STATE(1775), - [sym__atom] = STATE(1775), - [sym_quoted_atom] = STATE(1775), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1775), - [sym_charlist] = STATE(1775), - [sym_sigil] = STATE(1775), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1775), - [sym_tuple] = STATE(1775), - [sym_bitstring] = STATE(1775), - [sym_map] = STATE(1775), - [sym_unary_operator] = STATE(1775), - [sym_binary_operator] = STATE(1775), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1775), - [sym_call] = STATE(1775), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1775), - [sym_stab_clause] = STATE(4419), - [sym__stab_clause_left] = STATE(5021), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1775), + [83] = { + [sym__terminator] = STATE(122), + [sym__expression] = STATE(1732), + [sym_block] = STATE(1732), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(1732), + [sym_nil] = STATE(1732), + [sym__atom] = STATE(1732), + [sym_quoted_atom] = STATE(1732), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1732), + [sym_charlist] = STATE(1732), + [sym_sigil] = STATE(1732), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1732), + [sym_tuple] = STATE(1732), + [sym_bitstring] = STATE(1732), + [sym_map] = STATE(1732), + [sym_unary_operator] = STATE(1732), + [sym_binary_operator] = STATE(1732), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1732), + [sym_call] = STATE(1732), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1732), + [sym_stab_clause] = STATE(5021), + [sym__stab_clause_left] = STATE(5624), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1732), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(772), + [anon_sym_SEMI] = ACTIONS(754), [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_RPAREN] = ACTIONS(774), + [anon_sym_RPAREN] = ACTIONS(756), [aux_sym_identifier_token1] = ACTIONS(704), [anon_sym_DOT_DOT_DOT] = ACTIONS(704), [sym_unused_identifier] = ACTIONS(706), @@ -35269,14 +35767,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ENV__] = ACTIONS(708), [anon_sym___CALLER__] = ACTIONS(708), [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(776), - [sym_integer] = ACTIONS(776), - [sym_float] = ACTIONS(776), - [sym_char] = ACTIONS(776), + [sym_alias] = ACTIONS(772), + [sym_integer] = ACTIONS(772), + [sym_float] = ACTIONS(772), + [sym_char] = ACTIONS(772), [anon_sym_true] = ACTIONS(75), [anon_sym_false] = ACTIONS(75), [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(776), + [sym_atom] = ACTIONS(772), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), @@ -35346,61 +35844,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(121), }, - [85] = { - [sym__terminator] = STATE(123), - [sym__expression] = STATE(1777), - [sym_block] = STATE(1777), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(1777), - [sym_nil] = STATE(1777), - [sym__atom] = STATE(1777), - [sym_quoted_atom] = STATE(1777), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1777), - [sym_charlist] = STATE(1777), - [sym_sigil] = STATE(1777), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1777), - [sym_tuple] = STATE(1777), - [sym_bitstring] = STATE(1777), - [sym_map] = STATE(1777), - [sym_unary_operator] = STATE(1777), - [sym_binary_operator] = STATE(1777), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1777), - [sym_call] = STATE(1777), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1777), - [sym_stab_clause] = STATE(4314), - [sym__stab_clause_left] = STATE(5021), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1777), + [84] = { + [sym__terminator] = STATE(116), + [sym__expression] = STATE(1752), + [sym_block] = STATE(1752), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(1752), + [sym_nil] = STATE(1752), + [sym__atom] = STATE(1752), + [sym_quoted_atom] = STATE(1752), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1752), + [sym_charlist] = STATE(1752), + [sym_sigil] = STATE(1752), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1752), + [sym_tuple] = STATE(1752), + [sym_bitstring] = STATE(1752), + [sym_map] = STATE(1752), + [sym_unary_operator] = STATE(1752), + [sym_binary_operator] = STATE(1752), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1752), + [sym_call] = STATE(1752), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1752), + [sym_stab_clause] = STATE(4989), + [sym__stab_clause_left] = STATE(5624), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1752), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(700), + [anon_sym_SEMI] = ACTIONS(774), [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_RPAREN] = ACTIONS(702), + [anon_sym_RPAREN] = ACTIONS(776), [aux_sym_identifier_token1] = ACTIONS(704), [anon_sym_DOT_DOT_DOT] = ACTIONS(704), [sym_unused_identifier] = ACTIONS(706), @@ -35486,59 +35984,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(121), }, - [86] = { - [sym__terminator] = STATE(113), - [sym__expression] = STATE(1661), - [sym_block] = STATE(1661), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(1661), - [sym_nil] = STATE(1661), - [sym__atom] = STATE(1661), - [sym_quoted_atom] = STATE(1661), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1661), - [sym_charlist] = STATE(1661), - [sym_sigil] = STATE(1661), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1661), - [sym_tuple] = STATE(1661), - [sym_bitstring] = STATE(1661), - [sym_map] = STATE(1661), - [sym_unary_operator] = STATE(1661), - [sym_binary_operator] = STATE(1661), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1661), - [sym_call] = STATE(1661), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1661), - [sym_stab_clause] = STATE(4302), - [sym__stab_clause_left] = STATE(5021), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1661), + [85] = { + [sym__terminator] = STATE(121), + [sym__expression] = STATE(1744), + [sym_block] = STATE(1744), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(1744), + [sym_nil] = STATE(1744), + [sym__atom] = STATE(1744), + [sym_quoted_atom] = STATE(1744), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1744), + [sym_charlist] = STATE(1744), + [sym_sigil] = STATE(1744), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1744), + [sym_tuple] = STATE(1744), + [sym_bitstring] = STATE(1744), + [sym_map] = STATE(1744), + [sym_unary_operator] = STATE(1744), + [sym_binary_operator] = STATE(1744), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1744), + [sym_call] = STATE(1744), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1744), + [sym_stab_clause] = STATE(4970), + [sym__stab_clause_left] = STATE(5624), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1744), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(780), + [anon_sym_SEMI] = ACTIONS(766), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_RPAREN] = ACTIONS(768), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(780), + [sym_integer] = ACTIONS(780), + [sym_float] = ACTIONS(780), + [sym_char] = ACTIONS(780), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(780), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [86] = { + [sym__terminator] = STATE(113), + [sym__expression] = STATE(1961), + [sym_block] = STATE(1961), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(1961), + [sym_nil] = STATE(1961), + [sym__atom] = STATE(1961), + [sym_quoted_atom] = STATE(1961), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1961), + [sym_charlist] = STATE(1961), + [sym_sigil] = STATE(1961), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1961), + [sym_tuple] = STATE(1961), + [sym_bitstring] = STATE(1961), + [sym_map] = STATE(1961), + [sym_unary_operator] = STATE(1961), + [sym_binary_operator] = STATE(1961), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1961), + [sym_call] = STATE(1961), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1961), + [sym_stab_clause] = STATE(5035), + [sym__stab_clause_left] = STATE(5624), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1961), + [aux_sym__terminator_repeat1] = STATE(1026), + [aux_sym__terminator_token1] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(724), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_RPAREN] = ACTIONS(782), [aux_sym_identifier_token1] = ACTIONS(704), @@ -35627,60 +36265,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [87] = { - [sym__terminator] = STATE(124), - [sym__expression] = STATE(1820), - [sym_block] = STATE(1820), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(1820), - [sym_nil] = STATE(1820), - [sym__atom] = STATE(1820), - [sym_quoted_atom] = STATE(1820), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1820), - [sym_charlist] = STATE(1820), - [sym_sigil] = STATE(1820), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1820), - [sym_tuple] = STATE(1820), - [sym_bitstring] = STATE(1820), - [sym_map] = STATE(1820), - [sym_unary_operator] = STATE(1820), - [sym_binary_operator] = STATE(1820), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1820), - [sym_call] = STATE(1820), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1820), - [sym_stab_clause] = STATE(4304), - [sym__stab_clause_left] = STATE(5021), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1820), + [sym__terminator] = STATE(120), + [sym__expression] = STATE(1750), + [sym_block] = STATE(1750), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(1750), + [sym_nil] = STATE(1750), + [sym__atom] = STATE(1750), + [sym_quoted_atom] = STATE(1750), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1750), + [sym_charlist] = STATE(1750), + [sym_sigil] = STATE(1750), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1750), + [sym_tuple] = STATE(1750), + [sym_bitstring] = STATE(1750), + [sym_map] = STATE(1750), + [sym_unary_operator] = STATE(1750), + [sym_binary_operator] = STATE(1750), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1750), + [sym_call] = STATE(1750), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1750), + [sym_stab_clause] = STATE(5024), + [sym__stab_clause_left] = STATE(5624), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1750), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(736), + [anon_sym_SEMI] = ACTIONS(786), [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_RPAREN] = ACTIONS(738), + [anon_sym_RPAREN] = ACTIONS(788), [aux_sym_identifier_token1] = ACTIONS(704), [anon_sym_DOT_DOT_DOT] = ACTIONS(704), [sym_unused_identifier] = ACTIONS(706), @@ -35689,14 +36327,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ENV__] = ACTIONS(708), [anon_sym___CALLER__] = ACTIONS(708), [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(786), - [sym_integer] = ACTIONS(786), - [sym_float] = ACTIONS(786), - [sym_char] = ACTIONS(786), + [sym_alias] = ACTIONS(790), + [sym_integer] = ACTIONS(790), + [sym_float] = ACTIONS(790), + [sym_char] = ACTIONS(790), [anon_sym_true] = ACTIONS(75), [anon_sym_false] = ACTIONS(75), [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(786), + [sym_atom] = ACTIONS(790), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), @@ -35768,57 +36406,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [88] = { [sym__terminator] = STATE(113), - [sym__expression] = STATE(1741), - [sym_block] = STATE(1741), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(1741), - [sym_nil] = STATE(1741), - [sym__atom] = STATE(1741), - [sym_quoted_atom] = STATE(1741), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1741), - [sym_charlist] = STATE(1741), - [sym_sigil] = STATE(1741), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1741), - [sym_tuple] = STATE(1741), - [sym_bitstring] = STATE(1741), - [sym_map] = STATE(1741), - [sym_unary_operator] = STATE(1741), - [sym_binary_operator] = STATE(1741), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1741), - [sym_call] = STATE(1741), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1741), - [sym_stab_clause] = STATE(4302), - [sym__stab_clause_left] = STATE(5021), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1741), + [sym__expression] = STATE(1946), + [sym_block] = STATE(1946), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(1946), + [sym_nil] = STATE(1946), + [sym__atom] = STATE(1946), + [sym_quoted_atom] = STATE(1946), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1946), + [sym_charlist] = STATE(1946), + [sym_sigil] = STATE(1946), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1946), + [sym_tuple] = STATE(1946), + [sym_bitstring] = STATE(1946), + [sym_map] = STATE(1946), + [sym_unary_operator] = STATE(1946), + [sym_binary_operator] = STATE(1946), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1946), + [sym_call] = STATE(1946), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1946), + [sym_stab_clause] = STATE(5035), + [sym__stab_clause_left] = STATE(5624), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1946), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(780), + [anon_sym_SEMI] = ACTIONS(724), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_RPAREN] = ACTIONS(782), [aux_sym_identifier_token1] = ACTIONS(704), @@ -35829,14 +36467,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ENV__] = ACTIONS(708), [anon_sym___CALLER__] = ACTIONS(708), [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(788), - [sym_integer] = ACTIONS(788), - [sym_float] = ACTIONS(788), - [sym_char] = ACTIONS(788), + [sym_alias] = ACTIONS(792), + [sym_integer] = ACTIONS(792), + [sym_float] = ACTIONS(792), + [sym_char] = ACTIONS(792), [anon_sym_true] = ACTIONS(75), [anon_sym_false] = ACTIONS(75), [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(788), + [sym_atom] = ACTIONS(792), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), @@ -35908,59 +36546,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [89] = { [sym__terminator] = STATE(120), - [sym__expression] = STATE(1762), - [sym_block] = STATE(1762), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(1762), - [sym_nil] = STATE(1762), - [sym__atom] = STATE(1762), - [sym_quoted_atom] = STATE(1762), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1762), - [sym_charlist] = STATE(1762), - [sym_sigil] = STATE(1762), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1762), - [sym_tuple] = STATE(1762), - [sym_bitstring] = STATE(1762), - [sym_map] = STATE(1762), - [sym_unary_operator] = STATE(1762), - [sym_binary_operator] = STATE(1762), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1762), - [sym_call] = STATE(1762), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1762), - [sym_stab_clause] = STATE(4300), - [sym__stab_clause_left] = STATE(5021), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1762), + [sym__expression] = STATE(1952), + [sym_block] = STATE(1952), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(1952), + [sym_nil] = STATE(1952), + [sym__atom] = STATE(1952), + [sym_quoted_atom] = STATE(1952), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1952), + [sym_charlist] = STATE(1952), + [sym_sigil] = STATE(1952), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1952), + [sym_tuple] = STATE(1952), + [sym_bitstring] = STATE(1952), + [sym_map] = STATE(1952), + [sym_unary_operator] = STATE(1952), + [sym_binary_operator] = STATE(1952), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1952), + [sym_call] = STATE(1952), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1952), + [sym_stab_clause] = STATE(5024), + [sym__stab_clause_left] = STATE(5624), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1952), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(790), + [anon_sym_SEMI] = ACTIONS(786), [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_RPAREN] = ACTIONS(792), + [anon_sym_RPAREN] = ACTIONS(788), [aux_sym_identifier_token1] = ACTIONS(704), [anon_sym_DOT_DOT_DOT] = ACTIONS(704), [sym_unused_identifier] = ACTIONS(706), @@ -36047,60 +36685,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [90] = { - [sym__terminator] = STATE(114), - [sym__expression] = STATE(1769), - [sym_block] = STATE(1769), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(1769), - [sym_nil] = STATE(1769), - [sym__atom] = STATE(1769), - [sym_quoted_atom] = STATE(1769), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1769), - [sym_charlist] = STATE(1769), - [sym_sigil] = STATE(1769), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1769), - [sym_tuple] = STATE(1769), - [sym_bitstring] = STATE(1769), - [sym_map] = STATE(1769), - [sym_unary_operator] = STATE(1769), - [sym_binary_operator] = STATE(1769), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1769), - [sym_call] = STATE(1769), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1769), - [sym_stab_clause] = STATE(4419), - [sym__stab_clause_left] = STATE(5021), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1769), + [sym__terminator] = STATE(119), + [sym__expression] = STATE(1738), + [sym_block] = STATE(1738), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(1738), + [sym_nil] = STATE(1738), + [sym__atom] = STATE(1738), + [sym_quoted_atom] = STATE(1738), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1738), + [sym_charlist] = STATE(1738), + [sym_sigil] = STATE(1738), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1738), + [sym_tuple] = STATE(1738), + [sym_bitstring] = STATE(1738), + [sym_map] = STATE(1738), + [sym_unary_operator] = STATE(1738), + [sym_binary_operator] = STATE(1738), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1738), + [sym_call] = STATE(1738), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1738), + [sym_stab_clause] = STATE(4928), + [sym__stab_clause_left] = STATE(5624), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1738), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(772), + [anon_sym_SEMI] = ACTIONS(700), [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_RPAREN] = ACTIONS(774), + [anon_sym_RPAREN] = ACTIONS(702), [aux_sym_identifier_token1] = ACTIONS(704), [anon_sym_DOT_DOT_DOT] = ACTIONS(704), [sym_unused_identifier] = ACTIONS(706), @@ -36187,60 +36825,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [91] = { - [sym__terminator] = STATE(120), - [sym__expression] = STATE(1824), - [sym_block] = STATE(1824), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(1824), - [sym_nil] = STATE(1824), - [sym__atom] = STATE(1824), - [sym_quoted_atom] = STATE(1824), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1824), - [sym_charlist] = STATE(1824), - [sym_sigil] = STATE(1824), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1824), - [sym_tuple] = STATE(1824), - [sym_bitstring] = STATE(1824), - [sym_map] = STATE(1824), - [sym_unary_operator] = STATE(1824), - [sym_binary_operator] = STATE(1824), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1824), - [sym_call] = STATE(1824), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1824), - [sym_stab_clause] = STATE(4300), - [sym__stab_clause_left] = STATE(5021), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1824), + [sym__terminator] = STATE(123), + [sym__expression] = STATE(1729), + [sym_block] = STATE(1729), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(1729), + [sym_nil] = STATE(1729), + [sym__atom] = STATE(1729), + [sym_quoted_atom] = STATE(1729), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1729), + [sym_charlist] = STATE(1729), + [sym_sigil] = STATE(1729), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1729), + [sym_tuple] = STATE(1729), + [sym_bitstring] = STATE(1729), + [sym_map] = STATE(1729), + [sym_unary_operator] = STATE(1729), + [sym_binary_operator] = STATE(1729), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1729), + [sym_call] = STATE(1729), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1729), + [sym_stab_clause] = STATE(5028), + [sym__stab_clause_left] = STATE(5624), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1729), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(790), + [anon_sym_SEMI] = ACTIONS(736), [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_RPAREN] = ACTIONS(792), + [anon_sym_RPAREN] = ACTIONS(738), [aux_sym_identifier_token1] = ACTIONS(704), [anon_sym_DOT_DOT_DOT] = ACTIONS(704), [sym_unused_identifier] = ACTIONS(706), @@ -36328,59 +36966,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [92] = { [sym__terminator] = STATE(117), - [sym__expression] = STATE(1604), - [sym_block] = STATE(1604), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(1604), - [sym_nil] = STATE(1604), - [sym__atom] = STATE(1604), - [sym_quoted_atom] = STATE(1604), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1604), - [sym_charlist] = STATE(1604), - [sym_sigil] = STATE(1604), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1604), - [sym_tuple] = STATE(1604), - [sym_bitstring] = STATE(1604), - [sym_map] = STATE(1604), - [sym_unary_operator] = STATE(1604), - [sym_binary_operator] = STATE(1604), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1604), - [sym_call] = STATE(1604), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1604), - [sym_stab_clause] = STATE(4358), - [sym__stab_clause_left] = STATE(5021), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1604), + [sym__expression] = STATE(1733), + [sym_block] = STATE(1733), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(1733), + [sym_nil] = STATE(1733), + [sym__atom] = STATE(1733), + [sym_quoted_atom] = STATE(1733), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1733), + [sym_charlist] = STATE(1733), + [sym_sigil] = STATE(1733), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1733), + [sym_tuple] = STATE(1733), + [sym_bitstring] = STATE(1733), + [sym_map] = STATE(1733), + [sym_unary_operator] = STATE(1733), + [sym_binary_operator] = STATE(1733), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1733), + [sym_call] = STATE(1733), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1733), + [sym_stab_clause] = STATE(4922), + [sym__stab_clause_left] = STATE(5624), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1733), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(800), + [anon_sym_SEMI] = ACTIONS(742), [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_RPAREN] = ACTIONS(802), + [anon_sym_RPAREN] = ACTIONS(744), [aux_sym_identifier_token1] = ACTIONS(704), [anon_sym_DOT_DOT_DOT] = ACTIONS(704), [sym_unused_identifier] = ACTIONS(706), @@ -36389,14 +37027,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ENV__] = ACTIONS(708), [anon_sym___CALLER__] = ACTIONS(708), [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(804), - [sym_integer] = ACTIONS(804), - [sym_float] = ACTIONS(804), - [sym_char] = ACTIONS(804), + [sym_alias] = ACTIONS(800), + [sym_integer] = ACTIONS(800), + [sym_float] = ACTIONS(800), + [sym_char] = ACTIONS(800), [anon_sym_true] = ACTIONS(75), [anon_sym_false] = ACTIONS(75), [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(804), + [sym_atom] = ACTIONS(800), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), @@ -36467,60 +37105,200 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [93] = { + [sym__expression] = STATE(2716), + [sym_block] = STATE(2716), + [sym__identifier] = STATE(70), + [sym_identifier] = STATE(70), + [sym_special_identifier] = STATE(70), + [sym_boolean] = STATE(2716), + [sym_nil] = STATE(2716), + [sym__atom] = STATE(2716), + [sym_quoted_atom] = STATE(2716), + [sym__quoted_i_double] = STATE(1777), + [sym__quoted_i_single] = STATE(1778), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(2716), + [sym_charlist] = STATE(2716), + [sym_sigil] = STATE(2716), + [sym_keywords] = STATE(2106), + [sym_pair] = STATE(2680), + [sym__keyword] = STATE(642), + [sym_quoted_keyword] = STATE(642), + [sym_list] = STATE(2716), + [sym_tuple] = STATE(2716), + [sym_bitstring] = STATE(2716), + [sym_map] = STATE(2716), + [sym_unary_operator] = STATE(2716), + [sym_binary_operator] = STATE(2716), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(2716), + [sym_call] = STATE(2716), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym__call_arguments_with_parentheses_immediate] = STATE(1546), + [sym__call_arguments_without_parentheses] = STATE(1870), + [sym_do_block] = STATE(3167), + [sym_access_call] = STATE(2716), + [sym_anonymous_function] = STATE(2716), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(672), + [sym_integer] = ACTIONS(672), + [sym_float] = ACTIONS(672), + [sym_char] = ACTIONS(672), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(672), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_COMMA] = ACTIONS(247), + [sym_keyword] = ACTIONS(674), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(678), + [anon_sym_CARET] = ACTIONS(678), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(678), + [anon_sym_not] = ACTIONS(678), + [anon_sym_AT] = ACTIONS(680), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_BSLASH_BSLASH] = ACTIONS(271), + [anon_sym_when] = ACTIONS(271), + [anon_sym_COLON_COLON] = ACTIONS(271), + [anon_sym_EQ_GT] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_PIPE_PIPE] = ACTIONS(271), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(271), + [anon_sym_AMP_AMP_AMP] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_EQ_TILDE] = ACTIONS(271), + [anon_sym_EQ_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ_EQ] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_PIPE_GT] = ACTIONS(271), + [anon_sym_LT_LT_LT] = ACTIONS(271), + [anon_sym_GT_GT_GT] = ACTIONS(271), + [anon_sym_LT_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT_GT] = ACTIONS(271), + [anon_sym_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_PIPE_GT] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_CARET_CARET_CARET] = ACTIONS(247), + [anon_sym_SLASH_SLASH] = ACTIONS(247), + [anon_sym_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH] = ACTIONS(271), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH_DASH] = ACTIONS(271), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_do] = ACTIONS(414), + [anon_sym_fn] = ACTIONS(406), + [anon_sym_LPAREN2] = ACTIONS(408), + [anon_sym_LBRACK2] = ACTIONS(245), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(682), + [sym__not_in] = ACTIONS(297), + [sym__quoted_atom_start] = ACTIONS(412), + }, + [94] = { [sym__terminator] = STATE(118), - [sym__expression] = STATE(1660), - [sym_block] = STATE(1660), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(1660), - [sym_nil] = STATE(1660), - [sym__atom] = STATE(1660), - [sym_quoted_atom] = STATE(1660), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1660), - [sym_charlist] = STATE(1660), - [sym_sigil] = STATE(1660), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1660), - [sym_tuple] = STATE(1660), - [sym_bitstring] = STATE(1660), - [sym_map] = STATE(1660), - [sym_unary_operator] = STATE(1660), - [sym_binary_operator] = STATE(1660), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1660), - [sym_call] = STATE(1660), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1660), - [sym_stab_clause] = STATE(4340), - [sym__stab_clause_left] = STATE(5021), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1660), + [sym__expression] = STATE(1966), + [sym_block] = STATE(1966), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(1966), + [sym_nil] = STATE(1966), + [sym__atom] = STATE(1966), + [sym_quoted_atom] = STATE(1966), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1966), + [sym_charlist] = STATE(1966), + [sym_sigil] = STATE(1966), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1966), + [sym_tuple] = STATE(1966), + [sym_bitstring] = STATE(1966), + [sym_map] = STATE(1966), + [sym_unary_operator] = STATE(1966), + [sym_binary_operator] = STATE(1966), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1966), + [sym_call] = STATE(1966), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1966), + [sym_stab_clause] = STATE(4968), + [sym__stab_clause_left] = STATE(5624), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1966), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(806), + [anon_sym_SEMI] = ACTIONS(802), [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_RPAREN] = ACTIONS(808), + [anon_sym_RPAREN] = ACTIONS(804), [aux_sym_identifier_token1] = ACTIONS(704), [anon_sym_DOT_DOT_DOT] = ACTIONS(704), [sym_unused_identifier] = ACTIONS(706), @@ -36529,14 +37307,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ENV__] = ACTIONS(708), [anon_sym___CALLER__] = ACTIONS(708), [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(810), - [sym_integer] = ACTIONS(810), - [sym_float] = ACTIONS(810), - [sym_char] = ACTIONS(810), + [sym_alias] = ACTIONS(806), + [sym_integer] = ACTIONS(806), + [sym_float] = ACTIONS(806), + [sym_char] = ACTIONS(806), [anon_sym_true] = ACTIONS(75), [anon_sym_false] = ACTIONS(75), [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(810), + [sym_atom] = ACTIONS(806), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), @@ -36606,61 +37384,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(121), }, - [94] = { - [sym__terminator] = STATE(118), - [sym__expression] = STATE(1636), - [sym_block] = STATE(1636), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(1636), - [sym_nil] = STATE(1636), - [sym__atom] = STATE(1636), - [sym_quoted_atom] = STATE(1636), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1636), - [sym_charlist] = STATE(1636), - [sym_sigil] = STATE(1636), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1636), - [sym_tuple] = STATE(1636), - [sym_bitstring] = STATE(1636), - [sym_map] = STATE(1636), - [sym_unary_operator] = STATE(1636), - [sym_binary_operator] = STATE(1636), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1636), - [sym_call] = STATE(1636), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1636), - [sym_stab_clause] = STATE(4340), - [sym__stab_clause_left] = STATE(5021), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1636), + [95] = { + [sym__terminator] = STATE(114), + [sym__expression] = STATE(1741), + [sym_block] = STATE(1741), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(1741), + [sym_nil] = STATE(1741), + [sym__atom] = STATE(1741), + [sym_quoted_atom] = STATE(1741), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1741), + [sym_charlist] = STATE(1741), + [sym_sigil] = STATE(1741), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1741), + [sym_tuple] = STATE(1741), + [sym_bitstring] = STATE(1741), + [sym_map] = STATE(1741), + [sym_unary_operator] = STATE(1741), + [sym_binary_operator] = STATE(1741), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1741), + [sym_call] = STATE(1741), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1741), + [sym_stab_clause] = STATE(4948), + [sym__stab_clause_left] = STATE(5624), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1741), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(806), + [anon_sym_SEMI] = ACTIONS(808), [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_RPAREN] = ACTIONS(808), + [anon_sym_RPAREN] = ACTIONS(810), [aux_sym_identifier_token1] = ACTIONS(704), [anon_sym_DOT_DOT_DOT] = ACTIONS(704), [sym_unused_identifier] = ACTIONS(706), @@ -36746,201 +37524,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(121), }, - [95] = { - [sym__expression] = STATE(2369), - [sym_block] = STATE(2369), - [sym__identifier] = STATE(68), - [sym_identifier] = STATE(68), - [sym_special_identifier] = STATE(68), - [sym_boolean] = STATE(2369), - [sym_nil] = STATE(2369), - [sym__atom] = STATE(2369), - [sym_quoted_atom] = STATE(2369), - [sym__quoted_i_double] = STATE(1678), - [sym__quoted_i_single] = STATE(1677), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(2369), - [sym_charlist] = STATE(2369), - [sym_sigil] = STATE(2369), - [sym_keywords] = STATE(1934), - [sym_pair] = STATE(2722), - [sym__keyword] = STATE(660), - [sym_quoted_keyword] = STATE(660), - [sym_list] = STATE(2369), - [sym_tuple] = STATE(2369), - [sym_bitstring] = STATE(2369), - [sym_map] = STATE(2369), - [sym_unary_operator] = STATE(2369), - [sym_binary_operator] = STATE(2369), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(2369), - [sym_call] = STATE(2369), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym__call_arguments_with_parentheses_immediate] = STATE(1498), - [sym__call_arguments_without_parentheses] = STATE(1735), - [sym_do_block] = STATE(2561), - [sym_access_call] = STATE(2369), - [sym_anonymous_function] = STATE(2369), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(662), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(664), - [sym_integer] = ACTIONS(664), - [sym_float] = ACTIONS(664), - [sym_char] = ACTIONS(664), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), - [sym_atom] = ACTIONS(664), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(219), - [anon_sym_GT] = ACTIONS(219), - [anon_sym_PIPE] = ACTIONS(219), - [anon_sym_SLASH] = ACTIONS(219), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_COMMA] = ACTIONS(191), - [sym_keyword] = ACTIONS(666), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_DASH] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(670), - [anon_sym_CARET] = ACTIONS(670), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(670), - [anon_sym_not] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(672), - [anon_sym_LT_DASH] = ACTIONS(219), - [anon_sym_BSLASH_BSLASH] = ACTIONS(219), - [anon_sym_when] = ACTIONS(219), - [anon_sym_COLON_COLON] = ACTIONS(219), - [anon_sym_EQ_GT] = ACTIONS(191), - [anon_sym_EQ] = ACTIONS(219), - [anon_sym_PIPE_PIPE] = ACTIONS(219), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(219), - [anon_sym_or] = ACTIONS(219), - [anon_sym_AMP_AMP] = ACTIONS(219), - [anon_sym_AMP_AMP_AMP] = ACTIONS(219), - [anon_sym_and] = ACTIONS(219), - [anon_sym_EQ_EQ] = ACTIONS(219), - [anon_sym_BANG_EQ] = ACTIONS(219), - [anon_sym_EQ_TILDE] = ACTIONS(219), - [anon_sym_EQ_EQ_EQ] = ACTIONS(219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(219), - [anon_sym_LT_EQ] = ACTIONS(219), - [anon_sym_GT_EQ] = ACTIONS(219), - [anon_sym_PIPE_GT] = ACTIONS(219), - [anon_sym_LT_LT_LT] = ACTIONS(219), - [anon_sym_GT_GT_GT] = ACTIONS(219), - [anon_sym_LT_LT_TILDE] = ACTIONS(219), - [anon_sym_TILDE_GT_GT] = ACTIONS(219), - [anon_sym_LT_TILDE] = ACTIONS(219), - [anon_sym_TILDE_GT] = ACTIONS(219), - [anon_sym_LT_TILDE_GT] = ACTIONS(219), - [anon_sym_LT_PIPE_GT] = ACTIONS(219), - [anon_sym_in] = ACTIONS(219), - [anon_sym_CARET_CARET_CARET] = ACTIONS(191), - [anon_sym_SLASH_SLASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(219), - [anon_sym_DASH_DASH] = ACTIONS(219), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(219), - [anon_sym_DASH_DASH_DASH] = ACTIONS(219), - [anon_sym_DOT_DOT] = ACTIONS(219), - [anon_sym_LT_GT] = ACTIONS(219), - [anon_sym_STAR] = ACTIONS(219), - [anon_sym_STAR_STAR] = ACTIONS(219), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(219), - [anon_sym_do] = ACTIONS(432), - [anon_sym_fn] = ACTIONS(400), - [anon_sym_LPAREN2] = ACTIONS(402), - [anon_sym_LBRACK2] = ACTIONS(189), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(674), - [sym__not_in] = ACTIONS(245), - [sym__quoted_atom_start] = ACTIONS(406), - }, [96] = { - [sym__terminator] = STATE(117), - [sym__expression] = STATE(1729), - [sym_block] = STATE(1729), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(1729), - [sym_nil] = STATE(1729), - [sym__atom] = STATE(1729), - [sym_quoted_atom] = STATE(1729), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1729), - [sym_charlist] = STATE(1729), - [sym_sigil] = STATE(1729), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1729), - [sym_tuple] = STATE(1729), - [sym_bitstring] = STATE(1729), - [sym_map] = STATE(1729), - [sym_unary_operator] = STATE(1729), - [sym_binary_operator] = STATE(1729), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1729), - [sym_call] = STATE(1729), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1729), - [sym_stab_clause] = STATE(4358), - [sym__stab_clause_left] = STATE(5021), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1729), + [sym__terminator] = STATE(116), + [sym__expression] = STATE(1745), + [sym_block] = STATE(1745), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(1745), + [sym_nil] = STATE(1745), + [sym__atom] = STATE(1745), + [sym_quoted_atom] = STATE(1745), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1745), + [sym_charlist] = STATE(1745), + [sym_sigil] = STATE(1745), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1745), + [sym_tuple] = STATE(1745), + [sym_bitstring] = STATE(1745), + [sym_map] = STATE(1745), + [sym_unary_operator] = STATE(1745), + [sym_binary_operator] = STATE(1745), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1745), + [sym_call] = STATE(1745), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1745), + [sym_stab_clause] = STATE(4989), + [sym__stab_clause_left] = STATE(5624), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1745), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(800), + [anon_sym_SEMI] = ACTIONS(774), [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_RPAREN] = ACTIONS(802), + [anon_sym_RPAREN] = ACTIONS(776), [aux_sym_identifier_token1] = ACTIONS(704), [anon_sym_DOT_DOT_DOT] = ACTIONS(704), [sym_unused_identifier] = ACTIONS(706), @@ -37027,60 +37665,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [97] = { - [sym__terminator] = STATE(122), - [sym__expression] = STATE(1821), - [sym_block] = STATE(1821), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(1821), - [sym_nil] = STATE(1821), - [sym__atom] = STATE(1821), - [sym_quoted_atom] = STATE(1821), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1821), - [sym_charlist] = STATE(1821), - [sym_sigil] = STATE(1821), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1821), - [sym_tuple] = STATE(1821), - [sym_bitstring] = STATE(1821), - [sym_map] = STATE(1821), - [sym_unary_operator] = STATE(1821), - [sym_binary_operator] = STATE(1821), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1821), - [sym_call] = STATE(1821), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1821), - [sym_stab_clause] = STATE(4380), - [sym__stab_clause_left] = STATE(5021), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1821), + [sym__terminator] = STATE(115), + [sym__expression] = STATE(1878), + [sym_block] = STATE(1878), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(1878), + [sym_nil] = STATE(1878), + [sym__atom] = STATE(1878), + [sym_quoted_atom] = STATE(1878), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1878), + [sym_charlist] = STATE(1878), + [sym_sigil] = STATE(1878), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1878), + [sym_tuple] = STATE(1878), + [sym_bitstring] = STATE(1878), + [sym_map] = STATE(1878), + [sym_unary_operator] = STATE(1878), + [sym_binary_operator] = STATE(1878), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1878), + [sym_call] = STATE(1878), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1878), + [sym_stab_clause] = STATE(4950), + [sym__stab_clause_left] = STATE(5624), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1878), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(766), + [anon_sym_SEMI] = ACTIONS(730), [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_RPAREN] = ACTIONS(768), + [anon_sym_RPAREN] = ACTIONS(732), [aux_sym_identifier_token1] = ACTIONS(704), [anon_sym_DOT_DOT_DOT] = ACTIONS(704), [sym_unused_identifier] = ACTIONS(706), @@ -37167,60 +37805,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [98] = { - [sym__terminator] = STATE(116), - [sym__expression] = STATE(1774), - [sym_block] = STATE(1774), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(1774), - [sym_nil] = STATE(1774), - [sym__atom] = STATE(1774), - [sym_quoted_atom] = STATE(1774), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1774), - [sym_charlist] = STATE(1774), - [sym_sigil] = STATE(1774), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1774), - [sym_tuple] = STATE(1774), - [sym_bitstring] = STATE(1774), - [sym_map] = STATE(1774), - [sym_unary_operator] = STATE(1774), - [sym_binary_operator] = STATE(1774), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1774), - [sym_call] = STATE(1774), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1774), - [sym_stab_clause] = STATE(4414), - [sym__stab_clause_left] = STATE(5021), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1774), + [sym__terminator] = STATE(114), + [sym__expression] = STATE(1739), + [sym_block] = STATE(1739), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(1739), + [sym_nil] = STATE(1739), + [sym__atom] = STATE(1739), + [sym_quoted_atom] = STATE(1739), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1739), + [sym_charlist] = STATE(1739), + [sym_sigil] = STATE(1739), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1739), + [sym_tuple] = STATE(1739), + [sym_bitstring] = STATE(1739), + [sym_map] = STATE(1739), + [sym_unary_operator] = STATE(1739), + [sym_binary_operator] = STATE(1739), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1739), + [sym_call] = STATE(1739), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1739), + [sym_stab_clause] = STATE(4948), + [sym__stab_clause_left] = STATE(5624), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1739), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(756), + [anon_sym_SEMI] = ACTIONS(808), [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_RPAREN] = ACTIONS(810), [aux_sym_identifier_token1] = ACTIONS(704), [anon_sym_DOT_DOT_DOT] = ACTIONS(704), [sym_unused_identifier] = ACTIONS(706), @@ -37307,60 +37945,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [99] = { - [sym__terminator] = STATE(119), - [sym__expression] = STATE(1760), - [sym_block] = STATE(1760), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(1760), - [sym_nil] = STATE(1760), - [sym__atom] = STATE(1760), - [sym_quoted_atom] = STATE(1760), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1760), - [sym_charlist] = STATE(1760), - [sym_sigil] = STATE(1760), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1760), - [sym_tuple] = STATE(1760), - [sym_bitstring] = STATE(1760), - [sym_map] = STATE(1760), - [sym_unary_operator] = STATE(1760), - [sym_binary_operator] = STATE(1760), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1760), - [sym_call] = STATE(1760), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1760), - [sym_stab_clause] = STATE(4377), - [sym__stab_clause_left] = STATE(5021), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1760), + [sym__terminator] = STATE(118), + [sym__expression] = STATE(1954), + [sym_block] = STATE(1954), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(1954), + [sym_nil] = STATE(1954), + [sym__atom] = STATE(1954), + [sym_quoted_atom] = STATE(1954), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1954), + [sym_charlist] = STATE(1954), + [sym_sigil] = STATE(1954), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1954), + [sym_tuple] = STATE(1954), + [sym_bitstring] = STATE(1954), + [sym_map] = STATE(1954), + [sym_unary_operator] = STATE(1954), + [sym_binary_operator] = STATE(1954), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1954), + [sym_call] = STATE(1954), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1954), + [sym_stab_clause] = STATE(4968), + [sym__stab_clause_left] = STATE(5624), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1954), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(730), + [anon_sym_SEMI] = ACTIONS(802), [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_RPAREN] = ACTIONS(752), + [anon_sym_RPAREN] = ACTIONS(804), [aux_sym_identifier_token1] = ACTIONS(704), [anon_sym_DOT_DOT_DOT] = ACTIONS(704), [sym_unused_identifier] = ACTIONS(706), @@ -37447,55 +38085,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [100] = { - [sym__terminator] = STATE(135), - [sym__expression] = STATE(3232), - [sym_block] = STATE(3232), + [sym__terminator] = STATE(127), + [sym__expression] = STATE(3852), + [sym_block] = STATE(3852), [sym__identifier] = STATE(64), [sym_identifier] = STATE(64), [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3232), - [sym_nil] = STATE(3232), - [sym__atom] = STATE(3232), - [sym_quoted_atom] = STATE(3232), - [sym__quoted_i_double] = STATE(3097), - [sym__quoted_i_single] = STATE(3101), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3232), - [sym_charlist] = STATE(3232), - [sym_sigil] = STATE(3232), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(3232), - [sym_tuple] = STATE(3232), - [sym_bitstring] = STATE(3232), - [sym_map] = STATE(3232), - [sym_unary_operator] = STATE(3232), - [sym_binary_operator] = STATE(3232), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3232), - [sym_call] = STATE(3232), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), + [sym_boolean] = STATE(3852), + [sym_nil] = STATE(3852), + [sym__atom] = STATE(3852), + [sym_quoted_atom] = STATE(3852), + [sym__quoted_i_double] = STATE(3376), + [sym__quoted_i_single] = STATE(3377), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3852), + [sym_charlist] = STATE(3852), + [sym_sigil] = STATE(3852), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(3852), + [sym_tuple] = STATE(3852), + [sym_bitstring] = STATE(3852), + [sym_map] = STATE(3852), + [sym_unary_operator] = STATE(3852), + [sym_binary_operator] = STATE(3852), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3852), + [sym_call] = STATE(3852), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3232), - [sym_stab_clause] = STATE(4327), - [sym__stab_clause_left] = STATE(5025), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(3232), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3852), + [sym_stab_clause] = STATE(4946), + [sym__stab_clause_left] = STATE(5613), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(3852), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(698), [anon_sym_SEMI] = ACTIONS(822), @@ -37586,55 +38224,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(868), }, [101] = { - [sym__terminator] = STATE(129), - [sym__expression] = STATE(3232), - [sym_block] = STATE(3232), + [sym__terminator] = STATE(131), + [sym__expression] = STATE(3852), + [sym_block] = STATE(3852), [sym__identifier] = STATE(64), [sym_identifier] = STATE(64), [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3232), - [sym_nil] = STATE(3232), - [sym__atom] = STATE(3232), - [sym_quoted_atom] = STATE(3232), - [sym__quoted_i_double] = STATE(3097), - [sym__quoted_i_single] = STATE(3101), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3232), - [sym_charlist] = STATE(3232), - [sym_sigil] = STATE(3232), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(3232), - [sym_tuple] = STATE(3232), - [sym_bitstring] = STATE(3232), - [sym_map] = STATE(3232), - [sym_unary_operator] = STATE(3232), - [sym_binary_operator] = STATE(3232), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3232), - [sym_call] = STATE(3232), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), + [sym_boolean] = STATE(3852), + [sym_nil] = STATE(3852), + [sym__atom] = STATE(3852), + [sym_quoted_atom] = STATE(3852), + [sym__quoted_i_double] = STATE(3376), + [sym__quoted_i_single] = STATE(3377), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3852), + [sym_charlist] = STATE(3852), + [sym_sigil] = STATE(3852), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(3852), + [sym_tuple] = STATE(3852), + [sym_bitstring] = STATE(3852), + [sym_map] = STATE(3852), + [sym_unary_operator] = STATE(3852), + [sym_binary_operator] = STATE(3852), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3852), + [sym_call] = STATE(3852), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3232), - [sym_stab_clause] = STATE(4325), - [sym__stab_clause_left] = STATE(5025), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(3232), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3852), + [sym_stab_clause] = STATE(4906), + [sym__stab_clause_left] = STATE(5613), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(3852), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(698), [anon_sym_SEMI] = ACTIONS(870), @@ -37725,55 +38363,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(868), }, [102] = { - [sym__terminator] = STATE(127), - [sym__expression] = STATE(3232), - [sym_block] = STATE(3232), + [sym__terminator] = STATE(137), + [sym__expression] = STATE(3852), + [sym_block] = STATE(3852), [sym__identifier] = STATE(64), [sym_identifier] = STATE(64), [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3232), - [sym_nil] = STATE(3232), - [sym__atom] = STATE(3232), - [sym_quoted_atom] = STATE(3232), - [sym__quoted_i_double] = STATE(3097), - [sym__quoted_i_single] = STATE(3101), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3232), - [sym_charlist] = STATE(3232), - [sym_sigil] = STATE(3232), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(3232), - [sym_tuple] = STATE(3232), - [sym_bitstring] = STATE(3232), - [sym_map] = STATE(3232), - [sym_unary_operator] = STATE(3232), - [sym_binary_operator] = STATE(3232), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3232), - [sym_call] = STATE(3232), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), + [sym_boolean] = STATE(3852), + [sym_nil] = STATE(3852), + [sym__atom] = STATE(3852), + [sym_quoted_atom] = STATE(3852), + [sym__quoted_i_double] = STATE(3376), + [sym__quoted_i_single] = STATE(3377), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3852), + [sym_charlist] = STATE(3852), + [sym_sigil] = STATE(3852), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(3852), + [sym_tuple] = STATE(3852), + [sym_bitstring] = STATE(3852), + [sym_map] = STATE(3852), + [sym_unary_operator] = STATE(3852), + [sym_binary_operator] = STATE(3852), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3852), + [sym_call] = STATE(3852), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3232), - [sym_stab_clause] = STATE(4311), - [sym__stab_clause_left] = STATE(5025), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(3232), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3852), + [sym_stab_clause] = STATE(4969), + [sym__stab_clause_left] = STATE(5613), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(3852), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(698), [anon_sym_SEMI] = ACTIONS(872), @@ -37864,194 +38502,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(868), }, [103] = { - [sym__terminator] = STATE(128), - [sym__expression] = STATE(3232), - [sym_block] = STATE(3232), - [sym__identifier] = STATE(64), - [sym_identifier] = STATE(64), - [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3232), - [sym_nil] = STATE(3232), - [sym__atom] = STATE(3232), - [sym_quoted_atom] = STATE(3232), - [sym__quoted_i_double] = STATE(3097), - [sym__quoted_i_single] = STATE(3101), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3232), - [sym_charlist] = STATE(3232), - [sym_sigil] = STATE(3232), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(3232), - [sym_tuple] = STATE(3232), - [sym_bitstring] = STATE(3232), - [sym_map] = STATE(3232), - [sym_unary_operator] = STATE(3232), - [sym_binary_operator] = STATE(3232), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3232), - [sym_call] = STATE(3232), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), - [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3232), - [sym_stab_clause] = STATE(4415), - [sym__stab_clause_left] = STATE(5025), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(3232), - [aux_sym__terminator_repeat1] = STATE(1026), - [aux_sym__terminator_token1] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(874), - [anon_sym_LPAREN] = ACTIONS(824), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(828), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(832), - [sym_integer] = ACTIONS(832), - [sym_float] = ACTIONS(832), - [sym_char] = ACTIONS(832), - [anon_sym_true] = ACTIONS(834), - [anon_sym_false] = ACTIONS(834), - [anon_sym_nil] = ACTIONS(836), - [sym_atom] = ACTIONS(832), - [anon_sym_DQUOTE] = ACTIONS(838), - [anon_sym_SQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(850), - [sym_keyword] = ACTIONS(93), - [anon_sym_LT_LT] = ACTIONS(852), - [anon_sym_PERCENT] = ACTIONS(854), - [anon_sym_AMP] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_BANG] = ACTIONS(858), - [anon_sym_CARET] = ACTIONS(858), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), - [anon_sym_not] = ACTIONS(858), - [anon_sym_AT] = ACTIONS(860), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), + [sym__expression] = STATE(2109), + [sym_block] = STATE(2109), + [sym__identifier] = STATE(35), + [sym_identifier] = STATE(35), + [sym_special_identifier] = STATE(35), + [sym_boolean] = STATE(2109), + [sym_nil] = STATE(2109), + [sym__atom] = STATE(2109), + [sym_quoted_atom] = STATE(2109), + [sym__quoted_i_double] = STATE(1777), + [sym__quoted_i_single] = STATE(1778), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(2109), + [sym_charlist] = STATE(2109), + [sym_sigil] = STATE(2109), + [sym_keywords] = STATE(2106), + [sym_pair] = STATE(2099), + [sym__keyword] = STATE(511), + [sym_quoted_keyword] = STATE(511), + [sym_list] = STATE(2109), + [sym_tuple] = STATE(2109), + [sym_bitstring] = STATE(2109), + [sym_map] = STATE(2109), + [sym_unary_operator] = STATE(2109), + [sym_binary_operator] = STATE(2109), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(2109), + [sym_call] = STATE(2109), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym__call_arguments_with_parentheses_immediate] = STATE(1546), + [sym__call_arguments_without_parentheses] = STATE(1870), + [sym_do_block] = STATE(3167), + [sym_access_call] = STATE(2109), + [sym_anonymous_function] = STATE(2109), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(367), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(371), + [sym_integer] = ACTIONS(371), + [sym_float] = ACTIONS(371), + [sym_char] = ACTIONS(371), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(389), + [sym_keyword] = ACTIONS(391), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_BANG] = ACTIONS(402), + [anon_sym_CARET] = ACTIONS(402), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(402), + [anon_sym_not] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(404), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_BSLASH_BSLASH] = ACTIONS(271), + [anon_sym_when] = ACTIONS(271), + [anon_sym_COLON_COLON] = ACTIONS(271), + [anon_sym_EQ_GT] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_PIPE_PIPE] = ACTIONS(271), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(271), + [anon_sym_AMP_AMP_AMP] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_EQ_TILDE] = ACTIONS(271), + [anon_sym_EQ_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ_EQ] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_PIPE_GT] = ACTIONS(271), + [anon_sym_LT_LT_LT] = ACTIONS(271), + [anon_sym_GT_GT_GT] = ACTIONS(271), + [anon_sym_LT_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT_GT] = ACTIONS(271), + [anon_sym_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_PIPE_GT] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_CARET_CARET_CARET] = ACTIONS(247), + [anon_sym_SLASH_SLASH] = ACTIONS(247), + [anon_sym_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH] = ACTIONS(271), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH_DASH] = ACTIONS(271), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(862), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(864), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_do] = ACTIONS(414), + [anon_sym_fn] = ACTIONS(406), + [anon_sym_LPAREN2] = ACTIONS(408), + [anon_sym_LBRACK2] = ACTIONS(245), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(866), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(868), + [sym__before_unary_op] = ACTIONS(410), + [sym__not_in] = ACTIONS(297), + [sym__quoted_atom_start] = ACTIONS(412), }, [104] = { [sym__terminator] = STATE(133), - [sym__expression] = STATE(3232), - [sym_block] = STATE(3232), + [sym__expression] = STATE(3852), + [sym_block] = STATE(3852), [sym__identifier] = STATE(64), [sym_identifier] = STATE(64), [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3232), - [sym_nil] = STATE(3232), - [sym__atom] = STATE(3232), - [sym_quoted_atom] = STATE(3232), - [sym__quoted_i_double] = STATE(3097), - [sym__quoted_i_single] = STATE(3101), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3232), - [sym_charlist] = STATE(3232), - [sym_sigil] = STATE(3232), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(3232), - [sym_tuple] = STATE(3232), - [sym_bitstring] = STATE(3232), - [sym_map] = STATE(3232), - [sym_unary_operator] = STATE(3232), - [sym_binary_operator] = STATE(3232), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3232), - [sym_call] = STATE(3232), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), + [sym_boolean] = STATE(3852), + [sym_nil] = STATE(3852), + [sym__atom] = STATE(3852), + [sym_quoted_atom] = STATE(3852), + [sym__quoted_i_double] = STATE(3376), + [sym__quoted_i_single] = STATE(3377), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3852), + [sym_charlist] = STATE(3852), + [sym_sigil] = STATE(3852), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(3852), + [sym_tuple] = STATE(3852), + [sym_bitstring] = STATE(3852), + [sym_map] = STATE(3852), + [sym_unary_operator] = STATE(3852), + [sym_binary_operator] = STATE(3852), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3852), + [sym_call] = STATE(3852), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3232), - [sym_stab_clause] = STATE(4361), - [sym__stab_clause_left] = STATE(5025), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(3232), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3852), + [sym_stab_clause] = STATE(4956), + [sym__stab_clause_left] = STATE(5613), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(3852), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(698), [anon_sym_SEMI] = ACTIONS(876), @@ -38142,55 +38780,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(868), }, [105] = { - [sym__terminator] = STATE(125), - [sym__expression] = STATE(3232), - [sym_block] = STATE(3232), + [sym__terminator] = STATE(128), + [sym__expression] = STATE(3852), + [sym_block] = STATE(3852), [sym__identifier] = STATE(64), [sym_identifier] = STATE(64), [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3232), - [sym_nil] = STATE(3232), - [sym__atom] = STATE(3232), - [sym_quoted_atom] = STATE(3232), - [sym__quoted_i_double] = STATE(3097), - [sym__quoted_i_single] = STATE(3101), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3232), - [sym_charlist] = STATE(3232), - [sym_sigil] = STATE(3232), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(3232), - [sym_tuple] = STATE(3232), - [sym_bitstring] = STATE(3232), - [sym_map] = STATE(3232), - [sym_unary_operator] = STATE(3232), - [sym_binary_operator] = STATE(3232), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3232), - [sym_call] = STATE(3232), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), + [sym_boolean] = STATE(3852), + [sym_nil] = STATE(3852), + [sym__atom] = STATE(3852), + [sym_quoted_atom] = STATE(3852), + [sym__quoted_i_double] = STATE(3376), + [sym__quoted_i_single] = STATE(3377), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3852), + [sym_charlist] = STATE(3852), + [sym_sigil] = STATE(3852), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(3852), + [sym_tuple] = STATE(3852), + [sym_bitstring] = STATE(3852), + [sym_map] = STATE(3852), + [sym_unary_operator] = STATE(3852), + [sym_binary_operator] = STATE(3852), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3852), + [sym_call] = STATE(3852), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3232), - [sym_stab_clause] = STATE(4342), - [sym__stab_clause_left] = STATE(5025), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(3232), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3852), + [sym_stab_clause] = STATE(5023), + [sym__stab_clause_left] = STATE(5613), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(3852), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(698), [anon_sym_SEMI] = ACTIONS(878), @@ -38281,55 +38919,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(868), }, [106] = { - [sym__terminator] = STATE(130), - [sym__expression] = STATE(3232), - [sym_block] = STATE(3232), + [sym__terminator] = STATE(125), + [sym__expression] = STATE(3852), + [sym_block] = STATE(3852), [sym__identifier] = STATE(64), [sym_identifier] = STATE(64), [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3232), - [sym_nil] = STATE(3232), - [sym__atom] = STATE(3232), - [sym_quoted_atom] = STATE(3232), - [sym__quoted_i_double] = STATE(3097), - [sym__quoted_i_single] = STATE(3101), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3232), - [sym_charlist] = STATE(3232), - [sym_sigil] = STATE(3232), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(3232), - [sym_tuple] = STATE(3232), - [sym_bitstring] = STATE(3232), - [sym_map] = STATE(3232), - [sym_unary_operator] = STATE(3232), - [sym_binary_operator] = STATE(3232), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3232), - [sym_call] = STATE(3232), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), + [sym_boolean] = STATE(3852), + [sym_nil] = STATE(3852), + [sym__atom] = STATE(3852), + [sym_quoted_atom] = STATE(3852), + [sym__quoted_i_double] = STATE(3376), + [sym__quoted_i_single] = STATE(3377), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3852), + [sym_charlist] = STATE(3852), + [sym_sigil] = STATE(3852), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(3852), + [sym_tuple] = STATE(3852), + [sym_bitstring] = STATE(3852), + [sym_map] = STATE(3852), + [sym_unary_operator] = STATE(3852), + [sym_binary_operator] = STATE(3852), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3852), + [sym_call] = STATE(3852), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3232), - [sym_stab_clause] = STATE(4306), - [sym__stab_clause_left] = STATE(5025), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(3232), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3852), + [sym_stab_clause] = STATE(4933), + [sym__stab_clause_left] = STATE(5613), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(3852), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(698), [anon_sym_SEMI] = ACTIONS(880), @@ -38420,55 +39058,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(868), }, [107] = { - [sym__terminator] = STATE(139), - [sym__expression] = STATE(3232), - [sym_block] = STATE(3232), + [sym__terminator] = STATE(126), + [sym__expression] = STATE(3852), + [sym_block] = STATE(3852), [sym__identifier] = STATE(64), [sym_identifier] = STATE(64), [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3232), - [sym_nil] = STATE(3232), - [sym__atom] = STATE(3232), - [sym_quoted_atom] = STATE(3232), - [sym__quoted_i_double] = STATE(3097), - [sym__quoted_i_single] = STATE(3101), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3232), - [sym_charlist] = STATE(3232), - [sym_sigil] = STATE(3232), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(3232), - [sym_tuple] = STATE(3232), - [sym_bitstring] = STATE(3232), - [sym_map] = STATE(3232), - [sym_unary_operator] = STATE(3232), - [sym_binary_operator] = STATE(3232), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3232), - [sym_call] = STATE(3232), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), + [sym_boolean] = STATE(3852), + [sym_nil] = STATE(3852), + [sym__atom] = STATE(3852), + [sym_quoted_atom] = STATE(3852), + [sym__quoted_i_double] = STATE(3376), + [sym__quoted_i_single] = STATE(3377), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3852), + [sym_charlist] = STATE(3852), + [sym_sigil] = STATE(3852), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(3852), + [sym_tuple] = STATE(3852), + [sym_bitstring] = STATE(3852), + [sym_map] = STATE(3852), + [sym_unary_operator] = STATE(3852), + [sym_binary_operator] = STATE(3852), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3852), + [sym_call] = STATE(3852), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3232), - [sym_stab_clause] = STATE(4307), - [sym__stab_clause_left] = STATE(5025), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(3232), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3852), + [sym_stab_clause] = STATE(4927), + [sym__stab_clause_left] = STATE(5613), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(3852), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(698), [anon_sym_SEMI] = ACTIONS(882), @@ -38559,55 +39197,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(868), }, [108] = { - [sym__terminator] = STATE(138), - [sym__expression] = STATE(3232), - [sym_block] = STATE(3232), + [sym__terminator] = STATE(134), + [sym__expression] = STATE(3852), + [sym_block] = STATE(3852), [sym__identifier] = STATE(64), [sym_identifier] = STATE(64), [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3232), - [sym_nil] = STATE(3232), - [sym__atom] = STATE(3232), - [sym_quoted_atom] = STATE(3232), - [sym__quoted_i_double] = STATE(3097), - [sym__quoted_i_single] = STATE(3101), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3232), - [sym_charlist] = STATE(3232), - [sym_sigil] = STATE(3232), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(3232), - [sym_tuple] = STATE(3232), - [sym_bitstring] = STATE(3232), - [sym_map] = STATE(3232), - [sym_unary_operator] = STATE(3232), - [sym_binary_operator] = STATE(3232), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3232), - [sym_call] = STATE(3232), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), + [sym_boolean] = STATE(3852), + [sym_nil] = STATE(3852), + [sym__atom] = STATE(3852), + [sym_quoted_atom] = STATE(3852), + [sym__quoted_i_double] = STATE(3376), + [sym__quoted_i_single] = STATE(3377), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3852), + [sym_charlist] = STATE(3852), + [sym_sigil] = STATE(3852), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(3852), + [sym_tuple] = STATE(3852), + [sym_bitstring] = STATE(3852), + [sym_map] = STATE(3852), + [sym_unary_operator] = STATE(3852), + [sym_binary_operator] = STATE(3852), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3852), + [sym_call] = STATE(3852), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3232), - [sym_stab_clause] = STATE(4359), - [sym__stab_clause_left] = STATE(5025), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(3232), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3852), + [sym_stab_clause] = STATE(5041), + [sym__stab_clause_left] = STATE(5613), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(3852), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(698), [anon_sym_SEMI] = ACTIONS(884), @@ -38698,55 +39336,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(868), }, [109] = { - [sym__terminator] = STATE(126), - [sym__expression] = STATE(3232), - [sym_block] = STATE(3232), + [sym__terminator] = STATE(136), + [sym__expression] = STATE(3852), + [sym_block] = STATE(3852), [sym__identifier] = STATE(64), [sym_identifier] = STATE(64), [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3232), - [sym_nil] = STATE(3232), - [sym__atom] = STATE(3232), - [sym_quoted_atom] = STATE(3232), - [sym__quoted_i_double] = STATE(3097), - [sym__quoted_i_single] = STATE(3101), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3232), - [sym_charlist] = STATE(3232), - [sym_sigil] = STATE(3232), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(3232), - [sym_tuple] = STATE(3232), - [sym_bitstring] = STATE(3232), - [sym_map] = STATE(3232), - [sym_unary_operator] = STATE(3232), - [sym_binary_operator] = STATE(3232), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3232), - [sym_call] = STATE(3232), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), + [sym_boolean] = STATE(3852), + [sym_nil] = STATE(3852), + [sym__atom] = STATE(3852), + [sym_quoted_atom] = STATE(3852), + [sym__quoted_i_double] = STATE(3376), + [sym__quoted_i_single] = STATE(3377), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3852), + [sym_charlist] = STATE(3852), + [sym_sigil] = STATE(3852), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(3852), + [sym_tuple] = STATE(3852), + [sym_bitstring] = STATE(3852), + [sym_map] = STATE(3852), + [sym_unary_operator] = STATE(3852), + [sym_binary_operator] = STATE(3852), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3852), + [sym_call] = STATE(3852), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3232), - [sym_stab_clause] = STATE(4424), - [sym__stab_clause_left] = STATE(5025), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(3232), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3852), + [sym_stab_clause] = STATE(4988), + [sym__stab_clause_left] = STATE(5613), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(3852), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(698), [anon_sym_SEMI] = ACTIONS(886), @@ -38837,55 +39475,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(868), }, [110] = { - [sym__terminator] = STATE(132), - [sym__expression] = STATE(3232), - [sym_block] = STATE(3232), + [sym__terminator] = STATE(138), + [sym__expression] = STATE(3852), + [sym_block] = STATE(3852), [sym__identifier] = STATE(64), [sym_identifier] = STATE(64), [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3232), - [sym_nil] = STATE(3232), - [sym__atom] = STATE(3232), - [sym_quoted_atom] = STATE(3232), - [sym__quoted_i_double] = STATE(3097), - [sym__quoted_i_single] = STATE(3101), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3232), - [sym_charlist] = STATE(3232), - [sym_sigil] = STATE(3232), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(3232), - [sym_tuple] = STATE(3232), - [sym_bitstring] = STATE(3232), - [sym_map] = STATE(3232), - [sym_unary_operator] = STATE(3232), - [sym_binary_operator] = STATE(3232), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3232), - [sym_call] = STATE(3232), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), + [sym_boolean] = STATE(3852), + [sym_nil] = STATE(3852), + [sym__atom] = STATE(3852), + [sym_quoted_atom] = STATE(3852), + [sym__quoted_i_double] = STATE(3376), + [sym__quoted_i_single] = STATE(3377), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3852), + [sym_charlist] = STATE(3852), + [sym_sigil] = STATE(3852), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(3852), + [sym_tuple] = STATE(3852), + [sym_bitstring] = STATE(3852), + [sym_map] = STATE(3852), + [sym_unary_operator] = STATE(3852), + [sym_binary_operator] = STATE(3852), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3852), + [sym_call] = STATE(3852), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3232), - [sym_stab_clause] = STATE(4384), - [sym__stab_clause_left] = STATE(5025), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(3232), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3852), + [sym_stab_clause] = STATE(5032), + [sym__stab_clause_left] = STATE(5613), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(3852), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(698), [anon_sym_SEMI] = ACTIONS(888), @@ -38976,194 +39614,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(868), }, [111] = { - [sym__expression] = STATE(1933), - [sym_block] = STATE(1933), - [sym__identifier] = STATE(34), - [sym_identifier] = STATE(34), - [sym_special_identifier] = STATE(34), - [sym_boolean] = STATE(1933), - [sym_nil] = STATE(1933), - [sym__atom] = STATE(1933), - [sym_quoted_atom] = STATE(1933), - [sym__quoted_i_double] = STATE(1678), - [sym__quoted_i_single] = STATE(1677), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(1933), - [sym_charlist] = STATE(1933), - [sym_sigil] = STATE(1933), - [sym_keywords] = STATE(1934), - [sym_pair] = STATE(1922), - [sym__keyword] = STATE(901), - [sym_quoted_keyword] = STATE(901), - [sym_list] = STATE(1933), - [sym_tuple] = STATE(1933), - [sym_bitstring] = STATE(1933), - [sym_map] = STATE(1933), - [sym_unary_operator] = STATE(1933), - [sym_binary_operator] = STATE(1933), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(1933), - [sym_call] = STATE(1933), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(36), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym__call_arguments_with_parentheses_immediate] = STATE(1498), - [sym__call_arguments_without_parentheses] = STATE(1735), - [sym_do_block] = STATE(2561), - [sym_access_call] = STATE(1933), - [sym_anonymous_function] = STATE(1933), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(361), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(365), - [sym_integer] = ACTIONS(365), - [sym_float] = ACTIONS(365), - [sym_char] = ACTIONS(365), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), - [sym_atom] = ACTIONS(365), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(890), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(219), - [anon_sym_GT] = ACTIONS(219), - [anon_sym_PIPE] = ACTIONS(219), - [anon_sym_SLASH] = ACTIONS(219), - [anon_sym_TILDE] = ACTIONS(383), - [sym_keyword] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(396), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(396), - [anon_sym_not] = ACTIONS(396), - [anon_sym_AT] = ACTIONS(398), - [anon_sym_LT_DASH] = ACTIONS(219), - [anon_sym_BSLASH_BSLASH] = ACTIONS(219), - [anon_sym_when] = ACTIONS(219), - [anon_sym_COLON_COLON] = ACTIONS(219), - [anon_sym_EQ_GT] = ACTIONS(191), - [anon_sym_EQ] = ACTIONS(219), - [anon_sym_PIPE_PIPE] = ACTIONS(219), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(219), - [anon_sym_or] = ACTIONS(219), - [anon_sym_AMP_AMP] = ACTIONS(219), - [anon_sym_AMP_AMP_AMP] = ACTIONS(219), - [anon_sym_and] = ACTIONS(219), - [anon_sym_EQ_EQ] = ACTIONS(219), - [anon_sym_BANG_EQ] = ACTIONS(219), - [anon_sym_EQ_TILDE] = ACTIONS(219), - [anon_sym_EQ_EQ_EQ] = ACTIONS(219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(219), - [anon_sym_LT_EQ] = ACTIONS(219), - [anon_sym_GT_EQ] = ACTIONS(219), - [anon_sym_PIPE_GT] = ACTIONS(219), - [anon_sym_LT_LT_LT] = ACTIONS(219), - [anon_sym_GT_GT_GT] = ACTIONS(219), - [anon_sym_LT_LT_TILDE] = ACTIONS(219), - [anon_sym_TILDE_GT_GT] = ACTIONS(219), - [anon_sym_LT_TILDE] = ACTIONS(219), - [anon_sym_TILDE_GT] = ACTIONS(219), - [anon_sym_LT_TILDE_GT] = ACTIONS(219), - [anon_sym_LT_PIPE_GT] = ACTIONS(219), - [anon_sym_in] = ACTIONS(219), - [anon_sym_CARET_CARET_CARET] = ACTIONS(191), - [anon_sym_SLASH_SLASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(219), - [anon_sym_DASH_DASH] = ACTIONS(219), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(219), - [anon_sym_DASH_DASH_DASH] = ACTIONS(219), - [anon_sym_DOT_DOT] = ACTIONS(219), - [anon_sym_LT_GT] = ACTIONS(219), - [anon_sym_STAR] = ACTIONS(219), - [anon_sym_STAR_STAR] = ACTIONS(219), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(219), - [anon_sym_do] = ACTIONS(432), - [anon_sym_fn] = ACTIONS(400), - [anon_sym_LPAREN2] = ACTIONS(402), - [anon_sym_LBRACK2] = ACTIONS(189), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(404), - [sym__not_in] = ACTIONS(245), - [sym__quoted_atom_start] = ACTIONS(406), - }, - [112] = { - [sym__terminator] = STATE(131), - [sym__expression] = STATE(3232), - [sym_block] = STATE(3232), + [sym__terminator] = STATE(130), + [sym__expression] = STATE(3852), + [sym_block] = STATE(3852), [sym__identifier] = STATE(64), [sym_identifier] = STATE(64), [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3232), - [sym_nil] = STATE(3232), - [sym__atom] = STATE(3232), - [sym_quoted_atom] = STATE(3232), - [sym__quoted_i_double] = STATE(3097), - [sym__quoted_i_single] = STATE(3101), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3232), - [sym_charlist] = STATE(3232), - [sym_sigil] = STATE(3232), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(3232), - [sym_tuple] = STATE(3232), - [sym_bitstring] = STATE(3232), - [sym_map] = STATE(3232), - [sym_unary_operator] = STATE(3232), - [sym_binary_operator] = STATE(3232), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3232), - [sym_call] = STATE(3232), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), + [sym_boolean] = STATE(3852), + [sym_nil] = STATE(3852), + [sym__atom] = STATE(3852), + [sym_quoted_atom] = STATE(3852), + [sym__quoted_i_double] = STATE(3376), + [sym__quoted_i_single] = STATE(3377), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3852), + [sym_charlist] = STATE(3852), + [sym_sigil] = STATE(3852), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(3852), + [sym_tuple] = STATE(3852), + [sym_bitstring] = STATE(3852), + [sym_map] = STATE(3852), + [sym_unary_operator] = STATE(3852), + [sym_binary_operator] = STATE(3852), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3852), + [sym_call] = STATE(3852), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3232), - [sym_stab_clause] = STATE(4422), - [sym__stab_clause_left] = STATE(5025), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(3232), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3852), + [sym_stab_clause] = STATE(5014), + [sym__stab_clause_left] = STATE(5613), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(3852), + [aux_sym__terminator_repeat1] = STATE(1026), + [aux_sym__terminator_token1] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(890), + [anon_sym_LPAREN] = ACTIONS(824), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(832), + [sym_integer] = ACTIONS(832), + [sym_float] = ACTIONS(832), + [sym_char] = ACTIONS(832), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(862), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [112] = { + [sym__terminator] = STATE(139), + [sym__expression] = STATE(3852), + [sym_block] = STATE(3852), + [sym__identifier] = STATE(64), + [sym_identifier] = STATE(64), + [sym_special_identifier] = STATE(64), + [sym_boolean] = STATE(3852), + [sym_nil] = STATE(3852), + [sym__atom] = STATE(3852), + [sym_quoted_atom] = STATE(3852), + [sym__quoted_i_double] = STATE(3376), + [sym__quoted_i_single] = STATE(3377), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3852), + [sym_charlist] = STATE(3852), + [sym_sigil] = STATE(3852), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(3852), + [sym_tuple] = STATE(3852), + [sym_bitstring] = STATE(3852), + [sym_map] = STATE(3852), + [sym_unary_operator] = STATE(3852), + [sym_binary_operator] = STATE(3852), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3852), + [sym_call] = STATE(3852), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), + [sym__remote_dot] = STATE(55), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3852), + [sym_stab_clause] = STATE(4992), + [sym__stab_clause_left] = STATE(5613), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(3852), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(698), [anon_sym_SEMI] = ACTIONS(892), @@ -39254,54 +39892,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(868), }, [113] = { - [sym__expression] = STATE(1670), - [sym_block] = STATE(1670), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(1670), - [sym_nil] = STATE(1670), - [sym__atom] = STATE(1670), - [sym_quoted_atom] = STATE(1670), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1670), - [sym_charlist] = STATE(1670), - [sym_sigil] = STATE(1670), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1670), - [sym_tuple] = STATE(1670), - [sym_bitstring] = STATE(1670), - [sym_map] = STATE(1670), - [sym_unary_operator] = STATE(1670), - [sym_binary_operator] = STATE(1670), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1670), - [sym_call] = STATE(1670), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1670), - [sym_stab_clause] = STATE(4321), - [sym__stab_clause_left] = STATE(5021), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1670), + [sym__expression] = STATE(1964), + [sym_block] = STATE(1964), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(1964), + [sym_nil] = STATE(1964), + [sym__atom] = STATE(1964), + [sym_quoted_atom] = STATE(1964), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1964), + [sym_charlist] = STATE(1964), + [sym_sigil] = STATE(1964), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1964), + [sym_tuple] = STATE(1964), + [sym_bitstring] = STATE(1964), + [sym_map] = STATE(1964), + [sym_unary_operator] = STATE(1964), + [sym_binary_operator] = STATE(1964), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1964), + [sym_call] = STATE(1964), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1964), + [sym_stab_clause] = STATE(5022), + [sym__stab_clause_left] = STATE(5624), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1964), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_RPAREN] = ACTIONS(894), @@ -39391,54 +40029,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [114] = { - [sym__expression] = STATE(1605), - [sym_block] = STATE(1605), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(1605), - [sym_nil] = STATE(1605), - [sym__atom] = STATE(1605), - [sym_quoted_atom] = STATE(1605), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1605), - [sym_charlist] = STATE(1605), - [sym_sigil] = STATE(1605), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1605), - [sym_tuple] = STATE(1605), - [sym_bitstring] = STATE(1605), - [sym_map] = STATE(1605), - [sym_unary_operator] = STATE(1605), - [sym_binary_operator] = STATE(1605), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1605), - [sym_call] = STATE(1605), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1605), - [sym_stab_clause] = STATE(4296), - [sym__stab_clause_left] = STATE(5021), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1605), + [sym__expression] = STATE(1740), + [sym_block] = STATE(1740), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(1740), + [sym_nil] = STATE(1740), + [sym__atom] = STATE(1740), + [sym_quoted_atom] = STATE(1740), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1740), + [sym_charlist] = STATE(1740), + [sym_sigil] = STATE(1740), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1740), + [sym_tuple] = STATE(1740), + [sym_bitstring] = STATE(1740), + [sym_map] = STATE(1740), + [sym_unary_operator] = STATE(1740), + [sym_binary_operator] = STATE(1740), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1740), + [sym_call] = STATE(1740), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1740), + [sym_stab_clause] = STATE(4945), + [sym__stab_clause_left] = STATE(5624), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1740), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_RPAREN] = ACTIONS(898), @@ -39528,54 +40166,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [115] = { - [sym__expression] = STATE(1778), - [sym_block] = STATE(1778), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(1778), - [sym_nil] = STATE(1778), - [sym__atom] = STATE(1778), - [sym_quoted_atom] = STATE(1778), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1778), - [sym_charlist] = STATE(1778), - [sym_sigil] = STATE(1778), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1778), - [sym_tuple] = STATE(1778), - [sym_bitstring] = STATE(1778), - [sym_map] = STATE(1778), - [sym_unary_operator] = STATE(1778), - [sym_binary_operator] = STATE(1778), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1778), - [sym_call] = STATE(1778), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1778), - [sym_stab_clause] = STATE(4386), - [sym__stab_clause_left] = STATE(5021), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1778), + [sym__expression] = STATE(1948), + [sym_block] = STATE(1948), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(1948), + [sym_nil] = STATE(1948), + [sym__atom] = STATE(1948), + [sym_quoted_atom] = STATE(1948), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1948), + [sym_charlist] = STATE(1948), + [sym_sigil] = STATE(1948), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1948), + [sym_tuple] = STATE(1948), + [sym_bitstring] = STATE(1948), + [sym_map] = STATE(1948), + [sym_unary_operator] = STATE(1948), + [sym_binary_operator] = STATE(1948), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1948), + [sym_call] = STATE(1948), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1948), + [sym_stab_clause] = STATE(4961), + [sym__stab_clause_left] = STATE(5624), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1948), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_RPAREN] = ACTIONS(902), @@ -39665,54 +40303,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [116] = { - [sym__expression] = STATE(1688), - [sym_block] = STATE(1688), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(1688), - [sym_nil] = STATE(1688), - [sym__atom] = STATE(1688), - [sym_quoted_atom] = STATE(1688), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1688), - [sym_charlist] = STATE(1688), - [sym_sigil] = STATE(1688), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1688), - [sym_tuple] = STATE(1688), - [sym_bitstring] = STATE(1688), - [sym_map] = STATE(1688), - [sym_unary_operator] = STATE(1688), - [sym_binary_operator] = STATE(1688), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1688), - [sym_call] = STATE(1688), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1688), - [sym_stab_clause] = STATE(4416), - [sym__stab_clause_left] = STATE(5021), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1688), + [sym__expression] = STATE(1746), + [sym_block] = STATE(1746), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(1746), + [sym_nil] = STATE(1746), + [sym__atom] = STATE(1746), + [sym_quoted_atom] = STATE(1746), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1746), + [sym_charlist] = STATE(1746), + [sym_sigil] = STATE(1746), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1746), + [sym_tuple] = STATE(1746), + [sym_bitstring] = STATE(1746), + [sym_map] = STATE(1746), + [sym_unary_operator] = STATE(1746), + [sym_binary_operator] = STATE(1746), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1746), + [sym_call] = STATE(1746), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1746), + [sym_stab_clause] = STATE(4986), + [sym__stab_clause_left] = STATE(5624), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1746), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_RPAREN] = ACTIONS(906), @@ -39802,54 +40440,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [117] = { - [sym__expression] = STATE(1716), - [sym_block] = STATE(1716), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(1716), - [sym_nil] = STATE(1716), - [sym__atom] = STATE(1716), - [sym_quoted_atom] = STATE(1716), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1716), - [sym_charlist] = STATE(1716), - [sym_sigil] = STATE(1716), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1716), - [sym_tuple] = STATE(1716), - [sym_bitstring] = STATE(1716), - [sym_map] = STATE(1716), - [sym_unary_operator] = STATE(1716), - [sym_binary_operator] = STATE(1716), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1716), - [sym_call] = STATE(1716), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1716), - [sym_stab_clause] = STATE(4362), - [sym__stab_clause_left] = STATE(5021), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1716), + [sym__expression] = STATE(1734), + [sym_block] = STATE(1734), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(1734), + [sym_nil] = STATE(1734), + [sym__atom] = STATE(1734), + [sym_quoted_atom] = STATE(1734), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1734), + [sym_charlist] = STATE(1734), + [sym_sigil] = STATE(1734), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_bitstring] = STATE(1734), + [sym_map] = STATE(1734), + [sym_unary_operator] = STATE(1734), + [sym_binary_operator] = STATE(1734), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1734), + [sym_call] = STATE(1734), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1734), + [sym_stab_clause] = STATE(4939), + [sym__stab_clause_left] = STATE(5624), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1734), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_RPAREN] = ACTIONS(910), @@ -39939,54 +40577,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [118] = { - [sym__expression] = STATE(1620), - [sym_block] = STATE(1620), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(1620), - [sym_nil] = STATE(1620), - [sym__atom] = STATE(1620), - [sym_quoted_atom] = STATE(1620), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1620), - [sym_charlist] = STATE(1620), - [sym_sigil] = STATE(1620), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1620), - [sym_tuple] = STATE(1620), - [sym_bitstring] = STATE(1620), - [sym_map] = STATE(1620), - [sym_unary_operator] = STATE(1620), - [sym_binary_operator] = STATE(1620), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1620), - [sym_call] = STATE(1620), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1620), - [sym_stab_clause] = STATE(4343), - [sym__stab_clause_left] = STATE(5021), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1620), + [sym__expression] = STATE(1955), + [sym_block] = STATE(1955), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(1955), + [sym_nil] = STATE(1955), + [sym__atom] = STATE(1955), + [sym_quoted_atom] = STATE(1955), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1955), + [sym_charlist] = STATE(1955), + [sym_sigil] = STATE(1955), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1955), + [sym_tuple] = STATE(1955), + [sym_bitstring] = STATE(1955), + [sym_map] = STATE(1955), + [sym_unary_operator] = STATE(1955), + [sym_binary_operator] = STATE(1955), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1955), + [sym_call] = STATE(1955), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1955), + [sym_stab_clause] = STATE(4993), + [sym__stab_clause_left] = STATE(5624), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1955), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_RPAREN] = ACTIONS(914), @@ -40076,54 +40714,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [119] = { - [sym__expression] = STATE(1796), - [sym_block] = STATE(1796), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(1796), - [sym_nil] = STATE(1796), - [sym__atom] = STATE(1796), - [sym_quoted_atom] = STATE(1796), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1796), - [sym_charlist] = STATE(1796), - [sym_sigil] = STATE(1796), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1796), - [sym_tuple] = STATE(1796), - [sym_bitstring] = STATE(1796), - [sym_map] = STATE(1796), - [sym_unary_operator] = STATE(1796), - [sym_binary_operator] = STATE(1796), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1796), - [sym_call] = STATE(1796), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1796), - [sym_stab_clause] = STATE(4357), - [sym__stab_clause_left] = STATE(5021), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1796), + [sym__expression] = STATE(1737), + [sym_block] = STATE(1737), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(1737), + [sym_nil] = STATE(1737), + [sym__atom] = STATE(1737), + [sym_quoted_atom] = STATE(1737), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1737), + [sym_charlist] = STATE(1737), + [sym_sigil] = STATE(1737), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1737), + [sym_tuple] = STATE(1737), + [sym_bitstring] = STATE(1737), + [sym_map] = STATE(1737), + [sym_unary_operator] = STATE(1737), + [sym_binary_operator] = STATE(1737), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1737), + [sym_call] = STATE(1737), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1737), + [sym_stab_clause] = STATE(4925), + [sym__stab_clause_left] = STATE(5624), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1737), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_RPAREN] = ACTIONS(918), @@ -40213,54 +40851,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [120] = { - [sym__expression] = STATE(1731), - [sym_block] = STATE(1731), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(1731), - [sym_nil] = STATE(1731), - [sym__atom] = STATE(1731), - [sym_quoted_atom] = STATE(1731), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1731), - [sym_charlist] = STATE(1731), - [sym_sigil] = STATE(1731), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1731), - [sym_tuple] = STATE(1731), - [sym_bitstring] = STATE(1731), - [sym_map] = STATE(1731), - [sym_unary_operator] = STATE(1731), - [sym_binary_operator] = STATE(1731), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1731), - [sym_call] = STATE(1731), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1731), - [sym_stab_clause] = STATE(4297), - [sym__stab_clause_left] = STATE(5021), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1731), + [sym__expression] = STATE(1751), + [sym_block] = STATE(1751), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(1751), + [sym_nil] = STATE(1751), + [sym__atom] = STATE(1751), + [sym_quoted_atom] = STATE(1751), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1751), + [sym_charlist] = STATE(1751), + [sym_sigil] = STATE(1751), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1751), + [sym_tuple] = STATE(1751), + [sym_bitstring] = STATE(1751), + [sym_map] = STATE(1751), + [sym_unary_operator] = STATE(1751), + [sym_binary_operator] = STATE(1751), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1751), + [sym_call] = STATE(1751), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1751), + [sym_stab_clause] = STATE(5039), + [sym__stab_clause_left] = STATE(5624), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1751), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_RPAREN] = ACTIONS(922), @@ -40350,54 +40988,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [121] = { - [sym__expression] = STATE(1720), - [sym_block] = STATE(1720), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(1720), - [sym_nil] = STATE(1720), - [sym__atom] = STATE(1720), - [sym_quoted_atom] = STATE(1720), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1720), - [sym_charlist] = STATE(1720), - [sym_sigil] = STATE(1720), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1720), - [sym_tuple] = STATE(1720), - [sym_bitstring] = STATE(1720), - [sym_map] = STATE(1720), - [sym_unary_operator] = STATE(1720), - [sym_binary_operator] = STATE(1720), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1720), - [sym_call] = STATE(1720), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1720), - [sym_stab_clause] = STATE(4426), - [sym__stab_clause_left] = STATE(5021), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1720), + [sym__expression] = STATE(1742), + [sym_block] = STATE(1742), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(1742), + [sym_nil] = STATE(1742), + [sym__atom] = STATE(1742), + [sym_quoted_atom] = STATE(1742), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1742), + [sym_charlist] = STATE(1742), + [sym_sigil] = STATE(1742), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1742), + [sym_tuple] = STATE(1742), + [sym_bitstring] = STATE(1742), + [sym_map] = STATE(1742), + [sym_unary_operator] = STATE(1742), + [sym_binary_operator] = STATE(1742), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1742), + [sym_call] = STATE(1742), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1742), + [sym_stab_clause] = STATE(4966), + [sym__stab_clause_left] = STATE(5624), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1742), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_RPAREN] = ACTIONS(926), @@ -40487,54 +41125,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [122] = { - [sym__expression] = STATE(1822), - [sym_block] = STATE(1822), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(1822), - [sym_nil] = STATE(1822), - [sym__atom] = STATE(1822), - [sym_quoted_atom] = STATE(1822), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1822), - [sym_charlist] = STATE(1822), - [sym_sigil] = STATE(1822), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1822), - [sym_tuple] = STATE(1822), - [sym_bitstring] = STATE(1822), - [sym_map] = STATE(1822), - [sym_unary_operator] = STATE(1822), - [sym_binary_operator] = STATE(1822), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1822), - [sym_call] = STATE(1822), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1822), - [sym_stab_clause] = STATE(4389), - [sym__stab_clause_left] = STATE(5021), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1822), + [sym__expression] = STATE(1731), + [sym_block] = STATE(1731), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(1731), + [sym_nil] = STATE(1731), + [sym__atom] = STATE(1731), + [sym_quoted_atom] = STATE(1731), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1731), + [sym_charlist] = STATE(1731), + [sym_sigil] = STATE(1731), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1731), + [sym_tuple] = STATE(1731), + [sym_bitstring] = STATE(1731), + [sym_map] = STATE(1731), + [sym_unary_operator] = STATE(1731), + [sym_binary_operator] = STATE(1731), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1731), + [sym_call] = STATE(1731), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1731), + [sym_stab_clause] = STATE(5038), + [sym__stab_clause_left] = STATE(5624), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1731), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_RPAREN] = ACTIONS(930), @@ -40624,54 +41262,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [123] = { - [sym__expression] = STATE(1785), - [sym_block] = STATE(1785), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(1785), - [sym_nil] = STATE(1785), - [sym__atom] = STATE(1785), - [sym_quoted_atom] = STATE(1785), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1785), - [sym_charlist] = STATE(1785), - [sym_sigil] = STATE(1785), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1785), - [sym_tuple] = STATE(1785), - [sym_bitstring] = STATE(1785), - [sym_map] = STATE(1785), - [sym_unary_operator] = STATE(1785), - [sym_binary_operator] = STATE(1785), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1785), - [sym_call] = STATE(1785), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1785), - [sym_stab_clause] = STATE(4331), - [sym__stab_clause_left] = STATE(5021), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1785), + [sym__expression] = STATE(1723), + [sym_block] = STATE(1723), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(1723), + [sym_nil] = STATE(1723), + [sym__atom] = STATE(1723), + [sym_quoted_atom] = STATE(1723), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1723), + [sym_charlist] = STATE(1723), + [sym_sigil] = STATE(1723), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1723), + [sym_tuple] = STATE(1723), + [sym_bitstring] = STATE(1723), + [sym_map] = STATE(1723), + [sym_unary_operator] = STATE(1723), + [sym_binary_operator] = STATE(1723), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1723), + [sym_call] = STATE(1723), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1723), + [sym_stab_clause] = STATE(5012), + [sym__stab_clause_left] = STATE(5624), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1723), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_RPAREN] = ACTIONS(934), @@ -40761,54 +41399,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [124] = { - [sym__expression] = STATE(1657), - [sym_block] = STATE(1657), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(1657), - [sym_nil] = STATE(1657), - [sym__atom] = STATE(1657), - [sym_quoted_atom] = STATE(1657), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1657), - [sym_charlist] = STATE(1657), - [sym_sigil] = STATE(1657), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(1657), - [sym_tuple] = STATE(1657), - [sym_bitstring] = STATE(1657), - [sym_map] = STATE(1657), - [sym_unary_operator] = STATE(1657), - [sym_binary_operator] = STATE(1657), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1657), - [sym_call] = STATE(1657), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1657), - [sym_stab_clause] = STATE(4310), - [sym__stab_clause_left] = STATE(5021), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(1657), + [sym__expression] = STATE(1950), + [sym_block] = STATE(1950), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(1950), + [sym_nil] = STATE(1950), + [sym__atom] = STATE(1950), + [sym_quoted_atom] = STATE(1950), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1950), + [sym_charlist] = STATE(1950), + [sym_sigil] = STATE(1950), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(1950), + [sym_tuple] = STATE(1950), + [sym_bitstring] = STATE(1950), + [sym_map] = STATE(1950), + [sym_unary_operator] = STATE(1950), + [sym_binary_operator] = STATE(1950), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1950), + [sym_call] = STATE(1950), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1950), + [sym_stab_clause] = STATE(4915), + [sym__stab_clause_left] = STATE(5624), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(1950), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_RPAREN] = ACTIONS(938), @@ -40898,54 +41536,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [125] = { - [sym__expression] = STATE(3232), - [sym_block] = STATE(3232), + [sym__expression] = STATE(3852), + [sym_block] = STATE(3852), [sym__identifier] = STATE(64), [sym_identifier] = STATE(64), [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3232), - [sym_nil] = STATE(3232), - [sym__atom] = STATE(3232), - [sym_quoted_atom] = STATE(3232), - [sym__quoted_i_double] = STATE(3097), - [sym__quoted_i_single] = STATE(3101), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3232), - [sym_charlist] = STATE(3232), - [sym_sigil] = STATE(3232), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(3232), - [sym_tuple] = STATE(3232), - [sym_bitstring] = STATE(3232), - [sym_map] = STATE(3232), - [sym_unary_operator] = STATE(3232), - [sym_binary_operator] = STATE(3232), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3232), - [sym_call] = STATE(3232), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), + [sym_boolean] = STATE(3852), + [sym_nil] = STATE(3852), + [sym__atom] = STATE(3852), + [sym_quoted_atom] = STATE(3852), + [sym__quoted_i_double] = STATE(3376), + [sym__quoted_i_single] = STATE(3377), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3852), + [sym_charlist] = STATE(3852), + [sym_sigil] = STATE(3852), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(3852), + [sym_tuple] = STATE(3852), + [sym_bitstring] = STATE(3852), + [sym_map] = STATE(3852), + [sym_unary_operator] = STATE(3852), + [sym_binary_operator] = STATE(3852), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3852), + [sym_call] = STATE(3852), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3232), - [sym_stab_clause] = STATE(4346), - [sym__stab_clause_left] = STATE(5025), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(3232), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3852), + [sym_stab_clause] = STATE(4963), + [sym__stab_clause_left] = STATE(5613), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(3852), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(824), [aux_sym_identifier_token1] = ACTIONS(826), @@ -41034,54 +41672,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(868), }, [126] = { - [sym__expression] = STATE(3232), - [sym_block] = STATE(3232), + [sym__expression] = STATE(3852), + [sym_block] = STATE(3852), [sym__identifier] = STATE(64), [sym_identifier] = STATE(64), [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3232), - [sym_nil] = STATE(3232), - [sym__atom] = STATE(3232), - [sym_quoted_atom] = STATE(3232), - [sym__quoted_i_double] = STATE(3097), - [sym__quoted_i_single] = STATE(3101), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3232), - [sym_charlist] = STATE(3232), - [sym_sigil] = STATE(3232), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(3232), - [sym_tuple] = STATE(3232), - [sym_bitstring] = STATE(3232), - [sym_map] = STATE(3232), - [sym_unary_operator] = STATE(3232), - [sym_binary_operator] = STATE(3232), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3232), - [sym_call] = STATE(3232), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), + [sym_boolean] = STATE(3852), + [sym_nil] = STATE(3852), + [sym__atom] = STATE(3852), + [sym_quoted_atom] = STATE(3852), + [sym__quoted_i_double] = STATE(3376), + [sym__quoted_i_single] = STATE(3377), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3852), + [sym_charlist] = STATE(3852), + [sym_sigil] = STATE(3852), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(3852), + [sym_tuple] = STATE(3852), + [sym_bitstring] = STATE(3852), + [sym_map] = STATE(3852), + [sym_unary_operator] = STATE(3852), + [sym_binary_operator] = STATE(3852), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3852), + [sym_call] = STATE(3852), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3232), - [sym_stab_clause] = STATE(4429), - [sym__stab_clause_left] = STATE(5025), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(3232), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3852), + [sym_stab_clause] = STATE(4921), + [sym__stab_clause_left] = STATE(5613), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(3852), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(824), [aux_sym_identifier_token1] = ACTIONS(826), @@ -41170,54 +41808,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(868), }, [127] = { - [sym__expression] = STATE(3232), - [sym_block] = STATE(3232), + [sym__expression] = STATE(3852), + [sym_block] = STATE(3852), [sym__identifier] = STATE(64), [sym_identifier] = STATE(64), [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3232), - [sym_nil] = STATE(3232), - [sym__atom] = STATE(3232), - [sym_quoted_atom] = STATE(3232), - [sym__quoted_i_double] = STATE(3097), - [sym__quoted_i_single] = STATE(3101), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3232), - [sym_charlist] = STATE(3232), - [sym_sigil] = STATE(3232), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(3232), - [sym_tuple] = STATE(3232), - [sym_bitstring] = STATE(3232), - [sym_map] = STATE(3232), - [sym_unary_operator] = STATE(3232), - [sym_binary_operator] = STATE(3232), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3232), - [sym_call] = STATE(3232), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), + [sym_boolean] = STATE(3852), + [sym_nil] = STATE(3852), + [sym__atom] = STATE(3852), + [sym_quoted_atom] = STATE(3852), + [sym__quoted_i_double] = STATE(3376), + [sym__quoted_i_single] = STATE(3377), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3852), + [sym_charlist] = STATE(3852), + [sym_sigil] = STATE(3852), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(3852), + [sym_tuple] = STATE(3852), + [sym_bitstring] = STATE(3852), + [sym_map] = STATE(3852), + [sym_unary_operator] = STATE(3852), + [sym_binary_operator] = STATE(3852), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3852), + [sym_call] = STATE(3852), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3232), - [sym_stab_clause] = STATE(4382), - [sym__stab_clause_left] = STATE(5025), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(3232), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3852), + [sym_stab_clause] = STATE(4940), + [sym__stab_clause_left] = STATE(5613), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(3852), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(824), [aux_sym_identifier_token1] = ACTIONS(826), @@ -41306,54 +41944,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(868), }, [128] = { - [sym__expression] = STATE(3232), - [sym_block] = STATE(3232), + [sym__expression] = STATE(3852), + [sym_block] = STATE(3852), [sym__identifier] = STATE(64), [sym_identifier] = STATE(64), [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3232), - [sym_nil] = STATE(3232), - [sym__atom] = STATE(3232), - [sym_quoted_atom] = STATE(3232), - [sym__quoted_i_double] = STATE(3097), - [sym__quoted_i_single] = STATE(3101), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3232), - [sym_charlist] = STATE(3232), - [sym_sigil] = STATE(3232), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(3232), - [sym_tuple] = STATE(3232), - [sym_bitstring] = STATE(3232), - [sym_map] = STATE(3232), - [sym_unary_operator] = STATE(3232), - [sym_binary_operator] = STATE(3232), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3232), - [sym_call] = STATE(3232), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), + [sym_boolean] = STATE(3852), + [sym_nil] = STATE(3852), + [sym__atom] = STATE(3852), + [sym_quoted_atom] = STATE(3852), + [sym__quoted_i_double] = STATE(3376), + [sym__quoted_i_single] = STATE(3377), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3852), + [sym_charlist] = STATE(3852), + [sym_sigil] = STATE(3852), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(3852), + [sym_tuple] = STATE(3852), + [sym_bitstring] = STATE(3852), + [sym_map] = STATE(3852), + [sym_unary_operator] = STATE(3852), + [sym_binary_operator] = STATE(3852), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3852), + [sym_call] = STATE(3852), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3232), - [sym_stab_clause] = STATE(4425), - [sym__stab_clause_left] = STATE(5025), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(3232), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3852), + [sym_stab_clause] = STATE(5002), + [sym__stab_clause_left] = STATE(5613), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(3852), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(824), [aux_sym_identifier_token1] = ACTIONS(826), @@ -41442,54 +42080,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(868), }, [129] = { - [sym__expression] = STATE(3232), - [sym_block] = STATE(3232), + [sym__expression] = STATE(3852), + [sym_block] = STATE(3852), [sym__identifier] = STATE(64), [sym_identifier] = STATE(64), [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3232), - [sym_nil] = STATE(3232), - [sym__atom] = STATE(3232), - [sym_quoted_atom] = STATE(3232), - [sym__quoted_i_double] = STATE(3097), - [sym__quoted_i_single] = STATE(3101), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3232), - [sym_charlist] = STATE(3232), - [sym_sigil] = STATE(3232), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(3232), - [sym_tuple] = STATE(3232), - [sym_bitstring] = STATE(3232), - [sym_map] = STATE(3232), - [sym_unary_operator] = STATE(3232), - [sym_binary_operator] = STATE(3232), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3232), - [sym_call] = STATE(3232), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), + [sym_boolean] = STATE(3852), + [sym_nil] = STATE(3852), + [sym__atom] = STATE(3852), + [sym_quoted_atom] = STATE(3852), + [sym__quoted_i_double] = STATE(3376), + [sym__quoted_i_single] = STATE(3377), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3852), + [sym_charlist] = STATE(3852), + [sym_sigil] = STATE(3852), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(3852), + [sym_tuple] = STATE(3852), + [sym_bitstring] = STATE(3852), + [sym_map] = STATE(3852), + [sym_unary_operator] = STATE(3852), + [sym_binary_operator] = STATE(3852), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3852), + [sym_call] = STATE(3852), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3232), - [sym_stab_clause] = STATE(4355), - [sym__stab_clause_left] = STATE(5025), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(3232), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3852), + [sym_stab_clause] = STATE(5526), + [sym__stab_clause_left] = STATE(5613), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(3852), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(824), [aux_sym_identifier_token1] = ACTIONS(826), @@ -41578,54 +42216,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(868), }, [130] = { - [sym__expression] = STATE(3232), - [sym_block] = STATE(3232), + [sym__expression] = STATE(3852), + [sym_block] = STATE(3852), [sym__identifier] = STATE(64), [sym_identifier] = STATE(64), [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3232), - [sym_nil] = STATE(3232), - [sym__atom] = STATE(3232), - [sym_quoted_atom] = STATE(3232), - [sym__quoted_i_double] = STATE(3097), - [sym__quoted_i_single] = STATE(3101), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3232), - [sym_charlist] = STATE(3232), - [sym_sigil] = STATE(3232), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(3232), - [sym_tuple] = STATE(3232), - [sym_bitstring] = STATE(3232), - [sym_map] = STATE(3232), - [sym_unary_operator] = STATE(3232), - [sym_binary_operator] = STATE(3232), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3232), - [sym_call] = STATE(3232), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), + [sym_boolean] = STATE(3852), + [sym_nil] = STATE(3852), + [sym__atom] = STATE(3852), + [sym_quoted_atom] = STATE(3852), + [sym__quoted_i_double] = STATE(3376), + [sym__quoted_i_single] = STATE(3377), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3852), + [sym_charlist] = STATE(3852), + [sym_sigil] = STATE(3852), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(3852), + [sym_tuple] = STATE(3852), + [sym_bitstring] = STATE(3852), + [sym_map] = STATE(3852), + [sym_unary_operator] = STATE(3852), + [sym_binary_operator] = STATE(3852), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3852), + [sym_call] = STATE(3852), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3232), - [sym_stab_clause] = STATE(4329), - [sym__stab_clause_left] = STATE(5025), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(3232), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3852), + [sym_stab_clause] = STATE(5031), + [sym__stab_clause_left] = STATE(5613), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(3852), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(824), [aux_sym_identifier_token1] = ACTIONS(826), @@ -41714,54 +42352,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(868), }, [131] = { - [sym__expression] = STATE(3232), - [sym_block] = STATE(3232), + [sym__expression] = STATE(3852), + [sym_block] = STATE(3852), [sym__identifier] = STATE(64), [sym_identifier] = STATE(64), [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3232), - [sym_nil] = STATE(3232), - [sym__atom] = STATE(3232), - [sym_quoted_atom] = STATE(3232), - [sym__quoted_i_double] = STATE(3097), - [sym__quoted_i_single] = STATE(3101), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3232), - [sym_charlist] = STATE(3232), - [sym_sigil] = STATE(3232), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(3232), - [sym_tuple] = STATE(3232), - [sym_bitstring] = STATE(3232), - [sym_map] = STATE(3232), - [sym_unary_operator] = STATE(3232), - [sym_binary_operator] = STATE(3232), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3232), - [sym_call] = STATE(3232), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), + [sym_boolean] = STATE(3852), + [sym_nil] = STATE(3852), + [sym__atom] = STATE(3852), + [sym_quoted_atom] = STATE(3852), + [sym__quoted_i_double] = STATE(3376), + [sym__quoted_i_single] = STATE(3377), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3852), + [sym_charlist] = STATE(3852), + [sym_sigil] = STATE(3852), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(3852), + [sym_tuple] = STATE(3852), + [sym_bitstring] = STATE(3852), + [sym_map] = STATE(3852), + [sym_unary_operator] = STATE(3852), + [sym_binary_operator] = STATE(3852), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3852), + [sym_call] = STATE(3852), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3232), - [sym_stab_clause] = STATE(4403), - [sym__stab_clause_left] = STATE(5025), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(3232), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3852), + [sym_stab_clause] = STATE(4929), + [sym__stab_clause_left] = STATE(5613), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(3852), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(824), [aux_sym_identifier_token1] = ACTIONS(826), @@ -41850,54 +42488,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(868), }, [132] = { - [sym__expression] = STATE(3232), - [sym_block] = STATE(3232), + [sym__expression] = STATE(3852), + [sym_block] = STATE(3852), [sym__identifier] = STATE(64), [sym_identifier] = STATE(64), [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3232), - [sym_nil] = STATE(3232), - [sym__atom] = STATE(3232), - [sym_quoted_atom] = STATE(3232), - [sym__quoted_i_double] = STATE(3097), - [sym__quoted_i_single] = STATE(3101), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3232), - [sym_charlist] = STATE(3232), - [sym_sigil] = STATE(3232), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(3232), - [sym_tuple] = STATE(3232), - [sym_bitstring] = STATE(3232), - [sym_map] = STATE(3232), - [sym_unary_operator] = STATE(3232), - [sym_binary_operator] = STATE(3232), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3232), - [sym_call] = STATE(3232), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), + [sym_boolean] = STATE(3852), + [sym_nil] = STATE(3852), + [sym__atom] = STATE(3852), + [sym_quoted_atom] = STATE(3852), + [sym__quoted_i_double] = STATE(3376), + [sym__quoted_i_single] = STATE(3377), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3852), + [sym_charlist] = STATE(3852), + [sym_sigil] = STATE(3852), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(3852), + [sym_tuple] = STATE(3852), + [sym_bitstring] = STATE(3852), + [sym_map] = STATE(3852), + [sym_unary_operator] = STATE(3852), + [sym_binary_operator] = STATE(3852), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3852), + [sym_call] = STATE(3852), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3232), - [sym_stab_clause] = STATE(4397), - [sym__stab_clause_left] = STATE(5025), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(3232), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3852), + [sym_stab_clause] = STATE(4406), + [sym__stab_clause_left] = STATE(5656), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(3852), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(824), [aux_sym_identifier_token1] = ACTIONS(826), @@ -41975,7 +42613,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(39), [anon_sym_STAR_STAR] = ACTIONS(39), [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(862), + [anon_sym_DASH_GT] = ACTIONS(105), [anon_sym_DOT] = ACTIONS(39), [anon_sym_fn] = ACTIONS(864), [sym_comment] = ACTIONS(5), @@ -41986,54 +42624,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(868), }, [133] = { - [sym__expression] = STATE(3232), - [sym_block] = STATE(3232), + [sym__expression] = STATE(3852), + [sym_block] = STATE(3852), [sym__identifier] = STATE(64), [sym_identifier] = STATE(64), [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3232), - [sym_nil] = STATE(3232), - [sym__atom] = STATE(3232), - [sym_quoted_atom] = STATE(3232), - [sym__quoted_i_double] = STATE(3097), - [sym__quoted_i_single] = STATE(3101), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3232), - [sym_charlist] = STATE(3232), - [sym_sigil] = STATE(3232), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(3232), - [sym_tuple] = STATE(3232), - [sym_bitstring] = STATE(3232), - [sym_map] = STATE(3232), - [sym_unary_operator] = STATE(3232), - [sym_binary_operator] = STATE(3232), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3232), - [sym_call] = STATE(3232), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), + [sym_boolean] = STATE(3852), + [sym_nil] = STATE(3852), + [sym__atom] = STATE(3852), + [sym_quoted_atom] = STATE(3852), + [sym__quoted_i_double] = STATE(3376), + [sym__quoted_i_single] = STATE(3377), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3852), + [sym_charlist] = STATE(3852), + [sym_sigil] = STATE(3852), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(3852), + [sym_tuple] = STATE(3852), + [sym_bitstring] = STATE(3852), + [sym_map] = STATE(3852), + [sym_unary_operator] = STATE(3852), + [sym_binary_operator] = STATE(3852), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3852), + [sym_call] = STATE(3852), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3232), - [sym_stab_clause] = STATE(4372), - [sym__stab_clause_left] = STATE(5025), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(3232), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3852), + [sym_stab_clause] = STATE(4903), + [sym__stab_clause_left] = STATE(5613), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(3852), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(824), [aux_sym_identifier_token1] = ACTIONS(826), @@ -42122,54 +42760,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(868), }, [134] = { - [sym__expression] = STATE(3232), - [sym_block] = STATE(3232), + [sym__expression] = STATE(3852), + [sym_block] = STATE(3852), [sym__identifier] = STATE(64), [sym_identifier] = STATE(64), [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3232), - [sym_nil] = STATE(3232), - [sym__atom] = STATE(3232), - [sym_quoted_atom] = STATE(3232), - [sym__quoted_i_double] = STATE(3097), - [sym__quoted_i_single] = STATE(3101), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3232), - [sym_charlist] = STATE(3232), - [sym_sigil] = STATE(3232), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(3232), - [sym_tuple] = STATE(3232), - [sym_bitstring] = STATE(3232), - [sym_map] = STATE(3232), - [sym_unary_operator] = STATE(3232), - [sym_binary_operator] = STATE(3232), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3232), - [sym_call] = STATE(3232), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), + [sym_boolean] = STATE(3852), + [sym_nil] = STATE(3852), + [sym__atom] = STATE(3852), + [sym_quoted_atom] = STATE(3852), + [sym__quoted_i_double] = STATE(3376), + [sym__quoted_i_single] = STATE(3377), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3852), + [sym_charlist] = STATE(3852), + [sym_sigil] = STATE(3852), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(3852), + [sym_tuple] = STATE(3852), + [sym_bitstring] = STATE(3852), + [sym_map] = STATE(3852), + [sym_unary_operator] = STATE(3852), + [sym_binary_operator] = STATE(3852), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3852), + [sym_call] = STATE(3852), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3232), - [sym_stab_clause] = STATE(4930), - [sym__stab_clause_left] = STATE(5025), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(3232), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3852), + [sym_stab_clause] = STATE(5026), + [sym__stab_clause_left] = STATE(5613), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(3852), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(824), [aux_sym_identifier_token1] = ACTIONS(826), @@ -42258,326 +42896,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(868), }, [135] = { - [sym__expression] = STATE(3232), - [sym_block] = STATE(3232), + [sym__expression] = STATE(3852), + [sym_block] = STATE(3852), [sym__identifier] = STATE(64), [sym_identifier] = STATE(64), [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3232), - [sym_nil] = STATE(3232), - [sym__atom] = STATE(3232), - [sym_quoted_atom] = STATE(3232), - [sym__quoted_i_double] = STATE(3097), - [sym__quoted_i_single] = STATE(3101), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3232), - [sym_charlist] = STATE(3232), - [sym_sigil] = STATE(3232), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(3232), - [sym_tuple] = STATE(3232), - [sym_bitstring] = STATE(3232), - [sym_map] = STATE(3232), - [sym_unary_operator] = STATE(3232), - [sym_binary_operator] = STATE(3232), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3232), - [sym_call] = STATE(3232), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), + [sym_boolean] = STATE(3852), + [sym_nil] = STATE(3852), + [sym__atom] = STATE(3852), + [sym_quoted_atom] = STATE(3852), + [sym__quoted_i_double] = STATE(3376), + [sym__quoted_i_single] = STATE(3377), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3852), + [sym_charlist] = STATE(3852), + [sym_sigil] = STATE(3852), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(3852), + [sym_tuple] = STATE(3852), + [sym_bitstring] = STATE(3852), + [sym_map] = STATE(3852), + [sym_unary_operator] = STATE(3852), + [sym_binary_operator] = STATE(3852), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3852), + [sym_call] = STATE(3852), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3232), - [sym_stab_clause] = STATE(4319), - [sym__stab_clause_left] = STATE(5025), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(3232), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(824), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(828), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(832), - [sym_integer] = ACTIONS(832), - [sym_float] = ACTIONS(832), - [sym_char] = ACTIONS(832), - [anon_sym_true] = ACTIONS(834), - [anon_sym_false] = ACTIONS(834), - [anon_sym_nil] = ACTIONS(836), - [sym_atom] = ACTIONS(832), - [anon_sym_DQUOTE] = ACTIONS(838), - [anon_sym_SQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(850), - [sym_keyword] = ACTIONS(93), - [anon_sym_LT_LT] = ACTIONS(852), - [anon_sym_PERCENT] = ACTIONS(854), - [anon_sym_AMP] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_BANG] = ACTIONS(858), - [anon_sym_CARET] = ACTIONS(858), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), - [anon_sym_not] = ACTIONS(858), - [anon_sym_AT] = ACTIONS(860), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(862), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(864), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(866), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(868), - }, - [136] = { - [sym__expression] = STATE(3232), - [sym_block] = STATE(3232), - [sym__identifier] = STATE(64), - [sym_identifier] = STATE(64), - [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3232), - [sym_nil] = STATE(3232), - [sym__atom] = STATE(3232), - [sym_quoted_atom] = STATE(3232), - [sym__quoted_i_double] = STATE(3097), - [sym__quoted_i_single] = STATE(3101), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3232), - [sym_charlist] = STATE(3232), - [sym_sigil] = STATE(3232), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(3232), - [sym_tuple] = STATE(3232), - [sym_bitstring] = STATE(3232), - [sym_map] = STATE(3232), - [sym_unary_operator] = STATE(3232), - [sym_binary_operator] = STATE(3232), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3232), - [sym_call] = STATE(3232), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), - [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3232), - [sym_stab_clause] = STATE(3800), - [sym__stab_clause_left] = STATE(4978), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(3232), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(824), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(828), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(832), - [sym_integer] = ACTIONS(832), - [sym_float] = ACTIONS(832), - [sym_char] = ACTIONS(832), - [anon_sym_true] = ACTIONS(834), - [anon_sym_false] = ACTIONS(834), - [anon_sym_nil] = ACTIONS(836), - [sym_atom] = ACTIONS(832), - [anon_sym_DQUOTE] = ACTIONS(838), - [anon_sym_SQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(850), - [sym_keyword] = ACTIONS(93), - [anon_sym_LT_LT] = ACTIONS(852), - [anon_sym_PERCENT] = ACTIONS(854), - [anon_sym_AMP] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_BANG] = ACTIONS(858), - [anon_sym_CARET] = ACTIONS(858), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), - [anon_sym_not] = ACTIONS(858), - [anon_sym_AT] = ACTIONS(860), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(864), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(866), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(868), - }, - [137] = { - [sym__expression] = STATE(3232), - [sym_block] = STATE(3232), - [sym__identifier] = STATE(64), - [sym_identifier] = STATE(64), - [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3232), - [sym_nil] = STATE(3232), - [sym__atom] = STATE(3232), - [sym_quoted_atom] = STATE(3232), - [sym__quoted_i_double] = STATE(3097), - [sym__quoted_i_single] = STATE(3101), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3232), - [sym_charlist] = STATE(3232), - [sym_sigil] = STATE(3232), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(3232), - [sym_tuple] = STATE(3232), - [sym_bitstring] = STATE(3232), - [sym_map] = STATE(3232), - [sym_unary_operator] = STATE(3232), - [sym_binary_operator] = STATE(3232), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3232), - [sym_call] = STATE(3232), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), - [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3232), - [sym_stab_clause] = STATE(3800), - [sym__stab_clause_left] = STATE(5021), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(3232), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3852), + [sym_stab_clause] = STATE(4406), + [sym__stab_clause_left] = STATE(5624), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(3852), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(824), [aux_sym_identifier_token1] = ACTIONS(826), @@ -42665,55 +43031,327 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(868), }, - [138] = { - [sym__expression] = STATE(3232), - [sym_block] = STATE(3232), + [136] = { + [sym__expression] = STATE(3852), + [sym_block] = STATE(3852), [sym__identifier] = STATE(64), [sym_identifier] = STATE(64), [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3232), - [sym_nil] = STATE(3232), - [sym__atom] = STATE(3232), - [sym_quoted_atom] = STATE(3232), - [sym__quoted_i_double] = STATE(3097), - [sym__quoted_i_single] = STATE(3101), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3232), - [sym_charlist] = STATE(3232), - [sym_sigil] = STATE(3232), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(3232), - [sym_tuple] = STATE(3232), - [sym_bitstring] = STATE(3232), - [sym_map] = STATE(3232), - [sym_unary_operator] = STATE(3232), - [sym_binary_operator] = STATE(3232), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3232), - [sym_call] = STATE(3232), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), + [sym_boolean] = STATE(3852), + [sym_nil] = STATE(3852), + [sym__atom] = STATE(3852), + [sym_quoted_atom] = STATE(3852), + [sym__quoted_i_double] = STATE(3376), + [sym__quoted_i_single] = STATE(3377), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3852), + [sym_charlist] = STATE(3852), + [sym_sigil] = STATE(3852), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(3852), + [sym_tuple] = STATE(3852), + [sym_bitstring] = STATE(3852), + [sym_map] = STATE(3852), + [sym_unary_operator] = STATE(3852), + [sym_binary_operator] = STATE(3852), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3852), + [sym_call] = STATE(3852), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3232), - [sym_stab_clause] = STATE(4349), - [sym__stab_clause_left] = STATE(5025), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(3232), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3852), + [sym_stab_clause] = STATE(4980), + [sym__stab_clause_left] = STATE(5613), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(3852), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(824), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(832), + [sym_integer] = ACTIONS(832), + [sym_float] = ACTIONS(832), + [sym_char] = ACTIONS(832), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(862), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [137] = { + [sym__expression] = STATE(3852), + [sym_block] = STATE(3852), + [sym__identifier] = STATE(64), + [sym_identifier] = STATE(64), + [sym_special_identifier] = STATE(64), + [sym_boolean] = STATE(3852), + [sym_nil] = STATE(3852), + [sym__atom] = STATE(3852), + [sym_quoted_atom] = STATE(3852), + [sym__quoted_i_double] = STATE(3376), + [sym__quoted_i_single] = STATE(3377), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3852), + [sym_charlist] = STATE(3852), + [sym_sigil] = STATE(3852), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(3852), + [sym_tuple] = STATE(3852), + [sym_bitstring] = STATE(3852), + [sym_map] = STATE(3852), + [sym_unary_operator] = STATE(3852), + [sym_binary_operator] = STATE(3852), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3852), + [sym_call] = STATE(3852), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), + [sym__remote_dot] = STATE(55), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3852), + [sym_stab_clause] = STATE(4960), + [sym__stab_clause_left] = STATE(5613), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(3852), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(824), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(832), + [sym_integer] = ACTIONS(832), + [sym_float] = ACTIONS(832), + [sym_char] = ACTIONS(832), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(862), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [138] = { + [sym__expression] = STATE(3852), + [sym_block] = STATE(3852), + [sym__identifier] = STATE(64), + [sym_identifier] = STATE(64), + [sym_special_identifier] = STATE(64), + [sym_boolean] = STATE(3852), + [sym_nil] = STATE(3852), + [sym__atom] = STATE(3852), + [sym_quoted_atom] = STATE(3852), + [sym__quoted_i_double] = STATE(3376), + [sym__quoted_i_single] = STATE(3377), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3852), + [sym_charlist] = STATE(3852), + [sym_sigil] = STATE(3852), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(3852), + [sym_tuple] = STATE(3852), + [sym_bitstring] = STATE(3852), + [sym_map] = STATE(3852), + [sym_unary_operator] = STATE(3852), + [sym_binary_operator] = STATE(3852), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3852), + [sym_call] = STATE(3852), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), + [sym__remote_dot] = STATE(55), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3852), + [sym_stab_clause] = STATE(5033), + [sym__stab_clause_left] = STATE(5613), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(3852), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(824), [aux_sym_identifier_token1] = ACTIONS(826), @@ -42802,54 +43440,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(868), }, [139] = { - [sym__expression] = STATE(3232), - [sym_block] = STATE(3232), + [sym__expression] = STATE(3852), + [sym_block] = STATE(3852), [sym__identifier] = STATE(64), [sym_identifier] = STATE(64), [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3232), - [sym_nil] = STATE(3232), - [sym__atom] = STATE(3232), - [sym_quoted_atom] = STATE(3232), - [sym__quoted_i_double] = STATE(3097), - [sym__quoted_i_single] = STATE(3101), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3232), - [sym_charlist] = STATE(3232), - [sym_sigil] = STATE(3232), - [sym_keywords] = STATE(4872), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(3232), - [sym_tuple] = STATE(3232), - [sym_bitstring] = STATE(3232), - [sym_map] = STATE(3232), - [sym_unary_operator] = STATE(3232), - [sym_binary_operator] = STATE(3232), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3232), - [sym_call] = STATE(3232), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), + [sym_boolean] = STATE(3852), + [sym_nil] = STATE(3852), + [sym__atom] = STATE(3852), + [sym_quoted_atom] = STATE(3852), + [sym__quoted_i_double] = STATE(3376), + [sym__quoted_i_single] = STATE(3377), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3852), + [sym_charlist] = STATE(3852), + [sym_sigil] = STATE(3852), + [sym_keywords] = STATE(5469), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(3852), + [sym_tuple] = STATE(3852), + [sym_bitstring] = STATE(3852), + [sym_map] = STATE(3852), + [sym_unary_operator] = STATE(3852), + [sym_binary_operator] = STATE(3852), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3852), + [sym_call] = STATE(3852), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3232), - [sym_stab_clause] = STATE(4412), - [sym__stab_clause_left] = STATE(5025), - [sym__stab_clause_arguments_with_parentheses] = STATE(4876), - [sym__stab_clause_arguments_without_parentheses] = STATE(4877), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5016), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5015), - [sym_anonymous_function] = STATE(3232), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3852), + [sym_stab_clause] = STATE(5029), + [sym__stab_clause_left] = STATE(5613), + [sym__stab_clause_arguments_with_parentheses] = STATE(5472), + [sym__stab_clause_arguments_without_parentheses] = STATE(5473), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5619), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5618), + [sym_anonymous_function] = STATE(3852), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(824), [aux_sym_identifier_token1] = ACTIONS(826), @@ -42938,49 +43576,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(868), }, [140] = { - [sym__expression] = STATE(2108), - [sym_block] = STATE(2108), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2108), - [sym_nil] = STATE(2108), - [sym__atom] = STATE(2108), - [sym_quoted_atom] = STATE(2108), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2108), - [sym_charlist] = STATE(2108), - [sym_sigil] = STATE(2108), - [sym_list] = STATE(2108), - [sym_tuple] = STATE(2108), - [sym_bitstring] = STATE(2108), - [sym_map] = STATE(2108), - [sym_unary_operator] = STATE(2108), - [sym_binary_operator] = STATE(2108), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2108), - [sym_call] = STATE(2108), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [sym__expression] = STATE(2639), + [sym_block] = STATE(2639), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2639), + [sym_nil] = STATE(2639), + [sym__atom] = STATE(2639), + [sym_quoted_atom] = STATE(2639), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2639), + [sym_charlist] = STATE(2639), + [sym_sigil] = STATE(2639), + [sym_list] = STATE(2639), + [sym_tuple] = STATE(2639), + [sym_bitstring] = STATE(2639), + [sym_map] = STATE(2639), + [sym_unary_operator] = STATE(2639), + [sym_binary_operator] = STATE(2639), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2639), + [sym_call] = STATE(2639), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_after_block] = STATE(3700), - [sym_rescue_block] = STATE(3700), - [sym_catch_block] = STATE(3700), - [sym_else_block] = STATE(3700), - [sym_access_call] = STATE(2108), - [sym_anonymous_function] = STATE(2108), - [aux_sym_do_block_repeat1] = STATE(3700), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_after_block] = STATE(4318), + [sym_rescue_block] = STATE(4318), + [sym_catch_block] = STATE(4318), + [sym_else_block] = STATE(4318), + [sym_access_call] = STATE(2639), + [sym_anonymous_function] = STATE(2639), + [aux_sym_do_block_repeat1] = STATE(4318), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), [aux_sym_identifier_token1] = ACTIONS(67), @@ -43073,49 +43711,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(982), }, [141] = { - [sym__expression] = STATE(2108), - [sym_block] = STATE(2108), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2108), - [sym_nil] = STATE(2108), - [sym__atom] = STATE(2108), - [sym_quoted_atom] = STATE(2108), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2108), - [sym_charlist] = STATE(2108), - [sym_sigil] = STATE(2108), - [sym_list] = STATE(2108), - [sym_tuple] = STATE(2108), - [sym_bitstring] = STATE(2108), - [sym_map] = STATE(2108), - [sym_unary_operator] = STATE(2108), - [sym_binary_operator] = STATE(2108), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2108), - [sym_call] = STATE(2108), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [sym__expression] = STATE(2639), + [sym_block] = STATE(2639), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2639), + [sym_nil] = STATE(2639), + [sym__atom] = STATE(2639), + [sym_quoted_atom] = STATE(2639), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2639), + [sym_charlist] = STATE(2639), + [sym_sigil] = STATE(2639), + [sym_list] = STATE(2639), + [sym_tuple] = STATE(2639), + [sym_bitstring] = STATE(2639), + [sym_map] = STATE(2639), + [sym_unary_operator] = STATE(2639), + [sym_binary_operator] = STATE(2639), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2639), + [sym_call] = STATE(2639), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_after_block] = STATE(3665), - [sym_rescue_block] = STATE(3665), - [sym_catch_block] = STATE(3665), - [sym_else_block] = STATE(3665), - [sym_access_call] = STATE(2108), - [sym_anonymous_function] = STATE(2108), - [aux_sym_do_block_repeat1] = STATE(3665), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_after_block] = STATE(4293), + [sym_rescue_block] = STATE(4293), + [sym_catch_block] = STATE(4293), + [sym_else_block] = STATE(4293), + [sym_access_call] = STATE(2639), + [sym_anonymous_function] = STATE(2639), + [aux_sym_do_block_repeat1] = STATE(4293), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), [aux_sym_identifier_token1] = ACTIONS(67), @@ -43208,49 +43846,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(982), }, [142] = { - [sym__expression] = STATE(2108), - [sym_block] = STATE(2108), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2108), - [sym_nil] = STATE(2108), - [sym__atom] = STATE(2108), - [sym_quoted_atom] = STATE(2108), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2108), - [sym_charlist] = STATE(2108), - [sym_sigil] = STATE(2108), - [sym_list] = STATE(2108), - [sym_tuple] = STATE(2108), - [sym_bitstring] = STATE(2108), - [sym_map] = STATE(2108), - [sym_unary_operator] = STATE(2108), - [sym_binary_operator] = STATE(2108), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2108), - [sym_call] = STATE(2108), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [sym__expression] = STATE(2639), + [sym_block] = STATE(2639), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2639), + [sym_nil] = STATE(2639), + [sym__atom] = STATE(2639), + [sym_quoted_atom] = STATE(2639), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2639), + [sym_charlist] = STATE(2639), + [sym_sigil] = STATE(2639), + [sym_list] = STATE(2639), + [sym_tuple] = STATE(2639), + [sym_bitstring] = STATE(2639), + [sym_map] = STATE(2639), + [sym_unary_operator] = STATE(2639), + [sym_binary_operator] = STATE(2639), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2639), + [sym_call] = STATE(2639), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_after_block] = STATE(3673), - [sym_rescue_block] = STATE(3673), - [sym_catch_block] = STATE(3673), - [sym_else_block] = STATE(3673), - [sym_access_call] = STATE(2108), - [sym_anonymous_function] = STATE(2108), - [aux_sym_do_block_repeat1] = STATE(3673), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_after_block] = STATE(4284), + [sym_rescue_block] = STATE(4284), + [sym_catch_block] = STATE(4284), + [sym_else_block] = STATE(4284), + [sym_access_call] = STATE(2639), + [sym_anonymous_function] = STATE(2639), + [aux_sym_do_block_repeat1] = STATE(4284), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), [aux_sym_identifier_token1] = ACTIONS(67), @@ -43343,49 +43981,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(982), }, [143] = { - [sym__expression] = STATE(2108), - [sym_block] = STATE(2108), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2108), - [sym_nil] = STATE(2108), - [sym__atom] = STATE(2108), - [sym_quoted_atom] = STATE(2108), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2108), - [sym_charlist] = STATE(2108), - [sym_sigil] = STATE(2108), - [sym_list] = STATE(2108), - [sym_tuple] = STATE(2108), - [sym_bitstring] = STATE(2108), - [sym_map] = STATE(2108), - [sym_unary_operator] = STATE(2108), - [sym_binary_operator] = STATE(2108), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2108), - [sym_call] = STATE(2108), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [sym__expression] = STATE(2639), + [sym_block] = STATE(2639), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2639), + [sym_nil] = STATE(2639), + [sym__atom] = STATE(2639), + [sym_quoted_atom] = STATE(2639), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2639), + [sym_charlist] = STATE(2639), + [sym_sigil] = STATE(2639), + [sym_list] = STATE(2639), + [sym_tuple] = STATE(2639), + [sym_bitstring] = STATE(2639), + [sym_map] = STATE(2639), + [sym_unary_operator] = STATE(2639), + [sym_binary_operator] = STATE(2639), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2639), + [sym_call] = STATE(2639), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_after_block] = STATE(3688), - [sym_rescue_block] = STATE(3688), - [sym_catch_block] = STATE(3688), - [sym_else_block] = STATE(3688), - [sym_access_call] = STATE(2108), - [sym_anonymous_function] = STATE(2108), - [aux_sym_do_block_repeat1] = STATE(3688), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_after_block] = STATE(4314), + [sym_rescue_block] = STATE(4314), + [sym_catch_block] = STATE(4314), + [sym_else_block] = STATE(4314), + [sym_access_call] = STATE(2639), + [sym_anonymous_function] = STATE(2639), + [aux_sym_do_block_repeat1] = STATE(4314), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), [aux_sym_identifier_token1] = ACTIONS(67), @@ -43478,49 +44116,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(982), }, [144] = { - [sym__expression] = STATE(2108), - [sym_block] = STATE(2108), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2108), - [sym_nil] = STATE(2108), - [sym__atom] = STATE(2108), - [sym_quoted_atom] = STATE(2108), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2108), - [sym_charlist] = STATE(2108), - [sym_sigil] = STATE(2108), - [sym_list] = STATE(2108), - [sym_tuple] = STATE(2108), - [sym_bitstring] = STATE(2108), - [sym_map] = STATE(2108), - [sym_unary_operator] = STATE(2108), - [sym_binary_operator] = STATE(2108), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2108), - [sym_call] = STATE(2108), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [sym__expression] = STATE(2639), + [sym_block] = STATE(2639), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2639), + [sym_nil] = STATE(2639), + [sym__atom] = STATE(2639), + [sym_quoted_atom] = STATE(2639), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2639), + [sym_charlist] = STATE(2639), + [sym_sigil] = STATE(2639), + [sym_list] = STATE(2639), + [sym_tuple] = STATE(2639), + [sym_bitstring] = STATE(2639), + [sym_map] = STATE(2639), + [sym_unary_operator] = STATE(2639), + [sym_binary_operator] = STATE(2639), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2639), + [sym_call] = STATE(2639), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_after_block] = STATE(3713), - [sym_rescue_block] = STATE(3713), - [sym_catch_block] = STATE(3713), - [sym_else_block] = STATE(3713), - [sym_access_call] = STATE(2108), - [sym_anonymous_function] = STATE(2108), - [aux_sym_do_block_repeat1] = STATE(3713), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_after_block] = STATE(4311), + [sym_rescue_block] = STATE(4311), + [sym_catch_block] = STATE(4311), + [sym_else_block] = STATE(4311), + [sym_access_call] = STATE(2639), + [sym_anonymous_function] = STATE(2639), + [aux_sym_do_block_repeat1] = STATE(4311), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), [aux_sym_identifier_token1] = ACTIONS(67), @@ -43613,49 +44251,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(982), }, [145] = { - [sym__expression] = STATE(2108), - [sym_block] = STATE(2108), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2108), - [sym_nil] = STATE(2108), - [sym__atom] = STATE(2108), - [sym_quoted_atom] = STATE(2108), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2108), - [sym_charlist] = STATE(2108), - [sym_sigil] = STATE(2108), - [sym_list] = STATE(2108), - [sym_tuple] = STATE(2108), - [sym_bitstring] = STATE(2108), - [sym_map] = STATE(2108), - [sym_unary_operator] = STATE(2108), - [sym_binary_operator] = STATE(2108), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2108), - [sym_call] = STATE(2108), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [sym__expression] = STATE(2639), + [sym_block] = STATE(2639), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2639), + [sym_nil] = STATE(2639), + [sym__atom] = STATE(2639), + [sym_quoted_atom] = STATE(2639), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2639), + [sym_charlist] = STATE(2639), + [sym_sigil] = STATE(2639), + [sym_list] = STATE(2639), + [sym_tuple] = STATE(2639), + [sym_bitstring] = STATE(2639), + [sym_map] = STATE(2639), + [sym_unary_operator] = STATE(2639), + [sym_binary_operator] = STATE(2639), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2639), + [sym_call] = STATE(2639), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_after_block] = STATE(3718), - [sym_rescue_block] = STATE(3718), - [sym_catch_block] = STATE(3718), - [sym_else_block] = STATE(3718), - [sym_access_call] = STATE(2108), - [sym_anonymous_function] = STATE(2108), - [aux_sym_do_block_repeat1] = STATE(3718), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_after_block] = STATE(4306), + [sym_rescue_block] = STATE(4306), + [sym_catch_block] = STATE(4306), + [sym_else_block] = STATE(4306), + [sym_access_call] = STATE(2639), + [sym_anonymous_function] = STATE(2639), + [aux_sym_do_block_repeat1] = STATE(4306), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), [aux_sym_identifier_token1] = ACTIONS(67), @@ -43748,49 +44386,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(982), }, [146] = { - [sym__expression] = STATE(2108), - [sym_block] = STATE(2108), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2108), - [sym_nil] = STATE(2108), - [sym__atom] = STATE(2108), - [sym_quoted_atom] = STATE(2108), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2108), - [sym_charlist] = STATE(2108), - [sym_sigil] = STATE(2108), - [sym_list] = STATE(2108), - [sym_tuple] = STATE(2108), - [sym_bitstring] = STATE(2108), - [sym_map] = STATE(2108), - [sym_unary_operator] = STATE(2108), - [sym_binary_operator] = STATE(2108), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2108), - [sym_call] = STATE(2108), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [sym__expression] = STATE(2639), + [sym_block] = STATE(2639), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2639), + [sym_nil] = STATE(2639), + [sym__atom] = STATE(2639), + [sym_quoted_atom] = STATE(2639), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2639), + [sym_charlist] = STATE(2639), + [sym_sigil] = STATE(2639), + [sym_list] = STATE(2639), + [sym_tuple] = STATE(2639), + [sym_bitstring] = STATE(2639), + [sym_map] = STATE(2639), + [sym_unary_operator] = STATE(2639), + [sym_binary_operator] = STATE(2639), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2639), + [sym_call] = STATE(2639), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_after_block] = STATE(3710), - [sym_rescue_block] = STATE(3710), - [sym_catch_block] = STATE(3710), - [sym_else_block] = STATE(3710), - [sym_access_call] = STATE(2108), - [sym_anonymous_function] = STATE(2108), - [aux_sym_do_block_repeat1] = STATE(3710), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_after_block] = STATE(4307), + [sym_rescue_block] = STATE(4307), + [sym_catch_block] = STATE(4307), + [sym_else_block] = STATE(4307), + [sym_access_call] = STATE(2639), + [sym_anonymous_function] = STATE(2639), + [aux_sym_do_block_repeat1] = STATE(4307), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), [aux_sym_identifier_token1] = ACTIONS(67), @@ -43883,49 +44521,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(982), }, [147] = { - [sym__expression] = STATE(2108), - [sym_block] = STATE(2108), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2108), - [sym_nil] = STATE(2108), - [sym__atom] = STATE(2108), - [sym_quoted_atom] = STATE(2108), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2108), - [sym_charlist] = STATE(2108), - [sym_sigil] = STATE(2108), - [sym_list] = STATE(2108), - [sym_tuple] = STATE(2108), - [sym_bitstring] = STATE(2108), - [sym_map] = STATE(2108), - [sym_unary_operator] = STATE(2108), - [sym_binary_operator] = STATE(2108), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2108), - [sym_call] = STATE(2108), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [sym__expression] = STATE(2639), + [sym_block] = STATE(2639), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2639), + [sym_nil] = STATE(2639), + [sym__atom] = STATE(2639), + [sym_quoted_atom] = STATE(2639), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2639), + [sym_charlist] = STATE(2639), + [sym_sigil] = STATE(2639), + [sym_list] = STATE(2639), + [sym_tuple] = STATE(2639), + [sym_bitstring] = STATE(2639), + [sym_map] = STATE(2639), + [sym_unary_operator] = STATE(2639), + [sym_binary_operator] = STATE(2639), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2639), + [sym_call] = STATE(2639), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_after_block] = STATE(3685), - [sym_rescue_block] = STATE(3685), - [sym_catch_block] = STATE(3685), - [sym_else_block] = STATE(3685), - [sym_access_call] = STATE(2108), - [sym_anonymous_function] = STATE(2108), - [aux_sym_do_block_repeat1] = STATE(3685), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_after_block] = STATE(4315), + [sym_rescue_block] = STATE(4315), + [sym_catch_block] = STATE(4315), + [sym_else_block] = STATE(4315), + [sym_access_call] = STATE(2639), + [sym_anonymous_function] = STATE(2639), + [aux_sym_do_block_repeat1] = STATE(4315), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), [aux_sym_identifier_token1] = ACTIONS(67), @@ -44018,49 +44656,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(982), }, [148] = { - [sym__expression] = STATE(2108), - [sym_block] = STATE(2108), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2108), - [sym_nil] = STATE(2108), - [sym__atom] = STATE(2108), - [sym_quoted_atom] = STATE(2108), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2108), - [sym_charlist] = STATE(2108), - [sym_sigil] = STATE(2108), - [sym_list] = STATE(2108), - [sym_tuple] = STATE(2108), - [sym_bitstring] = STATE(2108), - [sym_map] = STATE(2108), - [sym_unary_operator] = STATE(2108), - [sym_binary_operator] = STATE(2108), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2108), - [sym_call] = STATE(2108), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [sym__expression] = STATE(2639), + [sym_block] = STATE(2639), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2639), + [sym_nil] = STATE(2639), + [sym__atom] = STATE(2639), + [sym_quoted_atom] = STATE(2639), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2639), + [sym_charlist] = STATE(2639), + [sym_sigil] = STATE(2639), + [sym_list] = STATE(2639), + [sym_tuple] = STATE(2639), + [sym_bitstring] = STATE(2639), + [sym_map] = STATE(2639), + [sym_unary_operator] = STATE(2639), + [sym_binary_operator] = STATE(2639), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2639), + [sym_call] = STATE(2639), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_after_block] = STATE(3705), - [sym_rescue_block] = STATE(3705), - [sym_catch_block] = STATE(3705), - [sym_else_block] = STATE(3705), - [sym_access_call] = STATE(2108), - [sym_anonymous_function] = STATE(2108), - [aux_sym_do_block_repeat1] = STATE(3705), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_after_block] = STATE(4310), + [sym_rescue_block] = STATE(4310), + [sym_catch_block] = STATE(4310), + [sym_else_block] = STATE(4310), + [sym_access_call] = STATE(2639), + [sym_anonymous_function] = STATE(2639), + [aux_sym_do_block_repeat1] = STATE(4310), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), [aux_sym_identifier_token1] = ACTIONS(67), @@ -44153,49 +44791,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(982), }, [149] = { - [sym__expression] = STATE(2108), - [sym_block] = STATE(2108), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2108), - [sym_nil] = STATE(2108), - [sym__atom] = STATE(2108), - [sym_quoted_atom] = STATE(2108), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2108), - [sym_charlist] = STATE(2108), - [sym_sigil] = STATE(2108), - [sym_list] = STATE(2108), - [sym_tuple] = STATE(2108), - [sym_bitstring] = STATE(2108), - [sym_map] = STATE(2108), - [sym_unary_operator] = STATE(2108), - [sym_binary_operator] = STATE(2108), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2108), - [sym_call] = STATE(2108), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [sym__expression] = STATE(2639), + [sym_block] = STATE(2639), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2639), + [sym_nil] = STATE(2639), + [sym__atom] = STATE(2639), + [sym_quoted_atom] = STATE(2639), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2639), + [sym_charlist] = STATE(2639), + [sym_sigil] = STATE(2639), + [sym_list] = STATE(2639), + [sym_tuple] = STATE(2639), + [sym_bitstring] = STATE(2639), + [sym_map] = STATE(2639), + [sym_unary_operator] = STATE(2639), + [sym_binary_operator] = STATE(2639), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2639), + [sym_call] = STATE(2639), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_after_block] = STATE(3672), - [sym_rescue_block] = STATE(3672), - [sym_catch_block] = STATE(3672), - [sym_else_block] = STATE(3672), - [sym_access_call] = STATE(2108), - [sym_anonymous_function] = STATE(2108), - [aux_sym_do_block_repeat1] = STATE(3672), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_after_block] = STATE(4308), + [sym_rescue_block] = STATE(4308), + [sym_catch_block] = STATE(4308), + [sym_else_block] = STATE(4308), + [sym_access_call] = STATE(2639), + [sym_anonymous_function] = STATE(2639), + [aux_sym_do_block_repeat1] = STATE(4308), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), [aux_sym_identifier_token1] = ACTIONS(67), @@ -44288,49 +44926,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(982), }, [150] = { - [sym__expression] = STATE(2108), - [sym_block] = STATE(2108), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2108), - [sym_nil] = STATE(2108), - [sym__atom] = STATE(2108), - [sym_quoted_atom] = STATE(2108), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2108), - [sym_charlist] = STATE(2108), - [sym_sigil] = STATE(2108), - [sym_list] = STATE(2108), - [sym_tuple] = STATE(2108), - [sym_bitstring] = STATE(2108), - [sym_map] = STATE(2108), - [sym_unary_operator] = STATE(2108), - [sym_binary_operator] = STATE(2108), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2108), - [sym_call] = STATE(2108), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [sym__expression] = STATE(2639), + [sym_block] = STATE(2639), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2639), + [sym_nil] = STATE(2639), + [sym__atom] = STATE(2639), + [sym_quoted_atom] = STATE(2639), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2639), + [sym_charlist] = STATE(2639), + [sym_sigil] = STATE(2639), + [sym_list] = STATE(2639), + [sym_tuple] = STATE(2639), + [sym_bitstring] = STATE(2639), + [sym_map] = STATE(2639), + [sym_unary_operator] = STATE(2639), + [sym_binary_operator] = STATE(2639), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2639), + [sym_call] = STATE(2639), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_after_block] = STATE(3667), - [sym_rescue_block] = STATE(3667), - [sym_catch_block] = STATE(3667), - [sym_else_block] = STATE(3667), - [sym_access_call] = STATE(2108), - [sym_anonymous_function] = STATE(2108), - [aux_sym_do_block_repeat1] = STATE(3667), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_after_block] = STATE(4282), + [sym_rescue_block] = STATE(4282), + [sym_catch_block] = STATE(4282), + [sym_else_block] = STATE(4282), + [sym_access_call] = STATE(2639), + [sym_anonymous_function] = STATE(2639), + [aux_sym_do_block_repeat1] = STATE(4282), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), [aux_sym_identifier_token1] = ACTIONS(67), @@ -44423,49 +45061,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(982), }, [151] = { - [sym__expression] = STATE(2108), - [sym_block] = STATE(2108), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2108), - [sym_nil] = STATE(2108), - [sym__atom] = STATE(2108), - [sym_quoted_atom] = STATE(2108), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2108), - [sym_charlist] = STATE(2108), - [sym_sigil] = STATE(2108), - [sym_list] = STATE(2108), - [sym_tuple] = STATE(2108), - [sym_bitstring] = STATE(2108), - [sym_map] = STATE(2108), - [sym_unary_operator] = STATE(2108), - [sym_binary_operator] = STATE(2108), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2108), - [sym_call] = STATE(2108), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [sym__expression] = STATE(2639), + [sym_block] = STATE(2639), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2639), + [sym_nil] = STATE(2639), + [sym__atom] = STATE(2639), + [sym_quoted_atom] = STATE(2639), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2639), + [sym_charlist] = STATE(2639), + [sym_sigil] = STATE(2639), + [sym_list] = STATE(2639), + [sym_tuple] = STATE(2639), + [sym_bitstring] = STATE(2639), + [sym_map] = STATE(2639), + [sym_unary_operator] = STATE(2639), + [sym_binary_operator] = STATE(2639), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2639), + [sym_call] = STATE(2639), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_after_block] = STATE(3666), - [sym_rescue_block] = STATE(3666), - [sym_catch_block] = STATE(3666), - [sym_else_block] = STATE(3666), - [sym_access_call] = STATE(2108), - [sym_anonymous_function] = STATE(2108), - [aux_sym_do_block_repeat1] = STATE(3666), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_after_block] = STATE(4323), + [sym_rescue_block] = STATE(4323), + [sym_catch_block] = STATE(4323), + [sym_else_block] = STATE(4323), + [sym_access_call] = STATE(2639), + [sym_anonymous_function] = STATE(2639), + [aux_sym_do_block_repeat1] = STATE(4323), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), [aux_sym_identifier_token1] = ACTIONS(67), @@ -44558,49 +45196,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(982), }, [152] = { - [sym__expression] = STATE(2108), - [sym_block] = STATE(2108), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2108), - [sym_nil] = STATE(2108), - [sym__atom] = STATE(2108), - [sym_quoted_atom] = STATE(2108), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2108), - [sym_charlist] = STATE(2108), - [sym_sigil] = STATE(2108), - [sym_list] = STATE(2108), - [sym_tuple] = STATE(2108), - [sym_bitstring] = STATE(2108), - [sym_map] = STATE(2108), - [sym_unary_operator] = STATE(2108), - [sym_binary_operator] = STATE(2108), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2108), - [sym_call] = STATE(2108), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [sym__expression] = STATE(2639), + [sym_block] = STATE(2639), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2639), + [sym_nil] = STATE(2639), + [sym__atom] = STATE(2639), + [sym_quoted_atom] = STATE(2639), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2639), + [sym_charlist] = STATE(2639), + [sym_sigil] = STATE(2639), + [sym_list] = STATE(2639), + [sym_tuple] = STATE(2639), + [sym_bitstring] = STATE(2639), + [sym_map] = STATE(2639), + [sym_unary_operator] = STATE(2639), + [sym_binary_operator] = STATE(2639), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2639), + [sym_call] = STATE(2639), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_after_block] = STATE(3715), - [sym_rescue_block] = STATE(3715), - [sym_catch_block] = STATE(3715), - [sym_else_block] = STATE(3715), - [sym_access_call] = STATE(2108), - [sym_anonymous_function] = STATE(2108), - [aux_sym_do_block_repeat1] = STATE(3715), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_after_block] = STATE(4317), + [sym_rescue_block] = STATE(4317), + [sym_catch_block] = STATE(4317), + [sym_else_block] = STATE(4317), + [sym_access_call] = STATE(2639), + [sym_anonymous_function] = STATE(2639), + [aux_sym_do_block_repeat1] = STATE(4317), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), [aux_sym_identifier_token1] = ACTIONS(67), @@ -44693,49 +45331,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(982), }, [153] = { - [sym__expression] = STATE(2108), - [sym_block] = STATE(2108), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2108), - [sym_nil] = STATE(2108), - [sym__atom] = STATE(2108), - [sym_quoted_atom] = STATE(2108), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2108), - [sym_charlist] = STATE(2108), - [sym_sigil] = STATE(2108), - [sym_list] = STATE(2108), - [sym_tuple] = STATE(2108), - [sym_bitstring] = STATE(2108), - [sym_map] = STATE(2108), - [sym_unary_operator] = STATE(2108), - [sym_binary_operator] = STATE(2108), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2108), - [sym_call] = STATE(2108), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [sym__expression] = STATE(2639), + [sym_block] = STATE(2639), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2639), + [sym_nil] = STATE(2639), + [sym__atom] = STATE(2639), + [sym_quoted_atom] = STATE(2639), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2639), + [sym_charlist] = STATE(2639), + [sym_sigil] = STATE(2639), + [sym_list] = STATE(2639), + [sym_tuple] = STATE(2639), + [sym_bitstring] = STATE(2639), + [sym_map] = STATE(2639), + [sym_unary_operator] = STATE(2639), + [sym_binary_operator] = STATE(2639), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2639), + [sym_call] = STATE(2639), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_after_block] = STATE(3720), - [sym_rescue_block] = STATE(3720), - [sym_catch_block] = STATE(3720), - [sym_else_block] = STATE(3720), - [sym_access_call] = STATE(2108), - [sym_anonymous_function] = STATE(2108), - [aux_sym_do_block_repeat1] = STATE(3720), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_after_block] = STATE(4326), + [sym_rescue_block] = STATE(4326), + [sym_catch_block] = STATE(4326), + [sym_else_block] = STATE(4326), + [sym_access_call] = STATE(2639), + [sym_anonymous_function] = STATE(2639), + [aux_sym_do_block_repeat1] = STATE(4326), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), [aux_sym_identifier_token1] = ACTIONS(67), @@ -44828,49 +45466,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(982), }, [154] = { - [sym__expression] = STATE(2108), - [sym_block] = STATE(2108), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2108), - [sym_nil] = STATE(2108), - [sym__atom] = STATE(2108), - [sym_quoted_atom] = STATE(2108), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2108), - [sym_charlist] = STATE(2108), - [sym_sigil] = STATE(2108), - [sym_list] = STATE(2108), - [sym_tuple] = STATE(2108), - [sym_bitstring] = STATE(2108), - [sym_map] = STATE(2108), - [sym_unary_operator] = STATE(2108), - [sym_binary_operator] = STATE(2108), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2108), - [sym_call] = STATE(2108), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [sym__expression] = STATE(2639), + [sym_block] = STATE(2639), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2639), + [sym_nil] = STATE(2639), + [sym__atom] = STATE(2639), + [sym_quoted_atom] = STATE(2639), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2639), + [sym_charlist] = STATE(2639), + [sym_sigil] = STATE(2639), + [sym_list] = STATE(2639), + [sym_tuple] = STATE(2639), + [sym_bitstring] = STATE(2639), + [sym_map] = STATE(2639), + [sym_unary_operator] = STATE(2639), + [sym_binary_operator] = STATE(2639), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2639), + [sym_call] = STATE(2639), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_after_block] = STATE(3707), - [sym_rescue_block] = STATE(3707), - [sym_catch_block] = STATE(3707), - [sym_else_block] = STATE(3707), - [sym_access_call] = STATE(2108), - [sym_anonymous_function] = STATE(2108), - [aux_sym_do_block_repeat1] = STATE(3707), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_after_block] = STATE(4325), + [sym_rescue_block] = STATE(4325), + [sym_catch_block] = STATE(4325), + [sym_else_block] = STATE(4325), + [sym_access_call] = STATE(2639), + [sym_anonymous_function] = STATE(2639), + [aux_sym_do_block_repeat1] = STATE(4325), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), [aux_sym_identifier_token1] = ACTIONS(67), @@ -44963,49 +45601,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(982), }, [155] = { - [sym__expression] = STATE(2108), - [sym_block] = STATE(2108), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2108), - [sym_nil] = STATE(2108), - [sym__atom] = STATE(2108), - [sym_quoted_atom] = STATE(2108), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2108), - [sym_charlist] = STATE(2108), - [sym_sigil] = STATE(2108), - [sym_list] = STATE(2108), - [sym_tuple] = STATE(2108), - [sym_bitstring] = STATE(2108), - [sym_map] = STATE(2108), - [sym_unary_operator] = STATE(2108), - [sym_binary_operator] = STATE(2108), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2108), - [sym_call] = STATE(2108), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [sym__expression] = STATE(2639), + [sym_block] = STATE(2639), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2639), + [sym_nil] = STATE(2639), + [sym__atom] = STATE(2639), + [sym_quoted_atom] = STATE(2639), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2639), + [sym_charlist] = STATE(2639), + [sym_sigil] = STATE(2639), + [sym_list] = STATE(2639), + [sym_tuple] = STATE(2639), + [sym_bitstring] = STATE(2639), + [sym_map] = STATE(2639), + [sym_unary_operator] = STATE(2639), + [sym_binary_operator] = STATE(2639), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2639), + [sym_call] = STATE(2639), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_after_block] = STATE(3683), - [sym_rescue_block] = STATE(3683), - [sym_catch_block] = STATE(3683), - [sym_else_block] = STATE(3683), - [sym_access_call] = STATE(2108), - [sym_anonymous_function] = STATE(2108), - [aux_sym_do_block_repeat1] = STATE(3683), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_after_block] = STATE(4277), + [sym_rescue_block] = STATE(4277), + [sym_catch_block] = STATE(4277), + [sym_else_block] = STATE(4277), + [sym_access_call] = STATE(2639), + [sym_anonymous_function] = STATE(2639), + [aux_sym_do_block_repeat1] = STATE(4277), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), [aux_sym_identifier_token1] = ACTIONS(67), @@ -45098,49 +45736,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(982), }, [156] = { - [sym__expression] = STATE(2108), - [sym_block] = STATE(2108), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2108), - [sym_nil] = STATE(2108), - [sym__atom] = STATE(2108), - [sym_quoted_atom] = STATE(2108), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2108), - [sym_charlist] = STATE(2108), - [sym_sigil] = STATE(2108), - [sym_list] = STATE(2108), - [sym_tuple] = STATE(2108), - [sym_bitstring] = STATE(2108), - [sym_map] = STATE(2108), - [sym_unary_operator] = STATE(2108), - [sym_binary_operator] = STATE(2108), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2108), - [sym_call] = STATE(2108), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [sym__expression] = STATE(2639), + [sym_block] = STATE(2639), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2639), + [sym_nil] = STATE(2639), + [sym__atom] = STATE(2639), + [sym_quoted_atom] = STATE(2639), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2639), + [sym_charlist] = STATE(2639), + [sym_sigil] = STATE(2639), + [sym_list] = STATE(2639), + [sym_tuple] = STATE(2639), + [sym_bitstring] = STATE(2639), + [sym_map] = STATE(2639), + [sym_unary_operator] = STATE(2639), + [sym_binary_operator] = STATE(2639), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2639), + [sym_call] = STATE(2639), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_after_block] = STATE(3719), - [sym_rescue_block] = STATE(3719), - [sym_catch_block] = STATE(3719), - [sym_else_block] = STATE(3719), - [sym_access_call] = STATE(2108), - [sym_anonymous_function] = STATE(2108), - [aux_sym_do_block_repeat1] = STATE(3719), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_after_block] = STATE(4273), + [sym_rescue_block] = STATE(4273), + [sym_catch_block] = STATE(4273), + [sym_else_block] = STATE(4273), + [sym_access_call] = STATE(2639), + [sym_anonymous_function] = STATE(2639), + [aux_sym_do_block_repeat1] = STATE(4273), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), [aux_sym_identifier_token1] = ACTIONS(67), @@ -45233,49 +45871,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(982), }, [157] = { - [sym__expression] = STATE(2108), - [sym_block] = STATE(2108), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2108), - [sym_nil] = STATE(2108), - [sym__atom] = STATE(2108), - [sym_quoted_atom] = STATE(2108), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2108), - [sym_charlist] = STATE(2108), - [sym_sigil] = STATE(2108), - [sym_list] = STATE(2108), - [sym_tuple] = STATE(2108), - [sym_bitstring] = STATE(2108), - [sym_map] = STATE(2108), - [sym_unary_operator] = STATE(2108), - [sym_binary_operator] = STATE(2108), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2108), - [sym_call] = STATE(2108), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [sym__expression] = STATE(2639), + [sym_block] = STATE(2639), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2639), + [sym_nil] = STATE(2639), + [sym__atom] = STATE(2639), + [sym_quoted_atom] = STATE(2639), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2639), + [sym_charlist] = STATE(2639), + [sym_sigil] = STATE(2639), + [sym_list] = STATE(2639), + [sym_tuple] = STATE(2639), + [sym_bitstring] = STATE(2639), + [sym_map] = STATE(2639), + [sym_unary_operator] = STATE(2639), + [sym_binary_operator] = STATE(2639), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2639), + [sym_call] = STATE(2639), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_after_block] = STATE(3722), - [sym_rescue_block] = STATE(3722), - [sym_catch_block] = STATE(3722), - [sym_else_block] = STATE(3722), - [sym_access_call] = STATE(2108), - [sym_anonymous_function] = STATE(2108), - [aux_sym_do_block_repeat1] = STATE(3722), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_after_block] = STATE(4321), + [sym_rescue_block] = STATE(4321), + [sym_catch_block] = STATE(4321), + [sym_else_block] = STATE(4321), + [sym_access_call] = STATE(2639), + [sym_anonymous_function] = STATE(2639), + [aux_sym_do_block_repeat1] = STATE(4321), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), [aux_sym_identifier_token1] = ACTIONS(67), @@ -45368,49 +46006,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(982), }, [158] = { - [sym__expression] = STATE(2108), - [sym_block] = STATE(2108), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2108), - [sym_nil] = STATE(2108), - [sym__atom] = STATE(2108), - [sym_quoted_atom] = STATE(2108), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2108), - [sym_charlist] = STATE(2108), - [sym_sigil] = STATE(2108), - [sym_list] = STATE(2108), - [sym_tuple] = STATE(2108), - [sym_bitstring] = STATE(2108), - [sym_map] = STATE(2108), - [sym_unary_operator] = STATE(2108), - [sym_binary_operator] = STATE(2108), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2108), - [sym_call] = STATE(2108), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [sym__expression] = STATE(2639), + [sym_block] = STATE(2639), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2639), + [sym_nil] = STATE(2639), + [sym__atom] = STATE(2639), + [sym_quoted_atom] = STATE(2639), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2639), + [sym_charlist] = STATE(2639), + [sym_sigil] = STATE(2639), + [sym_list] = STATE(2639), + [sym_tuple] = STATE(2639), + [sym_bitstring] = STATE(2639), + [sym_map] = STATE(2639), + [sym_unary_operator] = STATE(2639), + [sym_binary_operator] = STATE(2639), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2639), + [sym_call] = STATE(2639), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_after_block] = STATE(3692), - [sym_rescue_block] = STATE(3692), - [sym_catch_block] = STATE(3692), - [sym_else_block] = STATE(3692), - [sym_access_call] = STATE(2108), - [sym_anonymous_function] = STATE(2108), - [aux_sym_do_block_repeat1] = STATE(3692), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_after_block] = STATE(4330), + [sym_rescue_block] = STATE(4330), + [sym_catch_block] = STATE(4330), + [sym_else_block] = STATE(4330), + [sym_access_call] = STATE(2639), + [sym_anonymous_function] = STATE(2639), + [aux_sym_do_block_repeat1] = STATE(4330), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), [aux_sym_identifier_token1] = ACTIONS(67), @@ -45503,49 +46141,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(982), }, [159] = { - [sym__expression] = STATE(2108), - [sym_block] = STATE(2108), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2108), - [sym_nil] = STATE(2108), - [sym__atom] = STATE(2108), - [sym_quoted_atom] = STATE(2108), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2108), - [sym_charlist] = STATE(2108), - [sym_sigil] = STATE(2108), - [sym_list] = STATE(2108), - [sym_tuple] = STATE(2108), - [sym_bitstring] = STATE(2108), - [sym_map] = STATE(2108), - [sym_unary_operator] = STATE(2108), - [sym_binary_operator] = STATE(2108), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2108), - [sym_call] = STATE(2108), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [sym__expression] = STATE(2639), + [sym_block] = STATE(2639), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2639), + [sym_nil] = STATE(2639), + [sym__atom] = STATE(2639), + [sym_quoted_atom] = STATE(2639), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2639), + [sym_charlist] = STATE(2639), + [sym_sigil] = STATE(2639), + [sym_list] = STATE(2639), + [sym_tuple] = STATE(2639), + [sym_bitstring] = STATE(2639), + [sym_map] = STATE(2639), + [sym_unary_operator] = STATE(2639), + [sym_binary_operator] = STATE(2639), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2639), + [sym_call] = STATE(2639), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_after_block] = STATE(3674), - [sym_rescue_block] = STATE(3674), - [sym_catch_block] = STATE(3674), - [sym_else_block] = STATE(3674), - [sym_access_call] = STATE(2108), - [sym_anonymous_function] = STATE(2108), - [aux_sym_do_block_repeat1] = STATE(3674), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_after_block] = STATE(4298), + [sym_rescue_block] = STATE(4298), + [sym_catch_block] = STATE(4298), + [sym_else_block] = STATE(4298), + [sym_access_call] = STATE(2639), + [sym_anonymous_function] = STATE(2639), + [aux_sym_do_block_repeat1] = STATE(4298), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), [aux_sym_identifier_token1] = ACTIONS(67), @@ -45638,49 +46276,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(982), }, [160] = { - [sym__expression] = STATE(2108), - [sym_block] = STATE(2108), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2108), - [sym_nil] = STATE(2108), - [sym__atom] = STATE(2108), - [sym_quoted_atom] = STATE(2108), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2108), - [sym_charlist] = STATE(2108), - [sym_sigil] = STATE(2108), - [sym_list] = STATE(2108), - [sym_tuple] = STATE(2108), - [sym_bitstring] = STATE(2108), - [sym_map] = STATE(2108), - [sym_unary_operator] = STATE(2108), - [sym_binary_operator] = STATE(2108), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2108), - [sym_call] = STATE(2108), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [sym__expression] = STATE(2639), + [sym_block] = STATE(2639), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2639), + [sym_nil] = STATE(2639), + [sym__atom] = STATE(2639), + [sym_quoted_atom] = STATE(2639), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2639), + [sym_charlist] = STATE(2639), + [sym_sigil] = STATE(2639), + [sym_list] = STATE(2639), + [sym_tuple] = STATE(2639), + [sym_bitstring] = STATE(2639), + [sym_map] = STATE(2639), + [sym_unary_operator] = STATE(2639), + [sym_binary_operator] = STATE(2639), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2639), + [sym_call] = STATE(2639), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_after_block] = STATE(3668), - [sym_rescue_block] = STATE(3668), - [sym_catch_block] = STATE(3668), - [sym_else_block] = STATE(3668), - [sym_access_call] = STATE(2108), - [sym_anonymous_function] = STATE(2108), - [aux_sym_do_block_repeat1] = STATE(3668), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_after_block] = STATE(4301), + [sym_rescue_block] = STATE(4301), + [sym_catch_block] = STATE(4301), + [sym_else_block] = STATE(4301), + [sym_access_call] = STATE(2639), + [sym_anonymous_function] = STATE(2639), + [aux_sym_do_block_repeat1] = STATE(4301), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), [aux_sym_identifier_token1] = ACTIONS(67), @@ -45773,49 +46411,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(982), }, [161] = { - [sym__expression] = STATE(2108), - [sym_block] = STATE(2108), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2108), - [sym_nil] = STATE(2108), - [sym__atom] = STATE(2108), - [sym_quoted_atom] = STATE(2108), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2108), - [sym_charlist] = STATE(2108), - [sym_sigil] = STATE(2108), - [sym_list] = STATE(2108), - [sym_tuple] = STATE(2108), - [sym_bitstring] = STATE(2108), - [sym_map] = STATE(2108), - [sym_unary_operator] = STATE(2108), - [sym_binary_operator] = STATE(2108), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2108), - [sym_call] = STATE(2108), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [sym__expression] = STATE(2639), + [sym_block] = STATE(2639), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2639), + [sym_nil] = STATE(2639), + [sym__atom] = STATE(2639), + [sym_quoted_atom] = STATE(2639), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2639), + [sym_charlist] = STATE(2639), + [sym_sigil] = STATE(2639), + [sym_list] = STATE(2639), + [sym_tuple] = STATE(2639), + [sym_bitstring] = STATE(2639), + [sym_map] = STATE(2639), + [sym_unary_operator] = STATE(2639), + [sym_binary_operator] = STATE(2639), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2639), + [sym_call] = STATE(2639), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_after_block] = STATE(3709), - [sym_rescue_block] = STATE(3709), - [sym_catch_block] = STATE(3709), - [sym_else_block] = STATE(3709), - [sym_access_call] = STATE(2108), - [sym_anonymous_function] = STATE(2108), - [aux_sym_do_block_repeat1] = STATE(3709), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_after_block] = STATE(4280), + [sym_rescue_block] = STATE(4280), + [sym_catch_block] = STATE(4280), + [sym_else_block] = STATE(4280), + [sym_access_call] = STATE(2639), + [sym_anonymous_function] = STATE(2639), + [aux_sym_do_block_repeat1] = STATE(4280), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), [aux_sym_identifier_token1] = ACTIONS(67), @@ -45908,49 +46546,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(982), }, [162] = { - [sym__expression] = STATE(2108), - [sym_block] = STATE(2108), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2108), - [sym_nil] = STATE(2108), - [sym__atom] = STATE(2108), - [sym_quoted_atom] = STATE(2108), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2108), - [sym_charlist] = STATE(2108), - [sym_sigil] = STATE(2108), - [sym_list] = STATE(2108), - [sym_tuple] = STATE(2108), - [sym_bitstring] = STATE(2108), - [sym_map] = STATE(2108), - [sym_unary_operator] = STATE(2108), - [sym_binary_operator] = STATE(2108), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2108), - [sym_call] = STATE(2108), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [sym__expression] = STATE(2639), + [sym_block] = STATE(2639), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2639), + [sym_nil] = STATE(2639), + [sym__atom] = STATE(2639), + [sym_quoted_atom] = STATE(2639), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2639), + [sym_charlist] = STATE(2639), + [sym_sigil] = STATE(2639), + [sym_list] = STATE(2639), + [sym_tuple] = STATE(2639), + [sym_bitstring] = STATE(2639), + [sym_map] = STATE(2639), + [sym_unary_operator] = STATE(2639), + [sym_binary_operator] = STATE(2639), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2639), + [sym_call] = STATE(2639), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_after_block] = STATE(3702), - [sym_rescue_block] = STATE(3702), - [sym_catch_block] = STATE(3702), - [sym_else_block] = STATE(3702), - [sym_access_call] = STATE(2108), - [sym_anonymous_function] = STATE(2108), - [aux_sym_do_block_repeat1] = STATE(3702), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_after_block] = STATE(4286), + [sym_rescue_block] = STATE(4286), + [sym_catch_block] = STATE(4286), + [sym_else_block] = STATE(4286), + [sym_access_call] = STATE(2639), + [sym_anonymous_function] = STATE(2639), + [aux_sym_do_block_repeat1] = STATE(4286), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), [aux_sym_identifier_token1] = ACTIONS(67), @@ -46043,49 +46681,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(982), }, [163] = { - [sym__expression] = STATE(2108), - [sym_block] = STATE(2108), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2108), - [sym_nil] = STATE(2108), - [sym__atom] = STATE(2108), - [sym_quoted_atom] = STATE(2108), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2108), - [sym_charlist] = STATE(2108), - [sym_sigil] = STATE(2108), - [sym_list] = STATE(2108), - [sym_tuple] = STATE(2108), - [sym_bitstring] = STATE(2108), - [sym_map] = STATE(2108), - [sym_unary_operator] = STATE(2108), - [sym_binary_operator] = STATE(2108), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2108), - [sym_call] = STATE(2108), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [sym__expression] = STATE(2639), + [sym_block] = STATE(2639), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2639), + [sym_nil] = STATE(2639), + [sym__atom] = STATE(2639), + [sym_quoted_atom] = STATE(2639), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2639), + [sym_charlist] = STATE(2639), + [sym_sigil] = STATE(2639), + [sym_list] = STATE(2639), + [sym_tuple] = STATE(2639), + [sym_bitstring] = STATE(2639), + [sym_map] = STATE(2639), + [sym_unary_operator] = STATE(2639), + [sym_binary_operator] = STATE(2639), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2639), + [sym_call] = STATE(2639), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_after_block] = STATE(3699), - [sym_rescue_block] = STATE(3699), - [sym_catch_block] = STATE(3699), - [sym_else_block] = STATE(3699), - [sym_access_call] = STATE(2108), - [sym_anonymous_function] = STATE(2108), - [aux_sym_do_block_repeat1] = STATE(3699), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_after_block] = STATE(4300), + [sym_rescue_block] = STATE(4300), + [sym_catch_block] = STATE(4300), + [sym_else_block] = STATE(4300), + [sym_access_call] = STATE(2639), + [sym_anonymous_function] = STATE(2639), + [aux_sym_do_block_repeat1] = STATE(4300), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), [aux_sym_identifier_token1] = ACTIONS(67), @@ -46178,49 +46816,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(982), }, [164] = { - [sym__expression] = STATE(2108), - [sym_block] = STATE(2108), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2108), - [sym_nil] = STATE(2108), - [sym__atom] = STATE(2108), - [sym_quoted_atom] = STATE(2108), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2108), - [sym_charlist] = STATE(2108), - [sym_sigil] = STATE(2108), - [sym_list] = STATE(2108), - [sym_tuple] = STATE(2108), - [sym_bitstring] = STATE(2108), - [sym_map] = STATE(2108), - [sym_unary_operator] = STATE(2108), - [sym_binary_operator] = STATE(2108), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2108), - [sym_call] = STATE(2108), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [sym__expression] = STATE(2639), + [sym_block] = STATE(2639), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2639), + [sym_nil] = STATE(2639), + [sym__atom] = STATE(2639), + [sym_quoted_atom] = STATE(2639), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2639), + [sym_charlist] = STATE(2639), + [sym_sigil] = STATE(2639), + [sym_list] = STATE(2639), + [sym_tuple] = STATE(2639), + [sym_bitstring] = STATE(2639), + [sym_map] = STATE(2639), + [sym_unary_operator] = STATE(2639), + [sym_binary_operator] = STATE(2639), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2639), + [sym_call] = STATE(2639), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_after_block] = STATE(3680), - [sym_rescue_block] = STATE(3680), - [sym_catch_block] = STATE(3680), - [sym_else_block] = STATE(3680), - [sym_access_call] = STATE(2108), - [sym_anonymous_function] = STATE(2108), - [aux_sym_do_block_repeat1] = STATE(3680), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_after_block] = STATE(4275), + [sym_rescue_block] = STATE(4275), + [sym_catch_block] = STATE(4275), + [sym_else_block] = STATE(4275), + [sym_access_call] = STATE(2639), + [sym_anonymous_function] = STATE(2639), + [aux_sym_do_block_repeat1] = STATE(4275), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), [aux_sym_identifier_token1] = ACTIONS(67), @@ -46313,49 +46951,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(982), }, [165] = { - [sym__expression] = STATE(2108), - [sym_block] = STATE(2108), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2108), - [sym_nil] = STATE(2108), - [sym__atom] = STATE(2108), - [sym_quoted_atom] = STATE(2108), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2108), - [sym_charlist] = STATE(2108), - [sym_sigil] = STATE(2108), - [sym_list] = STATE(2108), - [sym_tuple] = STATE(2108), - [sym_bitstring] = STATE(2108), - [sym_map] = STATE(2108), - [sym_unary_operator] = STATE(2108), - [sym_binary_operator] = STATE(2108), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2108), - [sym_call] = STATE(2108), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [sym__expression] = STATE(2639), + [sym_block] = STATE(2639), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2639), + [sym_nil] = STATE(2639), + [sym__atom] = STATE(2639), + [sym_quoted_atom] = STATE(2639), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2639), + [sym_charlist] = STATE(2639), + [sym_sigil] = STATE(2639), + [sym_list] = STATE(2639), + [sym_tuple] = STATE(2639), + [sym_bitstring] = STATE(2639), + [sym_map] = STATE(2639), + [sym_unary_operator] = STATE(2639), + [sym_binary_operator] = STATE(2639), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2639), + [sym_call] = STATE(2639), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_after_block] = STATE(3691), - [sym_rescue_block] = STATE(3691), - [sym_catch_block] = STATE(3691), - [sym_else_block] = STATE(3691), - [sym_access_call] = STATE(2108), - [sym_anonymous_function] = STATE(2108), - [aux_sym_do_block_repeat1] = STATE(3691), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_after_block] = STATE(4312), + [sym_rescue_block] = STATE(4312), + [sym_catch_block] = STATE(4312), + [sym_else_block] = STATE(4312), + [sym_access_call] = STATE(2639), + [sym_anonymous_function] = STATE(2639), + [aux_sym_do_block_repeat1] = STATE(4312), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), [aux_sym_identifier_token1] = ACTIONS(67), @@ -46448,49 +47086,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(982), }, [166] = { - [sym__expression] = STATE(2108), - [sym_block] = STATE(2108), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2108), - [sym_nil] = STATE(2108), - [sym__atom] = STATE(2108), - [sym_quoted_atom] = STATE(2108), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2108), - [sym_charlist] = STATE(2108), - [sym_sigil] = STATE(2108), - [sym_list] = STATE(2108), - [sym_tuple] = STATE(2108), - [sym_bitstring] = STATE(2108), - [sym_map] = STATE(2108), - [sym_unary_operator] = STATE(2108), - [sym_binary_operator] = STATE(2108), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2108), - [sym_call] = STATE(2108), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [sym__expression] = STATE(2639), + [sym_block] = STATE(2639), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2639), + [sym_nil] = STATE(2639), + [sym__atom] = STATE(2639), + [sym_quoted_atom] = STATE(2639), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2639), + [sym_charlist] = STATE(2639), + [sym_sigil] = STATE(2639), + [sym_list] = STATE(2639), + [sym_tuple] = STATE(2639), + [sym_bitstring] = STATE(2639), + [sym_map] = STATE(2639), + [sym_unary_operator] = STATE(2639), + [sym_binary_operator] = STATE(2639), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2639), + [sym_call] = STATE(2639), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_after_block] = STATE(3681), - [sym_rescue_block] = STATE(3681), - [sym_catch_block] = STATE(3681), - [sym_else_block] = STATE(3681), - [sym_access_call] = STATE(2108), - [sym_anonymous_function] = STATE(2108), - [aux_sym_do_block_repeat1] = STATE(3681), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_after_block] = STATE(4313), + [sym_rescue_block] = STATE(4313), + [sym_catch_block] = STATE(4313), + [sym_else_block] = STATE(4313), + [sym_access_call] = STATE(2639), + [sym_anonymous_function] = STATE(2639), + [aux_sym_do_block_repeat1] = STATE(4313), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), [aux_sym_identifier_token1] = ACTIONS(67), @@ -46583,49 +47221,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(982), }, [167] = { - [sym__expression] = STATE(2108), - [sym_block] = STATE(2108), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2108), - [sym_nil] = STATE(2108), - [sym__atom] = STATE(2108), - [sym_quoted_atom] = STATE(2108), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2108), - [sym_charlist] = STATE(2108), - [sym_sigil] = STATE(2108), - [sym_list] = STATE(2108), - [sym_tuple] = STATE(2108), - [sym_bitstring] = STATE(2108), - [sym_map] = STATE(2108), - [sym_unary_operator] = STATE(2108), - [sym_binary_operator] = STATE(2108), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2108), - [sym_call] = STATE(2108), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [sym__expression] = STATE(2639), + [sym_block] = STATE(2639), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2639), + [sym_nil] = STATE(2639), + [sym__atom] = STATE(2639), + [sym_quoted_atom] = STATE(2639), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2639), + [sym_charlist] = STATE(2639), + [sym_sigil] = STATE(2639), + [sym_list] = STATE(2639), + [sym_tuple] = STATE(2639), + [sym_bitstring] = STATE(2639), + [sym_map] = STATE(2639), + [sym_unary_operator] = STATE(2639), + [sym_binary_operator] = STATE(2639), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2639), + [sym_call] = STATE(2639), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_after_block] = STATE(3663), - [sym_rescue_block] = STATE(3663), - [sym_catch_block] = STATE(3663), - [sym_else_block] = STATE(3663), - [sym_access_call] = STATE(2108), - [sym_anonymous_function] = STATE(2108), - [aux_sym_do_block_repeat1] = STATE(3663), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_after_block] = STATE(4272), + [sym_rescue_block] = STATE(4272), + [sym_catch_block] = STATE(4272), + [sym_else_block] = STATE(4272), + [sym_access_call] = STATE(2639), + [sym_anonymous_function] = STATE(2639), + [aux_sym_do_block_repeat1] = STATE(4272), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), [aux_sym_identifier_token1] = ACTIONS(67), @@ -46718,49 +47356,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(982), }, [168] = { - [sym__expression] = STATE(2108), - [sym_block] = STATE(2108), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2108), - [sym_nil] = STATE(2108), - [sym__atom] = STATE(2108), - [sym_quoted_atom] = STATE(2108), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2108), - [sym_charlist] = STATE(2108), - [sym_sigil] = STATE(2108), - [sym_list] = STATE(2108), - [sym_tuple] = STATE(2108), - [sym_bitstring] = STATE(2108), - [sym_map] = STATE(2108), - [sym_unary_operator] = STATE(2108), - [sym_binary_operator] = STATE(2108), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2108), - [sym_call] = STATE(2108), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [sym__expression] = STATE(2639), + [sym_block] = STATE(2639), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2639), + [sym_nil] = STATE(2639), + [sym__atom] = STATE(2639), + [sym_quoted_atom] = STATE(2639), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2639), + [sym_charlist] = STATE(2639), + [sym_sigil] = STATE(2639), + [sym_list] = STATE(2639), + [sym_tuple] = STATE(2639), + [sym_bitstring] = STATE(2639), + [sym_map] = STATE(2639), + [sym_unary_operator] = STATE(2639), + [sym_binary_operator] = STATE(2639), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2639), + [sym_call] = STATE(2639), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_after_block] = STATE(3703), - [sym_rescue_block] = STATE(3703), - [sym_catch_block] = STATE(3703), - [sym_else_block] = STATE(3703), - [sym_access_call] = STATE(2108), - [sym_anonymous_function] = STATE(2108), - [aux_sym_do_block_repeat1] = STATE(3703), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_after_block] = STATE(4322), + [sym_rescue_block] = STATE(4322), + [sym_catch_block] = STATE(4322), + [sym_else_block] = STATE(4322), + [sym_access_call] = STATE(2639), + [sym_anonymous_function] = STATE(2639), + [aux_sym_do_block_repeat1] = STATE(4322), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), [aux_sym_identifier_token1] = ACTIONS(67), @@ -46853,49 +47491,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(982), }, [169] = { - [sym__expression] = STATE(2108), - [sym_block] = STATE(2108), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2108), - [sym_nil] = STATE(2108), - [sym__atom] = STATE(2108), - [sym_quoted_atom] = STATE(2108), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2108), - [sym_charlist] = STATE(2108), - [sym_sigil] = STATE(2108), - [sym_list] = STATE(2108), - [sym_tuple] = STATE(2108), - [sym_bitstring] = STATE(2108), - [sym_map] = STATE(2108), - [sym_unary_operator] = STATE(2108), - [sym_binary_operator] = STATE(2108), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2108), - [sym_call] = STATE(2108), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [sym__expression] = STATE(2639), + [sym_block] = STATE(2639), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2639), + [sym_nil] = STATE(2639), + [sym__atom] = STATE(2639), + [sym_quoted_atom] = STATE(2639), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2639), + [sym_charlist] = STATE(2639), + [sym_sigil] = STATE(2639), + [sym_list] = STATE(2639), + [sym_tuple] = STATE(2639), + [sym_bitstring] = STATE(2639), + [sym_map] = STATE(2639), + [sym_unary_operator] = STATE(2639), + [sym_binary_operator] = STATE(2639), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2639), + [sym_call] = STATE(2639), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_after_block] = STATE(3701), - [sym_rescue_block] = STATE(3701), - [sym_catch_block] = STATE(3701), - [sym_else_block] = STATE(3701), - [sym_access_call] = STATE(2108), - [sym_anonymous_function] = STATE(2108), - [aux_sym_do_block_repeat1] = STATE(3701), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_after_block] = STATE(4316), + [sym_rescue_block] = STATE(4316), + [sym_catch_block] = STATE(4316), + [sym_else_block] = STATE(4316), + [sym_access_call] = STATE(2639), + [sym_anonymous_function] = STATE(2639), + [aux_sym_do_block_repeat1] = STATE(4316), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), [aux_sym_identifier_token1] = ACTIONS(67), @@ -46988,49 +47626,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(982), }, [170] = { - [sym__expression] = STATE(2108), - [sym_block] = STATE(2108), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2108), - [sym_nil] = STATE(2108), - [sym__atom] = STATE(2108), - [sym_quoted_atom] = STATE(2108), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2108), - [sym_charlist] = STATE(2108), - [sym_sigil] = STATE(2108), - [sym_list] = STATE(2108), - [sym_tuple] = STATE(2108), - [sym_bitstring] = STATE(2108), - [sym_map] = STATE(2108), - [sym_unary_operator] = STATE(2108), - [sym_binary_operator] = STATE(2108), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2108), - [sym_call] = STATE(2108), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [sym__expression] = STATE(2639), + [sym_block] = STATE(2639), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2639), + [sym_nil] = STATE(2639), + [sym__atom] = STATE(2639), + [sym_quoted_atom] = STATE(2639), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2639), + [sym_charlist] = STATE(2639), + [sym_sigil] = STATE(2639), + [sym_list] = STATE(2639), + [sym_tuple] = STATE(2639), + [sym_bitstring] = STATE(2639), + [sym_map] = STATE(2639), + [sym_unary_operator] = STATE(2639), + [sym_binary_operator] = STATE(2639), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2639), + [sym_call] = STATE(2639), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_after_block] = STATE(3679), - [sym_rescue_block] = STATE(3679), - [sym_catch_block] = STATE(3679), - [sym_else_block] = STATE(3679), - [sym_access_call] = STATE(2108), - [sym_anonymous_function] = STATE(2108), - [aux_sym_do_block_repeat1] = STATE(3679), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_after_block] = STATE(4285), + [sym_rescue_block] = STATE(4285), + [sym_catch_block] = STATE(4285), + [sym_else_block] = STATE(4285), + [sym_access_call] = STATE(2639), + [sym_anonymous_function] = STATE(2639), + [aux_sym_do_block_repeat1] = STATE(4285), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), [aux_sym_identifier_token1] = ACTIONS(67), @@ -47123,49 +47761,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(982), }, [171] = { - [sym__expression] = STATE(2108), - [sym_block] = STATE(2108), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2108), - [sym_nil] = STATE(2108), - [sym__atom] = STATE(2108), - [sym_quoted_atom] = STATE(2108), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2108), - [sym_charlist] = STATE(2108), - [sym_sigil] = STATE(2108), - [sym_list] = STATE(2108), - [sym_tuple] = STATE(2108), - [sym_bitstring] = STATE(2108), - [sym_map] = STATE(2108), - [sym_unary_operator] = STATE(2108), - [sym_binary_operator] = STATE(2108), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2108), - [sym_call] = STATE(2108), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [sym__expression] = STATE(2639), + [sym_block] = STATE(2639), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2639), + [sym_nil] = STATE(2639), + [sym__atom] = STATE(2639), + [sym_quoted_atom] = STATE(2639), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2639), + [sym_charlist] = STATE(2639), + [sym_sigil] = STATE(2639), + [sym_list] = STATE(2639), + [sym_tuple] = STATE(2639), + [sym_bitstring] = STATE(2639), + [sym_map] = STATE(2639), + [sym_unary_operator] = STATE(2639), + [sym_binary_operator] = STATE(2639), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2639), + [sym_call] = STATE(2639), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_after_block] = STATE(3712), - [sym_rescue_block] = STATE(3712), - [sym_catch_block] = STATE(3712), - [sym_else_block] = STATE(3712), - [sym_access_call] = STATE(2108), - [sym_anonymous_function] = STATE(2108), - [aux_sym_do_block_repeat1] = STATE(3712), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_after_block] = STATE(4309), + [sym_rescue_block] = STATE(4309), + [sym_catch_block] = STATE(4309), + [sym_else_block] = STATE(4309), + [sym_access_call] = STATE(2639), + [sym_anonymous_function] = STATE(2639), + [aux_sym_do_block_repeat1] = STATE(4309), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), [aux_sym_identifier_token1] = ACTIONS(67), @@ -47258,49 +47896,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(982), }, [172] = { - [sym__expression] = STATE(2108), - [sym_block] = STATE(2108), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2108), - [sym_nil] = STATE(2108), - [sym__atom] = STATE(2108), - [sym_quoted_atom] = STATE(2108), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2108), - [sym_charlist] = STATE(2108), - [sym_sigil] = STATE(2108), - [sym_list] = STATE(2108), - [sym_tuple] = STATE(2108), - [sym_bitstring] = STATE(2108), - [sym_map] = STATE(2108), - [sym_unary_operator] = STATE(2108), - [sym_binary_operator] = STATE(2108), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2108), - [sym_call] = STATE(2108), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [sym__expression] = STATE(2639), + [sym_block] = STATE(2639), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2639), + [sym_nil] = STATE(2639), + [sym__atom] = STATE(2639), + [sym_quoted_atom] = STATE(2639), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2639), + [sym_charlist] = STATE(2639), + [sym_sigil] = STATE(2639), + [sym_list] = STATE(2639), + [sym_tuple] = STATE(2639), + [sym_bitstring] = STATE(2639), + [sym_map] = STATE(2639), + [sym_unary_operator] = STATE(2639), + [sym_binary_operator] = STATE(2639), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2639), + [sym_call] = STATE(2639), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_after_block] = STATE(3714), - [sym_rescue_block] = STATE(3714), - [sym_catch_block] = STATE(3714), - [sym_else_block] = STATE(3714), - [sym_access_call] = STATE(2108), - [sym_anonymous_function] = STATE(2108), - [aux_sym_do_block_repeat1] = STATE(3714), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_after_block] = STATE(4274), + [sym_rescue_block] = STATE(4274), + [sym_catch_block] = STATE(4274), + [sym_else_block] = STATE(4274), + [sym_access_call] = STATE(2639), + [sym_anonymous_function] = STATE(2639), + [aux_sym_do_block_repeat1] = STATE(4274), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), [aux_sym_identifier_token1] = ACTIONS(67), @@ -47393,49 +48031,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(982), }, [173] = { - [sym__expression] = STATE(2108), - [sym_block] = STATE(2108), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2108), - [sym_nil] = STATE(2108), - [sym__atom] = STATE(2108), - [sym_quoted_atom] = STATE(2108), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2108), - [sym_charlist] = STATE(2108), - [sym_sigil] = STATE(2108), - [sym_list] = STATE(2108), - [sym_tuple] = STATE(2108), - [sym_bitstring] = STATE(2108), - [sym_map] = STATE(2108), - [sym_unary_operator] = STATE(2108), - [sym_binary_operator] = STATE(2108), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2108), - [sym_call] = STATE(2108), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [sym__expression] = STATE(2639), + [sym_block] = STATE(2639), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2639), + [sym_nil] = STATE(2639), + [sym__atom] = STATE(2639), + [sym_quoted_atom] = STATE(2639), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2639), + [sym_charlist] = STATE(2639), + [sym_sigil] = STATE(2639), + [sym_list] = STATE(2639), + [sym_tuple] = STATE(2639), + [sym_bitstring] = STATE(2639), + [sym_map] = STATE(2639), + [sym_unary_operator] = STATE(2639), + [sym_binary_operator] = STATE(2639), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2639), + [sym_call] = STATE(2639), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_after_block] = STATE(3723), - [sym_rescue_block] = STATE(3723), - [sym_catch_block] = STATE(3723), - [sym_else_block] = STATE(3723), - [sym_access_call] = STATE(2108), - [sym_anonymous_function] = STATE(2108), - [aux_sym_do_block_repeat1] = STATE(3723), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_after_block] = STATE(4294), + [sym_rescue_block] = STATE(4294), + [sym_catch_block] = STATE(4294), + [sym_else_block] = STATE(4294), + [sym_access_call] = STATE(2639), + [sym_anonymous_function] = STATE(2639), + [aux_sym_do_block_repeat1] = STATE(4294), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), [aux_sym_identifier_token1] = ACTIONS(67), @@ -47528,49 +48166,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(982), }, [174] = { - [sym__expression] = STATE(2108), - [sym_block] = STATE(2108), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2108), - [sym_nil] = STATE(2108), - [sym__atom] = STATE(2108), - [sym_quoted_atom] = STATE(2108), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2108), - [sym_charlist] = STATE(2108), - [sym_sigil] = STATE(2108), - [sym_list] = STATE(2108), - [sym_tuple] = STATE(2108), - [sym_bitstring] = STATE(2108), - [sym_map] = STATE(2108), - [sym_unary_operator] = STATE(2108), - [sym_binary_operator] = STATE(2108), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2108), - [sym_call] = STATE(2108), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [sym__expression] = STATE(2639), + [sym_block] = STATE(2639), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2639), + [sym_nil] = STATE(2639), + [sym__atom] = STATE(2639), + [sym_quoted_atom] = STATE(2639), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2639), + [sym_charlist] = STATE(2639), + [sym_sigil] = STATE(2639), + [sym_list] = STATE(2639), + [sym_tuple] = STATE(2639), + [sym_bitstring] = STATE(2639), + [sym_map] = STATE(2639), + [sym_unary_operator] = STATE(2639), + [sym_binary_operator] = STATE(2639), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2639), + [sym_call] = STATE(2639), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_after_block] = STATE(3697), - [sym_rescue_block] = STATE(3697), - [sym_catch_block] = STATE(3697), - [sym_else_block] = STATE(3697), - [sym_access_call] = STATE(2108), - [sym_anonymous_function] = STATE(2108), - [aux_sym_do_block_repeat1] = STATE(3697), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_after_block] = STATE(4305), + [sym_rescue_block] = STATE(4305), + [sym_catch_block] = STATE(4305), + [sym_else_block] = STATE(4305), + [sym_access_call] = STATE(2639), + [sym_anonymous_function] = STATE(2639), + [aux_sym_do_block_repeat1] = STATE(4305), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), [aux_sym_identifier_token1] = ACTIONS(67), @@ -47663,49 +48301,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(982), }, [175] = { - [sym__expression] = STATE(2108), - [sym_block] = STATE(2108), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2108), - [sym_nil] = STATE(2108), - [sym__atom] = STATE(2108), - [sym_quoted_atom] = STATE(2108), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2108), - [sym_charlist] = STATE(2108), - [sym_sigil] = STATE(2108), - [sym_list] = STATE(2108), - [sym_tuple] = STATE(2108), - [sym_bitstring] = STATE(2108), - [sym_map] = STATE(2108), - [sym_unary_operator] = STATE(2108), - [sym_binary_operator] = STATE(2108), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2108), - [sym_call] = STATE(2108), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [sym__expression] = STATE(2639), + [sym_block] = STATE(2639), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2639), + [sym_nil] = STATE(2639), + [sym__atom] = STATE(2639), + [sym_quoted_atom] = STATE(2639), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2639), + [sym_charlist] = STATE(2639), + [sym_sigil] = STATE(2639), + [sym_list] = STATE(2639), + [sym_tuple] = STATE(2639), + [sym_bitstring] = STATE(2639), + [sym_map] = STATE(2639), + [sym_unary_operator] = STATE(2639), + [sym_binary_operator] = STATE(2639), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2639), + [sym_call] = STATE(2639), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_after_block] = STATE(3721), - [sym_rescue_block] = STATE(3721), - [sym_catch_block] = STATE(3721), - [sym_else_block] = STATE(3721), - [sym_access_call] = STATE(2108), - [sym_anonymous_function] = STATE(2108), - [aux_sym_do_block_repeat1] = STATE(3721), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_after_block] = STATE(4324), + [sym_rescue_block] = STATE(4324), + [sym_catch_block] = STATE(4324), + [sym_else_block] = STATE(4324), + [sym_access_call] = STATE(2639), + [sym_anonymous_function] = STATE(2639), + [aux_sym_do_block_repeat1] = STATE(4324), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), [aux_sym_identifier_token1] = ACTIONS(67), @@ -47798,181 +48436,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(982), }, [176] = { - [sym__terminator] = STATE(623), - [sym__expression] = STATE(1473), - [sym_block] = STATE(1473), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(1473), - [sym_nil] = STATE(1473), - [sym__atom] = STATE(1473), - [sym_quoted_atom] = STATE(1473), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(1473), - [sym_charlist] = STATE(1473), - [sym_sigil] = STATE(1473), - [sym_list] = STATE(1473), - [sym_tuple] = STATE(1473), - [sym_bitstring] = STATE(1473), - [sym_map] = STATE(1473), - [sym_unary_operator] = STATE(1473), - [sym_binary_operator] = STATE(1473), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(1473), - [sym_call] = STATE(1473), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [sym__terminator] = STATE(765), + [sym__expression] = STATE(1526), + [sym_block] = STATE(1526), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(1526), + [sym_nil] = STATE(1526), + [sym__atom] = STATE(1526), + [sym_quoted_atom] = STATE(1526), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(1526), + [sym_charlist] = STATE(1526), + [sym_sigil] = STATE(1526), + [sym_list] = STATE(1526), + [sym_tuple] = STATE(1526), + [sym_bitstring] = STATE(1526), + [sym_map] = STATE(1526), + [sym_unary_operator] = STATE(1526), + [sym_binary_operator] = STATE(1526), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(1526), + [sym_call] = STATE(1526), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(1473), - [sym_body] = STATE(3798), - [sym_anonymous_function] = STATE(1473), - [aux_sym__terminator_repeat1] = STATE(1028), - [aux_sym__terminator_token1] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1056), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(944), - [anon_sym___MODULE__] = ACTIONS(71), - [anon_sym___DIR__] = ACTIONS(71), - [anon_sym___ENV__] = ACTIONS(71), - [anon_sym___CALLER__] = ACTIONS(71), - [anon_sym___STACKTRACE__] = ACTIONS(71), - [sym_alias] = ACTIONS(1058), - [sym_integer] = ACTIONS(1058), - [sym_float] = ACTIONS(1058), - [sym_char] = ACTIONS(1058), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1058), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(972), - [anon_sym_CARET] = ACTIONS(972), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), - [anon_sym_not] = ACTIONS(972), - [anon_sym_AT] = ACTIONS(974), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(1063), - [anon_sym_catch] = ACTIONS(1063), - [anon_sym_else] = ACTIONS(1063), - [anon_sym_end] = ACTIONS(1063), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(1063), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(980), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [177] = { - [sym__terminator] = STATE(623), - [sym__expression] = STATE(1473), - [sym_block] = STATE(1473), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(1473), - [sym_nil] = STATE(1473), - [sym__atom] = STATE(1473), - [sym_quoted_atom] = STATE(1473), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(1473), - [sym_charlist] = STATE(1473), - [sym_sigil] = STATE(1473), - [sym_list] = STATE(1473), - [sym_tuple] = STATE(1473), - [sym_bitstring] = STATE(1473), - [sym_map] = STATE(1473), - [sym_unary_operator] = STATE(1473), - [sym_binary_operator] = STATE(1473), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(1473), - [sym_call] = STATE(1473), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(1473), - [sym_body] = STATE(3799), - [sym_anonymous_function] = STATE(1473), - [aux_sym__terminator_repeat1] = STATE(1028), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(1526), + [sym_body] = STATE(4408), + [sym_anonymous_function] = STATE(1526), + [aux_sym__terminator_repeat1] = STATE(1031), [aux_sym__terminator_token1] = ACTIONS(1054), [anon_sym_SEMI] = ACTIONS(1056), [anon_sym_LPAREN] = ACTIONS(942), @@ -48052,6 +48556,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(1060), + [anon_sym_catch] = ACTIONS(1060), + [anon_sym_else] = ACTIONS(1060), + [anon_sym_end] = ACTIONS(1060), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(1060), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [177] = { + [sym__terminator] = STATE(765), + [sym__expression] = STATE(1526), + [sym_block] = STATE(1526), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(1526), + [sym_nil] = STATE(1526), + [sym__atom] = STATE(1526), + [sym_quoted_atom] = STATE(1526), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(1526), + [sym_charlist] = STATE(1526), + [sym_sigil] = STATE(1526), + [sym_list] = STATE(1526), + [sym_tuple] = STATE(1526), + [sym_bitstring] = STATE(1526), + [sym_map] = STATE(1526), + [sym_unary_operator] = STATE(1526), + [sym_binary_operator] = STATE(1526), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(1526), + [sym_call] = STATE(1526), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(1526), + [sym_body] = STATE(4407), + [sym_anonymous_function] = STATE(1526), + [aux_sym__terminator_repeat1] = STATE(1031), + [aux_sym__terminator_token1] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(1058), + [sym_integer] = ACTIONS(1058), + [sym_float] = ACTIONS(1058), + [sym_char] = ACTIONS(1058), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), [anon_sym_after] = ACTIONS(1065), [anon_sym_catch] = ACTIONS(1065), [anon_sym_else] = ACTIONS(1065), @@ -48066,49 +48704,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(982), }, [178] = { - [sym__expression] = STATE(3005), - [sym_block] = STATE(3005), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3005), - [sym_nil] = STATE(3005), - [sym__atom] = STATE(3005), - [sym_quoted_atom] = STATE(3005), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3005), - [sym_charlist] = STATE(3005), - [sym_sigil] = STATE(3005), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3005), - [sym_tuple] = STATE(3005), - [sym_bitstring] = STATE(3005), - [sym_map] = STATE(3005), - [sym__items_with_trailing_separator] = STATE(5018), - [sym_unary_operator] = STATE(3005), - [sym_binary_operator] = STATE(3005), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3005), - [sym_call] = STATE(3005), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3005), - [sym_anonymous_function] = STATE(3005), + [sym__expression] = STATE(3647), + [sym_block] = STATE(3647), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3647), + [sym_nil] = STATE(3647), + [sym__atom] = STATE(3647), + [sym_quoted_atom] = STATE(3647), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3647), + [sym_charlist] = STATE(3647), + [sym_sigil] = STATE(3647), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3647), + [sym_tuple] = STATE(3647), + [sym_bitstring] = STATE(3647), + [sym_map] = STATE(3647), + [sym__items_with_trailing_separator] = STATE(5610), + [sym_unary_operator] = STATE(3647), + [sym_binary_operator] = STATE(3647), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3647), + [sym_call] = STATE(3647), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3647), + [sym_anonymous_function] = STATE(3647), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), [aux_sym_identifier_token1] = ACTIONS(826), @@ -48198,49 +48836,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1109), }, [179] = { - [sym__expression] = STATE(3005), - [sym_block] = STATE(3005), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3005), - [sym_nil] = STATE(3005), - [sym__atom] = STATE(3005), - [sym_quoted_atom] = STATE(3005), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3005), - [sym_charlist] = STATE(3005), - [sym_sigil] = STATE(3005), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3005), - [sym_tuple] = STATE(3005), - [sym_bitstring] = STATE(3005), - [sym_map] = STATE(3005), - [sym__items_with_trailing_separator] = STATE(4973), - [sym_unary_operator] = STATE(3005), - [sym_binary_operator] = STATE(3005), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3005), - [sym_call] = STATE(3005), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3005), - [sym_anonymous_function] = STATE(3005), + [sym__expression] = STATE(3647), + [sym_block] = STATE(3647), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3647), + [sym_nil] = STATE(3647), + [sym__atom] = STATE(3647), + [sym_quoted_atom] = STATE(3647), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3647), + [sym_charlist] = STATE(3647), + [sym_sigil] = STATE(3647), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3647), + [sym_tuple] = STATE(3647), + [sym_bitstring] = STATE(3647), + [sym_map] = STATE(3647), + [sym__items_with_trailing_separator] = STATE(5567), + [sym_unary_operator] = STATE(3647), + [sym_binary_operator] = STATE(3647), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3647), + [sym_call] = STATE(3647), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3647), + [sym_anonymous_function] = STATE(3647), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), [aux_sym_identifier_token1] = ACTIONS(826), @@ -48330,49 +48968,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1109), }, [180] = { - [sym__expression] = STATE(3293), - [sym_block] = STATE(3293), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3293), - [sym_nil] = STATE(3293), - [sym__atom] = STATE(3293), - [sym_quoted_atom] = STATE(3293), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3293), - [sym_charlist] = STATE(3293), - [sym_sigil] = STATE(3293), - [sym__keywords_with_trailing_separator] = STATE(4998), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3293), - [sym_tuple] = STATE(3293), - [sym_bitstring] = STATE(3293), - [sym_map] = STATE(3293), - [sym_unary_operator] = STATE(3293), - [sym_binary_operator] = STATE(3293), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3293), - [sym_call] = STATE(3293), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym__call_arguments_with_trailing_separator] = STATE(4998), - [sym_access_call] = STATE(3293), - [sym_anonymous_function] = STATE(3293), + [sym__expression] = STATE(3955), + [sym_block] = STATE(3955), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3955), + [sym_nil] = STATE(3955), + [sym__atom] = STATE(3955), + [sym_quoted_atom] = STATE(3955), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3955), + [sym_charlist] = STATE(3955), + [sym_sigil] = STATE(3955), + [sym__keywords_with_trailing_separator] = STATE(5621), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3955), + [sym_tuple] = STATE(3955), + [sym_bitstring] = STATE(3955), + [sym_map] = STATE(3955), + [sym_unary_operator] = STATE(3955), + [sym_binary_operator] = STATE(3955), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3955), + [sym_call] = STATE(3955), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym__call_arguments_with_trailing_separator] = STATE(5621), + [sym_access_call] = STATE(3955), + [sym_anonymous_function] = STATE(3955), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), [anon_sym_RPAREN] = ACTIONS(1113), @@ -48462,49 +49100,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1109), }, [181] = { - [sym__expression] = STATE(3005), - [sym_block] = STATE(3005), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3005), - [sym_nil] = STATE(3005), - [sym__atom] = STATE(3005), - [sym_quoted_atom] = STATE(3005), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3005), - [sym_charlist] = STATE(3005), - [sym_sigil] = STATE(3005), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3005), - [sym_tuple] = STATE(3005), - [sym_bitstring] = STATE(3005), - [sym_map] = STATE(3005), - [sym__items_with_trailing_separator] = STATE(4935), - [sym_unary_operator] = STATE(3005), - [sym_binary_operator] = STATE(3005), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3005), - [sym_call] = STATE(3005), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3005), - [sym_anonymous_function] = STATE(3005), + [sym__expression] = STATE(3647), + [sym_block] = STATE(3647), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3647), + [sym_nil] = STATE(3647), + [sym__atom] = STATE(3647), + [sym_quoted_atom] = STATE(3647), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3647), + [sym_charlist] = STATE(3647), + [sym_sigil] = STATE(3647), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3647), + [sym_tuple] = STATE(3647), + [sym_bitstring] = STATE(3647), + [sym_map] = STATE(3647), + [sym__items_with_trailing_separator] = STATE(5584), + [sym_unary_operator] = STATE(3647), + [sym_binary_operator] = STATE(3647), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3647), + [sym_call] = STATE(3647), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3647), + [sym_anonymous_function] = STATE(3647), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), [aux_sym_identifier_token1] = ACTIONS(826), @@ -48594,49 +49232,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1109), }, [182] = { - [sym__expression] = STATE(3005), - [sym_block] = STATE(3005), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3005), - [sym_nil] = STATE(3005), - [sym__atom] = STATE(3005), - [sym_quoted_atom] = STATE(3005), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3005), - [sym_charlist] = STATE(3005), - [sym_sigil] = STATE(3005), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3005), - [sym_tuple] = STATE(3005), - [sym_bitstring] = STATE(3005), - [sym_map] = STATE(3005), - [sym__items_with_trailing_separator] = STATE(4971), - [sym_unary_operator] = STATE(3005), - [sym_binary_operator] = STATE(3005), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3005), - [sym_call] = STATE(3005), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3005), - [sym_anonymous_function] = STATE(3005), + [sym__expression] = STATE(3564), + [sym_block] = STATE(3564), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3564), + [sym_nil] = STATE(3564), + [sym__atom] = STATE(3564), + [sym_quoted_atom] = STATE(3564), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3564), + [sym_charlist] = STATE(3564), + [sym_sigil] = STATE(3564), + [sym__keywords_with_trailing_separator] = STATE(5450), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3564), + [sym_tuple] = STATE(3564), + [sym_bitstring] = STATE(3564), + [sym_map] = STATE(3564), + [sym_unary_operator] = STATE(3564), + [sym_binary_operator] = STATE(3564), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3564), + [sym_call] = STATE(3564), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3564), + [sym_anonymous_function] = STATE(3564), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), [aux_sym_identifier_token1] = ACTIONS(826), @@ -48647,151 +49284,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ENV__] = ACTIONS(830), [anon_sym___CALLER__] = ACTIONS(830), [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1071), - [sym_integer] = ACTIONS(1071), - [sym_float] = ACTIONS(1071), - [sym_char] = ACTIONS(1071), + [sym_alias] = ACTIONS(1119), + [sym_integer] = ACTIONS(1119), + [sym_float] = ACTIONS(1119), + [sym_char] = ACTIONS(1119), [anon_sym_true] = ACTIONS(1073), [anon_sym_false] = ACTIONS(1073), [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1071), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_RBRACE] = ACTIONS(1119), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [sym_keyword] = ACTIONS(1093), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [183] = { - [sym__expression] = STATE(3005), - [sym_block] = STATE(3005), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3005), - [sym_nil] = STATE(3005), - [sym__atom] = STATE(3005), - [sym_quoted_atom] = STATE(3005), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3005), - [sym_charlist] = STATE(3005), - [sym_sigil] = STATE(3005), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3005), - [sym_tuple] = STATE(3005), - [sym_bitstring] = STATE(3005), - [sym_map] = STATE(3005), - [sym__items_with_trailing_separator] = STATE(4969), - [sym_unary_operator] = STATE(3005), - [sym_binary_operator] = STATE(3005), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3005), - [sym_call] = STATE(3005), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3005), - [sym_anonymous_function] = STATE(3005), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1071), - [sym_integer] = ACTIONS(1071), - [sym_float] = ACTIONS(1071), - [sym_char] = ACTIONS(1071), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1071), + [sym_atom] = ACTIONS(1119), [anon_sym_DQUOTE] = ACTIONS(1077), [anon_sym_SQUOTE] = ACTIONS(1079), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_RBRACE] = ACTIONS(1121), [anon_sym_LBRACK] = ACTIONS(1089), [anon_sym_RBRACK] = ACTIONS(1121), [anon_sym_LT] = ACTIONS(39), @@ -48857,91 +49363,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(1109), }, - [184] = { - [sym__expression] = STATE(3241), - [sym_block] = STATE(3241), - [sym__identifier] = STATE(72), - [sym_identifier] = STATE(72), - [sym_special_identifier] = STATE(72), - [sym_boolean] = STATE(3241), - [sym_nil] = STATE(3241), - [sym__atom] = STATE(3241), - [sym_quoted_atom] = STATE(3241), - [sym__quoted_i_double] = STATE(3250), - [sym__quoted_i_single] = STATE(3251), - [sym__quoted_i_heredoc_single] = STATE(3518), - [sym__quoted_i_heredoc_double] = STATE(3516), - [sym_string] = STATE(3241), - [sym_charlist] = STATE(3241), - [sym_sigil] = STATE(3241), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4833), - [sym__keyword] = STATE(613), - [sym_quoted_keyword] = STATE(613), - [sym_list] = STATE(3241), - [sym_tuple] = STATE(3241), - [sym_bitstring] = STATE(3241), - [sym_map] = STATE(3241), - [sym__items_with_trailing_separator] = STATE(4955), - [sym_unary_operator] = STATE(3241), - [sym_binary_operator] = STATE(3241), - [sym_operator_identifier] = STATE(4972), - [sym_dot] = STATE(3241), - [sym_call] = STATE(3241), - [sym__call_without_parentheses] = STATE(3517), - [sym__call_with_parentheses] = STATE(3515), - [sym__local_call_without_parentheses] = STATE(3511), - [sym__local_call_with_parentheses] = STATE(3073), - [sym__local_call_just_do_block] = STATE(3510), - [sym__remote_call_without_parentheses] = STATE(3514), - [sym__remote_call_with_parentheses] = STATE(3088), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(3095), - [sym__anonymous_dot] = STATE(4928), - [sym__double_call] = STATE(3499), - [sym_access_call] = STATE(3241), - [sym_anonymous_function] = STATE(3241), + [183] = { + [sym__expression] = STATE(3564), + [sym_block] = STATE(3564), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3564), + [sym_nil] = STATE(3564), + [sym__atom] = STATE(3564), + [sym_quoted_atom] = STATE(3564), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3564), + [sym_charlist] = STATE(3564), + [sym_sigil] = STATE(3564), + [sym__keywords_with_trailing_separator] = STATE(5447), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3564), + [sym_tuple] = STATE(3564), + [sym_bitstring] = STATE(3564), + [sym_map] = STATE(3564), + [sym_unary_operator] = STATE(3564), + [sym_binary_operator] = STATE(3564), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3564), + [sym_call] = STATE(3564), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3564), + [sym_anonymous_function] = STATE(3564), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1123), - [aux_sym_identifier_token1] = ACTIONS(1125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1125), - [sym_unused_identifier] = ACTIONS(1127), - [anon_sym___MODULE__] = ACTIONS(1129), - [anon_sym___DIR__] = ACTIONS(1129), - [anon_sym___ENV__] = ACTIONS(1129), - [anon_sym___CALLER__] = ACTIONS(1129), - [anon_sym___STACKTRACE__] = ACTIONS(1129), - [sym_alias] = ACTIONS(1131), - [sym_integer] = ACTIONS(1131), - [sym_float] = ACTIONS(1131), - [sym_char] = ACTIONS(1131), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_nil] = ACTIONS(1135), - [sym_atom] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1119), + [sym_integer] = ACTIONS(1119), + [sym_float] = ACTIONS(1119), + [sym_char] = ACTIONS(1119), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(1119), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_RBRACE] = ACTIONS(1123), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_RBRACK] = ACTIONS(1123), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1149), - [sym_keyword] = ACTIONS(1151), - [anon_sym_LT_LT] = ACTIONS(1153), - [anon_sym_GT_GT] = ACTIONS(1155), - [anon_sym_PERCENT] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1161), - [anon_sym_not] = ACTIONS(1161), - [anon_sym_AT] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -48981,58 +49487,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1165), + [anon_sym_fn] = ACTIONS(1105), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1167), + [sym__before_unary_op] = ACTIONS(1107), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1169), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [184] = { + [sym__expression] = STATE(3955), + [sym_block] = STATE(3955), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3955), + [sym_nil] = STATE(3955), + [sym__atom] = STATE(3955), + [sym_quoted_atom] = STATE(3955), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3955), + [sym_charlist] = STATE(3955), + [sym_sigil] = STATE(3955), + [sym__keywords_with_trailing_separator] = STATE(5600), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3955), + [sym_tuple] = STATE(3955), + [sym_bitstring] = STATE(3955), + [sym_map] = STATE(3955), + [sym_unary_operator] = STATE(3955), + [sym_binary_operator] = STATE(3955), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3955), + [sym_call] = STATE(3955), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym__call_arguments_with_trailing_separator] = STATE(5600), + [sym_access_call] = STATE(3955), + [sym_anonymous_function] = STATE(3955), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [anon_sym_RPAREN] = ACTIONS(1125), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1115), + [sym_integer] = ACTIONS(1115), + [sym_float] = ACTIONS(1115), + [sym_char] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(1115), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), }, [185] = { - [sym__expression] = STATE(3005), - [sym_block] = STATE(3005), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3005), - [sym_nil] = STATE(3005), - [sym__atom] = STATE(3005), - [sym_quoted_atom] = STATE(3005), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3005), - [sym_charlist] = STATE(3005), - [sym_sigil] = STATE(3005), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3005), - [sym_tuple] = STATE(3005), - [sym_bitstring] = STATE(3005), - [sym_map] = STATE(3005), - [sym__items_with_trailing_separator] = STATE(4945), - [sym_unary_operator] = STATE(3005), - [sym_binary_operator] = STATE(3005), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3005), - [sym_call] = STATE(3005), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3005), - [sym_anonymous_function] = STATE(3005), + [sym__expression] = STATE(3647), + [sym_block] = STATE(3647), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3647), + [sym_nil] = STATE(3647), + [sym__atom] = STATE(3647), + [sym_quoted_atom] = STATE(3647), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3647), + [sym_charlist] = STATE(3647), + [sym_sigil] = STATE(3647), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3647), + [sym_tuple] = STATE(3647), + [sym_bitstring] = STATE(3647), + [sym_map] = STATE(3647), + [sym__items_with_trailing_separator] = STATE(5623), + [sym_unary_operator] = STATE(3647), + [sym_binary_operator] = STATE(3647), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3647), + [sym_call] = STATE(3647), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3647), + [sym_anonymous_function] = STATE(3647), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), [aux_sym_identifier_token1] = ACTIONS(826), @@ -49056,7 +49694,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1127), [anon_sym_LBRACK] = ACTIONS(1089), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), @@ -49122,52 +49760,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1109), }, [186] = { - [sym__expression] = STATE(3293), - [sym_block] = STATE(3293), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3293), - [sym_nil] = STATE(3293), - [sym__atom] = STATE(3293), - [sym_quoted_atom] = STATE(3293), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3293), - [sym_charlist] = STATE(3293), - [sym_sigil] = STATE(3293), - [sym__keywords_with_trailing_separator] = STATE(4939), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3293), - [sym_tuple] = STATE(3293), - [sym_bitstring] = STATE(3293), - [sym_map] = STATE(3293), - [sym_unary_operator] = STATE(3293), - [sym_binary_operator] = STATE(3293), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3293), - [sym_call] = STATE(3293), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym__call_arguments_with_trailing_separator] = STATE(4939), - [sym_access_call] = STATE(3293), - [sym_anonymous_function] = STATE(3293), + [sym__expression] = STATE(3647), + [sym_block] = STATE(3647), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3647), + [sym_nil] = STATE(3647), + [sym__atom] = STATE(3647), + [sym_quoted_atom] = STATE(3647), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3647), + [sym_charlist] = STATE(3647), + [sym_sigil] = STATE(3647), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3647), + [sym_tuple] = STATE(3647), + [sym_bitstring] = STATE(3647), + [sym_map] = STATE(3647), + [sym__items_with_trailing_separator] = STATE(5647), + [sym_unary_operator] = STATE(3647), + [sym_binary_operator] = STATE(3647), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3647), + [sym_call] = STATE(3647), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3647), + [sym_anonymous_function] = STATE(3647), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), - [anon_sym_RPAREN] = ACTIONS(1173), [aux_sym_identifier_token1] = ACTIONS(826), [anon_sym_DOT_DOT_DOT] = ACTIONS(826), [sym_unused_identifier] = ACTIONS(1069), @@ -49176,19 +49813,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ENV__] = ACTIONS(830), [anon_sym___CALLER__] = ACTIONS(830), [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1115), - [sym_integer] = ACTIONS(1115), - [sym_float] = ACTIONS(1115), - [sym_char] = ACTIONS(1115), + [sym_alias] = ACTIONS(1071), + [sym_integer] = ACTIONS(1071), + [sym_float] = ACTIONS(1071), + [sym_char] = ACTIONS(1071), [anon_sym_true] = ACTIONS(1073), [anon_sym_false] = ACTIONS(1073), [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1115), + [sym_atom] = ACTIONS(1071), [anon_sym_DQUOTE] = ACTIONS(1077), [anon_sym_SQUOTE] = ACTIONS(1079), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_RBRACE] = ACTIONS(1129), [anon_sym_LBRACK] = ACTIONS(1089), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), @@ -49254,49 +49892,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1109), }, [187] = { - [sym__expression] = STATE(3005), - [sym_block] = STATE(3005), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3005), - [sym_nil] = STATE(3005), - [sym__atom] = STATE(3005), - [sym_quoted_atom] = STATE(3005), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3005), - [sym_charlist] = STATE(3005), - [sym_sigil] = STATE(3005), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3005), - [sym_tuple] = STATE(3005), - [sym_bitstring] = STATE(3005), - [sym_map] = STATE(3005), - [sym__items_with_trailing_separator] = STATE(5023), - [sym_unary_operator] = STATE(3005), - [sym_binary_operator] = STATE(3005), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3005), - [sym_call] = STATE(3005), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3005), - [sym_anonymous_function] = STATE(3005), + [sym__expression] = STATE(3647), + [sym_block] = STATE(3647), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3647), + [sym_nil] = STATE(3647), + [sym__atom] = STATE(3647), + [sym_quoted_atom] = STATE(3647), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3647), + [sym_charlist] = STATE(3647), + [sym_sigil] = STATE(3647), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3647), + [sym_tuple] = STATE(3647), + [sym_bitstring] = STATE(3647), + [sym_map] = STATE(3647), + [sym__items_with_trailing_separator] = STATE(5648), + [sym_unary_operator] = STATE(3647), + [sym_binary_operator] = STATE(3647), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3647), + [sym_call] = STATE(3647), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3647), + [sym_anonymous_function] = STATE(3647), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), [aux_sym_identifier_token1] = ACTIONS(826), @@ -49320,8 +49958,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_RBRACE] = ACTIONS(1175), [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_RBRACK] = ACTIONS(1131), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), @@ -49386,90 +50024,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1109), }, [188] = { - [sym__expression] = STATE(3005), - [sym_block] = STATE(3005), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3005), - [sym_nil] = STATE(3005), - [sym__atom] = STATE(3005), - [sym_quoted_atom] = STATE(3005), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3005), - [sym_charlist] = STATE(3005), - [sym_sigil] = STATE(3005), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3005), - [sym_tuple] = STATE(3005), - [sym_bitstring] = STATE(3005), - [sym_map] = STATE(3005), - [sym__items_with_trailing_separator] = STATE(4979), - [sym_unary_operator] = STATE(3005), - [sym_binary_operator] = STATE(3005), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3005), - [sym_call] = STATE(3005), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3005), - [sym_anonymous_function] = STATE(3005), + [sym__expression] = STATE(3729), + [sym_block] = STATE(3729), + [sym__identifier] = STATE(66), + [sym_identifier] = STATE(66), + [sym_special_identifier] = STATE(66), + [sym_boolean] = STATE(3729), + [sym_nil] = STATE(3729), + [sym__atom] = STATE(3729), + [sym_quoted_atom] = STATE(3729), + [sym__quoted_i_double] = STATE(3826), + [sym__quoted_i_single] = STATE(3829), + [sym__quoted_i_heredoc_single] = STATE(4077), + [sym__quoted_i_heredoc_double] = STATE(4083), + [sym_string] = STATE(3729), + [sym_charlist] = STATE(3729), + [sym_sigil] = STATE(3729), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5442), + [sym__keyword] = STATE(759), + [sym_quoted_keyword] = STATE(759), + [sym_list] = STATE(3729), + [sym_tuple] = STATE(3729), + [sym_bitstring] = STATE(3729), + [sym_map] = STATE(3729), + [sym__items_with_trailing_separator] = STATE(5651), + [sym_unary_operator] = STATE(3729), + [sym_binary_operator] = STATE(3729), + [sym_operator_identifier] = STATE(5580), + [sym_dot] = STATE(3729), + [sym_call] = STATE(3729), + [sym__call_without_parentheses] = STATE(4089), + [sym__call_with_parentheses] = STATE(4092), + [sym__local_call_without_parentheses] = STATE(4097), + [sym__local_call_with_parentheses] = STATE(3372), + [sym__local_call_just_do_block] = STATE(4098), + [sym__remote_call_without_parentheses] = STATE(4105), + [sym__remote_call_with_parentheses] = STATE(3374), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3375), + [sym__anonymous_dot] = STATE(5531), + [sym__double_call] = STATE(4106), + [sym_access_call] = STATE(3729), + [sym_anonymous_function] = STATE(3729), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1071), - [sym_integer] = ACTIONS(1071), - [sym_float] = ACTIONS(1071), - [sym_char] = ACTIONS(1071), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1071), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_RBRACE] = ACTIONS(1177), - [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1133), + [aux_sym_identifier_token1] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1135), + [sym_unused_identifier] = ACTIONS(1137), + [anon_sym___MODULE__] = ACTIONS(1139), + [anon_sym___DIR__] = ACTIONS(1139), + [anon_sym___ENV__] = ACTIONS(1139), + [anon_sym___CALLER__] = ACTIONS(1139), + [anon_sym___STACKTRACE__] = ACTIONS(1139), + [sym_alias] = ACTIONS(1141), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1141), + [sym_char] = ACTIONS(1141), + [anon_sym_true] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [anon_sym_nil] = ACTIONS(1145), + [sym_atom] = ACTIONS(1141), + [anon_sym_DQUOTE] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1151), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1157), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [sym_keyword] = ACTIONS(1093), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), + [anon_sym_TILDE] = ACTIONS(1159), + [sym_keyword] = ACTIONS(1161), + [anon_sym_LT_LT] = ACTIONS(1163), + [anon_sym_GT_GT] = ACTIONS(1165), + [anon_sym_PERCENT] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_AT] = ACTIONS(1173), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -49509,325 +50147,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), + [anon_sym_fn] = ACTIONS(1175), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), + [sym__before_unary_op] = ACTIONS(1177), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), + [sym__quoted_atom_start] = ACTIONS(1179), }, [189] = { - [sym__expression] = STATE(3005), - [sym_block] = STATE(3005), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3005), - [sym_nil] = STATE(3005), - [sym__atom] = STATE(3005), - [sym_quoted_atom] = STATE(3005), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3005), - [sym_charlist] = STATE(3005), - [sym_sigil] = STATE(3005), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3005), - [sym_tuple] = STATE(3005), - [sym_bitstring] = STATE(3005), - [sym_map] = STATE(3005), - [sym__items_with_trailing_separator] = STATE(5003), - [sym_unary_operator] = STATE(3005), - [sym_binary_operator] = STATE(3005), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3005), - [sym_call] = STATE(3005), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3005), - [sym_anonymous_function] = STATE(3005), + [sym__expression] = STATE(3955), + [sym_block] = STATE(3955), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3955), + [sym_nil] = STATE(3955), + [sym__atom] = STATE(3955), + [sym_quoted_atom] = STATE(3955), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3955), + [sym_charlist] = STATE(3955), + [sym_sigil] = STATE(3955), + [sym__keywords_with_trailing_separator] = STATE(5589), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3955), + [sym_tuple] = STATE(3955), + [sym_bitstring] = STATE(3955), + [sym_map] = STATE(3955), + [sym_unary_operator] = STATE(3955), + [sym_binary_operator] = STATE(3955), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3955), + [sym_call] = STATE(3955), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym__call_arguments_with_trailing_separator] = STATE(5589), + [sym_access_call] = STATE(3955), + [sym_anonymous_function] = STATE(3955), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1071), - [sym_integer] = ACTIONS(1071), - [sym_float] = ACTIONS(1071), - [sym_char] = ACTIONS(1071), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1071), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_RBRACK] = ACTIONS(1179), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [sym_keyword] = ACTIONS(1093), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [190] = { - [sym__expression] = STATE(2821), - [sym_block] = STATE(2821), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(2821), - [sym_nil] = STATE(2821), - [sym__atom] = STATE(2821), - [sym_quoted_atom] = STATE(2821), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(2821), - [sym_charlist] = STATE(2821), - [sym_sigil] = STATE(2821), - [sym__keywords_with_trailing_separator] = STATE(4840), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(2821), - [sym_tuple] = STATE(2821), - [sym_bitstring] = STATE(2821), - [sym_map] = STATE(2821), - [sym_unary_operator] = STATE(2821), - [sym_binary_operator] = STATE(2821), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(2821), - [sym_call] = STATE(2821), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(2821), - [sym_anonymous_function] = STATE(2821), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1181), - [sym_integer] = ACTIONS(1181), - [sym_float] = ACTIONS(1181), - [sym_char] = ACTIONS(1181), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1181), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_RBRACE] = ACTIONS(1183), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_RBRACK] = ACTIONS(1183), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [sym_keyword] = ACTIONS(1093), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [191] = { - [sym__expression] = STATE(3293), - [sym_block] = STATE(3293), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3293), - [sym_nil] = STATE(3293), - [sym__atom] = STATE(3293), - [sym_quoted_atom] = STATE(3293), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3293), - [sym_charlist] = STATE(3293), - [sym_sigil] = STATE(3293), - [sym__keywords_with_trailing_separator] = STATE(4938), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3293), - [sym_tuple] = STATE(3293), - [sym_bitstring] = STATE(3293), - [sym_map] = STATE(3293), - [sym_unary_operator] = STATE(3293), - [sym_binary_operator] = STATE(3293), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3293), - [sym_call] = STATE(3293), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym__call_arguments_with_trailing_separator] = STATE(4938), - [sym_access_call] = STATE(3293), - [sym_anonymous_function] = STATE(3293), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [anon_sym_RPAREN] = ACTIONS(1185), + [anon_sym_RPAREN] = ACTIONS(1181), [aux_sym_identifier_token1] = ACTIONS(826), [anon_sym_DOT_DOT_DOT] = ACTIONS(826), [sym_unused_identifier] = ACTIONS(1069), @@ -49913,52 +50287,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(1109), }, - [192] = { - [sym__expression] = STATE(3005), - [sym_block] = STATE(3005), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3005), - [sym_nil] = STATE(3005), - [sym__atom] = STATE(3005), - [sym_quoted_atom] = STATE(3005), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3005), - [sym_charlist] = STATE(3005), - [sym_sigil] = STATE(3005), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3005), - [sym_tuple] = STATE(3005), - [sym_bitstring] = STATE(3005), - [sym_map] = STATE(3005), - [sym__items_with_trailing_separator] = STATE(4947), - [sym_unary_operator] = STATE(3005), - [sym_binary_operator] = STATE(3005), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3005), - [sym_call] = STATE(3005), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3005), - [sym_anonymous_function] = STATE(3005), + [190] = { + [sym__expression] = STATE(3955), + [sym_block] = STATE(3955), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3955), + [sym_nil] = STATE(3955), + [sym__atom] = STATE(3955), + [sym_quoted_atom] = STATE(3955), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3955), + [sym_charlist] = STATE(3955), + [sym_sigil] = STATE(3955), + [sym__keywords_with_trailing_separator] = STATE(5583), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3955), + [sym_tuple] = STATE(3955), + [sym_bitstring] = STATE(3955), + [sym_map] = STATE(3955), + [sym_unary_operator] = STATE(3955), + [sym_binary_operator] = STATE(3955), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3955), + [sym_call] = STATE(3955), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym__call_arguments_with_trailing_separator] = STATE(5583), + [sym_access_call] = STATE(3955), + [sym_anonymous_function] = STATE(3955), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), + [anon_sym_RPAREN] = ACTIONS(1183), [aux_sym_identifier_token1] = ACTIONS(826), [anon_sym_DOT_DOT_DOT] = ACTIONS(826), [sym_unused_identifier] = ACTIONS(1069), @@ -49967,20 +50342,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ENV__] = ACTIONS(830), [anon_sym___CALLER__] = ACTIONS(830), [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1071), - [sym_integer] = ACTIONS(1071), - [sym_float] = ACTIONS(1071), - [sym_char] = ACTIONS(1071), + [sym_alias] = ACTIONS(1115), + [sym_integer] = ACTIONS(1115), + [sym_float] = ACTIONS(1115), + [sym_char] = ACTIONS(1115), [anon_sym_true] = ACTIONS(1073), [anon_sym_false] = ACTIONS(1073), [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1071), + [sym_atom] = ACTIONS(1115), [anon_sym_DQUOTE] = ACTIONS(1077), [anon_sym_SQUOTE] = ACTIONS(1079), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_RBRACE] = ACTIONS(1187), [anon_sym_LBRACK] = ACTIONS(1089), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), @@ -50045,91 +50419,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(1109), }, - [193] = { - [sym__expression] = STATE(3241), - [sym_block] = STATE(3241), - [sym__identifier] = STATE(72), - [sym_identifier] = STATE(72), - [sym_special_identifier] = STATE(72), - [sym_boolean] = STATE(3241), - [sym_nil] = STATE(3241), - [sym__atom] = STATE(3241), - [sym_quoted_atom] = STATE(3241), - [sym__quoted_i_double] = STATE(3250), - [sym__quoted_i_single] = STATE(3251), - [sym__quoted_i_heredoc_single] = STATE(3518), - [sym__quoted_i_heredoc_double] = STATE(3516), - [sym_string] = STATE(3241), - [sym_charlist] = STATE(3241), - [sym_sigil] = STATE(3241), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4833), - [sym__keyword] = STATE(613), - [sym_quoted_keyword] = STATE(613), - [sym_list] = STATE(3241), - [sym_tuple] = STATE(3241), - [sym_bitstring] = STATE(3241), - [sym_map] = STATE(3241), - [sym__items_with_trailing_separator] = STATE(5000), - [sym_unary_operator] = STATE(3241), - [sym_binary_operator] = STATE(3241), - [sym_operator_identifier] = STATE(4972), - [sym_dot] = STATE(3241), - [sym_call] = STATE(3241), - [sym__call_without_parentheses] = STATE(3517), - [sym__call_with_parentheses] = STATE(3515), - [sym__local_call_without_parentheses] = STATE(3511), - [sym__local_call_with_parentheses] = STATE(3073), - [sym__local_call_just_do_block] = STATE(3510), - [sym__remote_call_without_parentheses] = STATE(3514), - [sym__remote_call_with_parentheses] = STATE(3088), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(3095), - [sym__anonymous_dot] = STATE(4928), - [sym__double_call] = STATE(3499), - [sym_access_call] = STATE(3241), - [sym_anonymous_function] = STATE(3241), + [191] = { + [sym__expression] = STATE(3647), + [sym_block] = STATE(3647), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3647), + [sym_nil] = STATE(3647), + [sym__atom] = STATE(3647), + [sym_quoted_atom] = STATE(3647), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3647), + [sym_charlist] = STATE(3647), + [sym_sigil] = STATE(3647), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3647), + [sym_tuple] = STATE(3647), + [sym_bitstring] = STATE(3647), + [sym_map] = STATE(3647), + [sym__items_with_trailing_separator] = STATE(5576), + [sym_unary_operator] = STATE(3647), + [sym_binary_operator] = STATE(3647), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3647), + [sym_call] = STATE(3647), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3647), + [sym_anonymous_function] = STATE(3647), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1123), - [aux_sym_identifier_token1] = ACTIONS(1125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1125), - [sym_unused_identifier] = ACTIONS(1127), - [anon_sym___MODULE__] = ACTIONS(1129), - [anon_sym___DIR__] = ACTIONS(1129), - [anon_sym___ENV__] = ACTIONS(1129), - [anon_sym___CALLER__] = ACTIONS(1129), - [anon_sym___STACKTRACE__] = ACTIONS(1129), - [sym_alias] = ACTIONS(1131), - [sym_integer] = ACTIONS(1131), - [sym_float] = ACTIONS(1131), - [sym_char] = ACTIONS(1131), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_nil] = ACTIONS(1135), - [sym_atom] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1071), + [sym_integer] = ACTIONS(1071), + [sym_float] = ACTIONS(1071), + [sym_char] = ACTIONS(1071), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(1071), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_RBRACE] = ACTIONS(1185), + [anon_sym_LBRACK] = ACTIONS(1089), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1149), - [sym_keyword] = ACTIONS(1151), - [anon_sym_LT_LT] = ACTIONS(1153), - [anon_sym_GT_GT] = ACTIONS(1189), - [anon_sym_PERCENT] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1161), - [anon_sym_not] = ACTIONS(1161), - [anon_sym_AT] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -50169,58 +50543,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1165), + [anon_sym_fn] = ACTIONS(1105), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1167), + [sym__before_unary_op] = ACTIONS(1107), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1169), + [sym__quoted_atom_start] = ACTIONS(1109), }, - [194] = { - [sym__expression] = STATE(3005), - [sym_block] = STATE(3005), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3005), - [sym_nil] = STATE(3005), - [sym__atom] = STATE(3005), - [sym_quoted_atom] = STATE(3005), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3005), - [sym_charlist] = STATE(3005), - [sym_sigil] = STATE(3005), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3005), - [sym_tuple] = STATE(3005), - [sym_bitstring] = STATE(3005), - [sym_map] = STATE(3005), - [sym__items_with_trailing_separator] = STATE(4963), - [sym_unary_operator] = STATE(3005), - [sym_binary_operator] = STATE(3005), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3005), - [sym_call] = STATE(3005), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3005), - [sym_anonymous_function] = STATE(3005), + [192] = { + [sym__expression] = STATE(3729), + [sym_block] = STATE(3729), + [sym__identifier] = STATE(66), + [sym_identifier] = STATE(66), + [sym_special_identifier] = STATE(66), + [sym_boolean] = STATE(3729), + [sym_nil] = STATE(3729), + [sym__atom] = STATE(3729), + [sym_quoted_atom] = STATE(3729), + [sym__quoted_i_double] = STATE(3826), + [sym__quoted_i_single] = STATE(3829), + [sym__quoted_i_heredoc_single] = STATE(4077), + [sym__quoted_i_heredoc_double] = STATE(4083), + [sym_string] = STATE(3729), + [sym_charlist] = STATE(3729), + [sym_sigil] = STATE(3729), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5442), + [sym__keyword] = STATE(759), + [sym_quoted_keyword] = STATE(759), + [sym_list] = STATE(3729), + [sym_tuple] = STATE(3729), + [sym_bitstring] = STATE(3729), + [sym_map] = STATE(3729), + [sym__items_with_trailing_separator] = STATE(5626), + [sym_unary_operator] = STATE(3729), + [sym_binary_operator] = STATE(3729), + [sym_operator_identifier] = STATE(5580), + [sym_dot] = STATE(3729), + [sym_call] = STATE(3729), + [sym__call_without_parentheses] = STATE(4089), + [sym__call_with_parentheses] = STATE(4092), + [sym__local_call_without_parentheses] = STATE(4097), + [sym__local_call_with_parentheses] = STATE(3372), + [sym__local_call_just_do_block] = STATE(4098), + [sym__remote_call_without_parentheses] = STATE(4105), + [sym__remote_call_with_parentheses] = STATE(3374), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3375), + [sym__anonymous_dot] = STATE(5531), + [sym__double_call] = STATE(4106), + [sym_access_call] = STATE(3729), + [sym_anonymous_function] = STATE(3729), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1133), + [aux_sym_identifier_token1] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1135), + [sym_unused_identifier] = ACTIONS(1137), + [anon_sym___MODULE__] = ACTIONS(1139), + [anon_sym___DIR__] = ACTIONS(1139), + [anon_sym___ENV__] = ACTIONS(1139), + [anon_sym___CALLER__] = ACTIONS(1139), + [anon_sym___STACKTRACE__] = ACTIONS(1139), + [sym_alias] = ACTIONS(1141), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1141), + [sym_char] = ACTIONS(1141), + [anon_sym_true] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [anon_sym_nil] = ACTIONS(1145), + [sym_atom] = ACTIONS(1141), + [anon_sym_DQUOTE] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1151), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1157), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1159), + [sym_keyword] = ACTIONS(1161), + [anon_sym_LT_LT] = ACTIONS(1163), + [anon_sym_GT_GT] = ACTIONS(1187), + [anon_sym_PERCENT] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_AT] = ACTIONS(1173), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1175), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1177), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1179), + }, + [193] = { + [sym__expression] = STATE(3647), + [sym_block] = STATE(3647), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3647), + [sym_nil] = STATE(3647), + [sym__atom] = STATE(3647), + [sym_quoted_atom] = STATE(3647), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3647), + [sym_charlist] = STATE(3647), + [sym_sigil] = STATE(3647), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3647), + [sym_tuple] = STATE(3647), + [sym_bitstring] = STATE(3647), + [sym_map] = STATE(3647), + [sym__items_with_trailing_separator] = STATE(5638), + [sym_unary_operator] = STATE(3647), + [sym_binary_operator] = STATE(3647), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3647), + [sym_call] = STATE(3647), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3647), + [sym_anonymous_function] = STATE(3647), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), [aux_sym_identifier_token1] = ACTIONS(826), @@ -50244,7 +50750,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_RBRACE] = ACTIONS(1191), + [anon_sym_RBRACE] = ACTIONS(1189), [anon_sym_LBRACK] = ACTIONS(1089), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), @@ -50309,50 +50815,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(1109), }, + [194] = { + [sym__expression] = STATE(3647), + [sym_block] = STATE(3647), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3647), + [sym_nil] = STATE(3647), + [sym__atom] = STATE(3647), + [sym_quoted_atom] = STATE(3647), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3647), + [sym_charlist] = STATE(3647), + [sym_sigil] = STATE(3647), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3647), + [sym_tuple] = STATE(3647), + [sym_bitstring] = STATE(3647), + [sym_map] = STATE(3647), + [sym__items_with_trailing_separator] = STATE(5629), + [sym_unary_operator] = STATE(3647), + [sym_binary_operator] = STATE(3647), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3647), + [sym_call] = STATE(3647), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3647), + [sym_anonymous_function] = STATE(3647), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1071), + [sym_integer] = ACTIONS(1071), + [sym_float] = ACTIONS(1071), + [sym_char] = ACTIONS(1071), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(1071), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_RBRACK] = ACTIONS(1191), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, [195] = { - [sym__expression] = STATE(3293), - [sym_block] = STATE(3293), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3293), - [sym_nil] = STATE(3293), - [sym__atom] = STATE(3293), - [sym_quoted_atom] = STATE(3293), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3293), - [sym_charlist] = STATE(3293), - [sym_sigil] = STATE(3293), - [sym__keywords_with_trailing_separator] = STATE(4989), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3293), - [sym_tuple] = STATE(3293), - [sym_bitstring] = STATE(3293), - [sym_map] = STATE(3293), - [sym_unary_operator] = STATE(3293), - [sym_binary_operator] = STATE(3293), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3293), - [sym_call] = STATE(3293), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym__call_arguments_with_trailing_separator] = STATE(4989), - [sym_access_call] = STATE(3293), - [sym_anonymous_function] = STATE(3293), + [sym__expression] = STATE(3955), + [sym_block] = STATE(3955), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3955), + [sym_nil] = STATE(3955), + [sym__atom] = STATE(3955), + [sym_quoted_atom] = STATE(3955), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3955), + [sym_charlist] = STATE(3955), + [sym_sigil] = STATE(3955), + [sym__keywords_with_trailing_separator] = STATE(5635), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3955), + [sym_tuple] = STATE(3955), + [sym_bitstring] = STATE(3955), + [sym_map] = STATE(3955), + [sym_unary_operator] = STATE(3955), + [sym_binary_operator] = STATE(3955), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3955), + [sym_call] = STATE(3955), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym__call_arguments_with_trailing_separator] = STATE(5635), + [sym_access_call] = STATE(3955), + [sym_anonymous_function] = STATE(3955), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), [anon_sym_RPAREN] = ACTIONS(1193), @@ -50442,51 +51080,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1109), }, [196] = { - [sym__expression] = STATE(3005), - [sym_block] = STATE(3005), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3005), - [sym_nil] = STATE(3005), - [sym__atom] = STATE(3005), - [sym_quoted_atom] = STATE(3005), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3005), - [sym_charlist] = STATE(3005), - [sym_sigil] = STATE(3005), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3005), - [sym_tuple] = STATE(3005), - [sym_bitstring] = STATE(3005), - [sym_map] = STATE(3005), - [sym__items_with_trailing_separator] = STATE(5019), - [sym_unary_operator] = STATE(3005), - [sym_binary_operator] = STATE(3005), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3005), - [sym_call] = STATE(3005), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3005), - [sym_anonymous_function] = STATE(3005), + [sym__expression] = STATE(3955), + [sym_block] = STATE(3955), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3955), + [sym_nil] = STATE(3955), + [sym__atom] = STATE(3955), + [sym_quoted_atom] = STATE(3955), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3955), + [sym_charlist] = STATE(3955), + [sym_sigil] = STATE(3955), + [sym__keywords_with_trailing_separator] = STATE(5634), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3955), + [sym_tuple] = STATE(3955), + [sym_bitstring] = STATE(3955), + [sym_map] = STATE(3955), + [sym_unary_operator] = STATE(3955), + [sym_binary_operator] = STATE(3955), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3955), + [sym_call] = STATE(3955), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym__call_arguments_with_trailing_separator] = STATE(5634), + [sym_access_call] = STATE(3955), + [sym_anonymous_function] = STATE(3955), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), + [anon_sym_RPAREN] = ACTIONS(1195), [aux_sym_identifier_token1] = ACTIONS(826), [anon_sym_DOT_DOT_DOT] = ACTIONS(826), [sym_unused_identifier] = ACTIONS(1069), @@ -50495,20 +51134,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ENV__] = ACTIONS(830), [anon_sym___CALLER__] = ACTIONS(830), [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1071), - [sym_integer] = ACTIONS(1071), - [sym_float] = ACTIONS(1071), - [sym_char] = ACTIONS(1071), + [sym_alias] = ACTIONS(1115), + [sym_integer] = ACTIONS(1115), + [sym_float] = ACTIONS(1115), + [sym_char] = ACTIONS(1115), [anon_sym_true] = ACTIONS(1073), [anon_sym_false] = ACTIONS(1073), [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1071), + [sym_atom] = ACTIONS(1115), [anon_sym_DQUOTE] = ACTIONS(1077), [anon_sym_SQUOTE] = ACTIONS(1079), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_RBRACE] = ACTIONS(1195), [anon_sym_LBRACK] = ACTIONS(1089), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), @@ -50574,51 +51212,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1109), }, [197] = { - [sym__expression] = STATE(3005), - [sym_block] = STATE(3005), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3005), - [sym_nil] = STATE(3005), - [sym__atom] = STATE(3005), - [sym_quoted_atom] = STATE(3005), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3005), - [sym_charlist] = STATE(3005), - [sym_sigil] = STATE(3005), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3005), - [sym_tuple] = STATE(3005), - [sym_bitstring] = STATE(3005), - [sym_map] = STATE(3005), - [sym__items_with_trailing_separator] = STATE(4961), - [sym_unary_operator] = STATE(3005), - [sym_binary_operator] = STATE(3005), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3005), - [sym_call] = STATE(3005), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3005), - [sym_anonymous_function] = STATE(3005), + [sym__expression] = STATE(3955), + [sym_block] = STATE(3955), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3955), + [sym_nil] = STATE(3955), + [sym__atom] = STATE(3955), + [sym_quoted_atom] = STATE(3955), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3955), + [sym_charlist] = STATE(3955), + [sym_sigil] = STATE(3955), + [sym__keywords_with_trailing_separator] = STATE(5551), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3955), + [sym_tuple] = STATE(3955), + [sym_bitstring] = STATE(3955), + [sym_map] = STATE(3955), + [sym_unary_operator] = STATE(3955), + [sym_binary_operator] = STATE(3955), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3955), + [sym_call] = STATE(3955), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym__call_arguments_with_trailing_separator] = STATE(5551), + [sym_access_call] = STATE(3955), + [sym_anonymous_function] = STATE(3955), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), + [anon_sym_RPAREN] = ACTIONS(1197), [aux_sym_identifier_token1] = ACTIONS(826), [anon_sym_DOT_DOT_DOT] = ACTIONS(826), [sym_unused_identifier] = ACTIONS(1069), @@ -50627,20 +51266,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ENV__] = ACTIONS(830), [anon_sym___CALLER__] = ACTIONS(830), [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1071), - [sym_integer] = ACTIONS(1071), - [sym_float] = ACTIONS(1071), - [sym_char] = ACTIONS(1071), + [sym_alias] = ACTIONS(1115), + [sym_integer] = ACTIONS(1115), + [sym_float] = ACTIONS(1115), + [sym_char] = ACTIONS(1115), [anon_sym_true] = ACTIONS(1073), [anon_sym_false] = ACTIONS(1073), [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1071), + [sym_atom] = ACTIONS(1115), [anon_sym_DQUOTE] = ACTIONS(1077), [anon_sym_SQUOTE] = ACTIONS(1079), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_RBRACE] = ACTIONS(1197), [anon_sym_LBRACK] = ACTIONS(1089), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), @@ -50706,49 +51344,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1109), }, [198] = { - [sym__expression] = STATE(3005), - [sym_block] = STATE(3005), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3005), - [sym_nil] = STATE(3005), - [sym__atom] = STATE(3005), - [sym_quoted_atom] = STATE(3005), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3005), - [sym_charlist] = STATE(3005), - [sym_sigil] = STATE(3005), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3005), - [sym_tuple] = STATE(3005), - [sym_bitstring] = STATE(3005), - [sym_map] = STATE(3005), - [sym__items_with_trailing_separator] = STATE(4975), - [sym_unary_operator] = STATE(3005), - [sym_binary_operator] = STATE(3005), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3005), - [sym_call] = STATE(3005), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3005), - [sym_anonymous_function] = STATE(3005), + [sym__expression] = STATE(3647), + [sym_block] = STATE(3647), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3647), + [sym_nil] = STATE(3647), + [sym__atom] = STATE(3647), + [sym_quoted_atom] = STATE(3647), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3647), + [sym_charlist] = STATE(3647), + [sym_sigil] = STATE(3647), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3647), + [sym_tuple] = STATE(3647), + [sym_bitstring] = STATE(3647), + [sym_map] = STATE(3647), + [sym__items_with_trailing_separator] = STATE(5570), + [sym_unary_operator] = STATE(3647), + [sym_binary_operator] = STATE(3647), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3647), + [sym_call] = STATE(3647), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3647), + [sym_anonymous_function] = STATE(3647), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), [aux_sym_identifier_token1] = ACTIONS(826), @@ -50838,52 +51476,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1109), }, [199] = { - [sym__expression] = STATE(3293), - [sym_block] = STATE(3293), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3293), - [sym_nil] = STATE(3293), - [sym__atom] = STATE(3293), - [sym_quoted_atom] = STATE(3293), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3293), - [sym_charlist] = STATE(3293), - [sym_sigil] = STATE(3293), - [sym__keywords_with_trailing_separator] = STATE(4937), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3293), - [sym_tuple] = STATE(3293), - [sym_bitstring] = STATE(3293), - [sym_map] = STATE(3293), - [sym_unary_operator] = STATE(3293), - [sym_binary_operator] = STATE(3293), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3293), - [sym_call] = STATE(3293), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym__call_arguments_with_trailing_separator] = STATE(4937), - [sym_access_call] = STATE(3293), - [sym_anonymous_function] = STATE(3293), + [sym__expression] = STATE(3647), + [sym_block] = STATE(3647), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3647), + [sym_nil] = STATE(3647), + [sym__atom] = STATE(3647), + [sym_quoted_atom] = STATE(3647), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3647), + [sym_charlist] = STATE(3647), + [sym_sigil] = STATE(3647), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3647), + [sym_tuple] = STATE(3647), + [sym_bitstring] = STATE(3647), + [sym_map] = STATE(3647), + [sym__items_with_trailing_separator] = STATE(5631), + [sym_unary_operator] = STATE(3647), + [sym_binary_operator] = STATE(3647), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3647), + [sym_call] = STATE(3647), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3647), + [sym_anonymous_function] = STATE(3647), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), - [anon_sym_RPAREN] = ACTIONS(1201), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1071), + [sym_integer] = ACTIONS(1071), + [sym_float] = ACTIONS(1071), + [sym_char] = ACTIONS(1071), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(1071), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_RBRACE] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [200] = { + [sym__expression] = STATE(3955), + [sym_block] = STATE(3955), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3955), + [sym_nil] = STATE(3955), + [sym__atom] = STATE(3955), + [sym_quoted_atom] = STATE(3955), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3955), + [sym_charlist] = STATE(3955), + [sym_sigil] = STATE(3955), + [sym__keywords_with_trailing_separator] = STATE(5543), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3955), + [sym_tuple] = STATE(3955), + [sym_bitstring] = STATE(3955), + [sym_map] = STATE(3955), + [sym_unary_operator] = STATE(3955), + [sym_binary_operator] = STATE(3955), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3955), + [sym_call] = STATE(3955), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym__call_arguments_with_trailing_separator] = STATE(5543), + [sym_access_call] = STATE(3955), + [sym_anonymous_function] = STATE(3955), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [anon_sym_RPAREN] = ACTIONS(1203), [aux_sym_identifier_token1] = ACTIONS(826), [anon_sym_DOT_DOT_DOT] = ACTIONS(826), [sym_unused_identifier] = ACTIONS(1069), @@ -50969,50 +51739,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(1109), }, - [200] = { - [sym__expression] = STATE(3005), - [sym_block] = STATE(3005), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3005), - [sym_nil] = STATE(3005), - [sym__atom] = STATE(3005), - [sym_quoted_atom] = STATE(3005), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3005), - [sym_charlist] = STATE(3005), - [sym_sigil] = STATE(3005), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3005), - [sym_tuple] = STATE(3005), - [sym_bitstring] = STATE(3005), - [sym_map] = STATE(3005), - [sym__items_with_trailing_separator] = STATE(4993), - [sym_unary_operator] = STATE(3005), - [sym_binary_operator] = STATE(3005), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3005), - [sym_call] = STATE(3005), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3005), - [sym_anonymous_function] = STATE(3005), + [201] = { + [sym__expression] = STATE(3647), + [sym_block] = STATE(3647), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3647), + [sym_nil] = STATE(3647), + [sym__atom] = STATE(3647), + [sym_quoted_atom] = STATE(3647), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3647), + [sym_charlist] = STATE(3647), + [sym_sigil] = STATE(3647), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3647), + [sym_tuple] = STATE(3647), + [sym_bitstring] = STATE(3647), + [sym_map] = STATE(3647), + [sym__items_with_trailing_separator] = STATE(5546), + [sym_unary_operator] = STATE(3647), + [sym_binary_operator] = STATE(3647), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3647), + [sym_call] = STATE(3647), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3647), + [sym_anonymous_function] = STATE(3647), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), [aux_sym_identifier_token1] = ACTIONS(826), @@ -51036,7 +51806,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_RBRACE] = ACTIONS(1203), + [anon_sym_RBRACE] = ACTIONS(1205), [anon_sym_LBRACK] = ACTIONS(1089), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), @@ -51101,182 +51871,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(1109), }, - [201] = { - [sym__expression] = STATE(3241), - [sym_block] = STATE(3241), - [sym__identifier] = STATE(72), - [sym_identifier] = STATE(72), - [sym_special_identifier] = STATE(72), - [sym_boolean] = STATE(3241), - [sym_nil] = STATE(3241), - [sym__atom] = STATE(3241), - [sym_quoted_atom] = STATE(3241), - [sym__quoted_i_double] = STATE(3250), - [sym__quoted_i_single] = STATE(3251), - [sym__quoted_i_heredoc_single] = STATE(3518), - [sym__quoted_i_heredoc_double] = STATE(3516), - [sym_string] = STATE(3241), - [sym_charlist] = STATE(3241), - [sym_sigil] = STATE(3241), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4833), - [sym__keyword] = STATE(613), - [sym_quoted_keyword] = STATE(613), - [sym_list] = STATE(3241), - [sym_tuple] = STATE(3241), - [sym_bitstring] = STATE(3241), - [sym_map] = STATE(3241), - [sym__items_with_trailing_separator] = STATE(4981), - [sym_unary_operator] = STATE(3241), - [sym_binary_operator] = STATE(3241), - [sym_operator_identifier] = STATE(4972), - [sym_dot] = STATE(3241), - [sym_call] = STATE(3241), - [sym__call_without_parentheses] = STATE(3517), - [sym__call_with_parentheses] = STATE(3515), - [sym__local_call_without_parentheses] = STATE(3511), - [sym__local_call_with_parentheses] = STATE(3073), - [sym__local_call_just_do_block] = STATE(3510), - [sym__remote_call_without_parentheses] = STATE(3514), - [sym__remote_call_with_parentheses] = STATE(3088), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(3095), - [sym__anonymous_dot] = STATE(4928), - [sym__double_call] = STATE(3499), - [sym_access_call] = STATE(3241), - [sym_anonymous_function] = STATE(3241), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1123), - [aux_sym_identifier_token1] = ACTIONS(1125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1125), - [sym_unused_identifier] = ACTIONS(1127), - [anon_sym___MODULE__] = ACTIONS(1129), - [anon_sym___DIR__] = ACTIONS(1129), - [anon_sym___ENV__] = ACTIONS(1129), - [anon_sym___CALLER__] = ACTIONS(1129), - [anon_sym___STACKTRACE__] = ACTIONS(1129), - [sym_alias] = ACTIONS(1131), - [sym_integer] = ACTIONS(1131), - [sym_float] = ACTIONS(1131), - [sym_char] = ACTIONS(1131), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_nil] = ACTIONS(1135), - [sym_atom] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(1147), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1149), - [sym_keyword] = ACTIONS(1151), - [anon_sym_LT_LT] = ACTIONS(1153), - [anon_sym_GT_GT] = ACTIONS(1205), - [anon_sym_PERCENT] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1161), - [anon_sym_not] = ACTIONS(1161), - [anon_sym_AT] = ACTIONS(1163), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1165), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1167), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1169), - }, [202] = { - [sym__expression] = STATE(3005), - [sym_block] = STATE(3005), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3005), - [sym_nil] = STATE(3005), - [sym__atom] = STATE(3005), - [sym_quoted_atom] = STATE(3005), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3005), - [sym_charlist] = STATE(3005), - [sym_sigil] = STATE(3005), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3005), - [sym_tuple] = STATE(3005), - [sym_bitstring] = STATE(3005), - [sym_map] = STATE(3005), - [sym__items_with_trailing_separator] = STATE(4983), - [sym_unary_operator] = STATE(3005), - [sym_binary_operator] = STATE(3005), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3005), - [sym_call] = STATE(3005), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3005), - [sym_anonymous_function] = STATE(3005), + [sym__expression] = STATE(3647), + [sym_block] = STATE(3647), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3647), + [sym_nil] = STATE(3647), + [sym__atom] = STATE(3647), + [sym_quoted_atom] = STATE(3647), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3647), + [sym_charlist] = STATE(3647), + [sym_sigil] = STATE(3647), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3647), + [sym_tuple] = STATE(3647), + [sym_bitstring] = STATE(3647), + [sym_map] = STATE(3647), + [sym__items_with_trailing_separator] = STATE(5572), + [sym_unary_operator] = STATE(3647), + [sym_binary_operator] = STATE(3647), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3647), + [sym_call] = STATE(3647), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3647), + [sym_anonymous_function] = STATE(3647), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), [aux_sym_identifier_token1] = ACTIONS(826), @@ -51366,51 +52004,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1109), }, [203] = { - [sym__expression] = STATE(3005), - [sym_block] = STATE(3005), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3005), - [sym_nil] = STATE(3005), - [sym__atom] = STATE(3005), - [sym_quoted_atom] = STATE(3005), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3005), - [sym_charlist] = STATE(3005), - [sym_sigil] = STATE(3005), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3005), - [sym_tuple] = STATE(3005), - [sym_bitstring] = STATE(3005), - [sym_map] = STATE(3005), - [sym__items_with_trailing_separator] = STATE(4986), - [sym_unary_operator] = STATE(3005), - [sym_binary_operator] = STATE(3005), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3005), - [sym_call] = STATE(3005), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3005), - [sym_anonymous_function] = STATE(3005), + [sym__expression] = STATE(3955), + [sym_block] = STATE(3955), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3955), + [sym_nil] = STATE(3955), + [sym__atom] = STATE(3955), + [sym_quoted_atom] = STATE(3955), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3955), + [sym_charlist] = STATE(3955), + [sym_sigil] = STATE(3955), + [sym__keywords_with_trailing_separator] = STATE(5616), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3955), + [sym_tuple] = STATE(3955), + [sym_bitstring] = STATE(3955), + [sym_map] = STATE(3955), + [sym_unary_operator] = STATE(3955), + [sym_binary_operator] = STATE(3955), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3955), + [sym_call] = STATE(3955), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym__call_arguments_with_trailing_separator] = STATE(5616), + [sym_access_call] = STATE(3955), + [sym_anonymous_function] = STATE(3955), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), + [anon_sym_RPAREN] = ACTIONS(1209), [aux_sym_identifier_token1] = ACTIONS(826), [anon_sym_DOT_DOT_DOT] = ACTIONS(826), [sym_unused_identifier] = ACTIONS(1069), @@ -51419,20 +52058,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ENV__] = ACTIONS(830), [anon_sym___CALLER__] = ACTIONS(830), [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1071), - [sym_integer] = ACTIONS(1071), - [sym_float] = ACTIONS(1071), - [sym_char] = ACTIONS(1071), + [sym_alias] = ACTIONS(1115), + [sym_integer] = ACTIONS(1115), + [sym_float] = ACTIONS(1115), + [sym_char] = ACTIONS(1115), [anon_sym_true] = ACTIONS(1073), [anon_sym_false] = ACTIONS(1073), [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1071), + [sym_atom] = ACTIONS(1115), [anon_sym_DQUOTE] = ACTIONS(1077), [anon_sym_SQUOTE] = ACTIONS(1079), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_RBRACE] = ACTIONS(1209), [anon_sym_LBRACK] = ACTIONS(1089), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), @@ -51498,49 +52136,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1109), }, [204] = { - [sym__expression] = STATE(3005), - [sym_block] = STATE(3005), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3005), - [sym_nil] = STATE(3005), - [sym__atom] = STATE(3005), - [sym_quoted_atom] = STATE(3005), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3005), - [sym_charlist] = STATE(3005), - [sym_sigil] = STATE(3005), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3005), - [sym_tuple] = STATE(3005), - [sym_bitstring] = STATE(3005), - [sym_map] = STATE(3005), - [sym__items_with_trailing_separator] = STATE(5024), - [sym_unary_operator] = STATE(3005), - [sym_binary_operator] = STATE(3005), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3005), - [sym_call] = STATE(3005), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3005), - [sym_anonymous_function] = STATE(3005), + [sym__expression] = STATE(3647), + [sym_block] = STATE(3647), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3647), + [sym_nil] = STATE(3647), + [sym__atom] = STATE(3647), + [sym_quoted_atom] = STATE(3647), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3647), + [sym_charlist] = STATE(3647), + [sym_sigil] = STATE(3647), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3647), + [sym_tuple] = STATE(3647), + [sym_bitstring] = STATE(3647), + [sym_map] = STATE(3647), + [sym__items_with_trailing_separator] = STATE(5633), + [sym_unary_operator] = STATE(3647), + [sym_binary_operator] = STATE(3647), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3647), + [sym_call] = STATE(3647), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3647), + [sym_anonymous_function] = STATE(3647), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), [aux_sym_identifier_token1] = ACTIONS(826), @@ -51564,8 +52202,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_RBRACE] = ACTIONS(1211), [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_RBRACK] = ACTIONS(1211), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), @@ -51630,49 +52268,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1109), }, [205] = { - [sym__expression] = STATE(3005), - [sym_block] = STATE(3005), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3005), - [sym_nil] = STATE(3005), - [sym__atom] = STATE(3005), - [sym_quoted_atom] = STATE(3005), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3005), - [sym_charlist] = STATE(3005), - [sym_sigil] = STATE(3005), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3005), - [sym_tuple] = STATE(3005), - [sym_bitstring] = STATE(3005), - [sym_map] = STATE(3005), - [sym__items_with_trailing_separator] = STATE(4943), - [sym_unary_operator] = STATE(3005), - [sym_binary_operator] = STATE(3005), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3005), - [sym_call] = STATE(3005), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3005), - [sym_anonymous_function] = STATE(3005), + [sym__expression] = STATE(3647), + [sym_block] = STATE(3647), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3647), + [sym_nil] = STATE(3647), + [sym__atom] = STATE(3647), + [sym_quoted_atom] = STATE(3647), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3647), + [sym_charlist] = STATE(3647), + [sym_sigil] = STATE(3647), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3647), + [sym_tuple] = STATE(3647), + [sym_bitstring] = STATE(3647), + [sym_map] = STATE(3647), + [sym__items_with_trailing_separator] = STATE(5554), + [sym_unary_operator] = STATE(3647), + [sym_binary_operator] = STATE(3647), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3647), + [sym_call] = STATE(3647), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3647), + [sym_anonymous_function] = STATE(3647), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), [aux_sym_identifier_token1] = ACTIONS(826), @@ -51762,49 +52400,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1109), }, [206] = { - [sym__expression] = STATE(3005), - [sym_block] = STATE(3005), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3005), - [sym_nil] = STATE(3005), - [sym__atom] = STATE(3005), - [sym_quoted_atom] = STATE(3005), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3005), - [sym_charlist] = STATE(3005), - [sym_sigil] = STATE(3005), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3005), - [sym_tuple] = STATE(3005), - [sym_bitstring] = STATE(3005), - [sym_map] = STATE(3005), - [sym__items_with_trailing_separator] = STATE(5013), - [sym_unary_operator] = STATE(3005), - [sym_binary_operator] = STATE(3005), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3005), - [sym_call] = STATE(3005), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3005), - [sym_anonymous_function] = STATE(3005), + [sym__expression] = STATE(3647), + [sym_block] = STATE(3647), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3647), + [sym_nil] = STATE(3647), + [sym__atom] = STATE(3647), + [sym_quoted_atom] = STATE(3647), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3647), + [sym_charlist] = STATE(3647), + [sym_sigil] = STATE(3647), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3647), + [sym_tuple] = STATE(3647), + [sym_bitstring] = STATE(3647), + [sym_map] = STATE(3647), + [sym__items_with_trailing_separator] = STATE(5561), + [sym_unary_operator] = STATE(3647), + [sym_binary_operator] = STATE(3647), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3647), + [sym_call] = STATE(3647), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3647), + [sym_anonymous_function] = STATE(3647), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), [aux_sym_identifier_token1] = ACTIONS(826), @@ -51894,90 +52532,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1109), }, [207] = { - [sym__expression] = STATE(3241), - [sym_block] = STATE(3241), - [sym__identifier] = STATE(72), - [sym_identifier] = STATE(72), - [sym_special_identifier] = STATE(72), - [sym_boolean] = STATE(3241), - [sym_nil] = STATE(3241), - [sym__atom] = STATE(3241), - [sym_quoted_atom] = STATE(3241), - [sym__quoted_i_double] = STATE(3250), - [sym__quoted_i_single] = STATE(3251), - [sym__quoted_i_heredoc_single] = STATE(3518), - [sym__quoted_i_heredoc_double] = STATE(3516), - [sym_string] = STATE(3241), - [sym_charlist] = STATE(3241), - [sym_sigil] = STATE(3241), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4833), - [sym__keyword] = STATE(613), - [sym_quoted_keyword] = STATE(613), - [sym_list] = STATE(3241), - [sym_tuple] = STATE(3241), - [sym_bitstring] = STATE(3241), - [sym_map] = STATE(3241), - [sym__items_with_trailing_separator] = STATE(5026), - [sym_unary_operator] = STATE(3241), - [sym_binary_operator] = STATE(3241), - [sym_operator_identifier] = STATE(4972), - [sym_dot] = STATE(3241), - [sym_call] = STATE(3241), - [sym__call_without_parentheses] = STATE(3517), - [sym__call_with_parentheses] = STATE(3515), - [sym__local_call_without_parentheses] = STATE(3511), - [sym__local_call_with_parentheses] = STATE(3073), - [sym__local_call_just_do_block] = STATE(3510), - [sym__remote_call_without_parentheses] = STATE(3514), - [sym__remote_call_with_parentheses] = STATE(3088), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(3095), - [sym__anonymous_dot] = STATE(4928), - [sym__double_call] = STATE(3499), - [sym_access_call] = STATE(3241), - [sym_anonymous_function] = STATE(3241), + [sym__expression] = STATE(3955), + [sym_block] = STATE(3955), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3955), + [sym_nil] = STATE(3955), + [sym__atom] = STATE(3955), + [sym_quoted_atom] = STATE(3955), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3955), + [sym_charlist] = STATE(3955), + [sym_sigil] = STATE(3955), + [sym__keywords_with_trailing_separator] = STATE(5627), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3955), + [sym_tuple] = STATE(3955), + [sym_bitstring] = STATE(3955), + [sym_map] = STATE(3955), + [sym_unary_operator] = STATE(3955), + [sym_binary_operator] = STATE(3955), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3955), + [sym_call] = STATE(3955), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym__call_arguments_with_trailing_separator] = STATE(5627), + [sym_access_call] = STATE(3955), + [sym_anonymous_function] = STATE(3955), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1123), - [aux_sym_identifier_token1] = ACTIONS(1125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1125), - [sym_unused_identifier] = ACTIONS(1127), - [anon_sym___MODULE__] = ACTIONS(1129), - [anon_sym___DIR__] = ACTIONS(1129), - [anon_sym___ENV__] = ACTIONS(1129), - [anon_sym___CALLER__] = ACTIONS(1129), - [anon_sym___STACKTRACE__] = ACTIONS(1129), - [sym_alias] = ACTIONS(1131), - [sym_integer] = ACTIONS(1131), - [sym_float] = ACTIONS(1131), - [sym_char] = ACTIONS(1131), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_nil] = ACTIONS(1135), - [sym_atom] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1067), + [anon_sym_RPAREN] = ACTIONS(1217), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1115), + [sym_integer] = ACTIONS(1115), + [sym_float] = ACTIONS(1115), + [sym_char] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(1115), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1149), - [sym_keyword] = ACTIONS(1151), - [anon_sym_LT_LT] = ACTIONS(1153), - [anon_sym_GT_GT] = ACTIONS(1217), - [anon_sym_PERCENT] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1161), - [anon_sym_not] = ACTIONS(1161), - [anon_sym_AT] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -52017,58 +52655,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1165), + [anon_sym_fn] = ACTIONS(1105), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1167), + [sym__before_unary_op] = ACTIONS(1107), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1169), + [sym__quoted_atom_start] = ACTIONS(1109), }, [208] = { - [sym__expression] = STATE(3005), - [sym_block] = STATE(3005), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3005), - [sym_nil] = STATE(3005), - [sym__atom] = STATE(3005), - [sym_quoted_atom] = STATE(3005), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3005), - [sym_charlist] = STATE(3005), - [sym_sigil] = STATE(3005), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3005), - [sym_tuple] = STATE(3005), - [sym_bitstring] = STATE(3005), - [sym_map] = STATE(3005), - [sym__items_with_trailing_separator] = STATE(5037), - [sym_unary_operator] = STATE(3005), - [sym_binary_operator] = STATE(3005), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3005), - [sym_call] = STATE(3005), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3005), - [sym_anonymous_function] = STATE(3005), + [sym__expression] = STATE(3647), + [sym_block] = STATE(3647), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3647), + [sym_nil] = STATE(3647), + [sym__atom] = STATE(3647), + [sym_quoted_atom] = STATE(3647), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3647), + [sym_charlist] = STATE(3647), + [sym_sigil] = STATE(3647), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3647), + [sym_tuple] = STATE(3647), + [sym_bitstring] = STATE(3647), + [sym_map] = STATE(3647), + [sym__items_with_trailing_separator] = STATE(5617), + [sym_unary_operator] = STATE(3647), + [sym_binary_operator] = STATE(3647), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3647), + [sym_call] = STATE(3647), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3647), + [sym_anonymous_function] = STATE(3647), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), [aux_sym_identifier_token1] = ACTIONS(826), @@ -52092,8 +52730,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_RBRACE] = ACTIONS(1219), [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_RBRACK] = ACTIONS(1219), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), @@ -52158,313 +52796,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1109), }, [209] = { - [sym__expression] = STATE(3241), - [sym_block] = STATE(3241), - [sym__identifier] = STATE(72), - [sym_identifier] = STATE(72), - [sym_special_identifier] = STATE(72), - [sym_boolean] = STATE(3241), - [sym_nil] = STATE(3241), - [sym__atom] = STATE(3241), - [sym_quoted_atom] = STATE(3241), - [sym__quoted_i_double] = STATE(3250), - [sym__quoted_i_single] = STATE(3251), - [sym__quoted_i_heredoc_single] = STATE(3518), - [sym__quoted_i_heredoc_double] = STATE(3516), - [sym_string] = STATE(3241), - [sym_charlist] = STATE(3241), - [sym_sigil] = STATE(3241), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4833), - [sym__keyword] = STATE(613), - [sym_quoted_keyword] = STATE(613), - [sym_list] = STATE(3241), - [sym_tuple] = STATE(3241), - [sym_bitstring] = STATE(3241), - [sym_map] = STATE(3241), - [sym__items_with_trailing_separator] = STATE(5038), - [sym_unary_operator] = STATE(3241), - [sym_binary_operator] = STATE(3241), - [sym_operator_identifier] = STATE(4972), - [sym_dot] = STATE(3241), - [sym_call] = STATE(3241), - [sym__call_without_parentheses] = STATE(3517), - [sym__call_with_parentheses] = STATE(3515), - [sym__local_call_without_parentheses] = STATE(3511), - [sym__local_call_with_parentheses] = STATE(3073), - [sym__local_call_just_do_block] = STATE(3510), - [sym__remote_call_without_parentheses] = STATE(3514), - [sym__remote_call_with_parentheses] = STATE(3088), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(3095), - [sym__anonymous_dot] = STATE(4928), - [sym__double_call] = STATE(3499), - [sym_access_call] = STATE(3241), - [sym_anonymous_function] = STATE(3241), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1123), - [aux_sym_identifier_token1] = ACTIONS(1125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1125), - [sym_unused_identifier] = ACTIONS(1127), - [anon_sym___MODULE__] = ACTIONS(1129), - [anon_sym___DIR__] = ACTIONS(1129), - [anon_sym___ENV__] = ACTIONS(1129), - [anon_sym___CALLER__] = ACTIONS(1129), - [anon_sym___STACKTRACE__] = ACTIONS(1129), - [sym_alias] = ACTIONS(1131), - [sym_integer] = ACTIONS(1131), - [sym_float] = ACTIONS(1131), - [sym_char] = ACTIONS(1131), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_nil] = ACTIONS(1135), - [sym_atom] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(1147), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1149), - [sym_keyword] = ACTIONS(1151), - [anon_sym_LT_LT] = ACTIONS(1153), - [anon_sym_GT_GT] = ACTIONS(1221), - [anon_sym_PERCENT] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1161), - [anon_sym_not] = ACTIONS(1161), - [anon_sym_AT] = ACTIONS(1163), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1165), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1167), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1169), - }, - [210] = { - [sym__expression] = STATE(3241), - [sym_block] = STATE(3241), - [sym__identifier] = STATE(72), - [sym_identifier] = STATE(72), - [sym_special_identifier] = STATE(72), - [sym_boolean] = STATE(3241), - [sym_nil] = STATE(3241), - [sym__atom] = STATE(3241), - [sym_quoted_atom] = STATE(3241), - [sym__quoted_i_double] = STATE(3250), - [sym__quoted_i_single] = STATE(3251), - [sym__quoted_i_heredoc_single] = STATE(3518), - [sym__quoted_i_heredoc_double] = STATE(3516), - [sym_string] = STATE(3241), - [sym_charlist] = STATE(3241), - [sym_sigil] = STATE(3241), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4833), - [sym__keyword] = STATE(613), - [sym_quoted_keyword] = STATE(613), - [sym_list] = STATE(3241), - [sym_tuple] = STATE(3241), - [sym_bitstring] = STATE(3241), - [sym_map] = STATE(3241), - [sym__items_with_trailing_separator] = STATE(4960), - [sym_unary_operator] = STATE(3241), - [sym_binary_operator] = STATE(3241), - [sym_operator_identifier] = STATE(4972), - [sym_dot] = STATE(3241), - [sym_call] = STATE(3241), - [sym__call_without_parentheses] = STATE(3517), - [sym__call_with_parentheses] = STATE(3515), - [sym__local_call_without_parentheses] = STATE(3511), - [sym__local_call_with_parentheses] = STATE(3073), - [sym__local_call_just_do_block] = STATE(3510), - [sym__remote_call_without_parentheses] = STATE(3514), - [sym__remote_call_with_parentheses] = STATE(3088), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(3095), - [sym__anonymous_dot] = STATE(4928), - [sym__double_call] = STATE(3499), - [sym_access_call] = STATE(3241), - [sym_anonymous_function] = STATE(3241), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1123), - [aux_sym_identifier_token1] = ACTIONS(1125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1125), - [sym_unused_identifier] = ACTIONS(1127), - [anon_sym___MODULE__] = ACTIONS(1129), - [anon_sym___DIR__] = ACTIONS(1129), - [anon_sym___ENV__] = ACTIONS(1129), - [anon_sym___CALLER__] = ACTIONS(1129), - [anon_sym___STACKTRACE__] = ACTIONS(1129), - [sym_alias] = ACTIONS(1131), - [sym_integer] = ACTIONS(1131), - [sym_float] = ACTIONS(1131), - [sym_char] = ACTIONS(1131), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_nil] = ACTIONS(1135), - [sym_atom] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(1147), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1149), - [sym_keyword] = ACTIONS(1151), - [anon_sym_LT_LT] = ACTIONS(1153), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1161), - [anon_sym_not] = ACTIONS(1161), - [anon_sym_AT] = ACTIONS(1163), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1165), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1167), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1169), - }, - [211] = { - [sym__expression] = STATE(3005), - [sym_block] = STATE(3005), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3005), - [sym_nil] = STATE(3005), - [sym__atom] = STATE(3005), - [sym_quoted_atom] = STATE(3005), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3005), - [sym_charlist] = STATE(3005), - [sym_sigil] = STATE(3005), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3005), - [sym_tuple] = STATE(3005), - [sym_bitstring] = STATE(3005), - [sym_map] = STATE(3005), - [sym__items_with_trailing_separator] = STATE(5054), - [sym_unary_operator] = STATE(3005), - [sym_binary_operator] = STATE(3005), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3005), - [sym_call] = STATE(3005), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3005), - [sym_anonymous_function] = STATE(3005), + [sym__expression] = STATE(3647), + [sym_block] = STATE(3647), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3647), + [sym_nil] = STATE(3647), + [sym__atom] = STATE(3647), + [sym_quoted_atom] = STATE(3647), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3647), + [sym_charlist] = STATE(3647), + [sym_sigil] = STATE(3647), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3647), + [sym_tuple] = STATE(3647), + [sym_bitstring] = STATE(3647), + [sym_map] = STATE(3647), + [sym__items_with_trailing_separator] = STATE(5545), + [sym_unary_operator] = STATE(3647), + [sym_binary_operator] = STATE(3647), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3647), + [sym_call] = STATE(3647), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3647), + [sym_anonymous_function] = STATE(3647), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), [aux_sym_identifier_token1] = ACTIONS(826), @@ -52488,8 +52862,272 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_RBRACE] = ACTIONS(1221), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [210] = { + [sym__expression] = STATE(3647), + [sym_block] = STATE(3647), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3647), + [sym_nil] = STATE(3647), + [sym__atom] = STATE(3647), + [sym_quoted_atom] = STATE(3647), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3647), + [sym_charlist] = STATE(3647), + [sym_sigil] = STATE(3647), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3647), + [sym_tuple] = STATE(3647), + [sym_bitstring] = STATE(3647), + [sym_map] = STATE(3647), + [sym__items_with_trailing_separator] = STATE(5658), + [sym_unary_operator] = STATE(3647), + [sym_binary_operator] = STATE(3647), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3647), + [sym_call] = STATE(3647), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3647), + [sym_anonymous_function] = STATE(3647), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1071), + [sym_integer] = ACTIONS(1071), + [sym_float] = ACTIONS(1071), + [sym_char] = ACTIONS(1071), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(1071), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_RBRACE] = ACTIONS(1223), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [211] = { + [sym__expression] = STATE(3955), + [sym_block] = STATE(3955), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3955), + [sym_nil] = STATE(3955), + [sym__atom] = STATE(3955), + [sym_quoted_atom] = STATE(3955), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3955), + [sym_charlist] = STATE(3955), + [sym_sigil] = STATE(3955), + [sym__keywords_with_trailing_separator] = STATE(5609), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3955), + [sym_tuple] = STATE(3955), + [sym_bitstring] = STATE(3955), + [sym_map] = STATE(3955), + [sym_unary_operator] = STATE(3955), + [sym_binary_operator] = STATE(3955), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3955), + [sym_call] = STATE(3955), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym__call_arguments_with_trailing_separator] = STATE(5609), + [sym_access_call] = STATE(3955), + [sym_anonymous_function] = STATE(3955), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [anon_sym_RPAREN] = ACTIONS(1225), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1115), + [sym_integer] = ACTIONS(1115), + [sym_float] = ACTIONS(1115), + [sym_char] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(1115), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_RBRACK] = ACTIONS(1225), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), @@ -52554,90 +53192,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1109), }, [212] = { - [sym__expression] = STATE(3005), - [sym_block] = STATE(3005), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3005), - [sym_nil] = STATE(3005), - [sym__atom] = STATE(3005), - [sym_quoted_atom] = STATE(3005), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3005), - [sym_charlist] = STATE(3005), - [sym_sigil] = STATE(3005), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3005), - [sym_tuple] = STATE(3005), - [sym_bitstring] = STATE(3005), - [sym_map] = STATE(3005), - [sym__items_with_trailing_separator] = STATE(4962), - [sym_unary_operator] = STATE(3005), - [sym_binary_operator] = STATE(3005), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3005), - [sym_call] = STATE(3005), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3005), - [sym_anonymous_function] = STATE(3005), + [sym__expression] = STATE(3729), + [sym_block] = STATE(3729), + [sym__identifier] = STATE(66), + [sym_identifier] = STATE(66), + [sym_special_identifier] = STATE(66), + [sym_boolean] = STATE(3729), + [sym_nil] = STATE(3729), + [sym__atom] = STATE(3729), + [sym_quoted_atom] = STATE(3729), + [sym__quoted_i_double] = STATE(3826), + [sym__quoted_i_single] = STATE(3829), + [sym__quoted_i_heredoc_single] = STATE(4077), + [sym__quoted_i_heredoc_double] = STATE(4083), + [sym_string] = STATE(3729), + [sym_charlist] = STATE(3729), + [sym_sigil] = STATE(3729), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5442), + [sym__keyword] = STATE(759), + [sym_quoted_keyword] = STATE(759), + [sym_list] = STATE(3729), + [sym_tuple] = STATE(3729), + [sym_bitstring] = STATE(3729), + [sym_map] = STATE(3729), + [sym__items_with_trailing_separator] = STATE(5591), + [sym_unary_operator] = STATE(3729), + [sym_binary_operator] = STATE(3729), + [sym_operator_identifier] = STATE(5580), + [sym_dot] = STATE(3729), + [sym_call] = STATE(3729), + [sym__call_without_parentheses] = STATE(4089), + [sym__call_with_parentheses] = STATE(4092), + [sym__local_call_without_parentheses] = STATE(4097), + [sym__local_call_with_parentheses] = STATE(3372), + [sym__local_call_just_do_block] = STATE(4098), + [sym__remote_call_without_parentheses] = STATE(4105), + [sym__remote_call_with_parentheses] = STATE(3374), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3375), + [sym__anonymous_dot] = STATE(5531), + [sym__double_call] = STATE(4106), + [sym_access_call] = STATE(3729), + [sym_anonymous_function] = STATE(3729), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1071), - [sym_integer] = ACTIONS(1071), - [sym_float] = ACTIONS(1071), - [sym_char] = ACTIONS(1071), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1071), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_RBRACE] = ACTIONS(1227), - [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1133), + [aux_sym_identifier_token1] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1135), + [sym_unused_identifier] = ACTIONS(1137), + [anon_sym___MODULE__] = ACTIONS(1139), + [anon_sym___DIR__] = ACTIONS(1139), + [anon_sym___ENV__] = ACTIONS(1139), + [anon_sym___CALLER__] = ACTIONS(1139), + [anon_sym___STACKTRACE__] = ACTIONS(1139), + [sym_alias] = ACTIONS(1141), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1141), + [sym_char] = ACTIONS(1141), + [anon_sym_true] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [anon_sym_nil] = ACTIONS(1145), + [sym_atom] = ACTIONS(1141), + [anon_sym_DQUOTE] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1151), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1157), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [sym_keyword] = ACTIONS(1093), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), + [anon_sym_TILDE] = ACTIONS(1159), + [sym_keyword] = ACTIONS(1161), + [anon_sym_LT_LT] = ACTIONS(1163), + [anon_sym_GT_GT] = ACTIONS(1227), + [anon_sym_PERCENT] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_AT] = ACTIONS(1173), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -52677,60 +53315,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), + [anon_sym_fn] = ACTIONS(1175), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), + [sym__before_unary_op] = ACTIONS(1177), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), + [sym__quoted_atom_start] = ACTIONS(1179), }, [213] = { - [sym__expression] = STATE(3005), - [sym_block] = STATE(3005), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3005), - [sym_nil] = STATE(3005), - [sym__atom] = STATE(3005), - [sym_quoted_atom] = STATE(3005), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3005), - [sym_charlist] = STATE(3005), - [sym_sigil] = STATE(3005), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3005), - [sym_tuple] = STATE(3005), - [sym_bitstring] = STATE(3005), - [sym_map] = STATE(3005), - [sym__items_with_trailing_separator] = STATE(4950), - [sym_unary_operator] = STATE(3005), - [sym_binary_operator] = STATE(3005), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3005), - [sym_call] = STATE(3005), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3005), - [sym_anonymous_function] = STATE(3005), + [sym__expression] = STATE(3955), + [sym_block] = STATE(3955), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3955), + [sym_nil] = STATE(3955), + [sym__atom] = STATE(3955), + [sym_quoted_atom] = STATE(3955), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3955), + [sym_charlist] = STATE(3955), + [sym_sigil] = STATE(3955), + [sym__keywords_with_trailing_separator] = STATE(5608), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3955), + [sym_tuple] = STATE(3955), + [sym_bitstring] = STATE(3955), + [sym_map] = STATE(3955), + [sym_unary_operator] = STATE(3955), + [sym_binary_operator] = STATE(3955), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3955), + [sym_call] = STATE(3955), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym__call_arguments_with_trailing_separator] = STATE(5608), + [sym_access_call] = STATE(3955), + [sym_anonymous_function] = STATE(3955), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), + [anon_sym_RPAREN] = ACTIONS(1229), [aux_sym_identifier_token1] = ACTIONS(826), [anon_sym_DOT_DOT_DOT] = ACTIONS(826), [sym_unused_identifier] = ACTIONS(1069), @@ -52739,20 +53378,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ENV__] = ACTIONS(830), [anon_sym___CALLER__] = ACTIONS(830), [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1071), - [sym_integer] = ACTIONS(1071), - [sym_float] = ACTIONS(1071), - [sym_char] = ACTIONS(1071), + [sym_alias] = ACTIONS(1115), + [sym_integer] = ACTIONS(1115), + [sym_float] = ACTIONS(1115), + [sym_char] = ACTIONS(1115), [anon_sym_true] = ACTIONS(1073), [anon_sym_false] = ACTIONS(1073), [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1071), + [sym_atom] = ACTIONS(1115), [anon_sym_DQUOTE] = ACTIONS(1077), [anon_sym_SQUOTE] = ACTIONS(1079), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_RBRACE] = ACTIONS(1229), [anon_sym_LBRACK] = ACTIONS(1089), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), @@ -52818,90 +53456,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1109), }, [214] = { - [sym__expression] = STATE(3005), - [sym_block] = STATE(3005), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3005), - [sym_nil] = STATE(3005), - [sym__atom] = STATE(3005), - [sym_quoted_atom] = STATE(3005), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3005), - [sym_charlist] = STATE(3005), - [sym_sigil] = STATE(3005), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3005), - [sym_tuple] = STATE(3005), - [sym_bitstring] = STATE(3005), - [sym_map] = STATE(3005), - [sym__items_with_trailing_separator] = STATE(5047), - [sym_unary_operator] = STATE(3005), - [sym_binary_operator] = STATE(3005), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3005), - [sym_call] = STATE(3005), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3005), - [sym_anonymous_function] = STATE(3005), + [sym__expression] = STATE(3729), + [sym_block] = STATE(3729), + [sym__identifier] = STATE(66), + [sym_identifier] = STATE(66), + [sym_special_identifier] = STATE(66), + [sym_boolean] = STATE(3729), + [sym_nil] = STATE(3729), + [sym__atom] = STATE(3729), + [sym_quoted_atom] = STATE(3729), + [sym__quoted_i_double] = STATE(3826), + [sym__quoted_i_single] = STATE(3829), + [sym__quoted_i_heredoc_single] = STATE(4077), + [sym__quoted_i_heredoc_double] = STATE(4083), + [sym_string] = STATE(3729), + [sym_charlist] = STATE(3729), + [sym_sigil] = STATE(3729), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5442), + [sym__keyword] = STATE(759), + [sym_quoted_keyword] = STATE(759), + [sym_list] = STATE(3729), + [sym_tuple] = STATE(3729), + [sym_bitstring] = STATE(3729), + [sym_map] = STATE(3729), + [sym__items_with_trailing_separator] = STATE(5664), + [sym_unary_operator] = STATE(3729), + [sym_binary_operator] = STATE(3729), + [sym_operator_identifier] = STATE(5580), + [sym_dot] = STATE(3729), + [sym_call] = STATE(3729), + [sym__call_without_parentheses] = STATE(4089), + [sym__call_with_parentheses] = STATE(4092), + [sym__local_call_without_parentheses] = STATE(4097), + [sym__local_call_with_parentheses] = STATE(3372), + [sym__local_call_just_do_block] = STATE(4098), + [sym__remote_call_without_parentheses] = STATE(4105), + [sym__remote_call_with_parentheses] = STATE(3374), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3375), + [sym__anonymous_dot] = STATE(5531), + [sym__double_call] = STATE(4106), + [sym_access_call] = STATE(3729), + [sym_anonymous_function] = STATE(3729), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1071), - [sym_integer] = ACTIONS(1071), - [sym_float] = ACTIONS(1071), - [sym_char] = ACTIONS(1071), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1071), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_RBRACE] = ACTIONS(1231), - [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1133), + [aux_sym_identifier_token1] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1135), + [sym_unused_identifier] = ACTIONS(1137), + [anon_sym___MODULE__] = ACTIONS(1139), + [anon_sym___DIR__] = ACTIONS(1139), + [anon_sym___ENV__] = ACTIONS(1139), + [anon_sym___CALLER__] = ACTIONS(1139), + [anon_sym___STACKTRACE__] = ACTIONS(1139), + [sym_alias] = ACTIONS(1141), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1141), + [sym_char] = ACTIONS(1141), + [anon_sym_true] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [anon_sym_nil] = ACTIONS(1145), + [sym_atom] = ACTIONS(1141), + [anon_sym_DQUOTE] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1151), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1157), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [sym_keyword] = ACTIONS(1093), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), + [anon_sym_TILDE] = ACTIONS(1159), + [sym_keyword] = ACTIONS(1161), + [anon_sym_LT_LT] = ACTIONS(1163), + [anon_sym_GT_GT] = ACTIONS(1231), + [anon_sym_PERCENT] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_AT] = ACTIONS(1173), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -52941,58 +53579,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), + [anon_sym_fn] = ACTIONS(1175), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), + [sym__before_unary_op] = ACTIONS(1177), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), + [sym__quoted_atom_start] = ACTIONS(1179), }, [215] = { - [sym__expression] = STATE(3005), - [sym_block] = STATE(3005), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3005), - [sym_nil] = STATE(3005), - [sym__atom] = STATE(3005), - [sym_quoted_atom] = STATE(3005), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3005), - [sym_charlist] = STATE(3005), - [sym_sigil] = STATE(3005), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3005), - [sym_tuple] = STATE(3005), - [sym_bitstring] = STATE(3005), - [sym_map] = STATE(3005), - [sym__items_with_trailing_separator] = STATE(5056), - [sym_unary_operator] = STATE(3005), - [sym_binary_operator] = STATE(3005), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3005), - [sym_call] = STATE(3005), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3005), - [sym_anonymous_function] = STATE(3005), + [sym__expression] = STATE(3647), + [sym_block] = STATE(3647), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3647), + [sym_nil] = STATE(3647), + [sym__atom] = STATE(3647), + [sym_quoted_atom] = STATE(3647), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3647), + [sym_charlist] = STATE(3647), + [sym_sigil] = STATE(3647), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3647), + [sym_tuple] = STATE(3647), + [sym_bitstring] = STATE(3647), + [sym_map] = STATE(3647), + [sym__items_with_trailing_separator] = STATE(5556), + [sym_unary_operator] = STATE(3647), + [sym_binary_operator] = STATE(3647), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3647), + [sym_call] = STATE(3647), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3647), + [sym_anonymous_function] = STATE(3647), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), [aux_sym_identifier_token1] = ACTIONS(826), @@ -53082,49 +53720,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1109), }, [216] = { - [sym__expression] = STATE(3005), - [sym_block] = STATE(3005), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3005), - [sym_nil] = STATE(3005), - [sym__atom] = STATE(3005), - [sym_quoted_atom] = STATE(3005), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3005), - [sym_charlist] = STATE(3005), - [sym_sigil] = STATE(3005), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3005), - [sym_tuple] = STATE(3005), - [sym_bitstring] = STATE(3005), - [sym_map] = STATE(3005), - [sym__items_with_trailing_separator] = STATE(4967), - [sym_unary_operator] = STATE(3005), - [sym_binary_operator] = STATE(3005), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3005), - [sym_call] = STATE(3005), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3005), - [sym_anonymous_function] = STATE(3005), + [sym__expression] = STATE(3647), + [sym_block] = STATE(3647), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3647), + [sym_nil] = STATE(3647), + [sym__atom] = STATE(3647), + [sym_quoted_atom] = STATE(3647), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3647), + [sym_charlist] = STATE(3647), + [sym_sigil] = STATE(3647), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3647), + [sym_tuple] = STATE(3647), + [sym_bitstring] = STATE(3647), + [sym_map] = STATE(3647), + [sym__items_with_trailing_separator] = STATE(5594), + [sym_unary_operator] = STATE(3647), + [sym_binary_operator] = STATE(3647), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3647), + [sym_call] = STATE(3647), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3647), + [sym_anonymous_function] = STATE(3647), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), [aux_sym_identifier_token1] = ACTIONS(826), @@ -53148,8 +53786,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_RBRACE] = ACTIONS(1235), [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_RBRACK] = ACTIONS(1235), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), @@ -53214,52 +53852,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1109), }, [217] = { - [sym__expression] = STATE(3293), - [sym_block] = STATE(3293), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3293), - [sym_nil] = STATE(3293), - [sym__atom] = STATE(3293), - [sym_quoted_atom] = STATE(3293), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3293), - [sym_charlist] = STATE(3293), - [sym_sigil] = STATE(3293), - [sym__keywords_with_trailing_separator] = STATE(4941), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3293), - [sym_tuple] = STATE(3293), - [sym_bitstring] = STATE(3293), - [sym_map] = STATE(3293), - [sym_unary_operator] = STATE(3293), - [sym_binary_operator] = STATE(3293), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3293), - [sym_call] = STATE(3293), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym__call_arguments_with_trailing_separator] = STATE(4941), - [sym_access_call] = STATE(3293), - [sym_anonymous_function] = STATE(3293), + [sym__expression] = STATE(3647), + [sym_block] = STATE(3647), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3647), + [sym_nil] = STATE(3647), + [sym__atom] = STATE(3647), + [sym_quoted_atom] = STATE(3647), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3647), + [sym_charlist] = STATE(3647), + [sym_sigil] = STATE(3647), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3647), + [sym_tuple] = STATE(3647), + [sym_bitstring] = STATE(3647), + [sym_map] = STATE(3647), + [sym__items_with_trailing_separator] = STATE(5595), + [sym_unary_operator] = STATE(3647), + [sym_binary_operator] = STATE(3647), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3647), + [sym_call] = STATE(3647), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3647), + [sym_anonymous_function] = STATE(3647), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), - [anon_sym_RPAREN] = ACTIONS(1237), [aux_sym_identifier_token1] = ACTIONS(826), [anon_sym_DOT_DOT_DOT] = ACTIONS(826), [sym_unused_identifier] = ACTIONS(1069), @@ -53268,19 +53905,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ENV__] = ACTIONS(830), [anon_sym___CALLER__] = ACTIONS(830), [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1115), - [sym_integer] = ACTIONS(1115), - [sym_float] = ACTIONS(1115), - [sym_char] = ACTIONS(1115), + [sym_alias] = ACTIONS(1071), + [sym_integer] = ACTIONS(1071), + [sym_float] = ACTIONS(1071), + [sym_char] = ACTIONS(1071), [anon_sym_true] = ACTIONS(1073), [anon_sym_false] = ACTIONS(1073), [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1115), + [sym_atom] = ACTIONS(1071), [anon_sym_DQUOTE] = ACTIONS(1077), [anon_sym_SQUOTE] = ACTIONS(1079), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_RBRACE] = ACTIONS(1237), [anon_sym_LBRACK] = ACTIONS(1089), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), @@ -53346,52 +53984,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1109), }, [218] = { - [sym__expression] = STATE(3293), - [sym_block] = STATE(3293), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3293), - [sym_nil] = STATE(3293), - [sym__atom] = STATE(3293), - [sym_quoted_atom] = STATE(3293), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3293), - [sym_charlist] = STATE(3293), - [sym_sigil] = STATE(3293), - [sym__keywords_with_trailing_separator] = STATE(4951), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3293), - [sym_tuple] = STATE(3293), - [sym_bitstring] = STATE(3293), - [sym_map] = STATE(3293), - [sym_unary_operator] = STATE(3293), - [sym_binary_operator] = STATE(3293), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3293), - [sym_call] = STATE(3293), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym__call_arguments_with_trailing_separator] = STATE(4951), - [sym_access_call] = STATE(3293), - [sym_anonymous_function] = STATE(3293), + [sym__expression] = STATE(3647), + [sym_block] = STATE(3647), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3647), + [sym_nil] = STATE(3647), + [sym__atom] = STATE(3647), + [sym_quoted_atom] = STATE(3647), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3647), + [sym_charlist] = STATE(3647), + [sym_sigil] = STATE(3647), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3647), + [sym_tuple] = STATE(3647), + [sym_bitstring] = STATE(3647), + [sym_map] = STATE(3647), + [sym__items_with_trailing_separator] = STATE(5544), + [sym_unary_operator] = STATE(3647), + [sym_binary_operator] = STATE(3647), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3647), + [sym_call] = STATE(3647), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3647), + [sym_anonymous_function] = STATE(3647), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), - [anon_sym_RPAREN] = ACTIONS(1239), [aux_sym_identifier_token1] = ACTIONS(826), [anon_sym_DOT_DOT_DOT] = ACTIONS(826), [sym_unused_identifier] = ACTIONS(1069), @@ -53400,20 +54037,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ENV__] = ACTIONS(830), [anon_sym___CALLER__] = ACTIONS(830), [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1115), - [sym_integer] = ACTIONS(1115), - [sym_float] = ACTIONS(1115), - [sym_char] = ACTIONS(1115), + [sym_alias] = ACTIONS(1071), + [sym_integer] = ACTIONS(1071), + [sym_float] = ACTIONS(1071), + [sym_char] = ACTIONS(1071), [anon_sym_true] = ACTIONS(1073), [anon_sym_false] = ACTIONS(1073), [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1115), + [sym_atom] = ACTIONS(1071), [anon_sym_DQUOTE] = ACTIONS(1077), [anon_sym_SQUOTE] = ACTIONS(1079), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), [anon_sym_LBRACE] = ACTIONS(1085), [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_RBRACK] = ACTIONS(1239), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), @@ -53478,48 +54116,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1109), }, [219] = { - [sym__expression] = STATE(2821), - [sym_block] = STATE(2821), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(2821), - [sym_nil] = STATE(2821), - [sym__atom] = STATE(2821), - [sym_quoted_atom] = STATE(2821), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(2821), - [sym_charlist] = STATE(2821), - [sym_sigil] = STATE(2821), - [sym__keywords_with_trailing_separator] = STATE(4831), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(2821), - [sym_tuple] = STATE(2821), - [sym_bitstring] = STATE(2821), - [sym_map] = STATE(2821), - [sym_unary_operator] = STATE(2821), - [sym_binary_operator] = STATE(2821), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(2821), - [sym_call] = STATE(2821), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(2821), - [sym_anonymous_function] = STATE(2821), + [sym__expression] = STATE(3647), + [sym_block] = STATE(3647), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3647), + [sym_nil] = STATE(3647), + [sym__atom] = STATE(3647), + [sym_quoted_atom] = STATE(3647), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3647), + [sym_charlist] = STATE(3647), + [sym_sigil] = STATE(3647), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3647), + [sym_tuple] = STATE(3647), + [sym_bitstring] = STATE(3647), + [sym_map] = STATE(3647), + [sym__items_with_trailing_separator] = STATE(5541), + [sym_unary_operator] = STATE(3647), + [sym_binary_operator] = STATE(3647), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3647), + [sym_call] = STATE(3647), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3647), + [sym_anonymous_function] = STATE(3647), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), [aux_sym_identifier_token1] = ACTIONS(826), @@ -53530,14 +54169,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ENV__] = ACTIONS(830), [anon_sym___CALLER__] = ACTIONS(830), [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1181), - [sym_integer] = ACTIONS(1181), - [sym_float] = ACTIONS(1181), - [sym_char] = ACTIONS(1181), + [sym_alias] = ACTIONS(1071), + [sym_integer] = ACTIONS(1071), + [sym_float] = ACTIONS(1071), + [sym_char] = ACTIONS(1071), [anon_sym_true] = ACTIONS(1073), [anon_sym_false] = ACTIONS(1073), [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1181), + [sym_atom] = ACTIONS(1071), [anon_sym_DQUOTE] = ACTIONS(1077), [anon_sym_SQUOTE] = ACTIONS(1079), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), @@ -53545,7 +54184,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1085), [anon_sym_RBRACE] = ACTIONS(1241), [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_RBRACK] = ACTIONS(1241), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), @@ -53610,90 +54248,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1109), }, [220] = { - [sym__expression] = STATE(3005), - [sym_block] = STATE(3005), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3005), - [sym_nil] = STATE(3005), - [sym__atom] = STATE(3005), - [sym_quoted_atom] = STATE(3005), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3005), - [sym_charlist] = STATE(3005), - [sym_sigil] = STATE(3005), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3005), - [sym_tuple] = STATE(3005), - [sym_bitstring] = STATE(3005), - [sym_map] = STATE(3005), - [sym__items_with_trailing_separator] = STATE(5034), - [sym_unary_operator] = STATE(3005), - [sym_binary_operator] = STATE(3005), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3005), - [sym_call] = STATE(3005), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3005), - [sym_anonymous_function] = STATE(3005), + [sym__expression] = STATE(3729), + [sym_block] = STATE(3729), + [sym__identifier] = STATE(66), + [sym_identifier] = STATE(66), + [sym_special_identifier] = STATE(66), + [sym_boolean] = STATE(3729), + [sym_nil] = STATE(3729), + [sym__atom] = STATE(3729), + [sym_quoted_atom] = STATE(3729), + [sym__quoted_i_double] = STATE(3826), + [sym__quoted_i_single] = STATE(3829), + [sym__quoted_i_heredoc_single] = STATE(4077), + [sym__quoted_i_heredoc_double] = STATE(4083), + [sym_string] = STATE(3729), + [sym_charlist] = STATE(3729), + [sym_sigil] = STATE(3729), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5442), + [sym__keyword] = STATE(759), + [sym_quoted_keyword] = STATE(759), + [sym_list] = STATE(3729), + [sym_tuple] = STATE(3729), + [sym_bitstring] = STATE(3729), + [sym_map] = STATE(3729), + [sym__items_with_trailing_separator] = STATE(5548), + [sym_unary_operator] = STATE(3729), + [sym_binary_operator] = STATE(3729), + [sym_operator_identifier] = STATE(5580), + [sym_dot] = STATE(3729), + [sym_call] = STATE(3729), + [sym__call_without_parentheses] = STATE(4089), + [sym__call_with_parentheses] = STATE(4092), + [sym__local_call_without_parentheses] = STATE(4097), + [sym__local_call_with_parentheses] = STATE(3372), + [sym__local_call_just_do_block] = STATE(4098), + [sym__remote_call_without_parentheses] = STATE(4105), + [sym__remote_call_with_parentheses] = STATE(3374), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3375), + [sym__anonymous_dot] = STATE(5531), + [sym__double_call] = STATE(4106), + [sym_access_call] = STATE(3729), + [sym_anonymous_function] = STATE(3729), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1071), - [sym_integer] = ACTIONS(1071), - [sym_float] = ACTIONS(1071), - [sym_char] = ACTIONS(1071), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1071), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_RBRACE] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1133), + [aux_sym_identifier_token1] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1135), + [sym_unused_identifier] = ACTIONS(1137), + [anon_sym___MODULE__] = ACTIONS(1139), + [anon_sym___DIR__] = ACTIONS(1139), + [anon_sym___ENV__] = ACTIONS(1139), + [anon_sym___CALLER__] = ACTIONS(1139), + [anon_sym___STACKTRACE__] = ACTIONS(1139), + [sym_alias] = ACTIONS(1141), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1141), + [sym_char] = ACTIONS(1141), + [anon_sym_true] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [anon_sym_nil] = ACTIONS(1145), + [sym_atom] = ACTIONS(1141), + [anon_sym_DQUOTE] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1151), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1157), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [sym_keyword] = ACTIONS(1093), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), + [anon_sym_TILDE] = ACTIONS(1159), + [sym_keyword] = ACTIONS(1161), + [anon_sym_LT_LT] = ACTIONS(1163), + [anon_sym_GT_GT] = ACTIONS(1243), + [anon_sym_PERCENT] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_AT] = ACTIONS(1173), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -53733,58 +54371,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), + [anon_sym_fn] = ACTIONS(1175), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), + [sym__before_unary_op] = ACTIONS(1177), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), + [sym__quoted_atom_start] = ACTIONS(1179), }, [221] = { - [sym__expression] = STATE(3005), - [sym_block] = STATE(3005), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3005), - [sym_nil] = STATE(3005), - [sym__atom] = STATE(3005), - [sym_quoted_atom] = STATE(3005), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3005), - [sym_charlist] = STATE(3005), - [sym_sigil] = STATE(3005), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3005), - [sym_tuple] = STATE(3005), - [sym_bitstring] = STATE(3005), - [sym_map] = STATE(3005), - [sym__items_with_trailing_separator] = STATE(4995), - [sym_unary_operator] = STATE(3005), - [sym_binary_operator] = STATE(3005), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3005), - [sym_call] = STATE(3005), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3005), - [sym_anonymous_function] = STATE(3005), + [sym__expression] = STATE(3647), + [sym_block] = STATE(3647), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3647), + [sym_nil] = STATE(3647), + [sym__atom] = STATE(3647), + [sym_quoted_atom] = STATE(3647), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3647), + [sym_charlist] = STATE(3647), + [sym_sigil] = STATE(3647), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3647), + [sym_tuple] = STATE(3647), + [sym_bitstring] = STATE(3647), + [sym_map] = STATE(3647), + [sym__items_with_trailing_separator] = STATE(5632), + [sym_unary_operator] = STATE(3647), + [sym_binary_operator] = STATE(3647), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3647), + [sym_call] = STATE(3647), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3647), + [sym_anonymous_function] = STATE(3647), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), [aux_sym_identifier_token1] = ACTIONS(826), @@ -53808,8 +54446,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_RBRACE] = ACTIONS(1245), [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_RBRACK] = ACTIONS(1245), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), @@ -53874,51 +54512,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1109), }, [222] = { - [sym__expression] = STATE(3005), - [sym_block] = STATE(3005), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3005), - [sym_nil] = STATE(3005), - [sym__atom] = STATE(3005), - [sym_quoted_atom] = STATE(3005), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3005), - [sym_charlist] = STATE(3005), - [sym_sigil] = STATE(3005), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3005), - [sym_tuple] = STATE(3005), - [sym_bitstring] = STATE(3005), - [sym_map] = STATE(3005), - [sym__items_with_trailing_separator] = STATE(4968), - [sym_unary_operator] = STATE(3005), - [sym_binary_operator] = STATE(3005), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3005), - [sym_call] = STATE(3005), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3005), - [sym_anonymous_function] = STATE(3005), + [sym__expression] = STATE(3955), + [sym_block] = STATE(3955), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3955), + [sym_nil] = STATE(3955), + [sym__atom] = STATE(3955), + [sym_quoted_atom] = STATE(3955), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3955), + [sym_charlist] = STATE(3955), + [sym_sigil] = STATE(3955), + [sym__keywords_with_trailing_separator] = STATE(5581), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3955), + [sym_tuple] = STATE(3955), + [sym_bitstring] = STATE(3955), + [sym_map] = STATE(3955), + [sym_unary_operator] = STATE(3955), + [sym_binary_operator] = STATE(3955), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3955), + [sym_call] = STATE(3955), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym__call_arguments_with_trailing_separator] = STATE(5581), + [sym_access_call] = STATE(3955), + [sym_anonymous_function] = STATE(3955), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), + [anon_sym_RPAREN] = ACTIONS(1247), [aux_sym_identifier_token1] = ACTIONS(826), [anon_sym_DOT_DOT_DOT] = ACTIONS(826), [sym_unused_identifier] = ACTIONS(1069), @@ -53927,20 +54566,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ENV__] = ACTIONS(830), [anon_sym___CALLER__] = ACTIONS(830), [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1071), - [sym_integer] = ACTIONS(1071), - [sym_float] = ACTIONS(1071), - [sym_char] = ACTIONS(1071), + [sym_alias] = ACTIONS(1115), + [sym_integer] = ACTIONS(1115), + [sym_float] = ACTIONS(1115), + [sym_char] = ACTIONS(1115), [anon_sym_true] = ACTIONS(1073), [anon_sym_false] = ACTIONS(1073), [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1071), + [sym_atom] = ACTIONS(1115), [anon_sym_DQUOTE] = ACTIONS(1077), [anon_sym_SQUOTE] = ACTIONS(1079), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_RBRACE] = ACTIONS(1247), [anon_sym_LBRACK] = ACTIONS(1089), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), @@ -54006,52 +54644,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1109), }, [223] = { - [sym__expression] = STATE(3293), - [sym_block] = STATE(3293), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3293), - [sym_nil] = STATE(3293), - [sym__atom] = STATE(3293), - [sym_quoted_atom] = STATE(3293), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3293), - [sym_charlist] = STATE(3293), - [sym_sigil] = STATE(3293), - [sym__keywords_with_trailing_separator] = STATE(5055), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3293), - [sym_tuple] = STATE(3293), - [sym_bitstring] = STATE(3293), - [sym_map] = STATE(3293), - [sym_unary_operator] = STATE(3293), - [sym_binary_operator] = STATE(3293), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3293), - [sym_call] = STATE(3293), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym__call_arguments_with_trailing_separator] = STATE(5055), - [sym_access_call] = STATE(3293), - [sym_anonymous_function] = STATE(3293), + [sym__expression] = STATE(3647), + [sym_block] = STATE(3647), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3647), + [sym_nil] = STATE(3647), + [sym__atom] = STATE(3647), + [sym_quoted_atom] = STATE(3647), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3647), + [sym_charlist] = STATE(3647), + [sym_sigil] = STATE(3647), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3647), + [sym_tuple] = STATE(3647), + [sym_bitstring] = STATE(3647), + [sym_map] = STATE(3647), + [sym__items_with_trailing_separator] = STATE(5640), + [sym_unary_operator] = STATE(3647), + [sym_binary_operator] = STATE(3647), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3647), + [sym_call] = STATE(3647), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3647), + [sym_anonymous_function] = STATE(3647), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), - [anon_sym_RPAREN] = ACTIONS(1249), [aux_sym_identifier_token1] = ACTIONS(826), [anon_sym_DOT_DOT_DOT] = ACTIONS(826), [sym_unused_identifier] = ACTIONS(1069), @@ -54060,19 +54697,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ENV__] = ACTIONS(830), [anon_sym___CALLER__] = ACTIONS(830), [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1115), - [sym_integer] = ACTIONS(1115), - [sym_float] = ACTIONS(1115), - [sym_char] = ACTIONS(1115), + [sym_alias] = ACTIONS(1071), + [sym_integer] = ACTIONS(1071), + [sym_float] = ACTIONS(1071), + [sym_char] = ACTIONS(1071), [anon_sym_true] = ACTIONS(1073), [anon_sym_false] = ACTIONS(1073), [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1115), + [sym_atom] = ACTIONS(1071), [anon_sym_DQUOTE] = ACTIONS(1077), [anon_sym_SQUOTE] = ACTIONS(1079), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_RBRACE] = ACTIONS(1249), [anon_sym_LBRACK] = ACTIONS(1089), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), @@ -54138,52 +54776,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1109), }, [224] = { - [sym__expression] = STATE(3293), - [sym_block] = STATE(3293), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3293), - [sym_nil] = STATE(3293), - [sym__atom] = STATE(3293), - [sym_quoted_atom] = STATE(3293), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3293), - [sym_charlist] = STATE(3293), - [sym_sigil] = STATE(3293), - [sym__keywords_with_trailing_separator] = STATE(4948), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3293), - [sym_tuple] = STATE(3293), - [sym_bitstring] = STATE(3293), - [sym_map] = STATE(3293), - [sym_unary_operator] = STATE(3293), - [sym_binary_operator] = STATE(3293), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3293), - [sym_call] = STATE(3293), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym__call_arguments_with_trailing_separator] = STATE(4948), - [sym_access_call] = STATE(3293), - [sym_anonymous_function] = STATE(3293), + [sym__expression] = STATE(3647), + [sym_block] = STATE(3647), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3647), + [sym_nil] = STATE(3647), + [sym__atom] = STATE(3647), + [sym_quoted_atom] = STATE(3647), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3647), + [sym_charlist] = STATE(3647), + [sym_sigil] = STATE(3647), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3647), + [sym_tuple] = STATE(3647), + [sym_bitstring] = STATE(3647), + [sym_map] = STATE(3647), + [sym__items_with_trailing_separator] = STATE(5649), + [sym_unary_operator] = STATE(3647), + [sym_binary_operator] = STATE(3647), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3647), + [sym_call] = STATE(3647), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3647), + [sym_anonymous_function] = STATE(3647), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), - [anon_sym_RPAREN] = ACTIONS(1251), [aux_sym_identifier_token1] = ACTIONS(826), [anon_sym_DOT_DOT_DOT] = ACTIONS(826), [sym_unused_identifier] = ACTIONS(1069), @@ -54192,19 +54829,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ENV__] = ACTIONS(830), [anon_sym___CALLER__] = ACTIONS(830), [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1115), - [sym_integer] = ACTIONS(1115), - [sym_float] = ACTIONS(1115), - [sym_char] = ACTIONS(1115), + [sym_alias] = ACTIONS(1071), + [sym_integer] = ACTIONS(1071), + [sym_float] = ACTIONS(1071), + [sym_char] = ACTIONS(1071), [anon_sym_true] = ACTIONS(1073), [anon_sym_false] = ACTIONS(1073), [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1115), + [sym_atom] = ACTIONS(1071), [anon_sym_DQUOTE] = ACTIONS(1077), [anon_sym_SQUOTE] = ACTIONS(1079), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_RBRACE] = ACTIONS(1251), [anon_sym_LBRACK] = ACTIONS(1089), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), @@ -54270,49 +54908,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1109), }, [225] = { - [sym__expression] = STATE(3005), - [sym_block] = STATE(3005), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3005), - [sym_nil] = STATE(3005), - [sym__atom] = STATE(3005), - [sym_quoted_atom] = STATE(3005), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3005), - [sym_charlist] = STATE(3005), - [sym_sigil] = STATE(3005), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3005), - [sym_tuple] = STATE(3005), - [sym_bitstring] = STATE(3005), - [sym_map] = STATE(3005), - [sym__items_with_trailing_separator] = STATE(4977), - [sym_unary_operator] = STATE(3005), - [sym_binary_operator] = STATE(3005), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3005), - [sym_call] = STATE(3005), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3005), - [sym_anonymous_function] = STATE(3005), + [sym__expression] = STATE(3647), + [sym_block] = STATE(3647), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3647), + [sym_nil] = STATE(3647), + [sym__atom] = STATE(3647), + [sym_quoted_atom] = STATE(3647), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3647), + [sym_charlist] = STATE(3647), + [sym_sigil] = STATE(3647), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3647), + [sym_tuple] = STATE(3647), + [sym_bitstring] = STATE(3647), + [sym_map] = STATE(3647), + [sym__items_with_trailing_separator] = STATE(5558), + [sym_unary_operator] = STATE(3647), + [sym_binary_operator] = STATE(3647), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3647), + [sym_call] = STATE(3647), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3647), + [sym_anonymous_function] = STATE(3647), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), [aux_sym_identifier_token1] = ACTIONS(826), @@ -54402,49 +55040,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1109), }, [226] = { - [sym__expression] = STATE(3005), - [sym_block] = STATE(3005), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3005), - [sym_nil] = STATE(3005), - [sym__atom] = STATE(3005), - [sym_quoted_atom] = STATE(3005), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3005), - [sym_charlist] = STATE(3005), - [sym_sigil] = STATE(3005), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3005), - [sym_tuple] = STATE(3005), - [sym_bitstring] = STATE(3005), - [sym_map] = STATE(3005), - [sym__items_with_trailing_separator] = STATE(4936), - [sym_unary_operator] = STATE(3005), - [sym_binary_operator] = STATE(3005), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3005), - [sym_call] = STATE(3005), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3005), - [sym_anonymous_function] = STATE(3005), + [sym__expression] = STATE(3647), + [sym_block] = STATE(3647), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3647), + [sym_nil] = STATE(3647), + [sym__atom] = STATE(3647), + [sym_quoted_atom] = STATE(3647), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3647), + [sym_charlist] = STATE(3647), + [sym_sigil] = STATE(3647), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3647), + [sym_tuple] = STATE(3647), + [sym_bitstring] = STATE(3647), + [sym_map] = STATE(3647), + [sym__items_with_trailing_separator] = STATE(5665), + [sym_unary_operator] = STATE(3647), + [sym_binary_operator] = STATE(3647), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3647), + [sym_call] = STATE(3647), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3647), + [sym_anonymous_function] = STATE(3647), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), [aux_sym_identifier_token1] = ACTIONS(826), @@ -54468,8 +55106,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_RBRACE] = ACTIONS(1255), [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_RBRACK] = ACTIONS(1255), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), @@ -54534,184 +55172,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1109), }, [227] = { - [sym__expression] = STATE(3005), - [sym_block] = STATE(3005), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3005), - [sym_nil] = STATE(3005), - [sym__atom] = STATE(3005), - [sym_quoted_atom] = STATE(3005), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3005), - [sym_charlist] = STATE(3005), - [sym_sigil] = STATE(3005), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3005), - [sym_tuple] = STATE(3005), - [sym_bitstring] = STATE(3005), - [sym_map] = STATE(3005), - [sym__items_with_trailing_separator] = STATE(5007), - [sym_unary_operator] = STATE(3005), - [sym_binary_operator] = STATE(3005), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3005), - [sym_call] = STATE(3005), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3005), - [sym_anonymous_function] = STATE(3005), + [sym__expression] = STATE(3955), + [sym_block] = STATE(3955), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3955), + [sym_nil] = STATE(3955), + [sym__atom] = STATE(3955), + [sym_quoted_atom] = STATE(3955), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3955), + [sym_charlist] = STATE(3955), + [sym_sigil] = STATE(3955), + [sym__keywords_with_trailing_separator] = STATE(5650), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3955), + [sym_tuple] = STATE(3955), + [sym_bitstring] = STATE(3955), + [sym_map] = STATE(3955), + [sym_unary_operator] = STATE(3955), + [sym_binary_operator] = STATE(3955), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3955), + [sym_call] = STATE(3955), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym__call_arguments_with_trailing_separator] = STATE(5650), + [sym_access_call] = STATE(3955), + [sym_anonymous_function] = STATE(3955), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1071), - [sym_integer] = ACTIONS(1071), - [sym_float] = ACTIONS(1071), - [sym_char] = ACTIONS(1071), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1071), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_RBRACE] = ACTIONS(1257), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [sym_keyword] = ACTIONS(1093), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [228] = { - [sym__expression] = STATE(3293), - [sym_block] = STATE(3293), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3293), - [sym_nil] = STATE(3293), - [sym__atom] = STATE(3293), - [sym_quoted_atom] = STATE(3293), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3293), - [sym_charlist] = STATE(3293), - [sym_sigil] = STATE(3293), - [sym__keywords_with_trailing_separator] = STATE(5010), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3293), - [sym_tuple] = STATE(3293), - [sym_bitstring] = STATE(3293), - [sym_map] = STATE(3293), - [sym_unary_operator] = STATE(3293), - [sym_binary_operator] = STATE(3293), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3293), - [sym_call] = STATE(3293), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym__call_arguments_with_trailing_separator] = STATE(5010), - [sym_access_call] = STATE(3293), - [sym_anonymous_function] = STATE(3293), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [anon_sym_RPAREN] = ACTIONS(1259), + [anon_sym_RPAREN] = ACTIONS(1257), [aux_sym_identifier_token1] = ACTIONS(826), [anon_sym_DOT_DOT_DOT] = ACTIONS(826), [sym_unused_identifier] = ACTIONS(1069), @@ -54797,50 +55303,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(1109), }, + [228] = { + [sym__expression] = STATE(3729), + [sym_block] = STATE(3729), + [sym__identifier] = STATE(66), + [sym_identifier] = STATE(66), + [sym_special_identifier] = STATE(66), + [sym_boolean] = STATE(3729), + [sym_nil] = STATE(3729), + [sym__atom] = STATE(3729), + [sym_quoted_atom] = STATE(3729), + [sym__quoted_i_double] = STATE(3826), + [sym__quoted_i_single] = STATE(3829), + [sym__quoted_i_heredoc_single] = STATE(4077), + [sym__quoted_i_heredoc_double] = STATE(4083), + [sym_string] = STATE(3729), + [sym_charlist] = STATE(3729), + [sym_sigil] = STATE(3729), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5442), + [sym__keyword] = STATE(759), + [sym_quoted_keyword] = STATE(759), + [sym_list] = STATE(3729), + [sym_tuple] = STATE(3729), + [sym_bitstring] = STATE(3729), + [sym_map] = STATE(3729), + [sym__items_with_trailing_separator] = STATE(5557), + [sym_unary_operator] = STATE(3729), + [sym_binary_operator] = STATE(3729), + [sym_operator_identifier] = STATE(5580), + [sym_dot] = STATE(3729), + [sym_call] = STATE(3729), + [sym__call_without_parentheses] = STATE(4089), + [sym__call_with_parentheses] = STATE(4092), + [sym__local_call_without_parentheses] = STATE(4097), + [sym__local_call_with_parentheses] = STATE(3372), + [sym__local_call_just_do_block] = STATE(4098), + [sym__remote_call_without_parentheses] = STATE(4105), + [sym__remote_call_with_parentheses] = STATE(3374), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3375), + [sym__anonymous_dot] = STATE(5531), + [sym__double_call] = STATE(4106), + [sym_access_call] = STATE(3729), + [sym_anonymous_function] = STATE(3729), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1133), + [aux_sym_identifier_token1] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1135), + [sym_unused_identifier] = ACTIONS(1137), + [anon_sym___MODULE__] = ACTIONS(1139), + [anon_sym___DIR__] = ACTIONS(1139), + [anon_sym___ENV__] = ACTIONS(1139), + [anon_sym___CALLER__] = ACTIONS(1139), + [anon_sym___STACKTRACE__] = ACTIONS(1139), + [sym_alias] = ACTIONS(1141), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1141), + [sym_char] = ACTIONS(1141), + [anon_sym_true] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [anon_sym_nil] = ACTIONS(1145), + [sym_atom] = ACTIONS(1141), + [anon_sym_DQUOTE] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1151), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1157), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1159), + [sym_keyword] = ACTIONS(1161), + [anon_sym_LT_LT] = ACTIONS(1163), + [anon_sym_GT_GT] = ACTIONS(1259), + [anon_sym_PERCENT] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_AT] = ACTIONS(1173), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1175), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1177), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1179), + }, [229] = { - [sym__expression] = STATE(3005), - [sym_block] = STATE(3005), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3005), - [sym_nil] = STATE(3005), - [sym__atom] = STATE(3005), - [sym_quoted_atom] = STATE(3005), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3005), - [sym_charlist] = STATE(3005), - [sym_sigil] = STATE(3005), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3005), - [sym_tuple] = STATE(3005), - [sym_bitstring] = STATE(3005), - [sym_map] = STATE(3005), - [sym__items_with_trailing_separator] = STATE(4933), - [sym_unary_operator] = STATE(3005), - [sym_binary_operator] = STATE(3005), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3005), - [sym_call] = STATE(3005), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3005), - [sym_anonymous_function] = STATE(3005), + [sym__expression] = STATE(3647), + [sym_block] = STATE(3647), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3647), + [sym_nil] = STATE(3647), + [sym__atom] = STATE(3647), + [sym_quoted_atom] = STATE(3647), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3647), + [sym_charlist] = STATE(3647), + [sym_sigil] = STATE(3647), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3647), + [sym_tuple] = STATE(3647), + [sym_bitstring] = STATE(3647), + [sym_map] = STATE(3647), + [sym__items_with_trailing_separator] = STATE(5555), + [sym_unary_operator] = STATE(3647), + [sym_binary_operator] = STATE(3647), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3647), + [sym_call] = STATE(3647), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3647), + [sym_anonymous_function] = STATE(3647), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), [aux_sym_identifier_token1] = ACTIONS(826), @@ -54930,52 +55568,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1109), }, [230] = { - [sym__expression] = STATE(3293), - [sym_block] = STATE(3293), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3293), - [sym_nil] = STATE(3293), - [sym__atom] = STATE(3293), - [sym_quoted_atom] = STATE(3293), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3293), - [sym_charlist] = STATE(3293), - [sym_sigil] = STATE(3293), - [sym__keywords_with_trailing_separator] = STATE(4942), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3293), - [sym_tuple] = STATE(3293), - [sym_bitstring] = STATE(3293), - [sym_map] = STATE(3293), - [sym_unary_operator] = STATE(3293), - [sym_binary_operator] = STATE(3293), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3293), - [sym_call] = STATE(3293), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym__call_arguments_with_trailing_separator] = STATE(4942), - [sym_access_call] = STATE(3293), - [sym_anonymous_function] = STATE(3293), + [sym__expression] = STATE(3647), + [sym_block] = STATE(3647), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3647), + [sym_nil] = STATE(3647), + [sym__atom] = STATE(3647), + [sym_quoted_atom] = STATE(3647), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3647), + [sym_charlist] = STATE(3647), + [sym_sigil] = STATE(3647), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3647), + [sym_tuple] = STATE(3647), + [sym_bitstring] = STATE(3647), + [sym_map] = STATE(3647), + [sym__items_with_trailing_separator] = STATE(5552), + [sym_unary_operator] = STATE(3647), + [sym_binary_operator] = STATE(3647), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3647), + [sym_call] = STATE(3647), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3647), + [sym_anonymous_function] = STATE(3647), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), - [anon_sym_RPAREN] = ACTIONS(1263), [aux_sym_identifier_token1] = ACTIONS(826), [anon_sym_DOT_DOT_DOT] = ACTIONS(826), [sym_unused_identifier] = ACTIONS(1069), @@ -54984,19 +55621,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ENV__] = ACTIONS(830), [anon_sym___CALLER__] = ACTIONS(830), [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1115), - [sym_integer] = ACTIONS(1115), - [sym_float] = ACTIONS(1115), - [sym_char] = ACTIONS(1115), + [sym_alias] = ACTIONS(1071), + [sym_integer] = ACTIONS(1071), + [sym_float] = ACTIONS(1071), + [sym_char] = ACTIONS(1071), [anon_sym_true] = ACTIONS(1073), [anon_sym_false] = ACTIONS(1073), [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1115), + [sym_atom] = ACTIONS(1071), [anon_sym_DQUOTE] = ACTIONS(1077), [anon_sym_SQUOTE] = ACTIONS(1079), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_RBRACE] = ACTIONS(1263), [anon_sym_LBRACK] = ACTIONS(1089), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), @@ -55062,90 +55700,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1109), }, [231] = { - [sym__expression] = STATE(3241), - [sym_block] = STATE(3241), - [sym__identifier] = STATE(72), - [sym_identifier] = STATE(72), - [sym_special_identifier] = STATE(72), - [sym_boolean] = STATE(3241), - [sym_nil] = STATE(3241), - [sym__atom] = STATE(3241), - [sym_quoted_atom] = STATE(3241), - [sym__quoted_i_double] = STATE(3250), - [sym__quoted_i_single] = STATE(3251), - [sym__quoted_i_heredoc_single] = STATE(3518), - [sym__quoted_i_heredoc_double] = STATE(3516), - [sym_string] = STATE(3241), - [sym_charlist] = STATE(3241), - [sym_sigil] = STATE(3241), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4833), - [sym__keyword] = STATE(613), - [sym_quoted_keyword] = STATE(613), - [sym_list] = STATE(3241), - [sym_tuple] = STATE(3241), - [sym_bitstring] = STATE(3241), - [sym_map] = STATE(3241), - [sym__items_with_trailing_separator] = STATE(5042), - [sym_unary_operator] = STATE(3241), - [sym_binary_operator] = STATE(3241), - [sym_operator_identifier] = STATE(4972), - [sym_dot] = STATE(3241), - [sym_call] = STATE(3241), - [sym__call_without_parentheses] = STATE(3517), - [sym__call_with_parentheses] = STATE(3515), - [sym__local_call_without_parentheses] = STATE(3511), - [sym__local_call_with_parentheses] = STATE(3073), - [sym__local_call_just_do_block] = STATE(3510), - [sym__remote_call_without_parentheses] = STATE(3514), - [sym__remote_call_with_parentheses] = STATE(3088), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(3095), - [sym__anonymous_dot] = STATE(4928), - [sym__double_call] = STATE(3499), - [sym_access_call] = STATE(3241), - [sym_anonymous_function] = STATE(3241), + [sym__expression] = STATE(3647), + [sym_block] = STATE(3647), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3647), + [sym_nil] = STATE(3647), + [sym__atom] = STATE(3647), + [sym_quoted_atom] = STATE(3647), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3647), + [sym_charlist] = STATE(3647), + [sym_sigil] = STATE(3647), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3647), + [sym_tuple] = STATE(3647), + [sym_bitstring] = STATE(3647), + [sym_map] = STATE(3647), + [sym__items_with_trailing_separator] = STATE(5605), + [sym_unary_operator] = STATE(3647), + [sym_binary_operator] = STATE(3647), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3647), + [sym_call] = STATE(3647), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3647), + [sym_anonymous_function] = STATE(3647), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1123), - [aux_sym_identifier_token1] = ACTIONS(1125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1125), - [sym_unused_identifier] = ACTIONS(1127), - [anon_sym___MODULE__] = ACTIONS(1129), - [anon_sym___DIR__] = ACTIONS(1129), - [anon_sym___ENV__] = ACTIONS(1129), - [anon_sym___CALLER__] = ACTIONS(1129), - [anon_sym___STACKTRACE__] = ACTIONS(1129), - [sym_alias] = ACTIONS(1131), - [sym_integer] = ACTIONS(1131), - [sym_float] = ACTIONS(1131), - [sym_char] = ACTIONS(1131), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_nil] = ACTIONS(1135), - [sym_atom] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1071), + [sym_integer] = ACTIONS(1071), + [sym_float] = ACTIONS(1071), + [sym_char] = ACTIONS(1071), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(1071), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_RBRACE] = ACTIONS(1265), + [anon_sym_LBRACK] = ACTIONS(1089), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1149), - [sym_keyword] = ACTIONS(1151), - [anon_sym_LT_LT] = ACTIONS(1153), - [anon_sym_GT_GT] = ACTIONS(1265), - [anon_sym_PERCENT] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1161), - [anon_sym_not] = ACTIONS(1161), - [anon_sym_AT] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -55185,61 +55823,193 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1165), + [anon_sym_fn] = ACTIONS(1105), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1167), + [sym__before_unary_op] = ACTIONS(1107), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1169), + [sym__quoted_atom_start] = ACTIONS(1109), }, [232] = { - [sym__expression] = STATE(3293), - [sym_block] = STATE(3293), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3293), - [sym_nil] = STATE(3293), - [sym__atom] = STATE(3293), - [sym_quoted_atom] = STATE(3293), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3293), - [sym_charlist] = STATE(3293), - [sym_sigil] = STATE(3293), - [sym__keywords_with_trailing_separator] = STATE(5001), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3293), - [sym_tuple] = STATE(3293), - [sym_bitstring] = STATE(3293), - [sym_map] = STATE(3293), - [sym_unary_operator] = STATE(3293), - [sym_binary_operator] = STATE(3293), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3293), - [sym_call] = STATE(3293), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym__call_arguments_with_trailing_separator] = STATE(5001), - [sym_access_call] = STATE(3293), - [sym_anonymous_function] = STATE(3293), + [sym__expression] = STATE(3647), + [sym_block] = STATE(3647), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3647), + [sym_nil] = STATE(3647), + [sym__atom] = STATE(3647), + [sym_quoted_atom] = STATE(3647), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3647), + [sym_charlist] = STATE(3647), + [sym_sigil] = STATE(3647), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3647), + [sym_tuple] = STATE(3647), + [sym_bitstring] = STATE(3647), + [sym_map] = STATE(3647), + [sym__items_with_trailing_separator] = STATE(5661), + [sym_unary_operator] = STATE(3647), + [sym_binary_operator] = STATE(3647), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3647), + [sym_call] = STATE(3647), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3647), + [sym_anonymous_function] = STATE(3647), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), - [anon_sym_RPAREN] = ACTIONS(1267), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1071), + [sym_integer] = ACTIONS(1071), + [sym_float] = ACTIONS(1071), + [sym_char] = ACTIONS(1071), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(1071), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_RBRACE] = ACTIONS(1267), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [233] = { + [sym__expression] = STATE(3955), + [sym_block] = STATE(3955), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3955), + [sym_nil] = STATE(3955), + [sym__atom] = STATE(3955), + [sym_quoted_atom] = STATE(3955), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3955), + [sym_charlist] = STATE(3955), + [sym_sigil] = STATE(3955), + [sym__keywords_with_trailing_separator] = STATE(5566), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3955), + [sym_tuple] = STATE(3955), + [sym_bitstring] = STATE(3955), + [sym_map] = STATE(3955), + [sym_unary_operator] = STATE(3955), + [sym_binary_operator] = STATE(3955), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3955), + [sym_call] = STATE(3955), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym__call_arguments_with_trailing_separator] = STATE(5566), + [sym_access_call] = STATE(3955), + [sym_anonymous_function] = STATE(3955), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [anon_sym_RPAREN] = ACTIONS(1269), [aux_sym_identifier_token1] = ACTIONS(826), [anon_sym_DOT_DOT_DOT] = ACTIONS(826), [sym_unused_identifier] = ACTIONS(1069), @@ -55325,223 +56095,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(1109), }, - [233] = { - [sym__expression] = STATE(3241), - [sym_block] = STATE(3241), - [sym__identifier] = STATE(72), - [sym_identifier] = STATE(72), - [sym_special_identifier] = STATE(72), - [sym_boolean] = STATE(3241), - [sym_nil] = STATE(3241), - [sym__atom] = STATE(3241), - [sym_quoted_atom] = STATE(3241), - [sym__quoted_i_double] = STATE(3250), - [sym__quoted_i_single] = STATE(3251), - [sym__quoted_i_heredoc_single] = STATE(3518), - [sym__quoted_i_heredoc_double] = STATE(3516), - [sym_string] = STATE(3241), - [sym_charlist] = STATE(3241), - [sym_sigil] = STATE(3241), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4833), - [sym__keyword] = STATE(613), - [sym_quoted_keyword] = STATE(613), - [sym_list] = STATE(3241), - [sym_tuple] = STATE(3241), - [sym_bitstring] = STATE(3241), - [sym_map] = STATE(3241), - [sym__items_with_trailing_separator] = STATE(4953), - [sym_unary_operator] = STATE(3241), - [sym_binary_operator] = STATE(3241), - [sym_operator_identifier] = STATE(4972), - [sym_dot] = STATE(3241), - [sym_call] = STATE(3241), - [sym__call_without_parentheses] = STATE(3517), - [sym__call_with_parentheses] = STATE(3515), - [sym__local_call_without_parentheses] = STATE(3511), - [sym__local_call_with_parentheses] = STATE(3073), - [sym__local_call_just_do_block] = STATE(3510), - [sym__remote_call_without_parentheses] = STATE(3514), - [sym__remote_call_with_parentheses] = STATE(3088), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(3095), - [sym__anonymous_dot] = STATE(4928), - [sym__double_call] = STATE(3499), - [sym_access_call] = STATE(3241), - [sym_anonymous_function] = STATE(3241), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1123), - [aux_sym_identifier_token1] = ACTIONS(1125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1125), - [sym_unused_identifier] = ACTIONS(1127), - [anon_sym___MODULE__] = ACTIONS(1129), - [anon_sym___DIR__] = ACTIONS(1129), - [anon_sym___ENV__] = ACTIONS(1129), - [anon_sym___CALLER__] = ACTIONS(1129), - [anon_sym___STACKTRACE__] = ACTIONS(1129), - [sym_alias] = ACTIONS(1131), - [sym_integer] = ACTIONS(1131), - [sym_float] = ACTIONS(1131), - [sym_char] = ACTIONS(1131), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_nil] = ACTIONS(1135), - [sym_atom] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(1147), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1149), - [sym_keyword] = ACTIONS(1151), - [anon_sym_LT_LT] = ACTIONS(1153), - [anon_sym_GT_GT] = ACTIONS(1269), - [anon_sym_PERCENT] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1161), - [anon_sym_not] = ACTIONS(1161), - [anon_sym_AT] = ACTIONS(1163), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1165), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1167), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1169), - }, [234] = { - [sym__expression] = STATE(3005), - [sym_block] = STATE(3005), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3005), - [sym_nil] = STATE(3005), - [sym__atom] = STATE(3005), - [sym_quoted_atom] = STATE(3005), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3005), - [sym_charlist] = STATE(3005), - [sym_sigil] = STATE(3005), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3005), - [sym_tuple] = STATE(3005), - [sym_bitstring] = STATE(3005), - [sym_map] = STATE(3005), - [sym__items_with_trailing_separator] = STATE(5045), - [sym_unary_operator] = STATE(3005), - [sym_binary_operator] = STATE(3005), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3005), - [sym_call] = STATE(3005), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3005), - [sym_anonymous_function] = STATE(3005), + [sym__expression] = STATE(3729), + [sym_block] = STATE(3729), + [sym__identifier] = STATE(66), + [sym_identifier] = STATE(66), + [sym_special_identifier] = STATE(66), + [sym_boolean] = STATE(3729), + [sym_nil] = STATE(3729), + [sym__atom] = STATE(3729), + [sym_quoted_atom] = STATE(3729), + [sym__quoted_i_double] = STATE(3826), + [sym__quoted_i_single] = STATE(3829), + [sym__quoted_i_heredoc_single] = STATE(4077), + [sym__quoted_i_heredoc_double] = STATE(4083), + [sym_string] = STATE(3729), + [sym_charlist] = STATE(3729), + [sym_sigil] = STATE(3729), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5442), + [sym__keyword] = STATE(759), + [sym_quoted_keyword] = STATE(759), + [sym_list] = STATE(3729), + [sym_tuple] = STATE(3729), + [sym_bitstring] = STATE(3729), + [sym_map] = STATE(3729), + [sym__items_with_trailing_separator] = STATE(5597), + [sym_unary_operator] = STATE(3729), + [sym_binary_operator] = STATE(3729), + [sym_operator_identifier] = STATE(5580), + [sym_dot] = STATE(3729), + [sym_call] = STATE(3729), + [sym__call_without_parentheses] = STATE(4089), + [sym__call_with_parentheses] = STATE(4092), + [sym__local_call_without_parentheses] = STATE(4097), + [sym__local_call_with_parentheses] = STATE(3372), + [sym__local_call_just_do_block] = STATE(4098), + [sym__remote_call_without_parentheses] = STATE(4105), + [sym__remote_call_with_parentheses] = STATE(3374), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3375), + [sym__anonymous_dot] = STATE(5531), + [sym__double_call] = STATE(4106), + [sym_access_call] = STATE(3729), + [sym_anonymous_function] = STATE(3729), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1071), - [sym_integer] = ACTIONS(1071), - [sym_float] = ACTIONS(1071), - [sym_char] = ACTIONS(1071), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1071), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_RBRACE] = ACTIONS(1271), - [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1133), + [aux_sym_identifier_token1] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1135), + [sym_unused_identifier] = ACTIONS(1137), + [anon_sym___MODULE__] = ACTIONS(1139), + [anon_sym___DIR__] = ACTIONS(1139), + [anon_sym___ENV__] = ACTIONS(1139), + [anon_sym___CALLER__] = ACTIONS(1139), + [anon_sym___STACKTRACE__] = ACTIONS(1139), + [sym_alias] = ACTIONS(1141), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1141), + [sym_char] = ACTIONS(1141), + [anon_sym_true] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [anon_sym_nil] = ACTIONS(1145), + [sym_atom] = ACTIONS(1141), + [anon_sym_DQUOTE] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1151), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1157), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [sym_keyword] = ACTIONS(1093), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), + [anon_sym_TILDE] = ACTIONS(1159), + [sym_keyword] = ACTIONS(1161), + [anon_sym_LT_LT] = ACTIONS(1163), + [anon_sym_GT_GT] = ACTIONS(1271), + [anon_sym_PERCENT] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_AT] = ACTIONS(1173), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -55581,58 +56219,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), + [anon_sym_fn] = ACTIONS(1175), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), + [sym__before_unary_op] = ACTIONS(1177), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), + [sym__quoted_atom_start] = ACTIONS(1179), }, [235] = { - [sym__expression] = STATE(3005), - [sym_block] = STATE(3005), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3005), - [sym_nil] = STATE(3005), - [sym__atom] = STATE(3005), - [sym_quoted_atom] = STATE(3005), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3005), - [sym_charlist] = STATE(3005), - [sym_sigil] = STATE(3005), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3005), - [sym_tuple] = STATE(3005), - [sym_bitstring] = STATE(3005), - [sym_map] = STATE(3005), - [sym__items_with_trailing_separator] = STATE(4965), - [sym_unary_operator] = STATE(3005), - [sym_binary_operator] = STATE(3005), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3005), - [sym_call] = STATE(3005), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3005), - [sym_anonymous_function] = STATE(3005), + [sym__expression] = STATE(3647), + [sym_block] = STATE(3647), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3647), + [sym_nil] = STATE(3647), + [sym__atom] = STATE(3647), + [sym_quoted_atom] = STATE(3647), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3647), + [sym_charlist] = STATE(3647), + [sym_sigil] = STATE(3647), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3647), + [sym_tuple] = STATE(3647), + [sym_bitstring] = STATE(3647), + [sym_map] = STATE(3647), + [sym__items_with_trailing_separator] = STATE(5611), + [sym_unary_operator] = STATE(3647), + [sym_binary_operator] = STATE(3647), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3647), + [sym_call] = STATE(3647), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3647), + [sym_anonymous_function] = STATE(3647), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), [aux_sym_identifier_token1] = ACTIONS(826), @@ -55722,49 +56360,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1109), }, [236] = { - [sym__expression] = STATE(3005), - [sym_block] = STATE(3005), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3005), - [sym_nil] = STATE(3005), - [sym__atom] = STATE(3005), - [sym_quoted_atom] = STATE(3005), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3005), - [sym_charlist] = STATE(3005), - [sym_sigil] = STATE(3005), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3005), - [sym_tuple] = STATE(3005), - [sym_bitstring] = STATE(3005), - [sym_map] = STATE(3005), - [sym__items_with_trailing_separator] = STATE(4997), - [sym_unary_operator] = STATE(3005), - [sym_binary_operator] = STATE(3005), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3005), - [sym_call] = STATE(3005), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3005), - [sym_anonymous_function] = STATE(3005), + [sym__expression] = STATE(3647), + [sym_block] = STATE(3647), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3647), + [sym_nil] = STATE(3647), + [sym__atom] = STATE(3647), + [sym_quoted_atom] = STATE(3647), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3647), + [sym_charlist] = STATE(3647), + [sym_sigil] = STATE(3647), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3647), + [sym_tuple] = STATE(3647), + [sym_bitstring] = STATE(3647), + [sym_map] = STATE(3647), + [sym__items_with_trailing_separator] = STATE(5568), + [sym_unary_operator] = STATE(3647), + [sym_binary_operator] = STATE(3647), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3647), + [sym_call] = STATE(3647), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3647), + [sym_anonymous_function] = STATE(3647), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), [aux_sym_identifier_token1] = ACTIONS(826), @@ -55788,8 +56426,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_RBRACE] = ACTIONS(1275), [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_RBRACK] = ACTIONS(1275), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), @@ -55854,52 +56492,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1109), }, [237] = { - [sym__expression] = STATE(3293), - [sym_block] = STATE(3293), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3293), - [sym_nil] = STATE(3293), - [sym__atom] = STATE(3293), - [sym_quoted_atom] = STATE(3293), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3293), - [sym_charlist] = STATE(3293), - [sym_sigil] = STATE(3293), - [sym__keywords_with_trailing_separator] = STATE(4996), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3293), - [sym_tuple] = STATE(3293), - [sym_bitstring] = STATE(3293), - [sym_map] = STATE(3293), - [sym_unary_operator] = STATE(3293), - [sym_binary_operator] = STATE(3293), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3293), - [sym_call] = STATE(3293), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym__call_arguments_with_trailing_separator] = STATE(4996), - [sym_access_call] = STATE(3293), - [sym_anonymous_function] = STATE(3293), + [sym__expression] = STATE(3647), + [sym_block] = STATE(3647), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3647), + [sym_nil] = STATE(3647), + [sym__atom] = STATE(3647), + [sym_quoted_atom] = STATE(3647), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3647), + [sym_charlist] = STATE(3647), + [sym_sigil] = STATE(3647), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3647), + [sym_tuple] = STATE(3647), + [sym_bitstring] = STATE(3647), + [sym_map] = STATE(3647), + [sym__items_with_trailing_separator] = STATE(5601), + [sym_unary_operator] = STATE(3647), + [sym_binary_operator] = STATE(3647), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3647), + [sym_call] = STATE(3647), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3647), + [sym_anonymous_function] = STATE(3647), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), - [anon_sym_RPAREN] = ACTIONS(1277), [aux_sym_identifier_token1] = ACTIONS(826), [anon_sym_DOT_DOT_DOT] = ACTIONS(826), [sym_unused_identifier] = ACTIONS(1069), @@ -55908,20 +56545,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ENV__] = ACTIONS(830), [anon_sym___CALLER__] = ACTIONS(830), [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1115), - [sym_integer] = ACTIONS(1115), - [sym_float] = ACTIONS(1115), - [sym_char] = ACTIONS(1115), + [sym_alias] = ACTIONS(1071), + [sym_integer] = ACTIONS(1071), + [sym_float] = ACTIONS(1071), + [sym_char] = ACTIONS(1071), [anon_sym_true] = ACTIONS(1073), [anon_sym_false] = ACTIONS(1073), [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1115), + [sym_atom] = ACTIONS(1071), [anon_sym_DQUOTE] = ACTIONS(1077), [anon_sym_SQUOTE] = ACTIONS(1079), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), [anon_sym_LBRACE] = ACTIONS(1085), [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_RBRACK] = ACTIONS(1277), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), @@ -55986,313 +56624,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1109), }, [238] = { - [sym__expression] = STATE(3241), - [sym_block] = STATE(3241), - [sym__identifier] = STATE(72), - [sym_identifier] = STATE(72), - [sym_special_identifier] = STATE(72), - [sym_boolean] = STATE(3241), - [sym_nil] = STATE(3241), - [sym__atom] = STATE(3241), - [sym_quoted_atom] = STATE(3241), - [sym__quoted_i_double] = STATE(3250), - [sym__quoted_i_single] = STATE(3251), - [sym__quoted_i_heredoc_single] = STATE(3518), - [sym__quoted_i_heredoc_double] = STATE(3516), - [sym_string] = STATE(3241), - [sym_charlist] = STATE(3241), - [sym_sigil] = STATE(3241), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4833), - [sym__keyword] = STATE(613), - [sym_quoted_keyword] = STATE(613), - [sym_list] = STATE(3241), - [sym_tuple] = STATE(3241), - [sym_bitstring] = STATE(3241), - [sym_map] = STATE(3241), - [sym__items_with_trailing_separator] = STATE(4956), - [sym_unary_operator] = STATE(3241), - [sym_binary_operator] = STATE(3241), - [sym_operator_identifier] = STATE(4972), - [sym_dot] = STATE(3241), - [sym_call] = STATE(3241), - [sym__call_without_parentheses] = STATE(3517), - [sym__call_with_parentheses] = STATE(3515), - [sym__local_call_without_parentheses] = STATE(3511), - [sym__local_call_with_parentheses] = STATE(3073), - [sym__local_call_just_do_block] = STATE(3510), - [sym__remote_call_without_parentheses] = STATE(3514), - [sym__remote_call_with_parentheses] = STATE(3088), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(3095), - [sym__anonymous_dot] = STATE(4928), - [sym__double_call] = STATE(3499), - [sym_access_call] = STATE(3241), - [sym_anonymous_function] = STATE(3241), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1123), - [aux_sym_identifier_token1] = ACTIONS(1125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1125), - [sym_unused_identifier] = ACTIONS(1127), - [anon_sym___MODULE__] = ACTIONS(1129), - [anon_sym___DIR__] = ACTIONS(1129), - [anon_sym___ENV__] = ACTIONS(1129), - [anon_sym___CALLER__] = ACTIONS(1129), - [anon_sym___STACKTRACE__] = ACTIONS(1129), - [sym_alias] = ACTIONS(1131), - [sym_integer] = ACTIONS(1131), - [sym_float] = ACTIONS(1131), - [sym_char] = ACTIONS(1131), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_nil] = ACTIONS(1135), - [sym_atom] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(1147), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1149), - [sym_keyword] = ACTIONS(1151), - [anon_sym_LT_LT] = ACTIONS(1153), - [anon_sym_GT_GT] = ACTIONS(1279), - [anon_sym_PERCENT] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1161), - [anon_sym_not] = ACTIONS(1161), - [anon_sym_AT] = ACTIONS(1163), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1165), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1167), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1169), - }, - [239] = { - [sym__expression] = STATE(3241), - [sym_block] = STATE(3241), - [sym__identifier] = STATE(72), - [sym_identifier] = STATE(72), - [sym_special_identifier] = STATE(72), - [sym_boolean] = STATE(3241), - [sym_nil] = STATE(3241), - [sym__atom] = STATE(3241), - [sym_quoted_atom] = STATE(3241), - [sym__quoted_i_double] = STATE(3250), - [sym__quoted_i_single] = STATE(3251), - [sym__quoted_i_heredoc_single] = STATE(3518), - [sym__quoted_i_heredoc_double] = STATE(3516), - [sym_string] = STATE(3241), - [sym_charlist] = STATE(3241), - [sym_sigil] = STATE(3241), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4833), - [sym__keyword] = STATE(613), - [sym_quoted_keyword] = STATE(613), - [sym_list] = STATE(3241), - [sym_tuple] = STATE(3241), - [sym_bitstring] = STATE(3241), - [sym_map] = STATE(3241), - [sym__items_with_trailing_separator] = STATE(5027), - [sym_unary_operator] = STATE(3241), - [sym_binary_operator] = STATE(3241), - [sym_operator_identifier] = STATE(4972), - [sym_dot] = STATE(3241), - [sym_call] = STATE(3241), - [sym__call_without_parentheses] = STATE(3517), - [sym__call_with_parentheses] = STATE(3515), - [sym__local_call_without_parentheses] = STATE(3511), - [sym__local_call_with_parentheses] = STATE(3073), - [sym__local_call_just_do_block] = STATE(3510), - [sym__remote_call_without_parentheses] = STATE(3514), - [sym__remote_call_with_parentheses] = STATE(3088), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(3095), - [sym__anonymous_dot] = STATE(4928), - [sym__double_call] = STATE(3499), - [sym_access_call] = STATE(3241), - [sym_anonymous_function] = STATE(3241), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1123), - [aux_sym_identifier_token1] = ACTIONS(1125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1125), - [sym_unused_identifier] = ACTIONS(1127), - [anon_sym___MODULE__] = ACTIONS(1129), - [anon_sym___DIR__] = ACTIONS(1129), - [anon_sym___ENV__] = ACTIONS(1129), - [anon_sym___CALLER__] = ACTIONS(1129), - [anon_sym___STACKTRACE__] = ACTIONS(1129), - [sym_alias] = ACTIONS(1131), - [sym_integer] = ACTIONS(1131), - [sym_float] = ACTIONS(1131), - [sym_char] = ACTIONS(1131), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_nil] = ACTIONS(1135), - [sym_atom] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(1147), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1149), - [sym_keyword] = ACTIONS(1151), - [anon_sym_LT_LT] = ACTIONS(1153), - [anon_sym_GT_GT] = ACTIONS(1281), - [anon_sym_PERCENT] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1161), - [anon_sym_not] = ACTIONS(1161), - [anon_sym_AT] = ACTIONS(1163), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1165), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1167), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1169), - }, - [240] = { - [sym__expression] = STATE(3005), - [sym_block] = STATE(3005), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3005), - [sym_nil] = STATE(3005), - [sym__atom] = STATE(3005), - [sym_quoted_atom] = STATE(3005), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3005), - [sym_charlist] = STATE(3005), - [sym_sigil] = STATE(3005), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3005), - [sym_tuple] = STATE(3005), - [sym_bitstring] = STATE(3005), - [sym_map] = STATE(3005), - [sym__items_with_trailing_separator] = STATE(5011), - [sym_unary_operator] = STATE(3005), - [sym_binary_operator] = STATE(3005), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3005), - [sym_call] = STATE(3005), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3005), - [sym_anonymous_function] = STATE(3005), + [sym__expression] = STATE(3647), + [sym_block] = STATE(3647), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3647), + [sym_nil] = STATE(3647), + [sym__atom] = STATE(3647), + [sym_quoted_atom] = STATE(3647), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3647), + [sym_charlist] = STATE(3647), + [sym_sigil] = STATE(3647), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3647), + [sym_tuple] = STATE(3647), + [sym_bitstring] = STATE(3647), + [sym_map] = STATE(3647), + [sym__items_with_trailing_separator] = STATE(5569), + [sym_unary_operator] = STATE(3647), + [sym_binary_operator] = STATE(3647), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3647), + [sym_call] = STATE(3647), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3647), + [sym_anonymous_function] = STATE(3647), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), [aux_sym_identifier_token1] = ACTIONS(826), @@ -56316,8 +56690,272 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_RBRACE] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [239] = { + [sym__expression] = STATE(3647), + [sym_block] = STATE(3647), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3647), + [sym_nil] = STATE(3647), + [sym__atom] = STATE(3647), + [sym_quoted_atom] = STATE(3647), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3647), + [sym_charlist] = STATE(3647), + [sym_sigil] = STATE(3647), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3647), + [sym_tuple] = STATE(3647), + [sym_bitstring] = STATE(3647), + [sym_map] = STATE(3647), + [sym__items_with_trailing_separator] = STATE(5603), + [sym_unary_operator] = STATE(3647), + [sym_binary_operator] = STATE(3647), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3647), + [sym_call] = STATE(3647), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3647), + [sym_anonymous_function] = STATE(3647), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1071), + [sym_integer] = ACTIONS(1071), + [sym_float] = ACTIONS(1071), + [sym_char] = ACTIONS(1071), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(1071), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_RBRACE] = ACTIONS(1281), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [240] = { + [sym__expression] = STATE(3647), + [sym_block] = STATE(3647), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3647), + [sym_nil] = STATE(3647), + [sym__atom] = STATE(3647), + [sym_quoted_atom] = STATE(3647), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3647), + [sym_charlist] = STATE(3647), + [sym_sigil] = STATE(3647), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3647), + [sym_tuple] = STATE(3647), + [sym_bitstring] = STATE(3647), + [sym_map] = STATE(3647), + [sym__items_with_trailing_separator] = STATE(5615), + [sym_unary_operator] = STATE(3647), + [sym_binary_operator] = STATE(3647), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3647), + [sym_call] = STATE(3647), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3647), + [sym_anonymous_function] = STATE(3647), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1071), + [sym_integer] = ACTIONS(1071), + [sym_float] = ACTIONS(1071), + [sym_char] = ACTIONS(1071), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(1071), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_RBRACE] = ACTIONS(1283), [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_RBRACK] = ACTIONS(1283), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), @@ -56382,49 +57020,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1109), }, [241] = { - [sym__expression] = STATE(3005), - [sym_block] = STATE(3005), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3005), - [sym_nil] = STATE(3005), - [sym__atom] = STATE(3005), - [sym_quoted_atom] = STATE(3005), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3005), - [sym_charlist] = STATE(3005), - [sym_sigil] = STATE(3005), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3005), - [sym_tuple] = STATE(3005), - [sym_bitstring] = STATE(3005), - [sym_map] = STATE(3005), - [sym__items_with_trailing_separator] = STATE(5002), - [sym_unary_operator] = STATE(3005), - [sym_binary_operator] = STATE(3005), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3005), - [sym_call] = STATE(3005), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3005), - [sym_anonymous_function] = STATE(3005), + [sym__expression] = STATE(3647), + [sym_block] = STATE(3647), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3647), + [sym_nil] = STATE(3647), + [sym__atom] = STATE(3647), + [sym_quoted_atom] = STATE(3647), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3647), + [sym_charlist] = STATE(3647), + [sym_sigil] = STATE(3647), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3647), + [sym_tuple] = STATE(3647), + [sym_bitstring] = STATE(3647), + [sym_map] = STATE(3647), + [sym__items_with_trailing_separator] = STATE(5571), + [sym_unary_operator] = STATE(3647), + [sym_binary_operator] = STATE(3647), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3647), + [sym_call] = STATE(3647), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3647), + [sym_anonymous_function] = STATE(3647), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), [aux_sym_identifier_token1] = ACTIONS(826), @@ -56514,90 +57152,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1109), }, [242] = { - [sym__expression] = STATE(3005), - [sym_block] = STATE(3005), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3005), - [sym_nil] = STATE(3005), - [sym__atom] = STATE(3005), - [sym_quoted_atom] = STATE(3005), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3005), - [sym_charlist] = STATE(3005), - [sym_sigil] = STATE(3005), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3005), - [sym_tuple] = STATE(3005), - [sym_bitstring] = STATE(3005), - [sym_map] = STATE(3005), - [sym__items_with_trailing_separator] = STATE(5017), - [sym_unary_operator] = STATE(3005), - [sym_binary_operator] = STATE(3005), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3005), - [sym_call] = STATE(3005), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3005), - [sym_anonymous_function] = STATE(3005), + [sym__expression] = STATE(3729), + [sym_block] = STATE(3729), + [sym__identifier] = STATE(66), + [sym_identifier] = STATE(66), + [sym_special_identifier] = STATE(66), + [sym_boolean] = STATE(3729), + [sym_nil] = STATE(3729), + [sym__atom] = STATE(3729), + [sym_quoted_atom] = STATE(3729), + [sym__quoted_i_double] = STATE(3826), + [sym__quoted_i_single] = STATE(3829), + [sym__quoted_i_heredoc_single] = STATE(4077), + [sym__quoted_i_heredoc_double] = STATE(4083), + [sym_string] = STATE(3729), + [sym_charlist] = STATE(3729), + [sym_sigil] = STATE(3729), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5442), + [sym__keyword] = STATE(759), + [sym_quoted_keyword] = STATE(759), + [sym_list] = STATE(3729), + [sym_tuple] = STATE(3729), + [sym_bitstring] = STATE(3729), + [sym_map] = STATE(3729), + [sym__items_with_trailing_separator] = STATE(5550), + [sym_unary_operator] = STATE(3729), + [sym_binary_operator] = STATE(3729), + [sym_operator_identifier] = STATE(5580), + [sym_dot] = STATE(3729), + [sym_call] = STATE(3729), + [sym__call_without_parentheses] = STATE(4089), + [sym__call_with_parentheses] = STATE(4092), + [sym__local_call_without_parentheses] = STATE(4097), + [sym__local_call_with_parentheses] = STATE(3372), + [sym__local_call_just_do_block] = STATE(4098), + [sym__remote_call_without_parentheses] = STATE(4105), + [sym__remote_call_with_parentheses] = STATE(3374), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3375), + [sym__anonymous_dot] = STATE(5531), + [sym__double_call] = STATE(4106), + [sym_access_call] = STATE(3729), + [sym_anonymous_function] = STATE(3729), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1071), - [sym_integer] = ACTIONS(1071), - [sym_float] = ACTIONS(1071), - [sym_char] = ACTIONS(1071), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1071), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_RBRACE] = ACTIONS(1287), - [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1133), + [aux_sym_identifier_token1] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1135), + [sym_unused_identifier] = ACTIONS(1137), + [anon_sym___MODULE__] = ACTIONS(1139), + [anon_sym___DIR__] = ACTIONS(1139), + [anon_sym___ENV__] = ACTIONS(1139), + [anon_sym___CALLER__] = ACTIONS(1139), + [anon_sym___STACKTRACE__] = ACTIONS(1139), + [sym_alias] = ACTIONS(1141), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1141), + [sym_char] = ACTIONS(1141), + [anon_sym_true] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [anon_sym_nil] = ACTIONS(1145), + [sym_atom] = ACTIONS(1141), + [anon_sym_DQUOTE] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1151), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1157), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [sym_keyword] = ACTIONS(1093), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), + [anon_sym_TILDE] = ACTIONS(1159), + [sym_keyword] = ACTIONS(1161), + [anon_sym_LT_LT] = ACTIONS(1163), + [anon_sym_GT_GT] = ACTIONS(1287), + [anon_sym_PERCENT] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_AT] = ACTIONS(1173), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -56637,58 +57275,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), + [anon_sym_fn] = ACTIONS(1175), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), + [sym__before_unary_op] = ACTIONS(1177), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), + [sym__quoted_atom_start] = ACTIONS(1179), }, [243] = { - [sym__expression] = STATE(3293), - [sym_block] = STATE(3293), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3293), - [sym_nil] = STATE(3293), - [sym__atom] = STATE(3293), - [sym_quoted_atom] = STATE(3293), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3293), - [sym_charlist] = STATE(3293), - [sym_sigil] = STATE(3293), - [sym__keywords_with_trailing_separator] = STATE(4959), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3293), - [sym_tuple] = STATE(3293), - [sym_bitstring] = STATE(3293), - [sym_map] = STATE(3293), - [sym_unary_operator] = STATE(3293), - [sym_binary_operator] = STATE(3293), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3293), - [sym_call] = STATE(3293), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym__call_arguments_with_trailing_separator] = STATE(4959), - [sym_access_call] = STATE(3293), - [sym_anonymous_function] = STATE(3293), + [sym__expression] = STATE(3955), + [sym_block] = STATE(3955), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3955), + [sym_nil] = STATE(3955), + [sym__atom] = STATE(3955), + [sym_quoted_atom] = STATE(3955), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3955), + [sym_charlist] = STATE(3955), + [sym_sigil] = STATE(3955), + [sym__keywords_with_trailing_separator] = STATE(5646), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3955), + [sym_tuple] = STATE(3955), + [sym_bitstring] = STATE(3955), + [sym_map] = STATE(3955), + [sym_unary_operator] = STATE(3955), + [sym_binary_operator] = STATE(3955), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3955), + [sym_call] = STATE(3955), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym__call_arguments_with_trailing_separator] = STATE(5646), + [sym_access_call] = STATE(3955), + [sym_anonymous_function] = STATE(3955), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), [anon_sym_RPAREN] = ACTIONS(1289), @@ -56778,49 +57416,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1109), }, [244] = { - [sym__expression] = STATE(3005), - [sym_block] = STATE(3005), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3005), - [sym_nil] = STATE(3005), - [sym__atom] = STATE(3005), - [sym_quoted_atom] = STATE(3005), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3005), - [sym_charlist] = STATE(3005), - [sym_sigil] = STATE(3005), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3005), - [sym_tuple] = STATE(3005), - [sym_bitstring] = STATE(3005), - [sym_map] = STATE(3005), - [sym__items_with_trailing_separator] = STATE(4999), - [sym_unary_operator] = STATE(3005), - [sym_binary_operator] = STATE(3005), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3005), - [sym_call] = STATE(3005), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3005), - [sym_anonymous_function] = STATE(3005), + [sym__expression] = STATE(3647), + [sym_block] = STATE(3647), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3647), + [sym_nil] = STATE(3647), + [sym__atom] = STATE(3647), + [sym_quoted_atom] = STATE(3647), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3647), + [sym_charlist] = STATE(3647), + [sym_sigil] = STATE(3647), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3647), + [sym_tuple] = STATE(3647), + [sym_bitstring] = STATE(3647), + [sym_map] = STATE(3647), + [sym__items_with_trailing_separator] = STATE(5578), + [sym_unary_operator] = STATE(3647), + [sym_binary_operator] = STATE(3647), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3647), + [sym_call] = STATE(3647), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3647), + [sym_anonymous_function] = STATE(3647), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), [aux_sym_identifier_token1] = ACTIONS(826), @@ -56844,8 +57482,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_RBRACE] = ACTIONS(1291), [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_RBRACK] = ACTIONS(1291), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), @@ -56910,52 +57548,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1109), }, [245] = { - [sym__expression] = STATE(3293), - [sym_block] = STATE(3293), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3293), - [sym_nil] = STATE(3293), - [sym__atom] = STATE(3293), - [sym_quoted_atom] = STATE(3293), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3293), - [sym_charlist] = STATE(3293), - [sym_sigil] = STATE(3293), - [sym__keywords_with_trailing_separator] = STATE(4944), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3293), - [sym_tuple] = STATE(3293), - [sym_bitstring] = STATE(3293), - [sym_map] = STATE(3293), - [sym_unary_operator] = STATE(3293), - [sym_binary_operator] = STATE(3293), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3293), - [sym_call] = STATE(3293), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym__call_arguments_with_trailing_separator] = STATE(4944), - [sym_access_call] = STATE(3293), - [sym_anonymous_function] = STATE(3293), + [sym__expression] = STATE(3647), + [sym_block] = STATE(3647), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3647), + [sym_nil] = STATE(3647), + [sym__atom] = STATE(3647), + [sym_quoted_atom] = STATE(3647), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3647), + [sym_charlist] = STATE(3647), + [sym_sigil] = STATE(3647), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3647), + [sym_tuple] = STATE(3647), + [sym_bitstring] = STATE(3647), + [sym_map] = STATE(3647), + [sym__items_with_trailing_separator] = STATE(5641), + [sym_unary_operator] = STATE(3647), + [sym_binary_operator] = STATE(3647), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3647), + [sym_call] = STATE(3647), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3647), + [sym_anonymous_function] = STATE(3647), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), - [anon_sym_RPAREN] = ACTIONS(1293), [aux_sym_identifier_token1] = ACTIONS(826), [anon_sym_DOT_DOT_DOT] = ACTIONS(826), [sym_unused_identifier] = ACTIONS(1069), @@ -56964,19 +57601,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ENV__] = ACTIONS(830), [anon_sym___CALLER__] = ACTIONS(830), [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1115), - [sym_integer] = ACTIONS(1115), - [sym_float] = ACTIONS(1115), - [sym_char] = ACTIONS(1115), + [sym_alias] = ACTIONS(1071), + [sym_integer] = ACTIONS(1071), + [sym_float] = ACTIONS(1071), + [sym_char] = ACTIONS(1071), [anon_sym_true] = ACTIONS(1073), [anon_sym_false] = ACTIONS(1073), [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1115), + [sym_atom] = ACTIONS(1071), [anon_sym_DQUOTE] = ACTIONS(1077), [anon_sym_SQUOTE] = ACTIONS(1079), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_RBRACE] = ACTIONS(1293), [anon_sym_LBRACK] = ACTIONS(1089), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), @@ -57042,52 +57680,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1109), }, [246] = { - [sym__expression] = STATE(3293), - [sym_block] = STATE(3293), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3293), - [sym_nil] = STATE(3293), - [sym__atom] = STATE(3293), - [sym_quoted_atom] = STATE(3293), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3293), - [sym_charlist] = STATE(3293), - [sym_sigil] = STATE(3293), - [sym__keywords_with_trailing_separator] = STATE(5040), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3293), - [sym_tuple] = STATE(3293), - [sym_bitstring] = STATE(3293), - [sym_map] = STATE(3293), - [sym_unary_operator] = STATE(3293), - [sym_binary_operator] = STATE(3293), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3293), - [sym_call] = STATE(3293), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym__call_arguments_with_trailing_separator] = STATE(5040), - [sym_access_call] = STATE(3293), - [sym_anonymous_function] = STATE(3293), + [sym__expression] = STATE(3647), + [sym_block] = STATE(3647), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3647), + [sym_nil] = STATE(3647), + [sym__atom] = STATE(3647), + [sym_quoted_atom] = STATE(3647), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3647), + [sym_charlist] = STATE(3647), + [sym_sigil] = STATE(3647), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3647), + [sym_tuple] = STATE(3647), + [sym_bitstring] = STATE(3647), + [sym_map] = STATE(3647), + [sym__items_with_trailing_separator] = STATE(5659), + [sym_unary_operator] = STATE(3647), + [sym_binary_operator] = STATE(3647), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3647), + [sym_call] = STATE(3647), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3647), + [sym_anonymous_function] = STATE(3647), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), - [anon_sym_RPAREN] = ACTIONS(1295), [aux_sym_identifier_token1] = ACTIONS(826), [anon_sym_DOT_DOT_DOT] = ACTIONS(826), [sym_unused_identifier] = ACTIONS(1069), @@ -57096,19 +57733,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ENV__] = ACTIONS(830), [anon_sym___CALLER__] = ACTIONS(830), [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1115), - [sym_integer] = ACTIONS(1115), - [sym_float] = ACTIONS(1115), - [sym_char] = ACTIONS(1115), + [sym_alias] = ACTIONS(1071), + [sym_integer] = ACTIONS(1071), + [sym_float] = ACTIONS(1071), + [sym_char] = ACTIONS(1071), [anon_sym_true] = ACTIONS(1073), [anon_sym_false] = ACTIONS(1073), [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1115), + [sym_atom] = ACTIONS(1071), [anon_sym_DQUOTE] = ACTIONS(1077), [anon_sym_SQUOTE] = ACTIONS(1079), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_RBRACE] = ACTIONS(1295), [anon_sym_LBRACK] = ACTIONS(1089), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), @@ -57174,49 +57812,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1109), }, [247] = { - [sym__expression] = STATE(3005), - [sym_block] = STATE(3005), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3005), - [sym_nil] = STATE(3005), - [sym__atom] = STATE(3005), - [sym_quoted_atom] = STATE(3005), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3005), - [sym_charlist] = STATE(3005), - [sym_sigil] = STATE(3005), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3005), - [sym_tuple] = STATE(3005), - [sym_bitstring] = STATE(3005), - [sym_map] = STATE(3005), - [sym__items_with_trailing_separator] = STATE(4985), - [sym_unary_operator] = STATE(3005), - [sym_binary_operator] = STATE(3005), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3005), - [sym_call] = STATE(3005), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3005), - [sym_anonymous_function] = STATE(3005), + [sym__expression] = STATE(3647), + [sym_block] = STATE(3647), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3647), + [sym_nil] = STATE(3647), + [sym__atom] = STATE(3647), + [sym_quoted_atom] = STATE(3647), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3647), + [sym_charlist] = STATE(3647), + [sym_sigil] = STATE(3647), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3647), + [sym_tuple] = STATE(3647), + [sym_bitstring] = STATE(3647), + [sym_map] = STATE(3647), + [sym__items_with_trailing_separator] = STATE(5654), + [sym_unary_operator] = STATE(3647), + [sym_binary_operator] = STATE(3647), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3647), + [sym_call] = STATE(3647), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3647), + [sym_anonymous_function] = STATE(3647), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), [aux_sym_identifier_token1] = ACTIONS(826), @@ -57240,8 +57878,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_RBRACE] = ACTIONS(1297), [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_RBRACK] = ACTIONS(1297), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), @@ -57306,184 +57944,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1109), }, [248] = { - [sym__expression] = STATE(3005), - [sym_block] = STATE(3005), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3005), - [sym_nil] = STATE(3005), - [sym__atom] = STATE(3005), - [sym_quoted_atom] = STATE(3005), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3005), - [sym_charlist] = STATE(3005), - [sym_sigil] = STATE(3005), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3005), - [sym_tuple] = STATE(3005), - [sym_bitstring] = STATE(3005), - [sym_map] = STATE(3005), - [sym__items_with_trailing_separator] = STATE(5008), - [sym_unary_operator] = STATE(3005), - [sym_binary_operator] = STATE(3005), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3005), - [sym_call] = STATE(3005), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3005), - [sym_anonymous_function] = STATE(3005), + [sym__expression] = STATE(3955), + [sym_block] = STATE(3955), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3955), + [sym_nil] = STATE(3955), + [sym__atom] = STATE(3955), + [sym_quoted_atom] = STATE(3955), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3955), + [sym_charlist] = STATE(3955), + [sym_sigil] = STATE(3955), + [sym__keywords_with_trailing_separator] = STATE(5563), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3955), + [sym_tuple] = STATE(3955), + [sym_bitstring] = STATE(3955), + [sym_map] = STATE(3955), + [sym_unary_operator] = STATE(3955), + [sym_binary_operator] = STATE(3955), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3955), + [sym_call] = STATE(3955), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym__call_arguments_with_trailing_separator] = STATE(5563), + [sym_access_call] = STATE(3955), + [sym_anonymous_function] = STATE(3955), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1071), - [sym_integer] = ACTIONS(1071), - [sym_float] = ACTIONS(1071), - [sym_char] = ACTIONS(1071), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1071), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_RBRACE] = ACTIONS(1299), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [sym_keyword] = ACTIONS(1093), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [249] = { - [sym__expression] = STATE(3293), - [sym_block] = STATE(3293), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3293), - [sym_nil] = STATE(3293), - [sym__atom] = STATE(3293), - [sym_quoted_atom] = STATE(3293), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3293), - [sym_charlist] = STATE(3293), - [sym_sigil] = STATE(3293), - [sym__keywords_with_trailing_separator] = STATE(4964), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3293), - [sym_tuple] = STATE(3293), - [sym_bitstring] = STATE(3293), - [sym_map] = STATE(3293), - [sym_unary_operator] = STATE(3293), - [sym_binary_operator] = STATE(3293), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3293), - [sym_call] = STATE(3293), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym__call_arguments_with_trailing_separator] = STATE(4964), - [sym_access_call] = STATE(3293), - [sym_anonymous_function] = STATE(3293), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [anon_sym_RPAREN] = ACTIONS(1301), + [anon_sym_RPAREN] = ACTIONS(1299), [aux_sym_identifier_token1] = ACTIONS(826), [anon_sym_DOT_DOT_DOT] = ACTIONS(826), [sym_unused_identifier] = ACTIONS(1069), @@ -57569,50 +58075,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(1109), }, - [250] = { - [sym__expression] = STATE(3005), - [sym_block] = STATE(3005), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3005), - [sym_nil] = STATE(3005), - [sym__atom] = STATE(3005), - [sym_quoted_atom] = STATE(3005), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3005), - [sym_charlist] = STATE(3005), - [sym_sigil] = STATE(3005), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3005), - [sym_tuple] = STATE(3005), - [sym_bitstring] = STATE(3005), - [sym_map] = STATE(3005), - [sym__items_with_trailing_separator] = STATE(5060), - [sym_unary_operator] = STATE(3005), - [sym_binary_operator] = STATE(3005), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3005), - [sym_call] = STATE(3005), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3005), - [sym_anonymous_function] = STATE(3005), + [249] = { + [sym__expression] = STATE(3647), + [sym_block] = STATE(3647), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3647), + [sym_nil] = STATE(3647), + [sym__atom] = STATE(3647), + [sym_quoted_atom] = STATE(3647), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3647), + [sym_charlist] = STATE(3647), + [sym_sigil] = STATE(3647), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3647), + [sym_tuple] = STATE(3647), + [sym_bitstring] = STATE(3647), + [sym_map] = STATE(3647), + [sym__items_with_trailing_separator] = STATE(5653), + [sym_unary_operator] = STATE(3647), + [sym_binary_operator] = STATE(3647), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3647), + [sym_call] = STATE(3647), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3647), + [sym_anonymous_function] = STATE(3647), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), [aux_sym_identifier_token1] = ACTIONS(826), @@ -57636,7 +58142,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_RBRACE] = ACTIONS(1303), + [anon_sym_RBRACE] = ACTIONS(1301), [anon_sym_LBRACK] = ACTIONS(1089), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), @@ -57701,50 +58207,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(1109), }, + [250] = { + [sym__expression] = STATE(3729), + [sym_block] = STATE(3729), + [sym__identifier] = STATE(66), + [sym_identifier] = STATE(66), + [sym_special_identifier] = STATE(66), + [sym_boolean] = STATE(3729), + [sym_nil] = STATE(3729), + [sym__atom] = STATE(3729), + [sym_quoted_atom] = STATE(3729), + [sym__quoted_i_double] = STATE(3826), + [sym__quoted_i_single] = STATE(3829), + [sym__quoted_i_heredoc_single] = STATE(4077), + [sym__quoted_i_heredoc_double] = STATE(4083), + [sym_string] = STATE(3729), + [sym_charlist] = STATE(3729), + [sym_sigil] = STATE(3729), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5442), + [sym__keyword] = STATE(759), + [sym_quoted_keyword] = STATE(759), + [sym_list] = STATE(3729), + [sym_tuple] = STATE(3729), + [sym_bitstring] = STATE(3729), + [sym_map] = STATE(3729), + [sym__items_with_trailing_separator] = STATE(5657), + [sym_unary_operator] = STATE(3729), + [sym_binary_operator] = STATE(3729), + [sym_operator_identifier] = STATE(5580), + [sym_dot] = STATE(3729), + [sym_call] = STATE(3729), + [sym__call_without_parentheses] = STATE(4089), + [sym__call_with_parentheses] = STATE(4092), + [sym__local_call_without_parentheses] = STATE(4097), + [sym__local_call_with_parentheses] = STATE(3372), + [sym__local_call_just_do_block] = STATE(4098), + [sym__remote_call_without_parentheses] = STATE(4105), + [sym__remote_call_with_parentheses] = STATE(3374), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3375), + [sym__anonymous_dot] = STATE(5531), + [sym__double_call] = STATE(4106), + [sym_access_call] = STATE(3729), + [sym_anonymous_function] = STATE(3729), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1133), + [aux_sym_identifier_token1] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1135), + [sym_unused_identifier] = ACTIONS(1137), + [anon_sym___MODULE__] = ACTIONS(1139), + [anon_sym___DIR__] = ACTIONS(1139), + [anon_sym___ENV__] = ACTIONS(1139), + [anon_sym___CALLER__] = ACTIONS(1139), + [anon_sym___STACKTRACE__] = ACTIONS(1139), + [sym_alias] = ACTIONS(1141), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1141), + [sym_char] = ACTIONS(1141), + [anon_sym_true] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [anon_sym_nil] = ACTIONS(1145), + [sym_atom] = ACTIONS(1141), + [anon_sym_DQUOTE] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1151), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1157), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1159), + [sym_keyword] = ACTIONS(1161), + [anon_sym_LT_LT] = ACTIONS(1163), + [anon_sym_GT_GT] = ACTIONS(1303), + [anon_sym_PERCENT] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_AT] = ACTIONS(1173), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1175), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1177), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1179), + }, [251] = { - [sym__expression] = STATE(3005), - [sym_block] = STATE(3005), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3005), - [sym_nil] = STATE(3005), - [sym__atom] = STATE(3005), - [sym_quoted_atom] = STATE(3005), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3005), - [sym_charlist] = STATE(3005), - [sym_sigil] = STATE(3005), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3005), - [sym_tuple] = STATE(3005), - [sym_bitstring] = STATE(3005), - [sym_map] = STATE(3005), - [sym__items_with_trailing_separator] = STATE(4991), - [sym_unary_operator] = STATE(3005), - [sym_binary_operator] = STATE(3005), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3005), - [sym_call] = STATE(3005), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3005), - [sym_anonymous_function] = STATE(3005), + [sym__expression] = STATE(3647), + [sym_block] = STATE(3647), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3647), + [sym_nil] = STATE(3647), + [sym__atom] = STATE(3647), + [sym_quoted_atom] = STATE(3647), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3647), + [sym_charlist] = STATE(3647), + [sym_sigil] = STATE(3647), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3647), + [sym_tuple] = STATE(3647), + [sym_bitstring] = STATE(3647), + [sym_map] = STATE(3647), + [sym__items_with_trailing_separator] = STATE(5645), + [sym_unary_operator] = STATE(3647), + [sym_binary_operator] = STATE(3647), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3647), + [sym_call] = STATE(3647), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3647), + [sym_anonymous_function] = STATE(3647), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), [aux_sym_identifier_token1] = ACTIONS(826), @@ -57768,8 +58406,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_RBRACE] = ACTIONS(1305), [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_RBRACK] = ACTIONS(1305), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), @@ -57834,49 +58472,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1109), }, [252] = { - [sym__expression] = STATE(3293), - [sym_block] = STATE(3293), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3293), - [sym_nil] = STATE(3293), - [sym__atom] = STATE(3293), - [sym_quoted_atom] = STATE(3293), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3293), - [sym_charlist] = STATE(3293), - [sym_sigil] = STATE(3293), - [sym__keywords_with_trailing_separator] = STATE(5053), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3293), - [sym_tuple] = STATE(3293), - [sym_bitstring] = STATE(3293), - [sym_map] = STATE(3293), - [sym_unary_operator] = STATE(3293), - [sym_binary_operator] = STATE(3293), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3293), - [sym_call] = STATE(3293), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym__call_arguments_with_trailing_separator] = STATE(5053), - [sym_access_call] = STATE(3293), - [sym_anonymous_function] = STATE(3293), + [sym__expression] = STATE(3955), + [sym_block] = STATE(3955), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3955), + [sym_nil] = STATE(3955), + [sym__atom] = STATE(3955), + [sym_quoted_atom] = STATE(3955), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3955), + [sym_charlist] = STATE(3955), + [sym_sigil] = STATE(3955), + [sym__keywords_with_trailing_separator] = STATE(5639), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3955), + [sym_tuple] = STATE(3955), + [sym_bitstring] = STATE(3955), + [sym_map] = STATE(3955), + [sym_unary_operator] = STATE(3955), + [sym_binary_operator] = STATE(3955), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3955), + [sym_call] = STATE(3955), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym__call_arguments_with_trailing_separator] = STATE(5639), + [sym_access_call] = STATE(3955), + [sym_anonymous_function] = STATE(3955), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), [anon_sym_RPAREN] = ACTIONS(1307), @@ -57966,90 +58604,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1109), }, [253] = { - [sym__expression] = STATE(3241), - [sym_block] = STATE(3241), - [sym__identifier] = STATE(72), - [sym_identifier] = STATE(72), - [sym_special_identifier] = STATE(72), - [sym_boolean] = STATE(3241), - [sym_nil] = STATE(3241), - [sym__atom] = STATE(3241), - [sym_quoted_atom] = STATE(3241), - [sym__quoted_i_double] = STATE(3250), - [sym__quoted_i_single] = STATE(3251), - [sym__quoted_i_heredoc_single] = STATE(3518), - [sym__quoted_i_heredoc_double] = STATE(3516), - [sym_string] = STATE(3241), - [sym_charlist] = STATE(3241), - [sym_sigil] = STATE(3241), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4833), - [sym__keyword] = STATE(613), - [sym_quoted_keyword] = STATE(613), - [sym_list] = STATE(3241), - [sym_tuple] = STATE(3241), - [sym_bitstring] = STATE(3241), - [sym_map] = STATE(3241), - [sym__items_with_trailing_separator] = STATE(5041), - [sym_unary_operator] = STATE(3241), - [sym_binary_operator] = STATE(3241), - [sym_operator_identifier] = STATE(4972), - [sym_dot] = STATE(3241), - [sym_call] = STATE(3241), - [sym__call_without_parentheses] = STATE(3517), - [sym__call_with_parentheses] = STATE(3515), - [sym__local_call_without_parentheses] = STATE(3511), - [sym__local_call_with_parentheses] = STATE(3073), - [sym__local_call_just_do_block] = STATE(3510), - [sym__remote_call_without_parentheses] = STATE(3514), - [sym__remote_call_with_parentheses] = STATE(3088), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(3095), - [sym__anonymous_dot] = STATE(4928), - [sym__double_call] = STATE(3499), - [sym_access_call] = STATE(3241), - [sym_anonymous_function] = STATE(3241), + [sym__expression] = STATE(3729), + [sym_block] = STATE(3729), + [sym__identifier] = STATE(66), + [sym_identifier] = STATE(66), + [sym_special_identifier] = STATE(66), + [sym_boolean] = STATE(3729), + [sym_nil] = STATE(3729), + [sym__atom] = STATE(3729), + [sym_quoted_atom] = STATE(3729), + [sym__quoted_i_double] = STATE(3826), + [sym__quoted_i_single] = STATE(3829), + [sym__quoted_i_heredoc_single] = STATE(4077), + [sym__quoted_i_heredoc_double] = STATE(4083), + [sym_string] = STATE(3729), + [sym_charlist] = STATE(3729), + [sym_sigil] = STATE(3729), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5442), + [sym__keyword] = STATE(759), + [sym_quoted_keyword] = STATE(759), + [sym_list] = STATE(3729), + [sym_tuple] = STATE(3729), + [sym_bitstring] = STATE(3729), + [sym_map] = STATE(3729), + [sym__items_with_trailing_separator] = STATE(5592), + [sym_unary_operator] = STATE(3729), + [sym_binary_operator] = STATE(3729), + [sym_operator_identifier] = STATE(5580), + [sym_dot] = STATE(3729), + [sym_call] = STATE(3729), + [sym__call_without_parentheses] = STATE(4089), + [sym__call_with_parentheses] = STATE(4092), + [sym__local_call_without_parentheses] = STATE(4097), + [sym__local_call_with_parentheses] = STATE(3372), + [sym__local_call_just_do_block] = STATE(4098), + [sym__remote_call_without_parentheses] = STATE(4105), + [sym__remote_call_with_parentheses] = STATE(3374), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3375), + [sym__anonymous_dot] = STATE(5531), + [sym__double_call] = STATE(4106), + [sym_access_call] = STATE(3729), + [sym_anonymous_function] = STATE(3729), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1123), - [aux_sym_identifier_token1] = ACTIONS(1125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1125), - [sym_unused_identifier] = ACTIONS(1127), - [anon_sym___MODULE__] = ACTIONS(1129), - [anon_sym___DIR__] = ACTIONS(1129), - [anon_sym___ENV__] = ACTIONS(1129), - [anon_sym___CALLER__] = ACTIONS(1129), - [anon_sym___STACKTRACE__] = ACTIONS(1129), - [sym_alias] = ACTIONS(1131), - [sym_integer] = ACTIONS(1131), - [sym_float] = ACTIONS(1131), - [sym_char] = ACTIONS(1131), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_nil] = ACTIONS(1135), - [sym_atom] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1133), + [aux_sym_identifier_token1] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1135), + [sym_unused_identifier] = ACTIONS(1137), + [anon_sym___MODULE__] = ACTIONS(1139), + [anon_sym___DIR__] = ACTIONS(1139), + [anon_sym___ENV__] = ACTIONS(1139), + [anon_sym___CALLER__] = ACTIONS(1139), + [anon_sym___STACKTRACE__] = ACTIONS(1139), + [sym_alias] = ACTIONS(1141), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1141), + [sym_char] = ACTIONS(1141), + [anon_sym_true] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [anon_sym_nil] = ACTIONS(1145), + [sym_atom] = ACTIONS(1141), + [anon_sym_DQUOTE] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1151), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1157), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1149), - [sym_keyword] = ACTIONS(1151), - [anon_sym_LT_LT] = ACTIONS(1153), + [anon_sym_TILDE] = ACTIONS(1159), + [sym_keyword] = ACTIONS(1161), + [anon_sym_LT_LT] = ACTIONS(1163), [anon_sym_GT_GT] = ACTIONS(1309), - [anon_sym_PERCENT] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1161), - [anon_sym_not] = ACTIONS(1161), - [anon_sym_AT] = ACTIONS(1163), + [anon_sym_PERCENT] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_AT] = ACTIONS(1173), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -58089,99 +58727,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1165), + [anon_sym_fn] = ACTIONS(1175), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1167), + [sym__before_unary_op] = ACTIONS(1177), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1169), + [sym__quoted_atom_start] = ACTIONS(1179), }, [254] = { - [sym__expression] = STATE(3005), - [sym_block] = STATE(3005), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3005), - [sym_nil] = STATE(3005), - [sym__atom] = STATE(3005), - [sym_quoted_atom] = STATE(3005), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3005), - [sym_charlist] = STATE(3005), - [sym_sigil] = STATE(3005), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3005), - [sym_tuple] = STATE(3005), - [sym_bitstring] = STATE(3005), - [sym_map] = STATE(3005), - [sym__items_with_trailing_separator] = STATE(4992), - [sym_unary_operator] = STATE(3005), - [sym_binary_operator] = STATE(3005), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3005), - [sym_call] = STATE(3005), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3005), - [sym_anonymous_function] = STATE(3005), + [sym__expression] = STATE(3729), + [sym_block] = STATE(3729), + [sym__identifier] = STATE(66), + [sym_identifier] = STATE(66), + [sym_special_identifier] = STATE(66), + [sym_boolean] = STATE(3729), + [sym_nil] = STATE(3729), + [sym__atom] = STATE(3729), + [sym_quoted_atom] = STATE(3729), + [sym__quoted_i_double] = STATE(3826), + [sym__quoted_i_single] = STATE(3829), + [sym__quoted_i_heredoc_single] = STATE(4077), + [sym__quoted_i_heredoc_double] = STATE(4083), + [sym_string] = STATE(3729), + [sym_charlist] = STATE(3729), + [sym_sigil] = STATE(3729), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5442), + [sym__keyword] = STATE(759), + [sym_quoted_keyword] = STATE(759), + [sym_list] = STATE(3729), + [sym_tuple] = STATE(3729), + [sym_bitstring] = STATE(3729), + [sym_map] = STATE(3729), + [sym__items_with_trailing_separator] = STATE(5573), + [sym_unary_operator] = STATE(3729), + [sym_binary_operator] = STATE(3729), + [sym_operator_identifier] = STATE(5580), + [sym_dot] = STATE(3729), + [sym_call] = STATE(3729), + [sym__call_without_parentheses] = STATE(4089), + [sym__call_with_parentheses] = STATE(4092), + [sym__local_call_without_parentheses] = STATE(4097), + [sym__local_call_with_parentheses] = STATE(3372), + [sym__local_call_just_do_block] = STATE(4098), + [sym__remote_call_without_parentheses] = STATE(4105), + [sym__remote_call_with_parentheses] = STATE(3374), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3375), + [sym__anonymous_dot] = STATE(5531), + [sym__double_call] = STATE(4106), + [sym_access_call] = STATE(3729), + [sym_anonymous_function] = STATE(3729), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1071), - [sym_integer] = ACTIONS(1071), - [sym_float] = ACTIONS(1071), - [sym_char] = ACTIONS(1071), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1071), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_RBRACK] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1133), + [aux_sym_identifier_token1] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1135), + [sym_unused_identifier] = ACTIONS(1137), + [anon_sym___MODULE__] = ACTIONS(1139), + [anon_sym___DIR__] = ACTIONS(1139), + [anon_sym___ENV__] = ACTIONS(1139), + [anon_sym___CALLER__] = ACTIONS(1139), + [anon_sym___STACKTRACE__] = ACTIONS(1139), + [sym_alias] = ACTIONS(1141), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1141), + [sym_char] = ACTIONS(1141), + [anon_sym_true] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [anon_sym_nil] = ACTIONS(1145), + [sym_atom] = ACTIONS(1141), + [anon_sym_DQUOTE] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1151), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1157), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [sym_keyword] = ACTIONS(1093), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), + [anon_sym_TILDE] = ACTIONS(1159), + [sym_keyword] = ACTIONS(1161), + [anon_sym_LT_LT] = ACTIONS(1163), + [anon_sym_GT_GT] = ACTIONS(1311), + [anon_sym_PERCENT] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_AT] = ACTIONS(1173), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -58221,58 +58859,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), + [anon_sym_fn] = ACTIONS(1175), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), + [sym__before_unary_op] = ACTIONS(1177), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), + [sym__quoted_atom_start] = ACTIONS(1179), }, [255] = { - [sym__expression] = STATE(3005), - [sym_block] = STATE(3005), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3005), - [sym_nil] = STATE(3005), - [sym__atom] = STATE(3005), - [sym_quoted_atom] = STATE(3005), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3005), - [sym_charlist] = STATE(3005), - [sym_sigil] = STATE(3005), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3005), - [sym_tuple] = STATE(3005), - [sym_bitstring] = STATE(3005), - [sym_map] = STATE(3005), - [sym__items_with_trailing_separator] = STATE(5043), - [sym_unary_operator] = STATE(3005), - [sym_binary_operator] = STATE(3005), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3005), - [sym_call] = STATE(3005), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3005), - [sym_anonymous_function] = STATE(3005), + [sym__expression] = STATE(3647), + [sym_block] = STATE(3647), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3647), + [sym_nil] = STATE(3647), + [sym__atom] = STATE(3647), + [sym_quoted_atom] = STATE(3647), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3647), + [sym_charlist] = STATE(3647), + [sym_sigil] = STATE(3647), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3647), + [sym_tuple] = STATE(3647), + [sym_bitstring] = STATE(3647), + [sym_map] = STATE(3647), + [sym__items_with_trailing_separator] = STATE(5599), + [sym_unary_operator] = STATE(3647), + [sym_binary_operator] = STATE(3647), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3647), + [sym_call] = STATE(3647), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3647), + [sym_anonymous_function] = STATE(3647), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), [aux_sym_identifier_token1] = ACTIONS(826), @@ -58362,49 +59000,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1109), }, [256] = { - [sym__expression] = STATE(3005), - [sym_block] = STATE(3005), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3005), - [sym_nil] = STATE(3005), - [sym__atom] = STATE(3005), - [sym_quoted_atom] = STATE(3005), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3005), - [sym_charlist] = STATE(3005), - [sym_sigil] = STATE(3005), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3005), - [sym_tuple] = STATE(3005), - [sym_bitstring] = STATE(3005), - [sym_map] = STATE(3005), - [sym__items_with_trailing_separator] = STATE(5044), - [sym_unary_operator] = STATE(3005), - [sym_binary_operator] = STATE(3005), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3005), - [sym_call] = STATE(3005), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3005), - [sym_anonymous_function] = STATE(3005), + [sym__expression] = STATE(3647), + [sym_block] = STATE(3647), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3647), + [sym_nil] = STATE(3647), + [sym__atom] = STATE(3647), + [sym_quoted_atom] = STATE(3647), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3647), + [sym_charlist] = STATE(3647), + [sym_sigil] = STATE(3647), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3647), + [sym_tuple] = STATE(3647), + [sym_bitstring] = STATE(3647), + [sym_map] = STATE(3647), + [sym__items_with_trailing_separator] = STATE(5602), + [sym_unary_operator] = STATE(3647), + [sym_binary_operator] = STATE(3647), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3647), + [sym_call] = STATE(3647), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3647), + [sym_anonymous_function] = STATE(3647), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), [aux_sym_identifier_token1] = ACTIONS(826), @@ -58494,90 +59132,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1109), }, [257] = { - [sym__expression] = STATE(3241), - [sym_block] = STATE(3241), - [sym__identifier] = STATE(72), - [sym_identifier] = STATE(72), - [sym_special_identifier] = STATE(72), - [sym_boolean] = STATE(3241), - [sym_nil] = STATE(3241), - [sym__atom] = STATE(3241), - [sym_quoted_atom] = STATE(3241), - [sym__quoted_i_double] = STATE(3250), - [sym__quoted_i_single] = STATE(3251), - [sym__quoted_i_heredoc_single] = STATE(3518), - [sym__quoted_i_heredoc_double] = STATE(3516), - [sym_string] = STATE(3241), - [sym_charlist] = STATE(3241), - [sym_sigil] = STATE(3241), - [sym__keywords_with_trailing_separator] = STATE(4834), - [sym_pair] = STATE(4833), - [sym__keyword] = STATE(613), - [sym_quoted_keyword] = STATE(613), - [sym_list] = STATE(3241), - [sym_tuple] = STATE(3241), - [sym_bitstring] = STATE(3241), - [sym_map] = STATE(3241), - [sym__items_with_trailing_separator] = STATE(4994), - [sym_unary_operator] = STATE(3241), - [sym_binary_operator] = STATE(3241), - [sym_operator_identifier] = STATE(4972), - [sym_dot] = STATE(3241), - [sym_call] = STATE(3241), - [sym__call_without_parentheses] = STATE(3517), - [sym__call_with_parentheses] = STATE(3515), - [sym__local_call_without_parentheses] = STATE(3511), - [sym__local_call_with_parentheses] = STATE(3073), - [sym__local_call_just_do_block] = STATE(3510), - [sym__remote_call_without_parentheses] = STATE(3514), - [sym__remote_call_with_parentheses] = STATE(3088), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(3095), - [sym__anonymous_dot] = STATE(4928), - [sym__double_call] = STATE(3499), - [sym_access_call] = STATE(3241), - [sym_anonymous_function] = STATE(3241), + [sym__expression] = STATE(3729), + [sym_block] = STATE(3729), + [sym__identifier] = STATE(66), + [sym_identifier] = STATE(66), + [sym_special_identifier] = STATE(66), + [sym_boolean] = STATE(3729), + [sym_nil] = STATE(3729), + [sym__atom] = STATE(3729), + [sym_quoted_atom] = STATE(3729), + [sym__quoted_i_double] = STATE(3826), + [sym__quoted_i_single] = STATE(3829), + [sym__quoted_i_heredoc_single] = STATE(4077), + [sym__quoted_i_heredoc_double] = STATE(4083), + [sym_string] = STATE(3729), + [sym_charlist] = STATE(3729), + [sym_sigil] = STATE(3729), + [sym__keywords_with_trailing_separator] = STATE(5448), + [sym_pair] = STATE(5442), + [sym__keyword] = STATE(759), + [sym_quoted_keyword] = STATE(759), + [sym_list] = STATE(3729), + [sym_tuple] = STATE(3729), + [sym_bitstring] = STATE(3729), + [sym_map] = STATE(3729), + [sym__items_with_trailing_separator] = STATE(5579), + [sym_unary_operator] = STATE(3729), + [sym_binary_operator] = STATE(3729), + [sym_operator_identifier] = STATE(5580), + [sym_dot] = STATE(3729), + [sym_call] = STATE(3729), + [sym__call_without_parentheses] = STATE(4089), + [sym__call_with_parentheses] = STATE(4092), + [sym__local_call_without_parentheses] = STATE(4097), + [sym__local_call_with_parentheses] = STATE(3372), + [sym__local_call_just_do_block] = STATE(4098), + [sym__remote_call_without_parentheses] = STATE(4105), + [sym__remote_call_with_parentheses] = STATE(3374), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3375), + [sym__anonymous_dot] = STATE(5531), + [sym__double_call] = STATE(4106), + [sym_access_call] = STATE(3729), + [sym_anonymous_function] = STATE(3729), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1123), - [aux_sym_identifier_token1] = ACTIONS(1125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1125), - [sym_unused_identifier] = ACTIONS(1127), - [anon_sym___MODULE__] = ACTIONS(1129), - [anon_sym___DIR__] = ACTIONS(1129), - [anon_sym___ENV__] = ACTIONS(1129), - [anon_sym___CALLER__] = ACTIONS(1129), - [anon_sym___STACKTRACE__] = ACTIONS(1129), - [sym_alias] = ACTIONS(1131), - [sym_integer] = ACTIONS(1131), - [sym_float] = ACTIONS(1131), - [sym_char] = ACTIONS(1131), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_nil] = ACTIONS(1135), - [sym_atom] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1133), + [aux_sym_identifier_token1] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1135), + [sym_unused_identifier] = ACTIONS(1137), + [anon_sym___MODULE__] = ACTIONS(1139), + [anon_sym___DIR__] = ACTIONS(1139), + [anon_sym___ENV__] = ACTIONS(1139), + [anon_sym___CALLER__] = ACTIONS(1139), + [anon_sym___STACKTRACE__] = ACTIONS(1139), + [sym_alias] = ACTIONS(1141), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1141), + [sym_char] = ACTIONS(1141), + [anon_sym_true] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [anon_sym_nil] = ACTIONS(1145), + [sym_atom] = ACTIONS(1141), + [anon_sym_DQUOTE] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1151), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1157), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1149), - [sym_keyword] = ACTIONS(1151), - [anon_sym_LT_LT] = ACTIONS(1153), + [anon_sym_TILDE] = ACTIONS(1159), + [sym_keyword] = ACTIONS(1161), + [anon_sym_LT_LT] = ACTIONS(1163), [anon_sym_GT_GT] = ACTIONS(1317), - [anon_sym_PERCENT] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1161), - [anon_sym_not] = ACTIONS(1161), - [anon_sym_AT] = ACTIONS(1163), + [anon_sym_PERCENT] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_AT] = ACTIONS(1173), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -58617,98 +59255,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1165), + [anon_sym_fn] = ACTIONS(1175), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1167), + [sym__before_unary_op] = ACTIONS(1177), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1169), + [sym__quoted_atom_start] = ACTIONS(1179), }, [258] = { - [sym__expression] = STATE(3497), - [sym_block] = STATE(3497), - [sym__identifier] = STATE(72), - [sym_identifier] = STATE(72), - [sym_special_identifier] = STATE(72), - [sym_boolean] = STATE(3497), - [sym_nil] = STATE(3497), - [sym__atom] = STATE(3497), - [sym_quoted_atom] = STATE(3497), - [sym__quoted_i_double] = STATE(3250), - [sym__quoted_i_single] = STATE(3251), - [sym__quoted_i_heredoc_single] = STATE(3518), - [sym__quoted_i_heredoc_double] = STATE(3516), - [sym_string] = STATE(3497), - [sym_charlist] = STATE(3497), - [sym_sigil] = STATE(3497), - [sym__keywords_with_trailing_separator] = STATE(4831), - [sym_pair] = STATE(4833), - [sym__keyword] = STATE(613), - [sym_quoted_keyword] = STATE(613), - [sym_list] = STATE(3497), - [sym_tuple] = STATE(3497), - [sym_bitstring] = STATE(3497), - [sym_map] = STATE(3497), - [sym_unary_operator] = STATE(3497), - [sym_binary_operator] = STATE(3497), - [sym_operator_identifier] = STATE(4972), - [sym_dot] = STATE(3497), - [sym_call] = STATE(3497), - [sym__call_without_parentheses] = STATE(3517), - [sym__call_with_parentheses] = STATE(3515), - [sym__local_call_without_parentheses] = STATE(3511), - [sym__local_call_with_parentheses] = STATE(3073), - [sym__local_call_just_do_block] = STATE(3510), - [sym__remote_call_without_parentheses] = STATE(3514), - [sym__remote_call_with_parentheses] = STATE(3088), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(3095), - [sym__anonymous_dot] = STATE(4928), - [sym__double_call] = STATE(3499), - [sym_access_call] = STATE(3497), - [sym_anonymous_function] = STATE(3497), + [sym__expression] = STATE(4041), + [sym_block] = STATE(4041), + [sym__identifier] = STATE(66), + [sym_identifier] = STATE(66), + [sym_special_identifier] = STATE(66), + [sym_boolean] = STATE(4041), + [sym_nil] = STATE(4041), + [sym__atom] = STATE(4041), + [sym_quoted_atom] = STATE(4041), + [sym__quoted_i_double] = STATE(3826), + [sym__quoted_i_single] = STATE(3829), + [sym__quoted_i_heredoc_single] = STATE(4077), + [sym__quoted_i_heredoc_double] = STATE(4083), + [sym_string] = STATE(4041), + [sym_charlist] = STATE(4041), + [sym_sigil] = STATE(4041), + [sym__keywords_with_trailing_separator] = STATE(5450), + [sym_pair] = STATE(5442), + [sym__keyword] = STATE(759), + [sym_quoted_keyword] = STATE(759), + [sym_list] = STATE(4041), + [sym_tuple] = STATE(4041), + [sym_bitstring] = STATE(4041), + [sym_map] = STATE(4041), + [sym_unary_operator] = STATE(4041), + [sym_binary_operator] = STATE(4041), + [sym_operator_identifier] = STATE(5580), + [sym_dot] = STATE(4041), + [sym_call] = STATE(4041), + [sym__call_without_parentheses] = STATE(4089), + [sym__call_with_parentheses] = STATE(4092), + [sym__local_call_without_parentheses] = STATE(4097), + [sym__local_call_with_parentheses] = STATE(3372), + [sym__local_call_just_do_block] = STATE(4098), + [sym__remote_call_without_parentheses] = STATE(4105), + [sym__remote_call_with_parentheses] = STATE(3374), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3375), + [sym__anonymous_dot] = STATE(5531), + [sym__double_call] = STATE(4106), + [sym_access_call] = STATE(4041), + [sym_anonymous_function] = STATE(4041), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1123), - [aux_sym_identifier_token1] = ACTIONS(1125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1125), - [sym_unused_identifier] = ACTIONS(1127), - [anon_sym___MODULE__] = ACTIONS(1129), - [anon_sym___DIR__] = ACTIONS(1129), - [anon_sym___ENV__] = ACTIONS(1129), - [anon_sym___CALLER__] = ACTIONS(1129), - [anon_sym___STACKTRACE__] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(1133), + [aux_sym_identifier_token1] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1135), + [sym_unused_identifier] = ACTIONS(1137), + [anon_sym___MODULE__] = ACTIONS(1139), + [anon_sym___DIR__] = ACTIONS(1139), + [anon_sym___ENV__] = ACTIONS(1139), + [anon_sym___CALLER__] = ACTIONS(1139), + [anon_sym___STACKTRACE__] = ACTIONS(1139), [sym_alias] = ACTIONS(1319), [sym_integer] = ACTIONS(1319), [sym_float] = ACTIONS(1319), [sym_char] = ACTIONS(1319), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_nil] = ACTIONS(1135), + [anon_sym_true] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [anon_sym_nil] = ACTIONS(1145), [sym_atom] = ACTIONS(1319), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(1147), + [anon_sym_DQUOTE] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1151), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1157), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1149), - [sym_keyword] = ACTIONS(1151), - [anon_sym_LT_LT] = ACTIONS(1153), - [anon_sym_GT_GT] = ACTIONS(1241), - [anon_sym_PERCENT] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1161), - [anon_sym_not] = ACTIONS(1161), - [anon_sym_AT] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1159), + [sym_keyword] = ACTIONS(1161), + [anon_sym_LT_LT] = ACTIONS(1163), + [anon_sym_GT_GT] = ACTIONS(1121), + [anon_sym_PERCENT] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_AT] = ACTIONS(1173), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -58748,53 +59386,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1165), + [anon_sym_fn] = ACTIONS(1175), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1167), + [sym__before_unary_op] = ACTIONS(1177), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1169), + [sym__quoted_atom_start] = ACTIONS(1179), }, [259] = { - [sym__expression] = STATE(2022), - [sym_block] = STATE(2022), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2022), - [sym_nil] = STATE(2022), - [sym__atom] = STATE(2022), - [sym_quoted_atom] = STATE(2022), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2022), - [sym_charlist] = STATE(2022), - [sym_sigil] = STATE(2022), - [sym_list] = STATE(2022), - [sym_tuple] = STATE(2022), - [sym_bitstring] = STATE(2022), - [sym_map] = STATE(2022), - [sym_unary_operator] = STATE(2022), - [sym_binary_operator] = STATE(2022), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2022), - [sym_call] = STATE(2022), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [sym__expression] = STATE(2633), + [sym_block] = STATE(2633), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2633), + [sym_nil] = STATE(2633), + [sym__atom] = STATE(2633), + [sym_quoted_atom] = STATE(2633), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2633), + [sym_charlist] = STATE(2633), + [sym_sigil] = STATE(2633), + [sym_list] = STATE(2633), + [sym_tuple] = STATE(2633), + [sym_bitstring] = STATE(2633), + [sym_map] = STATE(2633), + [sym_unary_operator] = STATE(2633), + [sym_binary_operator] = STATE(2633), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2633), + [sym_call] = STATE(2633), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(2022), - [sym_anonymous_function] = STATE(2022), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(2633), + [sym_anonymous_function] = STATE(2633), [aux_sym__terminator_token1] = ACTIONS(1321), [anon_sym_SEMI] = ACTIONS(1323), [anon_sym_LPAREN] = ACTIONS(942), @@ -58888,44 +59526,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(982), }, [260] = { - [sym__expression] = STATE(2022), - [sym_block] = STATE(2022), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2022), - [sym_nil] = STATE(2022), - [sym__atom] = STATE(2022), - [sym_quoted_atom] = STATE(2022), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2022), - [sym_charlist] = STATE(2022), - [sym_sigil] = STATE(2022), - [sym_list] = STATE(2022), - [sym_tuple] = STATE(2022), - [sym_bitstring] = STATE(2022), - [sym_map] = STATE(2022), - [sym_unary_operator] = STATE(2022), - [sym_binary_operator] = STATE(2022), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2022), - [sym_call] = STATE(2022), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [sym__expression] = STATE(4041), + [sym_block] = STATE(4041), + [sym__identifier] = STATE(66), + [sym_identifier] = STATE(66), + [sym_special_identifier] = STATE(66), + [sym_boolean] = STATE(4041), + [sym_nil] = STATE(4041), + [sym__atom] = STATE(4041), + [sym_quoted_atom] = STATE(4041), + [sym__quoted_i_double] = STATE(3826), + [sym__quoted_i_single] = STATE(3829), + [sym__quoted_i_heredoc_single] = STATE(4077), + [sym__quoted_i_heredoc_double] = STATE(4083), + [sym_string] = STATE(4041), + [sym_charlist] = STATE(4041), + [sym_sigil] = STATE(4041), + [sym__keywords_with_trailing_separator] = STATE(5447), + [sym_pair] = STATE(5442), + [sym__keyword] = STATE(759), + [sym_quoted_keyword] = STATE(759), + [sym_list] = STATE(4041), + [sym_tuple] = STATE(4041), + [sym_bitstring] = STATE(4041), + [sym_map] = STATE(4041), + [sym_unary_operator] = STATE(4041), + [sym_binary_operator] = STATE(4041), + [sym_operator_identifier] = STATE(5580), + [sym_dot] = STATE(4041), + [sym_call] = STATE(4041), + [sym__call_without_parentheses] = STATE(4089), + [sym__call_with_parentheses] = STATE(4092), + [sym__local_call_without_parentheses] = STATE(4097), + [sym__local_call_with_parentheses] = STATE(3372), + [sym__local_call_just_do_block] = STATE(4098), + [sym__remote_call_without_parentheses] = STATE(4105), + [sym__remote_call_with_parentheses] = STATE(3374), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3375), + [sym__anonymous_dot] = STATE(5531), + [sym__double_call] = STATE(4106), + [sym_access_call] = STATE(4041), + [sym_anonymous_function] = STATE(4041), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1133), + [aux_sym_identifier_token1] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1135), + [sym_unused_identifier] = ACTIONS(1137), + [anon_sym___MODULE__] = ACTIONS(1139), + [anon_sym___DIR__] = ACTIONS(1139), + [anon_sym___ENV__] = ACTIONS(1139), + [anon_sym___CALLER__] = ACTIONS(1139), + [anon_sym___STACKTRACE__] = ACTIONS(1139), + [sym_alias] = ACTIONS(1319), + [sym_integer] = ACTIONS(1319), + [sym_float] = ACTIONS(1319), + [sym_char] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [anon_sym_nil] = ACTIONS(1145), + [sym_atom] = ACTIONS(1319), + [anon_sym_DQUOTE] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1151), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1157), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1159), + [sym_keyword] = ACTIONS(1161), + [anon_sym_LT_LT] = ACTIONS(1163), + [anon_sym_GT_GT] = ACTIONS(1123), + [anon_sym_PERCENT] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_AT] = ACTIONS(1173), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1175), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1177), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1179), + }, + [261] = { + [sym__expression] = STATE(2633), + [sym_block] = STATE(2633), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2633), + [sym_nil] = STATE(2633), + [sym__atom] = STATE(2633), + [sym_quoted_atom] = STATE(2633), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2633), + [sym_charlist] = STATE(2633), + [sym_sigil] = STATE(2633), + [sym_list] = STATE(2633), + [sym_tuple] = STATE(2633), + [sym_bitstring] = STATE(2633), + [sym_map] = STATE(2633), + [sym_unary_operator] = STATE(2633), + [sym_binary_operator] = STATE(2633), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2633), + [sym_call] = STATE(2633), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(2022), - [sym_anonymous_function] = STATE(2022), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(2633), + [sym_anonymous_function] = STATE(2633), [aux_sym__terminator_token1] = ACTIONS(1327), [anon_sym_SEMI] = ACTIONS(1329), [anon_sym_LPAREN] = ACTIONS(942), @@ -59018,176 +59787,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(982), }, - [261] = { - [sym__expression] = STATE(3497), - [sym_block] = STATE(3497), - [sym__identifier] = STATE(72), - [sym_identifier] = STATE(72), - [sym_special_identifier] = STATE(72), - [sym_boolean] = STATE(3497), - [sym_nil] = STATE(3497), - [sym__atom] = STATE(3497), - [sym_quoted_atom] = STATE(3497), - [sym__quoted_i_double] = STATE(3250), - [sym__quoted_i_single] = STATE(3251), - [sym__quoted_i_heredoc_single] = STATE(3518), - [sym__quoted_i_heredoc_double] = STATE(3516), - [sym_string] = STATE(3497), - [sym_charlist] = STATE(3497), - [sym_sigil] = STATE(3497), - [sym__keywords_with_trailing_separator] = STATE(4840), - [sym_pair] = STATE(4833), - [sym__keyword] = STATE(613), - [sym_quoted_keyword] = STATE(613), - [sym_list] = STATE(3497), - [sym_tuple] = STATE(3497), - [sym_bitstring] = STATE(3497), - [sym_map] = STATE(3497), - [sym_unary_operator] = STATE(3497), - [sym_binary_operator] = STATE(3497), - [sym_operator_identifier] = STATE(4972), - [sym_dot] = STATE(3497), - [sym_call] = STATE(3497), - [sym__call_without_parentheses] = STATE(3517), - [sym__call_with_parentheses] = STATE(3515), - [sym__local_call_without_parentheses] = STATE(3511), - [sym__local_call_with_parentheses] = STATE(3073), - [sym__local_call_just_do_block] = STATE(3510), - [sym__remote_call_without_parentheses] = STATE(3514), - [sym__remote_call_with_parentheses] = STATE(3088), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(3095), - [sym__anonymous_dot] = STATE(4928), - [sym__double_call] = STATE(3499), - [sym_access_call] = STATE(3497), - [sym_anonymous_function] = STATE(3497), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1123), - [aux_sym_identifier_token1] = ACTIONS(1125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1125), - [sym_unused_identifier] = ACTIONS(1127), - [anon_sym___MODULE__] = ACTIONS(1129), - [anon_sym___DIR__] = ACTIONS(1129), - [anon_sym___ENV__] = ACTIONS(1129), - [anon_sym___CALLER__] = ACTIONS(1129), - [anon_sym___STACKTRACE__] = ACTIONS(1129), - [sym_alias] = ACTIONS(1319), - [sym_integer] = ACTIONS(1319), - [sym_float] = ACTIONS(1319), - [sym_char] = ACTIONS(1319), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_nil] = ACTIONS(1135), - [sym_atom] = ACTIONS(1319), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(1147), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1149), - [sym_keyword] = ACTIONS(1151), - [anon_sym_LT_LT] = ACTIONS(1153), - [anon_sym_GT_GT] = ACTIONS(1183), - [anon_sym_PERCENT] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1161), - [anon_sym_not] = ACTIONS(1161), - [anon_sym_AT] = ACTIONS(1163), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1165), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1167), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1169), - }, [262] = { - [sym__expression] = STATE(2022), - [sym_block] = STATE(2022), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2022), - [sym_nil] = STATE(2022), - [sym__atom] = STATE(2022), - [sym_quoted_atom] = STATE(2022), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2022), - [sym_charlist] = STATE(2022), - [sym_sigil] = STATE(2022), - [sym_list] = STATE(2022), - [sym_tuple] = STATE(2022), - [sym_bitstring] = STATE(2022), - [sym_map] = STATE(2022), - [sym_unary_operator] = STATE(2022), - [sym_binary_operator] = STATE(2022), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2022), - [sym_call] = STATE(2022), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [sym__expression] = STATE(2633), + [sym_block] = STATE(2633), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2633), + [sym_nil] = STATE(2633), + [sym__atom] = STATE(2633), + [sym_quoted_atom] = STATE(2633), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2633), + [sym_charlist] = STATE(2633), + [sym_sigil] = STATE(2633), + [sym_list] = STATE(2633), + [sym_tuple] = STATE(2633), + [sym_bitstring] = STATE(2633), + [sym_map] = STATE(2633), + [sym_unary_operator] = STATE(2633), + [sym_binary_operator] = STATE(2633), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2633), + [sym_call] = STATE(2633), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(2022), - [sym_anonymous_function] = STATE(2022), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(2633), + [sym_anonymous_function] = STATE(2633), [aux_sym__terminator_token1] = ACTIONS(1331), [anon_sym_SEMI] = ACTIONS(1333), [anon_sym_LPAREN] = ACTIONS(942), @@ -59281,83 +59919,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(982), }, [263] = { - [sym__expression] = STATE(2108), - [sym_block] = STATE(2108), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2108), - [sym_nil] = STATE(2108), - [sym__atom] = STATE(2108), - [sym_quoted_atom] = STATE(2108), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2108), - [sym_charlist] = STATE(2108), - [sym_sigil] = STATE(2108), - [sym_list] = STATE(2108), - [sym_tuple] = STATE(2108), - [sym_bitstring] = STATE(2108), - [sym_map] = STATE(2108), - [sym_unary_operator] = STATE(2108), - [sym_binary_operator] = STATE(2108), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2108), - [sym_call] = STATE(2108), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(2108), - [sym_anonymous_function] = STATE(2108), + [sym__expression] = STATE(2637), + [sym_block] = STATE(2637), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2637), + [sym_nil] = STATE(2637), + [sym__atom] = STATE(2637), + [sym_quoted_atom] = STATE(2637), + [sym__quoted_i_double] = STATE(1096), + [sym__quoted_i_single] = STATE(1095), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(2637), + [sym_charlist] = STATE(2637), + [sym_sigil] = STATE(2637), + [sym_keywords] = STATE(1203), + [sym_pair] = STATE(2110), + [sym__keyword] = STATE(873), + [sym_quoted_keyword] = STATE(873), + [sym_list] = STATE(2637), + [sym_tuple] = STATE(2637), + [sym_bitstring] = STATE(2637), + [sym_map] = STATE(2637), + [sym_unary_operator] = STATE(2637), + [sym_binary_operator] = STATE(2637), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(2637), + [sym_call] = STATE(2637), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(2637), + [sym_anonymous_function] = STATE(2637), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(944), - [anon_sym___MODULE__] = ACTIONS(71), - [anon_sym___DIR__] = ACTIONS(71), - [anon_sym___ENV__] = ACTIONS(71), - [anon_sym___CALLER__] = ACTIONS(71), - [anon_sym___STACKTRACE__] = ACTIONS(71), - [sym_alias] = ACTIONS(946), - [sym_integer] = ACTIONS(946), - [sym_float] = ACTIONS(946), - [sym_char] = ACTIONS(946), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(946), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(461), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), + [sym_alias] = ACTIONS(1335), + [sym_integer] = ACTIONS(1335), + [sym_float] = ACTIONS(1335), + [sym_char] = ACTIONS(1335), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(1335), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(972), - [anon_sym_CARET] = ACTIONS(972), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), - [anon_sym_not] = ACTIONS(972), - [anon_sym_AT] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(467), + [sym_keyword] = ACTIONS(469), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(476), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_CARET] = ACTIONS(476), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(476), + [anon_sym_not] = ACTIONS(476), + [anon_sym_AT] = ACTIONS(478), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -59397,232 +60040,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(1335), - [anon_sym_catch] = ACTIONS(1335), - [anon_sym_else] = ACTIONS(1335), - [anon_sym_end] = ACTIONS(1335), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(1335), + [anon_sym_fn] = ACTIONS(235), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(980), + [sym__before_unary_op] = ACTIONS(480), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), + [sym__quoted_atom_start] = ACTIONS(243), }, [264] = { - [sym__expression] = STATE(2108), - [sym_block] = STATE(2108), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2108), - [sym_nil] = STATE(2108), - [sym__atom] = STATE(2108), - [sym_quoted_atom] = STATE(2108), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2108), - [sym_charlist] = STATE(2108), - [sym_sigil] = STATE(2108), - [sym_list] = STATE(2108), - [sym_tuple] = STATE(2108), - [sym_bitstring] = STATE(2108), - [sym_map] = STATE(2108), - [sym_unary_operator] = STATE(2108), - [sym_binary_operator] = STATE(2108), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2108), - [sym_call] = STATE(2108), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(2108), - [sym_anonymous_function] = STATE(2108), + [sym__expression] = STATE(1899), + [sym_block] = STATE(1899), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1899), + [sym_nil] = STATE(1899), + [sym__atom] = STATE(1899), + [sym_quoted_atom] = STATE(1899), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1899), + [sym_charlist] = STATE(1899), + [sym_sigil] = STATE(1899), + [sym_keywords] = STATE(1703), + [sym_pair] = STATE(1652), + [sym__keyword] = STATE(883), + [sym_quoted_keyword] = STATE(883), + [sym_list] = STATE(1899), + [sym_tuple] = STATE(1899), + [sym_bitstring] = STATE(1899), + [sym_map] = STATE(1899), + [sym_unary_operator] = STATE(1899), + [sym_binary_operator] = STATE(1899), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1899), + [sym_call] = STATE(1899), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1899), + [sym_anonymous_function] = STATE(1899), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(1337), [aux_sym_identifier_token1] = ACTIONS(67), [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(944), + [sym_unused_identifier] = ACTIONS(69), [anon_sym___MODULE__] = ACTIONS(71), [anon_sym___DIR__] = ACTIONS(71), [anon_sym___ENV__] = ACTIONS(71), [anon_sym___CALLER__] = ACTIONS(71), [anon_sym___STACKTRACE__] = ACTIONS(71), - [sym_alias] = ACTIONS(946), - [sym_integer] = ACTIONS(946), - [sym_float] = ACTIONS(946), - [sym_char] = ACTIONS(946), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(946), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(972), - [anon_sym_CARET] = ACTIONS(972), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), - [anon_sym_not] = ACTIONS(972), - [anon_sym_AT] = ACTIONS(974), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(1337), - [anon_sym_catch] = ACTIONS(1337), - [anon_sym_else] = ACTIONS(1337), - [anon_sym_end] = ACTIONS(1337), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(1337), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(980), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [265] = { - [sym__expression] = STATE(2602), - [sym_block] = STATE(2602), - [sym__identifier] = STATE(45), - [sym_identifier] = STATE(45), - [sym_special_identifier] = STATE(45), - [sym_boolean] = STATE(2602), - [sym_nil] = STATE(2602), - [sym__atom] = STATE(2602), - [sym_quoted_atom] = STATE(2602), - [sym__quoted_i_double] = STATE(2235), - [sym__quoted_i_single] = STATE(2189), - [sym__quoted_i_heredoc_single] = STATE(2713), - [sym__quoted_i_heredoc_double] = STATE(2714), - [sym_string] = STATE(2602), - [sym_charlist] = STATE(2602), - [sym_sigil] = STATE(2602), - [sym_keywords] = STATE(2738), - [sym_pair] = STATE(2129), - [sym__keyword] = STATE(726), - [sym_quoted_keyword] = STATE(726), - [sym_list] = STATE(2602), - [sym_tuple] = STATE(2602), - [sym_bitstring] = STATE(2602), - [sym_map] = STATE(2602), - [sym_unary_operator] = STATE(2602), - [sym_binary_operator] = STATE(2602), - [sym_operator_identifier] = STATE(4988), - [sym_dot] = STATE(2602), - [sym_call] = STATE(2602), - [sym__call_without_parentheses] = STATE(2712), - [sym__call_with_parentheses] = STATE(2711), - [sym__local_call_without_parentheses] = STATE(2710), - [sym__local_call_with_parentheses] = STATE(1879), - [sym__local_call_just_do_block] = STATE(2709), - [sym__remote_call_without_parentheses] = STATE(2708), - [sym__remote_call_with_parentheses] = STATE(1859), - [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1919), - [sym__anonymous_dot] = STATE(4871), - [sym__double_call] = STATE(2707), - [sym_access_call] = STATE(2602), - [sym_anonymous_function] = STATE(2602), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(479), - [aux_sym_identifier_token1] = ACTIONS(481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(481), - [sym_unused_identifier] = ACTIONS(483), - [anon_sym___MODULE__] = ACTIONS(485), - [anon_sym___DIR__] = ACTIONS(485), - [anon_sym___ENV__] = ACTIONS(485), - [anon_sym___CALLER__] = ACTIONS(485), - [anon_sym___STACKTRACE__] = ACTIONS(485), [sym_alias] = ACTIONS(1339), [sym_integer] = ACTIONS(1339), [sym_float] = ACTIONS(1339), [sym_char] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_nil] = ACTIONS(491), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), [sym_atom] = ACTIONS(1339), - [anon_sym_DQUOTE] = ACTIONS(493), - [anon_sym_SQUOTE] = ACTIONS(495), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(497), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(499), - [anon_sym_LBRACE] = ACTIONS(501), - [anon_sym_LBRACK] = ACTIONS(503), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(505), - [sym_keyword] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(515), - [anon_sym_CARET] = ACTIONS(515), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(515), - [anon_sym_not] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(517), + [anon_sym_TILDE] = ACTIONS(91), + [sym_keyword] = ACTIONS(1341), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -59662,319 +60170,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(519), + [anon_sym_fn] = ACTIONS(115), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(523), + [sym__before_unary_op] = ACTIONS(119), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(525), + [sym__quoted_atom_start] = ACTIONS(121), }, - [266] = { - [sym__expression] = STATE(3524), - [sym_block] = STATE(3524), - [sym__identifier] = STATE(72), - [sym_identifier] = STATE(72), - [sym_special_identifier] = STATE(72), - [sym_boolean] = STATE(3524), - [sym_nil] = STATE(3524), - [sym__atom] = STATE(3524), - [sym_quoted_atom] = STATE(3524), - [sym__quoted_i_double] = STATE(3250), - [sym__quoted_i_single] = STATE(3251), - [sym__quoted_i_heredoc_single] = STATE(3518), - [sym__quoted_i_heredoc_double] = STATE(3516), - [sym_string] = STATE(3524), - [sym_charlist] = STATE(3524), - [sym_sigil] = STATE(3524), - [sym_keywords] = STATE(3523), - [sym_pair] = STATE(3164), - [sym__keyword] = STATE(613), - [sym_quoted_keyword] = STATE(613), - [sym_list] = STATE(3524), - [sym_tuple] = STATE(3524), - [sym_bitstring] = STATE(3524), - [sym_map] = STATE(3524), - [sym_unary_operator] = STATE(3524), - [sym_binary_operator] = STATE(3524), - [sym_operator_identifier] = STATE(4972), - [sym_dot] = STATE(3524), - [sym_call] = STATE(3524), - [sym__call_without_parentheses] = STATE(3517), - [sym__call_with_parentheses] = STATE(3515), - [sym__local_call_without_parentheses] = STATE(3511), - [sym__local_call_with_parentheses] = STATE(3073), - [sym__local_call_just_do_block] = STATE(3510), - [sym__remote_call_without_parentheses] = STATE(3514), - [sym__remote_call_with_parentheses] = STATE(3088), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(3095), - [sym__anonymous_dot] = STATE(4928), - [sym__double_call] = STATE(3499), - [sym_access_call] = STATE(3524), - [sym_anonymous_function] = STATE(3524), + [265] = { + [sym__expression] = STATE(3036), + [sym_block] = STATE(3036), + [sym__identifier] = STATE(41), + [sym_identifier] = STATE(41), + [sym_special_identifier] = STATE(41), + [sym_boolean] = STATE(3036), + [sym_nil] = STATE(3036), + [sym__atom] = STATE(3036), + [sym_quoted_atom] = STATE(3036), + [sym__quoted_i_double] = STATE(1276), + [sym__quoted_i_single] = STATE(1277), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(3036), + [sym_charlist] = STATE(3036), + [sym_sigil] = STATE(3036), + [sym_keywords] = STATE(1436), + [sym_pair] = STATE(2214), + [sym__keyword] = STATE(799), + [sym_quoted_keyword] = STATE(799), + [sym_list] = STATE(3036), + [sym_tuple] = STATE(3036), + [sym_bitstring] = STATE(3036), + [sym_map] = STATE(3036), + [sym_unary_operator] = STATE(3036), + [sym_binary_operator] = STATE(3036), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(3036), + [sym_call] = STATE(3036), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(3036), + [sym_anonymous_function] = STATE(3036), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1123), - [aux_sym_identifier_token1] = ACTIONS(1125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1125), - [sym_unused_identifier] = ACTIONS(1127), - [anon_sym___MODULE__] = ACTIONS(1129), - [anon_sym___DIR__] = ACTIONS(1129), - [anon_sym___ENV__] = ACTIONS(1129), - [anon_sym___CALLER__] = ACTIONS(1129), - [anon_sym___STACKTRACE__] = ACTIONS(1129), - [sym_alias] = ACTIONS(1341), - [sym_integer] = ACTIONS(1341), - [sym_float] = ACTIONS(1341), - [sym_char] = ACTIONS(1341), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_nil] = ACTIONS(1135), - [sym_atom] = ACTIONS(1341), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(1147), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1149), - [sym_keyword] = ACTIONS(1151), - [anon_sym_LT_LT] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1161), - [anon_sym_not] = ACTIONS(1161), - [anon_sym_AT] = ACTIONS(1163), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1165), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1167), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1169), - }, - [267] = { - [sym__expression] = STATE(2108), - [sym_block] = STATE(2108), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2108), - [sym_nil] = STATE(2108), - [sym__atom] = STATE(2108), - [sym_quoted_atom] = STATE(2108), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2108), - [sym_charlist] = STATE(2108), - [sym_sigil] = STATE(2108), - [sym_list] = STATE(2108), - [sym_tuple] = STATE(2108), - [sym_bitstring] = STATE(2108), - [sym_map] = STATE(2108), - [sym_unary_operator] = STATE(2108), - [sym_binary_operator] = STATE(2108), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2108), - [sym_call] = STATE(2108), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(2108), - [sym_anonymous_function] = STATE(2108), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(944), - [anon_sym___MODULE__] = ACTIONS(71), - [anon_sym___DIR__] = ACTIONS(71), - [anon_sym___ENV__] = ACTIONS(71), - [anon_sym___CALLER__] = ACTIONS(71), - [anon_sym___STACKTRACE__] = ACTIONS(71), - [sym_alias] = ACTIONS(946), - [sym_integer] = ACTIONS(946), - [sym_float] = ACTIONS(946), - [sym_char] = ACTIONS(946), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(946), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(972), - [anon_sym_CARET] = ACTIONS(972), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), - [anon_sym_not] = ACTIONS(972), - [anon_sym_AT] = ACTIONS(974), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(1343), - [anon_sym_catch] = ACTIONS(1343), - [anon_sym_else] = ACTIONS(1343), - [anon_sym_end] = ACTIONS(1343), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(1343), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(980), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [268] = { - [sym__expression] = STATE(2687), - [sym_block] = STATE(2687), - [sym__identifier] = STATE(47), - [sym_identifier] = STATE(47), - [sym_special_identifier] = STATE(47), - [sym_boolean] = STATE(2687), - [sym_nil] = STATE(2687), - [sym__atom] = STATE(2687), - [sym_quoted_atom] = STATE(2687), - [sym__quoted_i_double] = STATE(1146), - [sym__quoted_i_single] = STATE(1145), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2687), - [sym_charlist] = STATE(2687), - [sym_sigil] = STATE(2687), - [sym_keywords] = STATE(1375), - [sym_pair] = STATE(2125), - [sym__keyword] = STATE(492), - [sym_quoted_keyword] = STATE(492), - [sym_list] = STATE(2687), - [sym_tuple] = STATE(2687), - [sym_bitstring] = STATE(2687), - [sym_map] = STATE(2687), - [sym_unary_operator] = STATE(2687), - [sym_binary_operator] = STATE(2687), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2687), - [sym_call] = STATE(2687), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(41), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2687), - [sym_anonymous_function] = STATE(2687), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_LPAREN] = ACTIONS(249), [aux_sym_identifier_token1] = ACTIONS(436), [anon_sym_DOT_DOT_DOT] = ACTIONS(436), [sym_unused_identifier] = ACTIONS(438), @@ -59983,1718 +60231,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ENV__] = ACTIONS(440), [anon_sym___CALLER__] = ACTIONS(440), [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(1343), + [sym_integer] = ACTIONS(1343), + [sym_float] = ACTIONS(1343), + [sym_char] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1343), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(444), + [sym_keyword] = ACTIONS(446), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(453), + [anon_sym_not] = ACTIONS(453), + [anon_sym_AT] = ACTIONS(455), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(457), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [266] = { + [sym__expression] = STATE(3067), + [sym_block] = STATE(3067), + [sym__identifier] = STATE(51), + [sym_identifier] = STATE(51), + [sym_special_identifier] = STATE(51), + [sym_boolean] = STATE(3067), + [sym_nil] = STATE(3067), + [sym__atom] = STATE(3067), + [sym_quoted_atom] = STATE(3067), + [sym__quoted_i_double] = STATE(2651), + [sym__quoted_i_single] = STATE(2652), + [sym__quoted_i_heredoc_single] = STATE(2751), + [sym__quoted_i_heredoc_double] = STATE(2852), + [sym_string] = STATE(3067), + [sym_charlist] = STATE(3067), + [sym_sigil] = STATE(3067), + [sym_keywords] = STATE(2724), + [sym_pair] = STATE(2277), + [sym__keyword] = STATE(780), + [sym_quoted_keyword] = STATE(780), + [sym_list] = STATE(3067), + [sym_tuple] = STATE(3067), + [sym_bitstring] = STATE(3067), + [sym_map] = STATE(3067), + [sym_unary_operator] = STATE(3067), + [sym_binary_operator] = STATE(3067), + [sym_operator_identifier] = STATE(5596), + [sym_dot] = STATE(3067), + [sym_call] = STATE(3067), + [sym__call_without_parentheses] = STATE(2764), + [sym__call_with_parentheses] = STATE(2765), + [sym__local_call_without_parentheses] = STATE(2767), + [sym__local_call_with_parentheses] = STATE(2120), + [sym__local_call_just_do_block] = STATE(2833), + [sym__remote_call_without_parentheses] = STATE(2843), + [sym__remote_call_with_parentheses] = STATE(2108), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2107), + [sym__anonymous_dot] = STATE(5500), + [sym__double_call] = STATE(2844), + [sym_access_call] = STATE(3067), + [sym_anonymous_function] = STATE(3067), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), [sym_alias] = ACTIONS(1345), [sym_integer] = ACTIONS(1345), [sym_float] = ACTIONS(1345), [sym_char] = ACTIONS(1345), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), [sym_atom] = ACTIONS(1345), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(444), - [sym_keyword] = ACTIONS(446), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(448), - [anon_sym_PLUS] = ACTIONS(450), - [anon_sym_DASH] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(450), - [anon_sym_CARET] = ACTIONS(450), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), - [anon_sym_not] = ACTIONS(450), - [anon_sym_AT] = ACTIONS(452), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(454), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [269] = { - [sym__expression] = STATE(1548), - [sym_block] = STATE(1548), - [sym__identifier] = STATE(14), - [sym_identifier] = STATE(14), - [sym_special_identifier] = STATE(14), - [sym_boolean] = STATE(1548), - [sym_nil] = STATE(1548), - [sym__atom] = STATE(1548), - [sym_quoted_atom] = STATE(1548), - [sym__quoted_i_double] = STATE(1146), - [sym__quoted_i_single] = STATE(1145), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(1548), - [sym_charlist] = STATE(1548), - [sym_sigil] = STATE(1548), - [sym_keywords] = STATE(1375), - [sym_pair] = STATE(1331), - [sym__keyword] = STATE(836), - [sym_quoted_keyword] = STATE(836), - [sym_list] = STATE(1548), - [sym_tuple] = STATE(1548), - [sym_bitstring] = STATE(1548), - [sym_map] = STATE(1548), - [sym_unary_operator] = STATE(1548), - [sym_binary_operator] = STATE(1548), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(1548), - [sym_call] = STATE(1548), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(1548), - [sym_anonymous_function] = STATE(1548), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(197), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), - [sym_alias] = ACTIONS(1347), - [sym_integer] = ACTIONS(1347), - [sym_float] = ACTIONS(1347), - [sym_char] = ACTIONS(1347), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1347), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(222), - [sym_keyword] = ACTIONS(224), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(230), - [anon_sym_PLUS] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_CARET] = ACTIONS(235), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(235), - [anon_sym_not] = ACTIONS(235), - [anon_sym_AT] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(243), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [270] = { - [sym__expression] = STATE(1901), - [sym_block] = STATE(1901), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(1901), - [sym_nil] = STATE(1901), - [sym__atom] = STATE(1901), - [sym_quoted_atom] = STATE(1901), - [sym__quoted_i_double] = STATE(1450), - [sym__quoted_i_single] = STATE(1451), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(1901), - [sym_charlist] = STATE(1901), - [sym_sigil] = STATE(1901), - [sym_keywords] = STATE(1598), - [sym_pair] = STATE(1685), - [sym__keyword] = STATE(842), - [sym_quoted_keyword] = STATE(842), - [sym_list] = STATE(1901), - [sym_tuple] = STATE(1901), - [sym_bitstring] = STATE(1901), - [sym_map] = STATE(1901), - [sym_unary_operator] = STATE(1901), - [sym_binary_operator] = STATE(1901), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(1901), - [sym_call] = STATE(1901), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(1901), - [sym_anonymous_function] = STATE(1901), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(944), - [anon_sym___MODULE__] = ACTIONS(71), - [anon_sym___DIR__] = ACTIONS(71), - [anon_sym___ENV__] = ACTIONS(71), - [anon_sym___CALLER__] = ACTIONS(71), - [anon_sym___STACKTRACE__] = ACTIONS(71), - [sym_alias] = ACTIONS(1349), - [sym_integer] = ACTIONS(1349), - [sym_float] = ACTIONS(1349), - [sym_char] = ACTIONS(1349), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(964), - [sym_keyword] = ACTIONS(1351), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(972), - [anon_sym_CARET] = ACTIONS(972), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), - [anon_sym_not] = ACTIONS(972), - [anon_sym_AT] = ACTIONS(974), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(980), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [271] = { - [sym__expression] = STATE(2108), - [sym_block] = STATE(2108), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2108), - [sym_nil] = STATE(2108), - [sym__atom] = STATE(2108), - [sym_quoted_atom] = STATE(2108), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2108), - [sym_charlist] = STATE(2108), - [sym_sigil] = STATE(2108), - [sym_list] = STATE(2108), - [sym_tuple] = STATE(2108), - [sym_bitstring] = STATE(2108), - [sym_map] = STATE(2108), - [sym_unary_operator] = STATE(2108), - [sym_binary_operator] = STATE(2108), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2108), - [sym_call] = STATE(2108), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(2108), - [sym_anonymous_function] = STATE(2108), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(944), - [anon_sym___MODULE__] = ACTIONS(71), - [anon_sym___DIR__] = ACTIONS(71), - [anon_sym___ENV__] = ACTIONS(71), - [anon_sym___CALLER__] = ACTIONS(71), - [anon_sym___STACKTRACE__] = ACTIONS(71), - [sym_alias] = ACTIONS(946), - [sym_integer] = ACTIONS(946), - [sym_float] = ACTIONS(946), - [sym_char] = ACTIONS(946), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(946), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(972), - [anon_sym_CARET] = ACTIONS(972), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), - [anon_sym_not] = ACTIONS(972), - [anon_sym_AT] = ACTIONS(974), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(1353), - [anon_sym_catch] = ACTIONS(1353), - [anon_sym_else] = ACTIONS(1353), - [anon_sym_end] = ACTIONS(1353), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(1353), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(980), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [272] = { - [sym__expression] = STATE(2945), - [sym_block] = STATE(2945), - [sym__identifier] = STATE(63), - [sym_identifier] = STATE(63), - [sym_special_identifier] = STATE(63), - [sym_boolean] = STATE(2945), - [sym_nil] = STATE(2945), - [sym__atom] = STATE(2945), - [sym_quoted_atom] = STATE(2945), - [sym__quoted_i_double] = STATE(2570), - [sym__quoted_i_single] = STATE(2569), - [sym__quoted_i_heredoc_single] = STATE(2987), - [sym__quoted_i_heredoc_double] = STATE(2988), - [sym_string] = STATE(2945), - [sym_charlist] = STATE(2945), - [sym_sigil] = STATE(2945), - [sym_keywords] = STATE(2944), - [sym_pair] = STATE(2758), - [sym__keyword] = STATE(459), - [sym_quoted_keyword] = STATE(459), - [sym_list] = STATE(2945), - [sym_tuple] = STATE(2945), - [sym_bitstring] = STATE(2945), - [sym_map] = STATE(2945), - [sym_unary_operator] = STATE(2945), - [sym_binary_operator] = STATE(2945), - [sym_operator_identifier] = STATE(5020), - [sym_dot] = STATE(2945), - [sym_call] = STATE(2945), - [sym__call_without_parentheses] = STATE(2986), - [sym__call_with_parentheses] = STATE(2985), - [sym__local_call_without_parentheses] = STATE(2984), - [sym__local_call_with_parentheses] = STATE(2047), - [sym__local_call_just_do_block] = STATE(2983), - [sym__remote_call_without_parentheses] = STATE(2982), - [sym__remote_call_with_parentheses] = STATE(2050), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(2052), - [sym__anonymous_dot] = STATE(4887), - [sym__double_call] = STATE(2981), - [sym_access_call] = STATE(2945), - [sym_anonymous_function] = STATE(2945), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(604), - [aux_sym_identifier_token1] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(606), - [sym_unused_identifier] = ACTIONS(608), - [anon_sym___MODULE__] = ACTIONS(610), - [anon_sym___DIR__] = ACTIONS(610), - [anon_sym___ENV__] = ACTIONS(610), - [anon_sym___CALLER__] = ACTIONS(610), - [anon_sym___STACKTRACE__] = ACTIONS(610), - [sym_alias] = ACTIONS(1355), - [sym_integer] = ACTIONS(1355), - [sym_float] = ACTIONS(1355), - [sym_char] = ACTIONS(1355), - [anon_sym_true] = ACTIONS(614), - [anon_sym_false] = ACTIONS(614), - [anon_sym_nil] = ACTIONS(616), - [sym_atom] = ACTIONS(1355), - [anon_sym_DQUOTE] = ACTIONS(618), - [anon_sym_SQUOTE] = ACTIONS(620), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(624), - [anon_sym_LBRACE] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(630), - [sym_keyword] = ACTIONS(632), - [anon_sym_LT_LT] = ACTIONS(634), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_AMP] = ACTIONS(638), - [anon_sym_PLUS] = ACTIONS(640), - [anon_sym_DASH] = ACTIONS(640), - [anon_sym_BANG] = ACTIONS(640), - [anon_sym_CARET] = ACTIONS(640), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(640), - [anon_sym_not] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(642), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(646), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(652), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(654), - }, - [273] = { - [sym__expression] = STATE(2586), - [sym_block] = STATE(2586), - [sym__identifier] = STATE(60), - [sym_identifier] = STATE(60), - [sym_special_identifier] = STATE(60), - [sym_boolean] = STATE(2586), - [sym_nil] = STATE(2586), - [sym__atom] = STATE(2586), - [sym_quoted_atom] = STATE(2586), - [sym__quoted_i_double] = STATE(2012), - [sym__quoted_i_single] = STATE(2011), - [sym__quoted_i_heredoc_single] = STATE(2413), - [sym__quoted_i_heredoc_double] = STATE(2414), - [sym_string] = STATE(2586), - [sym_charlist] = STATE(2586), - [sym_sigil] = STATE(2586), - [sym_keywords] = STATE(2721), - [sym_pair] = STATE(2310), - [sym__keyword] = STATE(445), - [sym_quoted_keyword] = STATE(445), - [sym_list] = STATE(2586), - [sym_tuple] = STATE(2586), - [sym_bitstring] = STATE(2586), - [sym_map] = STATE(2586), - [sym_unary_operator] = STATE(2586), - [sym_binary_operator] = STATE(2586), - [sym_operator_identifier] = STATE(5028), - [sym_dot] = STATE(2586), - [sym_call] = STATE(2586), - [sym__call_without_parentheses] = STATE(2412), - [sym__call_with_parentheses] = STATE(2411), - [sym__local_call_without_parentheses] = STATE(2410), - [sym__local_call_with_parentheses] = STATE(1910), - [sym__local_call_just_do_block] = STATE(2409), - [sym__remote_call_without_parentheses] = STATE(2408), - [sym__remote_call_with_parentheses] = STATE(1916), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(1975), - [sym__anonymous_dot] = STATE(4890), - [sym__double_call] = STATE(2407), - [sym_access_call] = STATE(2586), - [sym_anonymous_function] = STATE(2586), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(556), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(558), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(1357), - [sym_integer] = ACTIONS(1357), - [sym_float] = ACTIONS(1357), - [sym_char] = ACTIONS(1357), - [anon_sym_true] = ACTIONS(562), - [anon_sym_false] = ACTIONS(562), - [anon_sym_nil] = ACTIONS(564), - [sym_atom] = ACTIONS(1357), - [anon_sym_DQUOTE] = ACTIONS(566), - [anon_sym_SQUOTE] = ACTIONS(568), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), - [anon_sym_LBRACE] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(578), - [sym_keyword] = ACTIONS(580), - [anon_sym_LT_LT] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_CARET] = ACTIONS(588), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), - [anon_sym_not] = ACTIONS(588), - [anon_sym_AT] = ACTIONS(590), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(594), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(600), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(602), - }, - [274] = { - [sym__expression] = STATE(2691), - [sym_block] = STATE(2691), - [sym__identifier] = STATE(47), - [sym_identifier] = STATE(47), - [sym_special_identifier] = STATE(47), - [sym_boolean] = STATE(2691), - [sym_nil] = STATE(2691), - [sym__atom] = STATE(2691), - [sym_quoted_atom] = STATE(2691), - [sym__quoted_i_double] = STATE(1146), - [sym__quoted_i_single] = STATE(1145), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2691), - [sym_charlist] = STATE(2691), - [sym_sigil] = STATE(2691), - [sym_keywords] = STATE(1370), - [sym_pair] = STATE(2125), - [sym__keyword] = STATE(492), - [sym_quoted_keyword] = STATE(492), - [sym_list] = STATE(2691), - [sym_tuple] = STATE(2691), - [sym_bitstring] = STATE(2691), - [sym_map] = STATE(2691), - [sym_unary_operator] = STATE(2691), - [sym_binary_operator] = STATE(2691), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2691), - [sym_call] = STATE(2691), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(41), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2691), - [sym_anonymous_function] = STATE(2691), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(438), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(1359), - [sym_integer] = ACTIONS(1359), - [sym_float] = ACTIONS(1359), - [sym_char] = ACTIONS(1359), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1359), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(444), - [sym_keyword] = ACTIONS(446), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(448), - [anon_sym_PLUS] = ACTIONS(450), - [anon_sym_DASH] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(450), - [anon_sym_CARET] = ACTIONS(450), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), - [anon_sym_not] = ACTIONS(450), - [anon_sym_AT] = ACTIONS(452), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(454), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [275] = { - [sym__expression] = STATE(3285), - [sym_block] = STATE(3285), - [sym__identifier] = STATE(64), - [sym_identifier] = STATE(64), - [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3285), - [sym_nil] = STATE(3285), - [sym__atom] = STATE(3285), - [sym_quoted_atom] = STATE(3285), - [sym__quoted_i_double] = STATE(3097), - [sym__quoted_i_single] = STATE(3101), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3285), - [sym_charlist] = STATE(3285), - [sym_sigil] = STATE(3285), - [sym_keywords] = STATE(4844), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(3285), - [sym_tuple] = STATE(3285), - [sym_bitstring] = STATE(3285), - [sym_map] = STATE(3285), - [sym_unary_operator] = STATE(3285), - [sym_binary_operator] = STATE(3285), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3285), - [sym_call] = STATE(3285), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), - [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3285), - [sym_anonymous_function] = STATE(3285), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1361), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(828), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1363), - [sym_integer] = ACTIONS(1363), - [sym_float] = ACTIONS(1363), - [sym_char] = ACTIONS(1363), - [anon_sym_true] = ACTIONS(834), - [anon_sym_false] = ACTIONS(834), - [anon_sym_nil] = ACTIONS(836), - [sym_atom] = ACTIONS(1363), - [anon_sym_DQUOTE] = ACTIONS(838), - [anon_sym_SQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(850), - [sym_keyword] = ACTIONS(93), - [anon_sym_LT_LT] = ACTIONS(852), - [anon_sym_PERCENT] = ACTIONS(854), - [anon_sym_AMP] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_BANG] = ACTIONS(858), - [anon_sym_CARET] = ACTIONS(858), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), - [anon_sym_not] = ACTIONS(858), - [anon_sym_AT] = ACTIONS(860), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(864), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(866), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(868), - }, - [276] = { - [sym__expression] = STATE(2940), - [sym_block] = STATE(2940), - [sym__identifier] = STATE(63), - [sym_identifier] = STATE(63), - [sym_special_identifier] = STATE(63), - [sym_boolean] = STATE(2940), - [sym_nil] = STATE(2940), - [sym__atom] = STATE(2940), - [sym_quoted_atom] = STATE(2940), - [sym__quoted_i_double] = STATE(2570), - [sym__quoted_i_single] = STATE(2569), - [sym__quoted_i_heredoc_single] = STATE(2987), - [sym__quoted_i_heredoc_double] = STATE(2988), - [sym_string] = STATE(2940), - [sym_charlist] = STATE(2940), - [sym_sigil] = STATE(2940), - [sym_keywords] = STATE(2939), - [sym_pair] = STATE(2758), - [sym__keyword] = STATE(459), - [sym_quoted_keyword] = STATE(459), - [sym_list] = STATE(2940), - [sym_tuple] = STATE(2940), - [sym_bitstring] = STATE(2940), - [sym_map] = STATE(2940), - [sym_unary_operator] = STATE(2940), - [sym_binary_operator] = STATE(2940), - [sym_operator_identifier] = STATE(5020), - [sym_dot] = STATE(2940), - [sym_call] = STATE(2940), - [sym__call_without_parentheses] = STATE(2986), - [sym__call_with_parentheses] = STATE(2985), - [sym__local_call_without_parentheses] = STATE(2984), - [sym__local_call_with_parentheses] = STATE(2047), - [sym__local_call_just_do_block] = STATE(2983), - [sym__remote_call_without_parentheses] = STATE(2982), - [sym__remote_call_with_parentheses] = STATE(2050), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(2052), - [sym__anonymous_dot] = STATE(4887), - [sym__double_call] = STATE(2981), - [sym_access_call] = STATE(2940), - [sym_anonymous_function] = STATE(2940), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(604), - [aux_sym_identifier_token1] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(606), - [sym_unused_identifier] = ACTIONS(608), - [anon_sym___MODULE__] = ACTIONS(610), - [anon_sym___DIR__] = ACTIONS(610), - [anon_sym___ENV__] = ACTIONS(610), - [anon_sym___CALLER__] = ACTIONS(610), - [anon_sym___STACKTRACE__] = ACTIONS(610), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(614), - [anon_sym_false] = ACTIONS(614), - [anon_sym_nil] = ACTIONS(616), - [sym_atom] = ACTIONS(1365), - [anon_sym_DQUOTE] = ACTIONS(618), - [anon_sym_SQUOTE] = ACTIONS(620), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(624), - [anon_sym_LBRACE] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(630), - [sym_keyword] = ACTIONS(632), - [anon_sym_LT_LT] = ACTIONS(634), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_AMP] = ACTIONS(638), - [anon_sym_PLUS] = ACTIONS(640), - [anon_sym_DASH] = ACTIONS(640), - [anon_sym_BANG] = ACTIONS(640), - [anon_sym_CARET] = ACTIONS(640), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(640), - [anon_sym_not] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(642), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(646), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(652), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(654), - }, - [277] = { - [sym__expression] = STATE(2849), - [sym_block] = STATE(2849), - [sym__identifier] = STATE(68), - [sym_identifier] = STATE(68), - [sym_special_identifier] = STATE(68), - [sym_boolean] = STATE(2849), - [sym_nil] = STATE(2849), - [sym__atom] = STATE(2849), - [sym_quoted_atom] = STATE(2849), - [sym__quoted_i_double] = STATE(1678), - [sym__quoted_i_single] = STATE(1677), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(2849), - [sym_charlist] = STATE(2849), - [sym_sigil] = STATE(2849), - [sym_keywords] = STATE(1976), - [sym_pair] = STATE(2722), - [sym__keyword] = STATE(660), - [sym_quoted_keyword] = STATE(660), - [sym_list] = STATE(2849), - [sym_tuple] = STATE(2849), - [sym_bitstring] = STATE(2849), - [sym_map] = STATE(2849), - [sym_unary_operator] = STATE(2849), - [sym_binary_operator] = STATE(2849), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(2849), - [sym_call] = STATE(2849), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(2849), - [sym_anonymous_function] = STATE(2849), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(662), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(1367), - [sym_integer] = ACTIONS(1367), - [sym_float] = ACTIONS(1367), - [sym_char] = ACTIONS(1367), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), - [sym_atom] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(383), - [sym_keyword] = ACTIONS(666), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(670), - [anon_sym_DASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(670), - [anon_sym_CARET] = ACTIONS(670), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(670), - [anon_sym_not] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(672), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(674), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), - }, - [278] = { - [sym__expression] = STATE(2586), - [sym_block] = STATE(2586), - [sym__identifier] = STATE(60), - [sym_identifier] = STATE(60), - [sym_special_identifier] = STATE(60), - [sym_boolean] = STATE(2586), - [sym_nil] = STATE(2586), - [sym__atom] = STATE(2586), - [sym_quoted_atom] = STATE(2586), - [sym__quoted_i_double] = STATE(2012), - [sym__quoted_i_single] = STATE(2011), - [sym__quoted_i_heredoc_single] = STATE(2413), - [sym__quoted_i_heredoc_double] = STATE(2414), - [sym_string] = STATE(2586), - [sym_charlist] = STATE(2586), - [sym_sigil] = STATE(2586), - [sym_keywords] = STATE(2718), - [sym_pair] = STATE(2310), - [sym__keyword] = STATE(445), - [sym_quoted_keyword] = STATE(445), - [sym_list] = STATE(2586), - [sym_tuple] = STATE(2586), - [sym_bitstring] = STATE(2586), - [sym_map] = STATE(2586), - [sym_unary_operator] = STATE(2586), - [sym_binary_operator] = STATE(2586), - [sym_operator_identifier] = STATE(5028), - [sym_dot] = STATE(2586), - [sym_call] = STATE(2586), - [sym__call_without_parentheses] = STATE(2412), - [sym__call_with_parentheses] = STATE(2411), - [sym__local_call_without_parentheses] = STATE(2410), - [sym__local_call_with_parentheses] = STATE(1910), - [sym__local_call_just_do_block] = STATE(2409), - [sym__remote_call_without_parentheses] = STATE(2408), - [sym__remote_call_with_parentheses] = STATE(1916), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(1975), - [sym__anonymous_dot] = STATE(4890), - [sym__double_call] = STATE(2407), - [sym_access_call] = STATE(2586), - [sym_anonymous_function] = STATE(2586), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(556), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(558), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(1357), - [sym_integer] = ACTIONS(1357), - [sym_float] = ACTIONS(1357), - [sym_char] = ACTIONS(1357), - [anon_sym_true] = ACTIONS(562), - [anon_sym_false] = ACTIONS(562), - [anon_sym_nil] = ACTIONS(564), - [sym_atom] = ACTIONS(1357), - [anon_sym_DQUOTE] = ACTIONS(566), - [anon_sym_SQUOTE] = ACTIONS(568), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), - [anon_sym_LBRACE] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(578), - [sym_keyword] = ACTIONS(580), - [anon_sym_LT_LT] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_CARET] = ACTIONS(588), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), - [anon_sym_not] = ACTIONS(588), - [anon_sym_AT] = ACTIONS(590), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(594), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(600), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(602), - }, - [279] = { - [sym__expression] = STATE(2602), - [sym_block] = STATE(2602), - [sym__identifier] = STATE(45), - [sym_identifier] = STATE(45), - [sym_special_identifier] = STATE(45), - [sym_boolean] = STATE(2602), - [sym_nil] = STATE(2602), - [sym__atom] = STATE(2602), - [sym_quoted_atom] = STATE(2602), - [sym__quoted_i_double] = STATE(2235), - [sym__quoted_i_single] = STATE(2189), - [sym__quoted_i_heredoc_single] = STATE(2713), - [sym__quoted_i_heredoc_double] = STATE(2714), - [sym_string] = STATE(2602), - [sym_charlist] = STATE(2602), - [sym_sigil] = STATE(2602), - [sym_keywords] = STATE(2653), - [sym_pair] = STATE(2129), - [sym__keyword] = STATE(726), - [sym_quoted_keyword] = STATE(726), - [sym_list] = STATE(2602), - [sym_tuple] = STATE(2602), - [sym_bitstring] = STATE(2602), - [sym_map] = STATE(2602), - [sym_unary_operator] = STATE(2602), - [sym_binary_operator] = STATE(2602), - [sym_operator_identifier] = STATE(4988), - [sym_dot] = STATE(2602), - [sym_call] = STATE(2602), - [sym__call_without_parentheses] = STATE(2712), - [sym__call_with_parentheses] = STATE(2711), - [sym__local_call_without_parentheses] = STATE(2710), - [sym__local_call_with_parentheses] = STATE(1879), - [sym__local_call_just_do_block] = STATE(2709), - [sym__remote_call_without_parentheses] = STATE(2708), - [sym__remote_call_with_parentheses] = STATE(1859), - [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1919), - [sym__anonymous_dot] = STATE(4871), - [sym__double_call] = STATE(2707), - [sym_access_call] = STATE(2602), - [sym_anonymous_function] = STATE(2602), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(479), - [aux_sym_identifier_token1] = ACTIONS(481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(481), - [sym_unused_identifier] = ACTIONS(483), - [anon_sym___MODULE__] = ACTIONS(485), - [anon_sym___DIR__] = ACTIONS(485), - [anon_sym___ENV__] = ACTIONS(485), - [anon_sym___CALLER__] = ACTIONS(485), - [anon_sym___STACKTRACE__] = ACTIONS(485), - [sym_alias] = ACTIONS(1339), - [sym_integer] = ACTIONS(1339), - [sym_float] = ACTIONS(1339), - [sym_char] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_nil] = ACTIONS(491), - [sym_atom] = ACTIONS(1339), - [anon_sym_DQUOTE] = ACTIONS(493), - [anon_sym_SQUOTE] = ACTIONS(495), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(497), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(499), - [anon_sym_LBRACE] = ACTIONS(501), - [anon_sym_LBRACK] = ACTIONS(503), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(505), - [sym_keyword] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(515), - [anon_sym_CARET] = ACTIONS(515), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(515), - [anon_sym_not] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(517), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(519), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(523), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(525), - }, - [280] = { - [sym__expression] = STATE(2108), - [sym_block] = STATE(2108), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2108), - [sym_nil] = STATE(2108), - [sym__atom] = STATE(2108), - [sym_quoted_atom] = STATE(2108), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2108), - [sym_charlist] = STATE(2108), - [sym_sigil] = STATE(2108), - [sym_list] = STATE(2108), - [sym_tuple] = STATE(2108), - [sym_bitstring] = STATE(2108), - [sym_map] = STATE(2108), - [sym_unary_operator] = STATE(2108), - [sym_binary_operator] = STATE(2108), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2108), - [sym_call] = STATE(2108), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(2108), - [sym_anonymous_function] = STATE(2108), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(944), - [anon_sym___MODULE__] = ACTIONS(71), - [anon_sym___DIR__] = ACTIONS(71), - [anon_sym___ENV__] = ACTIONS(71), - [anon_sym___CALLER__] = ACTIONS(71), - [anon_sym___STACKTRACE__] = ACTIONS(71), - [sym_alias] = ACTIONS(946), - [sym_integer] = ACTIONS(946), - [sym_float] = ACTIONS(946), - [sym_char] = ACTIONS(946), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(946), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(972), - [anon_sym_CARET] = ACTIONS(972), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), - [anon_sym_not] = ACTIONS(972), - [anon_sym_AT] = ACTIONS(974), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(1369), - [anon_sym_catch] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(1369), - [anon_sym_end] = ACTIONS(1369), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(1369), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(980), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [281] = { - [sym__expression] = STATE(2009), - [sym_block] = STATE(2009), - [sym__identifier] = STATE(48), - [sym_identifier] = STATE(48), - [sym_special_identifier] = STATE(48), - [sym_boolean] = STATE(2009), - [sym_nil] = STATE(2009), - [sym__atom] = STATE(2009), - [sym_quoted_atom] = STATE(2009), - [sym__quoted_i_double] = STATE(1114), - [sym__quoted_i_single] = STATE(1100), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(2009), - [sym_charlist] = STATE(2009), - [sym_sigil] = STATE(2009), - [sym_keywords] = STATE(1196), - [sym_pair] = STATE(1886), - [sym__keyword] = STATE(786), - [sym_quoted_keyword] = STATE(786), - [sym_list] = STATE(2009), - [sym_tuple] = STATE(2009), - [sym_bitstring] = STATE(2009), - [sym_map] = STATE(2009), - [sym_unary_operator] = STATE(2009), - [sym_binary_operator] = STATE(2009), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(2009), - [sym_call] = STATE(2009), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(2009), - [sym_anonymous_function] = STATE(2009), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(527), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(1371), - [sym_integer] = ACTIONS(1371), - [sym_float] = ACTIONS(1371), - [sym_char] = ACTIONS(1371), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(531), - [sym_keyword] = ACTIONS(533), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), + [anon_sym_TILDE] = ACTIONS(527), + [sym_keyword] = ACTIONS(529), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), [anon_sym_AMP] = ACTIONS(535), [anon_sym_PLUS] = ACTIONS(537), [anon_sym_DASH] = ACTIONS(537), @@ -61742,53 +60430,1613 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), + [anon_sym_fn] = ACTIONS(541), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(541), + [sym__before_unary_op] = ACTIONS(545), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), + [sym__quoted_atom_start] = ACTIONS(547), }, - [282] = { - [sym__expression] = STATE(2108), - [sym_block] = STATE(2108), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2108), - [sym_nil] = STATE(2108), - [sym__atom] = STATE(2108), - [sym_quoted_atom] = STATE(2108), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2108), - [sym_charlist] = STATE(2108), - [sym_sigil] = STATE(2108), - [sym_list] = STATE(2108), - [sym_tuple] = STATE(2108), - [sym_bitstring] = STATE(2108), - [sym_map] = STATE(2108), - [sym_unary_operator] = STATE(2108), - [sym_binary_operator] = STATE(2108), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2108), - [sym_call] = STATE(2108), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [267] = { + [sym__expression] = STATE(3124), + [sym_block] = STATE(3124), + [sym__identifier] = STATE(56), + [sym_identifier] = STATE(56), + [sym_special_identifier] = STATE(56), + [sym_boolean] = STATE(3124), + [sym_nil] = STATE(3124), + [sym__atom] = STATE(3124), + [sym_quoted_atom] = STATE(3124), + [sym__quoted_i_double] = STATE(2227), + [sym__quoted_i_single] = STATE(2228), + [sym__quoted_i_heredoc_single] = STATE(2910), + [sym__quoted_i_heredoc_double] = STATE(2805), + [sym_string] = STATE(3124), + [sym_charlist] = STATE(3124), + [sym_sigil] = STATE(3124), + [sym_keywords] = STATE(2723), + [sym_pair] = STATE(2287), + [sym__keyword] = STATE(480), + [sym_quoted_keyword] = STATE(480), + [sym_list] = STATE(3124), + [sym_tuple] = STATE(3124), + [sym_bitstring] = STATE(3124), + [sym_map] = STATE(3124), + [sym_unary_operator] = STATE(3124), + [sym_binary_operator] = STATE(3124), + [sym_operator_identifier] = STATE(5636), + [sym_dot] = STATE(3124), + [sym_call] = STATE(3124), + [sym__call_without_parentheses] = STATE(2883), + [sym__call_with_parentheses] = STATE(2876), + [sym__local_call_without_parentheses] = STATE(2870), + [sym__local_call_with_parentheses] = STATE(2037), + [sym__local_call_just_do_block] = STATE(2853), + [sym__remote_call_without_parentheses] = STATE(2846), + [sym__remote_call_with_parentheses] = STATE(2038), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2051), + [sym__anonymous_dot] = STATE(5534), + [sym__double_call] = STATE(2836), + [sym_access_call] = STATE(3124), + [sym_anonymous_function] = STATE(3124), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(1347), + [sym_integer] = ACTIONS(1347), + [sym_float] = ACTIONS(1347), + [sym_char] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(1347), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(578), + [sym_keyword] = ACTIONS(580), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [268] = { + [sym__expression] = STATE(3722), + [sym_block] = STATE(3722), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(3722), + [sym_nil] = STATE(3722), + [sym__atom] = STATE(3722), + [sym_quoted_atom] = STATE(3722), + [sym__quoted_i_double] = STATE(1538), + [sym__quoted_i_single] = STATE(1537), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(3722), + [sym_charlist] = STATE(3722), + [sym_sigil] = STATE(3722), + [sym_keywords] = STATE(1860), + [sym_pair] = STATE(3300), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(3722), + [sym_tuple] = STATE(3722), + [sym_bitstring] = STATE(3722), + [sym_map] = STATE(3722), + [sym_unary_operator] = STATE(3722), + [sym_binary_operator] = STATE(3722), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(3722), + [sym_call] = STATE(3722), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(3722), + [sym_anonymous_function] = STATE(3722), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1351), + [sym_integer] = ACTIONS(1351), + [sym_float] = ACTIONS(1351), + [sym_char] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [sym_keyword] = ACTIONS(1355), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [269] = { + [sym__expression] = STATE(3718), + [sym_block] = STATE(3718), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(3718), + [sym_nil] = STATE(3718), + [sym__atom] = STATE(3718), + [sym_quoted_atom] = STATE(3718), + [sym__quoted_i_double] = STATE(1538), + [sym__quoted_i_single] = STATE(1537), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(3718), + [sym_charlist] = STATE(3718), + [sym_sigil] = STATE(3718), + [sym_keywords] = STATE(1865), + [sym_pair] = STATE(3300), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(3718), + [sym_tuple] = STATE(3718), + [sym_bitstring] = STATE(3718), + [sym_map] = STATE(3718), + [sym_unary_operator] = STATE(3718), + [sym_binary_operator] = STATE(3718), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(3718), + [sym_call] = STATE(3718), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(3718), + [sym_anonymous_function] = STATE(3718), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1365), + [sym_integer] = ACTIONS(1365), + [sym_float] = ACTIONS(1365), + [sym_char] = ACTIONS(1365), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1365), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [sym_keyword] = ACTIONS(1355), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [270] = { + [sym__expression] = STATE(3615), + [sym_block] = STATE(3615), + [sym__identifier] = STATE(70), + [sym_identifier] = STATE(70), + [sym_special_identifier] = STATE(70), + [sym_boolean] = STATE(3615), + [sym_nil] = STATE(3615), + [sym__atom] = STATE(3615), + [sym_quoted_atom] = STATE(3615), + [sym__quoted_i_double] = STATE(1777), + [sym__quoted_i_single] = STATE(1778), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(3615), + [sym_charlist] = STATE(3615), + [sym_sigil] = STATE(3615), + [sym_keywords] = STATE(2101), + [sym_pair] = STATE(2680), + [sym__keyword] = STATE(642), + [sym_quoted_keyword] = STATE(642), + [sym_list] = STATE(3615), + [sym_tuple] = STATE(3615), + [sym_bitstring] = STATE(3615), + [sym_map] = STATE(3615), + [sym_unary_operator] = STATE(3615), + [sym_binary_operator] = STATE(3615), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(3615), + [sym_call] = STATE(3615), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(3615), + [sym_anonymous_function] = STATE(3615), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(1367), + [sym_integer] = ACTIONS(1367), + [sym_float] = ACTIONS(1367), + [sym_char] = ACTIONS(1367), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(389), + [sym_keyword] = ACTIONS(674), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(678), + [anon_sym_CARET] = ACTIONS(678), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(678), + [anon_sym_not] = ACTIONS(678), + [anon_sym_AT] = ACTIONS(680), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(406), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(682), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(412), + }, + [271] = { + [sym__expression] = STATE(2327), + [sym_block] = STATE(2327), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2327), + [sym_nil] = STATE(2327), + [sym__atom] = STATE(2327), + [sym_quoted_atom] = STATE(2327), + [sym__quoted_i_double] = STATE(1096), + [sym__quoted_i_single] = STATE(1095), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(2327), + [sym_charlist] = STATE(2327), + [sym_sigil] = STATE(2327), + [sym_keywords] = STATE(1267), + [sym_pair] = STATE(2110), + [sym__keyword] = STATE(873), + [sym_quoted_keyword] = STATE(873), + [sym_list] = STATE(2327), + [sym_tuple] = STATE(2327), + [sym_bitstring] = STATE(2327), + [sym_map] = STATE(2327), + [sym_unary_operator] = STATE(2327), + [sym_binary_operator] = STATE(2327), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(2327), + [sym_call] = STATE(2327), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(2327), + [sym_anonymous_function] = STATE(2327), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(461), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), + [sym_alias] = ACTIONS(1369), + [sym_integer] = ACTIONS(1369), + [sym_float] = ACTIONS(1369), + [sym_char] = ACTIONS(1369), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(1369), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(467), + [sym_keyword] = ACTIONS(469), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(476), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_CARET] = ACTIONS(476), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(476), + [anon_sym_not] = ACTIONS(476), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(480), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [272] = { + [sym__expression] = STATE(3615), + [sym_block] = STATE(3615), + [sym__identifier] = STATE(70), + [sym_identifier] = STATE(70), + [sym_special_identifier] = STATE(70), + [sym_boolean] = STATE(3615), + [sym_nil] = STATE(3615), + [sym__atom] = STATE(3615), + [sym_quoted_atom] = STATE(3615), + [sym__quoted_i_double] = STATE(1777), + [sym__quoted_i_single] = STATE(1778), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(3615), + [sym_charlist] = STATE(3615), + [sym_sigil] = STATE(3615), + [sym_keywords] = STATE(2100), + [sym_pair] = STATE(2680), + [sym__keyword] = STATE(642), + [sym_quoted_keyword] = STATE(642), + [sym_list] = STATE(3615), + [sym_tuple] = STATE(3615), + [sym_bitstring] = STATE(3615), + [sym_map] = STATE(3615), + [sym_unary_operator] = STATE(3615), + [sym_binary_operator] = STATE(3615), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(3615), + [sym_call] = STATE(3615), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(3615), + [sym_anonymous_function] = STATE(3615), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(1367), + [sym_integer] = ACTIONS(1367), + [sym_float] = ACTIONS(1367), + [sym_char] = ACTIONS(1367), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(389), + [sym_keyword] = ACTIONS(674), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(678), + [anon_sym_CARET] = ACTIONS(678), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(678), + [anon_sym_not] = ACTIONS(678), + [anon_sym_AT] = ACTIONS(680), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(406), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(682), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(412), + }, + [273] = { + [sym__expression] = STATE(2322), + [sym_block] = STATE(2322), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2322), + [sym_nil] = STATE(2322), + [sym__atom] = STATE(2322), + [sym_quoted_atom] = STATE(2322), + [sym__quoted_i_double] = STATE(1096), + [sym__quoted_i_single] = STATE(1095), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(2322), + [sym_charlist] = STATE(2322), + [sym_sigil] = STATE(2322), + [sym_keywords] = STATE(1262), + [sym_pair] = STATE(2110), + [sym__keyword] = STATE(873), + [sym_quoted_keyword] = STATE(873), + [sym_list] = STATE(2322), + [sym_tuple] = STATE(2322), + [sym_bitstring] = STATE(2322), + [sym_map] = STATE(2322), + [sym_unary_operator] = STATE(2322), + [sym_binary_operator] = STATE(2322), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(2322), + [sym_call] = STATE(2322), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(2322), + [sym_anonymous_function] = STATE(2322), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(461), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), + [sym_alias] = ACTIONS(1371), + [sym_integer] = ACTIONS(1371), + [sym_float] = ACTIONS(1371), + [sym_char] = ACTIONS(1371), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(1371), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(467), + [sym_keyword] = ACTIONS(469), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(476), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_CARET] = ACTIONS(476), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(476), + [anon_sym_not] = ACTIONS(476), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(480), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [274] = { + [sym__expression] = STATE(4031), + [sym_block] = STATE(4031), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(4031), + [sym_nil] = STATE(4031), + [sym__atom] = STATE(4031), + [sym_quoted_atom] = STATE(4031), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4031), + [sym_charlist] = STATE(4031), + [sym_sigil] = STATE(4031), + [sym_keywords] = STATE(5662), + [sym_pair] = STATE(5444), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(4031), + [sym_tuple] = STATE(4031), + [sym_bitstring] = STATE(4031), + [sym_map] = STATE(4031), + [sym_unary_operator] = STATE(4031), + [sym_binary_operator] = STATE(4031), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4031), + [sym_call] = STATE(4031), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4031), + [sym_anonymous_function] = STATE(4031), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1373), + [sym_integer] = ACTIONS(1373), + [sym_float] = ACTIONS(1373), + [sym_char] = ACTIONS(1373), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(1373), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [275] = { + [sym__expression] = STATE(2985), + [sym_block] = STATE(2985), + [sym__identifier] = STATE(51), + [sym_identifier] = STATE(51), + [sym_special_identifier] = STATE(51), + [sym_boolean] = STATE(2985), + [sym_nil] = STATE(2985), + [sym__atom] = STATE(2985), + [sym_quoted_atom] = STATE(2985), + [sym__quoted_i_double] = STATE(2651), + [sym__quoted_i_single] = STATE(2652), + [sym__quoted_i_heredoc_single] = STATE(2751), + [sym__quoted_i_heredoc_double] = STATE(2852), + [sym_string] = STATE(2985), + [sym_charlist] = STATE(2985), + [sym_sigil] = STATE(2985), + [sym_keywords] = STATE(2988), + [sym_pair] = STATE(2277), + [sym__keyword] = STATE(780), + [sym_quoted_keyword] = STATE(780), + [sym_list] = STATE(2985), + [sym_tuple] = STATE(2985), + [sym_bitstring] = STATE(2985), + [sym_map] = STATE(2985), + [sym_unary_operator] = STATE(2985), + [sym_binary_operator] = STATE(2985), + [sym_operator_identifier] = STATE(5596), + [sym_dot] = STATE(2985), + [sym_call] = STATE(2985), + [sym__call_without_parentheses] = STATE(2764), + [sym__call_with_parentheses] = STATE(2765), + [sym__local_call_without_parentheses] = STATE(2767), + [sym__local_call_with_parentheses] = STATE(2120), + [sym__local_call_just_do_block] = STATE(2833), + [sym__remote_call_without_parentheses] = STATE(2843), + [sym__remote_call_with_parentheses] = STATE(2108), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2107), + [sym__anonymous_dot] = STATE(5500), + [sym__double_call] = STATE(2844), + [sym_access_call] = STATE(2985), + [sym_anonymous_function] = STATE(2985), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(1375), + [sym_integer] = ACTIONS(1375), + [sym_float] = ACTIONS(1375), + [sym_char] = ACTIONS(1375), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(1375), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(527), + [sym_keyword] = ACTIONS(529), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(541), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(545), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(547), + }, + [276] = { + [sym__expression] = STATE(2424), + [sym_block] = STATE(2424), + [sym__identifier] = STATE(35), + [sym_identifier] = STATE(35), + [sym_special_identifier] = STATE(35), + [sym_boolean] = STATE(2424), + [sym_nil] = STATE(2424), + [sym__atom] = STATE(2424), + [sym_quoted_atom] = STATE(2424), + [sym__quoted_i_double] = STATE(1777), + [sym__quoted_i_single] = STATE(1778), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(2424), + [sym_charlist] = STATE(2424), + [sym_sigil] = STATE(2424), + [sym_keywords] = STATE(2101), + [sym_pair] = STATE(2099), + [sym__keyword] = STATE(511), + [sym_quoted_keyword] = STATE(511), + [sym_list] = STATE(2424), + [sym_tuple] = STATE(2424), + [sym_bitstring] = STATE(2424), + [sym_map] = STATE(2424), + [sym_unary_operator] = STATE(2424), + [sym_binary_operator] = STATE(2424), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(2424), + [sym_call] = STATE(2424), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(2424), + [sym_anonymous_function] = STATE(2424), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(367), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(1377), + [sym_integer] = ACTIONS(1377), + [sym_float] = ACTIONS(1377), + [sym_char] = ACTIONS(1377), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(389), + [sym_keyword] = ACTIONS(391), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(402), + [anon_sym_DASH] = ACTIONS(402), + [anon_sym_BANG] = ACTIONS(402), + [anon_sym_CARET] = ACTIONS(402), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(402), + [anon_sym_not] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(404), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(406), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(410), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(412), + }, + [277] = { + [sym__expression] = STATE(3445), + [sym_block] = STATE(3445), + [sym__identifier] = STATE(70), + [sym_identifier] = STATE(70), + [sym_special_identifier] = STATE(70), + [sym_boolean] = STATE(3445), + [sym_nil] = STATE(3445), + [sym__atom] = STATE(3445), + [sym_quoted_atom] = STATE(3445), + [sym__quoted_i_double] = STATE(1777), + [sym__quoted_i_single] = STATE(1778), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(3445), + [sym_charlist] = STATE(3445), + [sym_sigil] = STATE(3445), + [sym_keywords] = STATE(2091), + [sym_pair] = STATE(2680), + [sym__keyword] = STATE(642), + [sym_quoted_keyword] = STATE(642), + [sym_list] = STATE(3445), + [sym_tuple] = STATE(3445), + [sym_bitstring] = STATE(3445), + [sym_map] = STATE(3445), + [sym_unary_operator] = STATE(3445), + [sym_binary_operator] = STATE(3445), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(3445), + [sym_call] = STATE(3445), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(3445), + [sym_anonymous_function] = STATE(3445), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(1379), + [sym_integer] = ACTIONS(1379), + [sym_float] = ACTIONS(1379), + [sym_char] = ACTIONS(1379), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(389), + [sym_keyword] = ACTIONS(674), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(678), + [anon_sym_CARET] = ACTIONS(678), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(678), + [anon_sym_not] = ACTIONS(678), + [anon_sym_AT] = ACTIONS(680), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(406), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(682), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(412), + }, + [278] = { + [sym__expression] = STATE(2977), + [sym_block] = STATE(2977), + [sym__identifier] = STATE(51), + [sym_identifier] = STATE(51), + [sym_special_identifier] = STATE(51), + [sym_boolean] = STATE(2977), + [sym_nil] = STATE(2977), + [sym__atom] = STATE(2977), + [sym_quoted_atom] = STATE(2977), + [sym__quoted_i_double] = STATE(2651), + [sym__quoted_i_single] = STATE(2652), + [sym__quoted_i_heredoc_single] = STATE(2751), + [sym__quoted_i_heredoc_double] = STATE(2852), + [sym_string] = STATE(2977), + [sym_charlist] = STATE(2977), + [sym_sigil] = STATE(2977), + [sym_keywords] = STATE(2979), + [sym_pair] = STATE(2277), + [sym__keyword] = STATE(780), + [sym_quoted_keyword] = STATE(780), + [sym_list] = STATE(2977), + [sym_tuple] = STATE(2977), + [sym_bitstring] = STATE(2977), + [sym_map] = STATE(2977), + [sym_unary_operator] = STATE(2977), + [sym_binary_operator] = STATE(2977), + [sym_operator_identifier] = STATE(5596), + [sym_dot] = STATE(2977), + [sym_call] = STATE(2977), + [sym__call_without_parentheses] = STATE(2764), + [sym__call_with_parentheses] = STATE(2765), + [sym__local_call_without_parentheses] = STATE(2767), + [sym__local_call_with_parentheses] = STATE(2120), + [sym__local_call_just_do_block] = STATE(2833), + [sym__remote_call_without_parentheses] = STATE(2843), + [sym__remote_call_with_parentheses] = STATE(2108), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2107), + [sym__anonymous_dot] = STATE(5500), + [sym__double_call] = STATE(2844), + [sym_access_call] = STATE(2977), + [sym_anonymous_function] = STATE(2977), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(1381), + [sym_integer] = ACTIONS(1381), + [sym_float] = ACTIONS(1381), + [sym_char] = ACTIONS(1381), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(1381), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(527), + [sym_keyword] = ACTIONS(529), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(541), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(545), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(547), + }, + [279] = { + [sym__expression] = STATE(2639), + [sym_block] = STATE(2639), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2639), + [sym_nil] = STATE(2639), + [sym__atom] = STATE(2639), + [sym_quoted_atom] = STATE(2639), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2639), + [sym_charlist] = STATE(2639), + [sym_sigil] = STATE(2639), + [sym_list] = STATE(2639), + [sym_tuple] = STATE(2639), + [sym_bitstring] = STATE(2639), + [sym_map] = STATE(2639), + [sym_unary_operator] = STATE(2639), + [sym_binary_operator] = STATE(2639), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2639), + [sym_call] = STATE(2639), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(2108), - [sym_anonymous_function] = STATE(2108), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(2639), + [sym_anonymous_function] = STATE(2639), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), [aux_sym_identifier_token1] = ACTIONS(67), @@ -61867,12 +62115,402 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(1373), - [anon_sym_catch] = ACTIONS(1373), - [anon_sym_else] = ACTIONS(1373), - [anon_sym_end] = ACTIONS(1373), + [anon_sym_after] = ACTIONS(1383), + [anon_sym_catch] = ACTIONS(1383), + [anon_sym_else] = ACTIONS(1383), + [anon_sym_end] = ACTIONS(1383), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(1383), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [280] = { + [sym__expression] = STATE(2297), + [sym_block] = STATE(2297), + [sym__identifier] = STATE(35), + [sym_identifier] = STATE(35), + [sym_special_identifier] = STATE(35), + [sym_boolean] = STATE(2297), + [sym_nil] = STATE(2297), + [sym__atom] = STATE(2297), + [sym_quoted_atom] = STATE(2297), + [sym__quoted_i_double] = STATE(1777), + [sym__quoted_i_single] = STATE(1778), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(2297), + [sym_charlist] = STATE(2297), + [sym_sigil] = STATE(2297), + [sym_keywords] = STATE(2092), + [sym_pair] = STATE(2099), + [sym__keyword] = STATE(511), + [sym_quoted_keyword] = STATE(511), + [sym_list] = STATE(2297), + [sym_tuple] = STATE(2297), + [sym_bitstring] = STATE(2297), + [sym_map] = STATE(2297), + [sym_unary_operator] = STATE(2297), + [sym_binary_operator] = STATE(2297), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(2297), + [sym_call] = STATE(2297), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(2297), + [sym_anonymous_function] = STATE(2297), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(367), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(1385), + [sym_integer] = ACTIONS(1385), + [sym_float] = ACTIONS(1385), + [sym_char] = ACTIONS(1385), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(389), + [sym_keyword] = ACTIONS(391), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(402), + [anon_sym_DASH] = ACTIONS(402), + [anon_sym_BANG] = ACTIONS(402), + [anon_sym_CARET] = ACTIONS(402), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(402), + [anon_sym_not] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(404), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(406), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(410), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(412), + }, + [281] = { + [sym__expression] = STATE(3067), + [sym_block] = STATE(3067), + [sym__identifier] = STATE(51), + [sym_identifier] = STATE(51), + [sym_special_identifier] = STATE(51), + [sym_boolean] = STATE(3067), + [sym_nil] = STATE(3067), + [sym__atom] = STATE(3067), + [sym_quoted_atom] = STATE(3067), + [sym__quoted_i_double] = STATE(2651), + [sym__quoted_i_single] = STATE(2652), + [sym__quoted_i_heredoc_single] = STATE(2751), + [sym__quoted_i_heredoc_double] = STATE(2852), + [sym_string] = STATE(3067), + [sym_charlist] = STATE(3067), + [sym_sigil] = STATE(3067), + [sym_keywords] = STATE(2735), + [sym_pair] = STATE(2277), + [sym__keyword] = STATE(780), + [sym_quoted_keyword] = STATE(780), + [sym_list] = STATE(3067), + [sym_tuple] = STATE(3067), + [sym_bitstring] = STATE(3067), + [sym_map] = STATE(3067), + [sym_unary_operator] = STATE(3067), + [sym_binary_operator] = STATE(3067), + [sym_operator_identifier] = STATE(5596), + [sym_dot] = STATE(3067), + [sym_call] = STATE(3067), + [sym__call_without_parentheses] = STATE(2764), + [sym__call_with_parentheses] = STATE(2765), + [sym__local_call_without_parentheses] = STATE(2767), + [sym__local_call_with_parentheses] = STATE(2120), + [sym__local_call_just_do_block] = STATE(2833), + [sym__remote_call_without_parentheses] = STATE(2843), + [sym__remote_call_with_parentheses] = STATE(2108), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2107), + [sym__anonymous_dot] = STATE(5500), + [sym__double_call] = STATE(2844), + [sym_access_call] = STATE(3067), + [sym_anonymous_function] = STATE(3067), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(1345), + [sym_integer] = ACTIONS(1345), + [sym_float] = ACTIONS(1345), + [sym_char] = ACTIONS(1345), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(1345), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(527), + [sym_keyword] = ACTIONS(529), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(541), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(545), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(547), + }, + [282] = { + [sym__expression] = STATE(2125), + [sym_block] = STATE(2125), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2125), + [sym_nil] = STATE(2125), + [sym__atom] = STATE(2125), + [sym_quoted_atom] = STATE(2125), + [sym__quoted_i_double] = STATE(1538), + [sym__quoted_i_single] = STATE(1537), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2125), + [sym_charlist] = STATE(2125), + [sym_sigil] = STATE(2125), + [sym_keywords] = STATE(1860), + [sym_pair] = STATE(1722), + [sym__keyword] = STATE(882), + [sym_quoted_keyword] = STATE(882), + [sym_list] = STATE(2125), + [sym_tuple] = STATE(2125), + [sym_bitstring] = STATE(2125), + [sym_map] = STATE(2125), + [sym_unary_operator] = STATE(2125), + [sym_binary_operator] = STATE(2125), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2125), + [sym_call] = STATE(2125), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(2125), + [sym_anonymous_function] = STATE(2125), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(1387), + [sym_integer] = ACTIONS(1387), + [sym_float] = ACTIONS(1387), + [sym_char] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [sym_keyword] = ACTIONS(1389), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(1373), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), @@ -61881,88 +62519,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(982), }, [283] = { - [sym__expression] = STATE(2849), - [sym_block] = STATE(2849), - [sym__identifier] = STATE(68), - [sym_identifier] = STATE(68), - [sym_special_identifier] = STATE(68), - [sym_boolean] = STATE(2849), - [sym_nil] = STATE(2849), - [sym__atom] = STATE(2849), - [sym_quoted_atom] = STATE(2849), - [sym__quoted_i_double] = STATE(1678), - [sym__quoted_i_single] = STATE(1677), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(2849), - [sym_charlist] = STATE(2849), - [sym_sigil] = STATE(2849), - [sym_keywords] = STATE(1956), - [sym_pair] = STATE(2722), - [sym__keyword] = STATE(660), - [sym_quoted_keyword] = STATE(660), - [sym_list] = STATE(2849), - [sym_tuple] = STATE(2849), - [sym_bitstring] = STATE(2849), - [sym_map] = STATE(2849), - [sym_unary_operator] = STATE(2849), - [sym_binary_operator] = STATE(2849), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(2849), - [sym_call] = STATE(2849), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(2849), - [sym_anonymous_function] = STATE(2849), + [sym__expression] = STATE(3124), + [sym_block] = STATE(3124), + [sym__identifier] = STATE(56), + [sym_identifier] = STATE(56), + [sym_special_identifier] = STATE(56), + [sym_boolean] = STATE(3124), + [sym_nil] = STATE(3124), + [sym__atom] = STATE(3124), + [sym_quoted_atom] = STATE(3124), + [sym__quoted_i_double] = STATE(2227), + [sym__quoted_i_single] = STATE(2228), + [sym__quoted_i_heredoc_single] = STATE(2910), + [sym__quoted_i_heredoc_double] = STATE(2805), + [sym_string] = STATE(3124), + [sym_charlist] = STATE(3124), + [sym_sigil] = STATE(3124), + [sym_keywords] = STATE(2676), + [sym_pair] = STATE(2287), + [sym__keyword] = STATE(480), + [sym_quoted_keyword] = STATE(480), + [sym_list] = STATE(3124), + [sym_tuple] = STATE(3124), + [sym_bitstring] = STATE(3124), + [sym_map] = STATE(3124), + [sym_unary_operator] = STATE(3124), + [sym_binary_operator] = STATE(3124), + [sym_operator_identifier] = STATE(5636), + [sym_dot] = STATE(3124), + [sym_call] = STATE(3124), + [sym__call_without_parentheses] = STATE(2883), + [sym__call_with_parentheses] = STATE(2876), + [sym__local_call_without_parentheses] = STATE(2870), + [sym__local_call_with_parentheses] = STATE(2037), + [sym__local_call_just_do_block] = STATE(2853), + [sym__remote_call_without_parentheses] = STATE(2846), + [sym__remote_call_with_parentheses] = STATE(2038), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2051), + [sym__anonymous_dot] = STATE(5534), + [sym__double_call] = STATE(2836), + [sym_access_call] = STATE(3124), + [sym_anonymous_function] = STATE(3124), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(662), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(1367), - [sym_integer] = ACTIONS(1367), - [sym_float] = ACTIONS(1367), - [sym_char] = ACTIONS(1367), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), - [sym_atom] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(1347), + [sym_integer] = ACTIONS(1347), + [sym_float] = ACTIONS(1347), + [sym_char] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(1347), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(383), - [sym_keyword] = ACTIONS(666), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(670), - [anon_sym_DASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(670), - [anon_sym_CARET] = ACTIONS(670), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(670), - [anon_sym_not] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(578), + [sym_keyword] = ACTIONS(580), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -62002,92 +62640,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), + [anon_sym_fn] = ACTIONS(594), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(674), + [sym__before_unary_op] = ACTIONS(600), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), + [sym__quoted_atom_start] = ACTIONS(602), }, [284] = { - [sym__expression] = STATE(2108), - [sym_block] = STATE(2108), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2108), - [sym_nil] = STATE(2108), - [sym__atom] = STATE(2108), - [sym_quoted_atom] = STATE(2108), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2108), - [sym_charlist] = STATE(2108), - [sym_sigil] = STATE(2108), - [sym_list] = STATE(2108), - [sym_tuple] = STATE(2108), - [sym_bitstring] = STATE(2108), - [sym_map] = STATE(2108), - [sym_unary_operator] = STATE(2108), - [sym_binary_operator] = STATE(2108), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2108), - [sym_call] = STATE(2108), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(2108), - [sym_anonymous_function] = STATE(2108), + [sym__expression] = STATE(2302), + [sym_block] = STATE(2302), + [sym__identifier] = STATE(35), + [sym_identifier] = STATE(35), + [sym_special_identifier] = STATE(35), + [sym_boolean] = STATE(2302), + [sym_nil] = STATE(2302), + [sym__atom] = STATE(2302), + [sym_quoted_atom] = STATE(2302), + [sym__quoted_i_double] = STATE(1777), + [sym__quoted_i_single] = STATE(1778), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(2302), + [sym_charlist] = STATE(2302), + [sym_sigil] = STATE(2302), + [sym_keywords] = STATE(2091), + [sym_pair] = STATE(2099), + [sym__keyword] = STATE(511), + [sym_quoted_keyword] = STATE(511), + [sym_list] = STATE(2302), + [sym_tuple] = STATE(2302), + [sym_bitstring] = STATE(2302), + [sym_map] = STATE(2302), + [sym_unary_operator] = STATE(2302), + [sym_binary_operator] = STATE(2302), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(2302), + [sym_call] = STATE(2302), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(2302), + [sym_anonymous_function] = STATE(2302), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(944), - [anon_sym___MODULE__] = ACTIONS(71), - [anon_sym___DIR__] = ACTIONS(71), - [anon_sym___ENV__] = ACTIONS(71), - [anon_sym___CALLER__] = ACTIONS(71), - [anon_sym___STACKTRACE__] = ACTIONS(71), - [sym_alias] = ACTIONS(946), - [sym_integer] = ACTIONS(946), - [sym_float] = ACTIONS(946), - [sym_char] = ACTIONS(946), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(946), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(367), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(1391), + [sym_integer] = ACTIONS(1391), + [sym_float] = ACTIONS(1391), + [sym_char] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(972), - [anon_sym_CARET] = ACTIONS(972), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), - [anon_sym_not] = ACTIONS(972), - [anon_sym_AT] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(389), + [sym_keyword] = ACTIONS(391), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(402), + [anon_sym_DASH] = ACTIONS(402), + [anon_sym_BANG] = ACTIONS(402), + [anon_sym_CARET] = ACTIONS(402), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(402), + [anon_sym_not] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(404), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -62127,102 +62770,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(1375), - [anon_sym_catch] = ACTIONS(1375), - [anon_sym_else] = ACTIONS(1375), - [anon_sym_end] = ACTIONS(1375), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(1375), + [anon_sym_fn] = ACTIONS(406), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(980), + [sym__before_unary_op] = ACTIONS(410), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), + [sym__quoted_atom_start] = ACTIONS(412), }, [285] = { - [sym__expression] = STATE(2009), - [sym_block] = STATE(2009), - [sym__identifier] = STATE(48), - [sym_identifier] = STATE(48), - [sym_special_identifier] = STATE(48), - [sym_boolean] = STATE(2009), - [sym_nil] = STATE(2009), - [sym__atom] = STATE(2009), - [sym_quoted_atom] = STATE(2009), - [sym__quoted_i_double] = STATE(1114), - [sym__quoted_i_single] = STATE(1100), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(2009), - [sym_charlist] = STATE(2009), - [sym_sigil] = STATE(2009), - [sym_keywords] = STATE(1192), - [sym_pair] = STATE(1886), - [sym__keyword] = STATE(786), - [sym_quoted_keyword] = STATE(786), - [sym_list] = STATE(2009), - [sym_tuple] = STATE(2009), - [sym_bitstring] = STATE(2009), - [sym_map] = STATE(2009), - [sym_unary_operator] = STATE(2009), - [sym_binary_operator] = STATE(2009), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(2009), - [sym_call] = STATE(2009), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(2009), - [sym_anonymous_function] = STATE(2009), + [sym__expression] = STATE(2143), + [sym_block] = STATE(2143), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2143), + [sym_nil] = STATE(2143), + [sym__atom] = STATE(2143), + [sym_quoted_atom] = STATE(2143), + [sym__quoted_i_double] = STATE(1538), + [sym__quoted_i_single] = STATE(1537), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2143), + [sym_charlist] = STATE(2143), + [sym_sigil] = STATE(2143), + [sym_keywords] = STATE(1865), + [sym_pair] = STATE(1722), + [sym__keyword] = STATE(882), + [sym_quoted_keyword] = STATE(882), + [sym_list] = STATE(2143), + [sym_tuple] = STATE(2143), + [sym_bitstring] = STATE(2143), + [sym_map] = STATE(2143), + [sym_unary_operator] = STATE(2143), + [sym_binary_operator] = STATE(2143), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2143), + [sym_call] = STATE(2143), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(2143), + [sym_anonymous_function] = STATE(2143), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(527), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(1371), - [sym_integer] = ACTIONS(1371), - [sym_float] = ACTIONS(1371), - [sym_char] = ACTIONS(1371), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(1393), + [sym_integer] = ACTIONS(1393), + [sym_float] = ACTIONS(1393), + [sym_char] = ACTIONS(1393), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1393), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(531), - [sym_keyword] = ACTIONS(533), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_BANG] = ACTIONS(537), - [anon_sym_CARET] = ACTIONS(537), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), - [anon_sym_not] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(539), + [anon_sym_TILDE] = ACTIONS(964), + [sym_keyword] = ACTIONS(1389), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -62262,183 +62900,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), + [anon_sym_fn] = ACTIONS(978), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(541), + [sym__before_unary_op] = ACTIONS(980), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), + [sym__quoted_atom_start] = ACTIONS(982), }, [286] = { - [sym__expression] = STATE(1348), - [sym_block] = STATE(1348), - [sym__identifier] = STATE(18), - [sym_identifier] = STATE(18), - [sym_special_identifier] = STATE(18), - [sym_boolean] = STATE(1348), - [sym_nil] = STATE(1348), - [sym__atom] = STATE(1348), - [sym_quoted_atom] = STATE(1348), - [sym__quoted_i_double] = STATE(1114), - [sym__quoted_i_single] = STATE(1100), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(1348), - [sym_charlist] = STATE(1348), - [sym_sigil] = STATE(1348), - [sym_keywords] = STATE(1224), - [sym_pair] = STATE(1265), - [sym__keyword] = STATE(794), - [sym_quoted_keyword] = STATE(794), - [sym_list] = STATE(1348), - [sym_tuple] = STATE(1348), - [sym_bitstring] = STATE(1348), - [sym_map] = STATE(1348), - [sym_unary_operator] = STATE(1348), - [sym_binary_operator] = STATE(1348), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(1348), - [sym_call] = STATE(1348), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(1348), - [sym_anonymous_function] = STATE(1348), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(256), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), - [sym_alias] = ACTIONS(1377), - [sym_integer] = ACTIONS(1377), - [sym_float] = ACTIONS(1377), - [sym_char] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(1377), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(276), - [sym_keyword] = ACTIONS(278), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(286), - [anon_sym_not] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(294), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), - }, - [287] = { - [sym__expression] = STATE(2108), - [sym_block] = STATE(2108), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2108), - [sym_nil] = STATE(2108), - [sym__atom] = STATE(2108), - [sym_quoted_atom] = STATE(2108), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2108), - [sym_charlist] = STATE(2108), - [sym_sigil] = STATE(2108), - [sym_list] = STATE(2108), - [sym_tuple] = STATE(2108), - [sym_bitstring] = STATE(2108), - [sym_map] = STATE(2108), - [sym_unary_operator] = STATE(2108), - [sym_binary_operator] = STATE(2108), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2108), - [sym_call] = STATE(2108), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [sym__expression] = STATE(2639), + [sym_block] = STATE(2639), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2639), + [sym_nil] = STATE(2639), + [sym__atom] = STATE(2639), + [sym_quoted_atom] = STATE(2639), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2639), + [sym_charlist] = STATE(2639), + [sym_sigil] = STATE(2639), + [sym_list] = STATE(2639), + [sym_tuple] = STATE(2639), + [sym_bitstring] = STATE(2639), + [sym_map] = STATE(2639), + [sym_unary_operator] = STATE(2639), + [sym_binary_operator] = STATE(2639), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2639), + [sym_call] = STATE(2639), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(2108), - [sym_anonymous_function] = STATE(2108), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(2639), + [sym_anonymous_function] = STATE(2639), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), [aux_sym_identifier_token1] = ACTIONS(67), @@ -62517,12 +63025,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(1379), - [anon_sym_catch] = ACTIONS(1379), - [anon_sym_else] = ACTIONS(1379), - [anon_sym_end] = ACTIONS(1379), + [anon_sym_after] = ACTIONS(1395), + [anon_sym_catch] = ACTIONS(1395), + [anon_sym_else] = ACTIONS(1395), + [anon_sym_end] = ACTIONS(1395), [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(1379), + [anon_sym_rescue] = ACTIONS(1395), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), @@ -62530,1389 +63038,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(982), }, - [288] = { - [sym__expression] = STATE(2821), - [sym_block] = STATE(2821), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(2821), - [sym_nil] = STATE(2821), - [sym__atom] = STATE(2821), - [sym_quoted_atom] = STATE(2821), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(2821), - [sym_charlist] = STATE(2821), - [sym_sigil] = STATE(2821), - [sym__keywords_with_trailing_separator] = STATE(4987), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(2821), - [sym_tuple] = STATE(2821), - [sym_bitstring] = STATE(2821), - [sym_map] = STATE(2821), - [sym_unary_operator] = STATE(2821), - [sym_binary_operator] = STATE(2821), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(2821), - [sym_call] = STATE(2821), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(2821), - [sym_anonymous_function] = STATE(2821), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1181), - [sym_integer] = ACTIONS(1181), - [sym_float] = ACTIONS(1181), - [sym_char] = ACTIONS(1181), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1181), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [sym_keyword] = ACTIONS(1093), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [289] = { - [sym__expression] = STATE(3487), - [sym_block] = STATE(3487), - [sym__identifier] = STATE(64), - [sym_identifier] = STATE(64), - [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3487), - [sym_nil] = STATE(3487), - [sym__atom] = STATE(3487), - [sym_quoted_atom] = STATE(3487), - [sym__quoted_i_double] = STATE(3097), - [sym__quoted_i_single] = STATE(3101), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3487), - [sym_charlist] = STATE(3487), - [sym_sigil] = STATE(3487), - [sym_keywords] = STATE(4852), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(3487), - [sym_tuple] = STATE(3487), - [sym_bitstring] = STATE(3487), - [sym_map] = STATE(3487), - [sym_unary_operator] = STATE(3487), - [sym_binary_operator] = STATE(3487), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3487), - [sym_call] = STATE(3487), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), - [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3487), - [sym_anonymous_function] = STATE(3487), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1361), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(828), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1381), - [sym_integer] = ACTIONS(1381), - [sym_float] = ACTIONS(1381), - [sym_char] = ACTIONS(1381), - [anon_sym_true] = ACTIONS(834), - [anon_sym_false] = ACTIONS(834), - [anon_sym_nil] = ACTIONS(836), - [sym_atom] = ACTIONS(1381), - [anon_sym_DQUOTE] = ACTIONS(838), - [anon_sym_SQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(850), - [sym_keyword] = ACTIONS(93), - [anon_sym_LT_LT] = ACTIONS(852), - [anon_sym_PERCENT] = ACTIONS(854), - [anon_sym_AMP] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_BANG] = ACTIONS(858), - [anon_sym_CARET] = ACTIONS(858), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), - [anon_sym_not] = ACTIONS(858), - [anon_sym_AT] = ACTIONS(860), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(864), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(866), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(868), - }, - [290] = { - [sym__expression] = STATE(3034), - [sym_block] = STATE(3034), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3034), - [sym_nil] = STATE(3034), - [sym__atom] = STATE(3034), - [sym_quoted_atom] = STATE(3034), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3034), - [sym_charlist] = STATE(3034), - [sym_sigil] = STATE(3034), - [sym_keywords] = STATE(2588), - [sym_pair] = STATE(2505), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3034), - [sym_tuple] = STATE(3034), - [sym_bitstring] = STATE(3034), - [sym_map] = STATE(3034), - [sym_unary_operator] = STATE(3034), - [sym_binary_operator] = STATE(3034), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3034), - [sym_call] = STATE(3034), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3034), - [sym_anonymous_function] = STATE(3034), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1383), - [sym_integer] = ACTIONS(1383), - [sym_float] = ACTIONS(1383), - [sym_char] = ACTIONS(1383), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1383), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [sym_keyword] = ACTIONS(1093), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [291] = { - [sym__expression] = STATE(2757), - [sym_block] = STATE(2757), - [sym__identifier] = STATE(42), - [sym_identifier] = STATE(42), - [sym_special_identifier] = STATE(42), - [sym_boolean] = STATE(2757), - [sym_nil] = STATE(2757), - [sym__atom] = STATE(2757), - [sym_quoted_atom] = STATE(2757), - [sym__quoted_i_double] = STATE(1146), - [sym__quoted_i_single] = STATE(1145), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2757), - [sym_charlist] = STATE(2757), - [sym_sigil] = STATE(2757), - [sym_keywords] = STATE(1434), - [sym_pair] = STATE(2136), - [sym__keyword] = STATE(774), - [sym_quoted_keyword] = STATE(774), - [sym_list] = STATE(2757), - [sym_tuple] = STATE(2757), - [sym_bitstring] = STATE(2757), - [sym_map] = STATE(2757), - [sym_unary_operator] = STATE(2757), - [sym_binary_operator] = STATE(2757), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2757), - [sym_call] = STATE(2757), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2757), - [sym_anonymous_function] = STATE(2757), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(456), - [sym_unused_identifier] = ACTIONS(458), - [anon_sym___MODULE__] = ACTIONS(460), - [anon_sym___DIR__] = ACTIONS(460), - [anon_sym___ENV__] = ACTIONS(460), - [anon_sym___CALLER__] = ACTIONS(460), - [anon_sym___STACKTRACE__] = ACTIONS(460), - [sym_alias] = ACTIONS(1385), - [sym_integer] = ACTIONS(1385), - [sym_float] = ACTIONS(1385), - [sym_char] = ACTIONS(1385), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(464), - [sym_keyword] = ACTIONS(466), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(473), - [anon_sym_BANG] = ACTIONS(473), - [anon_sym_CARET] = ACTIONS(473), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), - [anon_sym_not] = ACTIONS(473), - [anon_sym_AT] = ACTIONS(475), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(477), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [292] = { - [sym__expression] = STATE(1462), - [sym_block] = STATE(1462), - [sym__identifier] = STATE(14), - [sym_identifier] = STATE(14), - [sym_special_identifier] = STATE(14), - [sym_boolean] = STATE(1462), - [sym_nil] = STATE(1462), - [sym__atom] = STATE(1462), - [sym_quoted_atom] = STATE(1462), - [sym__quoted_i_double] = STATE(1146), - [sym__quoted_i_single] = STATE(1145), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(1462), - [sym_charlist] = STATE(1462), - [sym_sigil] = STATE(1462), - [sym_keywords] = STATE(1416), - [sym_pair] = STATE(1331), - [sym__keyword] = STATE(836), - [sym_quoted_keyword] = STATE(836), - [sym_list] = STATE(1462), - [sym_tuple] = STATE(1462), - [sym_bitstring] = STATE(1462), - [sym_map] = STATE(1462), - [sym_unary_operator] = STATE(1462), - [sym_binary_operator] = STATE(1462), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(1462), - [sym_call] = STATE(1462), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(1462), - [sym_anonymous_function] = STATE(1462), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(197), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), - [sym_alias] = ACTIONS(1387), - [sym_integer] = ACTIONS(1387), - [sym_float] = ACTIONS(1387), - [sym_char] = ACTIONS(1387), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1387), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(222), - [sym_keyword] = ACTIONS(224), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(230), - [anon_sym_PLUS] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_CARET] = ACTIONS(235), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(235), - [anon_sym_not] = ACTIONS(235), - [anon_sym_AT] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(243), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [293] = { - [sym__expression] = STATE(3328), - [sym_block] = STATE(3328), - [sym__identifier] = STATE(57), - [sym_identifier] = STATE(57), - [sym_special_identifier] = STATE(57), - [sym_boolean] = STATE(3328), - [sym_nil] = STATE(3328), - [sym__atom] = STATE(3328), - [sym_quoted_atom] = STATE(3328), - [sym__quoted_i_double] = STATE(2977), - [sym__quoted_i_single] = STATE(2976), - [sym__quoted_i_heredoc_single] = STATE(3147), - [sym__quoted_i_heredoc_double] = STATE(3146), - [sym_string] = STATE(3328), - [sym_charlist] = STATE(3328), - [sym_sigil] = STATE(3328), - [sym_keywords] = STATE(3324), - [sym_pair] = STATE(3015), - [sym__keyword] = STATE(518), - [sym_quoted_keyword] = STATE(518), - [sym_list] = STATE(3328), - [sym_tuple] = STATE(3328), - [sym_bitstring] = STATE(3328), - [sym_map] = STATE(3328), - [sym_unary_operator] = STATE(3328), - [sym_binary_operator] = STATE(3328), - [sym_operator_identifier] = STATE(5049), - [sym_dot] = STATE(3328), - [sym_call] = STATE(3328), - [sym__call_without_parentheses] = STATE(3175), - [sym__call_with_parentheses] = STATE(3177), - [sym__local_call_without_parentheses] = STATE(3178), - [sym__local_call_with_parentheses] = STATE(2550), - [sym__local_call_just_do_block] = STATE(3183), - [sym__remote_call_without_parentheses] = STATE(3200), - [sym__remote_call_with_parentheses] = STATE(2583), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(2582), - [sym__anonymous_dot] = STATE(4866), - [sym__double_call] = STATE(3202), - [sym_access_call] = STATE(3328), - [sym_anonymous_function] = STATE(3328), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(15), - [sym_unused_identifier] = ACTIONS(17), - [anon_sym___MODULE__] = ACTIONS(19), - [anon_sym___DIR__] = ACTIONS(19), - [anon_sym___ENV__] = ACTIONS(19), - [anon_sym___CALLER__] = ACTIONS(19), - [anon_sym___STACKTRACE__] = ACTIONS(19), - [sym_alias] = ACTIONS(1389), - [sym_integer] = ACTIONS(1389), - [sym_float] = ACTIONS(1389), - [sym_char] = ACTIONS(1389), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_nil] = ACTIONS(25), - [sym_atom] = ACTIONS(1389), - [anon_sym_DQUOTE] = ACTIONS(27), - [anon_sym_SQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(41), - [sym_keyword] = ACTIONS(1391), - [anon_sym_LT_LT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(45), - [anon_sym_AMP] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(49), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_CARET] = ACTIONS(49), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), - [anon_sym_not] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(51), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(53), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(55), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(59), - }, - [294] = { - [sym__expression] = STATE(3047), - [sym_block] = STATE(3047), - [sym__identifier] = STATE(63), - [sym_identifier] = STATE(63), - [sym_special_identifier] = STATE(63), - [sym_boolean] = STATE(3047), - [sym_nil] = STATE(3047), - [sym__atom] = STATE(3047), - [sym_quoted_atom] = STATE(3047), - [sym__quoted_i_double] = STATE(2570), - [sym__quoted_i_single] = STATE(2569), - [sym__quoted_i_heredoc_single] = STATE(2987), - [sym__quoted_i_heredoc_double] = STATE(2988), - [sym_string] = STATE(3047), - [sym_charlist] = STATE(3047), - [sym_sigil] = STATE(3047), - [sym_keywords] = STATE(3108), - [sym_pair] = STATE(2758), - [sym__keyword] = STATE(459), - [sym_quoted_keyword] = STATE(459), - [sym_list] = STATE(3047), - [sym_tuple] = STATE(3047), - [sym_bitstring] = STATE(3047), - [sym_map] = STATE(3047), - [sym_unary_operator] = STATE(3047), - [sym_binary_operator] = STATE(3047), - [sym_operator_identifier] = STATE(5020), - [sym_dot] = STATE(3047), - [sym_call] = STATE(3047), - [sym__call_without_parentheses] = STATE(2986), - [sym__call_with_parentheses] = STATE(2985), - [sym__local_call_without_parentheses] = STATE(2984), - [sym__local_call_with_parentheses] = STATE(2047), - [sym__local_call_just_do_block] = STATE(2983), - [sym__remote_call_without_parentheses] = STATE(2982), - [sym__remote_call_with_parentheses] = STATE(2050), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(2052), - [sym__anonymous_dot] = STATE(4887), - [sym__double_call] = STATE(2981), - [sym_access_call] = STATE(3047), - [sym_anonymous_function] = STATE(3047), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(604), - [aux_sym_identifier_token1] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(606), - [sym_unused_identifier] = ACTIONS(608), - [anon_sym___MODULE__] = ACTIONS(610), - [anon_sym___DIR__] = ACTIONS(610), - [anon_sym___ENV__] = ACTIONS(610), - [anon_sym___CALLER__] = ACTIONS(610), - [anon_sym___STACKTRACE__] = ACTIONS(610), - [sym_alias] = ACTIONS(1393), - [sym_integer] = ACTIONS(1393), - [sym_float] = ACTIONS(1393), - [sym_char] = ACTIONS(1393), - [anon_sym_true] = ACTIONS(614), - [anon_sym_false] = ACTIONS(614), - [anon_sym_nil] = ACTIONS(616), - [sym_atom] = ACTIONS(1393), - [anon_sym_DQUOTE] = ACTIONS(618), - [anon_sym_SQUOTE] = ACTIONS(620), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(624), - [anon_sym_LBRACE] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(630), - [sym_keyword] = ACTIONS(632), - [anon_sym_LT_LT] = ACTIONS(634), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_AMP] = ACTIONS(638), - [anon_sym_PLUS] = ACTIONS(640), - [anon_sym_DASH] = ACTIONS(640), - [anon_sym_BANG] = ACTIONS(640), - [anon_sym_CARET] = ACTIONS(640), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(640), - [anon_sym_not] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(642), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(646), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(652), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(654), - }, - [295] = { - [sym__expression] = STATE(1462), - [sym_block] = STATE(1462), - [sym__identifier] = STATE(14), - [sym_identifier] = STATE(14), - [sym_special_identifier] = STATE(14), - [sym_boolean] = STATE(1462), - [sym_nil] = STATE(1462), - [sym__atom] = STATE(1462), - [sym_quoted_atom] = STATE(1462), - [sym__quoted_i_double] = STATE(1146), - [sym__quoted_i_single] = STATE(1145), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(1462), - [sym_charlist] = STATE(1462), - [sym_sigil] = STATE(1462), - [sym_keywords] = STATE(1434), - [sym_pair] = STATE(1331), - [sym__keyword] = STATE(836), - [sym_quoted_keyword] = STATE(836), - [sym_list] = STATE(1462), - [sym_tuple] = STATE(1462), - [sym_bitstring] = STATE(1462), - [sym_map] = STATE(1462), - [sym_unary_operator] = STATE(1462), - [sym_binary_operator] = STATE(1462), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(1462), - [sym_call] = STATE(1462), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(1462), - [sym_anonymous_function] = STATE(1462), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(197), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), - [sym_alias] = ACTIONS(1387), - [sym_integer] = ACTIONS(1387), - [sym_float] = ACTIONS(1387), - [sym_char] = ACTIONS(1387), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1387), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(222), - [sym_keyword] = ACTIONS(224), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(230), - [anon_sym_PLUS] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_CARET] = ACTIONS(235), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(235), - [anon_sym_not] = ACTIONS(235), - [anon_sym_AT] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(243), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [296] = { - [sym__expression] = STATE(2073), - [sym_block] = STATE(2073), + [287] = { + [sym__expression] = STATE(3564), + [sym_block] = STATE(3564), [sym__identifier] = STATE(48), [sym_identifier] = STATE(48), [sym_special_identifier] = STATE(48), - [sym_boolean] = STATE(2073), - [sym_nil] = STATE(2073), - [sym__atom] = STATE(2073), - [sym_quoted_atom] = STATE(2073), - [sym__quoted_i_double] = STATE(1114), - [sym__quoted_i_single] = STATE(1100), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(2073), - [sym_charlist] = STATE(2073), - [sym_sigil] = STATE(2073), - [sym_keywords] = STATE(1224), - [sym_pair] = STATE(1886), - [sym__keyword] = STATE(786), - [sym_quoted_keyword] = STATE(786), - [sym_list] = STATE(2073), - [sym_tuple] = STATE(2073), - [sym_bitstring] = STATE(2073), - [sym_map] = STATE(2073), - [sym_unary_operator] = STATE(2073), - [sym_binary_operator] = STATE(2073), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(2073), - [sym_call] = STATE(2073), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(2073), - [sym_anonymous_function] = STATE(2073), + [sym_boolean] = STATE(3564), + [sym_nil] = STATE(3564), + [sym__atom] = STATE(3564), + [sym_quoted_atom] = STATE(3564), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3564), + [sym_charlist] = STATE(3564), + [sym_sigil] = STATE(3564), + [sym__keywords_with_trailing_separator] = STATE(5607), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3564), + [sym_tuple] = STATE(3564), + [sym_bitstring] = STATE(3564), + [sym_map] = STATE(3564), + [sym_unary_operator] = STATE(3564), + [sym_binary_operator] = STATE(3564), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3564), + [sym_call] = STATE(3564), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3564), + [sym_anonymous_function] = STATE(3564), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(527), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(1395), - [sym_integer] = ACTIONS(1395), - [sym_float] = ACTIONS(1395), - [sym_char] = ACTIONS(1395), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(1395), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(531), - [sym_keyword] = ACTIONS(533), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_BANG] = ACTIONS(537), - [anon_sym_CARET] = ACTIONS(537), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), - [anon_sym_not] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(539), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(541), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), - }, - [297] = { - [sym__expression] = STATE(3047), - [sym_block] = STATE(3047), - [sym__identifier] = STATE(63), - [sym_identifier] = STATE(63), - [sym_special_identifier] = STATE(63), - [sym_boolean] = STATE(3047), - [sym_nil] = STATE(3047), - [sym__atom] = STATE(3047), - [sym_quoted_atom] = STATE(3047), - [sym__quoted_i_double] = STATE(2570), - [sym__quoted_i_single] = STATE(2569), - [sym__quoted_i_heredoc_single] = STATE(2987), - [sym__quoted_i_heredoc_double] = STATE(2988), - [sym_string] = STATE(3047), - [sym_charlist] = STATE(3047), - [sym_sigil] = STATE(3047), - [sym_keywords] = STATE(3135), - [sym_pair] = STATE(2758), - [sym__keyword] = STATE(459), - [sym_quoted_keyword] = STATE(459), - [sym_list] = STATE(3047), - [sym_tuple] = STATE(3047), - [sym_bitstring] = STATE(3047), - [sym_map] = STATE(3047), - [sym_unary_operator] = STATE(3047), - [sym_binary_operator] = STATE(3047), - [sym_operator_identifier] = STATE(5020), - [sym_dot] = STATE(3047), - [sym_call] = STATE(3047), - [sym__call_without_parentheses] = STATE(2986), - [sym__call_with_parentheses] = STATE(2985), - [sym__local_call_without_parentheses] = STATE(2984), - [sym__local_call_with_parentheses] = STATE(2047), - [sym__local_call_just_do_block] = STATE(2983), - [sym__remote_call_without_parentheses] = STATE(2982), - [sym__remote_call_with_parentheses] = STATE(2050), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(2052), - [sym__anonymous_dot] = STATE(4887), - [sym__double_call] = STATE(2981), - [sym_access_call] = STATE(3047), - [sym_anonymous_function] = STATE(3047), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(604), - [aux_sym_identifier_token1] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(606), - [sym_unused_identifier] = ACTIONS(608), - [anon_sym___MODULE__] = ACTIONS(610), - [anon_sym___DIR__] = ACTIONS(610), - [anon_sym___ENV__] = ACTIONS(610), - [anon_sym___CALLER__] = ACTIONS(610), - [anon_sym___STACKTRACE__] = ACTIONS(610), - [sym_alias] = ACTIONS(1393), - [sym_integer] = ACTIONS(1393), - [sym_float] = ACTIONS(1393), - [sym_char] = ACTIONS(1393), - [anon_sym_true] = ACTIONS(614), - [anon_sym_false] = ACTIONS(614), - [anon_sym_nil] = ACTIONS(616), - [sym_atom] = ACTIONS(1393), - [anon_sym_DQUOTE] = ACTIONS(618), - [anon_sym_SQUOTE] = ACTIONS(620), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(624), - [anon_sym_LBRACE] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(630), - [sym_keyword] = ACTIONS(632), - [anon_sym_LT_LT] = ACTIONS(634), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_AMP] = ACTIONS(638), - [anon_sym_PLUS] = ACTIONS(640), - [anon_sym_DASH] = ACTIONS(640), - [anon_sym_BANG] = ACTIONS(640), - [anon_sym_CARET] = ACTIONS(640), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(640), - [anon_sym_not] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(642), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(646), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(652), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(654), - }, - [298] = { - [sym__expression] = STATE(3487), - [sym_block] = STATE(3487), - [sym__identifier] = STATE(64), - [sym_identifier] = STATE(64), - [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3487), - [sym_nil] = STATE(3487), - [sym__atom] = STATE(3487), - [sym_quoted_atom] = STATE(3487), - [sym__quoted_i_double] = STATE(3097), - [sym__quoted_i_single] = STATE(3101), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3487), - [sym_charlist] = STATE(3487), - [sym_sigil] = STATE(3487), - [sym_keywords] = STATE(4875), - [sym_pair] = STATE(4301), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(3487), - [sym_tuple] = STATE(3487), - [sym_bitstring] = STATE(3487), - [sym_map] = STATE(3487), - [sym_unary_operator] = STATE(3487), - [sym_binary_operator] = STATE(3487), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3487), - [sym_call] = STATE(3487), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), - [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3487), - [sym_anonymous_function] = STATE(3487), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1067), [aux_sym_identifier_token1] = ACTIONS(826), [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(828), + [sym_unused_identifier] = ACTIONS(1069), [anon_sym___MODULE__] = ACTIONS(830), [anon_sym___DIR__] = ACTIONS(830), [anon_sym___ENV__] = ACTIONS(830), [anon_sym___CALLER__] = ACTIONS(830), [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1381), - [sym_integer] = ACTIONS(1381), - [sym_float] = ACTIONS(1381), - [sym_char] = ACTIONS(1381), - [anon_sym_true] = ACTIONS(834), - [anon_sym_false] = ACTIONS(834), - [anon_sym_nil] = ACTIONS(836), - [sym_atom] = ACTIONS(1381), - [anon_sym_DQUOTE] = ACTIONS(838), - [anon_sym_SQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(848), + [sym_alias] = ACTIONS(1119), + [sym_integer] = ACTIONS(1119), + [sym_float] = ACTIONS(1119), + [sym_char] = ACTIONS(1119), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(1119), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(850), - [sym_keyword] = ACTIONS(93), - [anon_sym_LT_LT] = ACTIONS(852), - [anon_sym_PERCENT] = ACTIONS(854), - [anon_sym_AMP] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_BANG] = ACTIONS(858), - [anon_sym_CARET] = ACTIONS(858), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), - [anon_sym_not] = ACTIONS(858), - [anon_sym_AT] = ACTIONS(860), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -63952,97 +63160,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(864), + [anon_sym_fn] = ACTIONS(1105), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(866), + [sym__before_unary_op] = ACTIONS(1107), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(868), + [sym__quoted_atom_start] = ACTIONS(1109), }, - [299] = { - [sym__expression] = STATE(3364), - [sym_block] = STATE(3364), - [sym__identifier] = STATE(57), - [sym_identifier] = STATE(57), - [sym_special_identifier] = STATE(57), - [sym_boolean] = STATE(3364), - [sym_nil] = STATE(3364), - [sym__atom] = STATE(3364), - [sym_quoted_atom] = STATE(3364), - [sym__quoted_i_double] = STATE(2977), - [sym__quoted_i_single] = STATE(2976), - [sym__quoted_i_heredoc_single] = STATE(3147), - [sym__quoted_i_heredoc_double] = STATE(3146), - [sym_string] = STATE(3364), - [sym_charlist] = STATE(3364), - [sym_sigil] = STATE(3364), - [sym_keywords] = STATE(3363), - [sym_pair] = STATE(3015), - [sym__keyword] = STATE(518), - [sym_quoted_keyword] = STATE(518), - [sym_list] = STATE(3364), - [sym_tuple] = STATE(3364), - [sym_bitstring] = STATE(3364), - [sym_map] = STATE(3364), - [sym_unary_operator] = STATE(3364), - [sym_binary_operator] = STATE(3364), - [sym_operator_identifier] = STATE(5049), - [sym_dot] = STATE(3364), - [sym_call] = STATE(3364), - [sym__call_without_parentheses] = STATE(3175), - [sym__call_with_parentheses] = STATE(3177), - [sym__local_call_without_parentheses] = STATE(3178), - [sym__local_call_with_parentheses] = STATE(2550), - [sym__local_call_just_do_block] = STATE(3183), - [sym__remote_call_without_parentheses] = STATE(3200), - [sym__remote_call_with_parentheses] = STATE(2583), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(2582), - [sym__anonymous_dot] = STATE(4866), - [sym__double_call] = STATE(3202), - [sym_access_call] = STATE(3364), - [sym_anonymous_function] = STATE(3364), + [288] = { + [sym__expression] = STATE(3332), + [sym_block] = STATE(3332), + [sym__identifier] = STATE(61), + [sym_identifier] = STATE(61), + [sym_special_identifier] = STATE(61), + [sym_boolean] = STATE(3332), + [sym_nil] = STATE(3332), + [sym__atom] = STATE(3332), + [sym_quoted_atom] = STATE(3332), + [sym__quoted_i_double] = STATE(2972), + [sym__quoted_i_single] = STATE(2970), + [sym__quoted_i_heredoc_single] = STATE(3316), + [sym__quoted_i_heredoc_double] = STATE(3315), + [sym_string] = STATE(3332), + [sym_charlist] = STATE(3332), + [sym_sigil] = STATE(3332), + [sym_keywords] = STATE(3209), + [sym_pair] = STATE(2745), + [sym__keyword] = STATE(465), + [sym_quoted_keyword] = STATE(465), + [sym_list] = STATE(3332), + [sym_tuple] = STATE(3332), + [sym_bitstring] = STATE(3332), + [sym_map] = STATE(3332), + [sym_unary_operator] = STATE(3332), + [sym_binary_operator] = STATE(3332), + [sym_operator_identifier] = STATE(5628), + [sym_dot] = STATE(3332), + [sym_call] = STATE(3332), + [sym__call_without_parentheses] = STATE(3314), + [sym__call_with_parentheses] = STATE(3313), + [sym__local_call_without_parentheses] = STATE(3312), + [sym__local_call_with_parentheses] = STATE(2420), + [sym__local_call_just_do_block] = STATE(3311), + [sym__remote_call_without_parentheses] = STATE(3310), + [sym__remote_call_with_parentheses] = STATE(2423), + [sym__remote_dot] = STATE(60), + [sym__anonymous_call] = STATE(2425), + [sym__anonymous_dot] = STATE(5498), + [sym__double_call] = STATE(3309), + [sym_access_call] = STATE(3332), + [sym_anonymous_function] = STATE(3332), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(15), - [sym_unused_identifier] = ACTIONS(17), - [anon_sym___MODULE__] = ACTIONS(19), - [anon_sym___DIR__] = ACTIONS(19), - [anon_sym___ENV__] = ACTIONS(19), - [anon_sym___CALLER__] = ACTIONS(19), - [anon_sym___STACKTRACE__] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), [sym_alias] = ACTIONS(1397), [sym_integer] = ACTIONS(1397), [sym_float] = ACTIONS(1397), [sym_char] = ACTIONS(1397), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_nil] = ACTIONS(25), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), [sym_atom] = ACTIONS(1397), - [anon_sym_DQUOTE] = ACTIONS(27), - [anon_sym_SQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(41), - [sym_keyword] = ACTIONS(1391), - [anon_sym_LT_LT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(45), - [anon_sym_AMP] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(49), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_CARET] = ACTIONS(49), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), - [anon_sym_not] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(51), + [anon_sym_TILDE] = ACTIONS(633), + [sym_keyword] = ACTIONS(635), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(643), + [anon_sym_not] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -64082,197 +63290,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(53), + [anon_sym_fn] = ACTIONS(649), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(55), + [sym__before_unary_op] = ACTIONS(655), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(59), + [sym__quoted_atom_start] = ACTIONS(657), }, - [300] = { - [sym__expression] = STATE(2079), - [sym_block] = STATE(2079), - [sym__identifier] = STATE(48), - [sym_identifier] = STATE(48), - [sym_special_identifier] = STATE(48), - [sym_boolean] = STATE(2079), - [sym_nil] = STATE(2079), - [sym__atom] = STATE(2079), - [sym_quoted_atom] = STATE(2079), - [sym__quoted_i_double] = STATE(1114), - [sym__quoted_i_single] = STATE(1100), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(2079), - [sym_charlist] = STATE(2079), - [sym_sigil] = STATE(2079), - [sym_keywords] = STATE(1225), - [sym_pair] = STATE(1886), - [sym__keyword] = STATE(786), - [sym_quoted_keyword] = STATE(786), - [sym_list] = STATE(2079), - [sym_tuple] = STATE(2079), - [sym_bitstring] = STATE(2079), - [sym_map] = STATE(2079), - [sym_unary_operator] = STATE(2079), - [sym_binary_operator] = STATE(2079), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(2079), - [sym_call] = STATE(2079), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(2079), - [sym_anonymous_function] = STATE(2079), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(527), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(1399), - [sym_integer] = ACTIONS(1399), - [sym_float] = ACTIONS(1399), - [sym_char] = ACTIONS(1399), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(1399), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(531), - [sym_keyword] = ACTIONS(533), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_BANG] = ACTIONS(537), - [anon_sym_CARET] = ACTIONS(537), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), - [anon_sym_not] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(539), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(541), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), - }, - [301] = { - [sym__expression] = STATE(1914), - [sym_block] = STATE(1914), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(1914), - [sym_nil] = STATE(1914), - [sym__atom] = STATE(1914), - [sym_quoted_atom] = STATE(1914), - [sym__quoted_i_double] = STATE(1450), - [sym__quoted_i_single] = STATE(1451), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(1914), - [sym_charlist] = STATE(1914), - [sym_sigil] = STATE(1914), - [sym_keywords] = STATE(1793), - [sym_pair] = STATE(1685), - [sym__keyword] = STATE(842), - [sym_quoted_keyword] = STATE(842), - [sym_list] = STATE(1914), - [sym_tuple] = STATE(1914), - [sym_bitstring] = STATE(1914), - [sym_map] = STATE(1914), - [sym_unary_operator] = STATE(1914), - [sym_binary_operator] = STATE(1914), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(1914), - [sym_call] = STATE(1914), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(1914), - [sym_anonymous_function] = STATE(1914), - [aux_sym__terminator_token1] = ACTIONS(3), + [289] = { + [sym__terminator] = STATE(773), + [sym__expression] = STATE(2710), + [sym_block] = STATE(2710), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(2710), + [sym_nil] = STATE(2710), + [sym__atom] = STATE(2710), + [sym_quoted_atom] = STATE(2710), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2710), + [sym_charlist] = STATE(2710), + [sym_sigil] = STATE(2710), + [sym_list] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_bitstring] = STATE(2710), + [sym_map] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_binary_operator] = STATE(2710), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2710), + [sym_call] = STATE(2710), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(2710), + [sym_body] = STATE(4407), + [sym_anonymous_function] = STATE(2710), + [aux_sym__terminator_repeat1] = STATE(1031), + [aux_sym__terminator_token1] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1399), [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(944), - [anon_sym___MODULE__] = ACTIONS(71), - [anon_sym___DIR__] = ACTIONS(71), - [anon_sym___ENV__] = ACTIONS(71), - [anon_sym___CALLER__] = ACTIONS(71), - [anon_sym___STACKTRACE__] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(1065), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), [sym_alias] = ACTIONS(1401), [sym_integer] = ACTIONS(1401), [sym_float] = ACTIONS(1401), @@ -64290,19 +63369,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(964), - [sym_keyword] = ACTIONS(1351), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1353), [anon_sym_LT_LT] = ACTIONS(966), [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(972), - [anon_sym_CARET] = ACTIONS(972), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), - [anon_sym_not] = ACTIONS(972), - [anon_sym_AT] = ACTIONS(974), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -64346,93 +63424,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(980), + [sym__before_unary_op] = ACTIONS(1363), [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(982), }, - [302] = { - [sym__expression] = STATE(3469), - [sym_block] = STATE(3469), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3469), - [sym_nil] = STATE(3469), - [sym__atom] = STATE(3469), - [sym_quoted_atom] = STATE(3469), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3469), - [sym_charlist] = STATE(3469), - [sym_sigil] = STATE(3469), - [sym_keywords] = STATE(5031), - [sym_pair] = STATE(4830), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(3469), - [sym_tuple] = STATE(3469), - [sym_bitstring] = STATE(3469), - [sym_map] = STATE(3469), - [sym_unary_operator] = STATE(3469), - [sym_binary_operator] = STATE(3469), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3469), - [sym_call] = STATE(3469), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3469), - [sym_anonymous_function] = STATE(3469), + [290] = { + [sym__expression] = STATE(3134), + [sym_block] = STATE(3134), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(3134), + [sym_nil] = STATE(3134), + [sym__atom] = STATE(3134), + [sym_quoted_atom] = STATE(3134), + [sym__quoted_i_double] = STATE(1276), + [sym__quoted_i_single] = STATE(1277), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(3134), + [sym_charlist] = STATE(3134), + [sym_sigil] = STATE(3134), + [sym_keywords] = STATE(1435), + [sym_pair] = STATE(2388), + [sym__keyword] = STATE(505), + [sym_quoted_keyword] = STATE(505), + [sym_list] = STATE(3134), + [sym_tuple] = STATE(3134), + [sym_bitstring] = STATE(3134), + [sym_map] = STATE(3134), + [sym_unary_operator] = STATE(3134), + [sym_binary_operator] = STATE(3134), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(3134), + [sym_call] = STATE(3134), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(3134), + [sym_anonymous_function] = STATE(3134), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(482), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), [sym_alias] = ACTIONS(1403), [sym_integer] = ACTIONS(1403), [sym_float] = ACTIONS(1403), [sym_char] = ACTIONS(1403), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), [sym_atom] = ACTIONS(1403), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [sym_keyword] = ACTIONS(1093), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), + [anon_sym_TILDE] = ACTIONS(486), + [sym_keyword] = ACTIONS(488), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(495), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_CARET] = ACTIONS(495), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(495), + [anon_sym_not] = ACTIONS(495), + [anon_sym_AT] = ACTIONS(497), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -64472,227 +63550,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), + [anon_sym_fn] = ACTIONS(291), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), + [sym__before_unary_op] = ACTIONS(499), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), + [sym__quoted_atom_start] = ACTIONS(300), }, - [303] = { - [sym__expression] = STATE(2757), - [sym_block] = STATE(2757), - [sym__identifier] = STATE(42), - [sym_identifier] = STATE(42), - [sym_special_identifier] = STATE(42), - [sym_boolean] = STATE(2757), - [sym_nil] = STATE(2757), - [sym__atom] = STATE(2757), - [sym_quoted_atom] = STATE(2757), - [sym__quoted_i_double] = STATE(1146), - [sym__quoted_i_single] = STATE(1145), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2757), - [sym_charlist] = STATE(2757), - [sym_sigil] = STATE(2757), - [sym_keywords] = STATE(1416), - [sym_pair] = STATE(2136), - [sym__keyword] = STATE(774), - [sym_quoted_keyword] = STATE(774), - [sym_list] = STATE(2757), - [sym_tuple] = STATE(2757), - [sym_bitstring] = STATE(2757), - [sym_map] = STATE(2757), - [sym_unary_operator] = STATE(2757), - [sym_binary_operator] = STATE(2757), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2757), - [sym_call] = STATE(2757), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2757), - [sym_anonymous_function] = STATE(2757), + [291] = { + [sym__expression] = STATE(3138), + [sym_block] = STATE(3138), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(3138), + [sym_nil] = STATE(3138), + [sym__atom] = STATE(3138), + [sym_quoted_atom] = STATE(3138), + [sym__quoted_i_double] = STATE(1276), + [sym__quoted_i_single] = STATE(1277), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(3138), + [sym_charlist] = STATE(3138), + [sym_sigil] = STATE(3138), + [sym_keywords] = STATE(1436), + [sym_pair] = STATE(2388), + [sym__keyword] = STATE(505), + [sym_quoted_keyword] = STATE(505), + [sym_list] = STATE(3138), + [sym_tuple] = STATE(3138), + [sym_bitstring] = STATE(3138), + [sym_map] = STATE(3138), + [sym_unary_operator] = STATE(3138), + [sym_binary_operator] = STATE(3138), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(3138), + [sym_call] = STATE(3138), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(3138), + [sym_anonymous_function] = STATE(3138), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(456), - [sym_unused_identifier] = ACTIONS(458), - [anon_sym___MODULE__] = ACTIONS(460), - [anon_sym___DIR__] = ACTIONS(460), - [anon_sym___ENV__] = ACTIONS(460), - [anon_sym___CALLER__] = ACTIONS(460), - [anon_sym___STACKTRACE__] = ACTIONS(460), - [sym_alias] = ACTIONS(1385), - [sym_integer] = ACTIONS(1385), - [sym_float] = ACTIONS(1385), - [sym_char] = ACTIONS(1385), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(464), - [sym_keyword] = ACTIONS(466), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(473), - [anon_sym_BANG] = ACTIONS(473), - [anon_sym_CARET] = ACTIONS(473), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), - [anon_sym_not] = ACTIONS(473), - [anon_sym_AT] = ACTIONS(475), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(477), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [304] = { - [sym__expression] = STATE(3472), - [sym_block] = STATE(3472), - [sym__identifier] = STATE(72), - [sym_identifier] = STATE(72), - [sym_special_identifier] = STATE(72), - [sym_boolean] = STATE(3472), - [sym_nil] = STATE(3472), - [sym__atom] = STATE(3472), - [sym_quoted_atom] = STATE(3472), - [sym__quoted_i_double] = STATE(3250), - [sym__quoted_i_single] = STATE(3251), - [sym__quoted_i_heredoc_single] = STATE(3518), - [sym__quoted_i_heredoc_double] = STATE(3516), - [sym_string] = STATE(3472), - [sym_charlist] = STATE(3472), - [sym_sigil] = STATE(3472), - [sym_keywords] = STATE(3471), - [sym_pair] = STATE(3164), - [sym__keyword] = STATE(613), - [sym_quoted_keyword] = STATE(613), - [sym_list] = STATE(3472), - [sym_tuple] = STATE(3472), - [sym_bitstring] = STATE(3472), - [sym_map] = STATE(3472), - [sym_unary_operator] = STATE(3472), - [sym_binary_operator] = STATE(3472), - [sym_operator_identifier] = STATE(4972), - [sym_dot] = STATE(3472), - [sym_call] = STATE(3472), - [sym__call_without_parentheses] = STATE(3517), - [sym__call_with_parentheses] = STATE(3515), - [sym__local_call_without_parentheses] = STATE(3511), - [sym__local_call_with_parentheses] = STATE(3073), - [sym__local_call_just_do_block] = STATE(3510), - [sym__remote_call_without_parentheses] = STATE(3514), - [sym__remote_call_with_parentheses] = STATE(3088), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(3095), - [sym__anonymous_dot] = STATE(4928), - [sym__double_call] = STATE(3499), - [sym_access_call] = STATE(3472), - [sym_anonymous_function] = STATE(3472), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1123), - [aux_sym_identifier_token1] = ACTIONS(1125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1125), - [sym_unused_identifier] = ACTIONS(1127), - [anon_sym___MODULE__] = ACTIONS(1129), - [anon_sym___DIR__] = ACTIONS(1129), - [anon_sym___ENV__] = ACTIONS(1129), - [anon_sym___CALLER__] = ACTIONS(1129), - [anon_sym___STACKTRACE__] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(482), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), [sym_alias] = ACTIONS(1405), [sym_integer] = ACTIONS(1405), [sym_float] = ACTIONS(1405), [sym_char] = ACTIONS(1405), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_nil] = ACTIONS(1135), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), [sym_atom] = ACTIONS(1405), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(1147), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1149), - [sym_keyword] = ACTIONS(1151), - [anon_sym_LT_LT] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1161), - [anon_sym_not] = ACTIONS(1161), - [anon_sym_AT] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(486), + [sym_keyword] = ACTIONS(488), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(495), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_CARET] = ACTIONS(495), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(495), + [anon_sym_not] = ACTIONS(495), + [anon_sym_AT] = ACTIONS(497), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -64732,833 +63680,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1165), + [anon_sym_fn] = ACTIONS(291), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1167), + [sym__before_unary_op] = ACTIONS(499), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1169), + [sym__quoted_atom_start] = ACTIONS(300), }, - [305] = { - [sym__expression] = STATE(2994), - [sym_block] = STATE(2994), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(2994), - [sym_nil] = STATE(2994), - [sym__atom] = STATE(2994), - [sym_quoted_atom] = STATE(2994), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(2994), - [sym_charlist] = STATE(2994), - [sym_sigil] = STATE(2994), - [sym_keywords] = STATE(2579), - [sym_pair] = STATE(2505), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(2994), - [sym_tuple] = STATE(2994), - [sym_bitstring] = STATE(2994), - [sym_map] = STATE(2994), - [sym_unary_operator] = STATE(2994), - [sym_binary_operator] = STATE(2994), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(2994), - [sym_call] = STATE(2994), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(2994), - [sym_anonymous_function] = STATE(2994), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1407), - [sym_integer] = ACTIONS(1407), - [sym_float] = ACTIONS(1407), - [sym_char] = ACTIONS(1407), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1407), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [sym_keyword] = ACTIONS(1093), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [306] = { - [sym__expression] = STATE(2821), - [sym_block] = STATE(2821), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(2821), - [sym_nil] = STATE(2821), - [sym__atom] = STATE(2821), - [sym_quoted_atom] = STATE(2821), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(2821), - [sym_charlist] = STATE(2821), - [sym_sigil] = STATE(2821), - [sym__keywords_with_trailing_separator] = STATE(5033), - [sym_pair] = STATE(4305), - [sym__keyword] = STATE(896), - [sym_quoted_keyword] = STATE(896), - [sym_list] = STATE(2821), - [sym_tuple] = STATE(2821), - [sym_bitstring] = STATE(2821), - [sym_map] = STATE(2821), - [sym_unary_operator] = STATE(2821), - [sym_binary_operator] = STATE(2821), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(2821), - [sym_call] = STATE(2821), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(2821), - [sym_anonymous_function] = STATE(2821), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1181), - [sym_integer] = ACTIONS(1181), - [sym_float] = ACTIONS(1181), - [sym_char] = ACTIONS(1181), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1181), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [sym_keyword] = ACTIONS(1093), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [307] = { - [sym__expression] = STATE(2529), - [sym_block] = STATE(2529), - [sym__identifier] = STATE(47), - [sym_identifier] = STATE(47), - [sym_special_identifier] = STATE(47), - [sym_boolean] = STATE(2529), - [sym_nil] = STATE(2529), - [sym__atom] = STATE(2529), - [sym_quoted_atom] = STATE(2529), - [sym__quoted_i_double] = STATE(1146), - [sym__quoted_i_single] = STATE(1145), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2529), - [sym_charlist] = STATE(2529), - [sym_sigil] = STATE(2529), - [sym_keywords] = STATE(1416), - [sym_pair] = STATE(2125), - [sym__keyword] = STATE(492), - [sym_quoted_keyword] = STATE(492), - [sym_list] = STATE(2529), - [sym_tuple] = STATE(2529), - [sym_bitstring] = STATE(2529), - [sym_map] = STATE(2529), - [sym_unary_operator] = STATE(2529), - [sym_binary_operator] = STATE(2529), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2529), - [sym_call] = STATE(2529), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(41), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2529), - [sym_anonymous_function] = STATE(2529), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(438), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(1409), - [sym_integer] = ACTIONS(1409), - [sym_float] = ACTIONS(1409), - [sym_char] = ACTIONS(1409), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1409), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(444), - [sym_keyword] = ACTIONS(446), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(448), - [anon_sym_PLUS] = ACTIONS(450), - [anon_sym_DASH] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(450), - [anon_sym_CARET] = ACTIONS(450), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), - [anon_sym_not] = ACTIONS(450), - [anon_sym_AT] = ACTIONS(452), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(454), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [308] = { - [sym__terminator] = STATE(859), - [sym__expression] = STATE(2496), - [sym_block] = STATE(2496), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(2496), - [sym_nil] = STATE(2496), - [sym__atom] = STATE(2496), - [sym_quoted_atom] = STATE(2496), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2496), - [sym_charlist] = STATE(2496), - [sym_sigil] = STATE(2496), - [sym_list] = STATE(2496), - [sym_tuple] = STATE(2496), - [sym_bitstring] = STATE(2496), - [sym_map] = STATE(2496), - [sym_unary_operator] = STATE(2496), - [sym_binary_operator] = STATE(2496), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2496), - [sym_call] = STATE(2496), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(2496), - [sym_body] = STATE(3798), - [sym_anonymous_function] = STATE(2496), - [aux_sym__terminator_repeat1] = STATE(1028), - [aux_sym__terminator_token1] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_RPAREN] = ACTIONS(1063), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1415), - [sym_integer] = ACTIONS(1415), - [sym_float] = ACTIONS(1415), - [sym_char] = ACTIONS(1415), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1415), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [309] = { - [sym__expression] = STATE(3171), - [sym_block] = STATE(3171), - [sym__identifier] = STATE(54), - [sym_identifier] = STATE(54), - [sym_special_identifier] = STATE(54), - [sym_boolean] = STATE(3171), - [sym_nil] = STATE(3171), - [sym__atom] = STATE(3171), - [sym_quoted_atom] = STATE(3171), - [sym__quoted_i_double] = STATE(1450), - [sym__quoted_i_single] = STATE(1451), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3171), - [sym_charlist] = STATE(3171), - [sym_sigil] = STATE(3171), - [sym_keywords] = STATE(1598), - [sym_pair] = STATE(2918), - [sym__keyword] = STATE(832), - [sym_quoted_keyword] = STATE(832), - [sym_list] = STATE(3171), - [sym_tuple] = STATE(3171), - [sym_bitstring] = STATE(3171), - [sym_map] = STATE(3171), - [sym_unary_operator] = STATE(3171), - [sym_binary_operator] = STATE(3171), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3171), - [sym_call] = STATE(3171), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3171), - [sym_anonymous_function] = STATE(3171), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(1427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1427), - [sym_unused_identifier] = ACTIONS(1429), - [anon_sym___MODULE__] = ACTIONS(1431), - [anon_sym___DIR__] = ACTIONS(1431), - [anon_sym___ENV__] = ACTIONS(1431), - [anon_sym___CALLER__] = ACTIONS(1431), - [anon_sym___STACKTRACE__] = ACTIONS(1431), - [sym_alias] = ACTIONS(1433), - [sym_integer] = ACTIONS(1433), - [sym_float] = ACTIONS(1433), - [sym_char] = ACTIONS(1433), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1433), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1435), - [sym_keyword] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_CARET] = ACTIONS(1441), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1441), - [anon_sym_not] = ACTIONS(1441), - [anon_sym_AT] = ACTIONS(1443), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1445), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [310] = { - [sym__expression] = STATE(3167), - [sym_block] = STATE(3167), - [sym__identifier] = STATE(54), - [sym_identifier] = STATE(54), - [sym_special_identifier] = STATE(54), - [sym_boolean] = STATE(3167), - [sym_nil] = STATE(3167), - [sym__atom] = STATE(3167), - [sym_quoted_atom] = STATE(3167), - [sym__quoted_i_double] = STATE(1450), - [sym__quoted_i_single] = STATE(1451), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3167), - [sym_charlist] = STATE(3167), - [sym_sigil] = STATE(3167), - [sym_keywords] = STATE(1793), - [sym_pair] = STATE(2918), - [sym__keyword] = STATE(832), - [sym_quoted_keyword] = STATE(832), - [sym_list] = STATE(3167), - [sym_tuple] = STATE(3167), - [sym_bitstring] = STATE(3167), - [sym_map] = STATE(3167), - [sym_unary_operator] = STATE(3167), - [sym_binary_operator] = STATE(3167), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3167), - [sym_call] = STATE(3167), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3167), - [sym_anonymous_function] = STATE(3167), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(1427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1427), - [sym_unused_identifier] = ACTIONS(1429), - [anon_sym___MODULE__] = ACTIONS(1431), - [anon_sym___DIR__] = ACTIONS(1431), - [anon_sym___ENV__] = ACTIONS(1431), - [anon_sym___CALLER__] = ACTIONS(1431), - [anon_sym___STACKTRACE__] = ACTIONS(1431), - [sym_alias] = ACTIONS(1447), - [sym_integer] = ACTIONS(1447), - [sym_float] = ACTIONS(1447), - [sym_char] = ACTIONS(1447), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1435), - [sym_keyword] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_CARET] = ACTIONS(1441), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1441), - [anon_sym_not] = ACTIONS(1441), - [anon_sym_AT] = ACTIONS(1443), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1445), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [311] = { - [sym__expression] = STATE(2108), - [sym_block] = STATE(2108), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2108), - [sym_nil] = STATE(2108), - [sym__atom] = STATE(2108), - [sym_quoted_atom] = STATE(2108), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2108), - [sym_charlist] = STATE(2108), - [sym_sigil] = STATE(2108), - [sym_list] = STATE(2108), - [sym_tuple] = STATE(2108), - [sym_bitstring] = STATE(2108), - [sym_map] = STATE(2108), - [sym_unary_operator] = STATE(2108), - [sym_binary_operator] = STATE(2108), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2108), - [sym_call] = STATE(2108), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [292] = { + [sym__expression] = STATE(2639), + [sym_block] = STATE(2639), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2639), + [sym_nil] = STATE(2639), + [sym__atom] = STATE(2639), + [sym_quoted_atom] = STATE(2639), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2639), + [sym_charlist] = STATE(2639), + [sym_sigil] = STATE(2639), + [sym_list] = STATE(2639), + [sym_tuple] = STATE(2639), + [sym_bitstring] = STATE(2639), + [sym_map] = STATE(2639), + [sym_unary_operator] = STATE(2639), + [sym_binary_operator] = STATE(2639), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2639), + [sym_call] = STATE(2639), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(2108), - [sym_anonymous_function] = STATE(2108), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(2639), + [sym_anonymous_function] = STATE(2639), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), [aux_sym_identifier_token1] = ACTIONS(67), @@ -65637,12 +63805,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(1449), - [anon_sym_catch] = ACTIONS(1449), - [anon_sym_else] = ACTIONS(1449), - [anon_sym_end] = ACTIONS(1449), + [anon_sym_after] = ACTIONS(1407), + [anon_sym_catch] = ACTIONS(1407), + [anon_sym_else] = ACTIONS(1407), + [anon_sym_end] = ACTIONS(1407), [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(1449), + [anon_sym_rescue] = ACTIONS(1407), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), @@ -65650,67 +63818,197 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(982), }, - [312] = { - [sym__expression] = STATE(2529), - [sym_block] = STATE(2529), - [sym__identifier] = STATE(47), - [sym_identifier] = STATE(47), - [sym_special_identifier] = STATE(47), - [sym_boolean] = STATE(2529), - [sym_nil] = STATE(2529), - [sym__atom] = STATE(2529), - [sym_quoted_atom] = STATE(2529), - [sym__quoted_i_double] = STATE(1146), - [sym__quoted_i_single] = STATE(1145), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2529), - [sym_charlist] = STATE(2529), - [sym_sigil] = STATE(2529), - [sym_keywords] = STATE(1434), - [sym_pair] = STATE(2125), - [sym__keyword] = STATE(492), - [sym_quoted_keyword] = STATE(492), - [sym_list] = STATE(2529), - [sym_tuple] = STATE(2529), - [sym_bitstring] = STATE(2529), - [sym_map] = STATE(2529), - [sym_unary_operator] = STATE(2529), - [sym_binary_operator] = STATE(2529), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2529), - [sym_call] = STATE(2529), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(41), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2529), - [sym_anonymous_function] = STATE(2529), + [293] = { + [sym__expression] = STATE(3271), + [sym_block] = STATE(3271), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3271), + [sym_nil] = STATE(3271), + [sym__atom] = STATE(3271), + [sym_quoted_atom] = STATE(3271), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3271), + [sym_charlist] = STATE(3271), + [sym_sigil] = STATE(3271), + [sym_keywords] = STATE(3102), + [sym_pair] = STATE(3060), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3271), + [sym_tuple] = STATE(3271), + [sym_bitstring] = STATE(3271), + [sym_map] = STATE(3271), + [sym_unary_operator] = STATE(3271), + [sym_binary_operator] = STATE(3271), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3271), + [sym_call] = STATE(3271), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3271), + [sym_anonymous_function] = STATE(3271), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(438), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), [sym_alias] = ACTIONS(1409), [sym_integer] = ACTIONS(1409), [sym_float] = ACTIONS(1409), [sym_char] = ACTIONS(1409), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(1409), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [294] = { + [sym__expression] = STATE(1331), + [sym_block] = STATE(1331), + [sym__identifier] = STATE(18), + [sym_identifier] = STATE(18), + [sym_special_identifier] = STATE(18), + [sym_boolean] = STATE(1331), + [sym_nil] = STATE(1331), + [sym__atom] = STATE(1331), + [sym_quoted_atom] = STATE(1331), + [sym__quoted_i_double] = STATE(1096), + [sym__quoted_i_single] = STATE(1095), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(1331), + [sym_charlist] = STATE(1331), + [sym_sigil] = STATE(1331), + [sym_keywords] = STATE(1267), + [sym_pair] = STATE(1196), + [sym__keyword] = STATE(826), + [sym_quoted_keyword] = STATE(826), + [sym_list] = STATE(1331), + [sym_tuple] = STATE(1331), + [sym_bitstring] = STATE(1331), + [sym_map] = STATE(1331), + [sym_unary_operator] = STATE(1331), + [sym_binary_operator] = STATE(1331), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(1331), + [sym_call] = STATE(1331), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(1331), + [sym_anonymous_function] = STATE(1331), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(1411), + [sym_integer] = ACTIONS(1411), + [sym_float] = ACTIONS(1411), + [sym_char] = ACTIONS(1411), [anon_sym_true] = ACTIONS(203), [anon_sym_false] = ACTIONS(203), [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1409), + [sym_atom] = ACTIONS(1411), [anon_sym_DQUOTE] = ACTIONS(207), [anon_sym_SQUOTE] = ACTIONS(209), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), @@ -65721,18 +64019,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(444), - [sym_keyword] = ACTIONS(446), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(448), - [anon_sym_PLUS] = ACTIONS(450), - [anon_sym_DASH] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(450), - [anon_sym_CARET] = ACTIONS(450), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), - [anon_sym_not] = ACTIONS(450), - [anon_sym_AT] = ACTIONS(452), + [anon_sym_TILDE] = ACTIONS(219), + [sym_keyword] = ACTIONS(221), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -65772,189 +64070,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), + [anon_sym_fn] = ACTIONS(235), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(454), + [sym__before_unary_op] = ACTIONS(241), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), + [sym__quoted_atom_start] = ACTIONS(243), }, - [313] = { - [sym__expression] = STATE(2113), - [sym_block] = STATE(2113), - [sym__identifier] = STATE(34), - [sym_identifier] = STATE(34), - [sym_special_identifier] = STATE(34), - [sym_boolean] = STATE(2113), - [sym_nil] = STATE(2113), - [sym__atom] = STATE(2113), - [sym_quoted_atom] = STATE(2113), - [sym__quoted_i_double] = STATE(1678), - [sym__quoted_i_single] = STATE(1677), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(2113), - [sym_charlist] = STATE(2113), - [sym_sigil] = STATE(2113), - [sym_keywords] = STATE(1956), - [sym_pair] = STATE(1922), - [sym__keyword] = STATE(901), - [sym_quoted_keyword] = STATE(901), - [sym_list] = STATE(2113), - [sym_tuple] = STATE(2113), - [sym_bitstring] = STATE(2113), - [sym_map] = STATE(2113), - [sym_unary_operator] = STATE(2113), - [sym_binary_operator] = STATE(2113), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(2113), - [sym_call] = STATE(2113), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(36), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(2113), - [sym_anonymous_function] = STATE(2113), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(361), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(1451), - [sym_integer] = ACTIONS(1451), - [sym_float] = ACTIONS(1451), - [sym_char] = ACTIONS(1451), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), - [sym_atom] = ACTIONS(1451), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(383), - [sym_keyword] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(396), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(396), - [anon_sym_not] = ACTIONS(396), - [anon_sym_AT] = ACTIONS(398), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(404), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), - }, - [314] = { - [sym__expression] = STATE(3342), - [sym_block] = STATE(3342), + [295] = { + [sym__expression] = STATE(3830), + [sym_block] = STATE(3830), [sym__identifier] = STATE(64), [sym_identifier] = STATE(64), [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3342), - [sym_nil] = STATE(3342), - [sym__atom] = STATE(3342), - [sym_quoted_atom] = STATE(3342), - [sym__quoted_i_double] = STATE(3097), - [sym__quoted_i_single] = STATE(3101), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3342), - [sym_charlist] = STATE(3342), - [sym_sigil] = STATE(3342), - [sym_keywords] = STATE(3341), - [sym_pair] = STATE(2825), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(3342), - [sym_tuple] = STATE(3342), - [sym_bitstring] = STATE(3342), - [sym_map] = STATE(3342), - [sym_unary_operator] = STATE(3342), - [sym_binary_operator] = STATE(3342), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3342), - [sym_call] = STATE(3342), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), + [sym_boolean] = STATE(3830), + [sym_nil] = STATE(3830), + [sym__atom] = STATE(3830), + [sym_quoted_atom] = STATE(3830), + [sym__quoted_i_double] = STATE(3376), + [sym__quoted_i_single] = STATE(3377), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3830), + [sym_charlist] = STATE(3830), + [sym_sigil] = STATE(3830), + [sym_keywords] = STATE(5451), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(3830), + [sym_tuple] = STATE(3830), + [sym_bitstring] = STATE(3830), + [sym_map] = STATE(3830), + [sym_unary_operator] = STATE(3830), + [sym_binary_operator] = STATE(3830), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3830), + [sym_call] = STATE(3830), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3342), - [sym_anonymous_function] = STATE(3342), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3830), + [sym_anonymous_function] = STATE(3830), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1413), [aux_sym_identifier_token1] = ACTIONS(826), [anon_sym_DOT_DOT_DOT] = ACTIONS(826), [sym_unused_identifier] = ACTIONS(828), @@ -65963,14 +64131,2484 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ENV__] = ACTIONS(830), [anon_sym___CALLER__] = ACTIONS(830), [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1453), - [sym_integer] = ACTIONS(1453), - [sym_float] = ACTIONS(1453), - [sym_char] = ACTIONS(1453), + [sym_alias] = ACTIONS(1415), + [sym_integer] = ACTIONS(1415), + [sym_float] = ACTIONS(1415), + [sym_char] = ACTIONS(1415), [anon_sym_true] = ACTIONS(834), [anon_sym_false] = ACTIONS(834), [anon_sym_nil] = ACTIONS(836), - [sym_atom] = ACTIONS(1453), + [sym_atom] = ACTIONS(1415), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [296] = { + [sym__expression] = STATE(3274), + [sym_block] = STATE(3274), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3274), + [sym_nil] = STATE(3274), + [sym__atom] = STATE(3274), + [sym_quoted_atom] = STATE(3274), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3274), + [sym_charlist] = STATE(3274), + [sym_sigil] = STATE(3274), + [sym_keywords] = STATE(3097), + [sym_pair] = STATE(3060), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3274), + [sym_tuple] = STATE(3274), + [sym_bitstring] = STATE(3274), + [sym_map] = STATE(3274), + [sym_unary_operator] = STATE(3274), + [sym_binary_operator] = STATE(3274), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3274), + [sym_call] = STATE(3274), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3274), + [sym_anonymous_function] = STATE(3274), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1417), + [sym_integer] = ACTIONS(1417), + [sym_float] = ACTIONS(1417), + [sym_char] = ACTIONS(1417), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(1417), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [297] = { + [sym__expression] = STATE(2830), + [sym_block] = STATE(2830), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(2830), + [sym_nil] = STATE(2830), + [sym__atom] = STATE(2830), + [sym_quoted_atom] = STATE(2830), + [sym__quoted_i_double] = STATE(1276), + [sym__quoted_i_single] = STATE(1277), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(2830), + [sym_charlist] = STATE(2830), + [sym_sigil] = STATE(2830), + [sym_keywords] = STATE(1467), + [sym_pair] = STATE(2388), + [sym__keyword] = STATE(505), + [sym_quoted_keyword] = STATE(505), + [sym_list] = STATE(2830), + [sym_tuple] = STATE(2830), + [sym_bitstring] = STATE(2830), + [sym_map] = STATE(2830), + [sym_unary_operator] = STATE(2830), + [sym_binary_operator] = STATE(2830), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(2830), + [sym_call] = STATE(2830), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(2830), + [sym_anonymous_function] = STATE(2830), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(482), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), + [sym_alias] = ACTIONS(1419), + [sym_integer] = ACTIONS(1419), + [sym_float] = ACTIONS(1419), + [sym_char] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(486), + [sym_keyword] = ACTIONS(488), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(495), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_CARET] = ACTIONS(495), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(495), + [anon_sym_not] = ACTIONS(495), + [anon_sym_AT] = ACTIONS(497), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(499), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [298] = { + [sym__expression] = STATE(1341), + [sym_block] = STATE(1341), + [sym__identifier] = STATE(18), + [sym_identifier] = STATE(18), + [sym_special_identifier] = STATE(18), + [sym_boolean] = STATE(1341), + [sym_nil] = STATE(1341), + [sym__atom] = STATE(1341), + [sym_quoted_atom] = STATE(1341), + [sym__quoted_i_double] = STATE(1096), + [sym__quoted_i_single] = STATE(1095), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(1341), + [sym_charlist] = STATE(1341), + [sym_sigil] = STATE(1341), + [sym_keywords] = STATE(1262), + [sym_pair] = STATE(1196), + [sym__keyword] = STATE(826), + [sym_quoted_keyword] = STATE(826), + [sym_list] = STATE(1341), + [sym_tuple] = STATE(1341), + [sym_bitstring] = STATE(1341), + [sym_map] = STATE(1341), + [sym_unary_operator] = STATE(1341), + [sym_binary_operator] = STATE(1341), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(1341), + [sym_call] = STATE(1341), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(1341), + [sym_anonymous_function] = STATE(1341), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(1421), + [sym_integer] = ACTIONS(1421), + [sym_float] = ACTIONS(1421), + [sym_char] = ACTIONS(1421), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(219), + [sym_keyword] = ACTIONS(221), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [299] = { + [sym__expression] = STATE(2639), + [sym_block] = STATE(2639), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2639), + [sym_nil] = STATE(2639), + [sym__atom] = STATE(2639), + [sym_quoted_atom] = STATE(2639), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2639), + [sym_charlist] = STATE(2639), + [sym_sigil] = STATE(2639), + [sym_list] = STATE(2639), + [sym_tuple] = STATE(2639), + [sym_bitstring] = STATE(2639), + [sym_map] = STATE(2639), + [sym_unary_operator] = STATE(2639), + [sym_binary_operator] = STATE(2639), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2639), + [sym_call] = STATE(2639), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(2639), + [sym_anonymous_function] = STATE(2639), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(1423), + [anon_sym_catch] = ACTIONS(1423), + [anon_sym_else] = ACTIONS(1423), + [anon_sym_end] = ACTIONS(1423), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(1423), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [300] = { + [sym__expression] = STATE(3453), + [sym_block] = STATE(3453), + [sym__identifier] = STATE(70), + [sym_identifier] = STATE(70), + [sym_special_identifier] = STATE(70), + [sym_boolean] = STATE(3453), + [sym_nil] = STATE(3453), + [sym__atom] = STATE(3453), + [sym_quoted_atom] = STATE(3453), + [sym__quoted_i_double] = STATE(1777), + [sym__quoted_i_single] = STATE(1778), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(3453), + [sym_charlist] = STATE(3453), + [sym_sigil] = STATE(3453), + [sym_keywords] = STATE(2092), + [sym_pair] = STATE(2680), + [sym__keyword] = STATE(642), + [sym_quoted_keyword] = STATE(642), + [sym_list] = STATE(3453), + [sym_tuple] = STATE(3453), + [sym_bitstring] = STATE(3453), + [sym_map] = STATE(3453), + [sym_unary_operator] = STATE(3453), + [sym_binary_operator] = STATE(3453), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(3453), + [sym_call] = STATE(3453), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(3453), + [sym_anonymous_function] = STATE(3453), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(1425), + [sym_integer] = ACTIONS(1425), + [sym_float] = ACTIONS(1425), + [sym_char] = ACTIONS(1425), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(1425), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(389), + [sym_keyword] = ACTIONS(674), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(678), + [anon_sym_CARET] = ACTIONS(678), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(678), + [anon_sym_not] = ACTIONS(678), + [anon_sym_AT] = ACTIONS(680), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(406), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(682), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(412), + }, + [301] = { + [sym__expression] = STATE(1424), + [sym_block] = STATE(1424), + [sym__identifier] = STATE(18), + [sym_identifier] = STATE(18), + [sym_special_identifier] = STATE(18), + [sym_boolean] = STATE(1424), + [sym_nil] = STATE(1424), + [sym__atom] = STATE(1424), + [sym_quoted_atom] = STATE(1424), + [sym__quoted_i_double] = STATE(1096), + [sym__quoted_i_single] = STATE(1095), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(1424), + [sym_charlist] = STATE(1424), + [sym_sigil] = STATE(1424), + [sym_keywords] = STATE(1143), + [sym_pair] = STATE(1196), + [sym__keyword] = STATE(826), + [sym_quoted_keyword] = STATE(826), + [sym_list] = STATE(1424), + [sym_tuple] = STATE(1424), + [sym_bitstring] = STATE(1424), + [sym_map] = STATE(1424), + [sym_unary_operator] = STATE(1424), + [sym_binary_operator] = STATE(1424), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(1424), + [sym_call] = STATE(1424), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(1424), + [sym_anonymous_function] = STATE(1424), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(1427), + [sym_integer] = ACTIONS(1427), + [sym_float] = ACTIONS(1427), + [sym_char] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(1427), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(219), + [sym_keyword] = ACTIONS(221), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [302] = { + [sym__expression] = STATE(3213), + [sym_block] = STATE(3213), + [sym__identifier] = STATE(61), + [sym_identifier] = STATE(61), + [sym_special_identifier] = STATE(61), + [sym_boolean] = STATE(3213), + [sym_nil] = STATE(3213), + [sym__atom] = STATE(3213), + [sym_quoted_atom] = STATE(3213), + [sym__quoted_i_double] = STATE(2972), + [sym__quoted_i_single] = STATE(2970), + [sym__quoted_i_heredoc_single] = STATE(3316), + [sym__quoted_i_heredoc_double] = STATE(3315), + [sym_string] = STATE(3213), + [sym_charlist] = STATE(3213), + [sym_sigil] = STATE(3213), + [sym_keywords] = STATE(3214), + [sym_pair] = STATE(2745), + [sym__keyword] = STATE(465), + [sym_quoted_keyword] = STATE(465), + [sym_list] = STATE(3213), + [sym_tuple] = STATE(3213), + [sym_bitstring] = STATE(3213), + [sym_map] = STATE(3213), + [sym_unary_operator] = STATE(3213), + [sym_binary_operator] = STATE(3213), + [sym_operator_identifier] = STATE(5628), + [sym_dot] = STATE(3213), + [sym_call] = STATE(3213), + [sym__call_without_parentheses] = STATE(3314), + [sym__call_with_parentheses] = STATE(3313), + [sym__local_call_without_parentheses] = STATE(3312), + [sym__local_call_with_parentheses] = STATE(2420), + [sym__local_call_just_do_block] = STATE(3311), + [sym__remote_call_without_parentheses] = STATE(3310), + [sym__remote_call_with_parentheses] = STATE(2423), + [sym__remote_dot] = STATE(60), + [sym__anonymous_call] = STATE(2425), + [sym__anonymous_dot] = STATE(5498), + [sym__double_call] = STATE(3309), + [sym_access_call] = STATE(3213), + [sym_anonymous_function] = STATE(3213), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(1429), + [sym_integer] = ACTIONS(1429), + [sym_float] = ACTIONS(1429), + [sym_char] = ACTIONS(1429), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(1429), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(633), + [sym_keyword] = ACTIONS(635), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(643), + [anon_sym_not] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(649), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(655), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(657), + }, + [303] = { + [sym__expression] = STATE(2639), + [sym_block] = STATE(2639), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2639), + [sym_nil] = STATE(2639), + [sym__atom] = STATE(2639), + [sym_quoted_atom] = STATE(2639), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2639), + [sym_charlist] = STATE(2639), + [sym_sigil] = STATE(2639), + [sym_list] = STATE(2639), + [sym_tuple] = STATE(2639), + [sym_bitstring] = STATE(2639), + [sym_map] = STATE(2639), + [sym_unary_operator] = STATE(2639), + [sym_binary_operator] = STATE(2639), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2639), + [sym_call] = STATE(2639), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(2639), + [sym_anonymous_function] = STATE(2639), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(1431), + [anon_sym_catch] = ACTIONS(1431), + [anon_sym_else] = ACTIONS(1431), + [anon_sym_end] = ACTIONS(1431), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(1431), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [304] = { + [sym__expression] = STATE(2830), + [sym_block] = STATE(2830), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(2830), + [sym_nil] = STATE(2830), + [sym__atom] = STATE(2830), + [sym_quoted_atom] = STATE(2830), + [sym__quoted_i_double] = STATE(1276), + [sym__quoted_i_single] = STATE(1277), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(2830), + [sym_charlist] = STATE(2830), + [sym_sigil] = STATE(2830), + [sym_keywords] = STATE(1324), + [sym_pair] = STATE(2388), + [sym__keyword] = STATE(505), + [sym_quoted_keyword] = STATE(505), + [sym_list] = STATE(2830), + [sym_tuple] = STATE(2830), + [sym_bitstring] = STATE(2830), + [sym_map] = STATE(2830), + [sym_unary_operator] = STATE(2830), + [sym_binary_operator] = STATE(2830), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(2830), + [sym_call] = STATE(2830), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(2830), + [sym_anonymous_function] = STATE(2830), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(482), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), + [sym_alias] = ACTIONS(1419), + [sym_integer] = ACTIONS(1419), + [sym_float] = ACTIONS(1419), + [sym_char] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(486), + [sym_keyword] = ACTIONS(488), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(495), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_CARET] = ACTIONS(495), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(495), + [anon_sym_not] = ACTIONS(495), + [anon_sym_AT] = ACTIONS(497), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(499), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [305] = { + [sym__expression] = STATE(1531), + [sym_block] = STATE(1531), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1531), + [sym_nil] = STATE(1531), + [sym__atom] = STATE(1531), + [sym_quoted_atom] = STATE(1531), + [sym__quoted_i_double] = STATE(1276), + [sym__quoted_i_single] = STATE(1277), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(1531), + [sym_charlist] = STATE(1531), + [sym_sigil] = STATE(1531), + [sym_keywords] = STATE(1436), + [sym_pair] = STATE(1332), + [sym__keyword] = STATE(887), + [sym_quoted_keyword] = STATE(887), + [sym_list] = STATE(1531), + [sym_tuple] = STATE(1531), + [sym_bitstring] = STATE(1531), + [sym_map] = STATE(1531), + [sym_unary_operator] = STATE(1531), + [sym_binary_operator] = STATE(1531), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(1531), + [sym_call] = STATE(1531), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(1531), + [sym_anonymous_function] = STATE(1531), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(1433), + [sym_integer] = ACTIONS(1433), + [sym_float] = ACTIONS(1433), + [sym_char] = ACTIONS(1433), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1433), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(274), + [sym_keyword] = ACTIONS(276), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [306] = { + [sym__expression] = STATE(1424), + [sym_block] = STATE(1424), + [sym__identifier] = STATE(18), + [sym_identifier] = STATE(18), + [sym_special_identifier] = STATE(18), + [sym_boolean] = STATE(1424), + [sym_nil] = STATE(1424), + [sym__atom] = STATE(1424), + [sym_quoted_atom] = STATE(1424), + [sym__quoted_i_double] = STATE(1096), + [sym__quoted_i_single] = STATE(1095), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(1424), + [sym_charlist] = STATE(1424), + [sym_sigil] = STATE(1424), + [sym_keywords] = STATE(1203), + [sym_pair] = STATE(1196), + [sym__keyword] = STATE(826), + [sym_quoted_keyword] = STATE(826), + [sym_list] = STATE(1424), + [sym_tuple] = STATE(1424), + [sym_bitstring] = STATE(1424), + [sym_map] = STATE(1424), + [sym_unary_operator] = STATE(1424), + [sym_binary_operator] = STATE(1424), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(1424), + [sym_call] = STATE(1424), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(1424), + [sym_anonymous_function] = STATE(1424), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(1427), + [sym_integer] = ACTIONS(1427), + [sym_float] = ACTIONS(1427), + [sym_char] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(1427), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(219), + [sym_keyword] = ACTIONS(221), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [307] = { + [sym__expression] = STATE(1913), + [sym_block] = STATE(1913), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1913), + [sym_nil] = STATE(1913), + [sym__atom] = STATE(1913), + [sym_quoted_atom] = STATE(1913), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1913), + [sym_charlist] = STATE(1913), + [sym_sigil] = STATE(1913), + [sym_keywords] = STATE(1705), + [sym_pair] = STATE(1652), + [sym__keyword] = STATE(883), + [sym_quoted_keyword] = STATE(883), + [sym_list] = STATE(1913), + [sym_tuple] = STATE(1913), + [sym_bitstring] = STATE(1913), + [sym_map] = STATE(1913), + [sym_unary_operator] = STATE(1913), + [sym_binary_operator] = STATE(1913), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1913), + [sym_call] = STATE(1913), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1913), + [sym_anonymous_function] = STATE(1913), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1337), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(1435), + [sym_integer] = ACTIONS(1435), + [sym_float] = ACTIONS(1435), + [sym_char] = ACTIONS(1435), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1435), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [sym_keyword] = ACTIONS(1341), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [308] = { + [sym__expression] = STATE(3689), + [sym_block] = STATE(3689), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(3689), + [sym_nil] = STATE(3689), + [sym__atom] = STATE(3689), + [sym_quoted_atom] = STATE(3689), + [sym__quoted_i_double] = STATE(1538), + [sym__quoted_i_single] = STATE(1537), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(3689), + [sym_charlist] = STATE(3689), + [sym_sigil] = STATE(3689), + [sym_keywords] = STATE(1860), + [sym_pair] = STATE(3625), + [sym__keyword] = STATE(888), + [sym_quoted_keyword] = STATE(888), + [sym_list] = STATE(3689), + [sym_tuple] = STATE(3689), + [sym_bitstring] = STATE(3689), + [sym_map] = STATE(3689), + [sym_unary_operator] = STATE(3689), + [sym_binary_operator] = STATE(3689), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(3689), + [sym_call] = STATE(3689), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(3689), + [sym_anonymous_function] = STATE(3689), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1437), + [sym_unused_identifier] = ACTIONS(1439), + [anon_sym___MODULE__] = ACTIONS(1441), + [anon_sym___DIR__] = ACTIONS(1441), + [anon_sym___ENV__] = ACTIONS(1441), + [anon_sym___CALLER__] = ACTIONS(1441), + [anon_sym___STACKTRACE__] = ACTIONS(1441), + [sym_alias] = ACTIONS(1443), + [sym_integer] = ACTIONS(1443), + [sym_float] = ACTIONS(1443), + [sym_char] = ACTIONS(1443), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1443), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1445), + [sym_keyword] = ACTIONS(1447), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1451), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), + [anon_sym_not] = ACTIONS(1451), + [anon_sym_AT] = ACTIONS(1453), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1455), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [309] = { + [sym__expression] = STATE(3685), + [sym_block] = STATE(3685), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(3685), + [sym_nil] = STATE(3685), + [sym__atom] = STATE(3685), + [sym_quoted_atom] = STATE(3685), + [sym__quoted_i_double] = STATE(1538), + [sym__quoted_i_single] = STATE(1537), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(3685), + [sym_charlist] = STATE(3685), + [sym_sigil] = STATE(3685), + [sym_keywords] = STATE(1865), + [sym_pair] = STATE(3625), + [sym__keyword] = STATE(888), + [sym_quoted_keyword] = STATE(888), + [sym_list] = STATE(3685), + [sym_tuple] = STATE(3685), + [sym_bitstring] = STATE(3685), + [sym_map] = STATE(3685), + [sym_unary_operator] = STATE(3685), + [sym_binary_operator] = STATE(3685), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(3685), + [sym_call] = STATE(3685), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(3685), + [sym_anonymous_function] = STATE(3685), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1437), + [sym_unused_identifier] = ACTIONS(1439), + [anon_sym___MODULE__] = ACTIONS(1441), + [anon_sym___DIR__] = ACTIONS(1441), + [anon_sym___ENV__] = ACTIONS(1441), + [anon_sym___CALLER__] = ACTIONS(1441), + [anon_sym___STACKTRACE__] = ACTIONS(1441), + [sym_alias] = ACTIONS(1457), + [sym_integer] = ACTIONS(1457), + [sym_float] = ACTIONS(1457), + [sym_char] = ACTIONS(1457), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1457), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1445), + [sym_keyword] = ACTIONS(1447), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1451), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), + [anon_sym_not] = ACTIONS(1451), + [anon_sym_AT] = ACTIONS(1453), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1455), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [310] = { + [sym__expression] = STATE(1520), + [sym_block] = STATE(1520), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1520), + [sym_nil] = STATE(1520), + [sym__atom] = STATE(1520), + [sym_quoted_atom] = STATE(1520), + [sym__quoted_i_double] = STATE(1276), + [sym__quoted_i_single] = STATE(1277), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(1520), + [sym_charlist] = STATE(1520), + [sym_sigil] = STATE(1520), + [sym_keywords] = STATE(1467), + [sym_pair] = STATE(1332), + [sym__keyword] = STATE(887), + [sym_quoted_keyword] = STATE(887), + [sym_list] = STATE(1520), + [sym_tuple] = STATE(1520), + [sym_bitstring] = STATE(1520), + [sym_map] = STATE(1520), + [sym_unary_operator] = STATE(1520), + [sym_binary_operator] = STATE(1520), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(1520), + [sym_call] = STATE(1520), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(1520), + [sym_anonymous_function] = STATE(1520), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(1459), + [sym_integer] = ACTIONS(1459), + [sym_float] = ACTIONS(1459), + [sym_char] = ACTIONS(1459), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1459), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(274), + [sym_keyword] = ACTIONS(276), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [311] = { + [sym__expression] = STATE(4122), + [sym_block] = STATE(4122), + [sym__identifier] = STATE(64), + [sym_identifier] = STATE(64), + [sym_special_identifier] = STATE(64), + [sym_boolean] = STATE(4122), + [sym_nil] = STATE(4122), + [sym__atom] = STATE(4122), + [sym_quoted_atom] = STATE(4122), + [sym__quoted_i_double] = STATE(3376), + [sym__quoted_i_single] = STATE(3377), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(4122), + [sym_charlist] = STATE(4122), + [sym_sigil] = STATE(4122), + [sym_keywords] = STATE(5462), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(4122), + [sym_tuple] = STATE(4122), + [sym_bitstring] = STATE(4122), + [sym_map] = STATE(4122), + [sym_unary_operator] = STATE(4122), + [sym_binary_operator] = STATE(4122), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(4122), + [sym_call] = STATE(4122), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), + [sym__remote_dot] = STATE(55), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(4122), + [sym_anonymous_function] = STATE(4122), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1413), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1461), + [sym_integer] = ACTIONS(1461), + [sym_float] = ACTIONS(1461), + [sym_char] = ACTIONS(1461), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(1461), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [312] = { + [sym__expression] = STATE(3786), + [sym_block] = STATE(3786), + [sym__identifier] = STATE(64), + [sym_identifier] = STATE(64), + [sym_special_identifier] = STATE(64), + [sym_boolean] = STATE(3786), + [sym_nil] = STATE(3786), + [sym__atom] = STATE(3786), + [sym_quoted_atom] = STATE(3786), + [sym__quoted_i_double] = STATE(3376), + [sym__quoted_i_single] = STATE(3377), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3786), + [sym_charlist] = STATE(3786), + [sym_sigil] = STATE(3786), + [sym_keywords] = STATE(3785), + [sym_pair] = STATE(3436), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(3786), + [sym_tuple] = STATE(3786), + [sym_bitstring] = STATE(3786), + [sym_map] = STATE(3786), + [sym_unary_operator] = STATE(3786), + [sym_binary_operator] = STATE(3786), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3786), + [sym_call] = STATE(3786), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), + [sym__remote_dot] = STATE(55), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3786), + [sym_anonymous_function] = STATE(3786), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1413), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1463), + [sym_integer] = ACTIONS(1463), + [sym_float] = ACTIONS(1463), + [sym_char] = ACTIONS(1463), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(1463), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [313] = { + [sym__terminator] = STATE(680), + [sym__expression] = STATE(2754), + [sym_block] = STATE(2754), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(2754), + [sym_nil] = STATE(2754), + [sym__atom] = STATE(2754), + [sym_quoted_atom] = STATE(2754), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2754), + [sym_charlist] = STATE(2754), + [sym_sigil] = STATE(2754), + [sym_list] = STATE(2754), + [sym_tuple] = STATE(2754), + [sym_bitstring] = STATE(2754), + [sym_map] = STATE(2754), + [sym_unary_operator] = STATE(2754), + [sym_binary_operator] = STATE(2754), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2754), + [sym_call] = STATE(2754), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(2754), + [sym_body] = STATE(4408), + [sym_anonymous_function] = STATE(2754), + [aux_sym__terminator_repeat1] = STATE(1031), + [aux_sym__terminator_token1] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1437), + [sym_unused_identifier] = ACTIONS(1439), + [anon_sym___MODULE__] = ACTIONS(1441), + [anon_sym___DIR__] = ACTIONS(1441), + [anon_sym___ENV__] = ACTIONS(1441), + [anon_sym___CALLER__] = ACTIONS(1441), + [anon_sym___STACKTRACE__] = ACTIONS(1441), + [sym_alias] = ACTIONS(1467), + [sym_integer] = ACTIONS(1467), + [sym_float] = ACTIONS(1467), + [sym_char] = ACTIONS(1467), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1467), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1445), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1451), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), + [anon_sym_not] = ACTIONS(1451), + [anon_sym_AT] = ACTIONS(1453), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_end] = ACTIONS(1060), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1455), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [314] = { + [sym__expression] = STATE(3791), + [sym_block] = STATE(3791), + [sym__identifier] = STATE(64), + [sym_identifier] = STATE(64), + [sym_special_identifier] = STATE(64), + [sym_boolean] = STATE(3791), + [sym_nil] = STATE(3791), + [sym__atom] = STATE(3791), + [sym_quoted_atom] = STATE(3791), + [sym__quoted_i_double] = STATE(3376), + [sym__quoted_i_single] = STATE(3377), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3791), + [sym_charlist] = STATE(3791), + [sym_sigil] = STATE(3791), + [sym_keywords] = STATE(3790), + [sym_pair] = STATE(3436), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(3791), + [sym_tuple] = STATE(3791), + [sym_bitstring] = STATE(3791), + [sym_map] = STATE(3791), + [sym_unary_operator] = STATE(3791), + [sym_binary_operator] = STATE(3791), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3791), + [sym_call] = STATE(3791), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), + [sym__remote_dot] = STATE(55), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3791), + [sym_anonymous_function] = STATE(3791), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1413), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1469), + [sym_integer] = ACTIONS(1469), + [sym_float] = ACTIONS(1469), + [sym_char] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(1469), [anon_sym_DQUOTE] = ACTIONS(838), [anon_sym_SQUOTE] = ACTIONS(840), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), @@ -66041,88 +66679,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(868), }, [315] = { - [sym__expression] = STATE(1352), - [sym_block] = STATE(1352), - [sym__identifier] = STATE(18), - [sym_identifier] = STATE(18), - [sym_special_identifier] = STATE(18), - [sym_boolean] = STATE(1352), - [sym_nil] = STATE(1352), - [sym__atom] = STATE(1352), - [sym_quoted_atom] = STATE(1352), - [sym__quoted_i_double] = STATE(1114), - [sym__quoted_i_single] = STATE(1100), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(1352), - [sym_charlist] = STATE(1352), - [sym_sigil] = STATE(1352), - [sym_keywords] = STATE(1225), - [sym_pair] = STATE(1265), - [sym__keyword] = STATE(794), - [sym_quoted_keyword] = STATE(794), - [sym_list] = STATE(1352), - [sym_tuple] = STATE(1352), - [sym_bitstring] = STATE(1352), - [sym_map] = STATE(1352), - [sym_unary_operator] = STATE(1352), - [sym_binary_operator] = STATE(1352), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(1352), - [sym_call] = STATE(1352), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(1352), - [sym_anonymous_function] = STATE(1352), + [sym__expression] = STATE(1520), + [sym_block] = STATE(1520), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1520), + [sym_nil] = STATE(1520), + [sym__atom] = STATE(1520), + [sym_quoted_atom] = STATE(1520), + [sym__quoted_i_double] = STATE(1276), + [sym__quoted_i_single] = STATE(1277), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(1520), + [sym_charlist] = STATE(1520), + [sym_sigil] = STATE(1520), + [sym_keywords] = STATE(1324), + [sym_pair] = STATE(1332), + [sym__keyword] = STATE(887), + [sym_quoted_keyword] = STATE(887), + [sym_list] = STATE(1520), + [sym_tuple] = STATE(1520), + [sym_bitstring] = STATE(1520), + [sym_map] = STATE(1520), + [sym_unary_operator] = STATE(1520), + [sym_binary_operator] = STATE(1520), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(1520), + [sym_call] = STATE(1520), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(1520), + [sym_anonymous_function] = STATE(1520), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), + [anon_sym_LPAREN] = ACTIONS(249), [aux_sym_identifier_token1] = ACTIONS(195), [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(256), + [sym_unused_identifier] = ACTIONS(251), [anon_sym___MODULE__] = ACTIONS(199), [anon_sym___DIR__] = ACTIONS(199), [anon_sym___ENV__] = ACTIONS(199), [anon_sym___CALLER__] = ACTIONS(199), [anon_sym___STACKTRACE__] = ACTIONS(199), - [sym_alias] = ACTIONS(1455), - [sym_integer] = ACTIONS(1455), - [sym_float] = ACTIONS(1455), - [sym_char] = ACTIONS(1455), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(1455), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), + [sym_alias] = ACTIONS(1459), + [sym_integer] = ACTIONS(1459), + [sym_float] = ACTIONS(1459), + [sym_char] = ACTIONS(1459), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1459), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(276), - [sym_keyword] = ACTIONS(278), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(286), - [anon_sym_not] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), + [anon_sym_TILDE] = ACTIONS(274), + [sym_keyword] = ACTIONS(276), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -66162,97 +66800,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), + [anon_sym_fn] = ACTIONS(291), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(294), + [sym__before_unary_op] = ACTIONS(295), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), + [sym__quoted_atom_start] = ACTIONS(300), }, [316] = { - [sym__expression] = STATE(2472), - [sym_block] = STATE(2472), - [sym__identifier] = STATE(60), - [sym_identifier] = STATE(60), - [sym_special_identifier] = STATE(60), - [sym_boolean] = STATE(2472), - [sym_nil] = STATE(2472), - [sym__atom] = STATE(2472), - [sym_quoted_atom] = STATE(2472), - [sym__quoted_i_double] = STATE(2012), - [sym__quoted_i_single] = STATE(2011), - [sym__quoted_i_heredoc_single] = STATE(2413), - [sym__quoted_i_heredoc_double] = STATE(2414), - [sym_string] = STATE(2472), - [sym_charlist] = STATE(2472), - [sym_sigil] = STATE(2472), - [sym_keywords] = STATE(2376), - [sym_pair] = STATE(2310), - [sym__keyword] = STATE(445), - [sym_quoted_keyword] = STATE(445), - [sym_list] = STATE(2472), - [sym_tuple] = STATE(2472), - [sym_bitstring] = STATE(2472), - [sym_map] = STATE(2472), - [sym_unary_operator] = STATE(2472), - [sym_binary_operator] = STATE(2472), - [sym_operator_identifier] = STATE(5028), - [sym_dot] = STATE(2472), - [sym_call] = STATE(2472), - [sym__call_without_parentheses] = STATE(2412), - [sym__call_with_parentheses] = STATE(2411), - [sym__local_call_without_parentheses] = STATE(2410), - [sym__local_call_with_parentheses] = STATE(1910), - [sym__local_call_just_do_block] = STATE(2409), - [sym__remote_call_without_parentheses] = STATE(2408), - [sym__remote_call_with_parentheses] = STATE(1916), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(1975), - [sym__anonymous_dot] = STATE(4890), - [sym__double_call] = STATE(2407), - [sym_access_call] = STATE(2472), - [sym_anonymous_function] = STATE(2472), + [sym__expression] = STATE(2847), + [sym_block] = STATE(2847), + [sym__identifier] = STATE(41), + [sym_identifier] = STATE(41), + [sym_special_identifier] = STATE(41), + [sym_boolean] = STATE(2847), + [sym_nil] = STATE(2847), + [sym__atom] = STATE(2847), + [sym_quoted_atom] = STATE(2847), + [sym__quoted_i_double] = STATE(1276), + [sym__quoted_i_single] = STATE(1277), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(2847), + [sym_charlist] = STATE(2847), + [sym_sigil] = STATE(2847), + [sym_keywords] = STATE(1324), + [sym_pair] = STATE(2214), + [sym__keyword] = STATE(799), + [sym_quoted_keyword] = STATE(799), + [sym_list] = STATE(2847), + [sym_tuple] = STATE(2847), + [sym_bitstring] = STATE(2847), + [sym_map] = STATE(2847), + [sym_unary_operator] = STATE(2847), + [sym_binary_operator] = STATE(2847), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(2847), + [sym_call] = STATE(2847), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(2847), + [sym_anonymous_function] = STATE(2847), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(556), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(558), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(1457), - [sym_integer] = ACTIONS(1457), - [sym_float] = ACTIONS(1457), - [sym_char] = ACTIONS(1457), - [anon_sym_true] = ACTIONS(562), - [anon_sym_false] = ACTIONS(562), - [anon_sym_nil] = ACTIONS(564), - [sym_atom] = ACTIONS(1457), - [anon_sym_DQUOTE] = ACTIONS(566), - [anon_sym_SQUOTE] = ACTIONS(568), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), - [anon_sym_LBRACE] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(1471), + [sym_integer] = ACTIONS(1471), + [sym_float] = ACTIONS(1471), + [sym_char] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(578), - [sym_keyword] = ACTIONS(580), - [anon_sym_LT_LT] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_CARET] = ACTIONS(588), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), - [anon_sym_not] = ACTIONS(588), - [anon_sym_AT] = ACTIONS(590), + [anon_sym_TILDE] = ACTIONS(444), + [sym_keyword] = ACTIONS(446), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(453), + [anon_sym_not] = ACTIONS(453), + [anon_sym_AT] = ACTIONS(455), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -66292,97 +66930,227 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(594), + [anon_sym_fn] = ACTIONS(291), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(600), + [sym__before_unary_op] = ACTIONS(457), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(602), + [sym__quoted_atom_start] = ACTIONS(300), }, [317] = { - [sym__terminator] = STATE(859), - [sym__expression] = STATE(2496), - [sym_block] = STATE(2496), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(2496), - [sym_nil] = STATE(2496), - [sym__atom] = STATE(2496), - [sym_quoted_atom] = STATE(2496), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2496), - [sym_charlist] = STATE(2496), - [sym_sigil] = STATE(2496), - [sym_list] = STATE(2496), - [sym_tuple] = STATE(2496), - [sym_bitstring] = STATE(2496), - [sym_map] = STATE(2496), - [sym_unary_operator] = STATE(2496), - [sym_binary_operator] = STATE(2496), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2496), - [sym_call] = STATE(2496), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(2496), - [sym_body] = STATE(3799), - [sym_anonymous_function] = STATE(2496), - [aux_sym__terminator_repeat1] = STATE(1028), - [aux_sym__terminator_token1] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_RPAREN] = ACTIONS(1065), + [sym__expression] = STATE(3564), + [sym_block] = STATE(3564), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3564), + [sym_nil] = STATE(3564), + [sym__atom] = STATE(3564), + [sym_quoted_atom] = STATE(3564), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3564), + [sym_charlist] = STATE(3564), + [sym_sigil] = STATE(3564), + [sym__keywords_with_trailing_separator] = STATE(5549), + [sym_pair] = STATE(5027), + [sym__keyword] = STATE(674), + [sym_quoted_keyword] = STATE(674), + [sym_list] = STATE(3564), + [sym_tuple] = STATE(3564), + [sym_bitstring] = STATE(3564), + [sym_map] = STATE(3564), + [sym_unary_operator] = STATE(3564), + [sym_binary_operator] = STATE(3564), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3564), + [sym_call] = STATE(3564), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3564), + [sym_anonymous_function] = STATE(3564), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1119), + [sym_integer] = ACTIONS(1119), + [sym_float] = ACTIONS(1119), + [sym_char] = ACTIONS(1119), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(1119), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [318] = { + [sym__expression] = STATE(3396), + [sym_block] = STATE(3396), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3396), + [sym_nil] = STATE(3396), + [sym__atom] = STATE(3396), + [sym_quoted_atom] = STATE(3396), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(3396), + [sym_charlist] = STATE(3396), + [sym_sigil] = STATE(3396), + [sym_keywords] = STATE(1703), + [sym_pair] = STATE(2708), + [sym__keyword] = STATE(560), + [sym_quoted_keyword] = STATE(560), + [sym_list] = STATE(3396), + [sym_tuple] = STATE(3396), + [sym_bitstring] = STATE(3396), + [sym_map] = STATE(3396), + [sym_unary_operator] = STATE(3396), + [sym_binary_operator] = STATE(3396), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(3396), + [sym_call] = STATE(3396), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(3396), + [sym_anonymous_function] = STATE(3396), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1337), [aux_sym_identifier_token1] = ACTIONS(704), [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), + [sym_unused_identifier] = ACTIONS(706), [anon_sym___MODULE__] = ACTIONS(708), [anon_sym___DIR__] = ACTIONS(708), [anon_sym___ENV__] = ACTIONS(708), [anon_sym___CALLER__] = ACTIONS(708), [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1415), - [sym_integer] = ACTIONS(1415), - [sym_float] = ACTIONS(1415), - [sym_char] = ACTIONS(1415), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1415), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), + [sym_alias] = ACTIONS(1473), + [sym_integer] = ACTIONS(1473), + [sym_float] = ACTIONS(1473), + [sym_char] = ACTIONS(1473), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1473), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), + [anon_sym_TILDE] = ACTIONS(712), + [sym_keyword] = ACTIONS(1475), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -66422,222 +67190,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(115), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), + [sym__before_unary_op] = ACTIONS(722), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [318] = { - [sym__expression] = STATE(2000), - [sym_block] = STATE(2000), - [sym__identifier] = STATE(34), - [sym_identifier] = STATE(34), - [sym_special_identifier] = STATE(34), - [sym_boolean] = STATE(2000), - [sym_nil] = STATE(2000), - [sym__atom] = STATE(2000), - [sym_quoted_atom] = STATE(2000), - [sym__quoted_i_double] = STATE(1678), - [sym__quoted_i_single] = STATE(1677), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(2000), - [sym_charlist] = STATE(2000), - [sym_sigil] = STATE(2000), - [sym_keywords] = STATE(1951), - [sym_pair] = STATE(1922), - [sym__keyword] = STATE(901), - [sym_quoted_keyword] = STATE(901), - [sym_list] = STATE(2000), - [sym_tuple] = STATE(2000), - [sym_bitstring] = STATE(2000), - [sym_map] = STATE(2000), - [sym_unary_operator] = STATE(2000), - [sym_binary_operator] = STATE(2000), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(2000), - [sym_call] = STATE(2000), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(36), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(2000), - [sym_anonymous_function] = STATE(2000), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(361), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(1459), - [sym_integer] = ACTIONS(1459), - [sym_float] = ACTIONS(1459), - [sym_char] = ACTIONS(1459), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), - [sym_atom] = ACTIONS(1459), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(383), - [sym_keyword] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(396), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(396), - [anon_sym_not] = ACTIONS(396), - [anon_sym_AT] = ACTIONS(398), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(404), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), + [sym__quoted_atom_start] = ACTIONS(121), }, [319] = { - [sym__expression] = STATE(2108), - [sym_block] = STATE(2108), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2108), - [sym_nil] = STATE(2108), - [sym__atom] = STATE(2108), - [sym_quoted_atom] = STATE(2108), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2108), - [sym_charlist] = STATE(2108), - [sym_sigil] = STATE(2108), - [sym_list] = STATE(2108), - [sym_tuple] = STATE(2108), - [sym_bitstring] = STATE(2108), - [sym_map] = STATE(2108), - [sym_unary_operator] = STATE(2108), - [sym_binary_operator] = STATE(2108), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2108), - [sym_call] = STATE(2108), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(2108), - [sym_anonymous_function] = STATE(2108), + [sym__expression] = STATE(1544), + [sym_block] = STATE(1544), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1544), + [sym_nil] = STATE(1544), + [sym__atom] = STATE(1544), + [sym_quoted_atom] = STATE(1544), + [sym__quoted_i_double] = STATE(1276), + [sym__quoted_i_single] = STATE(1277), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(1544), + [sym_charlist] = STATE(1544), + [sym_sigil] = STATE(1544), + [sym_keywords] = STATE(1435), + [sym_pair] = STATE(1332), + [sym__keyword] = STATE(887), + [sym_quoted_keyword] = STATE(887), + [sym_list] = STATE(1544), + [sym_tuple] = STATE(1544), + [sym_bitstring] = STATE(1544), + [sym_map] = STATE(1544), + [sym_unary_operator] = STATE(1544), + [sym_binary_operator] = STATE(1544), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(1544), + [sym_call] = STATE(1544), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(1544), + [sym_anonymous_function] = STATE(1544), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(944), - [anon_sym___MODULE__] = ACTIONS(71), - [anon_sym___DIR__] = ACTIONS(71), - [anon_sym___ENV__] = ACTIONS(71), - [anon_sym___CALLER__] = ACTIONS(71), - [anon_sym___STACKTRACE__] = ACTIONS(71), - [sym_alias] = ACTIONS(946), - [sym_integer] = ACTIONS(946), - [sym_float] = ACTIONS(946), - [sym_char] = ACTIONS(946), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(946), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(1477), + [sym_integer] = ACTIONS(1477), + [sym_float] = ACTIONS(1477), + [sym_char] = ACTIONS(1477), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1477), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(972), - [anon_sym_CARET] = ACTIONS(972), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), - [anon_sym_not] = ACTIONS(972), - [anon_sym_AT] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(274), + [sym_keyword] = ACTIONS(276), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -66677,102 +67320,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(1461), - [anon_sym_catch] = ACTIONS(1461), - [anon_sym_else] = ACTIONS(1461), - [anon_sym_end] = ACTIONS(1461), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(1461), + [anon_sym_fn] = ACTIONS(291), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(980), + [sym__before_unary_op] = ACTIONS(295), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), + [sym__quoted_atom_start] = ACTIONS(300), }, [320] = { - [sym__expression] = STATE(2477), - [sym_block] = STATE(2477), - [sym__identifier] = STATE(60), - [sym_identifier] = STATE(60), - [sym_special_identifier] = STATE(60), - [sym_boolean] = STATE(2477), - [sym_nil] = STATE(2477), - [sym__atom] = STATE(2477), - [sym_quoted_atom] = STATE(2477), - [sym__quoted_i_double] = STATE(2012), - [sym__quoted_i_single] = STATE(2011), - [sym__quoted_i_heredoc_single] = STATE(2413), - [sym__quoted_i_heredoc_double] = STATE(2414), - [sym_string] = STATE(2477), - [sym_charlist] = STATE(2477), - [sym_sigil] = STATE(2477), - [sym_keywords] = STATE(2375), - [sym_pair] = STATE(2310), - [sym__keyword] = STATE(445), - [sym_quoted_keyword] = STATE(445), - [sym_list] = STATE(2477), - [sym_tuple] = STATE(2477), - [sym_bitstring] = STATE(2477), - [sym_map] = STATE(2477), - [sym_unary_operator] = STATE(2477), - [sym_binary_operator] = STATE(2477), - [sym_operator_identifier] = STATE(5028), - [sym_dot] = STATE(2477), - [sym_call] = STATE(2477), - [sym__call_without_parentheses] = STATE(2412), - [sym__call_with_parentheses] = STATE(2411), - [sym__local_call_without_parentheses] = STATE(2410), - [sym__local_call_with_parentheses] = STATE(1910), - [sym__local_call_just_do_block] = STATE(2409), - [sym__remote_call_without_parentheses] = STATE(2408), - [sym__remote_call_with_parentheses] = STATE(1916), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(1975), - [sym__anonymous_dot] = STATE(4890), - [sym__double_call] = STATE(2407), - [sym_access_call] = STATE(2477), - [sym_anonymous_function] = STATE(2477), + [sym__expression] = STATE(2847), + [sym_block] = STATE(2847), + [sym__identifier] = STATE(41), + [sym_identifier] = STATE(41), + [sym_special_identifier] = STATE(41), + [sym_boolean] = STATE(2847), + [sym_nil] = STATE(2847), + [sym__atom] = STATE(2847), + [sym_quoted_atom] = STATE(2847), + [sym__quoted_i_double] = STATE(1276), + [sym__quoted_i_single] = STATE(1277), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(2847), + [sym_charlist] = STATE(2847), + [sym_sigil] = STATE(2847), + [sym_keywords] = STATE(1467), + [sym_pair] = STATE(2214), + [sym__keyword] = STATE(799), + [sym_quoted_keyword] = STATE(799), + [sym_list] = STATE(2847), + [sym_tuple] = STATE(2847), + [sym_bitstring] = STATE(2847), + [sym_map] = STATE(2847), + [sym_unary_operator] = STATE(2847), + [sym_binary_operator] = STATE(2847), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(2847), + [sym_call] = STATE(2847), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(2847), + [sym_anonymous_function] = STATE(2847), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(556), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(558), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(1463), - [sym_integer] = ACTIONS(1463), - [sym_float] = ACTIONS(1463), - [sym_char] = ACTIONS(1463), - [anon_sym_true] = ACTIONS(562), - [anon_sym_false] = ACTIONS(562), - [anon_sym_nil] = ACTIONS(564), - [sym_atom] = ACTIONS(1463), - [anon_sym_DQUOTE] = ACTIONS(566), - [anon_sym_SQUOTE] = ACTIONS(568), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), - [anon_sym_LBRACE] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(1471), + [sym_integer] = ACTIONS(1471), + [sym_float] = ACTIONS(1471), + [sym_char] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(578), - [sym_keyword] = ACTIONS(580), - [anon_sym_LT_LT] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_CARET] = ACTIONS(588), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), - [anon_sym_not] = ACTIONS(588), - [anon_sym_AT] = ACTIONS(590), + [anon_sym_TILDE] = ACTIONS(444), + [sym_keyword] = ACTIONS(446), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(453), + [anon_sym_not] = ACTIONS(453), + [anon_sym_AT] = ACTIONS(455), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -66812,75 +67450,725 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(594), + [anon_sym_fn] = ACTIONS(291), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(600), + [sym__before_unary_op] = ACTIONS(457), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(602), + [sym__quoted_atom_start] = ACTIONS(300), }, [321] = { - [sym__expression] = STATE(2767), - [sym_block] = STATE(2767), + [sym__expression] = STATE(3400), + [sym_block] = STATE(3400), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3400), + [sym_nil] = STATE(3400), + [sym__atom] = STATE(3400), + [sym_quoted_atom] = STATE(3400), + [sym__quoted_i_double] = STATE(1400), + [sym__quoted_i_single] = STATE(1376), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(3400), + [sym_charlist] = STATE(3400), + [sym_sigil] = STATE(3400), + [sym_keywords] = STATE(1705), + [sym_pair] = STATE(2708), + [sym__keyword] = STATE(560), + [sym_quoted_keyword] = STATE(560), + [sym_list] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_bitstring] = STATE(3400), + [sym_map] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_binary_operator] = STATE(3400), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(3400), + [sym_call] = STATE(3400), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(3400), + [sym_anonymous_function] = STATE(3400), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1337), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1479), + [sym_integer] = ACTIONS(1479), + [sym_float] = ACTIONS(1479), + [sym_char] = ACTIONS(1479), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1479), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [sym_keyword] = ACTIONS(1475), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [322] = { + [sym__expression] = STATE(3978), + [sym_block] = STATE(3978), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3978), + [sym_nil] = STATE(3978), + [sym__atom] = STATE(3978), + [sym_quoted_atom] = STATE(3978), + [sym__quoted_i_double] = STATE(3302), + [sym__quoted_i_single] = STATE(3301), + [sym__quoted_i_heredoc_single] = STATE(3698), + [sym__quoted_i_heredoc_double] = STATE(3702), + [sym_string] = STATE(3978), + [sym_charlist] = STATE(3978), + [sym_sigil] = STATE(3978), + [sym_keywords] = STATE(3976), + [sym_pair] = STATE(3464), + [sym__keyword] = STATE(564), + [sym_quoted_keyword] = STATE(564), + [sym_list] = STATE(3978), + [sym_tuple] = STATE(3978), + [sym_bitstring] = STATE(3978), + [sym_map] = STATE(3978), + [sym_unary_operator] = STATE(3978), + [sym_binary_operator] = STATE(3978), + [sym_operator_identifier] = STATE(5655), + [sym_dot] = STATE(3978), + [sym_call] = STATE(3978), + [sym__call_without_parentheses] = STATE(3705), + [sym__call_with_parentheses] = STATE(3725), + [sym__local_call_without_parentheses] = STATE(3765), + [sym__local_call_with_parentheses] = STATE(2681), + [sym__local_call_just_do_block] = STATE(3808), + [sym__remote_call_without_parentheses] = STATE(3810), + [sym__remote_call_with_parentheses] = STATE(2682), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2683), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(3811), + [sym_access_call] = STATE(3978), + [sym_anonymous_function] = STATE(3978), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), + [sym_alias] = ACTIONS(1481), + [sym_integer] = ACTIONS(1481), + [sym_float] = ACTIONS(1481), + [sym_char] = ACTIONS(1481), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), + [sym_atom] = ACTIONS(1481), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [sym_keyword] = ACTIONS(1483), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(55), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(59), + }, + [323] = { + [sym__expression] = STATE(3972), + [sym_block] = STATE(3972), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3972), + [sym_nil] = STATE(3972), + [sym__atom] = STATE(3972), + [sym_quoted_atom] = STATE(3972), + [sym__quoted_i_double] = STATE(3302), + [sym__quoted_i_single] = STATE(3301), + [sym__quoted_i_heredoc_single] = STATE(3698), + [sym__quoted_i_heredoc_double] = STATE(3702), + [sym_string] = STATE(3972), + [sym_charlist] = STATE(3972), + [sym_sigil] = STATE(3972), + [sym_keywords] = STATE(3971), + [sym_pair] = STATE(3464), + [sym__keyword] = STATE(564), + [sym_quoted_keyword] = STATE(564), + [sym_list] = STATE(3972), + [sym_tuple] = STATE(3972), + [sym_bitstring] = STATE(3972), + [sym_map] = STATE(3972), + [sym_unary_operator] = STATE(3972), + [sym_binary_operator] = STATE(3972), + [sym_operator_identifier] = STATE(5655), + [sym_dot] = STATE(3972), + [sym_call] = STATE(3972), + [sym__call_without_parentheses] = STATE(3705), + [sym__call_with_parentheses] = STATE(3725), + [sym__local_call_without_parentheses] = STATE(3765), + [sym__local_call_with_parentheses] = STATE(2681), + [sym__local_call_just_do_block] = STATE(3808), + [sym__remote_call_without_parentheses] = STATE(3810), + [sym__remote_call_with_parentheses] = STATE(2682), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2683), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(3811), + [sym_access_call] = STATE(3972), + [sym_anonymous_function] = STATE(3972), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), + [sym_alias] = ACTIONS(1485), + [sym_integer] = ACTIONS(1485), + [sym_float] = ACTIONS(1485), + [sym_char] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), + [sym_atom] = ACTIONS(1485), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [sym_keyword] = ACTIONS(1483), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(55), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(59), + }, + [324] = { + [sym__expression] = STATE(3032), + [sym_block] = STATE(3032), + [sym__identifier] = STATE(41), + [sym_identifier] = STATE(41), + [sym_special_identifier] = STATE(41), + [sym_boolean] = STATE(3032), + [sym_nil] = STATE(3032), + [sym__atom] = STATE(3032), + [sym_quoted_atom] = STATE(3032), + [sym__quoted_i_double] = STATE(1276), + [sym__quoted_i_single] = STATE(1277), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(3032), + [sym_charlist] = STATE(3032), + [sym_sigil] = STATE(3032), + [sym_keywords] = STATE(1435), + [sym_pair] = STATE(2214), + [sym__keyword] = STATE(799), + [sym_quoted_keyword] = STATE(799), + [sym_list] = STATE(3032), + [sym_tuple] = STATE(3032), + [sym_bitstring] = STATE(3032), + [sym_map] = STATE(3032), + [sym_unary_operator] = STATE(3032), + [sym_binary_operator] = STATE(3032), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(3032), + [sym_call] = STATE(3032), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(3032), + [sym_anonymous_function] = STATE(3032), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(1487), + [sym_integer] = ACTIONS(1487), + [sym_float] = ACTIONS(1487), + [sym_char] = ACTIONS(1487), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1487), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(444), + [sym_keyword] = ACTIONS(446), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(453), + [anon_sym_not] = ACTIONS(453), + [anon_sym_AT] = ACTIONS(455), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(457), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [325] = { + [sym__expression] = STATE(3435), + [sym_block] = STATE(3435), + [sym__identifier] = STATE(61), + [sym_identifier] = STATE(61), + [sym_special_identifier] = STATE(61), + [sym_boolean] = STATE(3435), + [sym_nil] = STATE(3435), + [sym__atom] = STATE(3435), + [sym_quoted_atom] = STATE(3435), + [sym__quoted_i_double] = STATE(2972), + [sym__quoted_i_single] = STATE(2970), + [sym__quoted_i_heredoc_single] = STATE(3316), + [sym__quoted_i_heredoc_double] = STATE(3315), + [sym_string] = STATE(3435), + [sym_charlist] = STATE(3435), + [sym_sigil] = STATE(3435), + [sym_keywords] = STATE(3458), + [sym_pair] = STATE(2745), + [sym__keyword] = STATE(465), + [sym_quoted_keyword] = STATE(465), + [sym_list] = STATE(3435), + [sym_tuple] = STATE(3435), + [sym_bitstring] = STATE(3435), + [sym_map] = STATE(3435), + [sym_unary_operator] = STATE(3435), + [sym_binary_operator] = STATE(3435), + [sym_operator_identifier] = STATE(5628), + [sym_dot] = STATE(3435), + [sym_call] = STATE(3435), + [sym__call_without_parentheses] = STATE(3314), + [sym__call_with_parentheses] = STATE(3313), + [sym__local_call_without_parentheses] = STATE(3312), + [sym__local_call_with_parentheses] = STATE(2420), + [sym__local_call_just_do_block] = STATE(3311), + [sym__remote_call_without_parentheses] = STATE(3310), + [sym__remote_call_with_parentheses] = STATE(2423), + [sym__remote_dot] = STATE(60), + [sym__anonymous_call] = STATE(2425), + [sym__anonymous_dot] = STATE(5498), + [sym__double_call] = STATE(3309), + [sym_access_call] = STATE(3435), + [sym_anonymous_function] = STATE(3435), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(1489), + [sym_integer] = ACTIONS(1489), + [sym_float] = ACTIONS(1489), + [sym_char] = ACTIONS(1489), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(1489), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(633), + [sym_keyword] = ACTIONS(635), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(643), + [anon_sym_not] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(649), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(655), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(657), + }, + [326] = { + [sym__expression] = STATE(2637), + [sym_block] = STATE(2637), [sym__identifier] = STATE(42), [sym_identifier] = STATE(42), [sym_special_identifier] = STATE(42), - [sym_boolean] = STATE(2767), - [sym_nil] = STATE(2767), - [sym__atom] = STATE(2767), - [sym_quoted_atom] = STATE(2767), - [sym__quoted_i_double] = STATE(1146), - [sym__quoted_i_single] = STATE(1145), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2767), - [sym_charlist] = STATE(2767), - [sym_sigil] = STATE(2767), - [sym_keywords] = STATE(1370), - [sym_pair] = STATE(2136), - [sym__keyword] = STATE(774), - [sym_quoted_keyword] = STATE(774), - [sym_list] = STATE(2767), - [sym_tuple] = STATE(2767), - [sym_bitstring] = STATE(2767), - [sym_map] = STATE(2767), - [sym_unary_operator] = STATE(2767), - [sym_binary_operator] = STATE(2767), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2767), - [sym_call] = STATE(2767), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2767), - [sym_anonymous_function] = STATE(2767), + [sym_boolean] = STATE(2637), + [sym_nil] = STATE(2637), + [sym__atom] = STATE(2637), + [sym_quoted_atom] = STATE(2637), + [sym__quoted_i_double] = STATE(1096), + [sym__quoted_i_single] = STATE(1095), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(2637), + [sym_charlist] = STATE(2637), + [sym_sigil] = STATE(2637), + [sym_keywords] = STATE(1143), + [sym_pair] = STATE(2110), + [sym__keyword] = STATE(873), + [sym_quoted_keyword] = STATE(873), + [sym_list] = STATE(2637), + [sym_tuple] = STATE(2637), + [sym_bitstring] = STATE(2637), + [sym_map] = STATE(2637), + [sym_unary_operator] = STATE(2637), + [sym_binary_operator] = STATE(2637), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(2637), + [sym_call] = STATE(2637), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(2637), + [sym_anonymous_function] = STATE(2637), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(456), - [sym_unused_identifier] = ACTIONS(458), - [anon_sym___MODULE__] = ACTIONS(460), - [anon_sym___DIR__] = ACTIONS(460), - [anon_sym___ENV__] = ACTIONS(460), - [anon_sym___CALLER__] = ACTIONS(460), - [anon_sym___STACKTRACE__] = ACTIONS(460), - [sym_alias] = ACTIONS(1465), - [sym_integer] = ACTIONS(1465), - [sym_float] = ACTIONS(1465), - [sym_char] = ACTIONS(1465), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(461), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), + [sym_alias] = ACTIONS(1335), + [sym_integer] = ACTIONS(1335), + [sym_float] = ACTIONS(1335), + [sym_char] = ACTIONS(1335), [anon_sym_true] = ACTIONS(203), [anon_sym_false] = ACTIONS(203), [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1465), + [sym_atom] = ACTIONS(1335), [anon_sym_DQUOTE] = ACTIONS(207), [anon_sym_SQUOTE] = ACTIONS(209), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), @@ -66891,18 +68179,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(464), - [sym_keyword] = ACTIONS(466), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(473), - [anon_sym_BANG] = ACTIONS(473), - [anon_sym_CARET] = ACTIONS(473), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), - [anon_sym_not] = ACTIONS(473), - [anon_sym_AT] = ACTIONS(475), + [anon_sym_TILDE] = ACTIONS(467), + [sym_keyword] = ACTIONS(469), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(476), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_CARET] = ACTIONS(476), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(476), + [anon_sym_not] = ACTIONS(476), + [anon_sym_AT] = ACTIONS(478), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -66942,67 +68230,197 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), + [anon_sym_fn] = ACTIONS(235), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(477), + [sym__before_unary_op] = ACTIONS(480), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), + [sym__quoted_atom_start] = ACTIONS(243), }, - [322] = { - [sym__expression] = STATE(3196), - [sym_block] = STATE(3196), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3196), - [sym_nil] = STATE(3196), - [sym__atom] = STATE(3196), - [sym_quoted_atom] = STATE(3196), - [sym__quoted_i_double] = STATE(1450), - [sym__quoted_i_single] = STATE(1451), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3196), - [sym_charlist] = STATE(3196), - [sym_sigil] = STATE(3196), - [sym_keywords] = STATE(1793), - [sym_pair] = STATE(2815), - [sym__keyword] = STATE(800), - [sym_quoted_keyword] = STATE(800), - [sym_list] = STATE(3196), - [sym_tuple] = STATE(3196), - [sym_bitstring] = STATE(3196), - [sym_map] = STATE(3196), - [sym_unary_operator] = STATE(3196), - [sym_binary_operator] = STATE(3196), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3196), - [sym_call] = STATE(3196), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3196), - [sym_anonymous_function] = STATE(3196), + [327] = { + [sym__expression] = STATE(3435), + [sym_block] = STATE(3435), + [sym__identifier] = STATE(61), + [sym_identifier] = STATE(61), + [sym_special_identifier] = STATE(61), + [sym_boolean] = STATE(3435), + [sym_nil] = STATE(3435), + [sym__atom] = STATE(3435), + [sym_quoted_atom] = STATE(3435), + [sym__quoted_i_double] = STATE(2972), + [sym__quoted_i_single] = STATE(2970), + [sym__quoted_i_heredoc_single] = STATE(3316), + [sym__quoted_i_heredoc_double] = STATE(3315), + [sym_string] = STATE(3435), + [sym_charlist] = STATE(3435), + [sym_sigil] = STATE(3435), + [sym_keywords] = STATE(3456), + [sym_pair] = STATE(2745), + [sym__keyword] = STATE(465), + [sym_quoted_keyword] = STATE(465), + [sym_list] = STATE(3435), + [sym_tuple] = STATE(3435), + [sym_bitstring] = STATE(3435), + [sym_map] = STATE(3435), + [sym_unary_operator] = STATE(3435), + [sym_binary_operator] = STATE(3435), + [sym_operator_identifier] = STATE(5628), + [sym_dot] = STATE(3435), + [sym_call] = STATE(3435), + [sym__call_without_parentheses] = STATE(3314), + [sym__call_with_parentheses] = STATE(3313), + [sym__local_call_without_parentheses] = STATE(3312), + [sym__local_call_with_parentheses] = STATE(2420), + [sym__local_call_just_do_block] = STATE(3311), + [sym__remote_call_without_parentheses] = STATE(3310), + [sym__remote_call_with_parentheses] = STATE(2423), + [sym__remote_dot] = STATE(60), + [sym__anonymous_call] = STATE(2425), + [sym__anonymous_dot] = STATE(5498), + [sym__double_call] = STATE(3309), + [sym_access_call] = STATE(3435), + [sym_anonymous_function] = STATE(3435), [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(1489), + [sym_integer] = ACTIONS(1489), + [sym_float] = ACTIONS(1489), + [sym_char] = ACTIONS(1489), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(1489), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(633), + [sym_keyword] = ACTIONS(635), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(643), + [anon_sym_not] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(649), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(655), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(657), + }, + [328] = { + [sym__terminator] = STATE(680), + [sym__expression] = STATE(2754), + [sym_block] = STATE(2754), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(2754), + [sym_nil] = STATE(2754), + [sym__atom] = STATE(2754), + [sym_quoted_atom] = STATE(2754), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2754), + [sym_charlist] = STATE(2754), + [sym_sigil] = STATE(2754), + [sym_list] = STATE(2754), + [sym_tuple] = STATE(2754), + [sym_bitstring] = STATE(2754), + [sym_map] = STATE(2754), + [sym_unary_operator] = STATE(2754), + [sym_binary_operator] = STATE(2754), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2754), + [sym_call] = STATE(2754), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(2754), + [sym_body] = STATE(4407), + [sym_anonymous_function] = STATE(2754), + [aux_sym__terminator_repeat1] = STATE(1031), + [aux_sym__terminator_token1] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1465), [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), + [aux_sym_identifier_token1] = ACTIONS(1437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1437), + [sym_unused_identifier] = ACTIONS(1439), + [anon_sym___MODULE__] = ACTIONS(1441), + [anon_sym___DIR__] = ACTIONS(1441), + [anon_sym___ENV__] = ACTIONS(1441), + [anon_sym___CALLER__] = ACTIONS(1441), + [anon_sym___STACKTRACE__] = ACTIONS(1441), [sym_alias] = ACTIONS(1467), [sym_integer] = ACTIONS(1467), [sym_float] = ACTIONS(1467), @@ -67020,148 +68438,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [sym_keyword] = ACTIONS(1469), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1445), [anon_sym_LT_LT] = ACTIONS(966), [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [323] = { - [sym__terminator] = STATE(903), - [sym__expression] = STATE(2643), - [sym_block] = STATE(2643), - [sym__identifier] = STATE(54), - [sym_identifier] = STATE(54), - [sym_special_identifier] = STATE(54), - [sym_boolean] = STATE(2643), - [sym_nil] = STATE(2643), - [sym__atom] = STATE(2643), - [sym_quoted_atom] = STATE(2643), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2643), - [sym_charlist] = STATE(2643), - [sym_sigil] = STATE(2643), - [sym_list] = STATE(2643), - [sym_tuple] = STATE(2643), - [sym_bitstring] = STATE(2643), - [sym_map] = STATE(2643), - [sym_unary_operator] = STATE(2643), - [sym_binary_operator] = STATE(2643), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2643), - [sym_call] = STATE(2643), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(2643), - [sym_body] = STATE(3799), - [sym_anonymous_function] = STATE(2643), - [aux_sym__terminator_repeat1] = STATE(1028), - [aux_sym__terminator_token1] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1471), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(1427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1427), - [sym_unused_identifier] = ACTIONS(1429), - [anon_sym___MODULE__] = ACTIONS(1431), - [anon_sym___DIR__] = ACTIONS(1431), - [anon_sym___ENV__] = ACTIONS(1431), - [anon_sym___CALLER__] = ACTIONS(1431), - [anon_sym___STACKTRACE__] = ACTIONS(1431), - [sym_alias] = ACTIONS(1473), - [sym_integer] = ACTIONS(1473), - [sym_float] = ACTIONS(1473), - [sym_char] = ACTIONS(1473), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1473), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_CARET] = ACTIONS(1441), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1441), - [anon_sym_not] = ACTIONS(1441), - [anon_sym_AT] = ACTIONS(1443), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1451), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), + [anon_sym_not] = ACTIONS(1451), + [anon_sym_AT] = ACTIONS(1453), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -67206,959 +68494,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1445), + [sym__before_unary_op] = ACTIONS(1455), [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(982), }, - [324] = { - [sym__expression] = STATE(3206), - [sym_block] = STATE(3206), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3206), - [sym_nil] = STATE(3206), - [sym__atom] = STATE(3206), - [sym_quoted_atom] = STATE(3206), - [sym__quoted_i_double] = STATE(1450), - [sym__quoted_i_single] = STATE(1451), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3206), - [sym_charlist] = STATE(3206), - [sym_sigil] = STATE(3206), - [sym_keywords] = STATE(1598), - [sym_pair] = STATE(2815), - [sym__keyword] = STATE(800), - [sym_quoted_keyword] = STATE(800), - [sym_list] = STATE(3206), - [sym_tuple] = STATE(3206), - [sym_bitstring] = STATE(3206), - [sym_map] = STATE(3206), - [sym_unary_operator] = STATE(3206), - [sym_binary_operator] = STATE(3206), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3206), - [sym_call] = STATE(3206), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3206), - [sym_anonymous_function] = STATE(3206), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1475), - [sym_integer] = ACTIONS(1475), - [sym_float] = ACTIONS(1475), - [sym_char] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [sym_keyword] = ACTIONS(1469), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [325] = { - [sym__expression] = STATE(2005), - [sym_block] = STATE(2005), - [sym__identifier] = STATE(34), - [sym_identifier] = STATE(34), - [sym_special_identifier] = STATE(34), - [sym_boolean] = STATE(2005), - [sym_nil] = STATE(2005), - [sym__atom] = STATE(2005), - [sym_quoted_atom] = STATE(2005), - [sym__quoted_i_double] = STATE(1678), - [sym__quoted_i_single] = STATE(1677), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(2005), - [sym_charlist] = STATE(2005), - [sym_sigil] = STATE(2005), - [sym_keywords] = STATE(1946), - [sym_pair] = STATE(1922), - [sym__keyword] = STATE(901), - [sym_quoted_keyword] = STATE(901), - [sym_list] = STATE(2005), - [sym_tuple] = STATE(2005), - [sym_bitstring] = STATE(2005), - [sym_map] = STATE(2005), - [sym_unary_operator] = STATE(2005), - [sym_binary_operator] = STATE(2005), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(2005), - [sym_call] = STATE(2005), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(36), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(2005), - [sym_anonymous_function] = STATE(2005), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(361), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(1477), - [sym_integer] = ACTIONS(1477), - [sym_float] = ACTIONS(1477), - [sym_char] = ACTIONS(1477), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), - [sym_atom] = ACTIONS(1477), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(383), - [sym_keyword] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(396), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(396), - [anon_sym_not] = ACTIONS(396), - [anon_sym_AT] = ACTIONS(398), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(404), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), - }, - [326] = { - [sym__expression] = STATE(2836), - [sym_block] = STATE(2836), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(2836), - [sym_nil] = STATE(2836), - [sym__atom] = STATE(2836), - [sym_quoted_atom] = STATE(2836), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(2836), - [sym_charlist] = STATE(2836), - [sym_sigil] = STATE(2836), - [sym_keywords] = STATE(1515), - [sym_pair] = STATE(2537), - [sym__keyword] = STATE(616), - [sym_quoted_keyword] = STATE(616), - [sym_list] = STATE(2836), - [sym_tuple] = STATE(2836), - [sym_bitstring] = STATE(2836), - [sym_map] = STATE(2836), - [sym_unary_operator] = STATE(2836), - [sym_binary_operator] = STATE(2836), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(2836), - [sym_call] = STATE(2836), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(2836), - [sym_anonymous_function] = STATE(2836), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1479), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(706), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1481), - [sym_integer] = ACTIONS(1481), - [sym_float] = ACTIONS(1481), - [sym_char] = ACTIONS(1481), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(712), - [sym_keyword] = ACTIONS(1483), - [anon_sym_LT_LT] = ACTIONS(95), - [anon_sym_PERCENT] = ACTIONS(97), - [anon_sym_AMP] = ACTIONS(714), - [anon_sym_PLUS] = ACTIONS(716), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_CARET] = ACTIONS(716), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), - [anon_sym_not] = ACTIONS(716), - [anon_sym_AT] = ACTIONS(718), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(115), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(722), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(121), - }, - [327] = { - [sym__expression] = STATE(2763), - [sym_block] = STATE(2763), - [sym__identifier] = STATE(42), - [sym_identifier] = STATE(42), - [sym_special_identifier] = STATE(42), - [sym_boolean] = STATE(2763), - [sym_nil] = STATE(2763), - [sym__atom] = STATE(2763), - [sym_quoted_atom] = STATE(2763), - [sym__quoted_i_double] = STATE(1146), - [sym__quoted_i_single] = STATE(1145), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2763), - [sym_charlist] = STATE(2763), - [sym_sigil] = STATE(2763), - [sym_keywords] = STATE(1375), - [sym_pair] = STATE(2136), - [sym__keyword] = STATE(774), - [sym_quoted_keyword] = STATE(774), - [sym_list] = STATE(2763), - [sym_tuple] = STATE(2763), - [sym_bitstring] = STATE(2763), - [sym_map] = STATE(2763), - [sym_unary_operator] = STATE(2763), - [sym_binary_operator] = STATE(2763), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2763), - [sym_call] = STATE(2763), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2763), - [sym_anonymous_function] = STATE(2763), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(456), - [sym_unused_identifier] = ACTIONS(458), - [anon_sym___MODULE__] = ACTIONS(460), - [anon_sym___DIR__] = ACTIONS(460), - [anon_sym___ENV__] = ACTIONS(460), - [anon_sym___CALLER__] = ACTIONS(460), - [anon_sym___STACKTRACE__] = ACTIONS(460), - [sym_alias] = ACTIONS(1485), - [sym_integer] = ACTIONS(1485), - [sym_float] = ACTIONS(1485), - [sym_char] = ACTIONS(1485), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1485), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(464), - [sym_keyword] = ACTIONS(466), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(473), - [anon_sym_BANG] = ACTIONS(473), - [anon_sym_CARET] = ACTIONS(473), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), - [anon_sym_not] = ACTIONS(473), - [anon_sym_AT] = ACTIONS(475), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(477), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [328] = { - [sym__expression] = STATE(2829), - [sym_block] = STATE(2829), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(2829), - [sym_nil] = STATE(2829), - [sym__atom] = STATE(2829), - [sym_quoted_atom] = STATE(2829), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(2829), - [sym_charlist] = STATE(2829), - [sym_sigil] = STATE(2829), - [sym_keywords] = STATE(1488), - [sym_pair] = STATE(2537), - [sym__keyword] = STATE(616), - [sym_quoted_keyword] = STATE(616), - [sym_list] = STATE(2829), - [sym_tuple] = STATE(2829), - [sym_bitstring] = STATE(2829), - [sym_map] = STATE(2829), - [sym_unary_operator] = STATE(2829), - [sym_binary_operator] = STATE(2829), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(2829), - [sym_call] = STATE(2829), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(2829), - [sym_anonymous_function] = STATE(2829), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1479), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(706), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1487), - [sym_integer] = ACTIONS(1487), - [sym_float] = ACTIONS(1487), - [sym_char] = ACTIONS(1487), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(1487), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(712), - [sym_keyword] = ACTIONS(1483), - [anon_sym_LT_LT] = ACTIONS(95), - [anon_sym_PERCENT] = ACTIONS(97), - [anon_sym_AMP] = ACTIONS(714), - [anon_sym_PLUS] = ACTIONS(716), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_CARET] = ACTIONS(716), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), - [anon_sym_not] = ACTIONS(716), - [anon_sym_AT] = ACTIONS(718), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(115), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(722), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(121), - }, [329] = { - [sym__expression] = STATE(1319), - [sym_block] = STATE(1319), - [sym__identifier] = STATE(18), - [sym_identifier] = STATE(18), - [sym_special_identifier] = STATE(18), - [sym_boolean] = STATE(1319), - [sym_nil] = STATE(1319), - [sym__atom] = STATE(1319), - [sym_quoted_atom] = STATE(1319), - [sym__quoted_i_double] = STATE(1114), - [sym__quoted_i_single] = STATE(1100), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(1319), - [sym_charlist] = STATE(1319), - [sym_sigil] = STATE(1319), - [sym_keywords] = STATE(1196), - [sym_pair] = STATE(1265), - [sym__keyword] = STATE(794), - [sym_quoted_keyword] = STATE(794), - [sym_list] = STATE(1319), - [sym_tuple] = STATE(1319), - [sym_bitstring] = STATE(1319), - [sym_map] = STATE(1319), - [sym_unary_operator] = STATE(1319), - [sym_binary_operator] = STATE(1319), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(1319), - [sym_call] = STATE(1319), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(1319), - [sym_anonymous_function] = STATE(1319), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(256), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), - [sym_alias] = ACTIONS(1489), - [sym_integer] = ACTIONS(1489), - [sym_float] = ACTIONS(1489), - [sym_char] = ACTIONS(1489), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(1489), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(276), - [sym_keyword] = ACTIONS(278), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(286), - [anon_sym_not] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(294), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), - }, - [330] = { - [sym__expression] = STATE(1319), - [sym_block] = STATE(1319), - [sym__identifier] = STATE(18), - [sym_identifier] = STATE(18), - [sym_special_identifier] = STATE(18), - [sym_boolean] = STATE(1319), - [sym_nil] = STATE(1319), - [sym__atom] = STATE(1319), - [sym_quoted_atom] = STATE(1319), - [sym__quoted_i_double] = STATE(1114), - [sym__quoted_i_single] = STATE(1100), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(1319), - [sym_charlist] = STATE(1319), - [sym_sigil] = STATE(1319), - [sym_keywords] = STATE(1192), - [sym_pair] = STATE(1265), - [sym__keyword] = STATE(794), - [sym_quoted_keyword] = STATE(794), - [sym_list] = STATE(1319), - [sym_tuple] = STATE(1319), - [sym_bitstring] = STATE(1319), - [sym_map] = STATE(1319), - [sym_unary_operator] = STATE(1319), - [sym_binary_operator] = STATE(1319), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(1319), - [sym_call] = STATE(1319), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(1319), - [sym_anonymous_function] = STATE(1319), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(256), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), - [sym_alias] = ACTIONS(1489), - [sym_integer] = ACTIONS(1489), - [sym_float] = ACTIONS(1489), - [sym_char] = ACTIONS(1489), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(1489), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(276), - [sym_keyword] = ACTIONS(278), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(286), - [anon_sym_not] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(294), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), - }, - [331] = { - [sym__expression] = STATE(2108), - [sym_block] = STATE(2108), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2108), - [sym_nil] = STATE(2108), - [sym__atom] = STATE(2108), - [sym_quoted_atom] = STATE(2108), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2108), - [sym_charlist] = STATE(2108), - [sym_sigil] = STATE(2108), - [sym_list] = STATE(2108), - [sym_tuple] = STATE(2108), - [sym_bitstring] = STATE(2108), - [sym_map] = STATE(2108), - [sym_unary_operator] = STATE(2108), - [sym_binary_operator] = STATE(2108), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2108), - [sym_call] = STATE(2108), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [sym__expression] = STATE(2639), + [sym_block] = STATE(2639), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2639), + [sym_nil] = STATE(2639), + [sym__atom] = STATE(2639), + [sym_quoted_atom] = STATE(2639), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2639), + [sym_charlist] = STATE(2639), + [sym_sigil] = STATE(2639), + [sym_list] = STATE(2639), + [sym_tuple] = STATE(2639), + [sym_bitstring] = STATE(2639), + [sym_map] = STATE(2639), + [sym_unary_operator] = STATE(2639), + [sym_binary_operator] = STATE(2639), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2639), + [sym_call] = STATE(2639), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(2108), - [sym_anonymous_function] = STATE(2108), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(2639), + [sym_anonymous_function] = STATE(2639), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), [aux_sym_identifier_token1] = ACTIONS(67), @@ -68250,89 +68628,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(982), }, - [332] = { - [sym__expression] = STATE(3129), - [sym_block] = STATE(3129), - [sym__identifier] = STATE(68), - [sym_identifier] = STATE(68), - [sym_special_identifier] = STATE(68), - [sym_boolean] = STATE(3129), - [sym_nil] = STATE(3129), - [sym__atom] = STATE(3129), - [sym_quoted_atom] = STATE(3129), - [sym__quoted_i_double] = STATE(1678), - [sym__quoted_i_single] = STATE(1677), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(3129), - [sym_charlist] = STATE(3129), - [sym_sigil] = STATE(3129), - [sym_keywords] = STATE(1951), - [sym_pair] = STATE(2722), - [sym__keyword] = STATE(660), - [sym_quoted_keyword] = STATE(660), - [sym_list] = STATE(3129), - [sym_tuple] = STATE(3129), - [sym_bitstring] = STATE(3129), - [sym_map] = STATE(3129), - [sym_unary_operator] = STATE(3129), - [sym_binary_operator] = STATE(3129), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(3129), - [sym_call] = STATE(3129), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(3129), - [sym_anonymous_function] = STATE(3129), + [330] = { + [sym__expression] = STATE(4090), + [sym_block] = STATE(4090), + [sym__identifier] = STATE(66), + [sym_identifier] = STATE(66), + [sym_special_identifier] = STATE(66), + [sym_boolean] = STATE(4090), + [sym_nil] = STATE(4090), + [sym__atom] = STATE(4090), + [sym_quoted_atom] = STATE(4090), + [sym__quoted_i_double] = STATE(3826), + [sym__quoted_i_single] = STATE(3829), + [sym__quoted_i_heredoc_single] = STATE(4077), + [sym__quoted_i_heredoc_double] = STATE(4083), + [sym_string] = STATE(4090), + [sym_charlist] = STATE(4090), + [sym_sigil] = STATE(4090), + [sym_keywords] = STATE(4068), + [sym_pair] = STATE(3694), + [sym__keyword] = STATE(759), + [sym_quoted_keyword] = STATE(759), + [sym_list] = STATE(4090), + [sym_tuple] = STATE(4090), + [sym_bitstring] = STATE(4090), + [sym_map] = STATE(4090), + [sym_unary_operator] = STATE(4090), + [sym_binary_operator] = STATE(4090), + [sym_operator_identifier] = STATE(5580), + [sym_dot] = STATE(4090), + [sym_call] = STATE(4090), + [sym__call_without_parentheses] = STATE(4089), + [sym__call_with_parentheses] = STATE(4092), + [sym__local_call_without_parentheses] = STATE(4097), + [sym__local_call_with_parentheses] = STATE(3372), + [sym__local_call_just_do_block] = STATE(4098), + [sym__remote_call_without_parentheses] = STATE(4105), + [sym__remote_call_with_parentheses] = STATE(3374), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3375), + [sym__anonymous_dot] = STATE(5531), + [sym__double_call] = STATE(4106), + [sym_access_call] = STATE(4090), + [sym_anonymous_function] = STATE(4090), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(662), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(1133), + [aux_sym_identifier_token1] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1135), + [sym_unused_identifier] = ACTIONS(1137), + [anon_sym___MODULE__] = ACTIONS(1139), + [anon_sym___DIR__] = ACTIONS(1139), + [anon_sym___ENV__] = ACTIONS(1139), + [anon_sym___CALLER__] = ACTIONS(1139), + [anon_sym___STACKTRACE__] = ACTIONS(1139), [sym_alias] = ACTIONS(1493), [sym_integer] = ACTIONS(1493), [sym_float] = ACTIONS(1493), [sym_char] = ACTIONS(1493), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), + [anon_sym_true] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [anon_sym_nil] = ACTIONS(1145), [sym_atom] = ACTIONS(1493), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1151), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1157), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(383), - [sym_keyword] = ACTIONS(666), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(670), - [anon_sym_DASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(670), - [anon_sym_CARET] = ACTIONS(670), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(670), - [anon_sym_not] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(1159), + [sym_keyword] = ACTIONS(1161), + [anon_sym_LT_LT] = ACTIONS(1163), + [anon_sym_PERCENT] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_AT] = ACTIONS(1173), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -68372,53 +68750,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), + [anon_sym_fn] = ACTIONS(1175), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(674), + [sym__before_unary_op] = ACTIONS(1177), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), + [sym__quoted_atom_start] = ACTIONS(1179), }, - [333] = { - [sym__expression] = STATE(2108), - [sym_block] = STATE(2108), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2108), - [sym_nil] = STATE(2108), - [sym__atom] = STATE(2108), - [sym_quoted_atom] = STATE(2108), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2108), - [sym_charlist] = STATE(2108), - [sym_sigil] = STATE(2108), - [sym_list] = STATE(2108), - [sym_tuple] = STATE(2108), - [sym_bitstring] = STATE(2108), - [sym_map] = STATE(2108), - [sym_unary_operator] = STATE(2108), - [sym_binary_operator] = STATE(2108), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2108), - [sym_call] = STATE(2108), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [331] = { + [sym__expression] = STATE(4062), + [sym_block] = STATE(4062), + [sym__identifier] = STATE(66), + [sym_identifier] = STATE(66), + [sym_special_identifier] = STATE(66), + [sym_boolean] = STATE(4062), + [sym_nil] = STATE(4062), + [sym__atom] = STATE(4062), + [sym_quoted_atom] = STATE(4062), + [sym__quoted_i_double] = STATE(3826), + [sym__quoted_i_single] = STATE(3829), + [sym__quoted_i_heredoc_single] = STATE(4077), + [sym__quoted_i_heredoc_double] = STATE(4083), + [sym_string] = STATE(4062), + [sym_charlist] = STATE(4062), + [sym_sigil] = STATE(4062), + [sym_keywords] = STATE(4060), + [sym_pair] = STATE(3694), + [sym__keyword] = STATE(759), + [sym_quoted_keyword] = STATE(759), + [sym_list] = STATE(4062), + [sym_tuple] = STATE(4062), + [sym_bitstring] = STATE(4062), + [sym_map] = STATE(4062), + [sym_unary_operator] = STATE(4062), + [sym_binary_operator] = STATE(4062), + [sym_operator_identifier] = STATE(5580), + [sym_dot] = STATE(4062), + [sym_call] = STATE(4062), + [sym__call_without_parentheses] = STATE(4089), + [sym__call_with_parentheses] = STATE(4092), + [sym__local_call_without_parentheses] = STATE(4097), + [sym__local_call_with_parentheses] = STATE(3372), + [sym__local_call_just_do_block] = STATE(4098), + [sym__remote_call_without_parentheses] = STATE(4105), + [sym__remote_call_with_parentheses] = STATE(3374), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3375), + [sym__anonymous_dot] = STATE(5531), + [sym__double_call] = STATE(4106), + [sym_access_call] = STATE(4062), + [sym_anonymous_function] = STATE(4062), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1133), + [aux_sym_identifier_token1] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1135), + [sym_unused_identifier] = ACTIONS(1137), + [anon_sym___MODULE__] = ACTIONS(1139), + [anon_sym___DIR__] = ACTIONS(1139), + [anon_sym___ENV__] = ACTIONS(1139), + [anon_sym___CALLER__] = ACTIONS(1139), + [anon_sym___STACKTRACE__] = ACTIONS(1139), + [sym_alias] = ACTIONS(1495), + [sym_integer] = ACTIONS(1495), + [sym_float] = ACTIONS(1495), + [sym_char] = ACTIONS(1495), + [anon_sym_true] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [anon_sym_nil] = ACTIONS(1145), + [sym_atom] = ACTIONS(1495), + [anon_sym_DQUOTE] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1151), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1157), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1159), + [sym_keyword] = ACTIONS(1161), + [anon_sym_LT_LT] = ACTIONS(1163), + [anon_sym_PERCENT] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_AT] = ACTIONS(1173), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1175), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1177), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1179), + }, + [332] = { + [sym__expression] = STATE(2639), + [sym_block] = STATE(2639), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2639), + [sym_nil] = STATE(2639), + [sym__atom] = STATE(2639), + [sym_quoted_atom] = STATE(2639), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2639), + [sym_charlist] = STATE(2639), + [sym_sigil] = STATE(2639), + [sym_list] = STATE(2639), + [sym_tuple] = STATE(2639), + [sym_bitstring] = STATE(2639), + [sym_map] = STATE(2639), + [sym_unary_operator] = STATE(2639), + [sym_binary_operator] = STATE(2639), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2639), + [sym_call] = STATE(2639), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(2108), - [sym_anonymous_function] = STATE(2108), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(2639), + [sym_anonymous_function] = STATE(2639), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), [aux_sym_identifier_token1] = ACTIONS(67), @@ -68497,12 +69005,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(1495), - [anon_sym_catch] = ACTIONS(1495), - [anon_sym_else] = ACTIONS(1495), - [anon_sym_end] = ACTIONS(1495), + [anon_sym_after] = ACTIONS(1497), + [anon_sym_catch] = ACTIONS(1497), + [anon_sym_else] = ACTIONS(1497), + [anon_sym_end] = ACTIONS(1497), [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(1495), + [anon_sym_rescue] = ACTIONS(1497), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), @@ -68510,89 +69018,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(982), }, - [334] = { - [sym__expression] = STATE(3072), - [sym_block] = STATE(3072), - [sym__identifier] = STATE(68), - [sym_identifier] = STATE(68), - [sym_special_identifier] = STATE(68), - [sym_boolean] = STATE(3072), - [sym_nil] = STATE(3072), - [sym__atom] = STATE(3072), - [sym_quoted_atom] = STATE(3072), - [sym__quoted_i_double] = STATE(1678), - [sym__quoted_i_single] = STATE(1677), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(3072), - [sym_charlist] = STATE(3072), - [sym_sigil] = STATE(3072), - [sym_keywords] = STATE(1946), - [sym_pair] = STATE(2722), - [sym__keyword] = STATE(660), - [sym_quoted_keyword] = STATE(660), - [sym_list] = STATE(3072), - [sym_tuple] = STATE(3072), - [sym_bitstring] = STATE(3072), - [sym_map] = STATE(3072), - [sym_unary_operator] = STATE(3072), - [sym_binary_operator] = STATE(3072), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(3072), - [sym_call] = STATE(3072), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(3072), - [sym_anonymous_function] = STATE(3072), + [333] = { + [sym__expression] = STATE(4088), + [sym_block] = STATE(4088), + [sym__identifier] = STATE(93), + [sym_identifier] = STATE(93), + [sym_special_identifier] = STATE(93), + [sym_boolean] = STATE(4088), + [sym_nil] = STATE(4088), + [sym__atom] = STATE(4088), + [sym_quoted_atom] = STATE(4088), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4088), + [sym_charlist] = STATE(4088), + [sym_sigil] = STATE(4088), + [sym_keywords] = STATE(3102), + [sym_pair] = STATE(3873), + [sym__keyword] = STATE(853), + [sym_quoted_keyword] = STATE(853), + [sym_list] = STATE(4088), + [sym_tuple] = STATE(4088), + [sym_bitstring] = STATE(4088), + [sym_map] = STATE(4088), + [sym_unary_operator] = STATE(4088), + [sym_binary_operator] = STATE(4088), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4088), + [sym_call] = STATE(4088), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(72), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4088), + [sym_anonymous_function] = STATE(4088), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(662), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(1497), - [sym_integer] = ACTIONS(1497), - [sym_float] = ACTIONS(1497), - [sym_char] = ACTIONS(1497), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), - [sym_atom] = ACTIONS(1497), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1499), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1501), + [sym_integer] = ACTIONS(1501), + [sym_float] = ACTIONS(1501), + [sym_char] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(1501), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(383), - [sym_keyword] = ACTIONS(666), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(670), - [anon_sym_DASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(670), - [anon_sym_CARET] = ACTIONS(670), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(670), - [anon_sym_not] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1503), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1507), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AT] = ACTIONS(1509), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -68632,59 +69140,839 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), + [anon_sym_fn] = ACTIONS(1105), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(674), + [sym__before_unary_op] = ACTIONS(1511), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [334] = { + [sym__expression] = STATE(2952), + [sym_block] = STATE(2952), + [sym__identifier] = STATE(56), + [sym_identifier] = STATE(56), + [sym_special_identifier] = STATE(56), + [sym_boolean] = STATE(2952), + [sym_nil] = STATE(2952), + [sym__atom] = STATE(2952), + [sym_quoted_atom] = STATE(2952), + [sym__quoted_i_double] = STATE(2227), + [sym__quoted_i_single] = STATE(2228), + [sym__quoted_i_heredoc_single] = STATE(2910), + [sym__quoted_i_heredoc_double] = STATE(2805), + [sym_string] = STATE(2952), + [sym_charlist] = STATE(2952), + [sym_sigil] = STATE(2952), + [sym_keywords] = STATE(2737), + [sym_pair] = STATE(2287), + [sym__keyword] = STATE(480), + [sym_quoted_keyword] = STATE(480), + [sym_list] = STATE(2952), + [sym_tuple] = STATE(2952), + [sym_bitstring] = STATE(2952), + [sym_map] = STATE(2952), + [sym_unary_operator] = STATE(2952), + [sym_binary_operator] = STATE(2952), + [sym_operator_identifier] = STATE(5636), + [sym_dot] = STATE(2952), + [sym_call] = STATE(2952), + [sym__call_without_parentheses] = STATE(2883), + [sym__call_with_parentheses] = STATE(2876), + [sym__local_call_without_parentheses] = STATE(2870), + [sym__local_call_with_parentheses] = STATE(2037), + [sym__local_call_just_do_block] = STATE(2853), + [sym__remote_call_without_parentheses] = STATE(2846), + [sym__remote_call_with_parentheses] = STATE(2038), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2051), + [sym__anonymous_dot] = STATE(5534), + [sym__double_call] = STATE(2836), + [sym_access_call] = STATE(2952), + [sym_anonymous_function] = STATE(2952), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(1513), + [sym_integer] = ACTIONS(1513), + [sym_float] = ACTIONS(1513), + [sym_char] = ACTIONS(1513), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(1513), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(578), + [sym_keyword] = ACTIONS(580), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), }, [335] = { - [sym__expression] = STATE(3337), - [sym_block] = STATE(3337), + [sym__terminator] = STATE(773), + [sym__expression] = STATE(2710), + [sym_block] = STATE(2710), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(2710), + [sym_nil] = STATE(2710), + [sym__atom] = STATE(2710), + [sym_quoted_atom] = STATE(2710), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2710), + [sym_charlist] = STATE(2710), + [sym_sigil] = STATE(2710), + [sym_list] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_bitstring] = STATE(2710), + [sym_map] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_binary_operator] = STATE(2710), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2710), + [sym_call] = STATE(2710), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(2710), + [sym_body] = STATE(4408), + [sym_anonymous_function] = STATE(2710), + [aux_sym__terminator_repeat1] = STATE(1031), + [aux_sym__terminator_token1] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1399), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1060), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1401), + [sym_integer] = ACTIONS(1401), + [sym_float] = ACTIONS(1401), + [sym_char] = ACTIONS(1401), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1401), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [336] = { + [sym__expression] = STATE(2639), + [sym_block] = STATE(2639), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2639), + [sym_nil] = STATE(2639), + [sym__atom] = STATE(2639), + [sym_quoted_atom] = STATE(2639), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2639), + [sym_charlist] = STATE(2639), + [sym_sigil] = STATE(2639), + [sym_list] = STATE(2639), + [sym_tuple] = STATE(2639), + [sym_bitstring] = STATE(2639), + [sym_map] = STATE(2639), + [sym_unary_operator] = STATE(2639), + [sym_binary_operator] = STATE(2639), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2639), + [sym_call] = STATE(2639), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(2639), + [sym_anonymous_function] = STATE(2639), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(1515), + [anon_sym_catch] = ACTIONS(1515), + [anon_sym_else] = ACTIONS(1515), + [anon_sym_end] = ACTIONS(1515), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(1515), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [337] = { + [sym__expression] = STATE(2947), + [sym_block] = STATE(2947), + [sym__identifier] = STATE(56), + [sym_identifier] = STATE(56), + [sym_special_identifier] = STATE(56), + [sym_boolean] = STATE(2947), + [sym_nil] = STATE(2947), + [sym__atom] = STATE(2947), + [sym_quoted_atom] = STATE(2947), + [sym__quoted_i_double] = STATE(2227), + [sym__quoted_i_single] = STATE(2228), + [sym__quoted_i_heredoc_single] = STATE(2910), + [sym__quoted_i_heredoc_double] = STATE(2805), + [sym_string] = STATE(2947), + [sym_charlist] = STATE(2947), + [sym_sigil] = STATE(2947), + [sym_keywords] = STATE(2732), + [sym_pair] = STATE(2287), + [sym__keyword] = STATE(480), + [sym_quoted_keyword] = STATE(480), + [sym_list] = STATE(2947), + [sym_tuple] = STATE(2947), + [sym_bitstring] = STATE(2947), + [sym_map] = STATE(2947), + [sym_unary_operator] = STATE(2947), + [sym_binary_operator] = STATE(2947), + [sym_operator_identifier] = STATE(5636), + [sym_dot] = STATE(2947), + [sym_call] = STATE(2947), + [sym__call_without_parentheses] = STATE(2883), + [sym__call_with_parentheses] = STATE(2876), + [sym__local_call_without_parentheses] = STATE(2870), + [sym__local_call_with_parentheses] = STATE(2037), + [sym__local_call_just_do_block] = STATE(2853), + [sym__remote_call_without_parentheses] = STATE(2846), + [sym__remote_call_with_parentheses] = STATE(2038), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2051), + [sym__anonymous_dot] = STATE(5534), + [sym__double_call] = STATE(2836), + [sym_access_call] = STATE(2947), + [sym_anonymous_function] = STATE(2947), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(1517), + [sym_integer] = ACTIONS(1517), + [sym_float] = ACTIONS(1517), + [sym_char] = ACTIONS(1517), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(1517), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(578), + [sym_keyword] = ACTIONS(580), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [338] = { + [sym__expression] = STATE(2639), + [sym_block] = STATE(2639), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2639), + [sym_nil] = STATE(2639), + [sym__atom] = STATE(2639), + [sym_quoted_atom] = STATE(2639), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2639), + [sym_charlist] = STATE(2639), + [sym_sigil] = STATE(2639), + [sym_list] = STATE(2639), + [sym_tuple] = STATE(2639), + [sym_bitstring] = STATE(2639), + [sym_map] = STATE(2639), + [sym_unary_operator] = STATE(2639), + [sym_binary_operator] = STATE(2639), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2639), + [sym_call] = STATE(2639), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(2639), + [sym_anonymous_function] = STATE(2639), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(1519), + [anon_sym_catch] = ACTIONS(1519), + [anon_sym_else] = ACTIONS(1519), + [anon_sym_end] = ACTIONS(1519), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(1519), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [339] = { + [sym__expression] = STATE(2639), + [sym_block] = STATE(2639), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2639), + [sym_nil] = STATE(2639), + [sym__atom] = STATE(2639), + [sym_quoted_atom] = STATE(2639), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2639), + [sym_charlist] = STATE(2639), + [sym_sigil] = STATE(2639), + [sym_list] = STATE(2639), + [sym_tuple] = STATE(2639), + [sym_bitstring] = STATE(2639), + [sym_map] = STATE(2639), + [sym_unary_operator] = STATE(2639), + [sym_binary_operator] = STATE(2639), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2639), + [sym_call] = STATE(2639), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(2639), + [sym_anonymous_function] = STATE(2639), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(1521), + [anon_sym_catch] = ACTIONS(1521), + [anon_sym_else] = ACTIONS(1521), + [anon_sym_end] = ACTIONS(1521), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(1521), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [340] = { + [sym__expression] = STATE(4122), + [sym_block] = STATE(4122), [sym__identifier] = STATE(64), [sym_identifier] = STATE(64), [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3337), - [sym_nil] = STATE(3337), - [sym__atom] = STATE(3337), - [sym_quoted_atom] = STATE(3337), - [sym__quoted_i_double] = STATE(3097), - [sym__quoted_i_single] = STATE(3101), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3337), - [sym_charlist] = STATE(3337), - [sym_sigil] = STATE(3337), - [sym_keywords] = STATE(3336), - [sym_pair] = STATE(2825), - [sym__keyword] = STATE(677), - [sym_quoted_keyword] = STATE(677), - [sym_list] = STATE(3337), - [sym_tuple] = STATE(3337), - [sym_bitstring] = STATE(3337), - [sym_map] = STATE(3337), - [sym_unary_operator] = STATE(3337), - [sym_binary_operator] = STATE(3337), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3337), - [sym_call] = STATE(3337), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), + [sym_boolean] = STATE(4122), + [sym_nil] = STATE(4122), + [sym__atom] = STATE(4122), + [sym_quoted_atom] = STATE(4122), + [sym__quoted_i_double] = STATE(3376), + [sym__quoted_i_single] = STATE(3377), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(4122), + [sym_charlist] = STATE(4122), + [sym_sigil] = STATE(4122), + [sym_keywords] = STATE(5528), + [sym_pair] = STATE(5034), + [sym__keyword] = STATE(581), + [sym_quoted_keyword] = STATE(581), + [sym_list] = STATE(4122), + [sym_tuple] = STATE(4122), + [sym_bitstring] = STATE(4122), + [sym_map] = STATE(4122), + [sym_unary_operator] = STATE(4122), + [sym_binary_operator] = STATE(4122), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(4122), + [sym_call] = STATE(4122), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3337), - [sym_anonymous_function] = STATE(3337), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(4122), + [sym_anonymous_function] = STATE(4122), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1413), [aux_sym_identifier_token1] = ACTIONS(826), [anon_sym_DOT_DOT_DOT] = ACTIONS(826), [sym_unused_identifier] = ACTIONS(828), @@ -68693,14 +69981,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ENV__] = ACTIONS(830), [anon_sym___CALLER__] = ACTIONS(830), [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1499), - [sym_integer] = ACTIONS(1499), - [sym_float] = ACTIONS(1499), - [sym_char] = ACTIONS(1499), + [sym_alias] = ACTIONS(1461), + [sym_integer] = ACTIONS(1461), + [sym_float] = ACTIONS(1461), + [sym_char] = ACTIONS(1461), [anon_sym_true] = ACTIONS(834), [anon_sym_false] = ACTIONS(834), [anon_sym_nil] = ACTIONS(836), - [sym_atom] = ACTIONS(1499), + [sym_atom] = ACTIONS(1461), [anon_sym_DQUOTE] = ACTIONS(838), [anon_sym_SQUOTE] = ACTIONS(840), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), @@ -68770,89 +70058,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(868), }, - [336] = { - [sym__expression] = STATE(1686), - [sym_block] = STATE(1686), - [sym__identifier] = STATE(25), - [sym_identifier] = STATE(25), - [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1686), - [sym_nil] = STATE(1686), - [sym__atom] = STATE(1686), - [sym_quoted_atom] = STATE(1686), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1686), - [sym_charlist] = STATE(1686), - [sym_sigil] = STATE(1686), - [sym_keywords] = STATE(1488), - [sym_pair] = STATE(1520), - [sym__keyword] = STATE(840), - [sym_quoted_keyword] = STATE(840), - [sym_list] = STATE(1686), - [sym_tuple] = STATE(1686), - [sym_bitstring] = STATE(1686), - [sym_map] = STATE(1686), - [sym_unary_operator] = STATE(1686), - [sym_binary_operator] = STATE(1686), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1686), - [sym_call] = STATE(1686), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1686), - [sym_anonymous_function] = STATE(1686), + [341] = { + [sym__expression] = STATE(4084), + [sym_block] = STATE(4084), + [sym__identifier] = STATE(93), + [sym_identifier] = STATE(93), + [sym_special_identifier] = STATE(93), + [sym_boolean] = STATE(4084), + [sym_nil] = STATE(4084), + [sym__atom] = STATE(4084), + [sym_quoted_atom] = STATE(4084), + [sym__quoted_i_double] = STATE(2275), + [sym__quoted_i_single] = STATE(2276), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4084), + [sym_charlist] = STATE(4084), + [sym_sigil] = STATE(4084), + [sym_keywords] = STATE(3097), + [sym_pair] = STATE(3873), + [sym__keyword] = STATE(853), + [sym_quoted_keyword] = STATE(853), + [sym_list] = STATE(4084), + [sym_tuple] = STATE(4084), + [sym_bitstring] = STATE(4084), + [sym_map] = STATE(4084), + [sym_unary_operator] = STATE(4084), + [sym_binary_operator] = STATE(4084), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4084), + [sym_call] = STATE(4084), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(72), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4084), + [sym_anonymous_function] = STATE(4084), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1479), - [aux_sym_identifier_token1] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(69), - [anon_sym___MODULE__] = ACTIONS(71), - [anon_sym___DIR__] = ACTIONS(71), - [anon_sym___ENV__] = ACTIONS(71), - [anon_sym___CALLER__] = ACTIONS(71), - [anon_sym___STACKTRACE__] = ACTIONS(71), - [sym_alias] = ACTIONS(1501), - [sym_integer] = ACTIONS(1501), - [sym_float] = ACTIONS(1501), - [sym_char] = ACTIONS(1501), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(1501), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1499), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1523), + [sym_integer] = ACTIONS(1523), + [sym_float] = ACTIONS(1523), + [sym_char] = ACTIONS(1523), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(1091), [sym_keyword] = ACTIONS(1503), - [anon_sym_LT_LT] = ACTIONS(95), - [anon_sym_PERCENT] = ACTIONS(97), - [anon_sym_AMP] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), - [anon_sym_BANG] = ACTIONS(101), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), - [anon_sym_not] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1507), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AT] = ACTIONS(1509), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -68892,75 +70180,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(1105), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(119), + [sym__before_unary_op] = ACTIONS(1511), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(121), + [sym__quoted_atom_start] = ACTIONS(1109), }, - [337] = { - [sym__terminator] = STATE(903), - [sym__expression] = STATE(2643), - [sym_block] = STATE(2643), - [sym__identifier] = STATE(54), - [sym_identifier] = STATE(54), - [sym_special_identifier] = STATE(54), - [sym_boolean] = STATE(2643), - [sym_nil] = STATE(2643), - [sym__atom] = STATE(2643), - [sym_quoted_atom] = STATE(2643), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2643), - [sym_charlist] = STATE(2643), - [sym_sigil] = STATE(2643), - [sym_list] = STATE(2643), - [sym_tuple] = STATE(2643), - [sym_bitstring] = STATE(2643), - [sym_map] = STATE(2643), - [sym_unary_operator] = STATE(2643), - [sym_binary_operator] = STATE(2643), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2643), - [sym_call] = STATE(2643), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(2643), - [sym_body] = STATE(3798), - [sym_anonymous_function] = STATE(2643), - [aux_sym__terminator_repeat1] = STATE(1028), - [aux_sym__terminator_token1] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1471), + [342] = { + [sym__expression] = STATE(2639), + [sym_block] = STATE(2639), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2639), + [sym_nil] = STATE(2639), + [sym__atom] = STATE(2639), + [sym_quoted_atom] = STATE(2639), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2639), + [sym_charlist] = STATE(2639), + [sym_sigil] = STATE(2639), + [sym_list] = STATE(2639), + [sym_tuple] = STATE(2639), + [sym_bitstring] = STATE(2639), + [sym_map] = STATE(2639), + [sym_unary_operator] = STATE(2639), + [sym_binary_operator] = STATE(2639), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2639), + [sym_call] = STATE(2639), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(2639), + [sym_anonymous_function] = STATE(2639), + [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(1427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1427), - [sym_unused_identifier] = ACTIONS(1429), - [anon_sym___MODULE__] = ACTIONS(1431), - [anon_sym___DIR__] = ACTIONS(1431), - [anon_sym___ENV__] = ACTIONS(1431), - [anon_sym___CALLER__] = ACTIONS(1431), - [anon_sym___STACKTRACE__] = ACTIONS(1431), - [sym_alias] = ACTIONS(1473), - [sym_integer] = ACTIONS(1473), - [sym_float] = ACTIONS(1473), - [sym_char] = ACTIONS(1473), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), [anon_sym_true] = ACTIONS(948), [anon_sym_false] = ACTIONS(948), [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1473), + [sym_atom] = ACTIONS(946), [anon_sym_DQUOTE] = ACTIONS(952), [anon_sym_SQUOTE] = ACTIONS(954), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), @@ -68970,18 +70254,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(1435), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), [anon_sym_LT_LT] = ACTIONS(966), [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_CARET] = ACTIONS(1441), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1441), - [anon_sym_not] = ACTIONS(1441), - [anon_sym_AT] = ACTIONS(1443), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -69021,98 +70305,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_end] = ACTIONS(1063), + [anon_sym_after] = ACTIONS(1525), + [anon_sym_catch] = ACTIONS(1525), + [anon_sym_else] = ACTIONS(1525), + [anon_sym_end] = ACTIONS(1525), [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(1525), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1445), + [sym__before_unary_op] = ACTIONS(980), [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(982), }, - [338] = { - [sym__expression] = STATE(2641), - [sym_block] = STATE(2641), - [sym__identifier] = STATE(45), - [sym_identifier] = STATE(45), - [sym_special_identifier] = STATE(45), - [sym_boolean] = STATE(2641), - [sym_nil] = STATE(2641), - [sym__atom] = STATE(2641), - [sym_quoted_atom] = STATE(2641), - [sym__quoted_i_double] = STATE(2235), - [sym__quoted_i_single] = STATE(2189), - [sym__quoted_i_heredoc_single] = STATE(2713), - [sym__quoted_i_heredoc_double] = STATE(2714), - [sym_string] = STATE(2641), - [sym_charlist] = STATE(2641), - [sym_sigil] = STATE(2641), - [sym_keywords] = STATE(2640), - [sym_pair] = STATE(2129), - [sym__keyword] = STATE(726), - [sym_quoted_keyword] = STATE(726), - [sym_list] = STATE(2641), - [sym_tuple] = STATE(2641), - [sym_bitstring] = STATE(2641), - [sym_map] = STATE(2641), - [sym_unary_operator] = STATE(2641), - [sym_binary_operator] = STATE(2641), - [sym_operator_identifier] = STATE(4988), - [sym_dot] = STATE(2641), - [sym_call] = STATE(2641), - [sym__call_without_parentheses] = STATE(2712), - [sym__call_with_parentheses] = STATE(2711), - [sym__local_call_without_parentheses] = STATE(2710), - [sym__local_call_with_parentheses] = STATE(1879), - [sym__local_call_just_do_block] = STATE(2709), - [sym__remote_call_without_parentheses] = STATE(2708), - [sym__remote_call_with_parentheses] = STATE(1859), - [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1919), - [sym__anonymous_dot] = STATE(4871), - [sym__double_call] = STATE(2707), - [sym_access_call] = STATE(2641), - [sym_anonymous_function] = STATE(2641), + [343] = { + [sym__expression] = STATE(2424), + [sym_block] = STATE(2424), + [sym__identifier] = STATE(35), + [sym_identifier] = STATE(35), + [sym_special_identifier] = STATE(35), + [sym_boolean] = STATE(2424), + [sym_nil] = STATE(2424), + [sym__atom] = STATE(2424), + [sym_quoted_atom] = STATE(2424), + [sym__quoted_i_double] = STATE(1777), + [sym__quoted_i_single] = STATE(1778), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(2424), + [sym_charlist] = STATE(2424), + [sym_sigil] = STATE(2424), + [sym_keywords] = STATE(2100), + [sym_pair] = STATE(2099), + [sym__keyword] = STATE(511), + [sym_quoted_keyword] = STATE(511), + [sym_list] = STATE(2424), + [sym_tuple] = STATE(2424), + [sym_bitstring] = STATE(2424), + [sym_map] = STATE(2424), + [sym_unary_operator] = STATE(2424), + [sym_binary_operator] = STATE(2424), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(2424), + [sym_call] = STATE(2424), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(2424), + [sym_anonymous_function] = STATE(2424), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(479), - [aux_sym_identifier_token1] = ACTIONS(481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(481), - [sym_unused_identifier] = ACTIONS(483), - [anon_sym___MODULE__] = ACTIONS(485), - [anon_sym___DIR__] = ACTIONS(485), - [anon_sym___ENV__] = ACTIONS(485), - [anon_sym___CALLER__] = ACTIONS(485), - [anon_sym___STACKTRACE__] = ACTIONS(485), - [sym_alias] = ACTIONS(1505), - [sym_integer] = ACTIONS(1505), - [sym_float] = ACTIONS(1505), - [sym_char] = ACTIONS(1505), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_nil] = ACTIONS(491), - [sym_atom] = ACTIONS(1505), - [anon_sym_DQUOTE] = ACTIONS(493), - [anon_sym_SQUOTE] = ACTIONS(495), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(497), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(499), - [anon_sym_LBRACE] = ACTIONS(501), - [anon_sym_LBRACK] = ACTIONS(503), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(367), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(1377), + [sym_integer] = ACTIONS(1377), + [sym_float] = ACTIONS(1377), + [sym_char] = ACTIONS(1377), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(505), - [sym_keyword] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(515), - [anon_sym_CARET] = ACTIONS(515), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(515), - [anon_sym_not] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(517), + [anon_sym_TILDE] = ACTIONS(389), + [sym_keyword] = ACTIONS(391), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(402), + [anon_sym_DASH] = ACTIONS(402), + [anon_sym_BANG] = ACTIONS(402), + [anon_sym_CARET] = ACTIONS(402), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(402), + [anon_sym_not] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(404), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -69152,357 +70440,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(519), + [anon_sym_fn] = ACTIONS(406), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(523), + [sym__before_unary_op] = ACTIONS(410), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(525), + [sym__quoted_atom_start] = ACTIONS(412), }, - [339] = { - [sym__expression] = STATE(1561), - [sym_block] = STATE(1561), - [sym__identifier] = STATE(14), - [sym_identifier] = STATE(14), - [sym_special_identifier] = STATE(14), - [sym_boolean] = STATE(1561), - [sym_nil] = STATE(1561), - [sym__atom] = STATE(1561), - [sym_quoted_atom] = STATE(1561), - [sym__quoted_i_double] = STATE(1146), - [sym__quoted_i_single] = STATE(1145), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(1561), - [sym_charlist] = STATE(1561), - [sym_sigil] = STATE(1561), - [sym_keywords] = STATE(1370), - [sym_pair] = STATE(1331), - [sym__keyword] = STATE(836), - [sym_quoted_keyword] = STATE(836), - [sym_list] = STATE(1561), - [sym_tuple] = STATE(1561), - [sym_bitstring] = STATE(1561), - [sym_map] = STATE(1561), - [sym_unary_operator] = STATE(1561), - [sym_binary_operator] = STATE(1561), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(1561), - [sym_call] = STATE(1561), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(1561), - [sym_anonymous_function] = STATE(1561), + [344] = { + [sym__expression] = STATE(2639), + [sym_block] = STATE(2639), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2639), + [sym_nil] = STATE(2639), + [sym__atom] = STATE(2639), + [sym_quoted_atom] = STATE(2639), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2639), + [sym_charlist] = STATE(2639), + [sym_sigil] = STATE(2639), + [sym_list] = STATE(2639), + [sym_tuple] = STATE(2639), + [sym_bitstring] = STATE(2639), + [sym_map] = STATE(2639), + [sym_unary_operator] = STATE(2639), + [sym_binary_operator] = STATE(2639), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2639), + [sym_call] = STATE(2639), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(2639), + [sym_anonymous_function] = STATE(2639), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(197), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), - [sym_alias] = ACTIONS(1507), - [sym_integer] = ACTIONS(1507), - [sym_float] = ACTIONS(1507), - [sym_char] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(222), - [sym_keyword] = ACTIONS(224), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(230), - [anon_sym_PLUS] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_CARET] = ACTIONS(235), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(235), - [anon_sym_not] = ACTIONS(235), - [anon_sym_AT] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(243), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [340] = { - [sym__expression] = STATE(3457), - [sym_block] = STATE(3457), - [sym__identifier] = STATE(95), - [sym_identifier] = STATE(95), - [sym_special_identifier] = STATE(95), - [sym_boolean] = STATE(3457), - [sym_nil] = STATE(3457), - [sym__atom] = STATE(3457), - [sym_quoted_atom] = STATE(3457), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3457), - [sym_charlist] = STATE(3457), - [sym_sigil] = STATE(3457), - [sym_keywords] = STATE(2579), - [sym_pair] = STATE(3260), - [sym__keyword] = STATE(802), - [sym_quoted_keyword] = STATE(802), - [sym_list] = STATE(3457), - [sym_tuple] = STATE(3457), - [sym_bitstring] = STATE(3457), - [sym_map] = STATE(3457), - [sym_unary_operator] = STATE(3457), - [sym_binary_operator] = STATE(3457), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3457), - [sym_call] = STATE(3457), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(65), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3457), - [sym_anonymous_function] = STATE(3457), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1509), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1511), - [sym_integer] = ACTIONS(1511), - [sym_float] = ACTIONS(1511), - [sym_char] = ACTIONS(1511), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1511), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [sym_keyword] = ACTIONS(1513), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1517), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1517), - [anon_sym_not] = ACTIONS(1517), - [anon_sym_AT] = ACTIONS(1519), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1521), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [341] = { - [sym__expression] = STATE(1767), - [sym_block] = STATE(1767), - [sym__identifier] = STATE(25), - [sym_identifier] = STATE(25), - [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1767), - [sym_nil] = STATE(1767), - [sym__atom] = STATE(1767), - [sym_quoted_atom] = STATE(1767), - [sym__quoted_i_double] = STATE(1368), - [sym__quoted_i_single] = STATE(1367), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1767), - [sym_charlist] = STATE(1767), - [sym_sigil] = STATE(1767), - [sym_keywords] = STATE(1515), - [sym_pair] = STATE(1520), - [sym__keyword] = STATE(840), - [sym_quoted_keyword] = STATE(840), - [sym_list] = STATE(1767), - [sym_tuple] = STATE(1767), - [sym_bitstring] = STATE(1767), - [sym_map] = STATE(1767), - [sym_unary_operator] = STATE(1767), - [sym_binary_operator] = STATE(1767), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1767), - [sym_call] = STATE(1767), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1767), - [sym_anonymous_function] = STATE(1767), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(942), [aux_sym_identifier_token1] = ACTIONS(67), [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(944), [anon_sym___MODULE__] = ACTIONS(71), [anon_sym___DIR__] = ACTIONS(71), [anon_sym___ENV__] = ACTIONS(71), [anon_sym___CALLER__] = ACTIONS(71), [anon_sym___STACKTRACE__] = ACTIONS(71), - [sym_alias] = ACTIONS(1523), - [sym_integer] = ACTIONS(1523), - [sym_float] = ACTIONS(1523), - [sym_char] = ACTIONS(1523), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(1523), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(91), - [sym_keyword] = ACTIONS(1503), - [anon_sym_LT_LT] = ACTIONS(95), - [anon_sym_PERCENT] = ACTIONS(97), - [anon_sym_AMP] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), - [anon_sym_BANG] = ACTIONS(101), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), - [anon_sym_not] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -69542,450 +70565,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(115), + [anon_sym_after] = ACTIONS(1527), + [anon_sym_catch] = ACTIONS(1527), + [anon_sym_else] = ACTIONS(1527), + [anon_sym_end] = ACTIONS(1527), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(1527), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(119), + [sym__before_unary_op] = ACTIONS(980), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(121), - }, - [342] = { - [sym__expression] = STATE(3449), - [sym_block] = STATE(3449), - [sym__identifier] = STATE(95), - [sym_identifier] = STATE(95), - [sym_special_identifier] = STATE(95), - [sym_boolean] = STATE(3449), - [sym_nil] = STATE(3449), - [sym__atom] = STATE(3449), - [sym_quoted_atom] = STATE(3449), - [sym__quoted_i_double] = STATE(2114), - [sym__quoted_i_single] = STATE(2130), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3449), - [sym_charlist] = STATE(3449), - [sym_sigil] = STATE(3449), - [sym_keywords] = STATE(2588), - [sym_pair] = STATE(3260), - [sym__keyword] = STATE(802), - [sym_quoted_keyword] = STATE(802), - [sym_list] = STATE(3449), - [sym_tuple] = STATE(3449), - [sym_bitstring] = STATE(3449), - [sym_map] = STATE(3449), - [sym_unary_operator] = STATE(3449), - [sym_binary_operator] = STATE(3449), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3449), - [sym_call] = STATE(3449), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(65), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3449), - [sym_anonymous_function] = STATE(3449), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1509), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1525), - [sym_integer] = ACTIONS(1525), - [sym_float] = ACTIONS(1525), - [sym_char] = ACTIONS(1525), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1525), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [sym_keyword] = ACTIONS(1513), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1517), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1517), - [anon_sym_not] = ACTIONS(1517), - [anon_sym_AT] = ACTIONS(1519), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1521), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [343] = { - [sym__expression] = STATE(2646), - [sym_block] = STATE(2646), - [sym__identifier] = STATE(45), - [sym_identifier] = STATE(45), - [sym_special_identifier] = STATE(45), - [sym_boolean] = STATE(2646), - [sym_nil] = STATE(2646), - [sym__atom] = STATE(2646), - [sym_quoted_atom] = STATE(2646), - [sym__quoted_i_double] = STATE(2235), - [sym__quoted_i_single] = STATE(2189), - [sym__quoted_i_heredoc_single] = STATE(2713), - [sym__quoted_i_heredoc_double] = STATE(2714), - [sym_string] = STATE(2646), - [sym_charlist] = STATE(2646), - [sym_sigil] = STATE(2646), - [sym_keywords] = STATE(2645), - [sym_pair] = STATE(2129), - [sym__keyword] = STATE(726), - [sym_quoted_keyword] = STATE(726), - [sym_list] = STATE(2646), - [sym_tuple] = STATE(2646), - [sym_bitstring] = STATE(2646), - [sym_map] = STATE(2646), - [sym_unary_operator] = STATE(2646), - [sym_binary_operator] = STATE(2646), - [sym_operator_identifier] = STATE(4988), - [sym_dot] = STATE(2646), - [sym_call] = STATE(2646), - [sym__call_without_parentheses] = STATE(2712), - [sym__call_with_parentheses] = STATE(2711), - [sym__local_call_without_parentheses] = STATE(2710), - [sym__local_call_with_parentheses] = STATE(1879), - [sym__local_call_just_do_block] = STATE(2709), - [sym__remote_call_without_parentheses] = STATE(2708), - [sym__remote_call_with_parentheses] = STATE(1859), - [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1919), - [sym__anonymous_dot] = STATE(4871), - [sym__double_call] = STATE(2707), - [sym_access_call] = STATE(2646), - [sym_anonymous_function] = STATE(2646), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(479), - [aux_sym_identifier_token1] = ACTIONS(481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(481), - [sym_unused_identifier] = ACTIONS(483), - [anon_sym___MODULE__] = ACTIONS(485), - [anon_sym___DIR__] = ACTIONS(485), - [anon_sym___ENV__] = ACTIONS(485), - [anon_sym___CALLER__] = ACTIONS(485), - [anon_sym___STACKTRACE__] = ACTIONS(485), - [sym_alias] = ACTIONS(1527), - [sym_integer] = ACTIONS(1527), - [sym_float] = ACTIONS(1527), - [sym_char] = ACTIONS(1527), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_nil] = ACTIONS(491), - [sym_atom] = ACTIONS(1527), - [anon_sym_DQUOTE] = ACTIONS(493), - [anon_sym_SQUOTE] = ACTIONS(495), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(497), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(499), - [anon_sym_LBRACE] = ACTIONS(501), - [anon_sym_LBRACK] = ACTIONS(503), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(505), - [sym_keyword] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(515), - [anon_sym_CARET] = ACTIONS(515), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(515), - [anon_sym_not] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(517), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(519), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(523), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(525), - }, - [344] = { - [sym__expression] = STATE(2113), - [sym_block] = STATE(2113), - [sym__identifier] = STATE(34), - [sym_identifier] = STATE(34), - [sym_special_identifier] = STATE(34), - [sym_boolean] = STATE(2113), - [sym_nil] = STATE(2113), - [sym__atom] = STATE(2113), - [sym_quoted_atom] = STATE(2113), - [sym__quoted_i_double] = STATE(1678), - [sym__quoted_i_single] = STATE(1677), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(2113), - [sym_charlist] = STATE(2113), - [sym_sigil] = STATE(2113), - [sym_keywords] = STATE(1976), - [sym_pair] = STATE(1922), - [sym__keyword] = STATE(901), - [sym_quoted_keyword] = STATE(901), - [sym_list] = STATE(2113), - [sym_tuple] = STATE(2113), - [sym_bitstring] = STATE(2113), - [sym_map] = STATE(2113), - [sym_unary_operator] = STATE(2113), - [sym_binary_operator] = STATE(2113), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(2113), - [sym_call] = STATE(2113), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(36), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(2113), - [sym_anonymous_function] = STATE(2113), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(361), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(1451), - [sym_integer] = ACTIONS(1451), - [sym_float] = ACTIONS(1451), - [sym_char] = ACTIONS(1451), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), - [sym_atom] = ACTIONS(1451), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(383), - [sym_keyword] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(396), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(396), - [anon_sym_not] = ACTIONS(396), - [anon_sym_AT] = ACTIONS(398), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(404), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), + [sym__quoted_atom_start] = ACTIONS(982), }, [345] = { - [sym__expression] = STATE(3467), - [sym_block] = STATE(3467), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3467), - [sym_nil] = STATE(3467), - [sym__atom] = STATE(3467), - [sym_quoted_atom] = STATE(3467), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3467), - [sym_charlist] = STATE(3467), - [sym_sigil] = STATE(3467), - [sym_list] = STATE(3467), - [sym_tuple] = STATE(3467), - [sym_bitstring] = STATE(3467), - [sym_map] = STATE(3467), - [sym_unary_operator] = STATE(3467), - [sym_binary_operator] = STATE(3467), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3467), - [sym_call] = STATE(3467), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3467), - [sym_anonymous_function] = STATE(3467), + [sym__expression] = STATE(4046), + [sym_block] = STATE(4046), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(4046), + [sym_nil] = STATE(4046), + [sym__atom] = STATE(4046), + [sym_quoted_atom] = STATE(4046), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(4046), + [sym_charlist] = STATE(4046), + [sym_sigil] = STATE(4046), + [sym_list] = STATE(4046), + [sym_tuple] = STATE(4046), + [sym_bitstring] = STATE(4046), + [sym_map] = STATE(4046), + [sym_unary_operator] = STATE(4046), + [sym_binary_operator] = STATE(4046), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(4046), + [sym_call] = STATE(4046), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(4046), + [sym_anonymous_function] = STATE(4046), [aux_sym__terminator_token1] = ACTIONS(1331), [anon_sym_SEMI] = ACTIONS(1333), [anon_sym_LPAREN] = ACTIONS(942), [anon_sym_RPAREN] = ACTIONS(1333), [aux_sym_identifier_token1] = ACTIONS(704), [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), + [sym_unused_identifier] = ACTIONS(1349), [anon_sym___MODULE__] = ACTIONS(708), [anon_sym___DIR__] = ACTIONS(708), [anon_sym___ENV__] = ACTIONS(708), @@ -70009,17 +70647,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), + [anon_sym_TILDE] = ACTIONS(1353), [anon_sym_LT_LT] = ACTIONS(966), [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -70063,60 +70701,314 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), + [sym__before_unary_op] = ACTIONS(1363), [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(982), }, [346] = { - [sym__expression] = STATE(3463), - [sym_block] = STATE(3463), - [sym__identifier] = STATE(54), - [sym_identifier] = STATE(54), - [sym_special_identifier] = STATE(54), - [sym_boolean] = STATE(3463), - [sym_nil] = STATE(3463), - [sym__atom] = STATE(3463), - [sym_quoted_atom] = STATE(3463), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3463), - [sym_charlist] = STATE(3463), - [sym_sigil] = STATE(3463), - [sym_list] = STATE(3463), - [sym_tuple] = STATE(3463), - [sym_bitstring] = STATE(3463), - [sym_map] = STATE(3463), - [sym_unary_operator] = STATE(3463), - [sym_binary_operator] = STATE(3463), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3463), - [sym_call] = STATE(3463), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3463), - [sym_anonymous_function] = STATE(3463), + [sym__expression] = STATE(4046), + [sym_block] = STATE(4046), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(4046), + [sym_nil] = STATE(4046), + [sym__atom] = STATE(4046), + [sym_quoted_atom] = STATE(4046), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(4046), + [sym_charlist] = STATE(4046), + [sym_sigil] = STATE(4046), + [sym_list] = STATE(4046), + [sym_tuple] = STATE(4046), + [sym_bitstring] = STATE(4046), + [sym_map] = STATE(4046), + [sym_unary_operator] = STATE(4046), + [sym_binary_operator] = STATE(4046), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(4046), + [sym_call] = STATE(4046), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(4046), + [sym_anonymous_function] = STATE(4046), [aux_sym__terminator_token1] = ACTIONS(1321), [anon_sym_SEMI] = ACTIONS(1323), [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(1427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1427), - [sym_unused_identifier] = ACTIONS(1429), - [anon_sym___MODULE__] = ACTIONS(1431), - [anon_sym___DIR__] = ACTIONS(1431), - [anon_sym___ENV__] = ACTIONS(1431), - [anon_sym___CALLER__] = ACTIONS(1431), - [anon_sym___STACKTRACE__] = ACTIONS(1431), + [anon_sym_RPAREN] = ACTIONS(1323), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1529), + [sym_integer] = ACTIONS(1529), + [sym_float] = ACTIONS(1529), + [sym_char] = ACTIONS(1529), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1529), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [347] = { + [sym__expression] = STATE(4046), + [sym_block] = STATE(4046), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(4046), + [sym_nil] = STATE(4046), + [sym__atom] = STATE(4046), + [sym_quoted_atom] = STATE(4046), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(4046), + [sym_charlist] = STATE(4046), + [sym_sigil] = STATE(4046), + [sym_list] = STATE(4046), + [sym_tuple] = STATE(4046), + [sym_bitstring] = STATE(4046), + [sym_map] = STATE(4046), + [sym_unary_operator] = STATE(4046), + [sym_binary_operator] = STATE(4046), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(4046), + [sym_call] = STATE(4046), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(4046), + [sym_anonymous_function] = STATE(4046), + [aux_sym__terminator_token1] = ACTIONS(1327), + [anon_sym_SEMI] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1329), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1529), + [sym_integer] = ACTIONS(1529), + [sym_float] = ACTIONS(1529), + [sym_char] = ACTIONS(1529), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1529), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [348] = { + [sym__expression] = STATE(4094), + [sym_block] = STATE(4094), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(4094), + [sym_nil] = STATE(4094), + [sym__atom] = STATE(4094), + [sym_quoted_atom] = STATE(4094), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(4094), + [sym_charlist] = STATE(4094), + [sym_sigil] = STATE(4094), + [sym_list] = STATE(4094), + [sym_tuple] = STATE(4094), + [sym_bitstring] = STATE(4094), + [sym_map] = STATE(4094), + [sym_unary_operator] = STATE(4094), + [sym_binary_operator] = STATE(4094), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(4094), + [sym_call] = STATE(4094), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(4094), + [sym_anonymous_function] = STATE(4094), + [aux_sym__terminator_token1] = ACTIONS(1321), + [anon_sym_SEMI] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1437), + [sym_unused_identifier] = ACTIONS(1439), + [anon_sym___MODULE__] = ACTIONS(1441), + [anon_sym___DIR__] = ACTIONS(1441), + [anon_sym___ENV__] = ACTIONS(1441), + [anon_sym___CALLER__] = ACTIONS(1441), + [anon_sym___STACKTRACE__] = ACTIONS(1441), [sym_alias] = ACTIONS(1531), [sym_integer] = ACTIONS(1531), [sym_float] = ACTIONS(1531), @@ -70135,17 +71027,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1435), + [anon_sym_TILDE] = ACTIONS(1445), [anon_sym_LT_LT] = ACTIONS(966), [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_CARET] = ACTIONS(1441), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1441), - [anon_sym_not] = ACTIONS(1441), - [anon_sym_AT] = ACTIONS(1443), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1451), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), + [anon_sym_not] = ACTIONS(1451), + [anon_sym_AT] = ACTIONS(1453), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -70190,60 +71082,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1445), + [sym__before_unary_op] = ACTIONS(1455), [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(982), }, - [347] = { - [sym__expression] = STATE(3463), - [sym_block] = STATE(3463), - [sym__identifier] = STATE(54), - [sym_identifier] = STATE(54), - [sym_special_identifier] = STATE(54), - [sym_boolean] = STATE(3463), - [sym_nil] = STATE(3463), - [sym__atom] = STATE(3463), - [sym_quoted_atom] = STATE(3463), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3463), - [sym_charlist] = STATE(3463), - [sym_sigil] = STATE(3463), - [sym_list] = STATE(3463), - [sym_tuple] = STATE(3463), - [sym_bitstring] = STATE(3463), - [sym_map] = STATE(3463), - [sym_unary_operator] = STATE(3463), - [sym_binary_operator] = STATE(3463), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3463), - [sym_call] = STATE(3463), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3463), - [sym_anonymous_function] = STATE(3463), + [349] = { + [sym__expression] = STATE(4094), + [sym_block] = STATE(4094), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(4094), + [sym_nil] = STATE(4094), + [sym__atom] = STATE(4094), + [sym_quoted_atom] = STATE(4094), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(4094), + [sym_charlist] = STATE(4094), + [sym_sigil] = STATE(4094), + [sym_list] = STATE(4094), + [sym_tuple] = STATE(4094), + [sym_bitstring] = STATE(4094), + [sym_map] = STATE(4094), + [sym_unary_operator] = STATE(4094), + [sym_binary_operator] = STATE(4094), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(4094), + [sym_call] = STATE(4094), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(4094), + [sym_anonymous_function] = STATE(4094), [aux_sym__terminator_token1] = ACTIONS(1331), [anon_sym_SEMI] = ACTIONS(1333), [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(1427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1427), - [sym_unused_identifier] = ACTIONS(1429), - [anon_sym___MODULE__] = ACTIONS(1431), - [anon_sym___DIR__] = ACTIONS(1431), - [anon_sym___ENV__] = ACTIONS(1431), - [anon_sym___CALLER__] = ACTIONS(1431), - [anon_sym___STACKTRACE__] = ACTIONS(1431), + [aux_sym_identifier_token1] = ACTIONS(1437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1437), + [sym_unused_identifier] = ACTIONS(1439), + [anon_sym___MODULE__] = ACTIONS(1441), + [anon_sym___DIR__] = ACTIONS(1441), + [anon_sym___ENV__] = ACTIONS(1441), + [anon_sym___CALLER__] = ACTIONS(1441), + [anon_sym___STACKTRACE__] = ACTIONS(1441), [sym_alias] = ACTIONS(1531), [sym_integer] = ACTIONS(1531), [sym_float] = ACTIONS(1531), @@ -70262,17 +71154,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1435), + [anon_sym_TILDE] = ACTIONS(1445), [anon_sym_LT_LT] = ACTIONS(966), [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_CARET] = ACTIONS(1441), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1441), - [anon_sym_not] = ACTIONS(1441), - [anon_sym_AT] = ACTIONS(1443), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1451), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), + [anon_sym_not] = ACTIONS(1451), + [anon_sym_AT] = ACTIONS(1453), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -70317,314 +71209,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1445), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [348] = { - [sym__expression] = STATE(3467), - [sym_block] = STATE(3467), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3467), - [sym_nil] = STATE(3467), - [sym__atom] = STATE(3467), - [sym_quoted_atom] = STATE(3467), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3467), - [sym_charlist] = STATE(3467), - [sym_sigil] = STATE(3467), - [sym_list] = STATE(3467), - [sym_tuple] = STATE(3467), - [sym_bitstring] = STATE(3467), - [sym_map] = STATE(3467), - [sym_unary_operator] = STATE(3467), - [sym_binary_operator] = STATE(3467), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3467), - [sym_call] = STATE(3467), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3467), - [sym_anonymous_function] = STATE(3467), - [aux_sym__terminator_token1] = ACTIONS(1321), - [anon_sym_SEMI] = ACTIONS(1323), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_RPAREN] = ACTIONS(1323), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1529), - [sym_integer] = ACTIONS(1529), - [sym_float] = ACTIONS(1529), - [sym_char] = ACTIONS(1529), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1529), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [349] = { - [sym__expression] = STATE(3467), - [sym_block] = STATE(3467), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3467), - [sym_nil] = STATE(3467), - [sym__atom] = STATE(3467), - [sym_quoted_atom] = STATE(3467), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3467), - [sym_charlist] = STATE(3467), - [sym_sigil] = STATE(3467), - [sym_list] = STATE(3467), - [sym_tuple] = STATE(3467), - [sym_bitstring] = STATE(3467), - [sym_map] = STATE(3467), - [sym_unary_operator] = STATE(3467), - [sym_binary_operator] = STATE(3467), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3467), - [sym_call] = STATE(3467), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3467), - [sym_anonymous_function] = STATE(3467), - [aux_sym__terminator_token1] = ACTIONS(1327), - [anon_sym_SEMI] = ACTIONS(1329), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_RPAREN] = ACTIONS(1329), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1529), - [sym_integer] = ACTIONS(1529), - [sym_float] = ACTIONS(1529), - [sym_char] = ACTIONS(1529), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1529), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), + [sym__before_unary_op] = ACTIONS(1455), [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(982), }, [350] = { - [sym__expression] = STATE(3463), - [sym_block] = STATE(3463), - [sym__identifier] = STATE(54), - [sym_identifier] = STATE(54), - [sym_special_identifier] = STATE(54), - [sym_boolean] = STATE(3463), - [sym_nil] = STATE(3463), - [sym__atom] = STATE(3463), - [sym_quoted_atom] = STATE(3463), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3463), - [sym_charlist] = STATE(3463), - [sym_sigil] = STATE(3463), - [sym_list] = STATE(3463), - [sym_tuple] = STATE(3463), - [sym_bitstring] = STATE(3463), - [sym_map] = STATE(3463), - [sym_unary_operator] = STATE(3463), - [sym_binary_operator] = STATE(3463), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3463), - [sym_call] = STATE(3463), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3463), - [sym_anonymous_function] = STATE(3463), + [sym__expression] = STATE(4094), + [sym_block] = STATE(4094), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(4094), + [sym_nil] = STATE(4094), + [sym__atom] = STATE(4094), + [sym_quoted_atom] = STATE(4094), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(4094), + [sym_charlist] = STATE(4094), + [sym_sigil] = STATE(4094), + [sym_list] = STATE(4094), + [sym_tuple] = STATE(4094), + [sym_bitstring] = STATE(4094), + [sym_map] = STATE(4094), + [sym_unary_operator] = STATE(4094), + [sym_binary_operator] = STATE(4094), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(4094), + [sym_call] = STATE(4094), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(4094), + [sym_anonymous_function] = STATE(4094), [aux_sym__terminator_token1] = ACTIONS(1327), [anon_sym_SEMI] = ACTIONS(1329), [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(1427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1427), - [sym_unused_identifier] = ACTIONS(1429), - [anon_sym___MODULE__] = ACTIONS(1431), - [anon_sym___DIR__] = ACTIONS(1431), - [anon_sym___ENV__] = ACTIONS(1431), - [anon_sym___CALLER__] = ACTIONS(1431), - [anon_sym___STACKTRACE__] = ACTIONS(1431), + [aux_sym_identifier_token1] = ACTIONS(1437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1437), + [sym_unused_identifier] = ACTIONS(1439), + [anon_sym___MODULE__] = ACTIONS(1441), + [anon_sym___DIR__] = ACTIONS(1441), + [anon_sym___ENV__] = ACTIONS(1441), + [anon_sym___CALLER__] = ACTIONS(1441), + [anon_sym___STACKTRACE__] = ACTIONS(1441), [sym_alias] = ACTIONS(1531), [sym_integer] = ACTIONS(1531), [sym_float] = ACTIONS(1531), @@ -70643,17 +71281,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1435), + [anon_sym_TILDE] = ACTIONS(1445), [anon_sym_LT_LT] = ACTIONS(966), [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_CARET] = ACTIONS(1441), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1441), - [anon_sym_not] = ACTIONS(1441), - [anon_sym_AT] = ACTIONS(1443), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1451), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), + [anon_sym_not] = ACTIONS(1451), + [anon_sym_AT] = ACTIONS(1453), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -70698,215 +71336,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1445), + [sym__before_unary_op] = ACTIONS(1455), [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(982), }, [351] = { - [sym__expression] = STATE(1465), - [sym_block] = STATE(1465), - [sym__identifier] = STATE(14), - [sym_identifier] = STATE(14), - [sym_special_identifier] = STATE(14), - [sym_boolean] = STATE(1465), - [sym_nil] = STATE(1465), - [sym__atom] = STATE(1465), - [sym_quoted_atom] = STATE(1465), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(1465), - [sym_charlist] = STATE(1465), - [sym_sigil] = STATE(1465), - [sym_list] = STATE(1465), - [sym_tuple] = STATE(1465), - [sym_bitstring] = STATE(1465), - [sym_map] = STATE(1465), - [sym_unary_operator] = STATE(1465), - [sym__capture_expression] = STATE(1431), - [sym_binary_operator] = STATE(1465), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(1465), - [sym_call] = STATE(1465), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(1465), - [sym_anonymous_function] = STATE(1465), + [sym__expression] = STATE(4049), + [sym_block] = STATE(4049), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(4049), + [sym_nil] = STATE(4049), + [sym__atom] = STATE(4049), + [sym_quoted_atom] = STATE(4049), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(4049), + [sym_charlist] = STATE(4049), + [sym_sigil] = STATE(4049), + [sym_list] = STATE(4049), + [sym_tuple] = STATE(4049), + [sym_bitstring] = STATE(4049), + [sym_map] = STATE(4049), + [sym_unary_operator] = STATE(4049), + [sym_binary_operator] = STATE(4049), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(4049), + [sym_call] = STATE(4049), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(4049), + [sym_anonymous_function] = STATE(4049), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1533), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(197), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1533), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), [sym_alias] = ACTIONS(1535), - [sym_integer] = ACTIONS(1537), + [sym_integer] = ACTIONS(1535), [sym_float] = ACTIONS(1535), [sym_char] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), [sym_atom] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(222), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(230), - [anon_sym_PLUS] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_CARET] = ACTIONS(235), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(235), - [anon_sym_not] = ACTIONS(235), - [anon_sym_AT] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(243), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [352] = { - [sym__expression] = STATE(3552), - [sym_block] = STATE(3552), - [sym__identifier] = STATE(111), - [sym_identifier] = STATE(111), - [sym_special_identifier] = STATE(111), - [sym_boolean] = STATE(3552), - [sym_nil] = STATE(3552), - [sym__atom] = STATE(3548), - [sym_quoted_atom] = STATE(3548), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3552), - [sym_charlist] = STATE(3552), - [sym_sigil] = STATE(3552), - [sym_list] = STATE(3552), - [sym_tuple] = STATE(3552), - [sym_bitstring] = STATE(3552), - [sym_map] = STATE(3552), - [sym_struct] = STATE(5046), - [sym_unary_operator] = STATE(3548), - [sym_binary_operator] = STATE(3552), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3548), - [sym_call] = STATE(3552), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(3527), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3552), - [sym_anonymous_function] = STATE(3552), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1539), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1541), - [sym_integer] = ACTIONS(1543), - [sym_float] = ACTIONS(1543), - [sym_char] = ACTIONS(1543), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1541), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1517), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1517), - [anon_sym_not] = ACTIONS(1517), - [anon_sym_AT] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -70946,576 +71458,828 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), + [anon_sym_fn] = ACTIONS(978), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1521), + [sym__before_unary_op] = ACTIONS(1363), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [352] = { + [sym__expression] = STATE(4049), + [sym_block] = STATE(4049), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(4049), + [sym_nil] = STATE(4049), + [sym__atom] = STATE(4049), + [sym_quoted_atom] = STATE(4049), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(4049), + [sym_charlist] = STATE(4049), + [sym_sigil] = STATE(4049), + [sym_list] = STATE(4049), + [sym_tuple] = STATE(4049), + [sym_bitstring] = STATE(4049), + [sym_map] = STATE(4049), + [sym_unary_operator] = STATE(4049), + [sym_binary_operator] = STATE(4049), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(4049), + [sym_call] = STATE(4049), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(4049), + [sym_anonymous_function] = STATE(4049), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1537), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1535), + [sym_integer] = ACTIONS(1535), + [sym_float] = ACTIONS(1535), + [sym_char] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), }, [353] = { - [sym__expression] = STATE(1823), - [sym_block] = STATE(1823), - [sym__identifier] = STATE(25), - [sym_identifier] = STATE(25), - [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1823), - [sym_nil] = STATE(1823), - [sym__atom] = STATE(1823), - [sym_quoted_atom] = STATE(1823), - [sym__quoted_i_double] = STATE(1551), - [sym__quoted_i_single] = STATE(1552), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1823), - [sym_charlist] = STATE(1823), - [sym_sigil] = STATE(1823), - [sym_list] = STATE(1823), - [sym_tuple] = STATE(1823), - [sym_bitstring] = STATE(1823), - [sym_map] = STATE(1823), - [sym_unary_operator] = STATE(1823), - [sym__capture_expression] = STATE(1501), - [sym_binary_operator] = STATE(1823), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1823), - [sym_call] = STATE(1823), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1823), - [sym_anonymous_function] = STATE(1823), + [sym__expression] = STATE(4049), + [sym_block] = STATE(4049), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(4049), + [sym_nil] = STATE(4049), + [sym__atom] = STATE(4049), + [sym_quoted_atom] = STATE(4049), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(4049), + [sym_charlist] = STATE(4049), + [sym_sigil] = STATE(4049), + [sym_list] = STATE(4049), + [sym_tuple] = STATE(4049), + [sym_bitstring] = STATE(4049), + [sym_map] = STATE(4049), + [sym_unary_operator] = STATE(4049), + [sym_binary_operator] = STATE(4049), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(4049), + [sym_call] = STATE(4049), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(4049), + [sym_anonymous_function] = STATE(4049), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1539), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1535), + [sym_integer] = ACTIONS(1535), + [sym_float] = ACTIONS(1535), + [sym_char] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [354] = { + [sym__expression] = STATE(4049), + [sym_block] = STATE(4049), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(4049), + [sym_nil] = STATE(4049), + [sym__atom] = STATE(4049), + [sym_quoted_atom] = STATE(4049), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(4049), + [sym_charlist] = STATE(4049), + [sym_sigil] = STATE(4049), + [sym_list] = STATE(4049), + [sym_tuple] = STATE(4049), + [sym_bitstring] = STATE(4049), + [sym_map] = STATE(4049), + [sym_unary_operator] = STATE(4049), + [sym_binary_operator] = STATE(4049), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(4049), + [sym_call] = STATE(4049), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(4049), + [sym_anonymous_function] = STATE(4049), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1541), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1535), + [sym_integer] = ACTIONS(1535), + [sym_float] = ACTIONS(1535), + [sym_char] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [355] = { + [sym__expression] = STATE(3727), + [sym_block] = STATE(3727), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(3727), + [sym_nil] = STATE(3727), + [sym__atom] = STATE(3727), + [sym_quoted_atom] = STATE(3727), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(3727), + [sym_charlist] = STATE(3727), + [sym_sigil] = STATE(3727), + [sym_list] = STATE(3727), + [sym_tuple] = STATE(3727), + [sym_bitstring] = STATE(3727), + [sym_map] = STATE(3727), + [sym_unary_operator] = STATE(3727), + [sym__capture_expression] = STATE(1789), + [sym_binary_operator] = STATE(3727), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(3727), + [sym_call] = STATE(3727), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(3727), + [sym_anonymous_function] = STATE(3727), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1543), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1545), + [sym_integer] = ACTIONS(1547), + [sym_float] = ACTIONS(1545), + [sym_char] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1545), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [356] = { + [sym__expression] = STATE(3621), + [sym_block] = STATE(3621), + [sym__identifier] = STATE(70), + [sym_identifier] = STATE(70), + [sym_special_identifier] = STATE(70), + [sym_boolean] = STATE(3621), + [sym_nil] = STATE(3621), + [sym__atom] = STATE(3621), + [sym_quoted_atom] = STATE(3621), + [sym__quoted_i_double] = STATE(2196), + [sym__quoted_i_single] = STATE(2197), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(3621), + [sym_charlist] = STATE(3621), + [sym_sigil] = STATE(3621), + [sym_list] = STATE(3621), + [sym_tuple] = STATE(3621), + [sym_bitstring] = STATE(3621), + [sym_map] = STATE(3621), + [sym_unary_operator] = STATE(3621), + [sym__capture_expression] = STATE(2151), + [sym_binary_operator] = STATE(3621), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(3621), + [sym_call] = STATE(3621), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(3621), + [sym_anonymous_function] = STATE(3621), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1549), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(1551), + [sym_integer] = ACTIONS(1553), + [sym_float] = ACTIONS(1551), + [sym_char] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(678), + [anon_sym_CARET] = ACTIONS(678), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(678), + [anon_sym_not] = ACTIONS(678), + [anon_sym_AT] = ACTIONS(680), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(406), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(682), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(412), + }, + [357] = { + [sym__expression] = STATE(3621), + [sym_block] = STATE(3621), + [sym__identifier] = STATE(70), + [sym_identifier] = STATE(70), + [sym_special_identifier] = STATE(70), + [sym_boolean] = STATE(3621), + [sym_nil] = STATE(3621), + [sym__atom] = STATE(3621), + [sym_quoted_atom] = STATE(3621), + [sym__quoted_i_double] = STATE(2196), + [sym__quoted_i_single] = STATE(2197), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(3621), + [sym_charlist] = STATE(3621), + [sym_sigil] = STATE(3621), + [sym_list] = STATE(3621), + [sym_tuple] = STATE(3621), + [sym_bitstring] = STATE(3621), + [sym_map] = STATE(3621), + [sym_unary_operator] = STATE(3621), + [sym__capture_expression] = STATE(2187), + [sym_binary_operator] = STATE(3621), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(3621), + [sym_call] = STATE(3621), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(3621), + [sym_anonymous_function] = STATE(3621), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1549), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(1551), + [sym_integer] = ACTIONS(1555), + [sym_float] = ACTIONS(1551), + [sym_char] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(678), + [anon_sym_CARET] = ACTIONS(678), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(678), + [anon_sym_not] = ACTIONS(678), + [anon_sym_AT] = ACTIONS(680), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(406), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(682), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(412), + }, + [358] = { + [sym__expression] = STATE(2097), + [sym_block] = STATE(2097), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2097), + [sym_nil] = STATE(2097), + [sym__atom] = STATE(2097), + [sym_quoted_atom] = STATE(2097), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2097), + [sym_charlist] = STATE(2097), + [sym_sigil] = STATE(2097), + [sym_list] = STATE(2097), + [sym_tuple] = STATE(2097), + [sym_bitstring] = STATE(2097), + [sym_map] = STATE(2097), + [sym_unary_operator] = STATE(2097), + [sym__capture_expression] = STATE(1789), + [sym_binary_operator] = STATE(2097), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2097), + [sym_call] = STATE(2097), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(2097), + [sym_anonymous_function] = STATE(2097), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1543), [aux_sym_identifier_token1] = ACTIONS(67), [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(944), [anon_sym___MODULE__] = ACTIONS(71), [anon_sym___DIR__] = ACTIONS(71), [anon_sym___ENV__] = ACTIONS(71), [anon_sym___CALLER__] = ACTIONS(71), [anon_sym___STACKTRACE__] = ACTIONS(71), - [sym_alias] = ACTIONS(1549), - [sym_integer] = ACTIONS(1551), - [sym_float] = ACTIONS(1549), - [sym_char] = ACTIONS(1549), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_LT_LT] = ACTIONS(95), - [anon_sym_PERCENT] = ACTIONS(97), - [anon_sym_AMP] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), - [anon_sym_BANG] = ACTIONS(101), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), - [anon_sym_not] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(115), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(119), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(121), - }, - [354] = { - [sym__expression] = STATE(3485), - [sym_block] = STATE(3485), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3485), - [sym_nil] = STATE(3485), - [sym__atom] = STATE(3485), - [sym_quoted_atom] = STATE(3485), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3485), - [sym_charlist] = STATE(3485), - [sym_sigil] = STATE(3485), - [sym_list] = STATE(3485), - [sym_tuple] = STATE(3485), - [sym_bitstring] = STATE(3485), - [sym_map] = STATE(3485), - [sym_unary_operator] = STATE(3485), - [sym_binary_operator] = STATE(3485), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3485), - [sym_call] = STATE(3485), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3485), - [sym_anonymous_function] = STATE(3485), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_RPAREN] = ACTIONS(1553), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1555), - [sym_integer] = ACTIONS(1555), - [sym_float] = ACTIONS(1555), - [sym_char] = ACTIONS(1555), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1555), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [355] = { - [sym__expression] = STATE(2816), - [sym_block] = STATE(2816), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(2816), - [sym_nil] = STATE(2816), - [sym__atom] = STATE(2816), - [sym_quoted_atom] = STATE(2816), - [sym__quoted_i_double] = STATE(1551), - [sym__quoted_i_single] = STATE(1552), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(2816), - [sym_charlist] = STATE(2816), - [sym_sigil] = STATE(2816), - [sym_list] = STATE(2816), - [sym_tuple] = STATE(2816), - [sym_bitstring] = STATE(2816), - [sym_map] = STATE(2816), - [sym_unary_operator] = STATE(2816), - [sym__capture_expression] = STATE(1486), - [sym_binary_operator] = STATE(2816), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(2816), - [sym_call] = STATE(2816), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(2816), - [sym_anonymous_function] = STATE(2816), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1547), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(706), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), [sym_alias] = ACTIONS(1557), - [sym_integer] = ACTIONS(1559), + [sym_integer] = ACTIONS(1547), [sym_float] = ACTIONS(1557), [sym_char] = ACTIONS(1557), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), [sym_atom] = ACTIONS(1557), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(712), - [anon_sym_LT_LT] = ACTIONS(95), - [anon_sym_PERCENT] = ACTIONS(97), - [anon_sym_AMP] = ACTIONS(714), - [anon_sym_PLUS] = ACTIONS(716), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_CARET] = ACTIONS(716), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), - [anon_sym_not] = ACTIONS(716), - [anon_sym_AT] = ACTIONS(718), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(115), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(722), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(121), - }, - [356] = { - [sym__expression] = STATE(3521), - [sym_block] = STATE(3521), - [sym__identifier] = STATE(95), - [sym_identifier] = STATE(95), - [sym_special_identifier] = STATE(95), - [sym_boolean] = STATE(3521), - [sym_nil] = STATE(3521), - [sym__atom] = STATE(3521), - [sym_quoted_atom] = STATE(3521), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3521), - [sym_charlist] = STATE(3521), - [sym_sigil] = STATE(3521), - [sym_list] = STATE(3521), - [sym_tuple] = STATE(3521), - [sym_bitstring] = STATE(3521), - [sym_map] = STATE(3521), - [sym_unary_operator] = STATE(3521), - [sym__capture_expression] = STATE(2564), - [sym_binary_operator] = STATE(3521), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3521), - [sym_call] = STATE(3521), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(65), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3521), - [sym_anonymous_function] = STATE(3521), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1561), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1509), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1563), - [sym_integer] = ACTIONS(1565), - [sym_float] = ACTIONS(1563), - [sym_char] = ACTIONS(1563), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1563), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1517), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1517), - [anon_sym_not] = ACTIONS(1517), - [anon_sym_AT] = ACTIONS(1519), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1521), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [357] = { - [sym__expression] = STATE(3485), - [sym_block] = STATE(3485), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3485), - [sym_nil] = STATE(3485), - [sym__atom] = STATE(3485), - [sym_quoted_atom] = STATE(3485), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3485), - [sym_charlist] = STATE(3485), - [sym_sigil] = STATE(3485), - [sym_list] = STATE(3485), - [sym_tuple] = STATE(3485), - [sym_bitstring] = STATE(3485), - [sym_map] = STATE(3485), - [sym_unary_operator] = STATE(3485), - [sym_binary_operator] = STATE(3485), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3485), - [sym_call] = STATE(3485), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3485), - [sym_anonymous_function] = STATE(3485), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_RPAREN] = ACTIONS(1567), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1555), - [sym_integer] = ACTIONS(1555), - [sym_float] = ACTIONS(1555), - [sym_char] = ACTIONS(1555), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1555), [anon_sym_DQUOTE] = ACTIONS(952), [anon_sym_SQUOTE] = ACTIONS(954), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), @@ -71525,18 +72289,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(964), [anon_sym_LT_LT] = ACTIONS(966), [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -71580,215 +72344,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [358] = { - [sym__expression] = STATE(3485), - [sym_block] = STATE(3485), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3485), - [sym_nil] = STATE(3485), - [sym__atom] = STATE(3485), - [sym_quoted_atom] = STATE(3485), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3485), - [sym_charlist] = STATE(3485), - [sym_sigil] = STATE(3485), - [sym_list] = STATE(3485), - [sym_tuple] = STATE(3485), - [sym_bitstring] = STATE(3485), - [sym_map] = STATE(3485), - [sym_unary_operator] = STATE(3485), - [sym_binary_operator] = STATE(3485), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3485), - [sym_call] = STATE(3485), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3485), - [sym_anonymous_function] = STATE(3485), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_RPAREN] = ACTIONS(1569), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1555), - [sym_integer] = ACTIONS(1555), - [sym_float] = ACTIONS(1555), - [sym_char] = ACTIONS(1555), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1555), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), + [sym__before_unary_op] = ACTIONS(980), [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(982), }, [359] = { - [sym__expression] = STATE(3552), - [sym_block] = STATE(3552), - [sym__identifier] = STATE(111), - [sym_identifier] = STATE(111), - [sym_special_identifier] = STATE(111), - [sym_boolean] = STATE(3552), - [sym_nil] = STATE(3552), - [sym__atom] = STATE(3548), - [sym_quoted_atom] = STATE(3548), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3552), - [sym_charlist] = STATE(3552), - [sym_sigil] = STATE(3552), - [sym_list] = STATE(3552), - [sym_tuple] = STATE(3552), - [sym_bitstring] = STATE(3552), - [sym_map] = STATE(3552), - [sym_struct] = STATE(5022), - [sym_unary_operator] = STATE(3548), - [sym_binary_operator] = STATE(3552), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3548), - [sym_call] = STATE(3552), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(3527), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3552), - [sym_anonymous_function] = STATE(3552), + [sym__expression] = STATE(4049), + [sym_block] = STATE(4049), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(4049), + [sym_nil] = STATE(4049), + [sym__atom] = STATE(4049), + [sym_quoted_atom] = STATE(4049), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(4049), + [sym_charlist] = STATE(4049), + [sym_sigil] = STATE(4049), + [sym_list] = STATE(4049), + [sym_tuple] = STATE(4049), + [sym_bitstring] = STATE(4049), + [sym_map] = STATE(4049), + [sym_unary_operator] = STATE(4049), + [sym_binary_operator] = STATE(4049), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(4049), + [sym_call] = STATE(4049), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(4049), + [sym_anonymous_function] = STATE(4049), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1539), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1541), - [sym_integer] = ACTIONS(1543), - [sym_float] = ACTIONS(1543), - [sym_char] = ACTIONS(1543), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1541), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1571), - [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1559), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1535), + [sym_integer] = ACTIONS(1535), + [sym_float] = ACTIONS(1535), + [sym_char] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1517), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1517), - [anon_sym_not] = ACTIONS(1517), - [anon_sym_AT] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -71828,72 +72466,324 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), + [anon_sym_fn] = ACTIONS(978), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1521), + [sym__before_unary_op] = ACTIONS(1363), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), + [sym__quoted_atom_start] = ACTIONS(982), }, [360] = { - [sym__expression] = STATE(3552), - [sym_block] = STATE(3552), - [sym__identifier] = STATE(111), - [sym_identifier] = STATE(111), - [sym_special_identifier] = STATE(111), - [sym_boolean] = STATE(3552), - [sym_nil] = STATE(3552), - [sym__atom] = STATE(3548), - [sym_quoted_atom] = STATE(3548), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3552), - [sym_charlist] = STATE(3552), - [sym_sigil] = STATE(3552), - [sym_list] = STATE(3552), - [sym_tuple] = STATE(3552), - [sym_bitstring] = STATE(3552), - [sym_map] = STATE(3552), - [sym_struct] = STATE(4982), - [sym_unary_operator] = STATE(3548), - [sym_binary_operator] = STATE(3552), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3548), - [sym_call] = STATE(3552), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(3527), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3552), - [sym_anonymous_function] = STATE(3552), + [sym__expression] = STATE(4104), + [sym_block] = STATE(4104), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(4104), + [sym_nil] = STATE(4104), + [sym__atom] = STATE(4104), + [sym_quoted_atom] = STATE(4104), + [sym__quoted_i_double] = STATE(3664), + [sym__quoted_i_single] = STATE(3697), + [sym__quoted_i_heredoc_single] = STATE(3698), + [sym__quoted_i_heredoc_double] = STATE(3702), + [sym_string] = STATE(4104), + [sym_charlist] = STATE(4104), + [sym_sigil] = STATE(4104), + [sym_list] = STATE(4104), + [sym_tuple] = STATE(4104), + [sym_bitstring] = STATE(4104), + [sym_map] = STATE(4104), + [sym_unary_operator] = STATE(4104), + [sym_binary_operator] = STATE(4104), + [sym_operator_identifier] = STATE(5655), + [sym_dot] = STATE(4104), + [sym_call] = STATE(4104), + [sym__call_without_parentheses] = STATE(3705), + [sym__call_with_parentheses] = STATE(3725), + [sym__local_call_without_parentheses] = STATE(3765), + [sym__local_call_with_parentheses] = STATE(2681), + [sym__local_call_just_do_block] = STATE(3808), + [sym__remote_call_without_parentheses] = STATE(3810), + [sym__remote_call_with_parentheses] = STATE(2682), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2683), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(3811), + [sym_access_call] = STATE(4104), + [sym_anonymous_function] = STATE(4104), + [ts_builtin_sym_end] = ACTIONS(1561), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), + [sym_alias] = ACTIONS(1563), + [sym_integer] = ACTIONS(1563), + [sym_float] = ACTIONS(1563), + [sym_char] = ACTIONS(1563), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), + [sym_atom] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(55), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(59), + }, + [361] = { + [sym__expression] = STATE(4049), + [sym_block] = STATE(4049), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(4049), + [sym_nil] = STATE(4049), + [sym__atom] = STATE(4049), + [sym_quoted_atom] = STATE(4049), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(4049), + [sym_charlist] = STATE(4049), + [sym_sigil] = STATE(4049), + [sym_list] = STATE(4049), + [sym_tuple] = STATE(4049), + [sym_bitstring] = STATE(4049), + [sym_map] = STATE(4049), + [sym_unary_operator] = STATE(4049), + [sym_binary_operator] = STATE(4049), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(4049), + [sym_call] = STATE(4049), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(4049), + [sym_anonymous_function] = STATE(4049), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1565), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1535), + [sym_integer] = ACTIONS(1535), + [sym_float] = ACTIONS(1535), + [sym_char] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [362] = { + [sym__expression] = STATE(4159), + [sym_block] = STATE(4159), + [sym__identifier] = STATE(103), + [sym_identifier] = STATE(103), + [sym_special_identifier] = STATE(103), + [sym_boolean] = STATE(4159), + [sym_nil] = STATE(4159), + [sym__atom] = STATE(4155), + [sym_quoted_atom] = STATE(4155), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4159), + [sym_charlist] = STATE(4159), + [sym_sigil] = STATE(4159), + [sym_list] = STATE(4159), + [sym_tuple] = STATE(4159), + [sym_bitstring] = STATE(4159), + [sym_map] = STATE(4159), + [sym_struct] = STATE(5562), + [sym_unary_operator] = STATE(4155), + [sym_binary_operator] = STATE(4159), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4155), + [sym_call] = STATE(4159), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(4151), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4159), + [sym_anonymous_function] = STATE(4159), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), [aux_sym_identifier_token1] = ACTIONS(826), [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1539), + [sym_unused_identifier] = ACTIONS(1567), [anon_sym___MODULE__] = ACTIONS(830), [anon_sym___DIR__] = ACTIONS(830), [anon_sym___ENV__] = ACTIONS(830), [anon_sym___CALLER__] = ACTIONS(830), [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1541), - [sym_integer] = ACTIONS(1543), - [sym_float] = ACTIONS(1543), - [sym_char] = ACTIONS(1543), + [sym_alias] = ACTIONS(1569), + [sym_integer] = ACTIONS(1571), + [sym_float] = ACTIONS(1571), + [sym_char] = ACTIONS(1571), [anon_sym_true] = ACTIONS(1073), [anon_sym_false] = ACTIONS(1073), [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1541), + [sym_atom] = ACTIONS(1569), [anon_sym_DQUOTE] = ACTIONS(1077), [anon_sym_SQUOTE] = ACTIONS(1079), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), @@ -71907,14 +72797,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(1091), [anon_sym_LT_LT] = ACTIONS(1095), [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1517), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1517), - [anon_sym_not] = ACTIONS(1517), - [anon_sym_AT] = ACTIONS(1519), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1507), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AT] = ACTIONS(1509), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -71958,320 +72848,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1521), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [361] = { - [sym__expression] = STATE(2816), - [sym_block] = STATE(2816), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(2816), - [sym_nil] = STATE(2816), - [sym__atom] = STATE(2816), - [sym_quoted_atom] = STATE(2816), - [sym__quoted_i_double] = STATE(1551), - [sym__quoted_i_single] = STATE(1552), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(2816), - [sym_charlist] = STATE(2816), - [sym_sigil] = STATE(2816), - [sym_list] = STATE(2816), - [sym_tuple] = STATE(2816), - [sym_bitstring] = STATE(2816), - [sym_map] = STATE(2816), - [sym_unary_operator] = STATE(2816), - [sym__capture_expression] = STATE(1501), - [sym_binary_operator] = STATE(2816), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(2816), - [sym_call] = STATE(2816), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(2816), - [sym_anonymous_function] = STATE(2816), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1547), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(706), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1557), - [sym_integer] = ACTIONS(1551), - [sym_float] = ACTIONS(1557), - [sym_char] = ACTIONS(1557), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(1557), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(712), - [anon_sym_LT_LT] = ACTIONS(95), - [anon_sym_PERCENT] = ACTIONS(97), - [anon_sym_AMP] = ACTIONS(714), - [anon_sym_PLUS] = ACTIONS(716), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_CARET] = ACTIONS(716), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), - [anon_sym_not] = ACTIONS(716), - [anon_sym_AT] = ACTIONS(718), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(115), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(722), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(121), - }, - [362] = { - [sym__expression] = STATE(3552), - [sym_block] = STATE(3552), - [sym__identifier] = STATE(111), - [sym_identifier] = STATE(111), - [sym_special_identifier] = STATE(111), - [sym_boolean] = STATE(3552), - [sym_nil] = STATE(3552), - [sym__atom] = STATE(3548), - [sym_quoted_atom] = STATE(3548), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3552), - [sym_charlist] = STATE(3552), - [sym_sigil] = STATE(3552), - [sym_list] = STATE(3552), - [sym_tuple] = STATE(3552), - [sym_bitstring] = STATE(3552), - [sym_map] = STATE(3552), - [sym_struct] = STATE(5006), - [sym_unary_operator] = STATE(3548), - [sym_binary_operator] = STATE(3552), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3548), - [sym_call] = STATE(3552), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(3527), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3552), - [sym_anonymous_function] = STATE(3552), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1539), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1541), - [sym_integer] = ACTIONS(1543), - [sym_float] = ACTIONS(1543), - [sym_char] = ACTIONS(1543), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1541), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1517), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1517), - [anon_sym_not] = ACTIONS(1517), - [anon_sym_AT] = ACTIONS(1519), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1521), + [sym__before_unary_op] = ACTIONS(1511), [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(1109), }, [363] = { - [sym__expression] = STATE(3485), - [sym_block] = STATE(3485), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3485), - [sym_nil] = STATE(3485), - [sym__atom] = STATE(3485), - [sym_quoted_atom] = STATE(3485), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3485), - [sym_charlist] = STATE(3485), - [sym_sigil] = STATE(3485), - [sym_list] = STATE(3485), - [sym_tuple] = STATE(3485), - [sym_bitstring] = STATE(3485), - [sym_map] = STATE(3485), - [sym_unary_operator] = STATE(3485), - [sym_binary_operator] = STATE(3485), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3485), - [sym_call] = STATE(3485), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3485), - [sym_anonymous_function] = STATE(3485), + [sym__expression] = STATE(4049), + [sym_block] = STATE(4049), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(4049), + [sym_nil] = STATE(4049), + [sym__atom] = STATE(4049), + [sym_quoted_atom] = STATE(4049), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(4049), + [sym_charlist] = STATE(4049), + [sym_sigil] = STATE(4049), + [sym_list] = STATE(4049), + [sym_tuple] = STATE(4049), + [sym_bitstring] = STATE(4049), + [sym_map] = STATE(4049), + [sym_unary_operator] = STATE(4049), + [sym_binary_operator] = STATE(4049), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(4049), + [sym_call] = STATE(4049), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(4049), + [sym_anonymous_function] = STATE(4049), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_RPAREN] = ACTIONS(1577), + [anon_sym_RPAREN] = ACTIONS(1575), [aux_sym_identifier_token1] = ACTIONS(704), [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), + [sym_unused_identifier] = ACTIONS(1349), [anon_sym___MODULE__] = ACTIONS(708), [anon_sym___DIR__] = ACTIONS(708), [anon_sym___ENV__] = ACTIONS(708), [anon_sym___CALLER__] = ACTIONS(708), [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1555), - [sym_integer] = ACTIONS(1555), - [sym_float] = ACTIONS(1555), - [sym_char] = ACTIONS(1555), + [sym_alias] = ACTIONS(1535), + [sym_integer] = ACTIONS(1535), + [sym_float] = ACTIONS(1535), + [sym_char] = ACTIONS(1535), [anon_sym_true] = ACTIONS(948), [anon_sym_false] = ACTIONS(948), [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1555), + [sym_atom] = ACTIONS(1535), [anon_sym_DQUOTE] = ACTIONS(952), [anon_sym_SQUOTE] = ACTIONS(954), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), @@ -72282,17 +72920,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), + [anon_sym_TILDE] = ACTIONS(1353), [anon_sym_LT_LT] = ACTIONS(966), [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -72336,68 +72974,446 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), + [sym__before_unary_op] = ACTIONS(1363), [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(982), }, [364] = { - [sym__expression] = STATE(2397), - [sym_block] = STATE(2397), - [sym__identifier] = STATE(60), - [sym_identifier] = STATE(60), - [sym_special_identifier] = STATE(60), - [sym_boolean] = STATE(2397), - [sym_nil] = STATE(2397), - [sym__atom] = STATE(2397), - [sym_quoted_atom] = STATE(2397), - [sym__quoted_i_double] = STATE(2414), - [sym__quoted_i_single] = STATE(2413), - [sym__quoted_i_heredoc_single] = STATE(2413), - [sym__quoted_i_heredoc_double] = STATE(2414), - [sym_string] = STATE(2397), - [sym_charlist] = STATE(2397), - [sym_sigil] = STATE(2397), - [sym_list] = STATE(2397), - [sym_tuple] = STATE(2397), - [sym_bitstring] = STATE(2397), - [sym_map] = STATE(2397), - [sym_unary_operator] = STATE(2397), - [sym__capture_expression] = STATE(2390), - [sym_binary_operator] = STATE(2397), - [sym_operator_identifier] = STATE(5028), - [sym_dot] = STATE(2397), - [sym_call] = STATE(2397), - [sym__call_without_parentheses] = STATE(2412), - [sym__call_with_parentheses] = STATE(2411), - [sym__local_call_without_parentheses] = STATE(2410), - [sym__local_call_with_parentheses] = STATE(1910), - [sym__local_call_just_do_block] = STATE(2409), - [sym__remote_call_without_parentheses] = STATE(2408), - [sym__remote_call_with_parentheses] = STATE(1916), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(1975), - [sym__anonymous_dot] = STATE(4890), - [sym__double_call] = STATE(2407), - [sym_access_call] = STATE(2397), - [sym_anonymous_function] = STATE(2397), + [sym__expression] = STATE(4049), + [sym_block] = STATE(4049), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(4049), + [sym_nil] = STATE(4049), + [sym__atom] = STATE(4049), + [sym_quoted_atom] = STATE(4049), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(4049), + [sym_charlist] = STATE(4049), + [sym_sigil] = STATE(4049), + [sym_list] = STATE(4049), + [sym_tuple] = STATE(4049), + [sym_bitstring] = STATE(4049), + [sym_map] = STATE(4049), + [sym_unary_operator] = STATE(4049), + [sym_binary_operator] = STATE(4049), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(4049), + [sym_call] = STATE(4049), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(4049), + [sym_anonymous_function] = STATE(4049), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1577), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1535), + [sym_integer] = ACTIONS(1535), + [sym_float] = ACTIONS(1535), + [sym_char] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [365] = { + [sym__expression] = STATE(4131), + [sym_block] = STATE(4131), + [sym__identifier] = STATE(93), + [sym_identifier] = STATE(93), + [sym_special_identifier] = STATE(93), + [sym_boolean] = STATE(4131), + [sym_nil] = STATE(4131), + [sym__atom] = STATE(4131), + [sym_quoted_atom] = STATE(4131), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4131), + [sym_charlist] = STATE(4131), + [sym_sigil] = STATE(4131), + [sym_list] = STATE(4131), + [sym_tuple] = STATE(4131), + [sym_bitstring] = STATE(4131), + [sym_map] = STATE(4131), + [sym_unary_operator] = STATE(4131), + [sym__capture_expression] = STATE(3159), + [sym_binary_operator] = STATE(4131), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4131), + [sym_call] = STATE(4131), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(72), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4131), + [sym_anonymous_function] = STATE(4131), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1579), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(558), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1499), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), [sym_alias] = ACTIONS(1581), [sym_integer] = ACTIONS(1583), [sym_float] = ACTIONS(1581), [sym_char] = ACTIONS(1581), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1507), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AT] = ACTIONS(1509), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1511), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [366] = { + [sym__expression] = STATE(4131), + [sym_block] = STATE(4131), + [sym__identifier] = STATE(93), + [sym_identifier] = STATE(93), + [sym_special_identifier] = STATE(93), + [sym_boolean] = STATE(4131), + [sym_nil] = STATE(4131), + [sym__atom] = STATE(4131), + [sym_quoted_atom] = STATE(4131), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4131), + [sym_charlist] = STATE(4131), + [sym_sigil] = STATE(4131), + [sym_list] = STATE(4131), + [sym_tuple] = STATE(4131), + [sym_bitstring] = STATE(4131), + [sym_map] = STATE(4131), + [sym_unary_operator] = STATE(4131), + [sym__capture_expression] = STATE(3175), + [sym_binary_operator] = STATE(4131), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4131), + [sym_call] = STATE(4131), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(72), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4131), + [sym_anonymous_function] = STATE(4131), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1579), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1499), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1581), + [sym_integer] = ACTIONS(1585), + [sym_float] = ACTIONS(1581), + [sym_char] = ACTIONS(1581), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1507), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AT] = ACTIONS(1509), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1511), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [367] = { + [sym__expression] = STATE(2672), + [sym_block] = STATE(2672), + [sym__identifier] = STATE(56), + [sym_identifier] = STATE(56), + [sym_special_identifier] = STATE(56), + [sym_boolean] = STATE(2672), + [sym_nil] = STATE(2672), + [sym__atom] = STATE(2672), + [sym_quoted_atom] = STATE(2672), + [sym__quoted_i_double] = STATE(2913), + [sym__quoted_i_single] = STATE(2912), + [sym__quoted_i_heredoc_single] = STATE(2910), + [sym__quoted_i_heredoc_double] = STATE(2805), + [sym_string] = STATE(2672), + [sym_charlist] = STATE(2672), + [sym_sigil] = STATE(2672), + [sym_list] = STATE(2672), + [sym_tuple] = STATE(2672), + [sym_bitstring] = STATE(2672), + [sym_map] = STATE(2672), + [sym_unary_operator] = STATE(2672), + [sym__capture_expression] = STATE(2673), + [sym_binary_operator] = STATE(2672), + [sym_operator_identifier] = STATE(5636), + [sym_dot] = STATE(2672), + [sym_call] = STATE(2672), + [sym__call_without_parentheses] = STATE(2883), + [sym__call_with_parentheses] = STATE(2876), + [sym__local_call_without_parentheses] = STATE(2870), + [sym__local_call_with_parentheses] = STATE(2037), + [sym__local_call_just_do_block] = STATE(2853), + [sym__remote_call_without_parentheses] = STATE(2846), + [sym__remote_call_with_parentheses] = STATE(2038), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2051), + [sym__anonymous_dot] = STATE(5534), + [sym__double_call] = STATE(2836), + [sym_access_call] = STATE(2672), + [sym_anonymous_function] = STATE(2672), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1587), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(1589), + [sym_integer] = ACTIONS(1591), + [sym_float] = ACTIONS(1589), + [sym_char] = ACTIONS(1589), [anon_sym_true] = ACTIONS(562), [anon_sym_false] = ACTIONS(562), [anon_sym_nil] = ACTIONS(564), - [sym_atom] = ACTIONS(1581), + [sym_atom] = ACTIONS(1589), [anon_sym_DQUOTE] = ACTIONS(566), [anon_sym_SQUOTE] = ACTIONS(568), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), @@ -72407,7 +73423,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1062), [anon_sym_TILDE] = ACTIONS(578), [anon_sym_LT_LT] = ACTIONS(582), [anon_sym_PERCENT] = ACTIONS(584), @@ -72466,85 +73482,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(602), }, - [365] = { - [sym__expression] = STATE(2748), - [sym_block] = STATE(2748), - [sym__identifier] = STATE(42), - [sym_identifier] = STATE(42), - [sym_special_identifier] = STATE(42), - [sym_boolean] = STATE(2748), - [sym_nil] = STATE(2748), - [sym__atom] = STATE(2748), - [sym_quoted_atom] = STATE(2748), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2748), - [sym_charlist] = STATE(2748), - [sym_sigil] = STATE(2748), - [sym_list] = STATE(2748), - [sym_tuple] = STATE(2748), - [sym_bitstring] = STATE(2748), - [sym_map] = STATE(2748), - [sym_unary_operator] = STATE(2748), - [sym__capture_expression] = STATE(1392), - [sym_binary_operator] = STATE(2748), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2748), - [sym_call] = STATE(2748), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2748), - [sym_anonymous_function] = STATE(2748), + [368] = { + [sym__expression] = STATE(3499), + [sym_block] = STATE(3499), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3499), + [sym_nil] = STATE(3499), + [sym__atom] = STATE(3499), + [sym_quoted_atom] = STATE(3499), + [sym__quoted_i_double] = STATE(1540), + [sym__quoted_i_single] = STATE(1541), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(3499), + [sym_charlist] = STATE(3499), + [sym_sigil] = STATE(3499), + [sym_list] = STATE(3499), + [sym_tuple] = STATE(3499), + [sym_bitstring] = STATE(3499), + [sym_map] = STATE(3499), + [sym_unary_operator] = STATE(3499), + [sym__capture_expression] = STATE(1641), + [sym_binary_operator] = STATE(3499), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(3499), + [sym_call] = STATE(3499), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(3499), + [sym_anonymous_function] = STATE(3499), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1533), - [aux_sym_identifier_token1] = ACTIONS(456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(456), - [sym_unused_identifier] = ACTIONS(458), - [anon_sym___MODULE__] = ACTIONS(460), - [anon_sym___DIR__] = ACTIONS(460), - [anon_sym___ENV__] = ACTIONS(460), - [anon_sym___CALLER__] = ACTIONS(460), - [anon_sym___STACKTRACE__] = ACTIONS(460), - [sym_alias] = ACTIONS(1585), - [sym_integer] = ACTIONS(1587), - [sym_float] = ACTIONS(1585), - [sym_char] = ACTIONS(1585), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1585), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LPAREN] = ACTIONS(1593), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1595), + [sym_integer] = ACTIONS(1597), + [sym_float] = ACTIONS(1595), + [sym_char] = ACTIONS(1595), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1595), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(464), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(473), - [anon_sym_BANG] = ACTIONS(473), - [anon_sym_CARET] = ACTIONS(473), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), - [anon_sym_not] = ACTIONS(473), - [anon_sym_AT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(712), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -72584,54 +73600,2448 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), + [anon_sym_fn] = ACTIONS(115), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(477), + [sym__before_unary_op] = ACTIONS(722), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), + [sym__quoted_atom_start] = ACTIONS(121), }, - [366] = { - [sym__expression] = STATE(3494), - [sym_block] = STATE(3494), - [sym__identifier] = STATE(57), - [sym_identifier] = STATE(57), - [sym_special_identifier] = STATE(57), - [sym_boolean] = STATE(3494), - [sym_nil] = STATE(3494), - [sym__atom] = STATE(3494), - [sym_quoted_atom] = STATE(3494), - [sym__quoted_i_double] = STATE(3146), - [sym__quoted_i_single] = STATE(3147), - [sym__quoted_i_heredoc_single] = STATE(3147), - [sym__quoted_i_heredoc_double] = STATE(3146), - [sym_string] = STATE(3494), - [sym_charlist] = STATE(3494), - [sym_sigil] = STATE(3494), - [sym_list] = STATE(3494), - [sym_tuple] = STATE(3494), - [sym_bitstring] = STATE(3494), - [sym_map] = STATE(3494), - [sym_unary_operator] = STATE(3494), - [sym_binary_operator] = STATE(3494), - [sym_operator_identifier] = STATE(5049), - [sym_dot] = STATE(3494), - [sym_call] = STATE(3494), - [sym__call_without_parentheses] = STATE(3175), - [sym__call_with_parentheses] = STATE(3177), - [sym__local_call_without_parentheses] = STATE(3178), - [sym__local_call_with_parentheses] = STATE(2550), - [sym__local_call_just_do_block] = STATE(3183), - [sym__remote_call_without_parentheses] = STATE(3200), - [sym__remote_call_with_parentheses] = STATE(2583), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(2582), - [sym__anonymous_dot] = STATE(4866), - [sym__double_call] = STATE(3202), - [sym_access_call] = STATE(3494), - [sym_anonymous_function] = STATE(3494), - [ts_builtin_sym_end] = ACTIONS(1589), + [369] = { + [sym__expression] = STATE(4049), + [sym_block] = STATE(4049), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(4049), + [sym_nil] = STATE(4049), + [sym__atom] = STATE(4049), + [sym_quoted_atom] = STATE(4049), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(4049), + [sym_charlist] = STATE(4049), + [sym_sigil] = STATE(4049), + [sym_list] = STATE(4049), + [sym_tuple] = STATE(4049), + [sym_bitstring] = STATE(4049), + [sym_map] = STATE(4049), + [sym_unary_operator] = STATE(4049), + [sym_binary_operator] = STATE(4049), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(4049), + [sym_call] = STATE(4049), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(4049), + [sym_anonymous_function] = STATE(4049), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1599), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1535), + [sym_integer] = ACTIONS(1535), + [sym_float] = ACTIONS(1535), + [sym_char] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [370] = { + [sym__expression] = STATE(3499), + [sym_block] = STATE(3499), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3499), + [sym_nil] = STATE(3499), + [sym__atom] = STATE(3499), + [sym_quoted_atom] = STATE(3499), + [sym__quoted_i_double] = STATE(1540), + [sym__quoted_i_single] = STATE(1541), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(3499), + [sym_charlist] = STATE(3499), + [sym_sigil] = STATE(3499), + [sym_list] = STATE(3499), + [sym_tuple] = STATE(3499), + [sym_bitstring] = STATE(3499), + [sym_map] = STATE(3499), + [sym_unary_operator] = STATE(3499), + [sym__capture_expression] = STATE(1657), + [sym_binary_operator] = STATE(3499), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(3499), + [sym_call] = STATE(3499), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(3499), + [sym_anonymous_function] = STATE(3499), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1593), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1595), + [sym_integer] = ACTIONS(1601), + [sym_float] = ACTIONS(1595), + [sym_char] = ACTIONS(1595), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1595), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [371] = { + [sym__expression] = STATE(4049), + [sym_block] = STATE(4049), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(4049), + [sym_nil] = STATE(4049), + [sym__atom] = STATE(4049), + [sym_quoted_atom] = STATE(4049), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(4049), + [sym_charlist] = STATE(4049), + [sym_sigil] = STATE(4049), + [sym_list] = STATE(4049), + [sym_tuple] = STATE(4049), + [sym_bitstring] = STATE(4049), + [sym_map] = STATE(4049), + [sym_unary_operator] = STATE(4049), + [sym_binary_operator] = STATE(4049), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(4049), + [sym_call] = STATE(4049), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(4049), + [sym_anonymous_function] = STATE(4049), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1603), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1535), + [sym_integer] = ACTIONS(1535), + [sym_float] = ACTIONS(1535), + [sym_char] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [372] = { + [sym__expression] = STATE(4049), + [sym_block] = STATE(4049), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(4049), + [sym_nil] = STATE(4049), + [sym__atom] = STATE(4049), + [sym_quoted_atom] = STATE(4049), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(4049), + [sym_charlist] = STATE(4049), + [sym_sigil] = STATE(4049), + [sym_list] = STATE(4049), + [sym_tuple] = STATE(4049), + [sym_bitstring] = STATE(4049), + [sym_map] = STATE(4049), + [sym_unary_operator] = STATE(4049), + [sym_binary_operator] = STATE(4049), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(4049), + [sym_call] = STATE(4049), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(4049), + [sym_anonymous_function] = STATE(4049), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1605), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1535), + [sym_integer] = ACTIONS(1535), + [sym_float] = ACTIONS(1535), + [sym_char] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [373] = { + [sym__expression] = STATE(3818), + [sym_block] = STATE(3818), + [sym__identifier] = STATE(64), + [sym_identifier] = STATE(64), + [sym_special_identifier] = STATE(64), + [sym_boolean] = STATE(3818), + [sym_nil] = STATE(3818), + [sym__atom] = STATE(3818), + [sym_quoted_atom] = STATE(3818), + [sym__quoted_i_double] = STATE(3871), + [sym__quoted_i_single] = STATE(3876), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3818), + [sym_charlist] = STATE(3818), + [sym_sigil] = STATE(3818), + [sym_list] = STATE(3818), + [sym_tuple] = STATE(3818), + [sym_bitstring] = STATE(3818), + [sym_map] = STATE(3818), + [sym_unary_operator] = STATE(3818), + [sym__capture_expression] = STATE(3816), + [sym_binary_operator] = STATE(3818), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3818), + [sym_call] = STATE(3818), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), + [sym__remote_dot] = STATE(55), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3818), + [sym_anonymous_function] = STATE(3818), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1607), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1609), + [sym_integer] = ACTIONS(1611), + [sym_float] = ACTIONS(1609), + [sym_char] = ACTIONS(1609), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(1609), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [374] = { + [sym__expression] = STATE(4049), + [sym_block] = STATE(4049), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(4049), + [sym_nil] = STATE(4049), + [sym__atom] = STATE(4049), + [sym_quoted_atom] = STATE(4049), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(4049), + [sym_charlist] = STATE(4049), + [sym_sigil] = STATE(4049), + [sym_list] = STATE(4049), + [sym_tuple] = STATE(4049), + [sym_bitstring] = STATE(4049), + [sym_map] = STATE(4049), + [sym_unary_operator] = STATE(4049), + [sym_binary_operator] = STATE(4049), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(4049), + [sym_call] = STATE(4049), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(4049), + [sym_anonymous_function] = STATE(4049), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1613), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1535), + [sym_integer] = ACTIONS(1535), + [sym_float] = ACTIONS(1535), + [sym_char] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [375] = { + [sym__expression] = STATE(4118), + [sym_block] = STATE(4118), + [sym__identifier] = STATE(66), + [sym_identifier] = STATE(66), + [sym_special_identifier] = STATE(66), + [sym_boolean] = STATE(4118), + [sym_nil] = STATE(4118), + [sym__atom] = STATE(4118), + [sym_quoted_atom] = STATE(4118), + [sym__quoted_i_double] = STATE(4034), + [sym__quoted_i_single] = STATE(4021), + [sym__quoted_i_heredoc_single] = STATE(4077), + [sym__quoted_i_heredoc_double] = STATE(4083), + [sym_string] = STATE(4118), + [sym_charlist] = STATE(4118), + [sym_sigil] = STATE(4118), + [sym_list] = STATE(4118), + [sym_tuple] = STATE(4118), + [sym_bitstring] = STATE(4118), + [sym_map] = STATE(4118), + [sym_unary_operator] = STATE(4118), + [sym__capture_expression] = STATE(4072), + [sym_binary_operator] = STATE(4118), + [sym_operator_identifier] = STATE(5580), + [sym_dot] = STATE(4118), + [sym_call] = STATE(4118), + [sym__call_without_parentheses] = STATE(4089), + [sym__call_with_parentheses] = STATE(4092), + [sym__local_call_without_parentheses] = STATE(4097), + [sym__local_call_with_parentheses] = STATE(3372), + [sym__local_call_just_do_block] = STATE(4098), + [sym__remote_call_without_parentheses] = STATE(4105), + [sym__remote_call_with_parentheses] = STATE(3374), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3375), + [sym__anonymous_dot] = STATE(5531), + [sym__double_call] = STATE(4106), + [sym_access_call] = STATE(4118), + [sym_anonymous_function] = STATE(4118), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1615), + [aux_sym_identifier_token1] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1135), + [sym_unused_identifier] = ACTIONS(1137), + [anon_sym___MODULE__] = ACTIONS(1139), + [anon_sym___DIR__] = ACTIONS(1139), + [anon_sym___ENV__] = ACTIONS(1139), + [anon_sym___CALLER__] = ACTIONS(1139), + [anon_sym___STACKTRACE__] = ACTIONS(1139), + [sym_alias] = ACTIONS(1617), + [sym_integer] = ACTIONS(1619), + [sym_float] = ACTIONS(1617), + [sym_char] = ACTIONS(1617), + [anon_sym_true] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [anon_sym_nil] = ACTIONS(1145), + [sym_atom] = ACTIONS(1617), + [anon_sym_DQUOTE] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1151), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1157), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1159), + [anon_sym_LT_LT] = ACTIONS(1163), + [anon_sym_PERCENT] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_AT] = ACTIONS(1173), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1175), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1177), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1179), + }, + [376] = { + [sym__expression] = STATE(4049), + [sym_block] = STATE(4049), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(4049), + [sym_nil] = STATE(4049), + [sym__atom] = STATE(4049), + [sym_quoted_atom] = STATE(4049), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(4049), + [sym_charlist] = STATE(4049), + [sym_sigil] = STATE(4049), + [sym_list] = STATE(4049), + [sym_tuple] = STATE(4049), + [sym_bitstring] = STATE(4049), + [sym_map] = STATE(4049), + [sym_unary_operator] = STATE(4049), + [sym_binary_operator] = STATE(4049), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(4049), + [sym_call] = STATE(4049), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(4049), + [sym_anonymous_function] = STATE(4049), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1621), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1535), + [sym_integer] = ACTIONS(1535), + [sym_float] = ACTIONS(1535), + [sym_char] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [377] = { + [sym__expression] = STATE(3818), + [sym_block] = STATE(3818), + [sym__identifier] = STATE(64), + [sym_identifier] = STATE(64), + [sym_special_identifier] = STATE(64), + [sym_boolean] = STATE(3818), + [sym_nil] = STATE(3818), + [sym__atom] = STATE(3818), + [sym_quoted_atom] = STATE(3818), + [sym__quoted_i_double] = STATE(3871), + [sym__quoted_i_single] = STATE(3876), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3818), + [sym_charlist] = STATE(3818), + [sym_sigil] = STATE(3818), + [sym_list] = STATE(3818), + [sym_tuple] = STATE(3818), + [sym_bitstring] = STATE(3818), + [sym_map] = STATE(3818), + [sym_unary_operator] = STATE(3818), + [sym__capture_expression] = STATE(3804), + [sym_binary_operator] = STATE(3818), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3818), + [sym_call] = STATE(3818), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), + [sym__remote_dot] = STATE(55), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3818), + [sym_anonymous_function] = STATE(3818), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1607), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1609), + [sym_integer] = ACTIONS(1623), + [sym_float] = ACTIONS(1609), + [sym_char] = ACTIONS(1609), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(1609), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [378] = { + [sym__expression] = STATE(4159), + [sym_block] = STATE(4159), + [sym__identifier] = STATE(103), + [sym_identifier] = STATE(103), + [sym_special_identifier] = STATE(103), + [sym_boolean] = STATE(4159), + [sym_nil] = STATE(4159), + [sym__atom] = STATE(4155), + [sym_quoted_atom] = STATE(4155), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4159), + [sym_charlist] = STATE(4159), + [sym_sigil] = STATE(4159), + [sym_list] = STATE(4159), + [sym_tuple] = STATE(4159), + [sym_bitstring] = STATE(4159), + [sym_map] = STATE(4159), + [sym_struct] = STATE(5582), + [sym_unary_operator] = STATE(4155), + [sym_binary_operator] = STATE(4159), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4155), + [sym_call] = STATE(4159), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(4151), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4159), + [sym_anonymous_function] = STATE(4159), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1567), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1569), + [sym_integer] = ACTIONS(1571), + [sym_float] = ACTIONS(1571), + [sym_char] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1625), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1507), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AT] = ACTIONS(1509), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1511), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [379] = { + [sym__expression] = STATE(4159), + [sym_block] = STATE(4159), + [sym__identifier] = STATE(103), + [sym_identifier] = STATE(103), + [sym_special_identifier] = STATE(103), + [sym_boolean] = STATE(4159), + [sym_nil] = STATE(4159), + [sym__atom] = STATE(4155), + [sym_quoted_atom] = STATE(4155), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4159), + [sym_charlist] = STATE(4159), + [sym_sigil] = STATE(4159), + [sym_list] = STATE(4159), + [sym_tuple] = STATE(4159), + [sym_bitstring] = STATE(4159), + [sym_map] = STATE(4159), + [sym_struct] = STATE(5590), + [sym_unary_operator] = STATE(4155), + [sym_binary_operator] = STATE(4159), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4155), + [sym_call] = STATE(4159), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(4151), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4159), + [sym_anonymous_function] = STATE(4159), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1567), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1569), + [sym_integer] = ACTIONS(1571), + [sym_float] = ACTIONS(1571), + [sym_char] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1507), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AT] = ACTIONS(1509), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1511), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [380] = { + [sym__expression] = STATE(4159), + [sym_block] = STATE(4159), + [sym__identifier] = STATE(103), + [sym_identifier] = STATE(103), + [sym_special_identifier] = STATE(103), + [sym_boolean] = STATE(4159), + [sym_nil] = STATE(4159), + [sym__atom] = STATE(4155), + [sym_quoted_atom] = STATE(4155), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4159), + [sym_charlist] = STATE(4159), + [sym_sigil] = STATE(4159), + [sym_list] = STATE(4159), + [sym_tuple] = STATE(4159), + [sym_bitstring] = STATE(4159), + [sym_map] = STATE(4159), + [sym_struct] = STATE(5598), + [sym_unary_operator] = STATE(4155), + [sym_binary_operator] = STATE(4159), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4155), + [sym_call] = STATE(4159), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(4151), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4159), + [sym_anonymous_function] = STATE(4159), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1567), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1569), + [sym_integer] = ACTIONS(1571), + [sym_float] = ACTIONS(1571), + [sym_char] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1507), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AT] = ACTIONS(1509), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1511), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [381] = { + [sym__expression] = STATE(4049), + [sym_block] = STATE(4049), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(4049), + [sym_nil] = STATE(4049), + [sym__atom] = STATE(4049), + [sym_quoted_atom] = STATE(4049), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(4049), + [sym_charlist] = STATE(4049), + [sym_sigil] = STATE(4049), + [sym_list] = STATE(4049), + [sym_tuple] = STATE(4049), + [sym_bitstring] = STATE(4049), + [sym_map] = STATE(4049), + [sym_unary_operator] = STATE(4049), + [sym_binary_operator] = STATE(4049), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(4049), + [sym_call] = STATE(4049), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(4049), + [sym_anonymous_function] = STATE(4049), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1631), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1535), + [sym_integer] = ACTIONS(1535), + [sym_float] = ACTIONS(1535), + [sym_char] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [382] = { + [sym__expression] = STATE(4049), + [sym_block] = STATE(4049), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(4049), + [sym_nil] = STATE(4049), + [sym__atom] = STATE(4049), + [sym_quoted_atom] = STATE(4049), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(4049), + [sym_charlist] = STATE(4049), + [sym_sigil] = STATE(4049), + [sym_list] = STATE(4049), + [sym_tuple] = STATE(4049), + [sym_bitstring] = STATE(4049), + [sym_map] = STATE(4049), + [sym_unary_operator] = STATE(4049), + [sym_binary_operator] = STATE(4049), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(4049), + [sym_call] = STATE(4049), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(4049), + [sym_anonymous_function] = STATE(4049), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1633), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1535), + [sym_integer] = ACTIONS(1535), + [sym_float] = ACTIONS(1535), + [sym_char] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [383] = { + [sym__expression] = STATE(4118), + [sym_block] = STATE(4118), + [sym__identifier] = STATE(66), + [sym_identifier] = STATE(66), + [sym_special_identifier] = STATE(66), + [sym_boolean] = STATE(4118), + [sym_nil] = STATE(4118), + [sym__atom] = STATE(4118), + [sym_quoted_atom] = STATE(4118), + [sym__quoted_i_double] = STATE(4034), + [sym__quoted_i_single] = STATE(4021), + [sym__quoted_i_heredoc_single] = STATE(4077), + [sym__quoted_i_heredoc_double] = STATE(4083), + [sym_string] = STATE(4118), + [sym_charlist] = STATE(4118), + [sym_sigil] = STATE(4118), + [sym_list] = STATE(4118), + [sym_tuple] = STATE(4118), + [sym_bitstring] = STATE(4118), + [sym_map] = STATE(4118), + [sym_unary_operator] = STATE(4118), + [sym__capture_expression] = STATE(4119), + [sym_binary_operator] = STATE(4118), + [sym_operator_identifier] = STATE(5580), + [sym_dot] = STATE(4118), + [sym_call] = STATE(4118), + [sym__call_without_parentheses] = STATE(4089), + [sym__call_with_parentheses] = STATE(4092), + [sym__local_call_without_parentheses] = STATE(4097), + [sym__local_call_with_parentheses] = STATE(3372), + [sym__local_call_just_do_block] = STATE(4098), + [sym__remote_call_without_parentheses] = STATE(4105), + [sym__remote_call_with_parentheses] = STATE(3374), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3375), + [sym__anonymous_dot] = STATE(5531), + [sym__double_call] = STATE(4106), + [sym_access_call] = STATE(4118), + [sym_anonymous_function] = STATE(4118), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1615), + [aux_sym_identifier_token1] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1135), + [sym_unused_identifier] = ACTIONS(1137), + [anon_sym___MODULE__] = ACTIONS(1139), + [anon_sym___DIR__] = ACTIONS(1139), + [anon_sym___ENV__] = ACTIONS(1139), + [anon_sym___CALLER__] = ACTIONS(1139), + [anon_sym___STACKTRACE__] = ACTIONS(1139), + [sym_alias] = ACTIONS(1617), + [sym_integer] = ACTIONS(1635), + [sym_float] = ACTIONS(1617), + [sym_char] = ACTIONS(1617), + [anon_sym_true] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [anon_sym_nil] = ACTIONS(1145), + [sym_atom] = ACTIONS(1617), + [anon_sym_DQUOTE] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1151), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1157), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1159), + [anon_sym_LT_LT] = ACTIONS(1163), + [anon_sym_PERCENT] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_AT] = ACTIONS(1173), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1175), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1177), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1179), + }, + [384] = { + [sym__expression] = STATE(4159), + [sym_block] = STATE(4159), + [sym__identifier] = STATE(103), + [sym_identifier] = STATE(103), + [sym_special_identifier] = STATE(103), + [sym_boolean] = STATE(4159), + [sym_nil] = STATE(4159), + [sym__atom] = STATE(4155), + [sym_quoted_atom] = STATE(4155), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4159), + [sym_charlist] = STATE(4159), + [sym_sigil] = STATE(4159), + [sym_list] = STATE(4159), + [sym_tuple] = STATE(4159), + [sym_bitstring] = STATE(4159), + [sym_map] = STATE(4159), + [sym_struct] = STATE(5606), + [sym_unary_operator] = STATE(4155), + [sym_binary_operator] = STATE(4159), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4155), + [sym_call] = STATE(4159), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(4151), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4159), + [sym_anonymous_function] = STATE(4159), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1567), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1569), + [sym_integer] = ACTIONS(1571), + [sym_float] = ACTIONS(1571), + [sym_char] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1637), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1507), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AT] = ACTIONS(1509), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1511), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [385] = { + [sym__expression] = STATE(4049), + [sym_block] = STATE(4049), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(4049), + [sym_nil] = STATE(4049), + [sym__atom] = STATE(4049), + [sym_quoted_atom] = STATE(4049), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(4049), + [sym_charlist] = STATE(4049), + [sym_sigil] = STATE(4049), + [sym_list] = STATE(4049), + [sym_tuple] = STATE(4049), + [sym_bitstring] = STATE(4049), + [sym_map] = STATE(4049), + [sym_unary_operator] = STATE(4049), + [sym_binary_operator] = STATE(4049), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(4049), + [sym_call] = STATE(4049), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(4049), + [sym_anonymous_function] = STATE(4049), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1639), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1535), + [sym_integer] = ACTIONS(1535), + [sym_float] = ACTIONS(1535), + [sym_char] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [386] = { + [sym__expression] = STATE(4049), + [sym_block] = STATE(4049), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(4049), + [sym_nil] = STATE(4049), + [sym__atom] = STATE(4049), + [sym_quoted_atom] = STATE(4049), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(4049), + [sym_charlist] = STATE(4049), + [sym_sigil] = STATE(4049), + [sym_list] = STATE(4049), + [sym_tuple] = STATE(4049), + [sym_bitstring] = STATE(4049), + [sym_map] = STATE(4049), + [sym_unary_operator] = STATE(4049), + [sym_binary_operator] = STATE(4049), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(4049), + [sym_call] = STATE(4049), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(4049), + [sym_anonymous_function] = STATE(4049), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1641), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1535), + [sym_integer] = ACTIONS(1535), + [sym_float] = ACTIONS(1535), + [sym_char] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [387] = { + [sym__expression] = STATE(4049), + [sym_block] = STATE(4049), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(4049), + [sym_nil] = STATE(4049), + [sym__atom] = STATE(4049), + [sym_quoted_atom] = STATE(4049), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(4049), + [sym_charlist] = STATE(4049), + [sym_sigil] = STATE(4049), + [sym_list] = STATE(4049), + [sym_tuple] = STATE(4049), + [sym_bitstring] = STATE(4049), + [sym_map] = STATE(4049), + [sym_unary_operator] = STATE(4049), + [sym_binary_operator] = STATE(4049), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(4049), + [sym_call] = STATE(4049), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(4049), + [sym_anonymous_function] = STATE(4049), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1643), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1535), + [sym_integer] = ACTIONS(1535), + [sym_float] = ACTIONS(1535), + [sym_char] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [388] = { + [sym__expression] = STATE(4104), + [sym_block] = STATE(4104), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(4104), + [sym_nil] = STATE(4104), + [sym__atom] = STATE(4104), + [sym_quoted_atom] = STATE(4104), + [sym__quoted_i_double] = STATE(3664), + [sym__quoted_i_single] = STATE(3697), + [sym__quoted_i_heredoc_single] = STATE(3698), + [sym__quoted_i_heredoc_double] = STATE(3702), + [sym_string] = STATE(4104), + [sym_charlist] = STATE(4104), + [sym_sigil] = STATE(4104), + [sym_list] = STATE(4104), + [sym_tuple] = STATE(4104), + [sym_bitstring] = STATE(4104), + [sym_map] = STATE(4104), + [sym_unary_operator] = STATE(4104), + [sym_binary_operator] = STATE(4104), + [sym_operator_identifier] = STATE(5655), + [sym_dot] = STATE(4104), + [sym_call] = STATE(4104), + [sym__call_without_parentheses] = STATE(3705), + [sym__call_with_parentheses] = STATE(3725), + [sym__local_call_without_parentheses] = STATE(3765), + [sym__local_call_with_parentheses] = STATE(2681), + [sym__local_call_just_do_block] = STATE(3808), + [sym__remote_call_without_parentheses] = STATE(3810), + [sym__remote_call_with_parentheses] = STATE(2682), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2683), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(3811), + [sym_access_call] = STATE(4104), + [sym_anonymous_function] = STATE(4104), + [ts_builtin_sym_end] = ACTIONS(1645), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(15), @@ -72642,14 +76052,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ENV__] = ACTIONS(19), [anon_sym___CALLER__] = ACTIONS(19), [anon_sym___STACKTRACE__] = ACTIONS(19), - [sym_alias] = ACTIONS(1591), - [sym_integer] = ACTIONS(1591), - [sym_float] = ACTIONS(1591), - [sym_char] = ACTIONS(1591), + [sym_alias] = ACTIONS(1563), + [sym_integer] = ACTIONS(1563), + [sym_float] = ACTIONS(1563), + [sym_char] = ACTIONS(1563), [anon_sym_true] = ACTIONS(23), [anon_sym_false] = ACTIONS(23), [anon_sym_nil] = ACTIONS(25), - [sym_atom] = ACTIONS(1591), + [sym_atom] = ACTIONS(1563), [anon_sym_DQUOTE] = ACTIONS(27), [anon_sym_SQUOTE] = ACTIONS(29), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), @@ -72718,447 +76128,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(59), }, - [367] = { - [sym__expression] = STATE(3485), - [sym_block] = STATE(3485), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3485), - [sym_nil] = STATE(3485), - [sym__atom] = STATE(3485), - [sym_quoted_atom] = STATE(3485), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3485), - [sym_charlist] = STATE(3485), - [sym_sigil] = STATE(3485), - [sym_list] = STATE(3485), - [sym_tuple] = STATE(3485), - [sym_bitstring] = STATE(3485), - [sym_map] = STATE(3485), - [sym_unary_operator] = STATE(3485), - [sym_binary_operator] = STATE(3485), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3485), - [sym_call] = STATE(3485), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3485), - [sym_anonymous_function] = STATE(3485), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_RPAREN] = ACTIONS(1593), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1555), - [sym_integer] = ACTIONS(1555), - [sym_float] = ACTIONS(1555), - [sym_char] = ACTIONS(1555), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1555), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [368] = { - [sym__expression] = STATE(3485), - [sym_block] = STATE(3485), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3485), - [sym_nil] = STATE(3485), - [sym__atom] = STATE(3485), - [sym_quoted_atom] = STATE(3485), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3485), - [sym_charlist] = STATE(3485), - [sym_sigil] = STATE(3485), - [sym_list] = STATE(3485), - [sym_tuple] = STATE(3485), - [sym_bitstring] = STATE(3485), - [sym_map] = STATE(3485), - [sym_unary_operator] = STATE(3485), - [sym_binary_operator] = STATE(3485), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3485), - [sym_call] = STATE(3485), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3485), - [sym_anonymous_function] = STATE(3485), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_RPAREN] = ACTIONS(1595), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1555), - [sym_integer] = ACTIONS(1555), - [sym_float] = ACTIONS(1555), - [sym_char] = ACTIONS(1555), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1555), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [369] = { - [sym__expression] = STATE(3521), - [sym_block] = STATE(3521), - [sym__identifier] = STATE(95), - [sym_identifier] = STATE(95), - [sym_special_identifier] = STATE(95), - [sym_boolean] = STATE(3521), - [sym_nil] = STATE(3521), - [sym__atom] = STATE(3521), - [sym_quoted_atom] = STATE(3521), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3521), - [sym_charlist] = STATE(3521), - [sym_sigil] = STATE(3521), - [sym_list] = STATE(3521), - [sym_tuple] = STATE(3521), - [sym_bitstring] = STATE(3521), - [sym_map] = STATE(3521), - [sym_unary_operator] = STATE(3521), - [sym__capture_expression] = STATE(2558), - [sym_binary_operator] = STATE(3521), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3521), - [sym_call] = STATE(3521), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(65), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3521), - [sym_anonymous_function] = STATE(3521), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1561), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1509), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1563), - [sym_integer] = ACTIONS(1597), - [sym_float] = ACTIONS(1563), - [sym_char] = ACTIONS(1563), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1563), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1517), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1517), - [anon_sym_not] = ACTIONS(1517), - [anon_sym_AT] = ACTIONS(1519), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1521), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [370] = { - [sym__expression] = STATE(3552), - [sym_block] = STATE(3552), - [sym__identifier] = STATE(111), - [sym_identifier] = STATE(111), - [sym_special_identifier] = STATE(111), - [sym_boolean] = STATE(3552), - [sym_nil] = STATE(3552), - [sym__atom] = STATE(3548), - [sym_quoted_atom] = STATE(3548), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3552), - [sym_charlist] = STATE(3552), - [sym_sigil] = STATE(3552), - [sym_list] = STATE(3552), - [sym_tuple] = STATE(3552), - [sym_bitstring] = STATE(3552), - [sym_map] = STATE(3552), - [sym_struct] = STATE(5029), - [sym_unary_operator] = STATE(3548), - [sym_binary_operator] = STATE(3552), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3548), - [sym_call] = STATE(3552), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(3527), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3552), - [sym_anonymous_function] = STATE(3552), + [389] = { + [sym__expression] = STATE(4159), + [sym_block] = STATE(4159), + [sym__identifier] = STATE(103), + [sym_identifier] = STATE(103), + [sym_special_identifier] = STATE(103), + [sym_boolean] = STATE(4159), + [sym_nil] = STATE(4159), + [sym__atom] = STATE(4155), + [sym_quoted_atom] = STATE(4155), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4159), + [sym_charlist] = STATE(4159), + [sym_sigil] = STATE(4159), + [sym_list] = STATE(4159), + [sym_tuple] = STATE(4159), + [sym_bitstring] = STATE(4159), + [sym_map] = STATE(4159), + [sym_struct] = STATE(5614), + [sym_unary_operator] = STATE(4155), + [sym_binary_operator] = STATE(4159), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4155), + [sym_call] = STATE(4159), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(4151), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4159), + [sym_anonymous_function] = STATE(4159), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), [aux_sym_identifier_token1] = ACTIONS(826), [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1539), + [sym_unused_identifier] = ACTIONS(1567), [anon_sym___MODULE__] = ACTIONS(830), [anon_sym___DIR__] = ACTIONS(830), [anon_sym___ENV__] = ACTIONS(830), [anon_sym___CALLER__] = ACTIONS(830), [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1541), - [sym_integer] = ACTIONS(1543), - [sym_float] = ACTIONS(1543), - [sym_char] = ACTIONS(1543), + [sym_alias] = ACTIONS(1569), + [sym_integer] = ACTIONS(1571), + [sym_float] = ACTIONS(1571), + [sym_char] = ACTIONS(1571), [anon_sym_true] = ACTIONS(1073), [anon_sym_false] = ACTIONS(1073), [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1541), + [sym_atom] = ACTIONS(1569), [anon_sym_DQUOTE] = ACTIONS(1077), [anon_sym_SQUOTE] = ACTIONS(1079), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1647), [anon_sym_LBRACK] = ACTIONS(1089), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), @@ -73167,14 +76199,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(1091), [anon_sym_LT_LT] = ACTIONS(1095), [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1517), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1517), - [anon_sym_not] = ACTIONS(1517), - [anon_sym_AT] = ACTIONS(1519), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1507), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AT] = ACTIONS(1509), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -73218,68 +76250,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1521), + [sym__before_unary_op] = ACTIONS(1511), [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(1109), }, - [371] = { - [sym__expression] = STATE(3485), - [sym_block] = STATE(3485), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3485), - [sym_nil] = STATE(3485), - [sym__atom] = STATE(3485), - [sym_quoted_atom] = STATE(3485), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3485), - [sym_charlist] = STATE(3485), - [sym_sigil] = STATE(3485), - [sym_list] = STATE(3485), - [sym_tuple] = STATE(3485), - [sym_bitstring] = STATE(3485), - [sym_map] = STATE(3485), - [sym_unary_operator] = STATE(3485), - [sym_binary_operator] = STATE(3485), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3485), - [sym_call] = STATE(3485), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3485), - [sym_anonymous_function] = STATE(3485), + [390] = { + [sym__expression] = STATE(2672), + [sym_block] = STATE(2672), + [sym__identifier] = STATE(56), + [sym_identifier] = STATE(56), + [sym_special_identifier] = STATE(56), + [sym_boolean] = STATE(2672), + [sym_nil] = STATE(2672), + [sym__atom] = STATE(2672), + [sym_quoted_atom] = STATE(2672), + [sym__quoted_i_double] = STATE(2913), + [sym__quoted_i_single] = STATE(2912), + [sym__quoted_i_heredoc_single] = STATE(2910), + [sym__quoted_i_heredoc_double] = STATE(2805), + [sym_string] = STATE(2672), + [sym_charlist] = STATE(2672), + [sym_sigil] = STATE(2672), + [sym_list] = STATE(2672), + [sym_tuple] = STATE(2672), + [sym_bitstring] = STATE(2672), + [sym_map] = STATE(2672), + [sym_unary_operator] = STATE(2672), + [sym__capture_expression] = STATE(2694), + [sym_binary_operator] = STATE(2672), + [sym_operator_identifier] = STATE(5636), + [sym_dot] = STATE(2672), + [sym_call] = STATE(2672), + [sym__call_without_parentheses] = STATE(2883), + [sym__call_with_parentheses] = STATE(2876), + [sym__local_call_without_parentheses] = STATE(2870), + [sym__local_call_with_parentheses] = STATE(2037), + [sym__local_call_just_do_block] = STATE(2853), + [sym__remote_call_without_parentheses] = STATE(2846), + [sym__remote_call_with_parentheses] = STATE(2038), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2051), + [sym__anonymous_dot] = STATE(5534), + [sym__double_call] = STATE(2836), + [sym_access_call] = STATE(2672), + [sym_anonymous_function] = STATE(2672), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1587), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(1589), + [sym_integer] = ACTIONS(1649), + [sym_float] = ACTIONS(1589), + [sym_char] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [391] = { + [sym__expression] = STATE(4049), + [sym_block] = STATE(4049), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(4049), + [sym_nil] = STATE(4049), + [sym__atom] = STATE(4049), + [sym_quoted_atom] = STATE(4049), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(4049), + [sym_charlist] = STATE(4049), + [sym_sigil] = STATE(4049), + [sym_list] = STATE(4049), + [sym_tuple] = STATE(4049), + [sym_bitstring] = STATE(4049), + [sym_map] = STATE(4049), + [sym_unary_operator] = STATE(4049), + [sym_binary_operator] = STATE(4049), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(4049), + [sym_call] = STATE(4049), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(4049), + [sym_anonymous_function] = STATE(4049), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_RPAREN] = ACTIONS(1601), + [anon_sym_RPAREN] = ACTIONS(1651), [aux_sym_identifier_token1] = ACTIONS(704), [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), + [sym_unused_identifier] = ACTIONS(1349), [anon_sym___MODULE__] = ACTIONS(708), [anon_sym___DIR__] = ACTIONS(708), [anon_sym___ENV__] = ACTIONS(708), [anon_sym___CALLER__] = ACTIONS(708), [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1555), - [sym_integer] = ACTIONS(1555), - [sym_float] = ACTIONS(1555), - [sym_char] = ACTIONS(1555), + [sym_alias] = ACTIONS(1535), + [sym_integer] = ACTIONS(1535), + [sym_float] = ACTIONS(1535), + [sym_char] = ACTIONS(1535), [anon_sym_true] = ACTIONS(948), [anon_sym_false] = ACTIONS(948), [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1555), + [sym_atom] = ACTIONS(1535), [anon_sym_DQUOTE] = ACTIONS(952), [anon_sym_SQUOTE] = ACTIONS(954), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), @@ -73290,17 +76448,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), + [anon_sym_TILDE] = ACTIONS(1353), [anon_sym_LT_LT] = ACTIONS(966), [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -73344,52 +76502,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), + [sym__before_unary_op] = ACTIONS(1363), [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(982), }, - [372] = { - [sym__expression] = STATE(1823), - [sym_block] = STATE(1823), + [392] = { + [sym__expression] = STATE(1960), + [sym_block] = STATE(1960), [sym__identifier] = STATE(25), [sym_identifier] = STATE(25), [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1823), - [sym_nil] = STATE(1823), - [sym__atom] = STATE(1823), - [sym_quoted_atom] = STATE(1823), - [sym__quoted_i_double] = STATE(1551), - [sym__quoted_i_single] = STATE(1552), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1823), - [sym_charlist] = STATE(1823), - [sym_sigil] = STATE(1823), - [sym_list] = STATE(1823), - [sym_tuple] = STATE(1823), - [sym_bitstring] = STATE(1823), - [sym_map] = STATE(1823), - [sym_unary_operator] = STATE(1823), - [sym__capture_expression] = STATE(1486), - [sym_binary_operator] = STATE(1823), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1823), - [sym_call] = STATE(1823), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1823), - [sym_anonymous_function] = STATE(1823), + [sym_boolean] = STATE(1960), + [sym_nil] = STATE(1960), + [sym__atom] = STATE(1960), + [sym_quoted_atom] = STATE(1960), + [sym__quoted_i_double] = STATE(1540), + [sym__quoted_i_single] = STATE(1541), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1960), + [sym_charlist] = STATE(1960), + [sym_sigil] = STATE(1960), + [sym_list] = STATE(1960), + [sym_tuple] = STATE(1960), + [sym_bitstring] = STATE(1960), + [sym_map] = STATE(1960), + [sym_unary_operator] = STATE(1960), + [sym__capture_expression] = STATE(1641), + [sym_binary_operator] = STATE(1960), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1960), + [sym_call] = STATE(1960), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1960), + [sym_anonymous_function] = STATE(1960), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_LPAREN] = ACTIONS(1593), [aux_sym_identifier_token1] = ACTIONS(67), [anon_sym_DOT_DOT_DOT] = ACTIONS(67), [sym_unused_identifier] = ACTIONS(69), @@ -73398,14 +76556,392 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ENV__] = ACTIONS(71), [anon_sym___CALLER__] = ACTIONS(71), [anon_sym___STACKTRACE__] = ACTIONS(71), - [sym_alias] = ACTIONS(1549), - [sym_integer] = ACTIONS(1559), - [sym_float] = ACTIONS(1549), - [sym_char] = ACTIONS(1549), + [sym_alias] = ACTIONS(1653), + [sym_integer] = ACTIONS(1597), + [sym_float] = ACTIONS(1653), + [sym_char] = ACTIONS(1653), [anon_sym_true] = ACTIONS(75), [anon_sym_false] = ACTIONS(75), [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(1549), + [sym_atom] = ACTIONS(1653), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [393] = { + [sym__expression] = STATE(4159), + [sym_block] = STATE(4159), + [sym__identifier] = STATE(103), + [sym_identifier] = STATE(103), + [sym_special_identifier] = STATE(103), + [sym_boolean] = STATE(4159), + [sym_nil] = STATE(4159), + [sym__atom] = STATE(4155), + [sym_quoted_atom] = STATE(4155), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4159), + [sym_charlist] = STATE(4159), + [sym_sigil] = STATE(4159), + [sym_list] = STATE(4159), + [sym_tuple] = STATE(4159), + [sym_bitstring] = STATE(4159), + [sym_map] = STATE(4159), + [sym_struct] = STATE(5622), + [sym_unary_operator] = STATE(4155), + [sym_binary_operator] = STATE(4159), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4155), + [sym_call] = STATE(4159), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(4151), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4159), + [sym_anonymous_function] = STATE(4159), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1567), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1569), + [sym_integer] = ACTIONS(1571), + [sym_float] = ACTIONS(1571), + [sym_char] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1507), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AT] = ACTIONS(1509), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1511), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [394] = { + [sym__expression] = STATE(4049), + [sym_block] = STATE(4049), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(4049), + [sym_nil] = STATE(4049), + [sym__atom] = STATE(4049), + [sym_quoted_atom] = STATE(4049), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(4049), + [sym_charlist] = STATE(4049), + [sym_sigil] = STATE(4049), + [sym_list] = STATE(4049), + [sym_tuple] = STATE(4049), + [sym_bitstring] = STATE(4049), + [sym_map] = STATE(4049), + [sym_unary_operator] = STATE(4049), + [sym_binary_operator] = STATE(4049), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(4049), + [sym_call] = STATE(4049), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(4049), + [sym_anonymous_function] = STATE(4049), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1657), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1535), + [sym_integer] = ACTIONS(1535), + [sym_float] = ACTIONS(1535), + [sym_char] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [395] = { + [sym__expression] = STATE(1960), + [sym_block] = STATE(1960), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1960), + [sym_nil] = STATE(1960), + [sym__atom] = STATE(1960), + [sym_quoted_atom] = STATE(1960), + [sym__quoted_i_double] = STATE(1540), + [sym__quoted_i_single] = STATE(1541), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1960), + [sym_charlist] = STATE(1960), + [sym_sigil] = STATE(1960), + [sym_list] = STATE(1960), + [sym_tuple] = STATE(1960), + [sym_bitstring] = STATE(1960), + [sym_map] = STATE(1960), + [sym_unary_operator] = STATE(1960), + [sym__capture_expression] = STATE(1657), + [sym_binary_operator] = STATE(1960), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1960), + [sym_call] = STATE(1960), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1960), + [sym_anonymous_function] = STATE(1960), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1593), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(1653), + [sym_integer] = ACTIONS(1601), + [sym_float] = ACTIONS(1653), + [sym_char] = ACTIONS(1653), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1653), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), @@ -73474,2983 +77010,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(121), }, - [373] = { - [sym__expression] = STATE(2421), - [sym_block] = STATE(2421), - [sym__identifier] = STATE(47), - [sym_identifier] = STATE(47), - [sym_special_identifier] = STATE(47), - [sym_boolean] = STATE(2421), - [sym_nil] = STATE(2421), - [sym__atom] = STATE(2421), - [sym_quoted_atom] = STATE(2421), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2421), - [sym_charlist] = STATE(2421), - [sym_sigil] = STATE(2421), - [sym_list] = STATE(2421), - [sym_tuple] = STATE(2421), - [sym_bitstring] = STATE(2421), - [sym_map] = STATE(2421), - [sym_unary_operator] = STATE(2421), - [sym__capture_expression] = STATE(1431), - [sym_binary_operator] = STATE(2421), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2421), - [sym_call] = STATE(2421), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(41), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2421), - [sym_anonymous_function] = STATE(2421), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1533), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(438), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(1603), - [sym_integer] = ACTIONS(1537), - [sym_float] = ACTIONS(1603), - [sym_char] = ACTIONS(1603), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1603), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(448), - [anon_sym_PLUS] = ACTIONS(450), - [anon_sym_DASH] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(450), - [anon_sym_CARET] = ACTIONS(450), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), - [anon_sym_not] = ACTIONS(450), - [anon_sym_AT] = ACTIONS(452), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(454), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [374] = { - [sym__expression] = STATE(3552), - [sym_block] = STATE(3552), - [sym__identifier] = STATE(111), - [sym_identifier] = STATE(111), - [sym_special_identifier] = STATE(111), - [sym_boolean] = STATE(3552), - [sym_nil] = STATE(3552), - [sym__atom] = STATE(3548), - [sym_quoted_atom] = STATE(3548), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3552), - [sym_charlist] = STATE(3552), - [sym_sigil] = STATE(3552), - [sym_list] = STATE(3552), - [sym_tuple] = STATE(3552), - [sym_bitstring] = STATE(3552), - [sym_map] = STATE(3552), - [sym_struct] = STATE(4990), - [sym_unary_operator] = STATE(3548), - [sym_binary_operator] = STATE(3552), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3548), - [sym_call] = STATE(3552), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(3527), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3552), - [sym_anonymous_function] = STATE(3552), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1539), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1541), - [sym_integer] = ACTIONS(1543), - [sym_float] = ACTIONS(1543), - [sym_char] = ACTIONS(1543), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1541), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1605), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1517), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1517), - [anon_sym_not] = ACTIONS(1517), - [anon_sym_AT] = ACTIONS(1519), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1521), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [375] = { - [sym__expression] = STATE(3552), - [sym_block] = STATE(3552), - [sym__identifier] = STATE(111), - [sym_identifier] = STATE(111), - [sym_special_identifier] = STATE(111), - [sym_boolean] = STATE(3552), - [sym_nil] = STATE(3552), - [sym__atom] = STATE(3548), - [sym_quoted_atom] = STATE(3548), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3552), - [sym_charlist] = STATE(3552), - [sym_sigil] = STATE(3552), - [sym_list] = STATE(3552), - [sym_tuple] = STATE(3552), - [sym_bitstring] = STATE(3552), - [sym_map] = STATE(3552), - [sym_struct] = STATE(5014), - [sym_unary_operator] = STATE(3548), - [sym_binary_operator] = STATE(3552), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3548), - [sym_call] = STATE(3552), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(3527), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3552), - [sym_anonymous_function] = STATE(3552), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1539), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1541), - [sym_integer] = ACTIONS(1543), - [sym_float] = ACTIONS(1543), - [sym_char] = ACTIONS(1543), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1541), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1517), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1517), - [anon_sym_not] = ACTIONS(1517), - [anon_sym_AT] = ACTIONS(1519), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1521), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [376] = { - [sym__expression] = STATE(2397), - [sym_block] = STATE(2397), - [sym__identifier] = STATE(60), - [sym_identifier] = STATE(60), - [sym_special_identifier] = STATE(60), - [sym_boolean] = STATE(2397), - [sym_nil] = STATE(2397), - [sym__atom] = STATE(2397), - [sym_quoted_atom] = STATE(2397), - [sym__quoted_i_double] = STATE(2414), - [sym__quoted_i_single] = STATE(2413), - [sym__quoted_i_heredoc_single] = STATE(2413), - [sym__quoted_i_heredoc_double] = STATE(2414), - [sym_string] = STATE(2397), - [sym_charlist] = STATE(2397), - [sym_sigil] = STATE(2397), - [sym_list] = STATE(2397), - [sym_tuple] = STATE(2397), - [sym_bitstring] = STATE(2397), - [sym_map] = STATE(2397), - [sym_unary_operator] = STATE(2397), - [sym__capture_expression] = STATE(2396), - [sym_binary_operator] = STATE(2397), - [sym_operator_identifier] = STATE(5028), - [sym_dot] = STATE(2397), - [sym_call] = STATE(2397), - [sym__call_without_parentheses] = STATE(2412), - [sym__call_with_parentheses] = STATE(2411), - [sym__local_call_without_parentheses] = STATE(2410), - [sym__local_call_with_parentheses] = STATE(1910), - [sym__local_call_just_do_block] = STATE(2409), - [sym__remote_call_without_parentheses] = STATE(2408), - [sym__remote_call_with_parentheses] = STATE(1916), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(1975), - [sym__anonymous_dot] = STATE(4890), - [sym__double_call] = STATE(2407), - [sym_access_call] = STATE(2397), - [sym_anonymous_function] = STATE(2397), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1579), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(558), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(1581), - [sym_integer] = ACTIONS(1609), - [sym_float] = ACTIONS(1581), - [sym_char] = ACTIONS(1581), - [anon_sym_true] = ACTIONS(562), - [anon_sym_false] = ACTIONS(562), - [anon_sym_nil] = ACTIONS(564), - [sym_atom] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(566), - [anon_sym_SQUOTE] = ACTIONS(568), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), - [anon_sym_LBRACE] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(578), - [anon_sym_LT_LT] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_CARET] = ACTIONS(588), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), - [anon_sym_not] = ACTIONS(588), - [anon_sym_AT] = ACTIONS(590), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(594), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(600), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(602), - }, - [377] = { - [sym__expression] = STATE(3224), - [sym_block] = STATE(3224), - [sym__identifier] = STATE(57), - [sym_identifier] = STATE(57), - [sym_special_identifier] = STATE(57), - [sym_boolean] = STATE(3224), - [sym_nil] = STATE(3224), - [sym__atom] = STATE(3224), - [sym_quoted_atom] = STATE(3224), - [sym__quoted_i_double] = STATE(3146), - [sym__quoted_i_single] = STATE(3147), - [sym__quoted_i_heredoc_single] = STATE(3147), - [sym__quoted_i_heredoc_double] = STATE(3146), - [sym_string] = STATE(3224), - [sym_charlist] = STATE(3224), - [sym_sigil] = STATE(3224), - [sym_list] = STATE(3224), - [sym_tuple] = STATE(3224), - [sym_bitstring] = STATE(3224), - [sym_map] = STATE(3224), - [sym_unary_operator] = STATE(3224), - [sym__capture_expression] = STATE(3245), - [sym_binary_operator] = STATE(3224), - [sym_operator_identifier] = STATE(5049), - [sym_dot] = STATE(3224), - [sym_call] = STATE(3224), - [sym__call_without_parentheses] = STATE(3175), - [sym__call_with_parentheses] = STATE(3177), - [sym__local_call_without_parentheses] = STATE(3178), - [sym__local_call_with_parentheses] = STATE(2550), - [sym__local_call_just_do_block] = STATE(3183), - [sym__remote_call_without_parentheses] = STATE(3200), - [sym__remote_call_with_parentheses] = STATE(2583), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(2582), - [sym__anonymous_dot] = STATE(4866), - [sym__double_call] = STATE(3202), - [sym_access_call] = STATE(3224), - [sym_anonymous_function] = STATE(3224), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1611), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(15), - [sym_unused_identifier] = ACTIONS(17), - [anon_sym___MODULE__] = ACTIONS(19), - [anon_sym___DIR__] = ACTIONS(19), - [anon_sym___ENV__] = ACTIONS(19), - [anon_sym___CALLER__] = ACTIONS(19), - [anon_sym___STACKTRACE__] = ACTIONS(19), - [sym_alias] = ACTIONS(1613), - [sym_integer] = ACTIONS(1615), - [sym_float] = ACTIONS(1613), - [sym_char] = ACTIONS(1613), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_nil] = ACTIONS(25), - [sym_atom] = ACTIONS(1613), - [anon_sym_DQUOTE] = ACTIONS(27), - [anon_sym_SQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(41), - [anon_sym_LT_LT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(45), - [anon_sym_AMP] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(49), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_CARET] = ACTIONS(49), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), - [anon_sym_not] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(51), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(53), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(55), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(59), - }, - [378] = { - [sym__expression] = STATE(2748), - [sym_block] = STATE(2748), - [sym__identifier] = STATE(42), - [sym_identifier] = STATE(42), - [sym_special_identifier] = STATE(42), - [sym_boolean] = STATE(2748), - [sym_nil] = STATE(2748), - [sym__atom] = STATE(2748), - [sym_quoted_atom] = STATE(2748), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2748), - [sym_charlist] = STATE(2748), - [sym_sigil] = STATE(2748), - [sym_list] = STATE(2748), - [sym_tuple] = STATE(2748), - [sym_bitstring] = STATE(2748), - [sym_map] = STATE(2748), - [sym_unary_operator] = STATE(2748), - [sym__capture_expression] = STATE(1431), - [sym_binary_operator] = STATE(2748), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2748), - [sym_call] = STATE(2748), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2748), - [sym_anonymous_function] = STATE(2748), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1533), - [aux_sym_identifier_token1] = ACTIONS(456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(456), - [sym_unused_identifier] = ACTIONS(458), - [anon_sym___MODULE__] = ACTIONS(460), - [anon_sym___DIR__] = ACTIONS(460), - [anon_sym___ENV__] = ACTIONS(460), - [anon_sym___CALLER__] = ACTIONS(460), - [anon_sym___STACKTRACE__] = ACTIONS(460), - [sym_alias] = ACTIONS(1585), - [sym_integer] = ACTIONS(1537), - [sym_float] = ACTIONS(1585), - [sym_char] = ACTIONS(1585), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1585), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(464), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(473), - [anon_sym_BANG] = ACTIONS(473), - [anon_sym_CARET] = ACTIONS(473), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), - [anon_sym_not] = ACTIONS(473), - [anon_sym_AT] = ACTIONS(475), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(477), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [379] = { - [sym__expression] = STATE(2682), - [sym_block] = STATE(2682), - [sym__identifier] = STATE(45), - [sym_identifier] = STATE(45), - [sym_special_identifier] = STATE(45), - [sym_boolean] = STATE(2682), - [sym_nil] = STATE(2682), - [sym__atom] = STATE(2682), - [sym_quoted_atom] = STATE(2682), - [sym__quoted_i_double] = STATE(2714), - [sym__quoted_i_single] = STATE(2713), - [sym__quoted_i_heredoc_single] = STATE(2713), - [sym__quoted_i_heredoc_double] = STATE(2714), - [sym_string] = STATE(2682), - [sym_charlist] = STATE(2682), - [sym_sigil] = STATE(2682), - [sym_list] = STATE(2682), - [sym_tuple] = STATE(2682), - [sym_bitstring] = STATE(2682), - [sym_map] = STATE(2682), - [sym_unary_operator] = STATE(2682), - [sym__capture_expression] = STATE(2679), - [sym_binary_operator] = STATE(2682), - [sym_operator_identifier] = STATE(4988), - [sym_dot] = STATE(2682), - [sym_call] = STATE(2682), - [sym__call_without_parentheses] = STATE(2712), - [sym__call_with_parentheses] = STATE(2711), - [sym__local_call_without_parentheses] = STATE(2710), - [sym__local_call_with_parentheses] = STATE(1879), - [sym__local_call_just_do_block] = STATE(2709), - [sym__remote_call_without_parentheses] = STATE(2708), - [sym__remote_call_with_parentheses] = STATE(1859), - [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1919), - [sym__anonymous_dot] = STATE(4871), - [sym__double_call] = STATE(2707), - [sym_access_call] = STATE(2682), - [sym_anonymous_function] = STATE(2682), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1617), - [aux_sym_identifier_token1] = ACTIONS(481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(481), - [sym_unused_identifier] = ACTIONS(483), - [anon_sym___MODULE__] = ACTIONS(485), - [anon_sym___DIR__] = ACTIONS(485), - [anon_sym___ENV__] = ACTIONS(485), - [anon_sym___CALLER__] = ACTIONS(485), - [anon_sym___STACKTRACE__] = ACTIONS(485), - [sym_alias] = ACTIONS(1619), - [sym_integer] = ACTIONS(1621), - [sym_float] = ACTIONS(1619), - [sym_char] = ACTIONS(1619), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_nil] = ACTIONS(491), - [sym_atom] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(493), - [anon_sym_SQUOTE] = ACTIONS(495), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(497), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(499), - [anon_sym_LBRACE] = ACTIONS(501), - [anon_sym_LBRACK] = ACTIONS(503), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(505), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(515), - [anon_sym_CARET] = ACTIONS(515), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(515), - [anon_sym_not] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(517), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(519), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(523), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(525), - }, - [380] = { - [sym__expression] = STATE(3485), - [sym_block] = STATE(3485), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3485), - [sym_nil] = STATE(3485), - [sym__atom] = STATE(3485), - [sym_quoted_atom] = STATE(3485), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3485), - [sym_charlist] = STATE(3485), - [sym_sigil] = STATE(3485), - [sym_list] = STATE(3485), - [sym_tuple] = STATE(3485), - [sym_bitstring] = STATE(3485), - [sym_map] = STATE(3485), - [sym_unary_operator] = STATE(3485), - [sym_binary_operator] = STATE(3485), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3485), - [sym_call] = STATE(3485), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3485), - [sym_anonymous_function] = STATE(3485), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_RPAREN] = ACTIONS(1623), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1555), - [sym_integer] = ACTIONS(1555), - [sym_float] = ACTIONS(1555), - [sym_char] = ACTIONS(1555), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1555), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [381] = { - [sym__expression] = STATE(3552), - [sym_block] = STATE(3552), - [sym__identifier] = STATE(111), - [sym_identifier] = STATE(111), - [sym_special_identifier] = STATE(111), - [sym_boolean] = STATE(3552), - [sym_nil] = STATE(3552), - [sym__atom] = STATE(3548), - [sym_quoted_atom] = STATE(3548), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3552), - [sym_charlist] = STATE(3552), - [sym_sigil] = STATE(3552), - [sym_list] = STATE(3552), - [sym_tuple] = STATE(3552), - [sym_bitstring] = STATE(3552), - [sym_map] = STATE(3552), - [sym_struct] = STATE(4974), - [sym_unary_operator] = STATE(3548), - [sym_binary_operator] = STATE(3552), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3548), - [sym_call] = STATE(3552), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(3527), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3552), - [sym_anonymous_function] = STATE(3552), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1539), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1541), - [sym_integer] = ACTIONS(1543), - [sym_float] = ACTIONS(1543), - [sym_char] = ACTIONS(1543), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1541), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1517), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1517), - [anon_sym_not] = ACTIONS(1517), - [anon_sym_AT] = ACTIONS(1519), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1521), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [382] = { - [sym__expression] = STATE(3485), - [sym_block] = STATE(3485), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3485), - [sym_nil] = STATE(3485), - [sym__atom] = STATE(3485), - [sym_quoted_atom] = STATE(3485), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3485), - [sym_charlist] = STATE(3485), - [sym_sigil] = STATE(3485), - [sym_list] = STATE(3485), - [sym_tuple] = STATE(3485), - [sym_bitstring] = STATE(3485), - [sym_map] = STATE(3485), - [sym_unary_operator] = STATE(3485), - [sym_binary_operator] = STATE(3485), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3485), - [sym_call] = STATE(3485), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3485), - [sym_anonymous_function] = STATE(3485), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_RPAREN] = ACTIONS(1627), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1555), - [sym_integer] = ACTIONS(1555), - [sym_float] = ACTIONS(1555), - [sym_char] = ACTIONS(1555), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1555), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [383] = { - [sym__expression] = STATE(3377), - [sym_block] = STATE(3377), - [sym__identifier] = STATE(54), - [sym_identifier] = STATE(54), - [sym_special_identifier] = STATE(54), - [sym_boolean] = STATE(3377), - [sym_nil] = STATE(3377), - [sym__atom] = STATE(3377), - [sym_quoted_atom] = STATE(3377), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3377), - [sym_charlist] = STATE(3377), - [sym_sigil] = STATE(3377), - [sym_list] = STATE(3377), - [sym_tuple] = STATE(3377), - [sym_bitstring] = STATE(3377), - [sym_map] = STATE(3377), - [sym_unary_operator] = STATE(3377), - [sym__capture_expression] = STATE(1625), - [sym_binary_operator] = STATE(3377), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3377), - [sym_call] = STATE(3377), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3377), - [sym_anonymous_function] = STATE(3377), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1629), - [aux_sym_identifier_token1] = ACTIONS(1427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1427), - [sym_unused_identifier] = ACTIONS(1429), - [anon_sym___MODULE__] = ACTIONS(1431), - [anon_sym___DIR__] = ACTIONS(1431), - [anon_sym___ENV__] = ACTIONS(1431), - [anon_sym___CALLER__] = ACTIONS(1431), - [anon_sym___STACKTRACE__] = ACTIONS(1431), - [sym_alias] = ACTIONS(1631), - [sym_integer] = ACTIONS(1633), - [sym_float] = ACTIONS(1631), - [sym_char] = ACTIONS(1631), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1631), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_CARET] = ACTIONS(1441), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1441), - [anon_sym_not] = ACTIONS(1441), - [anon_sym_AT] = ACTIONS(1443), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1445), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [384] = { - [sym__expression] = STATE(1833), - [sym_block] = STATE(1833), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(1833), - [sym_nil] = STATE(1833), - [sym__atom] = STATE(1833), - [sym_quoted_atom] = STATE(1833), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(1833), - [sym_charlist] = STATE(1833), - [sym_sigil] = STATE(1833), - [sym_list] = STATE(1833), - [sym_tuple] = STATE(1833), - [sym_bitstring] = STATE(1833), - [sym_map] = STATE(1833), - [sym_unary_operator] = STATE(1833), - [sym__capture_expression] = STATE(1648), - [sym_binary_operator] = STATE(1833), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(1833), - [sym_call] = STATE(1833), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(1833), - [sym_anonymous_function] = STATE(1833), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1629), - [aux_sym_identifier_token1] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(944), - [anon_sym___MODULE__] = ACTIONS(71), - [anon_sym___DIR__] = ACTIONS(71), - [anon_sym___ENV__] = ACTIONS(71), - [anon_sym___CALLER__] = ACTIONS(71), - [anon_sym___STACKTRACE__] = ACTIONS(71), - [sym_alias] = ACTIONS(1635), - [sym_integer] = ACTIONS(1637), - [sym_float] = ACTIONS(1635), - [sym_char] = ACTIONS(1635), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1635), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(972), - [anon_sym_CARET] = ACTIONS(972), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), - [anon_sym_not] = ACTIONS(972), - [anon_sym_AT] = ACTIONS(974), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(980), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [385] = { - [sym__expression] = STATE(3485), - [sym_block] = STATE(3485), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3485), - [sym_nil] = STATE(3485), - [sym__atom] = STATE(3485), - [sym_quoted_atom] = STATE(3485), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3485), - [sym_charlist] = STATE(3485), - [sym_sigil] = STATE(3485), - [sym_list] = STATE(3485), - [sym_tuple] = STATE(3485), - [sym_bitstring] = STATE(3485), - [sym_map] = STATE(3485), - [sym_unary_operator] = STATE(3485), - [sym_binary_operator] = STATE(3485), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3485), - [sym_call] = STATE(3485), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3485), - [sym_anonymous_function] = STATE(3485), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_RPAREN] = ACTIONS(1639), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1555), - [sym_integer] = ACTIONS(1555), - [sym_float] = ACTIONS(1555), - [sym_char] = ACTIONS(1555), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1555), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [386] = { - [sym__expression] = STATE(3485), - [sym_block] = STATE(3485), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3485), - [sym_nil] = STATE(3485), - [sym__atom] = STATE(3485), - [sym_quoted_atom] = STATE(3485), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3485), - [sym_charlist] = STATE(3485), - [sym_sigil] = STATE(3485), - [sym_list] = STATE(3485), - [sym_tuple] = STATE(3485), - [sym_bitstring] = STATE(3485), - [sym_map] = STATE(3485), - [sym_unary_operator] = STATE(3485), - [sym_binary_operator] = STATE(3485), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3485), - [sym_call] = STATE(3485), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3485), - [sym_anonymous_function] = STATE(3485), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_RPAREN] = ACTIONS(1641), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1555), - [sym_integer] = ACTIONS(1555), - [sym_float] = ACTIONS(1555), - [sym_char] = ACTIONS(1555), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1555), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [387] = { - [sym__expression] = STATE(3485), - [sym_block] = STATE(3485), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3485), - [sym_nil] = STATE(3485), - [sym__atom] = STATE(3485), - [sym_quoted_atom] = STATE(3485), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3485), - [sym_charlist] = STATE(3485), - [sym_sigil] = STATE(3485), - [sym_list] = STATE(3485), - [sym_tuple] = STATE(3485), - [sym_bitstring] = STATE(3485), - [sym_map] = STATE(3485), - [sym_unary_operator] = STATE(3485), - [sym_binary_operator] = STATE(3485), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3485), - [sym_call] = STATE(3485), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3485), - [sym_anonymous_function] = STATE(3485), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_RPAREN] = ACTIONS(1643), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1555), - [sym_integer] = ACTIONS(1555), - [sym_float] = ACTIONS(1555), - [sym_char] = ACTIONS(1555), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1555), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [388] = { - [sym__expression] = STATE(3485), - [sym_block] = STATE(3485), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3485), - [sym_nil] = STATE(3485), - [sym__atom] = STATE(3485), - [sym_quoted_atom] = STATE(3485), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3485), - [sym_charlist] = STATE(3485), - [sym_sigil] = STATE(3485), - [sym_list] = STATE(3485), - [sym_tuple] = STATE(3485), - [sym_bitstring] = STATE(3485), - [sym_map] = STATE(3485), - [sym_unary_operator] = STATE(3485), - [sym_binary_operator] = STATE(3485), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3485), - [sym_call] = STATE(3485), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3485), - [sym_anonymous_function] = STATE(3485), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_RPAREN] = ACTIONS(1645), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1555), - [sym_integer] = ACTIONS(1555), - [sym_float] = ACTIONS(1555), - [sym_char] = ACTIONS(1555), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1555), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [389] = { - [sym__expression] = STATE(3485), - [sym_block] = STATE(3485), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3485), - [sym_nil] = STATE(3485), - [sym__atom] = STATE(3485), - [sym_quoted_atom] = STATE(3485), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3485), - [sym_charlist] = STATE(3485), - [sym_sigil] = STATE(3485), - [sym_list] = STATE(3485), - [sym_tuple] = STATE(3485), - [sym_bitstring] = STATE(3485), - [sym_map] = STATE(3485), - [sym_unary_operator] = STATE(3485), - [sym_binary_operator] = STATE(3485), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3485), - [sym_call] = STATE(3485), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3485), - [sym_anonymous_function] = STATE(3485), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_RPAREN] = ACTIONS(1647), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1555), - [sym_integer] = ACTIONS(1555), - [sym_float] = ACTIONS(1555), - [sym_char] = ACTIONS(1555), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1555), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [390] = { - [sym__expression] = STATE(3552), - [sym_block] = STATE(3552), - [sym__identifier] = STATE(111), - [sym_identifier] = STATE(111), - [sym_special_identifier] = STATE(111), - [sym_boolean] = STATE(3552), - [sym_nil] = STATE(3552), - [sym__atom] = STATE(3548), - [sym_quoted_atom] = STATE(3548), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3552), - [sym_charlist] = STATE(3552), - [sym_sigil] = STATE(3552), - [sym_list] = STATE(3552), - [sym_tuple] = STATE(3552), - [sym_bitstring] = STATE(3552), - [sym_map] = STATE(3552), - [sym_struct] = STATE(5036), - [sym_unary_operator] = STATE(3548), - [sym_binary_operator] = STATE(3552), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3548), - [sym_call] = STATE(3552), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(3527), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3552), - [sym_anonymous_function] = STATE(3552), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1539), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1541), - [sym_integer] = ACTIONS(1543), - [sym_float] = ACTIONS(1543), - [sym_char] = ACTIONS(1543), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1541), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1649), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1517), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1517), - [anon_sym_not] = ACTIONS(1517), - [anon_sym_AT] = ACTIONS(1519), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1521), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [391] = { - [sym__expression] = STATE(3485), - [sym_block] = STATE(3485), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3485), - [sym_nil] = STATE(3485), - [sym__atom] = STATE(3485), - [sym_quoted_atom] = STATE(3485), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3485), - [sym_charlist] = STATE(3485), - [sym_sigil] = STATE(3485), - [sym_list] = STATE(3485), - [sym_tuple] = STATE(3485), - [sym_bitstring] = STATE(3485), - [sym_map] = STATE(3485), - [sym_unary_operator] = STATE(3485), - [sym_binary_operator] = STATE(3485), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3485), - [sym_call] = STATE(3485), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3485), - [sym_anonymous_function] = STATE(3485), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_RPAREN] = ACTIONS(1651), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1555), - [sym_integer] = ACTIONS(1555), - [sym_float] = ACTIONS(1555), - [sym_char] = ACTIONS(1555), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1555), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [392] = { - [sym__expression] = STATE(3485), - [sym_block] = STATE(3485), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3485), - [sym_nil] = STATE(3485), - [sym__atom] = STATE(3485), - [sym_quoted_atom] = STATE(3485), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3485), - [sym_charlist] = STATE(3485), - [sym_sigil] = STATE(3485), - [sym_list] = STATE(3485), - [sym_tuple] = STATE(3485), - [sym_bitstring] = STATE(3485), - [sym_map] = STATE(3485), - [sym_unary_operator] = STATE(3485), - [sym_binary_operator] = STATE(3485), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3485), - [sym_call] = STATE(3485), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3485), - [sym_anonymous_function] = STATE(3485), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_RPAREN] = ACTIONS(1653), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1555), - [sym_integer] = ACTIONS(1555), - [sym_float] = ACTIONS(1555), - [sym_char] = ACTIONS(1555), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1555), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [393] = { - [sym__expression] = STATE(3377), - [sym_block] = STATE(3377), - [sym__identifier] = STATE(54), - [sym_identifier] = STATE(54), - [sym_special_identifier] = STATE(54), - [sym_boolean] = STATE(3377), - [sym_nil] = STATE(3377), - [sym__atom] = STATE(3377), - [sym_quoted_atom] = STATE(3377), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3377), - [sym_charlist] = STATE(3377), - [sym_sigil] = STATE(3377), - [sym_list] = STATE(3377), - [sym_tuple] = STATE(3377), - [sym_bitstring] = STATE(3377), - [sym_map] = STATE(3377), - [sym_unary_operator] = STATE(3377), - [sym__capture_expression] = STATE(1648), - [sym_binary_operator] = STATE(3377), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3377), - [sym_call] = STATE(3377), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3377), - [sym_anonymous_function] = STATE(3377), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1629), - [aux_sym_identifier_token1] = ACTIONS(1427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1427), - [sym_unused_identifier] = ACTIONS(1429), - [anon_sym___MODULE__] = ACTIONS(1431), - [anon_sym___DIR__] = ACTIONS(1431), - [anon_sym___ENV__] = ACTIONS(1431), - [anon_sym___CALLER__] = ACTIONS(1431), - [anon_sym___STACKTRACE__] = ACTIONS(1431), - [sym_alias] = ACTIONS(1631), - [sym_integer] = ACTIONS(1637), - [sym_float] = ACTIONS(1631), - [sym_char] = ACTIONS(1631), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1631), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_CARET] = ACTIONS(1441), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1441), - [anon_sym_not] = ACTIONS(1441), - [anon_sym_AT] = ACTIONS(1443), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1445), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [394] = { - [sym__expression] = STATE(3485), - [sym_block] = STATE(3485), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3485), - [sym_nil] = STATE(3485), - [sym__atom] = STATE(3485), - [sym_quoted_atom] = STATE(3485), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3485), - [sym_charlist] = STATE(3485), - [sym_sigil] = STATE(3485), - [sym_list] = STATE(3485), - [sym_tuple] = STATE(3485), - [sym_bitstring] = STATE(3485), - [sym_map] = STATE(3485), - [sym_unary_operator] = STATE(3485), - [sym_binary_operator] = STATE(3485), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3485), - [sym_call] = STATE(3485), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3485), - [sym_anonymous_function] = STATE(3485), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_RPAREN] = ACTIONS(1655), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1555), - [sym_integer] = ACTIONS(1555), - [sym_float] = ACTIONS(1555), - [sym_char] = ACTIONS(1555), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1555), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [395] = { - [sym__expression] = STATE(3485), - [sym_block] = STATE(3485), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3485), - [sym_nil] = STATE(3485), - [sym__atom] = STATE(3485), - [sym_quoted_atom] = STATE(3485), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3485), - [sym_charlist] = STATE(3485), - [sym_sigil] = STATE(3485), - [sym_list] = STATE(3485), - [sym_tuple] = STATE(3485), - [sym_bitstring] = STATE(3485), - [sym_map] = STATE(3485), - [sym_unary_operator] = STATE(3485), - [sym_binary_operator] = STATE(3485), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3485), - [sym_call] = STATE(3485), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3485), - [sym_anonymous_function] = STATE(3485), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_RPAREN] = ACTIONS(1657), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1555), - [sym_integer] = ACTIONS(1555), - [sym_float] = ACTIONS(1555), - [sym_char] = ACTIONS(1555), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1555), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, [396] = { - [sym__expression] = STATE(3494), - [sym_block] = STATE(3494), - [sym__identifier] = STATE(57), - [sym_identifier] = STATE(57), - [sym_special_identifier] = STATE(57), - [sym_boolean] = STATE(3494), - [sym_nil] = STATE(3494), - [sym__atom] = STATE(3494), - [sym_quoted_atom] = STATE(3494), - [sym__quoted_i_double] = STATE(3146), - [sym__quoted_i_single] = STATE(3147), - [sym__quoted_i_heredoc_single] = STATE(3147), - [sym__quoted_i_heredoc_double] = STATE(3146), - [sym_string] = STATE(3494), - [sym_charlist] = STATE(3494), - [sym_sigil] = STATE(3494), - [sym_list] = STATE(3494), - [sym_tuple] = STATE(3494), - [sym_bitstring] = STATE(3494), - [sym_map] = STATE(3494), - [sym_unary_operator] = STATE(3494), - [sym_binary_operator] = STATE(3494), - [sym_operator_identifier] = STATE(5049), - [sym_dot] = STATE(3494), - [sym_call] = STATE(3494), - [sym__call_without_parentheses] = STATE(3175), - [sym__call_with_parentheses] = STATE(3177), - [sym__local_call_without_parentheses] = STATE(3178), - [sym__local_call_with_parentheses] = STATE(2550), - [sym__local_call_just_do_block] = STATE(3183), - [sym__remote_call_without_parentheses] = STATE(3200), - [sym__remote_call_with_parentheses] = STATE(2583), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(2582), - [sym__anonymous_dot] = STATE(4866), - [sym__double_call] = STATE(3202), - [sym_access_call] = STATE(3494), - [sym_anonymous_function] = STATE(3494), - [ts_builtin_sym_end] = ACTIONS(1659), + [sym__expression] = STATE(4049), + [sym_block] = STATE(4049), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(4049), + [sym_nil] = STATE(4049), + [sym__atom] = STATE(4049), + [sym_quoted_atom] = STATE(4049), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(4049), + [sym_charlist] = STATE(4049), + [sym_sigil] = STATE(4049), + [sym_list] = STATE(4049), + [sym_tuple] = STATE(4049), + [sym_bitstring] = STATE(4049), + [sym_map] = STATE(4049), + [sym_unary_operator] = STATE(4049), + [sym_binary_operator] = STATE(4049), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(4049), + [sym_call] = STATE(4049), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(4049), + [sym_anonymous_function] = STATE(4049), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(15), - [sym_unused_identifier] = ACTIONS(17), - [anon_sym___MODULE__] = ACTIONS(19), - [anon_sym___DIR__] = ACTIONS(19), - [anon_sym___ENV__] = ACTIONS(19), - [anon_sym___CALLER__] = ACTIONS(19), - [anon_sym___STACKTRACE__] = ACTIONS(19), - [sym_alias] = ACTIONS(1591), - [sym_integer] = ACTIONS(1591), - [sym_float] = ACTIONS(1591), - [sym_char] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_nil] = ACTIONS(25), - [sym_atom] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(27), - [anon_sym_SQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1659), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1535), + [sym_integer] = ACTIONS(1535), + [sym_float] = ACTIONS(1535), + [sym_char] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(41), - [anon_sym_LT_LT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(45), - [anon_sym_AMP] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(49), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_CARET] = ACTIONS(49), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), - [anon_sym_not] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(51), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -76490,72 +77128,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(53), + [anon_sym_fn] = ACTIONS(978), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(55), + [sym__before_unary_op] = ACTIONS(1363), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(59), + [sym__quoted_atom_start] = ACTIONS(982), }, [397] = { - [sym__expression] = STATE(1833), - [sym_block] = STATE(1833), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(1833), - [sym_nil] = STATE(1833), - [sym__atom] = STATE(1833), - [sym_quoted_atom] = STATE(1833), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(1833), - [sym_charlist] = STATE(1833), - [sym_sigil] = STATE(1833), - [sym_list] = STATE(1833), - [sym_tuple] = STATE(1833), - [sym_bitstring] = STATE(1833), - [sym_map] = STATE(1833), - [sym_unary_operator] = STATE(1833), - [sym__capture_expression] = STATE(1625), - [sym_binary_operator] = STATE(1833), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(1833), - [sym_call] = STATE(1833), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(1833), - [sym_anonymous_function] = STATE(1833), + [sym__expression] = STATE(3985), + [sym_block] = STATE(3985), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(3985), + [sym_nil] = STATE(3985), + [sym__atom] = STATE(3985), + [sym_quoted_atom] = STATE(3985), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(3985), + [sym_charlist] = STATE(3985), + [sym_sigil] = STATE(3985), + [sym_list] = STATE(3985), + [sym_tuple] = STATE(3985), + [sym_bitstring] = STATE(3985), + [sym_map] = STATE(3985), + [sym_unary_operator] = STATE(3985), + [sym__capture_expression] = STATE(1822), + [sym_binary_operator] = STATE(3985), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(3985), + [sym_call] = STATE(3985), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(3985), + [sym_anonymous_function] = STATE(3985), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1629), - [aux_sym_identifier_token1] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(944), - [anon_sym___MODULE__] = ACTIONS(71), - [anon_sym___DIR__] = ACTIONS(71), - [anon_sym___ENV__] = ACTIONS(71), - [anon_sym___CALLER__] = ACTIONS(71), - [anon_sym___STACKTRACE__] = ACTIONS(71), - [sym_alias] = ACTIONS(1635), - [sym_integer] = ACTIONS(1633), - [sym_float] = ACTIONS(1635), - [sym_char] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1543), + [aux_sym_identifier_token1] = ACTIONS(1437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1437), + [sym_unused_identifier] = ACTIONS(1439), + [anon_sym___MODULE__] = ACTIONS(1441), + [anon_sym___DIR__] = ACTIONS(1441), + [anon_sym___ENV__] = ACTIONS(1441), + [anon_sym___CALLER__] = ACTIONS(1441), + [anon_sym___STACKTRACE__] = ACTIONS(1441), + [sym_alias] = ACTIONS(1661), + [sym_integer] = ACTIONS(1663), + [sym_float] = ACTIONS(1661), + [sym_char] = ACTIONS(1661), [anon_sym_true] = ACTIONS(948), [anon_sym_false] = ACTIONS(948), [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1635), + [sym_atom] = ACTIONS(1661), [anon_sym_DQUOTE] = ACTIONS(952), [anon_sym_SQUOTE] = ACTIONS(954), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), @@ -76566,17 +77204,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_TILDE] = ACTIONS(1445), [anon_sym_LT_LT] = ACTIONS(966), [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(972), - [anon_sym_CARET] = ACTIONS(972), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), - [anon_sym_not] = ACTIONS(972), - [anon_sym_AT] = ACTIONS(974), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1451), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), + [anon_sym_not] = ACTIONS(1451), + [anon_sym_AT] = ACTIONS(1453), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -76620,194 +77258,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(980), + [sym__before_unary_op] = ACTIONS(1455), [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(982), }, [398] = { - [sym__expression] = STATE(2967), - [sym_block] = STATE(2967), - [sym__identifier] = STATE(63), - [sym_identifier] = STATE(63), - [sym_special_identifier] = STATE(63), - [sym_boolean] = STATE(2967), - [sym_nil] = STATE(2967), - [sym__atom] = STATE(2967), - [sym_quoted_atom] = STATE(2967), - [sym__quoted_i_double] = STATE(2988), - [sym__quoted_i_single] = STATE(2987), - [sym__quoted_i_heredoc_single] = STATE(2987), - [sym__quoted_i_heredoc_double] = STATE(2988), - [sym_string] = STATE(2967), - [sym_charlist] = STATE(2967), - [sym_sigil] = STATE(2967), - [sym_list] = STATE(2967), - [sym_tuple] = STATE(2967), - [sym_bitstring] = STATE(2967), - [sym_map] = STATE(2967), - [sym_unary_operator] = STATE(2967), - [sym__capture_expression] = STATE(2960), - [sym_binary_operator] = STATE(2967), - [sym_operator_identifier] = STATE(5020), - [sym_dot] = STATE(2967), - [sym_call] = STATE(2967), - [sym__call_without_parentheses] = STATE(2986), - [sym__call_with_parentheses] = STATE(2985), - [sym__local_call_without_parentheses] = STATE(2984), - [sym__local_call_with_parentheses] = STATE(2047), - [sym__local_call_just_do_block] = STATE(2983), - [sym__remote_call_without_parentheses] = STATE(2982), - [sym__remote_call_with_parentheses] = STATE(2050), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(2052), - [sym__anonymous_dot] = STATE(4887), - [sym__double_call] = STATE(2981), - [sym_access_call] = STATE(2967), - [sym_anonymous_function] = STATE(2967), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1661), - [aux_sym_identifier_token1] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(606), - [sym_unused_identifier] = ACTIONS(608), - [anon_sym___MODULE__] = ACTIONS(610), - [anon_sym___DIR__] = ACTIONS(610), - [anon_sym___ENV__] = ACTIONS(610), - [anon_sym___CALLER__] = ACTIONS(610), - [anon_sym___STACKTRACE__] = ACTIONS(610), - [sym_alias] = ACTIONS(1663), - [sym_integer] = ACTIONS(1665), - [sym_float] = ACTIONS(1663), - [sym_char] = ACTIONS(1663), - [anon_sym_true] = ACTIONS(614), - [anon_sym_false] = ACTIONS(614), - [anon_sym_nil] = ACTIONS(616), - [sym_atom] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(618), - [anon_sym_SQUOTE] = ACTIONS(620), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(624), - [anon_sym_LBRACE] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(630), - [anon_sym_LT_LT] = ACTIONS(634), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_AMP] = ACTIONS(638), - [anon_sym_PLUS] = ACTIONS(640), - [anon_sym_DASH] = ACTIONS(640), - [anon_sym_BANG] = ACTIONS(640), - [anon_sym_CARET] = ACTIONS(640), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(640), - [anon_sym_not] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(642), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(646), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(652), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(654), - }, - [399] = { - [sym__expression] = STATE(3485), - [sym_block] = STATE(3485), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3485), - [sym_nil] = STATE(3485), - [sym__atom] = STATE(3485), - [sym_quoted_atom] = STATE(3485), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3485), - [sym_charlist] = STATE(3485), - [sym_sigil] = STATE(3485), - [sym_list] = STATE(3485), - [sym_tuple] = STATE(3485), - [sym_bitstring] = STATE(3485), - [sym_map] = STATE(3485), - [sym_unary_operator] = STATE(3485), - [sym_binary_operator] = STATE(3485), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3485), - [sym_call] = STATE(3485), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3485), - [sym_anonymous_function] = STATE(3485), + [sym__expression] = STATE(4049), + [sym_block] = STATE(4049), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(4049), + [sym_nil] = STATE(4049), + [sym__atom] = STATE(4049), + [sym_quoted_atom] = STATE(4049), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(4049), + [sym_charlist] = STATE(4049), + [sym_sigil] = STATE(4049), + [sym_list] = STATE(4049), + [sym_tuple] = STATE(4049), + [sym_bitstring] = STATE(4049), + [sym_map] = STATE(4049), + [sym_unary_operator] = STATE(4049), + [sym_binary_operator] = STATE(4049), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(4049), + [sym_call] = STATE(4049), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(4049), + [sym_anonymous_function] = STATE(4049), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_RPAREN] = ACTIONS(1667), + [anon_sym_RPAREN] = ACTIONS(1665), [aux_sym_identifier_token1] = ACTIONS(704), [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), + [sym_unused_identifier] = ACTIONS(1349), [anon_sym___MODULE__] = ACTIONS(708), [anon_sym___DIR__] = ACTIONS(708), [anon_sym___ENV__] = ACTIONS(708), [anon_sym___CALLER__] = ACTIONS(708), [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1555), - [sym_integer] = ACTIONS(1555), - [sym_float] = ACTIONS(1555), - [sym_char] = ACTIONS(1555), + [sym_alias] = ACTIONS(1535), + [sym_integer] = ACTIONS(1535), + [sym_float] = ACTIONS(1535), + [sym_char] = ACTIONS(1535), [anon_sym_true] = ACTIONS(948), [anon_sym_false] = ACTIONS(948), [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1555), + [sym_atom] = ACTIONS(1535), [anon_sym_DQUOTE] = ACTIONS(952), [anon_sym_SQUOTE] = ACTIONS(954), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), @@ -76818,17 +77330,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), + [anon_sym_TILDE] = ACTIONS(1353), [anon_sym_LT_LT] = ACTIONS(966), [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -76872,68 +77384,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), + [sym__before_unary_op] = ACTIONS(1363), [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(982), }, - [400] = { - [sym__expression] = STATE(3485), - [sym_block] = STATE(3485), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3485), - [sym_nil] = STATE(3485), - [sym__atom] = STATE(3485), - [sym_quoted_atom] = STATE(3485), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3485), - [sym_charlist] = STATE(3485), - [sym_sigil] = STATE(3485), - [sym_list] = STATE(3485), - [sym_tuple] = STATE(3485), - [sym_bitstring] = STATE(3485), - [sym_map] = STATE(3485), - [sym_unary_operator] = STATE(3485), - [sym_binary_operator] = STATE(3485), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3485), - [sym_call] = STATE(3485), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3485), - [sym_anonymous_function] = STATE(3485), + [399] = { + [sym__expression] = STATE(4159), + [sym_block] = STATE(4159), + [sym__identifier] = STATE(103), + [sym_identifier] = STATE(103), + [sym_special_identifier] = STATE(103), + [sym_boolean] = STATE(4159), + [sym_nil] = STATE(4159), + [sym__atom] = STATE(4155), + [sym_quoted_atom] = STATE(4155), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4159), + [sym_charlist] = STATE(4159), + [sym_sigil] = STATE(4159), + [sym_list] = STATE(4159), + [sym_tuple] = STATE(4159), + [sym_bitstring] = STATE(4159), + [sym_map] = STATE(4159), + [sym_struct] = STATE(5630), + [sym_unary_operator] = STATE(4155), + [sym_binary_operator] = STATE(4159), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4155), + [sym_call] = STATE(4159), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(4151), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4159), + [sym_anonymous_function] = STATE(4159), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_RPAREN] = ACTIONS(1669), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1555), - [sym_integer] = ACTIONS(1555), - [sym_float] = ACTIONS(1555), - [sym_char] = ACTIONS(1555), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1567), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1569), + [sym_integer] = ACTIONS(1571), + [sym_float] = ACTIONS(1571), + [sym_char] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1507), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AT] = ACTIONS(1509), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1511), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [400] = { + [sym__expression] = STATE(3985), + [sym_block] = STATE(3985), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(3985), + [sym_nil] = STATE(3985), + [sym__atom] = STATE(3985), + [sym_quoted_atom] = STATE(3985), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(3985), + [sym_charlist] = STATE(3985), + [sym_sigil] = STATE(3985), + [sym_list] = STATE(3985), + [sym_tuple] = STATE(3985), + [sym_bitstring] = STATE(3985), + [sym_map] = STATE(3985), + [sym_unary_operator] = STATE(3985), + [sym__capture_expression] = STATE(1789), + [sym_binary_operator] = STATE(3985), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(3985), + [sym_call] = STATE(3985), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(3985), + [sym_anonymous_function] = STATE(3985), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1543), + [aux_sym_identifier_token1] = ACTIONS(1437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1437), + [sym_unused_identifier] = ACTIONS(1439), + [anon_sym___MODULE__] = ACTIONS(1441), + [anon_sym___DIR__] = ACTIONS(1441), + [anon_sym___ENV__] = ACTIONS(1441), + [anon_sym___CALLER__] = ACTIONS(1441), + [anon_sym___STACKTRACE__] = ACTIONS(1441), + [sym_alias] = ACTIONS(1661), + [sym_integer] = ACTIONS(1547), + [sym_float] = ACTIONS(1661), + [sym_char] = ACTIONS(1661), [anon_sym_true] = ACTIONS(948), [anon_sym_false] = ACTIONS(948), [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1555), + [sym_atom] = ACTIONS(1661), [anon_sym_DQUOTE] = ACTIONS(952), [anon_sym_SQUOTE] = ACTIONS(954), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), @@ -76943,18 +77581,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1445), [anon_sym_LT_LT] = ACTIONS(966), [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1451), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), + [anon_sym_not] = ACTIONS(1451), + [anon_sym_AT] = ACTIONS(1453), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -76998,89 +77636,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), + [sym__before_unary_op] = ACTIONS(1455), [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(982), }, [401] = { - [sym__expression] = STATE(2967), - [sym_block] = STATE(2967), - [sym__identifier] = STATE(63), - [sym_identifier] = STATE(63), - [sym_special_identifier] = STATE(63), - [sym_boolean] = STATE(2967), - [sym_nil] = STATE(2967), - [sym__atom] = STATE(2967), - [sym_quoted_atom] = STATE(2967), - [sym__quoted_i_double] = STATE(2988), - [sym__quoted_i_single] = STATE(2987), - [sym__quoted_i_heredoc_single] = STATE(2987), - [sym__quoted_i_heredoc_double] = STATE(2988), - [sym_string] = STATE(2967), - [sym_charlist] = STATE(2967), - [sym_sigil] = STATE(2967), - [sym_list] = STATE(2967), - [sym_tuple] = STATE(2967), - [sym_bitstring] = STATE(2967), - [sym_map] = STATE(2967), - [sym_unary_operator] = STATE(2967), - [sym__capture_expression] = STATE(2966), - [sym_binary_operator] = STATE(2967), - [sym_operator_identifier] = STATE(5020), - [sym_dot] = STATE(2967), - [sym_call] = STATE(2967), - [sym__call_without_parentheses] = STATE(2986), - [sym__call_with_parentheses] = STATE(2985), - [sym__local_call_without_parentheses] = STATE(2984), - [sym__local_call_with_parentheses] = STATE(2047), - [sym__local_call_just_do_block] = STATE(2983), - [sym__remote_call_without_parentheses] = STATE(2982), - [sym__remote_call_with_parentheses] = STATE(2050), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(2052), - [sym__anonymous_dot] = STATE(4887), - [sym__double_call] = STATE(2981), - [sym_access_call] = STATE(2967), - [sym_anonymous_function] = STATE(2967), + [sym__expression] = STATE(2877), + [sym_block] = STATE(2877), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(2877), + [sym_nil] = STATE(2877), + [sym__atom] = STATE(2877), + [sym_quoted_atom] = STATE(2877), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(2877), + [sym_charlist] = STATE(2877), + [sym_sigil] = STATE(2877), + [sym_list] = STATE(2877), + [sym_tuple] = STATE(2877), + [sym_bitstring] = STATE(2877), + [sym_map] = STATE(2877), + [sym_unary_operator] = STATE(2877), + [sym__capture_expression] = STATE(1501), + [sym_binary_operator] = STATE(2877), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(2877), + [sym_call] = STATE(2877), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(2877), + [sym_anonymous_function] = STATE(2877), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1661), - [aux_sym_identifier_token1] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(606), - [sym_unused_identifier] = ACTIONS(608), - [anon_sym___MODULE__] = ACTIONS(610), - [anon_sym___DIR__] = ACTIONS(610), - [anon_sym___ENV__] = ACTIONS(610), - [anon_sym___CALLER__] = ACTIONS(610), - [anon_sym___STACKTRACE__] = ACTIONS(610), - [sym_alias] = ACTIONS(1663), - [sym_integer] = ACTIONS(1671), - [sym_float] = ACTIONS(1663), - [sym_char] = ACTIONS(1663), - [anon_sym_true] = ACTIONS(614), - [anon_sym_false] = ACTIONS(614), - [anon_sym_nil] = ACTIONS(616), - [sym_atom] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(618), - [anon_sym_SQUOTE] = ACTIONS(620), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(624), - [anon_sym_LBRACE] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), + [anon_sym_LPAREN] = ACTIONS(1669), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(482), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), + [sym_alias] = ACTIONS(1671), + [sym_integer] = ACTIONS(1673), + [sym_float] = ACTIONS(1671), + [sym_char] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1671), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(630), - [anon_sym_LT_LT] = ACTIONS(634), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_AMP] = ACTIONS(638), - [anon_sym_PLUS] = ACTIONS(640), - [anon_sym_DASH] = ACTIONS(640), - [anon_sym_BANG] = ACTIONS(640), - [anon_sym_CARET] = ACTIONS(640), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(640), - [anon_sym_not] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(642), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(486), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(495), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_CARET] = ACTIONS(495), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(495), + [anon_sym_not] = ACTIONS(495), + [anon_sym_AT] = ACTIONS(497), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -77120,198 +77758,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(646), + [anon_sym_fn] = ACTIONS(291), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(652), + [sym__before_unary_op] = ACTIONS(499), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(654), + [sym__quoted_atom_start] = ACTIONS(300), }, [402] = { - [sym__expression] = STATE(3485), - [sym_block] = STATE(3485), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3485), - [sym_nil] = STATE(3485), - [sym__atom] = STATE(3485), - [sym_quoted_atom] = STATE(3485), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3485), - [sym_charlist] = STATE(3485), - [sym_sigil] = STATE(3485), - [sym_list] = STATE(3485), - [sym_tuple] = STATE(3485), - [sym_bitstring] = STATE(3485), - [sym_map] = STATE(3485), - [sym_unary_operator] = STATE(3485), - [sym_binary_operator] = STATE(3485), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3485), - [sym_call] = STATE(3485), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3485), - [sym_anonymous_function] = STATE(3485), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_RPAREN] = ACTIONS(1673), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1555), - [sym_integer] = ACTIONS(1555), - [sym_float] = ACTIONS(1555), - [sym_char] = ACTIONS(1555), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1555), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [403] = { - [sym__expression] = STATE(3485), - [sym_block] = STATE(3485), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3485), - [sym_nil] = STATE(3485), - [sym__atom] = STATE(3485), - [sym_quoted_atom] = STATE(3485), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3485), - [sym_charlist] = STATE(3485), - [sym_sigil] = STATE(3485), - [sym_list] = STATE(3485), - [sym_tuple] = STATE(3485), - [sym_bitstring] = STATE(3485), - [sym_map] = STATE(3485), - [sym_unary_operator] = STATE(3485), - [sym_binary_operator] = STATE(3485), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3485), - [sym_call] = STATE(3485), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3485), - [sym_anonymous_function] = STATE(3485), + [sym__expression] = STATE(4049), + [sym_block] = STATE(4049), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(4049), + [sym_nil] = STATE(4049), + [sym__atom] = STATE(4049), + [sym_quoted_atom] = STATE(4049), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(4049), + [sym_charlist] = STATE(4049), + [sym_sigil] = STATE(4049), + [sym_list] = STATE(4049), + [sym_tuple] = STATE(4049), + [sym_bitstring] = STATE(4049), + [sym_map] = STATE(4049), + [sym_unary_operator] = STATE(4049), + [sym_binary_operator] = STATE(4049), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(4049), + [sym_call] = STATE(4049), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(4049), + [sym_anonymous_function] = STATE(4049), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), [anon_sym_RPAREN] = ACTIONS(1675), [aux_sym_identifier_token1] = ACTIONS(704), [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), + [sym_unused_identifier] = ACTIONS(1349), [anon_sym___MODULE__] = ACTIONS(708), [anon_sym___DIR__] = ACTIONS(708), [anon_sym___ENV__] = ACTIONS(708), [anon_sym___CALLER__] = ACTIONS(708), [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1555), - [sym_integer] = ACTIONS(1555), - [sym_float] = ACTIONS(1555), - [sym_char] = ACTIONS(1555), + [sym_alias] = ACTIONS(1535), + [sym_integer] = ACTIONS(1535), + [sym_float] = ACTIONS(1535), + [sym_char] = ACTIONS(1535), [anon_sym_true] = ACTIONS(948), [anon_sym_false] = ACTIONS(948), [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1555), + [sym_atom] = ACTIONS(1535), [anon_sym_DQUOTE] = ACTIONS(952), [anon_sym_SQUOTE] = ACTIONS(954), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), @@ -77322,17 +77834,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), + [anon_sym_TILDE] = ACTIONS(1353), [anon_sym_LT_LT] = ACTIONS(966), [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -77376,89 +77888,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), + [sym__before_unary_op] = ACTIONS(1363), [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(982), }, - [404] = { - [sym__expression] = STATE(2581), - [sym_block] = STATE(2581), - [sym__identifier] = STATE(57), - [sym_identifier] = STATE(57), - [sym_special_identifier] = STATE(57), - [sym_boolean] = STATE(2581), - [sym_nil] = STATE(2581), - [sym__atom] = STATE(2581), - [sym_quoted_atom] = STATE(2581), - [sym__quoted_i_double] = STATE(3146), - [sym__quoted_i_single] = STATE(3147), - [sym__quoted_i_heredoc_single] = STATE(3147), - [sym__quoted_i_heredoc_double] = STATE(3146), - [sym_string] = STATE(2581), - [sym_charlist] = STATE(2581), - [sym_sigil] = STATE(2581), - [sym_list] = STATE(2581), - [sym_tuple] = STATE(2581), - [sym_bitstring] = STATE(2581), - [sym_map] = STATE(2581), - [sym_unary_operator] = STATE(2581), - [sym_binary_operator] = STATE(2581), - [sym_operator_identifier] = STATE(5049), - [sym_dot] = STATE(2581), - [sym_call] = STATE(2581), - [sym__call_without_parentheses] = STATE(3175), - [sym__call_with_parentheses] = STATE(3177), - [sym__local_call_without_parentheses] = STATE(3178), - [sym__local_call_with_parentheses] = STATE(2550), - [sym__local_call_just_do_block] = STATE(3183), - [sym__remote_call_without_parentheses] = STATE(3200), - [sym__remote_call_with_parentheses] = STATE(2583), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(2582), - [sym__anonymous_dot] = STATE(4866), - [sym__double_call] = STATE(3202), - [sym_access_call] = STATE(2581), - [sym_anonymous_function] = STATE(2581), - [ts_builtin_sym_end] = ACTIONS(1677), + [403] = { + [sym__expression] = STATE(1522), + [sym_block] = STATE(1522), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1522), + [sym_nil] = STATE(1522), + [sym__atom] = STATE(1522), + [sym_quoted_atom] = STATE(1522), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(1522), + [sym_charlist] = STATE(1522), + [sym_sigil] = STATE(1522), + [sym_list] = STATE(1522), + [sym_tuple] = STATE(1522), + [sym_bitstring] = STATE(1522), + [sym_map] = STATE(1522), + [sym_unary_operator] = STATE(1522), + [sym__capture_expression] = STATE(1447), + [sym_binary_operator] = STATE(1522), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(1522), + [sym_call] = STATE(1522), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(1522), + [sym_anonymous_function] = STATE(1522), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(15), - [sym_unused_identifier] = ACTIONS(17), - [anon_sym___MODULE__] = ACTIONS(19), - [anon_sym___DIR__] = ACTIONS(19), - [anon_sym___ENV__] = ACTIONS(19), - [anon_sym___CALLER__] = ACTIONS(19), - [anon_sym___STACKTRACE__] = ACTIONS(19), - [sym_alias] = ACTIONS(1679), + [anon_sym_LPAREN] = ACTIONS(1669), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(1677), [sym_integer] = ACTIONS(1679), - [sym_float] = ACTIONS(1679), - [sym_char] = ACTIONS(1679), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_nil] = ACTIONS(25), - [sym_atom] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(27), - [anon_sym_SQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), + [sym_float] = ACTIONS(1677), + [sym_char] = ACTIONS(1677), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1677), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(41), - [anon_sym_LT_LT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(45), - [anon_sym_AMP] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(49), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_CARET] = ACTIONS(49), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), - [anon_sym_not] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(51), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -77498,93 +78010,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(53), + [anon_sym_fn] = ACTIONS(291), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(55), + [sym__before_unary_op] = ACTIONS(295), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(59), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [404] = { + [sym__expression] = STATE(2877), + [sym_block] = STATE(2877), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(2877), + [sym_nil] = STATE(2877), + [sym__atom] = STATE(2877), + [sym_quoted_atom] = STATE(2877), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(2877), + [sym_charlist] = STATE(2877), + [sym_sigil] = STATE(2877), + [sym_list] = STATE(2877), + [sym_tuple] = STATE(2877), + [sym_bitstring] = STATE(2877), + [sym_map] = STATE(2877), + [sym_unary_operator] = STATE(2877), + [sym__capture_expression] = STATE(1447), + [sym_binary_operator] = STATE(2877), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(2877), + [sym_call] = STATE(2877), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(2877), + [sym_anonymous_function] = STATE(2877), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1669), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(482), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), + [sym_alias] = ACTIONS(1671), + [sym_integer] = ACTIONS(1679), + [sym_float] = ACTIONS(1671), + [sym_char] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1671), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(486), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(495), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_CARET] = ACTIONS(495), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(495), + [anon_sym_not] = ACTIONS(495), + [anon_sym_AT] = ACTIONS(497), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(499), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), }, [405] = { - [sym__expression] = STATE(2010), - [sym_block] = STATE(2010), - [sym__identifier] = STATE(34), - [sym_identifier] = STATE(34), - [sym_special_identifier] = STATE(34), - [sym_boolean] = STATE(2010), - [sym_nil] = STATE(2010), - [sym__atom] = STATE(2010), - [sym_quoted_atom] = STATE(2010), - [sym__quoted_i_double] = STATE(1866), - [sym__quoted_i_single] = STATE(1867), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(2010), - [sym_charlist] = STATE(2010), - [sym_sigil] = STATE(2010), - [sym_list] = STATE(2010), - [sym_tuple] = STATE(2010), - [sym_bitstring] = STATE(2010), - [sym_map] = STATE(2010), - [sym_unary_operator] = STATE(2010), - [sym__capture_expression] = STATE(1927), - [sym_binary_operator] = STATE(2010), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(2010), - [sym_call] = STATE(2010), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(36), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(2010), - [sym_anonymous_function] = STATE(2010), + [sym__expression] = STATE(4049), + [sym_block] = STATE(4049), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(4049), + [sym_nil] = STATE(4049), + [sym__atom] = STATE(4049), + [sym_quoted_atom] = STATE(4049), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(4049), + [sym_charlist] = STATE(4049), + [sym_sigil] = STATE(4049), + [sym_list] = STATE(4049), + [sym_tuple] = STATE(4049), + [sym_bitstring] = STATE(4049), + [sym_map] = STATE(4049), + [sym_unary_operator] = STATE(4049), + [sym_binary_operator] = STATE(4049), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(4049), + [sym_call] = STATE(4049), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(4049), + [sym_anonymous_function] = STATE(4049), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1681), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(361), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(1683), - [sym_integer] = ACTIONS(1685), - [sym_float] = ACTIONS(1683), - [sym_char] = ACTIONS(1683), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), - [sym_atom] = ACTIONS(1683), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1681), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1535), + [sym_integer] = ACTIONS(1535), + [sym_float] = ACTIONS(1535), + [sym_char] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(396), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(396), - [anon_sym_not] = ACTIONS(396), - [anon_sym_AT] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -77624,56 +78262,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), + [anon_sym_fn] = ACTIONS(978), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(404), + [sym__before_unary_op] = ACTIONS(1363), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), + [sym__quoted_atom_start] = ACTIONS(982), }, [406] = { - [sym__expression] = STATE(1465), - [sym_block] = STATE(1465), - [sym__identifier] = STATE(14), - [sym_identifier] = STATE(14), - [sym_special_identifier] = STATE(14), - [sym_boolean] = STATE(1465), - [sym_nil] = STATE(1465), - [sym__atom] = STATE(1465), - [sym_quoted_atom] = STATE(1465), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(1465), - [sym_charlist] = STATE(1465), - [sym_sigil] = STATE(1465), - [sym_list] = STATE(1465), - [sym_tuple] = STATE(1465), - [sym_bitstring] = STATE(1465), - [sym_map] = STATE(1465), - [sym_unary_operator] = STATE(1465), - [sym__capture_expression] = STATE(1392), - [sym_binary_operator] = STATE(1465), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(1465), - [sym_call] = STATE(1465), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(1465), - [sym_anonymous_function] = STATE(1465), + [sym__expression] = STATE(1428), + [sym_block] = STATE(1428), + [sym__identifier] = STATE(18), + [sym_identifier] = STATE(18), + [sym_special_identifier] = STATE(18), + [sym_boolean] = STATE(1428), + [sym_nil] = STATE(1428), + [sym__atom] = STATE(1428), + [sym_quoted_atom] = STATE(1428), + [sym__quoted_i_double] = STATE(1250), + [sym__quoted_i_single] = STATE(1249), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(1428), + [sym_charlist] = STATE(1428), + [sym_sigil] = STATE(1428), + [sym_list] = STATE(1428), + [sym_tuple] = STATE(1428), + [sym_bitstring] = STATE(1428), + [sym_map] = STATE(1428), + [sym_unary_operator] = STATE(1428), + [sym__capture_expression] = STATE(1140), + [sym_binary_operator] = STATE(1428), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(1428), + [sym_call] = STATE(1428), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(1428), + [sym_anonymous_function] = STATE(1428), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1683), [aux_sym_identifier_token1] = ACTIONS(195), [anon_sym_DOT_DOT_DOT] = ACTIONS(195), [sym_unused_identifier] = ACTIONS(197), @@ -77682,14 +78320,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ENV__] = ACTIONS(199), [anon_sym___CALLER__] = ACTIONS(199), [anon_sym___STACKTRACE__] = ACTIONS(199), - [sym_alias] = ACTIONS(1535), - [sym_integer] = ACTIONS(1587), - [sym_float] = ACTIONS(1535), - [sym_char] = ACTIONS(1535), + [sym_alias] = ACTIONS(1685), + [sym_integer] = ACTIONS(1687), + [sym_float] = ACTIONS(1685), + [sym_char] = ACTIONS(1685), [anon_sym_true] = ACTIONS(203), [anon_sym_false] = ACTIONS(203), [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1535), + [sym_atom] = ACTIONS(1685), [anon_sym_DQUOTE] = ACTIONS(207), [anon_sym_SQUOTE] = ACTIONS(209), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), @@ -77700,17 +78338,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(222), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(230), - [anon_sym_PLUS] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_CARET] = ACTIONS(235), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(235), - [anon_sym_not] = ACTIONS(235), - [anon_sym_AT] = ACTIONS(237), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -77750,3078 +78388,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), + [anon_sym_fn] = ACTIONS(235), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(243), + [sym__before_unary_op] = ACTIONS(241), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), + [sym__quoted_atom_start] = ACTIONS(243), }, [407] = { - [sym__expression] = STATE(3485), - [sym_block] = STATE(3485), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3485), - [sym_nil] = STATE(3485), - [sym__atom] = STATE(3485), - [sym_quoted_atom] = STATE(3485), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3485), - [sym_charlist] = STATE(3485), - [sym_sigil] = STATE(3485), - [sym_list] = STATE(3485), - [sym_tuple] = STATE(3485), - [sym_bitstring] = STATE(3485), - [sym_map] = STATE(3485), - [sym_unary_operator] = STATE(3485), - [sym_binary_operator] = STATE(3485), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3485), - [sym_call] = STATE(3485), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3485), - [sym_anonymous_function] = STATE(3485), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_RPAREN] = ACTIONS(1687), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1555), - [sym_integer] = ACTIONS(1555), - [sym_float] = ACTIONS(1555), - [sym_char] = ACTIONS(1555), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1555), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [408] = { - [sym__expression] = STATE(3485), - [sym_block] = STATE(3485), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3485), - [sym_nil] = STATE(3485), - [sym__atom] = STATE(3485), - [sym_quoted_atom] = STATE(3485), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3485), - [sym_charlist] = STATE(3485), - [sym_sigil] = STATE(3485), - [sym_list] = STATE(3485), - [sym_tuple] = STATE(3485), - [sym_bitstring] = STATE(3485), - [sym_map] = STATE(3485), - [sym_unary_operator] = STATE(3485), - [sym_binary_operator] = STATE(3485), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3485), - [sym_call] = STATE(3485), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3485), - [sym_anonymous_function] = STATE(3485), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_RPAREN] = ACTIONS(1689), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1555), - [sym_integer] = ACTIONS(1555), - [sym_float] = ACTIONS(1555), - [sym_char] = ACTIONS(1555), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1555), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [409] = { - [sym__expression] = STATE(3485), - [sym_block] = STATE(3485), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3485), - [sym_nil] = STATE(3485), - [sym__atom] = STATE(3485), - [sym_quoted_atom] = STATE(3485), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3485), - [sym_charlist] = STATE(3485), - [sym_sigil] = STATE(3485), - [sym_list] = STATE(3485), - [sym_tuple] = STATE(3485), - [sym_bitstring] = STATE(3485), - [sym_map] = STATE(3485), - [sym_unary_operator] = STATE(3485), - [sym_binary_operator] = STATE(3485), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3485), - [sym_call] = STATE(3485), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3485), - [sym_anonymous_function] = STATE(3485), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_RPAREN] = ACTIONS(1691), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1555), - [sym_integer] = ACTIONS(1555), - [sym_float] = ACTIONS(1555), - [sym_char] = ACTIONS(1555), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1555), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [410] = { - [sym__expression] = STATE(3224), - [sym_block] = STATE(3224), - [sym__identifier] = STATE(57), - [sym_identifier] = STATE(57), - [sym_special_identifier] = STATE(57), - [sym_boolean] = STATE(3224), - [sym_nil] = STATE(3224), - [sym__atom] = STATE(3224), - [sym_quoted_atom] = STATE(3224), - [sym__quoted_i_double] = STATE(3146), - [sym__quoted_i_single] = STATE(3147), - [sym__quoted_i_heredoc_single] = STATE(3147), - [sym__quoted_i_heredoc_double] = STATE(3146), - [sym_string] = STATE(3224), - [sym_charlist] = STATE(3224), - [sym_sigil] = STATE(3224), - [sym_list] = STATE(3224), - [sym_tuple] = STATE(3224), - [sym_bitstring] = STATE(3224), - [sym_map] = STATE(3224), - [sym_unary_operator] = STATE(3224), - [sym__capture_expression] = STATE(3226), - [sym_binary_operator] = STATE(3224), - [sym_operator_identifier] = STATE(5049), - [sym_dot] = STATE(3224), - [sym_call] = STATE(3224), - [sym__call_without_parentheses] = STATE(3175), - [sym__call_with_parentheses] = STATE(3177), - [sym__local_call_without_parentheses] = STATE(3178), - [sym__local_call_with_parentheses] = STATE(2550), - [sym__local_call_just_do_block] = STATE(3183), - [sym__remote_call_without_parentheses] = STATE(3200), - [sym__remote_call_with_parentheses] = STATE(2583), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(2582), - [sym__anonymous_dot] = STATE(4866), - [sym__double_call] = STATE(3202), - [sym_access_call] = STATE(3224), - [sym_anonymous_function] = STATE(3224), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1611), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(15), - [sym_unused_identifier] = ACTIONS(17), - [anon_sym___MODULE__] = ACTIONS(19), - [anon_sym___DIR__] = ACTIONS(19), - [anon_sym___ENV__] = ACTIONS(19), - [anon_sym___CALLER__] = ACTIONS(19), - [anon_sym___STACKTRACE__] = ACTIONS(19), - [sym_alias] = ACTIONS(1613), - [sym_integer] = ACTIONS(1693), - [sym_float] = ACTIONS(1613), - [sym_char] = ACTIONS(1613), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_nil] = ACTIONS(25), - [sym_atom] = ACTIONS(1613), - [anon_sym_DQUOTE] = ACTIONS(27), - [anon_sym_SQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(41), - [anon_sym_LT_LT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(45), - [anon_sym_AMP] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(49), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_CARET] = ACTIONS(49), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), - [anon_sym_not] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(51), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(53), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(55), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(59), - }, - [411] = { - [sym__expression] = STATE(3485), - [sym_block] = STATE(3485), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3485), - [sym_nil] = STATE(3485), - [sym__atom] = STATE(3485), - [sym_quoted_atom] = STATE(3485), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3485), - [sym_charlist] = STATE(3485), - [sym_sigil] = STATE(3485), - [sym_list] = STATE(3485), - [sym_tuple] = STATE(3485), - [sym_bitstring] = STATE(3485), - [sym_map] = STATE(3485), - [sym_unary_operator] = STATE(3485), - [sym_binary_operator] = STATE(3485), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3485), - [sym_call] = STATE(3485), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3485), - [sym_anonymous_function] = STATE(3485), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_RPAREN] = ACTIONS(1695), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1555), - [sym_integer] = ACTIONS(1555), - [sym_float] = ACTIONS(1555), - [sym_char] = ACTIONS(1555), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1555), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [412] = { - [sym__expression] = STATE(3485), - [sym_block] = STATE(3485), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3485), - [sym_nil] = STATE(3485), - [sym__atom] = STATE(3485), - [sym_quoted_atom] = STATE(3485), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3485), - [sym_charlist] = STATE(3485), - [sym_sigil] = STATE(3485), - [sym_list] = STATE(3485), - [sym_tuple] = STATE(3485), - [sym_bitstring] = STATE(3485), - [sym_map] = STATE(3485), - [sym_unary_operator] = STATE(3485), - [sym_binary_operator] = STATE(3485), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3485), - [sym_call] = STATE(3485), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3485), - [sym_anonymous_function] = STATE(3485), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_RPAREN] = ACTIONS(1697), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1555), - [sym_integer] = ACTIONS(1555), - [sym_float] = ACTIONS(1555), - [sym_char] = ACTIONS(1555), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1555), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [413] = { - [sym__expression] = STATE(2991), - [sym_block] = STATE(2991), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(2991), - [sym_nil] = STATE(2991), - [sym__atom] = STATE(2991), - [sym_quoted_atom] = STATE(2991), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(2991), - [sym_charlist] = STATE(2991), - [sym_sigil] = STATE(2991), - [sym_list] = STATE(2991), - [sym_tuple] = STATE(2991), - [sym_bitstring] = STATE(2991), - [sym_map] = STATE(2991), - [sym_unary_operator] = STATE(2991), - [sym__capture_expression] = STATE(2558), - [sym_binary_operator] = STATE(2991), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(2991), - [sym_call] = STATE(2991), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(2991), - [sym_anonymous_function] = STATE(2991), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1561), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1699), - [sym_integer] = ACTIONS(1597), - [sym_float] = ACTIONS(1699), - [sym_char] = ACTIONS(1699), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1699), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [414] = { - [sym__expression] = STATE(3552), - [sym_block] = STATE(3552), - [sym__identifier] = STATE(111), - [sym_identifier] = STATE(111), - [sym_special_identifier] = STATE(111), - [sym_boolean] = STATE(3552), - [sym_nil] = STATE(3552), - [sym__atom] = STATE(3548), - [sym_quoted_atom] = STATE(3548), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3552), - [sym_charlist] = STATE(3552), - [sym_sigil] = STATE(3552), - [sym_list] = STATE(3552), - [sym_tuple] = STATE(3552), - [sym_bitstring] = STATE(3552), - [sym_map] = STATE(3552), - [sym_struct] = STATE(4984), - [sym_unary_operator] = STATE(3548), - [sym_binary_operator] = STATE(3552), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3548), - [sym_call] = STATE(3552), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(3527), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3552), - [sym_anonymous_function] = STATE(3552), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1539), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1541), - [sym_integer] = ACTIONS(1543), - [sym_float] = ACTIONS(1543), - [sym_char] = ACTIONS(1543), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1541), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1517), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1517), - [anon_sym_not] = ACTIONS(1517), - [anon_sym_AT] = ACTIONS(1519), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1521), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [415] = { - [sym__expression] = STATE(3485), - [sym_block] = STATE(3485), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3485), - [sym_nil] = STATE(3485), - [sym__atom] = STATE(3485), - [sym_quoted_atom] = STATE(3485), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3485), - [sym_charlist] = STATE(3485), - [sym_sigil] = STATE(3485), - [sym_list] = STATE(3485), - [sym_tuple] = STATE(3485), - [sym_bitstring] = STATE(3485), - [sym_map] = STATE(3485), - [sym_unary_operator] = STATE(3485), - [sym_binary_operator] = STATE(3485), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3485), - [sym_call] = STATE(3485), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3485), - [sym_anonymous_function] = STATE(3485), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_RPAREN] = ACTIONS(1703), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1555), - [sym_integer] = ACTIONS(1555), - [sym_float] = ACTIONS(1555), - [sym_char] = ACTIONS(1555), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1555), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [416] = { - [sym__expression] = STATE(2010), - [sym_block] = STATE(2010), - [sym__identifier] = STATE(34), - [sym_identifier] = STATE(34), - [sym_special_identifier] = STATE(34), - [sym_boolean] = STATE(2010), - [sym_nil] = STATE(2010), - [sym__atom] = STATE(2010), - [sym_quoted_atom] = STATE(2010), - [sym__quoted_i_double] = STATE(1866), - [sym__quoted_i_single] = STATE(1867), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(2010), - [sym_charlist] = STATE(2010), - [sym_sigil] = STATE(2010), - [sym_list] = STATE(2010), - [sym_tuple] = STATE(2010), - [sym_bitstring] = STATE(2010), - [sym_map] = STATE(2010), - [sym_unary_operator] = STATE(2010), - [sym__capture_expression] = STATE(1895), - [sym_binary_operator] = STATE(2010), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(2010), - [sym_call] = STATE(2010), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(36), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(2010), - [sym_anonymous_function] = STATE(2010), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1681), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(361), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(1683), - [sym_integer] = ACTIONS(1705), - [sym_float] = ACTIONS(1683), - [sym_char] = ACTIONS(1683), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), - [sym_atom] = ACTIONS(1683), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(396), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(396), - [anon_sym_not] = ACTIONS(396), - [anon_sym_AT] = ACTIONS(398), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(404), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), - }, - [417] = { - [sym__expression] = STATE(2421), - [sym_block] = STATE(2421), - [sym__identifier] = STATE(47), - [sym_identifier] = STATE(47), - [sym_special_identifier] = STATE(47), - [sym_boolean] = STATE(2421), - [sym_nil] = STATE(2421), - [sym__atom] = STATE(2421), - [sym_quoted_atom] = STATE(2421), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2421), - [sym_charlist] = STATE(2421), - [sym_sigil] = STATE(2421), - [sym_list] = STATE(2421), - [sym_tuple] = STATE(2421), - [sym_bitstring] = STATE(2421), - [sym_map] = STATE(2421), - [sym_unary_operator] = STATE(2421), - [sym__capture_expression] = STATE(1392), - [sym_binary_operator] = STATE(2421), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2421), - [sym_call] = STATE(2421), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(41), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2421), - [sym_anonymous_function] = STATE(2421), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1533), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(438), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(1603), - [sym_integer] = ACTIONS(1587), - [sym_float] = ACTIONS(1603), - [sym_char] = ACTIONS(1603), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1603), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(448), - [anon_sym_PLUS] = ACTIONS(450), - [anon_sym_DASH] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(450), - [anon_sym_CARET] = ACTIONS(450), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), - [anon_sym_not] = ACTIONS(450), - [anon_sym_AT] = ACTIONS(452), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(454), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [418] = { - [sym__expression] = STATE(3502), - [sym_block] = STATE(3502), - [sym__identifier] = STATE(72), - [sym_identifier] = STATE(72), - [sym_special_identifier] = STATE(72), - [sym_boolean] = STATE(3502), - [sym_nil] = STATE(3502), - [sym__atom] = STATE(3502), - [sym_quoted_atom] = STATE(3502), - [sym__quoted_i_double] = STATE(3516), - [sym__quoted_i_single] = STATE(3518), - [sym__quoted_i_heredoc_single] = STATE(3518), - [sym__quoted_i_heredoc_double] = STATE(3516), - [sym_string] = STATE(3502), - [sym_charlist] = STATE(3502), - [sym_sigil] = STATE(3502), - [sym_list] = STATE(3502), - [sym_tuple] = STATE(3502), - [sym_bitstring] = STATE(3502), - [sym_map] = STATE(3502), - [sym_unary_operator] = STATE(3502), - [sym__capture_expression] = STATE(3462), - [sym_binary_operator] = STATE(3502), - [sym_operator_identifier] = STATE(4972), - [sym_dot] = STATE(3502), - [sym_call] = STATE(3502), - [sym__call_without_parentheses] = STATE(3517), - [sym__call_with_parentheses] = STATE(3515), - [sym__local_call_without_parentheses] = STATE(3511), - [sym__local_call_with_parentheses] = STATE(3073), - [sym__local_call_just_do_block] = STATE(3510), - [sym__remote_call_without_parentheses] = STATE(3514), - [sym__remote_call_with_parentheses] = STATE(3088), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(3095), - [sym__anonymous_dot] = STATE(4928), - [sym__double_call] = STATE(3499), - [sym_access_call] = STATE(3502), - [sym_anonymous_function] = STATE(3502), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1707), - [aux_sym_identifier_token1] = ACTIONS(1125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1125), - [sym_unused_identifier] = ACTIONS(1127), - [anon_sym___MODULE__] = ACTIONS(1129), - [anon_sym___DIR__] = ACTIONS(1129), - [anon_sym___ENV__] = ACTIONS(1129), - [anon_sym___CALLER__] = ACTIONS(1129), - [anon_sym___STACKTRACE__] = ACTIONS(1129), - [sym_alias] = ACTIONS(1709), - [sym_integer] = ACTIONS(1711), - [sym_float] = ACTIONS(1709), - [sym_char] = ACTIONS(1709), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_nil] = ACTIONS(1135), - [sym_atom] = ACTIONS(1709), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(1147), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1149), - [anon_sym_LT_LT] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1161), - [anon_sym_not] = ACTIONS(1161), - [anon_sym_AT] = ACTIONS(1163), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1165), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1167), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1169), - }, - [419] = { - [sym__expression] = STATE(3485), - [sym_block] = STATE(3485), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3485), - [sym_nil] = STATE(3485), - [sym__atom] = STATE(3485), - [sym_quoted_atom] = STATE(3485), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3485), - [sym_charlist] = STATE(3485), - [sym_sigil] = STATE(3485), - [sym_list] = STATE(3485), - [sym_tuple] = STATE(3485), - [sym_bitstring] = STATE(3485), - [sym_map] = STATE(3485), - [sym_unary_operator] = STATE(3485), - [sym_binary_operator] = STATE(3485), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3485), - [sym_call] = STATE(3485), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3485), - [sym_anonymous_function] = STATE(3485), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_RPAREN] = ACTIONS(1713), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1555), - [sym_integer] = ACTIONS(1555), - [sym_float] = ACTIONS(1555), - [sym_char] = ACTIONS(1555), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1555), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [420] = { - [sym__expression] = STATE(2908), - [sym_block] = STATE(2908), - [sym__identifier] = STATE(68), - [sym_identifier] = STATE(68), - [sym_special_identifier] = STATE(68), - [sym_boolean] = STATE(2908), - [sym_nil] = STATE(2908), - [sym__atom] = STATE(2908), - [sym_quoted_atom] = STATE(2908), - [sym__quoted_i_double] = STATE(1866), - [sym__quoted_i_single] = STATE(1867), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(2908), - [sym_charlist] = STATE(2908), - [sym_sigil] = STATE(2908), - [sym_list] = STATE(2908), - [sym_tuple] = STATE(2908), - [sym_bitstring] = STATE(2908), - [sym_map] = STATE(2908), - [sym_unary_operator] = STATE(2908), - [sym__capture_expression] = STATE(1927), - [sym_binary_operator] = STATE(2908), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(2908), - [sym_call] = STATE(2908), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(2908), - [sym_anonymous_function] = STATE(2908), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1681), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(662), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(1715), - [sym_integer] = ACTIONS(1685), - [sym_float] = ACTIONS(1715), - [sym_char] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), - [sym_atom] = ACTIONS(1715), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(670), - [anon_sym_DASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(670), - [anon_sym_CARET] = ACTIONS(670), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(670), - [anon_sym_not] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(672), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(674), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), - }, - [421] = { - [sym__expression] = STATE(2991), - [sym_block] = STATE(2991), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(2991), - [sym_nil] = STATE(2991), - [sym__atom] = STATE(2991), - [sym_quoted_atom] = STATE(2991), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(2991), - [sym_charlist] = STATE(2991), - [sym_sigil] = STATE(2991), - [sym_list] = STATE(2991), - [sym_tuple] = STATE(2991), - [sym_bitstring] = STATE(2991), - [sym_map] = STATE(2991), - [sym_unary_operator] = STATE(2991), - [sym__capture_expression] = STATE(2564), - [sym_binary_operator] = STATE(2991), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(2991), - [sym_call] = STATE(2991), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(2991), - [sym_anonymous_function] = STATE(2991), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1561), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1699), - [sym_integer] = ACTIONS(1565), - [sym_float] = ACTIONS(1699), - [sym_char] = ACTIONS(1699), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1699), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [422] = { - [sym__expression] = STATE(3485), - [sym_block] = STATE(3485), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3485), - [sym_nil] = STATE(3485), - [sym__atom] = STATE(3485), - [sym_quoted_atom] = STATE(3485), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3485), - [sym_charlist] = STATE(3485), - [sym_sigil] = STATE(3485), - [sym_list] = STATE(3485), - [sym_tuple] = STATE(3485), - [sym_bitstring] = STATE(3485), - [sym_map] = STATE(3485), - [sym_unary_operator] = STATE(3485), - [sym_binary_operator] = STATE(3485), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3485), - [sym_call] = STATE(3485), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3485), - [sym_anonymous_function] = STATE(3485), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_RPAREN] = ACTIONS(1717), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1555), - [sym_integer] = ACTIONS(1555), - [sym_float] = ACTIONS(1555), - [sym_char] = ACTIONS(1555), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1555), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [423] = { - [sym__expression] = STATE(3485), - [sym_block] = STATE(3485), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3485), - [sym_nil] = STATE(3485), - [sym__atom] = STATE(3485), - [sym_quoted_atom] = STATE(3485), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3485), - [sym_charlist] = STATE(3485), - [sym_sigil] = STATE(3485), - [sym_list] = STATE(3485), - [sym_tuple] = STATE(3485), - [sym_bitstring] = STATE(3485), - [sym_map] = STATE(3485), - [sym_unary_operator] = STATE(3485), - [sym_binary_operator] = STATE(3485), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3485), - [sym_call] = STATE(3485), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3485), - [sym_anonymous_function] = STATE(3485), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_RPAREN] = ACTIONS(1719), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1555), - [sym_integer] = ACTIONS(1555), - [sym_float] = ACTIONS(1555), - [sym_char] = ACTIONS(1555), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1555), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [424] = { - [sym__expression] = STATE(3485), - [sym_block] = STATE(3485), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3485), - [sym_nil] = STATE(3485), - [sym__atom] = STATE(3485), - [sym_quoted_atom] = STATE(3485), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3485), - [sym_charlist] = STATE(3485), - [sym_sigil] = STATE(3485), - [sym_list] = STATE(3485), - [sym_tuple] = STATE(3485), - [sym_bitstring] = STATE(3485), - [sym_map] = STATE(3485), - [sym_unary_operator] = STATE(3485), - [sym_binary_operator] = STATE(3485), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3485), - [sym_call] = STATE(3485), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3485), - [sym_anonymous_function] = STATE(3485), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_RPAREN] = ACTIONS(1721), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1555), - [sym_integer] = ACTIONS(1555), - [sym_float] = ACTIONS(1555), - [sym_char] = ACTIONS(1555), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1555), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [425] = { - [sym__expression] = STATE(3485), - [sym_block] = STATE(3485), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3485), - [sym_nil] = STATE(3485), - [sym__atom] = STATE(3485), - [sym_quoted_atom] = STATE(3485), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3485), - [sym_charlist] = STATE(3485), - [sym_sigil] = STATE(3485), - [sym_list] = STATE(3485), - [sym_tuple] = STATE(3485), - [sym_bitstring] = STATE(3485), - [sym_map] = STATE(3485), - [sym_unary_operator] = STATE(3485), - [sym_binary_operator] = STATE(3485), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3485), - [sym_call] = STATE(3485), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3485), - [sym_anonymous_function] = STATE(3485), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_RPAREN] = ACTIONS(1723), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1555), - [sym_integer] = ACTIONS(1555), - [sym_float] = ACTIONS(1555), - [sym_char] = ACTIONS(1555), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1555), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [426] = { - [sym__expression] = STATE(3552), - [sym_block] = STATE(3552), - [sym__identifier] = STATE(111), - [sym_identifier] = STATE(111), - [sym_special_identifier] = STATE(111), - [sym_boolean] = STATE(3552), - [sym_nil] = STATE(3552), - [sym__atom] = STATE(3548), - [sym_quoted_atom] = STATE(3548), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3552), - [sym_charlist] = STATE(3552), - [sym_sigil] = STATE(3552), - [sym_list] = STATE(3552), - [sym_tuple] = STATE(3552), - [sym_bitstring] = STATE(3552), - [sym_map] = STATE(3552), - [sym_struct] = STATE(5009), - [sym_unary_operator] = STATE(3548), - [sym_binary_operator] = STATE(3552), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3548), - [sym_call] = STATE(3552), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(3527), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3552), - [sym_anonymous_function] = STATE(3552), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1539), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1541), - [sym_integer] = ACTIONS(1543), - [sym_float] = ACTIONS(1543), - [sym_char] = ACTIONS(1543), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1541), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1725), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1517), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1517), - [anon_sym_not] = ACTIONS(1517), - [anon_sym_AT] = ACTIONS(1519), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1521), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [427] = { - [sym__expression] = STATE(3485), - [sym_block] = STATE(3485), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3485), - [sym_nil] = STATE(3485), - [sym__atom] = STATE(3485), - [sym_quoted_atom] = STATE(3485), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3485), - [sym_charlist] = STATE(3485), - [sym_sigil] = STATE(3485), - [sym_list] = STATE(3485), - [sym_tuple] = STATE(3485), - [sym_bitstring] = STATE(3485), - [sym_map] = STATE(3485), - [sym_unary_operator] = STATE(3485), - [sym_binary_operator] = STATE(3485), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3485), - [sym_call] = STATE(3485), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3485), - [sym_anonymous_function] = STATE(3485), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_RPAREN] = ACTIONS(1727), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1555), - [sym_integer] = ACTIONS(1555), - [sym_float] = ACTIONS(1555), - [sym_char] = ACTIONS(1555), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1555), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [428] = { - [sym__expression] = STATE(2908), - [sym_block] = STATE(2908), - [sym__identifier] = STATE(68), - [sym_identifier] = STATE(68), - [sym_special_identifier] = STATE(68), - [sym_boolean] = STATE(2908), - [sym_nil] = STATE(2908), - [sym__atom] = STATE(2908), - [sym_quoted_atom] = STATE(2908), - [sym__quoted_i_double] = STATE(1866), - [sym__quoted_i_single] = STATE(1867), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(2908), - [sym_charlist] = STATE(2908), - [sym_sigil] = STATE(2908), - [sym_list] = STATE(2908), - [sym_tuple] = STATE(2908), - [sym_bitstring] = STATE(2908), - [sym_map] = STATE(2908), - [sym_unary_operator] = STATE(2908), - [sym__capture_expression] = STATE(1895), - [sym_binary_operator] = STATE(2908), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(2908), - [sym_call] = STATE(2908), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(2908), - [sym_anonymous_function] = STATE(2908), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1681), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(662), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(1715), - [sym_integer] = ACTIONS(1705), - [sym_float] = ACTIONS(1715), - [sym_char] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), - [sym_atom] = ACTIONS(1715), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(670), - [anon_sym_DASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(670), - [anon_sym_CARET] = ACTIONS(670), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(670), - [anon_sym_not] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(672), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(674), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), - }, - [429] = { - [sym__expression] = STATE(2121), - [sym_block] = STATE(2121), - [sym__identifier] = STATE(48), - [sym_identifier] = STATE(48), - [sym_special_identifier] = STATE(48), - [sym_boolean] = STATE(2121), - [sym_nil] = STATE(2121), - [sym__atom] = STATE(2121), - [sym_quoted_atom] = STATE(2121), - [sym__quoted_i_double] = STATE(1259), - [sym__quoted_i_single] = STATE(1258), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(2121), - [sym_charlist] = STATE(2121), - [sym_sigil] = STATE(2121), - [sym_list] = STATE(2121), - [sym_tuple] = STATE(2121), - [sym_bitstring] = STATE(2121), - [sym_map] = STATE(2121), - [sym_unary_operator] = STATE(2121), - [sym__capture_expression] = STATE(1235), - [sym_binary_operator] = STATE(2121), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(2121), - [sym_call] = STATE(2121), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(2121), - [sym_anonymous_function] = STATE(2121), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1729), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(527), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(1731), - [sym_integer] = ACTIONS(1733), - [sym_float] = ACTIONS(1731), - [sym_char] = ACTIONS(1731), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(1731), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(531), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_BANG] = ACTIONS(537), - [anon_sym_CARET] = ACTIONS(537), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), - [anon_sym_not] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(539), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(541), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), - }, - [430] = { - [sym__expression] = STATE(2121), - [sym_block] = STATE(2121), - [sym__identifier] = STATE(48), - [sym_identifier] = STATE(48), - [sym_special_identifier] = STATE(48), - [sym_boolean] = STATE(2121), - [sym_nil] = STATE(2121), - [sym__atom] = STATE(2121), - [sym_quoted_atom] = STATE(2121), - [sym__quoted_i_double] = STATE(1259), - [sym__quoted_i_single] = STATE(1258), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(2121), - [sym_charlist] = STATE(2121), - [sym_sigil] = STATE(2121), - [sym_list] = STATE(2121), - [sym_tuple] = STATE(2121), - [sym_bitstring] = STATE(2121), - [sym_map] = STATE(2121), - [sym_unary_operator] = STATE(2121), - [sym__capture_expression] = STATE(1244), - [sym_binary_operator] = STATE(2121), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(2121), - [sym_call] = STATE(2121), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(2121), - [sym_anonymous_function] = STATE(2121), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1729), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(527), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(1731), - [sym_integer] = ACTIONS(1735), - [sym_float] = ACTIONS(1731), - [sym_char] = ACTIONS(1731), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(1731), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(531), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_BANG] = ACTIONS(537), - [anon_sym_CARET] = ACTIONS(537), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), - [anon_sym_not] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(539), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(541), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), - }, - [431] = { - [sym__expression] = STATE(3494), - [sym_block] = STATE(3494), - [sym__identifier] = STATE(57), - [sym_identifier] = STATE(57), - [sym_special_identifier] = STATE(57), - [sym_boolean] = STATE(3494), - [sym_nil] = STATE(3494), - [sym__atom] = STATE(3494), - [sym_quoted_atom] = STATE(3494), - [sym__quoted_i_double] = STATE(3146), - [sym__quoted_i_single] = STATE(3147), - [sym__quoted_i_heredoc_single] = STATE(3147), - [sym__quoted_i_heredoc_double] = STATE(3146), - [sym_string] = STATE(3494), - [sym_charlist] = STATE(3494), - [sym_sigil] = STATE(3494), - [sym_list] = STATE(3494), - [sym_tuple] = STATE(3494), - [sym_bitstring] = STATE(3494), - [sym_map] = STATE(3494), - [sym_unary_operator] = STATE(3494), - [sym_binary_operator] = STATE(3494), - [sym_operator_identifier] = STATE(5049), - [sym_dot] = STATE(3494), - [sym_call] = STATE(3494), - [sym__call_without_parentheses] = STATE(3175), - [sym__call_with_parentheses] = STATE(3177), - [sym__local_call_without_parentheses] = STATE(3178), - [sym__local_call_with_parentheses] = STATE(2550), - [sym__local_call_just_do_block] = STATE(3183), - [sym__remote_call_without_parentheses] = STATE(3200), - [sym__remote_call_with_parentheses] = STATE(2583), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(2582), - [sym__anonymous_dot] = STATE(4866), - [sym__double_call] = STATE(3202), - [sym_access_call] = STATE(3494), - [sym_anonymous_function] = STATE(3494), - [ts_builtin_sym_end] = ACTIONS(1737), + [sym__expression] = STATE(4104), + [sym_block] = STATE(4104), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(4104), + [sym_nil] = STATE(4104), + [sym__atom] = STATE(4104), + [sym_quoted_atom] = STATE(4104), + [sym__quoted_i_double] = STATE(3664), + [sym__quoted_i_single] = STATE(3697), + [sym__quoted_i_heredoc_single] = STATE(3698), + [sym__quoted_i_heredoc_double] = STATE(3702), + [sym_string] = STATE(4104), + [sym_charlist] = STATE(4104), + [sym_sigil] = STATE(4104), + [sym_list] = STATE(4104), + [sym_tuple] = STATE(4104), + [sym_bitstring] = STATE(4104), + [sym_map] = STATE(4104), + [sym_unary_operator] = STATE(4104), + [sym_binary_operator] = STATE(4104), + [sym_operator_identifier] = STATE(5655), + [sym_dot] = STATE(4104), + [sym_call] = STATE(4104), + [sym__call_without_parentheses] = STATE(3705), + [sym__call_with_parentheses] = STATE(3725), + [sym__local_call_without_parentheses] = STATE(3765), + [sym__local_call_with_parentheses] = STATE(2681), + [sym__local_call_just_do_block] = STATE(3808), + [sym__remote_call_without_parentheses] = STATE(3810), + [sym__remote_call_with_parentheses] = STATE(2682), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2683), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(3811), + [sym_access_call] = STATE(4104), + [sym_anonymous_function] = STATE(4104), + [ts_builtin_sym_end] = ACTIONS(1689), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(15), @@ -80832,14 +78446,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ENV__] = ACTIONS(19), [anon_sym___CALLER__] = ACTIONS(19), [anon_sym___STACKTRACE__] = ACTIONS(19), - [sym_alias] = ACTIONS(1591), - [sym_integer] = ACTIONS(1591), - [sym_float] = ACTIONS(1591), - [sym_char] = ACTIONS(1591), + [sym_alias] = ACTIONS(1563), + [sym_integer] = ACTIONS(1563), + [sym_float] = ACTIONS(1563), + [sym_char] = ACTIONS(1563), [anon_sym_true] = ACTIONS(23), [anon_sym_false] = ACTIONS(23), [anon_sym_nil] = ACTIONS(25), - [sym_atom] = ACTIONS(1591), + [sym_atom] = ACTIONS(1563), [anon_sym_DQUOTE] = ACTIONS(27), [anon_sym_SQUOTE] = ACTIONS(29), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), @@ -80908,211 +78522,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(59), }, - [432] = { - [sym__expression] = STATE(3502), - [sym_block] = STATE(3502), - [sym__identifier] = STATE(72), - [sym_identifier] = STATE(72), - [sym_special_identifier] = STATE(72), - [sym_boolean] = STATE(3502), - [sym_nil] = STATE(3502), - [sym__atom] = STATE(3502), - [sym_quoted_atom] = STATE(3502), - [sym__quoted_i_double] = STATE(3516), - [sym__quoted_i_single] = STATE(3518), - [sym__quoted_i_heredoc_single] = STATE(3518), - [sym__quoted_i_heredoc_double] = STATE(3516), - [sym_string] = STATE(3502), - [sym_charlist] = STATE(3502), - [sym_sigil] = STATE(3502), - [sym_list] = STATE(3502), - [sym_tuple] = STATE(3502), - [sym_bitstring] = STATE(3502), - [sym_map] = STATE(3502), - [sym_unary_operator] = STATE(3502), - [sym__capture_expression] = STATE(3427), - [sym_binary_operator] = STATE(3502), - [sym_operator_identifier] = STATE(4972), - [sym_dot] = STATE(3502), - [sym_call] = STATE(3502), - [sym__call_without_parentheses] = STATE(3517), - [sym__call_with_parentheses] = STATE(3515), - [sym__local_call_without_parentheses] = STATE(3511), - [sym__local_call_with_parentheses] = STATE(3073), - [sym__local_call_just_do_block] = STATE(3510), - [sym__remote_call_without_parentheses] = STATE(3514), - [sym__remote_call_with_parentheses] = STATE(3088), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(3095), - [sym__anonymous_dot] = STATE(4928), - [sym__double_call] = STATE(3499), - [sym_access_call] = STATE(3502), - [sym_anonymous_function] = STATE(3502), + [408] = { + [sym__expression] = STATE(3260), + [sym_block] = STATE(3260), + [sym__identifier] = STATE(61), + [sym_identifier] = STATE(61), + [sym_special_identifier] = STATE(61), + [sym_boolean] = STATE(3260), + [sym_nil] = STATE(3260), + [sym__atom] = STATE(3260), + [sym_quoted_atom] = STATE(3260), + [sym__quoted_i_double] = STATE(3318), + [sym__quoted_i_single] = STATE(3317), + [sym__quoted_i_heredoc_single] = STATE(3316), + [sym__quoted_i_heredoc_double] = STATE(3315), + [sym_string] = STATE(3260), + [sym_charlist] = STATE(3260), + [sym_sigil] = STATE(3260), + [sym_list] = STATE(3260), + [sym_tuple] = STATE(3260), + [sym_bitstring] = STATE(3260), + [sym_map] = STATE(3260), + [sym_unary_operator] = STATE(3260), + [sym__capture_expression] = STATE(3243), + [sym_binary_operator] = STATE(3260), + [sym_operator_identifier] = STATE(5628), + [sym_dot] = STATE(3260), + [sym_call] = STATE(3260), + [sym__call_without_parentheses] = STATE(3314), + [sym__call_with_parentheses] = STATE(3313), + [sym__local_call_without_parentheses] = STATE(3312), + [sym__local_call_with_parentheses] = STATE(2420), + [sym__local_call_just_do_block] = STATE(3311), + [sym__remote_call_without_parentheses] = STATE(3310), + [sym__remote_call_with_parentheses] = STATE(2423), + [sym__remote_dot] = STATE(60), + [sym__anonymous_call] = STATE(2425), + [sym__anonymous_dot] = STATE(5498), + [sym__double_call] = STATE(3309), + [sym_access_call] = STATE(3260), + [sym_anonymous_function] = STATE(3260), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1707), - [aux_sym_identifier_token1] = ACTIONS(1125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1125), - [sym_unused_identifier] = ACTIONS(1127), - [anon_sym___MODULE__] = ACTIONS(1129), - [anon_sym___DIR__] = ACTIONS(1129), - [anon_sym___ENV__] = ACTIONS(1129), - [anon_sym___CALLER__] = ACTIONS(1129), - [anon_sym___STACKTRACE__] = ACTIONS(1129), - [sym_alias] = ACTIONS(1709), - [sym_integer] = ACTIONS(1739), - [sym_float] = ACTIONS(1709), - [sym_char] = ACTIONS(1709), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_nil] = ACTIONS(1135), - [sym_atom] = ACTIONS(1709), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(1147), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(1149), - [anon_sym_LT_LT] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1161), - [anon_sym_not] = ACTIONS(1161), - [anon_sym_AT] = ACTIONS(1163), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1165), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1167), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1169), - }, - [433] = { - [sym__expression] = STATE(3485), - [sym_block] = STATE(3485), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3485), - [sym_nil] = STATE(3485), - [sym__atom] = STATE(3485), - [sym_quoted_atom] = STATE(3485), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3485), - [sym_charlist] = STATE(3485), - [sym_sigil] = STATE(3485), - [sym_list] = STATE(3485), - [sym_tuple] = STATE(3485), - [sym_bitstring] = STATE(3485), - [sym_map] = STATE(3485), - [sym_unary_operator] = STATE(3485), - [sym_binary_operator] = STATE(3485), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3485), - [sym_call] = STATE(3485), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3485), - [sym_anonymous_function] = STATE(3485), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_RPAREN] = ACTIONS(1741), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1555), - [sym_integer] = ACTIONS(1555), - [sym_float] = ACTIONS(1555), - [sym_char] = ACTIONS(1555), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1555), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LPAREN] = ACTIONS(1691), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(1693), + [sym_integer] = ACTIONS(1695), + [sym_float] = ACTIONS(1693), + [sym_char] = ACTIONS(1693), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(1693), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(643), + [anon_sym_not] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -81152,219 +78640,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(649), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), + [sym__before_unary_op] = ACTIONS(655), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), + [sym__quoted_atom_start] = ACTIONS(657), }, - [434] = { - [sym__expression] = STATE(3380), - [sym_block] = STATE(3380), - [sym__identifier] = STATE(64), - [sym_identifier] = STATE(64), - [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3380), - [sym_nil] = STATE(3380), - [sym__atom] = STATE(3380), - [sym_quoted_atom] = STATE(3380), - [sym__quoted_i_double] = STATE(3395), - [sym__quoted_i_single] = STATE(3394), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3380), - [sym_charlist] = STATE(3380), - [sym_sigil] = STATE(3380), - [sym_list] = STATE(3380), - [sym_tuple] = STATE(3380), - [sym_bitstring] = STATE(3380), - [sym_map] = STATE(3380), - [sym_unary_operator] = STATE(3380), - [sym__capture_expression] = STATE(3379), - [sym_binary_operator] = STATE(3380), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3380), - [sym_call] = STATE(3380), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), - [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3380), - [sym_anonymous_function] = STATE(3380), + [409] = { + [sym__expression] = STATE(3840), + [sym_block] = STATE(3840), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3840), + [sym_nil] = STATE(3840), + [sym__atom] = STATE(3840), + [sym_quoted_atom] = STATE(3840), + [sym__quoted_i_double] = STATE(3664), + [sym__quoted_i_single] = STATE(3697), + [sym__quoted_i_heredoc_single] = STATE(3698), + [sym__quoted_i_heredoc_double] = STATE(3702), + [sym_string] = STATE(3840), + [sym_charlist] = STATE(3840), + [sym_sigil] = STATE(3840), + [sym_list] = STATE(3840), + [sym_tuple] = STATE(3840), + [sym_bitstring] = STATE(3840), + [sym_map] = STATE(3840), + [sym_unary_operator] = STATE(3840), + [sym__capture_expression] = STATE(3857), + [sym_binary_operator] = STATE(3840), + [sym_operator_identifier] = STATE(5655), + [sym_dot] = STATE(3840), + [sym_call] = STATE(3840), + [sym__call_without_parentheses] = STATE(3705), + [sym__call_with_parentheses] = STATE(3725), + [sym__local_call_without_parentheses] = STATE(3765), + [sym__local_call_with_parentheses] = STATE(2681), + [sym__local_call_just_do_block] = STATE(3808), + [sym__remote_call_without_parentheses] = STATE(3810), + [sym__remote_call_with_parentheses] = STATE(2682), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2683), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(3811), + [sym_access_call] = STATE(3840), + [sym_anonymous_function] = STATE(3840), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1743), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(828), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1745), - [sym_integer] = ACTIONS(1747), - [sym_float] = ACTIONS(1745), - [sym_char] = ACTIONS(1745), - [anon_sym_true] = ACTIONS(834), - [anon_sym_false] = ACTIONS(834), - [anon_sym_nil] = ACTIONS(836), - [sym_atom] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(838), - [anon_sym_SQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(850), - [anon_sym_LT_LT] = ACTIONS(852), - [anon_sym_PERCENT] = ACTIONS(854), - [anon_sym_AMP] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_BANG] = ACTIONS(858), - [anon_sym_CARET] = ACTIONS(858), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), - [anon_sym_not] = ACTIONS(858), - [anon_sym_AT] = ACTIONS(860), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(864), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(866), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(868), - }, - [435] = { - [sym__expression] = STATE(3212), - [sym_block] = STATE(3212), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3212), - [sym_nil] = STATE(3212), - [sym__atom] = STATE(3212), - [sym_quoted_atom] = STATE(3212), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3212), - [sym_charlist] = STATE(3212), - [sym_sigil] = STATE(3212), - [sym_list] = STATE(3212), - [sym_tuple] = STATE(3212), - [sym_bitstring] = STATE(3212), - [sym_map] = STATE(3212), - [sym_unary_operator] = STATE(3212), - [sym__capture_expression] = STATE(1625), - [sym_binary_operator] = STATE(3212), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3212), - [sym_call] = STATE(3212), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3212), - [sym_anonymous_function] = STATE(3212), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1629), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1749), - [sym_integer] = ACTIONS(1633), - [sym_float] = ACTIONS(1749), - [sym_char] = ACTIONS(1749), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1749), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LPAREN] = ACTIONS(1697), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), + [sym_alias] = ACTIONS(1699), + [sym_integer] = ACTIONS(1701), + [sym_float] = ACTIONS(1699), + [sym_char] = ACTIONS(1699), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), + [sym_atom] = ACTIONS(1699), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -81404,203 +78766,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(53), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), + [sym__before_unary_op] = ACTIONS(55), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), + [sym__quoted_atom_start] = ACTIONS(59), }, - [436] = { - [sym__expression] = STATE(1412), - [sym_block] = STATE(1412), - [sym__identifier] = STATE(18), - [sym_identifier] = STATE(18), - [sym_special_identifier] = STATE(18), - [sym_boolean] = STATE(1412), - [sym_nil] = STATE(1412), - [sym__atom] = STATE(1412), - [sym_quoted_atom] = STATE(1412), - [sym__quoted_i_double] = STATE(1259), - [sym__quoted_i_single] = STATE(1258), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(1412), - [sym_charlist] = STATE(1412), - [sym_sigil] = STATE(1412), - [sym_list] = STATE(1412), - [sym_tuple] = STATE(1412), - [sym_bitstring] = STATE(1412), - [sym_map] = STATE(1412), - [sym_unary_operator] = STATE(1412), - [sym__capture_expression] = STATE(1235), - [sym_binary_operator] = STATE(1412), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(1412), - [sym_call] = STATE(1412), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(1412), - [sym_anonymous_function] = STATE(1412), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1729), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(256), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), - [sym_alias] = ACTIONS(1751), - [sym_integer] = ACTIONS(1733), - [sym_float] = ACTIONS(1751), - [sym_char] = ACTIONS(1751), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(1751), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(286), - [anon_sym_not] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(294), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), - }, - [437] = { - [sym__expression] = STATE(3552), - [sym_block] = STATE(3552), - [sym__identifier] = STATE(111), - [sym_identifier] = STATE(111), - [sym_special_identifier] = STATE(111), - [sym_boolean] = STATE(3552), - [sym_nil] = STATE(3552), - [sym__atom] = STATE(3548), - [sym_quoted_atom] = STATE(3548), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3552), - [sym_charlist] = STATE(3552), - [sym_sigil] = STATE(3552), - [sym_list] = STATE(3552), - [sym_tuple] = STATE(3552), - [sym_bitstring] = STATE(3552), - [sym_map] = STATE(3552), - [sym_struct] = STATE(4946), - [sym_unary_operator] = STATE(3548), - [sym_binary_operator] = STATE(3552), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3548), - [sym_call] = STATE(3552), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(3527), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3552), - [sym_anonymous_function] = STATE(3552), + [410] = { + [sym__expression] = STATE(4159), + [sym_block] = STATE(4159), + [sym__identifier] = STATE(103), + [sym_identifier] = STATE(103), + [sym_special_identifier] = STATE(103), + [sym_boolean] = STATE(4159), + [sym_nil] = STATE(4159), + [sym__atom] = STATE(4155), + [sym_quoted_atom] = STATE(4155), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4159), + [sym_charlist] = STATE(4159), + [sym_sigil] = STATE(4159), + [sym_list] = STATE(4159), + [sym_tuple] = STATE(4159), + [sym_bitstring] = STATE(4159), + [sym_map] = STATE(4159), + [sym_struct] = STATE(5637), + [sym_unary_operator] = STATE(4155), + [sym_binary_operator] = STATE(4159), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4155), + [sym_call] = STATE(4159), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(4151), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4159), + [sym_anonymous_function] = STATE(4159), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), [aux_sym_identifier_token1] = ACTIONS(826), [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1539), + [sym_unused_identifier] = ACTIONS(1567), [anon_sym___MODULE__] = ACTIONS(830), [anon_sym___DIR__] = ACTIONS(830), [anon_sym___ENV__] = ACTIONS(830), [anon_sym___CALLER__] = ACTIONS(830), [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1541), - [sym_integer] = ACTIONS(1543), - [sym_float] = ACTIONS(1543), - [sym_char] = ACTIONS(1543), + [sym_alias] = ACTIONS(1569), + [sym_integer] = ACTIONS(1571), + [sym_float] = ACTIONS(1571), + [sym_char] = ACTIONS(1571), [anon_sym_true] = ACTIONS(1073), [anon_sym_false] = ACTIONS(1073), [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1541), + [sym_atom] = ACTIONS(1569), [anon_sym_DQUOTE] = ACTIONS(1077), [anon_sym_SQUOTE] = ACTIONS(1079), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1753), + [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_LBRACK] = ACTIONS(1089), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), @@ -81609,14 +78845,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(1091), [anon_sym_LT_LT] = ACTIONS(1095), [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1517), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1517), - [anon_sym_not] = ACTIONS(1517), - [anon_sym_AT] = ACTIONS(1519), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1507), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AT] = ACTIONS(1509), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -81660,89 +78896,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1521), + [sym__before_unary_op] = ACTIONS(1511), [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(1109), }, - [438] = { - [sym__expression] = STATE(1412), - [sym_block] = STATE(1412), + [411] = { + [sym__expression] = STATE(1428), + [sym_block] = STATE(1428), [sym__identifier] = STATE(18), [sym_identifier] = STATE(18), [sym_special_identifier] = STATE(18), - [sym_boolean] = STATE(1412), - [sym_nil] = STATE(1412), - [sym__atom] = STATE(1412), - [sym_quoted_atom] = STATE(1412), - [sym__quoted_i_double] = STATE(1259), - [sym__quoted_i_single] = STATE(1258), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(1412), - [sym_charlist] = STATE(1412), - [sym_sigil] = STATE(1412), - [sym_list] = STATE(1412), - [sym_tuple] = STATE(1412), - [sym_bitstring] = STATE(1412), - [sym_map] = STATE(1412), - [sym_unary_operator] = STATE(1412), - [sym__capture_expression] = STATE(1244), - [sym_binary_operator] = STATE(1412), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(1412), - [sym_call] = STATE(1412), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(1412), - [sym_anonymous_function] = STATE(1412), + [sym_boolean] = STATE(1428), + [sym_nil] = STATE(1428), + [sym__atom] = STATE(1428), + [sym_quoted_atom] = STATE(1428), + [sym__quoted_i_double] = STATE(1250), + [sym__quoted_i_single] = STATE(1249), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(1428), + [sym_charlist] = STATE(1428), + [sym_sigil] = STATE(1428), + [sym_list] = STATE(1428), + [sym_tuple] = STATE(1428), + [sym_bitstring] = STATE(1428), + [sym_map] = STATE(1428), + [sym_unary_operator] = STATE(1428), + [sym__capture_expression] = STATE(1195), + [sym_binary_operator] = STATE(1428), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(1428), + [sym_call] = STATE(1428), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(1428), + [sym_anonymous_function] = STATE(1428), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1729), + [anon_sym_LPAREN] = ACTIONS(1683), [aux_sym_identifier_token1] = ACTIONS(195), [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(256), + [sym_unused_identifier] = ACTIONS(197), [anon_sym___MODULE__] = ACTIONS(199), [anon_sym___DIR__] = ACTIONS(199), [anon_sym___ENV__] = ACTIONS(199), [anon_sym___CALLER__] = ACTIONS(199), [anon_sym___STACKTRACE__] = ACTIONS(199), - [sym_alias] = ACTIONS(1751), - [sym_integer] = ACTIONS(1735), - [sym_float] = ACTIONS(1751), - [sym_char] = ACTIONS(1751), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(1751), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), + [sym_alias] = ACTIONS(1685), + [sym_integer] = ACTIONS(1705), + [sym_float] = ACTIONS(1685), + [sym_char] = ACTIONS(1685), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(286), - [anon_sym_not] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -81782,93 +79018,723 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), + [anon_sym_fn] = ACTIONS(235), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(294), + [sym__before_unary_op] = ACTIONS(241), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), + [sym__quoted_atom_start] = ACTIONS(243), }, - [439] = { - [sym__expression] = STATE(3380), - [sym_block] = STATE(3380), - [sym__identifier] = STATE(64), - [sym_identifier] = STATE(64), - [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3380), - [sym_nil] = STATE(3380), - [sym__atom] = STATE(3380), - [sym_quoted_atom] = STATE(3380), - [sym__quoted_i_double] = STATE(3395), - [sym__quoted_i_single] = STATE(3394), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3380), - [sym_charlist] = STATE(3380), - [sym_sigil] = STATE(3380), - [sym_list] = STATE(3380), - [sym_tuple] = STATE(3380), - [sym_bitstring] = STATE(3380), - [sym_map] = STATE(3380), - [sym_unary_operator] = STATE(3380), - [sym__capture_expression] = STATE(3372), - [sym_binary_operator] = STATE(3380), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3380), - [sym_call] = STATE(3380), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), - [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3380), - [sym_anonymous_function] = STATE(3380), + [412] = { + [sym__expression] = STATE(4049), + [sym_block] = STATE(4049), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(4049), + [sym_nil] = STATE(4049), + [sym__atom] = STATE(4049), + [sym_quoted_atom] = STATE(4049), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(4049), + [sym_charlist] = STATE(4049), + [sym_sigil] = STATE(4049), + [sym_list] = STATE(4049), + [sym_tuple] = STATE(4049), + [sym_bitstring] = STATE(4049), + [sym_map] = STATE(4049), + [sym_unary_operator] = STATE(4049), + [sym_binary_operator] = STATE(4049), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(4049), + [sym_call] = STATE(4049), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(4049), + [sym_anonymous_function] = STATE(4049), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1743), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1707), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1535), + [sym_integer] = ACTIONS(1535), + [sym_float] = ACTIONS(1535), + [sym_char] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [413] = { + [sym__expression] = STATE(3260), + [sym_block] = STATE(3260), + [sym__identifier] = STATE(61), + [sym_identifier] = STATE(61), + [sym_special_identifier] = STATE(61), + [sym_boolean] = STATE(3260), + [sym_nil] = STATE(3260), + [sym__atom] = STATE(3260), + [sym_quoted_atom] = STATE(3260), + [sym__quoted_i_double] = STATE(3318), + [sym__quoted_i_single] = STATE(3317), + [sym__quoted_i_heredoc_single] = STATE(3316), + [sym__quoted_i_heredoc_double] = STATE(3315), + [sym_string] = STATE(3260), + [sym_charlist] = STATE(3260), + [sym_sigil] = STATE(3260), + [sym_list] = STATE(3260), + [sym_tuple] = STATE(3260), + [sym_bitstring] = STATE(3260), + [sym_map] = STATE(3260), + [sym_unary_operator] = STATE(3260), + [sym__capture_expression] = STATE(3259), + [sym_binary_operator] = STATE(3260), + [sym_operator_identifier] = STATE(5628), + [sym_dot] = STATE(3260), + [sym_call] = STATE(3260), + [sym__call_without_parentheses] = STATE(3314), + [sym__call_with_parentheses] = STATE(3313), + [sym__local_call_without_parentheses] = STATE(3312), + [sym__local_call_with_parentheses] = STATE(2420), + [sym__local_call_just_do_block] = STATE(3311), + [sym__remote_call_without_parentheses] = STATE(3310), + [sym__remote_call_with_parentheses] = STATE(2423), + [sym__remote_dot] = STATE(60), + [sym__anonymous_call] = STATE(2425), + [sym__anonymous_dot] = STATE(5498), + [sym__double_call] = STATE(3309), + [sym_access_call] = STATE(3260), + [sym_anonymous_function] = STATE(3260), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1691), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(1693), + [sym_integer] = ACTIONS(1709), + [sym_float] = ACTIONS(1693), + [sym_char] = ACTIONS(1693), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(1693), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(643), + [anon_sym_not] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(649), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(655), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(657), + }, + [414] = { + [sym__expression] = STATE(4049), + [sym_block] = STATE(4049), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(4049), + [sym_nil] = STATE(4049), + [sym__atom] = STATE(4049), + [sym_quoted_atom] = STATE(4049), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(4049), + [sym_charlist] = STATE(4049), + [sym_sigil] = STATE(4049), + [sym_list] = STATE(4049), + [sym_tuple] = STATE(4049), + [sym_bitstring] = STATE(4049), + [sym_map] = STATE(4049), + [sym_unary_operator] = STATE(4049), + [sym_binary_operator] = STATE(4049), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(4049), + [sym_call] = STATE(4049), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(4049), + [sym_anonymous_function] = STATE(4049), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1711), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1535), + [sym_integer] = ACTIONS(1535), + [sym_float] = ACTIONS(1535), + [sym_char] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [415] = { + [sym__expression] = STATE(4049), + [sym_block] = STATE(4049), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(4049), + [sym_nil] = STATE(4049), + [sym__atom] = STATE(4049), + [sym_quoted_atom] = STATE(4049), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(4049), + [sym_charlist] = STATE(4049), + [sym_sigil] = STATE(4049), + [sym_list] = STATE(4049), + [sym_tuple] = STATE(4049), + [sym_bitstring] = STATE(4049), + [sym_map] = STATE(4049), + [sym_unary_operator] = STATE(4049), + [sym_binary_operator] = STATE(4049), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(4049), + [sym_call] = STATE(4049), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(4049), + [sym_anonymous_function] = STATE(4049), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1713), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1535), + [sym_integer] = ACTIONS(1535), + [sym_float] = ACTIONS(1535), + [sym_char] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [416] = { + [sym__expression] = STATE(4049), + [sym_block] = STATE(4049), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(4049), + [sym_nil] = STATE(4049), + [sym__atom] = STATE(4049), + [sym_quoted_atom] = STATE(4049), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(4049), + [sym_charlist] = STATE(4049), + [sym_sigil] = STATE(4049), + [sym_list] = STATE(4049), + [sym_tuple] = STATE(4049), + [sym_bitstring] = STATE(4049), + [sym_map] = STATE(4049), + [sym_unary_operator] = STATE(4049), + [sym_binary_operator] = STATE(4049), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(4049), + [sym_call] = STATE(4049), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(4049), + [sym_anonymous_function] = STATE(4049), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1715), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1535), + [sym_integer] = ACTIONS(1535), + [sym_float] = ACTIONS(1535), + [sym_char] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [417] = { + [sym__expression] = STATE(3202), + [sym_block] = STATE(3202), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3202), + [sym_nil] = STATE(3202), + [sym__atom] = STATE(3202), + [sym_quoted_atom] = STATE(3202), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3202), + [sym_charlist] = STATE(3202), + [sym_sigil] = STATE(3202), + [sym_list] = STATE(3202), + [sym_tuple] = STATE(3202), + [sym_bitstring] = STATE(3202), + [sym_map] = STATE(3202), + [sym_unary_operator] = STATE(3202), + [sym__capture_expression] = STATE(3159), + [sym_binary_operator] = STATE(3202), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3202), + [sym_call] = STATE(3202), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3202), + [sym_anonymous_function] = STATE(3202), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1579), [aux_sym_identifier_token1] = ACTIONS(826), [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(828), + [sym_unused_identifier] = ACTIONS(1069), [anon_sym___MODULE__] = ACTIONS(830), [anon_sym___DIR__] = ACTIONS(830), [anon_sym___ENV__] = ACTIONS(830), [anon_sym___CALLER__] = ACTIONS(830), [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1745), - [sym_integer] = ACTIONS(1755), - [sym_float] = ACTIONS(1745), - [sym_char] = ACTIONS(1745), - [anon_sym_true] = ACTIONS(834), - [anon_sym_false] = ACTIONS(834), - [anon_sym_nil] = ACTIONS(836), - [sym_atom] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(838), - [anon_sym_SQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(848), + [sym_alias] = ACTIONS(1717), + [sym_integer] = ACTIONS(1583), + [sym_float] = ACTIONS(1717), + [sym_char] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(850), - [anon_sym_LT_LT] = ACTIONS(852), - [anon_sym_PERCENT] = ACTIONS(854), - [anon_sym_AMP] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_BANG] = ACTIONS(858), - [anon_sym_CARET] = ACTIONS(858), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), - [anon_sym_not] = ACTIONS(858), - [anon_sym_AT] = ACTIONS(860), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -81908,93 +79774,345 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(864), + [anon_sym_fn] = ACTIONS(1105), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(866), + [sym__before_unary_op] = ACTIONS(1107), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(868), + [sym__quoted_atom_start] = ACTIONS(1109), }, - [440] = { - [sym__expression] = STATE(3485), - [sym_block] = STATE(3485), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3485), - [sym_nil] = STATE(3485), - [sym__atom] = STATE(3485), - [sym_quoted_atom] = STATE(3485), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3485), - [sym_charlist] = STATE(3485), - [sym_sigil] = STATE(3485), - [sym_list] = STATE(3485), - [sym_tuple] = STATE(3485), - [sym_bitstring] = STATE(3485), - [sym_map] = STATE(3485), - [sym_unary_operator] = STATE(3485), - [sym_binary_operator] = STATE(3485), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3485), - [sym_call] = STATE(3485), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3485), - [sym_anonymous_function] = STATE(3485), + [418] = { + [sym__expression] = STATE(2230), + [sym_block] = STATE(2230), + [sym__identifier] = STATE(35), + [sym_identifier] = STATE(35), + [sym_special_identifier] = STATE(35), + [sym_boolean] = STATE(2230), + [sym_nil] = STATE(2230), + [sym__atom] = STATE(2230), + [sym_quoted_atom] = STATE(2230), + [sym__quoted_i_double] = STATE(2196), + [sym__quoted_i_single] = STATE(2197), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(2230), + [sym_charlist] = STATE(2230), + [sym_sigil] = STATE(2230), + [sym_list] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_bitstring] = STATE(2230), + [sym_map] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym__capture_expression] = STATE(2151), + [sym_binary_operator] = STATE(2230), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(2230), + [sym_call] = STATE(2230), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(2230), + [sym_anonymous_function] = STATE(2230), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_RPAREN] = ACTIONS(1757), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1555), + [anon_sym_LPAREN] = ACTIONS(1549), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(367), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(1719), + [sym_integer] = ACTIONS(1553), + [sym_float] = ACTIONS(1719), + [sym_char] = ACTIONS(1719), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(1719), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(402), + [anon_sym_DASH] = ACTIONS(402), + [anon_sym_BANG] = ACTIONS(402), + [anon_sym_CARET] = ACTIONS(402), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(402), + [anon_sym_not] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(404), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(406), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(410), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(412), + }, + [419] = { + [sym__expression] = STATE(4159), + [sym_block] = STATE(4159), + [sym__identifier] = STATE(103), + [sym_identifier] = STATE(103), + [sym_special_identifier] = STATE(103), + [sym_boolean] = STATE(4159), + [sym_nil] = STATE(4159), + [sym__atom] = STATE(4155), + [sym_quoted_atom] = STATE(4155), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4159), + [sym_charlist] = STATE(4159), + [sym_sigil] = STATE(4159), + [sym_list] = STATE(4159), + [sym_tuple] = STATE(4159), + [sym_bitstring] = STATE(4159), + [sym_map] = STATE(4159), + [sym_struct] = STATE(5644), + [sym_unary_operator] = STATE(4155), + [sym_binary_operator] = STATE(4159), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4155), + [sym_call] = STATE(4159), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(4151), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4159), + [sym_anonymous_function] = STATE(4159), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1567), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1569), + [sym_integer] = ACTIONS(1571), + [sym_float] = ACTIONS(1571), + [sym_char] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1721), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1507), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AT] = ACTIONS(1509), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1511), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [420] = { + [sym__expression] = STATE(2230), + [sym_block] = STATE(2230), + [sym__identifier] = STATE(35), + [sym_identifier] = STATE(35), + [sym_special_identifier] = STATE(35), + [sym_boolean] = STATE(2230), + [sym_nil] = STATE(2230), + [sym__atom] = STATE(2230), + [sym_quoted_atom] = STATE(2230), + [sym__quoted_i_double] = STATE(2196), + [sym__quoted_i_single] = STATE(2197), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(2230), + [sym_charlist] = STATE(2230), + [sym_sigil] = STATE(2230), + [sym_list] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_bitstring] = STATE(2230), + [sym_map] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym__capture_expression] = STATE(2187), + [sym_binary_operator] = STATE(2230), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(2230), + [sym_call] = STATE(2230), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(2230), + [sym_anonymous_function] = STATE(2230), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1549), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(367), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(1719), [sym_integer] = ACTIONS(1555), - [sym_float] = ACTIONS(1555), - [sym_char] = ACTIONS(1555), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1555), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), + [sym_float] = ACTIONS(1719), + [sym_char] = ACTIONS(1719), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(1719), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(402), + [anon_sym_DASH] = ACTIONS(402), + [anon_sym_BANG] = ACTIONS(402), + [anon_sym_CARET] = ACTIONS(402), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(402), + [anon_sym_not] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(404), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -82034,93 +80152,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(406), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), + [sym__before_unary_op] = ACTIONS(410), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), + [sym__quoted_atom_start] = ACTIONS(412), }, - [441] = { - [sym__expression] = STATE(3212), - [sym_block] = STATE(3212), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3212), - [sym_nil] = STATE(3212), - [sym__atom] = STATE(3212), - [sym_quoted_atom] = STATE(3212), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3212), - [sym_charlist] = STATE(3212), - [sym_sigil] = STATE(3212), - [sym_list] = STATE(3212), - [sym_tuple] = STATE(3212), - [sym_bitstring] = STATE(3212), - [sym_map] = STATE(3212), - [sym_unary_operator] = STATE(3212), - [sym__capture_expression] = STATE(1648), - [sym_binary_operator] = STATE(3212), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3212), - [sym_call] = STATE(3212), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3212), - [sym_anonymous_function] = STATE(3212), + [421] = { + [sym__expression] = STATE(2868), + [sym_block] = STATE(2868), + [sym__identifier] = STATE(51), + [sym_identifier] = STATE(51), + [sym_special_identifier] = STATE(51), + [sym_boolean] = STATE(2868), + [sym_nil] = STATE(2868), + [sym__atom] = STATE(2868), + [sym_quoted_atom] = STATE(2868), + [sym__quoted_i_double] = STATE(2738), + [sym__quoted_i_single] = STATE(2766), + [sym__quoted_i_heredoc_single] = STATE(2751), + [sym__quoted_i_heredoc_double] = STATE(2852), + [sym_string] = STATE(2868), + [sym_charlist] = STATE(2868), + [sym_sigil] = STATE(2868), + [sym_list] = STATE(2868), + [sym_tuple] = STATE(2868), + [sym_bitstring] = STATE(2868), + [sym_map] = STATE(2868), + [sym_unary_operator] = STATE(2868), + [sym__capture_expression] = STATE(2874), + [sym_binary_operator] = STATE(2868), + [sym_operator_identifier] = STATE(5596), + [sym_dot] = STATE(2868), + [sym_call] = STATE(2868), + [sym__call_without_parentheses] = STATE(2764), + [sym__call_with_parentheses] = STATE(2765), + [sym__local_call_without_parentheses] = STATE(2767), + [sym__local_call_with_parentheses] = STATE(2120), + [sym__local_call_just_do_block] = STATE(2833), + [sym__remote_call_without_parentheses] = STATE(2843), + [sym__remote_call_with_parentheses] = STATE(2108), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2107), + [sym__anonymous_dot] = STATE(5500), + [sym__double_call] = STATE(2844), + [sym_access_call] = STATE(2868), + [sym_anonymous_function] = STATE(2868), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1629), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1749), - [sym_integer] = ACTIONS(1637), - [sym_float] = ACTIONS(1749), - [sym_char] = ACTIONS(1749), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1749), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LPAREN] = ACTIONS(1723), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(1725), + [sym_integer] = ACTIONS(1727), + [sym_float] = ACTIONS(1725), + [sym_char] = ACTIONS(1725), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -82160,1279 +80278,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(541), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), + [sym__before_unary_op] = ACTIONS(545), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), + [sym__quoted_atom_start] = ACTIONS(547), }, - [442] = { - [sym__expression] = STATE(2682), - [sym_block] = STATE(2682), - [sym__identifier] = STATE(45), - [sym_identifier] = STATE(45), - [sym_special_identifier] = STATE(45), - [sym_boolean] = STATE(2682), - [sym_nil] = STATE(2682), - [sym__atom] = STATE(2682), - [sym_quoted_atom] = STATE(2682), - [sym__quoted_i_double] = STATE(2714), - [sym__quoted_i_single] = STATE(2713), - [sym__quoted_i_heredoc_single] = STATE(2713), - [sym__quoted_i_heredoc_double] = STATE(2714), - [sym_string] = STATE(2682), - [sym_charlist] = STATE(2682), - [sym_sigil] = STATE(2682), - [sym_list] = STATE(2682), - [sym_tuple] = STATE(2682), - [sym_bitstring] = STATE(2682), - [sym_map] = STATE(2682), - [sym_unary_operator] = STATE(2682), - [sym__capture_expression] = STATE(2662), - [sym_binary_operator] = STATE(2682), - [sym_operator_identifier] = STATE(4988), - [sym_dot] = STATE(2682), - [sym_call] = STATE(2682), - [sym__call_without_parentheses] = STATE(2712), - [sym__call_with_parentheses] = STATE(2711), - [sym__local_call_without_parentheses] = STATE(2710), - [sym__local_call_with_parentheses] = STATE(1879), - [sym__local_call_just_do_block] = STATE(2709), - [sym__remote_call_without_parentheses] = STATE(2708), - [sym__remote_call_with_parentheses] = STATE(1859), - [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1919), - [sym__anonymous_dot] = STATE(4871), - [sym__double_call] = STATE(2707), - [sym_access_call] = STATE(2682), - [sym_anonymous_function] = STATE(2682), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1617), - [aux_sym_identifier_token1] = ACTIONS(481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(481), - [sym_unused_identifier] = ACTIONS(483), - [anon_sym___MODULE__] = ACTIONS(485), - [anon_sym___DIR__] = ACTIONS(485), - [anon_sym___ENV__] = ACTIONS(485), - [anon_sym___CALLER__] = ACTIONS(485), - [anon_sym___STACKTRACE__] = ACTIONS(485), - [sym_alias] = ACTIONS(1619), - [sym_integer] = ACTIONS(1759), - [sym_float] = ACTIONS(1619), - [sym_char] = ACTIONS(1619), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_nil] = ACTIONS(491), - [sym_atom] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(493), - [anon_sym_SQUOTE] = ACTIONS(495), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(497), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(499), - [anon_sym_LBRACE] = ACTIONS(501), - [anon_sym_LBRACK] = ACTIONS(503), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(505), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(515), - [anon_sym_CARET] = ACTIONS(515), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(515), - [anon_sym_not] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(517), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(519), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(523), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(525), - }, - [443] = { - [sym__expression] = STATE(2483), - [sym_block] = STATE(2483), - [sym__identifier] = STATE(60), - [sym_identifier] = STATE(60), - [sym_special_identifier] = STATE(60), - [sym_boolean] = STATE(2483), - [sym_nil] = STATE(2483), - [sym__atom] = STATE(2483), - [sym_quoted_atom] = STATE(2483), - [sym__quoted_i_double] = STATE(2414), - [sym__quoted_i_single] = STATE(2413), - [sym__quoted_i_heredoc_single] = STATE(2413), - [sym__quoted_i_heredoc_double] = STATE(2414), - [sym_string] = STATE(2483), - [sym_charlist] = STATE(2483), - [sym_sigil] = STATE(2483), - [sym_list] = STATE(2483), - [sym_tuple] = STATE(2483), - [sym_bitstring] = STATE(2483), - [sym_map] = STATE(2483), - [sym_unary_operator] = STATE(2483), - [sym_binary_operator] = STATE(2483), - [sym_operator_identifier] = STATE(5028), - [sym_dot] = STATE(2483), - [sym_call] = STATE(2483), - [sym__call_without_parentheses] = STATE(2412), - [sym__call_with_parentheses] = STATE(2411), - [sym__local_call_without_parentheses] = STATE(2410), - [sym__local_call_with_parentheses] = STATE(1910), - [sym__local_call_just_do_block] = STATE(2409), - [sym__remote_call_without_parentheses] = STATE(2408), - [sym__remote_call_with_parentheses] = STATE(1916), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(1975), - [sym__anonymous_dot] = STATE(4890), - [sym__double_call] = STATE(2407), - [sym_access_call] = STATE(2483), - [sym_anonymous_function] = STATE(2483), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(556), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(558), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(1761), - [sym_integer] = ACTIONS(1761), - [sym_float] = ACTIONS(1761), - [sym_char] = ACTIONS(1761), - [anon_sym_true] = ACTIONS(562), - [anon_sym_false] = ACTIONS(562), - [anon_sym_nil] = ACTIONS(564), - [sym_atom] = ACTIONS(1761), - [anon_sym_DQUOTE] = ACTIONS(566), - [anon_sym_SQUOTE] = ACTIONS(568), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), - [anon_sym_LBRACE] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(578), - [anon_sym_LT_LT] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_CARET] = ACTIONS(588), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), - [anon_sym_not] = ACTIONS(588), - [anon_sym_AT] = ACTIONS(590), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(594), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(600), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(602), - }, - [444] = { - [sym__expression] = STATE(3460), - [sym_block] = STATE(3460), - [sym__identifier] = STATE(72), - [sym_identifier] = STATE(72), - [sym_special_identifier] = STATE(72), - [sym_boolean] = STATE(3460), - [sym_nil] = STATE(3460), - [sym__atom] = STATE(3460), - [sym_quoted_atom] = STATE(3460), - [sym__quoted_i_double] = STATE(3516), - [sym__quoted_i_single] = STATE(3518), - [sym__quoted_i_heredoc_single] = STATE(3518), - [sym__quoted_i_heredoc_double] = STATE(3516), - [sym_string] = STATE(3460), - [sym_charlist] = STATE(3460), - [sym_sigil] = STATE(3460), - [sym_list] = STATE(3460), - [sym_tuple] = STATE(3460), - [sym_bitstring] = STATE(3460), - [sym_map] = STATE(3460), - [sym_unary_operator] = STATE(3460), - [sym_binary_operator] = STATE(3460), - [sym_operator_identifier] = STATE(4972), - [sym_dot] = STATE(3460), - [sym_call] = STATE(3460), - [sym__call_without_parentheses] = STATE(3517), - [sym__call_with_parentheses] = STATE(3515), - [sym__local_call_without_parentheses] = STATE(3511), - [sym__local_call_with_parentheses] = STATE(3073), - [sym__local_call_just_do_block] = STATE(3510), - [sym__remote_call_without_parentheses] = STATE(3514), - [sym__remote_call_with_parentheses] = STATE(3088), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(3095), - [sym__anonymous_dot] = STATE(4928), - [sym__double_call] = STATE(3499), - [sym_access_call] = STATE(3460), - [sym_anonymous_function] = STATE(3460), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1123), - [aux_sym_identifier_token1] = ACTIONS(1125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1125), - [sym_unused_identifier] = ACTIONS(1127), - [anon_sym___MODULE__] = ACTIONS(1129), - [anon_sym___DIR__] = ACTIONS(1129), - [anon_sym___ENV__] = ACTIONS(1129), - [anon_sym___CALLER__] = ACTIONS(1129), - [anon_sym___STACKTRACE__] = ACTIONS(1129), - [sym_alias] = ACTIONS(1763), - [sym_integer] = ACTIONS(1763), - [sym_float] = ACTIONS(1763), - [sym_char] = ACTIONS(1763), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_nil] = ACTIONS(1135), - [sym_atom] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(1147), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1149), - [anon_sym_LT_LT] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1161), - [anon_sym_not] = ACTIONS(1161), - [anon_sym_AT] = ACTIONS(1163), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1165), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1167), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1169), - }, - [445] = { - [sym__expression] = STATE(2553), - [sym_block] = STATE(2553), - [sym__identifier] = STATE(60), - [sym_identifier] = STATE(60), - [sym_special_identifier] = STATE(60), - [sym_boolean] = STATE(2553), - [sym_nil] = STATE(2553), - [sym__atom] = STATE(2553), - [sym_quoted_atom] = STATE(2553), - [sym__quoted_i_double] = STATE(2414), - [sym__quoted_i_single] = STATE(2413), - [sym__quoted_i_heredoc_single] = STATE(2413), - [sym__quoted_i_heredoc_double] = STATE(2414), - [sym_string] = STATE(2553), - [sym_charlist] = STATE(2553), - [sym_sigil] = STATE(2553), - [sym_list] = STATE(2553), - [sym_tuple] = STATE(2553), - [sym_bitstring] = STATE(2553), - [sym_map] = STATE(2553), - [sym_unary_operator] = STATE(2553), - [sym_binary_operator] = STATE(2553), - [sym_operator_identifier] = STATE(5028), - [sym_dot] = STATE(2553), - [sym_call] = STATE(2553), - [sym__call_without_parentheses] = STATE(2412), - [sym__call_with_parentheses] = STATE(2411), - [sym__local_call_without_parentheses] = STATE(2410), - [sym__local_call_with_parentheses] = STATE(1910), - [sym__local_call_just_do_block] = STATE(2409), - [sym__remote_call_without_parentheses] = STATE(2408), - [sym__remote_call_with_parentheses] = STATE(1916), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(1975), - [sym__anonymous_dot] = STATE(4890), - [sym__double_call] = STATE(2407), - [sym_access_call] = STATE(2553), - [sym_anonymous_function] = STATE(2553), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(556), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(558), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(1765), - [sym_integer] = ACTIONS(1765), - [sym_float] = ACTIONS(1765), - [sym_char] = ACTIONS(1765), - [anon_sym_true] = ACTIONS(562), - [anon_sym_false] = ACTIONS(562), - [anon_sym_nil] = ACTIONS(564), - [sym_atom] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(566), - [anon_sym_SQUOTE] = ACTIONS(568), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), - [anon_sym_LBRACE] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(578), - [anon_sym_LT_LT] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_CARET] = ACTIONS(588), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), - [anon_sym_not] = ACTIONS(588), - [anon_sym_AT] = ACTIONS(590), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(594), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(600), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(602), - }, - [446] = { - [sym__expression] = STATE(2690), - [sym_block] = STATE(2690), - [sym__identifier] = STATE(47), - [sym_identifier] = STATE(47), - [sym_special_identifier] = STATE(47), - [sym_boolean] = STATE(2690), - [sym_nil] = STATE(2690), - [sym__atom] = STATE(2690), - [sym_quoted_atom] = STATE(2690), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2690), - [sym_charlist] = STATE(2690), - [sym_sigil] = STATE(2690), - [sym_list] = STATE(2690), - [sym_tuple] = STATE(2690), - [sym_bitstring] = STATE(2690), - [sym_map] = STATE(2690), - [sym_unary_operator] = STATE(2690), - [sym_binary_operator] = STATE(2690), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2690), - [sym_call] = STATE(2690), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(41), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2690), - [sym_anonymous_function] = STATE(2690), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(438), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(1767), - [sym_integer] = ACTIONS(1767), - [sym_float] = ACTIONS(1767), - [sym_char] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1767), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(448), - [anon_sym_PLUS] = ACTIONS(450), - [anon_sym_DASH] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(450), - [anon_sym_CARET] = ACTIONS(450), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), - [anon_sym_not] = ACTIONS(450), - [anon_sym_AT] = ACTIONS(452), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(454), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [447] = { - [sym__expression] = STATE(2455), - [sym_block] = STATE(2455), - [sym__identifier] = STATE(47), - [sym_identifier] = STATE(47), - [sym_special_identifier] = STATE(47), - [sym_boolean] = STATE(2455), - [sym_nil] = STATE(2455), - [sym__atom] = STATE(2455), - [sym_quoted_atom] = STATE(2455), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2455), - [sym_charlist] = STATE(2455), - [sym_sigil] = STATE(2455), - [sym_list] = STATE(2455), - [sym_tuple] = STATE(2455), - [sym_bitstring] = STATE(2455), - [sym_map] = STATE(2455), - [sym_unary_operator] = STATE(2455), - [sym_binary_operator] = STATE(2455), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2455), - [sym_call] = STATE(2455), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(41), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2455), - [sym_anonymous_function] = STATE(2455), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(438), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(1769), - [sym_integer] = ACTIONS(1769), - [sym_float] = ACTIONS(1769), - [sym_char] = ACTIONS(1769), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1769), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(448), - [anon_sym_PLUS] = ACTIONS(450), - [anon_sym_DASH] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(450), - [anon_sym_CARET] = ACTIONS(450), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), - [anon_sym_not] = ACTIONS(450), - [anon_sym_AT] = ACTIONS(452), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(454), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [448] = { - [sym__expression] = STATE(2689), - [sym_block] = STATE(2689), - [sym__identifier] = STATE(47), - [sym_identifier] = STATE(47), - [sym_special_identifier] = STATE(47), - [sym_boolean] = STATE(2689), - [sym_nil] = STATE(2689), - [sym__atom] = STATE(2689), - [sym_quoted_atom] = STATE(2689), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2689), - [sym_charlist] = STATE(2689), - [sym_sigil] = STATE(2689), - [sym_list] = STATE(2689), - [sym_tuple] = STATE(2689), - [sym_bitstring] = STATE(2689), - [sym_map] = STATE(2689), - [sym_unary_operator] = STATE(2689), - [sym_binary_operator] = STATE(2689), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2689), - [sym_call] = STATE(2689), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(41), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2689), - [sym_anonymous_function] = STATE(2689), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(438), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(1771), - [sym_integer] = ACTIONS(1771), - [sym_float] = ACTIONS(1771), - [sym_char] = ACTIONS(1771), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1771), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(448), - [anon_sym_PLUS] = ACTIONS(450), - [anon_sym_DASH] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(450), - [anon_sym_CARET] = ACTIONS(450), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), - [anon_sym_not] = ACTIONS(450), - [anon_sym_AT] = ACTIONS(452), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(454), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [449] = { - [sym__expression] = STATE(2688), - [sym_block] = STATE(2688), - [sym__identifier] = STATE(47), - [sym_identifier] = STATE(47), - [sym_special_identifier] = STATE(47), - [sym_boolean] = STATE(2688), - [sym_nil] = STATE(2688), - [sym__atom] = STATE(2688), - [sym_quoted_atom] = STATE(2688), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2688), - [sym_charlist] = STATE(2688), - [sym_sigil] = STATE(2688), - [sym_list] = STATE(2688), - [sym_tuple] = STATE(2688), - [sym_bitstring] = STATE(2688), - [sym_map] = STATE(2688), - [sym_unary_operator] = STATE(2688), - [sym_binary_operator] = STATE(2688), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2688), - [sym_call] = STATE(2688), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(41), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2688), - [sym_anonymous_function] = STATE(2688), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(438), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(1773), - [sym_integer] = ACTIONS(1773), - [sym_float] = ACTIONS(1773), - [sym_char] = ACTIONS(1773), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1773), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(448), - [anon_sym_PLUS] = ACTIONS(450), - [anon_sym_DASH] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(450), - [anon_sym_CARET] = ACTIONS(450), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), - [anon_sym_not] = ACTIONS(450), - [anon_sym_AT] = ACTIONS(452), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(454), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [450] = { - [sym__expression] = STATE(2701), - [sym_block] = STATE(2701), - [sym__identifier] = STATE(47), - [sym_identifier] = STATE(47), - [sym_special_identifier] = STATE(47), - [sym_boolean] = STATE(2701), - [sym_nil] = STATE(2701), - [sym__atom] = STATE(2701), - [sym_quoted_atom] = STATE(2701), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2701), - [sym_charlist] = STATE(2701), - [sym_sigil] = STATE(2701), - [sym_list] = STATE(2701), - [sym_tuple] = STATE(2701), - [sym_bitstring] = STATE(2701), - [sym_map] = STATE(2701), - [sym_unary_operator] = STATE(2701), - [sym_binary_operator] = STATE(2701), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2701), - [sym_call] = STATE(2701), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(41), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2701), - [sym_anonymous_function] = STATE(2701), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(438), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(1775), - [sym_integer] = ACTIONS(1775), - [sym_float] = ACTIONS(1775), - [sym_char] = ACTIONS(1775), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1775), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(448), - [anon_sym_PLUS] = ACTIONS(450), - [anon_sym_DASH] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(450), - [anon_sym_CARET] = ACTIONS(450), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), - [anon_sym_not] = ACTIONS(450), - [anon_sym_AT] = ACTIONS(452), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(454), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [451] = { - [sym__expression] = STATE(2700), - [sym_block] = STATE(2700), - [sym__identifier] = STATE(47), - [sym_identifier] = STATE(47), - [sym_special_identifier] = STATE(47), - [sym_boolean] = STATE(2700), - [sym_nil] = STATE(2700), - [sym__atom] = STATE(2700), - [sym_quoted_atom] = STATE(2700), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2700), - [sym_charlist] = STATE(2700), - [sym_sigil] = STATE(2700), - [sym_list] = STATE(2700), - [sym_tuple] = STATE(2700), - [sym_bitstring] = STATE(2700), - [sym_map] = STATE(2700), - [sym_unary_operator] = STATE(2700), - [sym_binary_operator] = STATE(2700), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2700), - [sym_call] = STATE(2700), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(41), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2700), - [sym_anonymous_function] = STATE(2700), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(438), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(1777), - [sym_integer] = ACTIONS(1777), - [sym_float] = ACTIONS(1777), - [sym_char] = ACTIONS(1777), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1777), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(448), - [anon_sym_PLUS] = ACTIONS(450), - [anon_sym_DASH] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(450), - [anon_sym_CARET] = ACTIONS(450), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), - [anon_sym_not] = ACTIONS(450), - [anon_sym_AT] = ACTIONS(452), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(454), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [452] = { + [422] = { [sym__expression] = STATE(2699), [sym_block] = STATE(2699), - [sym__identifier] = STATE(47), - [sym_identifier] = STATE(47), - [sym_special_identifier] = STATE(47), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), [sym_boolean] = STATE(2699), [sym_nil] = STATE(2699), [sym__atom] = STATE(2699), [sym_quoted_atom] = STATE(2699), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), + [sym__quoted_i_double] = STATE(3664), + [sym__quoted_i_single] = STATE(3697), + [sym__quoted_i_heredoc_single] = STATE(3698), + [sym__quoted_i_heredoc_double] = STATE(3702), [sym_string] = STATE(2699), [sym_charlist] = STATE(2699), [sym_sigil] = STATE(2699), @@ -83442,61 +80309,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_map] = STATE(2699), [sym_unary_operator] = STATE(2699), [sym_binary_operator] = STATE(2699), - [sym_operator_identifier] = STATE(5035), + [sym_operator_identifier] = STATE(5655), [sym_dot] = STATE(2699), [sym_call] = STATE(2699), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(41), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), + [sym__call_without_parentheses] = STATE(3705), + [sym__call_with_parentheses] = STATE(3725), + [sym__local_call_without_parentheses] = STATE(3765), + [sym__local_call_with_parentheses] = STATE(2681), + [sym__local_call_just_do_block] = STATE(3808), + [sym__remote_call_without_parentheses] = STATE(3810), + [sym__remote_call_with_parentheses] = STATE(2682), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2683), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(3811), [sym_access_call] = STATE(2699), [sym_anonymous_function] = STATE(2699), + [ts_builtin_sym_end] = ACTIONS(1729), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(438), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(1779), - [sym_integer] = ACTIONS(1779), - [sym_float] = ACTIONS(1779), - [sym_char] = ACTIONS(1779), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1779), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), + [sym_alias] = ACTIONS(1731), + [sym_integer] = ACTIONS(1731), + [sym_float] = ACTIONS(1731), + [sym_char] = ACTIONS(1731), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), + [sym_atom] = ACTIONS(1731), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(448), - [anon_sym_PLUS] = ACTIONS(450), - [anon_sym_DASH] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(450), - [anon_sym_CARET] = ACTIONS(450), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), - [anon_sym_not] = ACTIONS(450), - [anon_sym_AT] = ACTIONS(452), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -83536,928 +80404,3073 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), + [anon_sym_fn] = ACTIONS(53), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(454), + [sym__before_unary_op] = ACTIONS(55), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), + [sym__quoted_atom_start] = ACTIONS(59), }, - [453] = { - [sym__expression] = STATE(2686), - [sym_block] = STATE(2686), - [sym__identifier] = STATE(47), - [sym_identifier] = STATE(47), - [sym_special_identifier] = STATE(47), - [sym_boolean] = STATE(2686), - [sym_nil] = STATE(2686), - [sym__atom] = STATE(2686), - [sym_quoted_atom] = STATE(2686), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2686), - [sym_charlist] = STATE(2686), - [sym_sigil] = STATE(2686), - [sym_list] = STATE(2686), - [sym_tuple] = STATE(2686), - [sym_bitstring] = STATE(2686), - [sym_map] = STATE(2686), - [sym_unary_operator] = STATE(2686), - [sym_binary_operator] = STATE(2686), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2686), - [sym_call] = STATE(2686), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(41), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2686), - [sym_anonymous_function] = STATE(2686), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(438), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(1781), - [sym_integer] = ACTIONS(1781), - [sym_float] = ACTIONS(1781), - [sym_char] = ACTIONS(1781), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1781), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(448), - [anon_sym_PLUS] = ACTIONS(450), - [anon_sym_DASH] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(450), - [anon_sym_CARET] = ACTIONS(450), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), - [anon_sym_not] = ACTIONS(450), - [anon_sym_AT] = ACTIONS(452), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(454), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [454] = { - [sym__expression] = STATE(3339), - [sym_block] = STATE(3339), - [sym__identifier] = STATE(64), - [sym_identifier] = STATE(64), - [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3339), - [sym_nil] = STATE(3339), - [sym__atom] = STATE(3339), - [sym_quoted_atom] = STATE(3339), - [sym__quoted_i_double] = STATE(3395), - [sym__quoted_i_single] = STATE(3394), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3339), - [sym_charlist] = STATE(3339), - [sym_sigil] = STATE(3339), - [sym_list] = STATE(3339), - [sym_tuple] = STATE(3339), - [sym_bitstring] = STATE(3339), - [sym_map] = STATE(3339), - [sym_unary_operator] = STATE(3339), - [sym_binary_operator] = STATE(3339), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3339), - [sym_call] = STATE(3339), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), - [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3339), - [sym_anonymous_function] = STATE(3339), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1361), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(828), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1783), - [sym_integer] = ACTIONS(1783), - [sym_float] = ACTIONS(1783), - [sym_char] = ACTIONS(1783), - [anon_sym_true] = ACTIONS(834), - [anon_sym_false] = ACTIONS(834), - [anon_sym_nil] = ACTIONS(836), - [sym_atom] = ACTIONS(1783), - [anon_sym_DQUOTE] = ACTIONS(838), - [anon_sym_SQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(850), - [anon_sym_LT_LT] = ACTIONS(852), - [anon_sym_PERCENT] = ACTIONS(854), - [anon_sym_AMP] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_BANG] = ACTIONS(858), - [anon_sym_CARET] = ACTIONS(858), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), - [anon_sym_not] = ACTIONS(858), - [anon_sym_AT] = ACTIONS(860), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(864), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(866), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(868), - }, - [455] = { - [sym__expression] = STATE(2685), - [sym_block] = STATE(2685), - [sym__identifier] = STATE(47), - [sym_identifier] = STATE(47), - [sym_special_identifier] = STATE(47), - [sym_boolean] = STATE(2685), - [sym_nil] = STATE(2685), - [sym__atom] = STATE(2685), - [sym_quoted_atom] = STATE(2685), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2685), - [sym_charlist] = STATE(2685), - [sym_sigil] = STATE(2685), - [sym_list] = STATE(2685), - [sym_tuple] = STATE(2685), - [sym_bitstring] = STATE(2685), - [sym_map] = STATE(2685), - [sym_unary_operator] = STATE(2685), - [sym_binary_operator] = STATE(2685), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2685), - [sym_call] = STATE(2685), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(41), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2685), - [sym_anonymous_function] = STATE(2685), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(438), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(1785), - [sym_integer] = ACTIONS(1785), - [sym_float] = ACTIONS(1785), - [sym_char] = ACTIONS(1785), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(448), - [anon_sym_PLUS] = ACTIONS(450), - [anon_sym_DASH] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(450), - [anon_sym_CARET] = ACTIONS(450), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), - [anon_sym_not] = ACTIONS(450), - [anon_sym_AT] = ACTIONS(452), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(454), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [456] = { - [sym__expression] = STATE(2698), - [sym_block] = STATE(2698), - [sym__identifier] = STATE(47), - [sym_identifier] = STATE(47), - [sym_special_identifier] = STATE(47), - [sym_boolean] = STATE(2698), - [sym_nil] = STATE(2698), - [sym__atom] = STATE(2698), - [sym_quoted_atom] = STATE(2698), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2698), - [sym_charlist] = STATE(2698), - [sym_sigil] = STATE(2698), - [sym_list] = STATE(2698), - [sym_tuple] = STATE(2698), - [sym_bitstring] = STATE(2698), - [sym_map] = STATE(2698), - [sym_unary_operator] = STATE(2698), - [sym_binary_operator] = STATE(2698), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2698), - [sym_call] = STATE(2698), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(41), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2698), - [sym_anonymous_function] = STATE(2698), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(438), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(1787), - [sym_integer] = ACTIONS(1787), - [sym_float] = ACTIONS(1787), - [sym_char] = ACTIONS(1787), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(448), - [anon_sym_PLUS] = ACTIONS(450), - [anon_sym_DASH] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(450), - [anon_sym_CARET] = ACTIONS(450), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), - [anon_sym_not] = ACTIONS(450), - [anon_sym_AT] = ACTIONS(452), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(454), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [457] = { - [sym__expression] = STATE(3340), - [sym_block] = STATE(3340), - [sym__identifier] = STATE(64), - [sym_identifier] = STATE(64), - [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3340), - [sym_nil] = STATE(3340), - [sym__atom] = STATE(3340), - [sym_quoted_atom] = STATE(3340), - [sym__quoted_i_double] = STATE(3395), - [sym__quoted_i_single] = STATE(3394), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3340), - [sym_charlist] = STATE(3340), - [sym_sigil] = STATE(3340), - [sym_list] = STATE(3340), - [sym_tuple] = STATE(3340), - [sym_bitstring] = STATE(3340), - [sym_map] = STATE(3340), - [sym_unary_operator] = STATE(3340), - [sym_binary_operator] = STATE(3340), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3340), - [sym_call] = STATE(3340), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), - [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3340), - [sym_anonymous_function] = STATE(3340), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1361), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(828), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1789), - [sym_integer] = ACTIONS(1789), - [sym_float] = ACTIONS(1789), - [sym_char] = ACTIONS(1789), - [anon_sym_true] = ACTIONS(834), - [anon_sym_false] = ACTIONS(834), - [anon_sym_nil] = ACTIONS(836), - [sym_atom] = ACTIONS(1789), - [anon_sym_DQUOTE] = ACTIONS(838), - [anon_sym_SQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(850), - [anon_sym_LT_LT] = ACTIONS(852), - [anon_sym_PERCENT] = ACTIONS(854), - [anon_sym_AMP] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_BANG] = ACTIONS(858), - [anon_sym_CARET] = ACTIONS(858), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), - [anon_sym_not] = ACTIONS(858), - [anon_sym_AT] = ACTIONS(860), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(864), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(866), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(868), - }, - [458] = { - [sym__expression] = STATE(1387), - [sym_block] = STATE(1387), - [sym__identifier] = STATE(47), - [sym_identifier] = STATE(47), - [sym_special_identifier] = STATE(47), - [sym_boolean] = STATE(1387), - [sym_nil] = STATE(1387), - [sym__atom] = STATE(1387), - [sym_quoted_atom] = STATE(1387), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(1387), - [sym_charlist] = STATE(1387), - [sym_sigil] = STATE(1387), - [sym_list] = STATE(1387), - [sym_tuple] = STATE(1387), - [sym_bitstring] = STATE(1387), - [sym_map] = STATE(1387), - [sym_unary_operator] = STATE(1387), - [sym_binary_operator] = STATE(1387), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(1387), - [sym_call] = STATE(1387), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(41), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(1387), - [sym_anonymous_function] = STATE(1387), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(438), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(1791), - [sym_integer] = ACTIONS(1791), - [sym_float] = ACTIONS(1791), - [sym_char] = ACTIONS(1791), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1791), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(448), - [anon_sym_PLUS] = ACTIONS(450), - [anon_sym_DASH] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(450), - [anon_sym_CARET] = ACTIONS(450), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), - [anon_sym_not] = ACTIONS(450), - [anon_sym_AT] = ACTIONS(452), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(454), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [459] = { - [sym__expression] = STATE(3036), - [sym_block] = STATE(3036), - [sym__identifier] = STATE(63), - [sym_identifier] = STATE(63), - [sym_special_identifier] = STATE(63), - [sym_boolean] = STATE(3036), - [sym_nil] = STATE(3036), - [sym__atom] = STATE(3036), - [sym_quoted_atom] = STATE(3036), - [sym__quoted_i_double] = STATE(2988), - [sym__quoted_i_single] = STATE(2987), - [sym__quoted_i_heredoc_single] = STATE(2987), - [sym__quoted_i_heredoc_double] = STATE(2988), - [sym_string] = STATE(3036), - [sym_charlist] = STATE(3036), - [sym_sigil] = STATE(3036), - [sym_list] = STATE(3036), - [sym_tuple] = STATE(3036), - [sym_bitstring] = STATE(3036), - [sym_map] = STATE(3036), - [sym_unary_operator] = STATE(3036), - [sym_binary_operator] = STATE(3036), - [sym_operator_identifier] = STATE(5020), - [sym_dot] = STATE(3036), - [sym_call] = STATE(3036), - [sym__call_without_parentheses] = STATE(2986), - [sym__call_with_parentheses] = STATE(2985), - [sym__local_call_without_parentheses] = STATE(2984), - [sym__local_call_with_parentheses] = STATE(2047), - [sym__local_call_just_do_block] = STATE(2983), - [sym__remote_call_without_parentheses] = STATE(2982), - [sym__remote_call_with_parentheses] = STATE(2050), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(2052), - [sym__anonymous_dot] = STATE(4887), - [sym__double_call] = STATE(2981), - [sym_access_call] = STATE(3036), - [sym_anonymous_function] = STATE(3036), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(604), - [aux_sym_identifier_token1] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(606), - [sym_unused_identifier] = ACTIONS(608), - [anon_sym___MODULE__] = ACTIONS(610), - [anon_sym___DIR__] = ACTIONS(610), - [anon_sym___ENV__] = ACTIONS(610), - [anon_sym___CALLER__] = ACTIONS(610), - [anon_sym___STACKTRACE__] = ACTIONS(610), - [sym_alias] = ACTIONS(1793), - [sym_integer] = ACTIONS(1793), - [sym_float] = ACTIONS(1793), - [sym_char] = ACTIONS(1793), - [anon_sym_true] = ACTIONS(614), - [anon_sym_false] = ACTIONS(614), - [anon_sym_nil] = ACTIONS(616), - [sym_atom] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(618), - [anon_sym_SQUOTE] = ACTIONS(620), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(624), - [anon_sym_LBRACE] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(630), - [anon_sym_LT_LT] = ACTIONS(634), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_AMP] = ACTIONS(638), - [anon_sym_PLUS] = ACTIONS(640), - [anon_sym_DASH] = ACTIONS(640), - [anon_sym_BANG] = ACTIONS(640), - [anon_sym_CARET] = ACTIONS(640), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(640), - [anon_sym_not] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(642), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(646), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(652), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(654), - }, - [460] = { - [sym__expression] = STATE(3469), - [sym_block] = STATE(3469), + [423] = { + [sym__expression] = STATE(2868), + [sym_block] = STATE(2868), [sym__identifier] = STATE(51), [sym_identifier] = STATE(51), [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3469), - [sym_nil] = STATE(3469), - [sym__atom] = STATE(3469), - [sym_quoted_atom] = STATE(3469), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3469), - [sym_charlist] = STATE(3469), - [sym_sigil] = STATE(3469), - [sym_list] = STATE(3469), - [sym_tuple] = STATE(3469), - [sym_bitstring] = STATE(3469), - [sym_map] = STATE(3469), - [sym_unary_operator] = STATE(3469), - [sym_binary_operator] = STATE(3469), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3469), - [sym_call] = STATE(3469), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3469), - [sym_anonymous_function] = STATE(3469), + [sym_boolean] = STATE(2868), + [sym_nil] = STATE(2868), + [sym__atom] = STATE(2868), + [sym_quoted_atom] = STATE(2868), + [sym__quoted_i_double] = STATE(2738), + [sym__quoted_i_single] = STATE(2766), + [sym__quoted_i_heredoc_single] = STATE(2751), + [sym__quoted_i_heredoc_double] = STATE(2852), + [sym_string] = STATE(2868), + [sym_charlist] = STATE(2868), + [sym_sigil] = STATE(2868), + [sym_list] = STATE(2868), + [sym_tuple] = STATE(2868), + [sym_bitstring] = STATE(2868), + [sym_map] = STATE(2868), + [sym_unary_operator] = STATE(2868), + [sym__capture_expression] = STATE(2892), + [sym_binary_operator] = STATE(2868), + [sym_operator_identifier] = STATE(5596), + [sym_dot] = STATE(2868), + [sym_call] = STATE(2868), + [sym__call_without_parentheses] = STATE(2764), + [sym__call_with_parentheses] = STATE(2765), + [sym__local_call_without_parentheses] = STATE(2767), + [sym__local_call_with_parentheses] = STATE(2120), + [sym__local_call_just_do_block] = STATE(2833), + [sym__remote_call_without_parentheses] = STATE(2843), + [sym__remote_call_with_parentheses] = STATE(2108), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2107), + [sym__anonymous_dot] = STATE(5500), + [sym__double_call] = STATE(2844), + [sym_access_call] = STATE(2868), + [sym_anonymous_function] = STATE(2868), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1723), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(1725), + [sym_integer] = ACTIONS(1733), + [sym_float] = ACTIONS(1725), + [sym_char] = ACTIONS(1725), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(541), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(545), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(547), + }, + [424] = { + [sym__expression] = STATE(4049), + [sym_block] = STATE(4049), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(4049), + [sym_nil] = STATE(4049), + [sym__atom] = STATE(4049), + [sym_quoted_atom] = STATE(4049), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(4049), + [sym_charlist] = STATE(4049), + [sym_sigil] = STATE(4049), + [sym_list] = STATE(4049), + [sym_tuple] = STATE(4049), + [sym_bitstring] = STATE(4049), + [sym_map] = STATE(4049), + [sym_unary_operator] = STATE(4049), + [sym_binary_operator] = STATE(4049), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(4049), + [sym_call] = STATE(4049), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(4049), + [sym_anonymous_function] = STATE(4049), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1735), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1535), + [sym_integer] = ACTIONS(1535), + [sym_float] = ACTIONS(1535), + [sym_char] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [425] = { + [sym__expression] = STATE(4049), + [sym_block] = STATE(4049), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(4049), + [sym_nil] = STATE(4049), + [sym__atom] = STATE(4049), + [sym_quoted_atom] = STATE(4049), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(4049), + [sym_charlist] = STATE(4049), + [sym_sigil] = STATE(4049), + [sym_list] = STATE(4049), + [sym_tuple] = STATE(4049), + [sym_bitstring] = STATE(4049), + [sym_map] = STATE(4049), + [sym_unary_operator] = STATE(4049), + [sym_binary_operator] = STATE(4049), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(4049), + [sym_call] = STATE(4049), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(4049), + [sym_anonymous_function] = STATE(4049), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1737), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1535), + [sym_integer] = ACTIONS(1535), + [sym_float] = ACTIONS(1535), + [sym_char] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [426] = { + [sym__expression] = STATE(3840), + [sym_block] = STATE(3840), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3840), + [sym_nil] = STATE(3840), + [sym__atom] = STATE(3840), + [sym_quoted_atom] = STATE(3840), + [sym__quoted_i_double] = STATE(3664), + [sym__quoted_i_single] = STATE(3697), + [sym__quoted_i_heredoc_single] = STATE(3698), + [sym__quoted_i_heredoc_double] = STATE(3702), + [sym_string] = STATE(3840), + [sym_charlist] = STATE(3840), + [sym_sigil] = STATE(3840), + [sym_list] = STATE(3840), + [sym_tuple] = STATE(3840), + [sym_bitstring] = STATE(3840), + [sym_map] = STATE(3840), + [sym_unary_operator] = STATE(3840), + [sym__capture_expression] = STATE(3845), + [sym_binary_operator] = STATE(3840), + [sym_operator_identifier] = STATE(5655), + [sym_dot] = STATE(3840), + [sym_call] = STATE(3840), + [sym__call_without_parentheses] = STATE(3705), + [sym__call_with_parentheses] = STATE(3725), + [sym__local_call_without_parentheses] = STATE(3765), + [sym__local_call_with_parentheses] = STATE(2681), + [sym__local_call_just_do_block] = STATE(3808), + [sym__remote_call_without_parentheses] = STATE(3810), + [sym__remote_call_with_parentheses] = STATE(2682), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2683), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(3811), + [sym_access_call] = STATE(3840), + [sym_anonymous_function] = STATE(3840), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1697), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), + [sym_alias] = ACTIONS(1699), + [sym_integer] = ACTIONS(1739), + [sym_float] = ACTIONS(1699), + [sym_char] = ACTIONS(1699), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), + [sym_atom] = ACTIONS(1699), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(55), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(59), + }, + [427] = { + [sym__expression] = STATE(4049), + [sym_block] = STATE(4049), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(4049), + [sym_nil] = STATE(4049), + [sym__atom] = STATE(4049), + [sym_quoted_atom] = STATE(4049), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(4049), + [sym_charlist] = STATE(4049), + [sym_sigil] = STATE(4049), + [sym_list] = STATE(4049), + [sym_tuple] = STATE(4049), + [sym_bitstring] = STATE(4049), + [sym_map] = STATE(4049), + [sym_unary_operator] = STATE(4049), + [sym_binary_operator] = STATE(4049), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(4049), + [sym_call] = STATE(4049), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(4049), + [sym_anonymous_function] = STATE(4049), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1741), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1535), + [sym_integer] = ACTIONS(1535), + [sym_float] = ACTIONS(1535), + [sym_char] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [428] = { + [sym__expression] = STATE(4159), + [sym_block] = STATE(4159), + [sym__identifier] = STATE(103), + [sym_identifier] = STATE(103), + [sym_special_identifier] = STATE(103), + [sym_boolean] = STATE(4159), + [sym_nil] = STATE(4159), + [sym__atom] = STATE(4155), + [sym_quoted_atom] = STATE(4155), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4159), + [sym_charlist] = STATE(4159), + [sym_sigil] = STATE(4159), + [sym_list] = STATE(4159), + [sym_tuple] = STATE(4159), + [sym_bitstring] = STATE(4159), + [sym_map] = STATE(4159), + [sym_struct] = STATE(5587), + [sym_unary_operator] = STATE(4155), + [sym_binary_operator] = STATE(4159), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4155), + [sym_call] = STATE(4159), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(4151), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4159), + [sym_anonymous_function] = STATE(4159), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1567), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1569), + [sym_integer] = ACTIONS(1571), + [sym_float] = ACTIONS(1571), + [sym_char] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1743), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1507), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AT] = ACTIONS(1509), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1511), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [429] = { + [sym__expression] = STATE(2878), + [sym_block] = STATE(2878), + [sym__identifier] = STATE(41), + [sym_identifier] = STATE(41), + [sym_special_identifier] = STATE(41), + [sym_boolean] = STATE(2878), + [sym_nil] = STATE(2878), + [sym__atom] = STATE(2878), + [sym_quoted_atom] = STATE(2878), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(2878), + [sym_charlist] = STATE(2878), + [sym_sigil] = STATE(2878), + [sym_list] = STATE(2878), + [sym_tuple] = STATE(2878), + [sym_bitstring] = STATE(2878), + [sym_map] = STATE(2878), + [sym_unary_operator] = STATE(2878), + [sym__capture_expression] = STATE(1501), + [sym_binary_operator] = STATE(2878), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(2878), + [sym_call] = STATE(2878), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(2878), + [sym_anonymous_function] = STATE(2878), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1669), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(1745), + [sym_integer] = ACTIONS(1673), + [sym_float] = ACTIONS(1745), + [sym_char] = ACTIONS(1745), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1745), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(453), + [anon_sym_not] = ACTIONS(453), + [anon_sym_AT] = ACTIONS(455), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(457), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [430] = { + [sym__expression] = STATE(4049), + [sym_block] = STATE(4049), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(4049), + [sym_nil] = STATE(4049), + [sym__atom] = STATE(4049), + [sym_quoted_atom] = STATE(4049), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(4049), + [sym_charlist] = STATE(4049), + [sym_sigil] = STATE(4049), + [sym_list] = STATE(4049), + [sym_tuple] = STATE(4049), + [sym_bitstring] = STATE(4049), + [sym_map] = STATE(4049), + [sym_unary_operator] = STATE(4049), + [sym_binary_operator] = STATE(4049), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(4049), + [sym_call] = STATE(4049), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(4049), + [sym_anonymous_function] = STATE(4049), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1747), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1535), + [sym_integer] = ACTIONS(1535), + [sym_float] = ACTIONS(1535), + [sym_char] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [431] = { + [sym__expression] = STATE(4049), + [sym_block] = STATE(4049), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(4049), + [sym_nil] = STATE(4049), + [sym__atom] = STATE(4049), + [sym_quoted_atom] = STATE(4049), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(4049), + [sym_charlist] = STATE(4049), + [sym_sigil] = STATE(4049), + [sym_list] = STATE(4049), + [sym_tuple] = STATE(4049), + [sym_bitstring] = STATE(4049), + [sym_map] = STATE(4049), + [sym_unary_operator] = STATE(4049), + [sym_binary_operator] = STATE(4049), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(4049), + [sym_call] = STATE(4049), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(4049), + [sym_anonymous_function] = STATE(4049), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1749), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1535), + [sym_integer] = ACTIONS(1535), + [sym_float] = ACTIONS(1535), + [sym_char] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [432] = { + [sym__expression] = STATE(4049), + [sym_block] = STATE(4049), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(4049), + [sym_nil] = STATE(4049), + [sym__atom] = STATE(4049), + [sym_quoted_atom] = STATE(4049), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(4049), + [sym_charlist] = STATE(4049), + [sym_sigil] = STATE(4049), + [sym_list] = STATE(4049), + [sym_tuple] = STATE(4049), + [sym_bitstring] = STATE(4049), + [sym_map] = STATE(4049), + [sym_unary_operator] = STATE(4049), + [sym_binary_operator] = STATE(4049), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(4049), + [sym_call] = STATE(4049), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(4049), + [sym_anonymous_function] = STATE(4049), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1751), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1535), + [sym_integer] = ACTIONS(1535), + [sym_float] = ACTIONS(1535), + [sym_char] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [433] = { + [sym__expression] = STATE(1522), + [sym_block] = STATE(1522), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1522), + [sym_nil] = STATE(1522), + [sym__atom] = STATE(1522), + [sym_quoted_atom] = STATE(1522), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(1522), + [sym_charlist] = STATE(1522), + [sym_sigil] = STATE(1522), + [sym_list] = STATE(1522), + [sym_tuple] = STATE(1522), + [sym_bitstring] = STATE(1522), + [sym_map] = STATE(1522), + [sym_unary_operator] = STATE(1522), + [sym__capture_expression] = STATE(1501), + [sym_binary_operator] = STATE(1522), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(1522), + [sym_call] = STATE(1522), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(1522), + [sym_anonymous_function] = STATE(1522), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1669), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(1677), + [sym_integer] = ACTIONS(1673), + [sym_float] = ACTIONS(1677), + [sym_char] = ACTIONS(1677), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1677), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [434] = { + [sym__expression] = STATE(2097), + [sym_block] = STATE(2097), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2097), + [sym_nil] = STATE(2097), + [sym__atom] = STATE(2097), + [sym_quoted_atom] = STATE(2097), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2097), + [sym_charlist] = STATE(2097), + [sym_sigil] = STATE(2097), + [sym_list] = STATE(2097), + [sym_tuple] = STATE(2097), + [sym_bitstring] = STATE(2097), + [sym_map] = STATE(2097), + [sym_unary_operator] = STATE(2097), + [sym__capture_expression] = STATE(1822), + [sym_binary_operator] = STATE(2097), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2097), + [sym_call] = STATE(2097), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(2097), + [sym_anonymous_function] = STATE(2097), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1543), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(1557), + [sym_integer] = ACTIONS(1663), + [sym_float] = ACTIONS(1557), + [sym_char] = ACTIONS(1557), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1557), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [435] = { + [sym__expression] = STATE(4049), + [sym_block] = STATE(4049), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(4049), + [sym_nil] = STATE(4049), + [sym__atom] = STATE(4049), + [sym_quoted_atom] = STATE(4049), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(4049), + [sym_charlist] = STATE(4049), + [sym_sigil] = STATE(4049), + [sym_list] = STATE(4049), + [sym_tuple] = STATE(4049), + [sym_bitstring] = STATE(4049), + [sym_map] = STATE(4049), + [sym_unary_operator] = STATE(4049), + [sym_binary_operator] = STATE(4049), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(4049), + [sym_call] = STATE(4049), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(4049), + [sym_anonymous_function] = STATE(4049), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1753), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1535), + [sym_integer] = ACTIONS(1535), + [sym_float] = ACTIONS(1535), + [sym_char] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [436] = { + [sym__expression] = STATE(3202), + [sym_block] = STATE(3202), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3202), + [sym_nil] = STATE(3202), + [sym__atom] = STATE(3202), + [sym_quoted_atom] = STATE(3202), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3202), + [sym_charlist] = STATE(3202), + [sym_sigil] = STATE(3202), + [sym_list] = STATE(3202), + [sym_tuple] = STATE(3202), + [sym_bitstring] = STATE(3202), + [sym_map] = STATE(3202), + [sym_unary_operator] = STATE(3202), + [sym__capture_expression] = STATE(3175), + [sym_binary_operator] = STATE(3202), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3202), + [sym_call] = STATE(3202), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3202), + [sym_anonymous_function] = STATE(3202), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1579), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1717), + [sym_integer] = ACTIONS(1585), + [sym_float] = ACTIONS(1717), + [sym_char] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [437] = { + [sym__expression] = STATE(2379), + [sym_block] = STATE(2379), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2379), + [sym_nil] = STATE(2379), + [sym__atom] = STATE(2379), + [sym_quoted_atom] = STATE(2379), + [sym__quoted_i_double] = STATE(1250), + [sym__quoted_i_single] = STATE(1249), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(2379), + [sym_charlist] = STATE(2379), + [sym_sigil] = STATE(2379), + [sym_list] = STATE(2379), + [sym_tuple] = STATE(2379), + [sym_bitstring] = STATE(2379), + [sym_map] = STATE(2379), + [sym_unary_operator] = STATE(2379), + [sym__capture_expression] = STATE(1140), + [sym_binary_operator] = STATE(2379), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(2379), + [sym_call] = STATE(2379), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(2379), + [sym_anonymous_function] = STATE(2379), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1683), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(461), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), + [sym_alias] = ACTIONS(1755), + [sym_integer] = ACTIONS(1687), + [sym_float] = ACTIONS(1755), + [sym_char] = ACTIONS(1755), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(1755), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(476), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_CARET] = ACTIONS(476), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(476), + [anon_sym_not] = ACTIONS(476), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(480), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [438] = { + [sym__expression] = STATE(2379), + [sym_block] = STATE(2379), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2379), + [sym_nil] = STATE(2379), + [sym__atom] = STATE(2379), + [sym_quoted_atom] = STATE(2379), + [sym__quoted_i_double] = STATE(1250), + [sym__quoted_i_single] = STATE(1249), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(2379), + [sym_charlist] = STATE(2379), + [sym_sigil] = STATE(2379), + [sym_list] = STATE(2379), + [sym_tuple] = STATE(2379), + [sym_bitstring] = STATE(2379), + [sym_map] = STATE(2379), + [sym_unary_operator] = STATE(2379), + [sym__capture_expression] = STATE(1195), + [sym_binary_operator] = STATE(2379), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(2379), + [sym_call] = STATE(2379), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(2379), + [sym_anonymous_function] = STATE(2379), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1683), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(461), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), + [sym_alias] = ACTIONS(1755), + [sym_integer] = ACTIONS(1705), + [sym_float] = ACTIONS(1755), + [sym_char] = ACTIONS(1755), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(1755), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(476), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_CARET] = ACTIONS(476), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(476), + [anon_sym_not] = ACTIONS(476), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(480), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [439] = { + [sym__expression] = STATE(4049), + [sym_block] = STATE(4049), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(4049), + [sym_nil] = STATE(4049), + [sym__atom] = STATE(4049), + [sym_quoted_atom] = STATE(4049), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(4049), + [sym_charlist] = STATE(4049), + [sym_sigil] = STATE(4049), + [sym_list] = STATE(4049), + [sym_tuple] = STATE(4049), + [sym_bitstring] = STATE(4049), + [sym_map] = STATE(4049), + [sym_unary_operator] = STATE(4049), + [sym_binary_operator] = STATE(4049), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(4049), + [sym_call] = STATE(4049), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(4049), + [sym_anonymous_function] = STATE(4049), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1757), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1535), + [sym_integer] = ACTIONS(1535), + [sym_float] = ACTIONS(1535), + [sym_char] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [440] = { + [sym__expression] = STATE(2878), + [sym_block] = STATE(2878), + [sym__identifier] = STATE(41), + [sym_identifier] = STATE(41), + [sym_special_identifier] = STATE(41), + [sym_boolean] = STATE(2878), + [sym_nil] = STATE(2878), + [sym__atom] = STATE(2878), + [sym_quoted_atom] = STATE(2878), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(2878), + [sym_charlist] = STATE(2878), + [sym_sigil] = STATE(2878), + [sym_list] = STATE(2878), + [sym_tuple] = STATE(2878), + [sym_bitstring] = STATE(2878), + [sym_map] = STATE(2878), + [sym_unary_operator] = STATE(2878), + [sym__capture_expression] = STATE(1447), + [sym_binary_operator] = STATE(2878), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(2878), + [sym_call] = STATE(2878), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(2878), + [sym_anonymous_function] = STATE(2878), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1669), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(1745), + [sym_integer] = ACTIONS(1679), + [sym_float] = ACTIONS(1745), + [sym_char] = ACTIONS(1745), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1745), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(453), + [anon_sym_not] = ACTIONS(453), + [anon_sym_AT] = ACTIONS(455), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(457), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [441] = { + [sym__expression] = STATE(4159), + [sym_block] = STATE(4159), + [sym__identifier] = STATE(103), + [sym_identifier] = STATE(103), + [sym_special_identifier] = STATE(103), + [sym_boolean] = STATE(4159), + [sym_nil] = STATE(4159), + [sym__atom] = STATE(4155), + [sym_quoted_atom] = STATE(4155), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4159), + [sym_charlist] = STATE(4159), + [sym_sigil] = STATE(4159), + [sym_list] = STATE(4159), + [sym_tuple] = STATE(4159), + [sym_bitstring] = STATE(4159), + [sym_map] = STATE(4159), + [sym_struct] = STATE(5575), + [sym_unary_operator] = STATE(4155), + [sym_binary_operator] = STATE(4159), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4155), + [sym_call] = STATE(4159), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(4151), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4159), + [sym_anonymous_function] = STATE(4159), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1567), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1569), + [sym_integer] = ACTIONS(1571), + [sym_float] = ACTIONS(1571), + [sym_char] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1759), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1507), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AT] = ACTIONS(1509), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1511), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [442] = { + [sym__expression] = STATE(3727), + [sym_block] = STATE(3727), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(3727), + [sym_nil] = STATE(3727), + [sym__atom] = STATE(3727), + [sym_quoted_atom] = STATE(3727), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(3727), + [sym_charlist] = STATE(3727), + [sym_sigil] = STATE(3727), + [sym_list] = STATE(3727), + [sym_tuple] = STATE(3727), + [sym_bitstring] = STATE(3727), + [sym_map] = STATE(3727), + [sym_unary_operator] = STATE(3727), + [sym__capture_expression] = STATE(1822), + [sym_binary_operator] = STATE(3727), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(3727), + [sym_call] = STATE(3727), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(3727), + [sym_anonymous_function] = STATE(3727), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1543), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1545), + [sym_integer] = ACTIONS(1663), + [sym_float] = ACTIONS(1545), + [sym_char] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1545), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [443] = { + [sym__expression] = STATE(2879), + [sym_block] = STATE(2879), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(2879), + [sym_nil] = STATE(2879), + [sym__atom] = STATE(2879), + [sym_quoted_atom] = STATE(2879), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(2879), + [sym_charlist] = STATE(2879), + [sym_sigil] = STATE(2879), + [sym_list] = STATE(2879), + [sym_tuple] = STATE(2879), + [sym_bitstring] = STATE(2879), + [sym_map] = STATE(2879), + [sym_unary_operator] = STATE(2879), + [sym_binary_operator] = STATE(2879), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(2879), + [sym_call] = STATE(2879), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(2879), + [sym_anonymous_function] = STATE(2879), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(482), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), + [sym_alias] = ACTIONS(1761), + [sym_integer] = ACTIONS(1761), + [sym_float] = ACTIONS(1761), + [sym_char] = ACTIONS(1761), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1761), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(486), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(495), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_CARET] = ACTIONS(495), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(495), + [anon_sym_not] = ACTIONS(495), + [anon_sym_AT] = ACTIONS(497), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(499), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [444] = { + [sym__expression] = STATE(4065), + [sym_block] = STATE(4065), + [sym__identifier] = STATE(66), + [sym_identifier] = STATE(66), + [sym_special_identifier] = STATE(66), + [sym_boolean] = STATE(4065), + [sym_nil] = STATE(4065), + [sym__atom] = STATE(4065), + [sym_quoted_atom] = STATE(4065), + [sym__quoted_i_double] = STATE(4034), + [sym__quoted_i_single] = STATE(4021), + [sym__quoted_i_heredoc_single] = STATE(4077), + [sym__quoted_i_heredoc_double] = STATE(4083), + [sym_string] = STATE(4065), + [sym_charlist] = STATE(4065), + [sym_sigil] = STATE(4065), + [sym_list] = STATE(4065), + [sym_tuple] = STATE(4065), + [sym_bitstring] = STATE(4065), + [sym_map] = STATE(4065), + [sym_unary_operator] = STATE(4065), + [sym_binary_operator] = STATE(4065), + [sym_operator_identifier] = STATE(5580), + [sym_dot] = STATE(4065), + [sym_call] = STATE(4065), + [sym__call_without_parentheses] = STATE(4089), + [sym__call_with_parentheses] = STATE(4092), + [sym__local_call_without_parentheses] = STATE(4097), + [sym__local_call_with_parentheses] = STATE(3372), + [sym__local_call_just_do_block] = STATE(4098), + [sym__remote_call_without_parentheses] = STATE(4105), + [sym__remote_call_with_parentheses] = STATE(3374), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3375), + [sym__anonymous_dot] = STATE(5531), + [sym__double_call] = STATE(4106), + [sym_access_call] = STATE(4065), + [sym_anonymous_function] = STATE(4065), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1133), + [aux_sym_identifier_token1] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1135), + [sym_unused_identifier] = ACTIONS(1137), + [anon_sym___MODULE__] = ACTIONS(1139), + [anon_sym___DIR__] = ACTIONS(1139), + [anon_sym___ENV__] = ACTIONS(1139), + [anon_sym___CALLER__] = ACTIONS(1139), + [anon_sym___STACKTRACE__] = ACTIONS(1139), + [sym_alias] = ACTIONS(1763), + [sym_integer] = ACTIONS(1763), + [sym_float] = ACTIONS(1763), + [sym_char] = ACTIONS(1763), + [anon_sym_true] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [anon_sym_nil] = ACTIONS(1145), + [sym_atom] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1151), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1157), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1159), + [anon_sym_LT_LT] = ACTIONS(1163), + [anon_sym_PERCENT] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_AT] = ACTIONS(1173), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1175), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1177), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1179), + }, + [445] = { + [sym__expression] = STATE(3726), + [sym_block] = STATE(3726), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(3726), + [sym_nil] = STATE(3726), + [sym__atom] = STATE(3726), + [sym_quoted_atom] = STATE(3726), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(3726), + [sym_charlist] = STATE(3726), + [sym_sigil] = STATE(3726), + [sym_list] = STATE(3726), + [sym_tuple] = STATE(3726), + [sym_bitstring] = STATE(3726), + [sym_map] = STATE(3726), + [sym_unary_operator] = STATE(3726), + [sym_binary_operator] = STATE(3726), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(3726), + [sym_call] = STATE(3726), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(3726), + [sym_anonymous_function] = STATE(3726), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1765), + [sym_integer] = ACTIONS(1765), + [sym_float] = ACTIONS(1765), + [sym_char] = ACTIONS(1765), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1765), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [446] = { + [sym__expression] = STATE(1791), + [sym_block] = STATE(1791), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(1791), + [sym_nil] = STATE(1791), + [sym__atom] = STATE(1791), + [sym_quoted_atom] = STATE(1791), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(1791), + [sym_charlist] = STATE(1791), + [sym_sigil] = STATE(1791), + [sym_list] = STATE(1791), + [sym_tuple] = STATE(1791), + [sym_bitstring] = STATE(1791), + [sym_map] = STATE(1791), + [sym_unary_operator] = STATE(1791), + [sym_binary_operator] = STATE(1791), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(1791), + [sym_call] = STATE(1791), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(1791), + [sym_anonymous_function] = STATE(1791), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1767), + [sym_integer] = ACTIONS(1767), + [sym_float] = ACTIONS(1767), + [sym_char] = ACTIONS(1767), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1767), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [447] = { + [sym__expression] = STATE(3564), + [sym_block] = STATE(3564), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3564), + [sym_nil] = STATE(3564), + [sym__atom] = STATE(3564), + [sym_quoted_atom] = STATE(3564), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3564), + [sym_charlist] = STATE(3564), + [sym_sigil] = STATE(3564), + [sym_list] = STATE(3564), + [sym_tuple] = STATE(3564), + [sym_bitstring] = STATE(3564), + [sym_map] = STATE(3564), + [sym_unary_operator] = STATE(3564), + [sym_binary_operator] = STATE(3564), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3564), + [sym_call] = STATE(3564), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3564), + [sym_anonymous_function] = STATE(3564), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), [aux_sym_identifier_token1] = ACTIONS(826), @@ -84468,14 +83481,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ENV__] = ACTIONS(830), [anon_sym___CALLER__] = ACTIONS(830), [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1403), - [sym_integer] = ACTIONS(1403), - [sym_float] = ACTIONS(1403), - [sym_char] = ACTIONS(1403), + [sym_alias] = ACTIONS(1119), + [sym_integer] = ACTIONS(1119), + [sym_float] = ACTIONS(1119), + [sym_char] = ACTIONS(1119), [anon_sym_true] = ACTIONS(1073), [anon_sym_false] = ACTIONS(1073), [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1403), + [sym_atom] = ACTIONS(1119), [anon_sym_DQUOTE] = ACTIONS(1077), [anon_sym_SQUOTE] = ACTIONS(1079), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), @@ -84544,47 +83557,1422 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(1109), }, - [461] = { - [sym__expression] = STATE(3487), - [sym_block] = STATE(3487), + [448] = { + [sym__expression] = STATE(3704), + [sym_block] = STATE(3704), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(3704), + [sym_nil] = STATE(3704), + [sym__atom] = STATE(3704), + [sym_quoted_atom] = STATE(3704), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(3704), + [sym_charlist] = STATE(3704), + [sym_sigil] = STATE(3704), + [sym_list] = STATE(3704), + [sym_tuple] = STATE(3704), + [sym_bitstring] = STATE(3704), + [sym_map] = STATE(3704), + [sym_unary_operator] = STATE(3704), + [sym_binary_operator] = STATE(3704), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(3704), + [sym_call] = STATE(3704), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(3704), + [sym_anonymous_function] = STATE(3704), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1769), + [sym_integer] = ACTIONS(1769), + [sym_float] = ACTIONS(1769), + [sym_char] = ACTIONS(1769), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1769), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [449] = { + [sym__expression] = STATE(1824), + [sym_block] = STATE(1824), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(1824), + [sym_nil] = STATE(1824), + [sym__atom] = STATE(1824), + [sym_quoted_atom] = STATE(1824), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(1824), + [sym_charlist] = STATE(1824), + [sym_sigil] = STATE(1824), + [sym_list] = STATE(1824), + [sym_tuple] = STATE(1824), + [sym_bitstring] = STATE(1824), + [sym_map] = STATE(1824), + [sym_unary_operator] = STATE(1824), + [sym_binary_operator] = STATE(1824), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(1824), + [sym_call] = STATE(1824), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(1824), + [sym_anonymous_function] = STATE(1824), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1771), + [sym_integer] = ACTIONS(1771), + [sym_float] = ACTIONS(1771), + [sym_char] = ACTIONS(1771), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [450] = { + [sym__expression] = STATE(3724), + [sym_block] = STATE(3724), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(3724), + [sym_nil] = STATE(3724), + [sym__atom] = STATE(3724), + [sym_quoted_atom] = STATE(3724), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(3724), + [sym_charlist] = STATE(3724), + [sym_sigil] = STATE(3724), + [sym_list] = STATE(3724), + [sym_tuple] = STATE(3724), + [sym_bitstring] = STATE(3724), + [sym_map] = STATE(3724), + [sym_unary_operator] = STATE(3724), + [sym_binary_operator] = STATE(3724), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(3724), + [sym_call] = STATE(3724), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(3724), + [sym_anonymous_function] = STATE(3724), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1773), + [sym_integer] = ACTIONS(1773), + [sym_float] = ACTIONS(1773), + [sym_char] = ACTIONS(1773), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1773), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [451] = { + [sym__expression] = STATE(3723), + [sym_block] = STATE(3723), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(3723), + [sym_nil] = STATE(3723), + [sym__atom] = STATE(3723), + [sym_quoted_atom] = STATE(3723), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(3723), + [sym_charlist] = STATE(3723), + [sym_sigil] = STATE(3723), + [sym_list] = STATE(3723), + [sym_tuple] = STATE(3723), + [sym_bitstring] = STATE(3723), + [sym_map] = STATE(3723), + [sym_unary_operator] = STATE(3723), + [sym_binary_operator] = STATE(3723), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(3723), + [sym_call] = STATE(3723), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(3723), + [sym_anonymous_function] = STATE(3723), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1775), + [sym_integer] = ACTIONS(1775), + [sym_float] = ACTIONS(1775), + [sym_char] = ACTIONS(1775), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1775), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [452] = { + [sym__expression] = STATE(3721), + [sym_block] = STATE(3721), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(3721), + [sym_nil] = STATE(3721), + [sym__atom] = STATE(3721), + [sym_quoted_atom] = STATE(3721), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(3721), + [sym_charlist] = STATE(3721), + [sym_sigil] = STATE(3721), + [sym_list] = STATE(3721), + [sym_tuple] = STATE(3721), + [sym_bitstring] = STATE(3721), + [sym_map] = STATE(3721), + [sym_unary_operator] = STATE(3721), + [sym_binary_operator] = STATE(3721), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(3721), + [sym_call] = STATE(3721), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(3721), + [sym_anonymous_function] = STATE(3721), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1777), + [sym_integer] = ACTIONS(1777), + [sym_float] = ACTIONS(1777), + [sym_char] = ACTIONS(1777), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1777), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [453] = { + [sym__expression] = STATE(3720), + [sym_block] = STATE(3720), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(3720), + [sym_nil] = STATE(3720), + [sym__atom] = STATE(3720), + [sym_quoted_atom] = STATE(3720), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(3720), + [sym_charlist] = STATE(3720), + [sym_sigil] = STATE(3720), + [sym_list] = STATE(3720), + [sym_tuple] = STATE(3720), + [sym_bitstring] = STATE(3720), + [sym_map] = STATE(3720), + [sym_unary_operator] = STATE(3720), + [sym_binary_operator] = STATE(3720), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(3720), + [sym_call] = STATE(3720), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(3720), + [sym_anonymous_function] = STATE(3720), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1779), + [sym_integer] = ACTIONS(1779), + [sym_float] = ACTIONS(1779), + [sym_char] = ACTIONS(1779), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1779), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [454] = { + [sym__expression] = STATE(3719), + [sym_block] = STATE(3719), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(3719), + [sym_nil] = STATE(3719), + [sym__atom] = STATE(3719), + [sym_quoted_atom] = STATE(3719), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(3719), + [sym_charlist] = STATE(3719), + [sym_sigil] = STATE(3719), + [sym_list] = STATE(3719), + [sym_tuple] = STATE(3719), + [sym_bitstring] = STATE(3719), + [sym_map] = STATE(3719), + [sym_unary_operator] = STATE(3719), + [sym_binary_operator] = STATE(3719), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(3719), + [sym_call] = STATE(3719), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(3719), + [sym_anonymous_function] = STATE(3719), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1781), + [sym_integer] = ACTIONS(1781), + [sym_float] = ACTIONS(1781), + [sym_char] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1781), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [455] = { + [sym__expression] = STATE(3717), + [sym_block] = STATE(3717), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(3717), + [sym_nil] = STATE(3717), + [sym__atom] = STATE(3717), + [sym_quoted_atom] = STATE(3717), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(3717), + [sym_charlist] = STATE(3717), + [sym_sigil] = STATE(3717), + [sym_list] = STATE(3717), + [sym_tuple] = STATE(3717), + [sym_bitstring] = STATE(3717), + [sym_map] = STATE(3717), + [sym_unary_operator] = STATE(3717), + [sym_binary_operator] = STATE(3717), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(3717), + [sym_call] = STATE(3717), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(3717), + [sym_anonymous_function] = STATE(3717), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1783), + [sym_integer] = ACTIONS(1783), + [sym_float] = ACTIONS(1783), + [sym_char] = ACTIONS(1783), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1783), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [456] = { + [sym__expression] = STATE(3716), + [sym_block] = STATE(3716), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(3716), + [sym_nil] = STATE(3716), + [sym__atom] = STATE(3716), + [sym_quoted_atom] = STATE(3716), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(3716), + [sym_charlist] = STATE(3716), + [sym_sigil] = STATE(3716), + [sym_list] = STATE(3716), + [sym_tuple] = STATE(3716), + [sym_bitstring] = STATE(3716), + [sym_map] = STATE(3716), + [sym_unary_operator] = STATE(3716), + [sym_binary_operator] = STATE(3716), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(3716), + [sym_call] = STATE(3716), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(3716), + [sym_anonymous_function] = STATE(3716), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1785), + [sym_integer] = ACTIONS(1785), + [sym_float] = ACTIONS(1785), + [sym_char] = ACTIONS(1785), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1785), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [457] = { + [sym__expression] = STATE(3715), + [sym_block] = STATE(3715), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(3715), + [sym_nil] = STATE(3715), + [sym__atom] = STATE(3715), + [sym_quoted_atom] = STATE(3715), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(3715), + [sym_charlist] = STATE(3715), + [sym_sigil] = STATE(3715), + [sym_list] = STATE(3715), + [sym_tuple] = STATE(3715), + [sym_bitstring] = STATE(3715), + [sym_map] = STATE(3715), + [sym_unary_operator] = STATE(3715), + [sym_binary_operator] = STATE(3715), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(3715), + [sym_call] = STATE(3715), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(3715), + [sym_anonymous_function] = STATE(3715), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1787), + [sym_integer] = ACTIONS(1787), + [sym_float] = ACTIONS(1787), + [sym_char] = ACTIONS(1787), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1787), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [458] = { + [sym__expression] = STATE(3714), + [sym_block] = STATE(3714), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(3714), + [sym_nil] = STATE(3714), + [sym__atom] = STATE(3714), + [sym_quoted_atom] = STATE(3714), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(3714), + [sym_charlist] = STATE(3714), + [sym_sigil] = STATE(3714), + [sym_list] = STATE(3714), + [sym_tuple] = STATE(3714), + [sym_bitstring] = STATE(3714), + [sym_map] = STATE(3714), + [sym_unary_operator] = STATE(3714), + [sym_binary_operator] = STATE(3714), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(3714), + [sym_call] = STATE(3714), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(3714), + [sym_anonymous_function] = STATE(3714), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1789), + [sym_integer] = ACTIONS(1789), + [sym_float] = ACTIONS(1789), + [sym_char] = ACTIONS(1789), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1789), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [459] = { + [sym__expression] = STATE(4122), + [sym_block] = STATE(4122), [sym__identifier] = STATE(64), [sym_identifier] = STATE(64), [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3487), - [sym_nil] = STATE(3487), - [sym__atom] = STATE(3487), - [sym_quoted_atom] = STATE(3487), - [sym__quoted_i_double] = STATE(3395), - [sym__quoted_i_single] = STATE(3394), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3487), - [sym_charlist] = STATE(3487), - [sym_sigil] = STATE(3487), - [sym_list] = STATE(3487), - [sym_tuple] = STATE(3487), - [sym_bitstring] = STATE(3487), - [sym_map] = STATE(3487), - [sym_unary_operator] = STATE(3487), - [sym_binary_operator] = STATE(3487), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3487), - [sym_call] = STATE(3487), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), + [sym_boolean] = STATE(4122), + [sym_nil] = STATE(4122), + [sym__atom] = STATE(4122), + [sym_quoted_atom] = STATE(4122), + [sym__quoted_i_double] = STATE(3871), + [sym__quoted_i_single] = STATE(3876), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(4122), + [sym_charlist] = STATE(4122), + [sym_sigil] = STATE(4122), + [sym_list] = STATE(4122), + [sym_tuple] = STATE(4122), + [sym_bitstring] = STATE(4122), + [sym_map] = STATE(4122), + [sym_unary_operator] = STATE(4122), + [sym_binary_operator] = STATE(4122), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(4122), + [sym_call] = STATE(4122), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3487), - [sym_anonymous_function] = STATE(3487), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(4122), + [sym_anonymous_function] = STATE(4122), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1413), [aux_sym_identifier_token1] = ACTIONS(826), [anon_sym_DOT_DOT_DOT] = ACTIONS(826), [sym_unused_identifier] = ACTIONS(828), @@ -84593,14 +84981,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ENV__] = ACTIONS(830), [anon_sym___CALLER__] = ACTIONS(830), [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1381), - [sym_integer] = ACTIONS(1381), - [sym_float] = ACTIONS(1381), - [sym_char] = ACTIONS(1381), + [sym_alias] = ACTIONS(1461), + [sym_integer] = ACTIONS(1461), + [sym_float] = ACTIONS(1461), + [sym_char] = ACTIONS(1461), [anon_sym_true] = ACTIONS(834), [anon_sym_false] = ACTIONS(834), [anon_sym_nil] = ACTIONS(836), - [sym_atom] = ACTIONS(1381), + [sym_atom] = ACTIONS(1461), [anon_sym_DQUOTE] = ACTIONS(838), [anon_sym_SQUOTE] = ACTIONS(840), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), @@ -84669,84 +85057,334 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(868), }, - [462] = { - [sym__expression] = STATE(1432), - [sym_block] = STATE(1432), - [sym__identifier] = STATE(47), - [sym_identifier] = STATE(47), - [sym_special_identifier] = STATE(47), - [sym_boolean] = STATE(1432), - [sym_nil] = STATE(1432), - [sym__atom] = STATE(1432), - [sym_quoted_atom] = STATE(1432), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(1432), - [sym_charlist] = STATE(1432), - [sym_sigil] = STATE(1432), - [sym_list] = STATE(1432), - [sym_tuple] = STATE(1432), - [sym_bitstring] = STATE(1432), - [sym_map] = STATE(1432), - [sym_unary_operator] = STATE(1432), - [sym_binary_operator] = STATE(1432), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(1432), - [sym_call] = STATE(1432), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(41), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(1432), - [sym_anonymous_function] = STATE(1432), + [460] = { + [sym__expression] = STATE(3713), + [sym_block] = STATE(3713), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(3713), + [sym_nil] = STATE(3713), + [sym__atom] = STATE(3713), + [sym_quoted_atom] = STATE(3713), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(3713), + [sym_charlist] = STATE(3713), + [sym_sigil] = STATE(3713), + [sym_list] = STATE(3713), + [sym_tuple] = STATE(3713), + [sym_bitstring] = STATE(3713), + [sym_map] = STATE(3713), + [sym_unary_operator] = STATE(3713), + [sym_binary_operator] = STATE(3713), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(3713), + [sym_call] = STATE(3713), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(3713), + [sym_anonymous_function] = STATE(3713), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(438), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1791), + [sym_integer] = ACTIONS(1791), + [sym_float] = ACTIONS(1791), + [sym_char] = ACTIONS(1791), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1791), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [461] = { + [sym__expression] = STATE(3712), + [sym_block] = STATE(3712), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(3712), + [sym_nil] = STATE(3712), + [sym__atom] = STATE(3712), + [sym_quoted_atom] = STATE(3712), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(3712), + [sym_charlist] = STATE(3712), + [sym_sigil] = STATE(3712), + [sym_list] = STATE(3712), + [sym_tuple] = STATE(3712), + [sym_bitstring] = STATE(3712), + [sym_map] = STATE(3712), + [sym_unary_operator] = STATE(3712), + [sym_binary_operator] = STATE(3712), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(3712), + [sym_call] = STATE(3712), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(3712), + [sym_anonymous_function] = STATE(3712), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1793), + [sym_integer] = ACTIONS(1793), + [sym_float] = ACTIONS(1793), + [sym_char] = ACTIONS(1793), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1793), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [462] = { + [sym__expression] = STATE(3711), + [sym_block] = STATE(3711), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(3711), + [sym_nil] = STATE(3711), + [sym__atom] = STATE(3711), + [sym_quoted_atom] = STATE(3711), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(3711), + [sym_charlist] = STATE(3711), + [sym_sigil] = STATE(3711), + [sym_list] = STATE(3711), + [sym_tuple] = STATE(3711), + [sym_bitstring] = STATE(3711), + [sym_map] = STATE(3711), + [sym_unary_operator] = STATE(3711), + [sym_binary_operator] = STATE(3711), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(3711), + [sym_call] = STATE(3711), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(3711), + [sym_anonymous_function] = STATE(3711), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), [sym_alias] = ACTIONS(1795), [sym_integer] = ACTIONS(1795), [sym_float] = ACTIONS(1795), [sym_char] = ACTIONS(1795), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), [sym_atom] = ACTIONS(1795), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(448), - [anon_sym_PLUS] = ACTIONS(450), - [anon_sym_DASH] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(450), - [anon_sym_CARET] = ACTIONS(450), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), - [anon_sym_not] = ACTIONS(450), - [anon_sym_AT] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -84786,92 +85424,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), + [anon_sym_fn] = ACTIONS(978), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(454), + [sym__before_unary_op] = ACTIONS(1363), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), + [sym__quoted_atom_start] = ACTIONS(982), }, [463] = { - [sym__expression] = STATE(2697), - [sym_block] = STATE(2697), - [sym__identifier] = STATE(47), - [sym_identifier] = STATE(47), - [sym_special_identifier] = STATE(47), - [sym_boolean] = STATE(2697), - [sym_nil] = STATE(2697), - [sym__atom] = STATE(2697), - [sym_quoted_atom] = STATE(2697), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2697), - [sym_charlist] = STATE(2697), - [sym_sigil] = STATE(2697), - [sym_list] = STATE(2697), - [sym_tuple] = STATE(2697), - [sym_bitstring] = STATE(2697), - [sym_map] = STATE(2697), - [sym_unary_operator] = STATE(2697), - [sym_binary_operator] = STATE(2697), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2697), - [sym_call] = STATE(2697), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(41), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2697), - [sym_anonymous_function] = STATE(2697), + [sym__expression] = STATE(3710), + [sym_block] = STATE(3710), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(3710), + [sym_nil] = STATE(3710), + [sym__atom] = STATE(3710), + [sym_quoted_atom] = STATE(3710), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(3710), + [sym_charlist] = STATE(3710), + [sym_sigil] = STATE(3710), + [sym_list] = STATE(3710), + [sym_tuple] = STATE(3710), + [sym_bitstring] = STATE(3710), + [sym_map] = STATE(3710), + [sym_unary_operator] = STATE(3710), + [sym_binary_operator] = STATE(3710), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(3710), + [sym_call] = STATE(3710), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(3710), + [sym_anonymous_function] = STATE(3710), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(438), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), [sym_alias] = ACTIONS(1797), [sym_integer] = ACTIONS(1797), [sym_float] = ACTIONS(1797), [sym_char] = ACTIONS(1797), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), [sym_atom] = ACTIONS(1797), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(448), - [anon_sym_PLUS] = ACTIONS(450), - [anon_sym_DASH] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(450), - [anon_sym_CARET] = ACTIONS(450), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), - [anon_sym_not] = ACTIONS(450), - [anon_sym_AT] = ACTIONS(452), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -84911,92 +85549,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), + [anon_sym_fn] = ACTIONS(978), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(454), + [sym__before_unary_op] = ACTIONS(1363), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), + [sym__quoted_atom_start] = ACTIONS(982), }, [464] = { - [sym__expression] = STATE(2696), - [sym_block] = STATE(2696), - [sym__identifier] = STATE(47), - [sym_identifier] = STATE(47), - [sym_special_identifier] = STATE(47), - [sym_boolean] = STATE(2696), - [sym_nil] = STATE(2696), - [sym__atom] = STATE(2696), - [sym_quoted_atom] = STATE(2696), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2696), - [sym_charlist] = STATE(2696), - [sym_sigil] = STATE(2696), - [sym_list] = STATE(2696), - [sym_tuple] = STATE(2696), - [sym_bitstring] = STATE(2696), - [sym_map] = STATE(2696), - [sym_unary_operator] = STATE(2696), - [sym_binary_operator] = STATE(2696), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2696), - [sym_call] = STATE(2696), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(41), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2696), - [sym_anonymous_function] = STATE(2696), + [sym__expression] = STATE(3709), + [sym_block] = STATE(3709), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(3709), + [sym_nil] = STATE(3709), + [sym__atom] = STATE(3709), + [sym_quoted_atom] = STATE(3709), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(3709), + [sym_charlist] = STATE(3709), + [sym_sigil] = STATE(3709), + [sym_list] = STATE(3709), + [sym_tuple] = STATE(3709), + [sym_bitstring] = STATE(3709), + [sym_map] = STATE(3709), + [sym_unary_operator] = STATE(3709), + [sym_binary_operator] = STATE(3709), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(3709), + [sym_call] = STATE(3709), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(3709), + [sym_anonymous_function] = STATE(3709), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(438), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), [sym_alias] = ACTIONS(1799), [sym_integer] = ACTIONS(1799), [sym_float] = ACTIONS(1799), [sym_char] = ACTIONS(1799), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), [sym_atom] = ACTIONS(1799), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(448), - [anon_sym_PLUS] = ACTIONS(450), - [anon_sym_DASH] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(450), - [anon_sym_CARET] = ACTIONS(450), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), - [anon_sym_not] = ACTIONS(450), - [anon_sym_AT] = ACTIONS(452), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -85036,92 +85674,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), + [anon_sym_fn] = ACTIONS(978), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(454), + [sym__before_unary_op] = ACTIONS(1363), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), + [sym__quoted_atom_start] = ACTIONS(982), }, [465] = { - [sym__expression] = STATE(3343), - [sym_block] = STATE(3343), - [sym__identifier] = STATE(64), - [sym_identifier] = STATE(64), - [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3343), - [sym_nil] = STATE(3343), - [sym__atom] = STATE(3343), - [sym_quoted_atom] = STATE(3343), - [sym__quoted_i_double] = STATE(3395), - [sym__quoted_i_single] = STATE(3394), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3343), - [sym_charlist] = STATE(3343), - [sym_sigil] = STATE(3343), - [sym_list] = STATE(3343), - [sym_tuple] = STATE(3343), - [sym_bitstring] = STATE(3343), - [sym_map] = STATE(3343), - [sym_unary_operator] = STATE(3343), - [sym_binary_operator] = STATE(3343), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3343), - [sym_call] = STATE(3343), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), - [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3343), - [sym_anonymous_function] = STATE(3343), + [sym__expression] = STATE(3430), + [sym_block] = STATE(3430), + [sym__identifier] = STATE(61), + [sym_identifier] = STATE(61), + [sym_special_identifier] = STATE(61), + [sym_boolean] = STATE(3430), + [sym_nil] = STATE(3430), + [sym__atom] = STATE(3430), + [sym_quoted_atom] = STATE(3430), + [sym__quoted_i_double] = STATE(3318), + [sym__quoted_i_single] = STATE(3317), + [sym__quoted_i_heredoc_single] = STATE(3316), + [sym__quoted_i_heredoc_double] = STATE(3315), + [sym_string] = STATE(3430), + [sym_charlist] = STATE(3430), + [sym_sigil] = STATE(3430), + [sym_list] = STATE(3430), + [sym_tuple] = STATE(3430), + [sym_bitstring] = STATE(3430), + [sym_map] = STATE(3430), + [sym_unary_operator] = STATE(3430), + [sym_binary_operator] = STATE(3430), + [sym_operator_identifier] = STATE(5628), + [sym_dot] = STATE(3430), + [sym_call] = STATE(3430), + [sym__call_without_parentheses] = STATE(3314), + [sym__call_with_parentheses] = STATE(3313), + [sym__local_call_without_parentheses] = STATE(3312), + [sym__local_call_with_parentheses] = STATE(2420), + [sym__local_call_just_do_block] = STATE(3311), + [sym__remote_call_without_parentheses] = STATE(3310), + [sym__remote_call_with_parentheses] = STATE(2423), + [sym__remote_dot] = STATE(60), + [sym__anonymous_call] = STATE(2425), + [sym__anonymous_dot] = STATE(5498), + [sym__double_call] = STATE(3309), + [sym_access_call] = STATE(3430), + [sym_anonymous_function] = STATE(3430), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1361), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(828), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), [sym_alias] = ACTIONS(1801), [sym_integer] = ACTIONS(1801), [sym_float] = ACTIONS(1801), [sym_char] = ACTIONS(1801), - [anon_sym_true] = ACTIONS(834), - [anon_sym_false] = ACTIONS(834), - [anon_sym_nil] = ACTIONS(836), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), [sym_atom] = ACTIONS(1801), - [anon_sym_DQUOTE] = ACTIONS(838), - [anon_sym_SQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(850), - [anon_sym_LT_LT] = ACTIONS(852), - [anon_sym_PERCENT] = ACTIONS(854), - [anon_sym_AMP] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_BANG] = ACTIONS(858), - [anon_sym_CARET] = ACTIONS(858), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), - [anon_sym_not] = ACTIONS(858), - [anon_sym_AT] = ACTIONS(860), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(643), + [anon_sym_not] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -85161,92 +85799,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(864), + [anon_sym_fn] = ACTIONS(649), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(866), + [sym__before_unary_op] = ACTIONS(655), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(868), + [sym__quoted_atom_start] = ACTIONS(657), }, [466] = { - [sym__expression] = STATE(2695), - [sym_block] = STATE(2695), - [sym__identifier] = STATE(47), - [sym_identifier] = STATE(47), - [sym_special_identifier] = STATE(47), - [sym_boolean] = STATE(2695), - [sym_nil] = STATE(2695), - [sym__atom] = STATE(2695), - [sym_quoted_atom] = STATE(2695), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2695), - [sym_charlist] = STATE(2695), - [sym_sigil] = STATE(2695), - [sym_list] = STATE(2695), - [sym_tuple] = STATE(2695), - [sym_bitstring] = STATE(2695), - [sym_map] = STATE(2695), - [sym_unary_operator] = STATE(2695), - [sym_binary_operator] = STATE(2695), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2695), - [sym_call] = STATE(2695), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(41), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2695), - [sym_anonymous_function] = STATE(2695), + [sym__expression] = STATE(3708), + [sym_block] = STATE(3708), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(3708), + [sym_nil] = STATE(3708), + [sym__atom] = STATE(3708), + [sym_quoted_atom] = STATE(3708), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(3708), + [sym_charlist] = STATE(3708), + [sym_sigil] = STATE(3708), + [sym_list] = STATE(3708), + [sym_tuple] = STATE(3708), + [sym_bitstring] = STATE(3708), + [sym_map] = STATE(3708), + [sym_unary_operator] = STATE(3708), + [sym_binary_operator] = STATE(3708), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(3708), + [sym_call] = STATE(3708), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(3708), + [sym_anonymous_function] = STATE(3708), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(438), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), [sym_alias] = ACTIONS(1803), [sym_integer] = ACTIONS(1803), [sym_float] = ACTIONS(1803), [sym_char] = ACTIONS(1803), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), [sym_atom] = ACTIONS(1803), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(448), - [anon_sym_PLUS] = ACTIONS(450), - [anon_sym_DASH] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(450), - [anon_sym_CARET] = ACTIONS(450), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), - [anon_sym_not] = ACTIONS(450), - [anon_sym_AT] = ACTIONS(452), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -85286,92 +85924,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), + [anon_sym_fn] = ACTIONS(978), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(454), + [sym__before_unary_op] = ACTIONS(1363), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), + [sym__quoted_atom_start] = ACTIONS(982), }, [467] = { - [sym__expression] = STATE(3344), - [sym_block] = STATE(3344), - [sym__identifier] = STATE(64), - [sym_identifier] = STATE(64), - [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3344), - [sym_nil] = STATE(3344), - [sym__atom] = STATE(3344), - [sym_quoted_atom] = STATE(3344), - [sym__quoted_i_double] = STATE(3395), - [sym__quoted_i_single] = STATE(3394), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3344), - [sym_charlist] = STATE(3344), - [sym_sigil] = STATE(3344), - [sym_list] = STATE(3344), - [sym_tuple] = STATE(3344), - [sym_bitstring] = STATE(3344), - [sym_map] = STATE(3344), - [sym_unary_operator] = STATE(3344), - [sym_binary_operator] = STATE(3344), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3344), - [sym_call] = STATE(3344), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), - [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3344), - [sym_anonymous_function] = STATE(3344), + [sym__expression] = STATE(3707), + [sym_block] = STATE(3707), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(3707), + [sym_nil] = STATE(3707), + [sym__atom] = STATE(3707), + [sym_quoted_atom] = STATE(3707), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(3707), + [sym_charlist] = STATE(3707), + [sym_sigil] = STATE(3707), + [sym_list] = STATE(3707), + [sym_tuple] = STATE(3707), + [sym_bitstring] = STATE(3707), + [sym_map] = STATE(3707), + [sym_unary_operator] = STATE(3707), + [sym_binary_operator] = STATE(3707), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(3707), + [sym_call] = STATE(3707), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(3707), + [sym_anonymous_function] = STATE(3707), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1361), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(828), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), [sym_alias] = ACTIONS(1805), [sym_integer] = ACTIONS(1805), [sym_float] = ACTIONS(1805), [sym_char] = ACTIONS(1805), - [anon_sym_true] = ACTIONS(834), - [anon_sym_false] = ACTIONS(834), - [anon_sym_nil] = ACTIONS(836), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), [sym_atom] = ACTIONS(1805), - [anon_sym_DQUOTE] = ACTIONS(838), - [anon_sym_SQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(850), - [anon_sym_LT_LT] = ACTIONS(852), - [anon_sym_PERCENT] = ACTIONS(854), - [anon_sym_AMP] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_BANG] = ACTIONS(858), - [anon_sym_CARET] = ACTIONS(858), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), - [anon_sym_not] = ACTIONS(858), - [anon_sym_AT] = ACTIONS(860), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -85411,188 +86049,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(864), + [anon_sym_fn] = ACTIONS(978), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(866), + [sym__before_unary_op] = ACTIONS(1363), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(868), + [sym__quoted_atom_start] = ACTIONS(982), }, [468] = { - [sym__expression] = STATE(2586), - [sym_block] = STATE(2586), - [sym__identifier] = STATE(60), - [sym_identifier] = STATE(60), - [sym_special_identifier] = STATE(60), - [sym_boolean] = STATE(2586), - [sym_nil] = STATE(2586), - [sym__atom] = STATE(2586), - [sym_quoted_atom] = STATE(2586), - [sym__quoted_i_double] = STATE(2414), - [sym__quoted_i_single] = STATE(2413), - [sym__quoted_i_heredoc_single] = STATE(2413), - [sym__quoted_i_heredoc_double] = STATE(2414), - [sym_string] = STATE(2586), - [sym_charlist] = STATE(2586), - [sym_sigil] = STATE(2586), - [sym_list] = STATE(2586), - [sym_tuple] = STATE(2586), - [sym_bitstring] = STATE(2586), - [sym_map] = STATE(2586), - [sym_unary_operator] = STATE(2586), - [sym_binary_operator] = STATE(2586), - [sym_operator_identifier] = STATE(5028), - [sym_dot] = STATE(2586), - [sym_call] = STATE(2586), - [sym__call_without_parentheses] = STATE(2412), - [sym__call_with_parentheses] = STATE(2411), - [sym__local_call_without_parentheses] = STATE(2410), - [sym__local_call_with_parentheses] = STATE(1910), - [sym__local_call_just_do_block] = STATE(2409), - [sym__remote_call_without_parentheses] = STATE(2408), - [sym__remote_call_with_parentheses] = STATE(1916), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(1975), - [sym__anonymous_dot] = STATE(4890), - [sym__double_call] = STATE(2407), - [sym_access_call] = STATE(2586), - [sym_anonymous_function] = STATE(2586), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(556), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(558), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(1357), - [sym_integer] = ACTIONS(1357), - [sym_float] = ACTIONS(1357), - [sym_char] = ACTIONS(1357), - [anon_sym_true] = ACTIONS(562), - [anon_sym_false] = ACTIONS(562), - [anon_sym_nil] = ACTIONS(564), - [sym_atom] = ACTIONS(1357), - [anon_sym_DQUOTE] = ACTIONS(566), - [anon_sym_SQUOTE] = ACTIONS(568), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), - [anon_sym_LBRACE] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(578), - [anon_sym_LT_LT] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_CARET] = ACTIONS(588), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), - [anon_sym_not] = ACTIONS(588), - [anon_sym_AT] = ACTIONS(590), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(594), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(600), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(602), - }, - [469] = { - [sym__expression] = STATE(2694), - [sym_block] = STATE(2694), - [sym__identifier] = STATE(47), - [sym_identifier] = STATE(47), - [sym_special_identifier] = STATE(47), - [sym_boolean] = STATE(2694), - [sym_nil] = STATE(2694), - [sym__atom] = STATE(2694), - [sym_quoted_atom] = STATE(2694), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2694), - [sym_charlist] = STATE(2694), - [sym_sigil] = STATE(2694), - [sym_list] = STATE(2694), - [sym_tuple] = STATE(2694), - [sym_bitstring] = STATE(2694), - [sym_map] = STATE(2694), - [sym_unary_operator] = STATE(2694), - [sym_binary_operator] = STATE(2694), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2694), - [sym_call] = STATE(2694), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(41), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2694), - [sym_anonymous_function] = STATE(2694), + [sym__expression] = STATE(2377), + [sym_block] = STATE(2377), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2377), + [sym_nil] = STATE(2377), + [sym__atom] = STATE(2377), + [sym_quoted_atom] = STATE(2377), + [sym__quoted_i_double] = STATE(1250), + [sym__quoted_i_single] = STATE(1249), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(2377), + [sym_charlist] = STATE(2377), + [sym_sigil] = STATE(2377), + [sym_list] = STATE(2377), + [sym_tuple] = STATE(2377), + [sym_bitstring] = STATE(2377), + [sym_map] = STATE(2377), + [sym_unary_operator] = STATE(2377), + [sym_binary_operator] = STATE(2377), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(2377), + [sym_call] = STATE(2377), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(2377), + [sym_anonymous_function] = STATE(2377), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(438), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(461), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), [sym_alias] = ACTIONS(1807), [sym_integer] = ACTIONS(1807), [sym_float] = ACTIONS(1807), @@ -85610,18 +86123,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(448), - [anon_sym_PLUS] = ACTIONS(450), - [anon_sym_DASH] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(450), - [anon_sym_CARET] = ACTIONS(450), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), - [anon_sym_not] = ACTIONS(450), - [anon_sym_AT] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(476), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_CARET] = ACTIONS(476), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(476), + [anon_sym_not] = ACTIONS(476), + [anon_sym_AT] = ACTIONS(478), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -85661,92 +86174,217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), + [anon_sym_fn] = ACTIONS(235), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(454), + [sym__before_unary_op] = ACTIONS(480), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [469] = { + [sym__expression] = STATE(4049), + [sym_block] = STATE(4049), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(4049), + [sym_nil] = STATE(4049), + [sym__atom] = STATE(4049), + [sym_quoted_atom] = STATE(4049), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(4049), + [sym_charlist] = STATE(4049), + [sym_sigil] = STATE(4049), + [sym_list] = STATE(4049), + [sym_tuple] = STATE(4049), + [sym_bitstring] = STATE(4049), + [sym_map] = STATE(4049), + [sym_unary_operator] = STATE(4049), + [sym_binary_operator] = STATE(4049), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(4049), + [sym_call] = STATE(4049), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(4049), + [sym_anonymous_function] = STATE(4049), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1535), + [sym_integer] = ACTIONS(1535), + [sym_float] = ACTIONS(1535), + [sym_char] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), }, [470] = { - [sym__expression] = STATE(3136), - [sym_block] = STATE(3136), - [sym__identifier] = STATE(68), - [sym_identifier] = STATE(68), - [sym_special_identifier] = STATE(68), - [sym_boolean] = STATE(3136), - [sym_nil] = STATE(3136), - [sym__atom] = STATE(3136), - [sym_quoted_atom] = STATE(3136), - [sym__quoted_i_double] = STATE(1866), - [sym__quoted_i_single] = STATE(1867), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(3136), - [sym_charlist] = STATE(3136), - [sym_sigil] = STATE(3136), - [sym_list] = STATE(3136), - [sym_tuple] = STATE(3136), - [sym_bitstring] = STATE(3136), - [sym_map] = STATE(3136), - [sym_unary_operator] = STATE(3136), - [sym_binary_operator] = STATE(3136), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(3136), - [sym_call] = STATE(3136), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(3136), - [sym_anonymous_function] = STATE(3136), + [sym__expression] = STATE(1185), + [sym_block] = STATE(1185), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(1185), + [sym_nil] = STATE(1185), + [sym__atom] = STATE(1185), + [sym_quoted_atom] = STATE(1185), + [sym__quoted_i_double] = STATE(1250), + [sym__quoted_i_single] = STATE(1249), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(1185), + [sym_charlist] = STATE(1185), + [sym_sigil] = STATE(1185), + [sym_list] = STATE(1185), + [sym_tuple] = STATE(1185), + [sym_bitstring] = STATE(1185), + [sym_map] = STATE(1185), + [sym_unary_operator] = STATE(1185), + [sym_binary_operator] = STATE(1185), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(1185), + [sym_call] = STATE(1185), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(1185), + [sym_anonymous_function] = STATE(1185), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(662), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(461), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), [sym_alias] = ACTIONS(1809), [sym_integer] = ACTIONS(1809), [sym_float] = ACTIONS(1809), [sym_char] = ACTIONS(1809), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), [sym_atom] = ACTIONS(1809), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(670), - [anon_sym_DASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(670), - [anon_sym_CARET] = ACTIONS(670), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(670), - [anon_sym_not] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(672), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(476), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_CARET] = ACTIONS(476), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(476), + [anon_sym_not] = ACTIONS(476), + [anon_sym_AT] = ACTIONS(478), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -85786,92 +86424,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), + [anon_sym_fn] = ACTIONS(235), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(674), + [sym__before_unary_op] = ACTIONS(480), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), + [sym__quoted_atom_start] = ACTIONS(243), }, [471] = { - [sym__expression] = STATE(2821), - [sym_block] = STATE(2821), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(2821), - [sym_nil] = STATE(2821), - [sym__atom] = STATE(2821), - [sym_quoted_atom] = STATE(2821), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(2821), - [sym_charlist] = STATE(2821), - [sym_sigil] = STATE(2821), - [sym_list] = STATE(2821), - [sym_tuple] = STATE(2821), - [sym_bitstring] = STATE(2821), - [sym_map] = STATE(2821), - [sym_unary_operator] = STATE(2821), - [sym_binary_operator] = STATE(2821), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(2821), - [sym_call] = STATE(2821), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(2821), - [sym_anonymous_function] = STATE(2821), + [sym__expression] = STATE(3124), + [sym_block] = STATE(3124), + [sym__identifier] = STATE(56), + [sym_identifier] = STATE(56), + [sym_special_identifier] = STATE(56), + [sym_boolean] = STATE(3124), + [sym_nil] = STATE(3124), + [sym__atom] = STATE(3124), + [sym_quoted_atom] = STATE(3124), + [sym__quoted_i_double] = STATE(2913), + [sym__quoted_i_single] = STATE(2912), + [sym__quoted_i_heredoc_single] = STATE(2910), + [sym__quoted_i_heredoc_double] = STATE(2805), + [sym_string] = STATE(3124), + [sym_charlist] = STATE(3124), + [sym_sigil] = STATE(3124), + [sym_list] = STATE(3124), + [sym_tuple] = STATE(3124), + [sym_bitstring] = STATE(3124), + [sym_map] = STATE(3124), + [sym_unary_operator] = STATE(3124), + [sym_binary_operator] = STATE(3124), + [sym_operator_identifier] = STATE(5636), + [sym_dot] = STATE(3124), + [sym_call] = STATE(3124), + [sym__call_without_parentheses] = STATE(2883), + [sym__call_with_parentheses] = STATE(2876), + [sym__local_call_without_parentheses] = STATE(2870), + [sym__local_call_with_parentheses] = STATE(2037), + [sym__local_call_just_do_block] = STATE(2853), + [sym__remote_call_without_parentheses] = STATE(2846), + [sym__remote_call_with_parentheses] = STATE(2038), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2051), + [sym__anonymous_dot] = STATE(5534), + [sym__double_call] = STATE(2836), + [sym_access_call] = STATE(3124), + [sym_anonymous_function] = STATE(3124), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1181), - [sym_integer] = ACTIONS(1181), - [sym_float] = ACTIONS(1181), - [sym_char] = ACTIONS(1181), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(1181), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(1347), + [sym_integer] = ACTIONS(1347), + [sym_float] = ACTIONS(1347), + [sym_char] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(1347), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -85911,63 +86549,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), + [anon_sym_fn] = ACTIONS(594), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), + [sym__before_unary_op] = ACTIONS(600), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), + [sym__quoted_atom_start] = ACTIONS(602), }, [472] = { - [sym__expression] = STATE(2693), - [sym_block] = STATE(2693), - [sym__identifier] = STATE(47), - [sym_identifier] = STATE(47), - [sym_special_identifier] = STATE(47), - [sym_boolean] = STATE(2693), - [sym_nil] = STATE(2693), - [sym__atom] = STATE(2693), - [sym_quoted_atom] = STATE(2693), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2693), - [sym_charlist] = STATE(2693), - [sym_sigil] = STATE(2693), - [sym_list] = STATE(2693), - [sym_tuple] = STATE(2693), - [sym_bitstring] = STATE(2693), - [sym_map] = STATE(2693), - [sym_unary_operator] = STATE(2693), - [sym_binary_operator] = STATE(2693), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2693), - [sym_call] = STATE(2693), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(41), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2693), - [sym_anonymous_function] = STATE(2693), + [sym__expression] = STATE(2344), + [sym_block] = STATE(2344), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2344), + [sym_nil] = STATE(2344), + [sym__atom] = STATE(2344), + [sym_quoted_atom] = STATE(2344), + [sym__quoted_i_double] = STATE(1250), + [sym__quoted_i_single] = STATE(1249), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(2344), + [sym_charlist] = STATE(2344), + [sym_sigil] = STATE(2344), + [sym_list] = STATE(2344), + [sym_tuple] = STATE(2344), + [sym_bitstring] = STATE(2344), + [sym_map] = STATE(2344), + [sym_unary_operator] = STATE(2344), + [sym_binary_operator] = STATE(2344), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(2344), + [sym_call] = STATE(2344), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(2344), + [sym_anonymous_function] = STATE(2344), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(438), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(461), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), [sym_alias] = ACTIONS(1811), [sym_integer] = ACTIONS(1811), [sym_float] = ACTIONS(1811), @@ -85986,17 +86624,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(448), - [anon_sym_PLUS] = ACTIONS(450), - [anon_sym_DASH] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(450), - [anon_sym_CARET] = ACTIONS(450), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), - [anon_sym_not] = ACTIONS(450), - [anon_sym_AT] = ACTIONS(452), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(476), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_CARET] = ACTIONS(476), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(476), + [anon_sym_not] = ACTIONS(476), + [anon_sym_AT] = ACTIONS(478), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -86036,92 +86674,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), + [anon_sym_fn] = ACTIONS(235), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(454), + [sym__before_unary_op] = ACTIONS(480), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), + [sym__quoted_atom_start] = ACTIONS(243), }, [473] = { - [sym__expression] = STATE(3353), - [sym_block] = STATE(3353), - [sym__identifier] = STATE(64), - [sym_identifier] = STATE(64), - [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3353), - [sym_nil] = STATE(3353), - [sym__atom] = STATE(3353), - [sym_quoted_atom] = STATE(3353), - [sym__quoted_i_double] = STATE(3395), - [sym__quoted_i_single] = STATE(3394), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3353), - [sym_charlist] = STATE(3353), - [sym_sigil] = STATE(3353), - [sym_list] = STATE(3353), - [sym_tuple] = STATE(3353), - [sym_bitstring] = STATE(3353), - [sym_map] = STATE(3353), - [sym_unary_operator] = STATE(3353), - [sym_binary_operator] = STATE(3353), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3353), - [sym_call] = STATE(3353), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), - [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3353), - [sym_anonymous_function] = STATE(3353), + [sym__expression] = STATE(1218), + [sym_block] = STATE(1218), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(1218), + [sym_nil] = STATE(1218), + [sym__atom] = STATE(1218), + [sym_quoted_atom] = STATE(1218), + [sym__quoted_i_double] = STATE(1250), + [sym__quoted_i_single] = STATE(1249), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(1218), + [sym_charlist] = STATE(1218), + [sym_sigil] = STATE(1218), + [sym_list] = STATE(1218), + [sym_tuple] = STATE(1218), + [sym_bitstring] = STATE(1218), + [sym_map] = STATE(1218), + [sym_unary_operator] = STATE(1218), + [sym_binary_operator] = STATE(1218), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(1218), + [sym_call] = STATE(1218), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(1218), + [sym_anonymous_function] = STATE(1218), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1361), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(828), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(461), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), [sym_alias] = ACTIONS(1813), [sym_integer] = ACTIONS(1813), [sym_float] = ACTIONS(1813), [sym_char] = ACTIONS(1813), - [anon_sym_true] = ACTIONS(834), - [anon_sym_false] = ACTIONS(834), - [anon_sym_nil] = ACTIONS(836), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), [sym_atom] = ACTIONS(1813), - [anon_sym_DQUOTE] = ACTIONS(838), - [anon_sym_SQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(850), - [anon_sym_LT_LT] = ACTIONS(852), - [anon_sym_PERCENT] = ACTIONS(854), - [anon_sym_AMP] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_BANG] = ACTIONS(858), - [anon_sym_CARET] = ACTIONS(858), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), - [anon_sym_not] = ACTIONS(858), - [anon_sym_AT] = ACTIONS(860), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(476), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_CARET] = ACTIONS(476), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(476), + [anon_sym_not] = ACTIONS(476), + [anon_sym_AT] = ACTIONS(478), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -86161,92 +86799,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(864), + [anon_sym_fn] = ACTIONS(235), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(866), + [sym__before_unary_op] = ACTIONS(480), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(868), + [sym__quoted_atom_start] = ACTIONS(243), }, [474] = { - [sym__expression] = STATE(3354), - [sym_block] = STATE(3354), - [sym__identifier] = STATE(64), - [sym_identifier] = STATE(64), - [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3354), - [sym_nil] = STATE(3354), - [sym__atom] = STATE(3354), - [sym_quoted_atom] = STATE(3354), - [sym__quoted_i_double] = STATE(3395), - [sym__quoted_i_single] = STATE(3394), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3354), - [sym_charlist] = STATE(3354), - [sym_sigil] = STATE(3354), - [sym_list] = STATE(3354), - [sym_tuple] = STATE(3354), - [sym_bitstring] = STATE(3354), - [sym_map] = STATE(3354), - [sym_unary_operator] = STATE(3354), - [sym_binary_operator] = STATE(3354), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3354), - [sym_call] = STATE(3354), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), - [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3354), - [sym_anonymous_function] = STATE(3354), + [sym__expression] = STATE(2331), + [sym_block] = STATE(2331), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2331), + [sym_nil] = STATE(2331), + [sym__atom] = STATE(2331), + [sym_quoted_atom] = STATE(2331), + [sym__quoted_i_double] = STATE(1250), + [sym__quoted_i_single] = STATE(1249), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(2331), + [sym_charlist] = STATE(2331), + [sym_sigil] = STATE(2331), + [sym_list] = STATE(2331), + [sym_tuple] = STATE(2331), + [sym_bitstring] = STATE(2331), + [sym_map] = STATE(2331), + [sym_unary_operator] = STATE(2331), + [sym_binary_operator] = STATE(2331), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(2331), + [sym_call] = STATE(2331), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(2331), + [sym_anonymous_function] = STATE(2331), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1361), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(828), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(461), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), [sym_alias] = ACTIONS(1815), [sym_integer] = ACTIONS(1815), [sym_float] = ACTIONS(1815), [sym_char] = ACTIONS(1815), - [anon_sym_true] = ACTIONS(834), - [anon_sym_false] = ACTIONS(834), - [anon_sym_nil] = ACTIONS(836), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), [sym_atom] = ACTIONS(1815), - [anon_sym_DQUOTE] = ACTIONS(838), - [anon_sym_SQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(850), - [anon_sym_LT_LT] = ACTIONS(852), - [anon_sym_PERCENT] = ACTIONS(854), - [anon_sym_AMP] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_BANG] = ACTIONS(858), - [anon_sym_CARET] = ACTIONS(858), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), - [anon_sym_not] = ACTIONS(858), - [anon_sym_AT] = ACTIONS(860), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(476), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_CARET] = ACTIONS(476), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(476), + [anon_sym_not] = ACTIONS(476), + [anon_sym_AT] = ACTIONS(478), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -86286,63 +86924,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(864), + [anon_sym_fn] = ACTIONS(235), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(866), + [sym__before_unary_op] = ACTIONS(480), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(868), + [sym__quoted_atom_start] = ACTIONS(243), }, [475] = { - [sym__expression] = STATE(2423), - [sym_block] = STATE(2423), - [sym__identifier] = STATE(47), - [sym_identifier] = STATE(47), - [sym_special_identifier] = STATE(47), - [sym_boolean] = STATE(2423), - [sym_nil] = STATE(2423), - [sym__atom] = STATE(2423), - [sym_quoted_atom] = STATE(2423), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2423), - [sym_charlist] = STATE(2423), - [sym_sigil] = STATE(2423), - [sym_list] = STATE(2423), - [sym_tuple] = STATE(2423), - [sym_bitstring] = STATE(2423), - [sym_map] = STATE(2423), - [sym_unary_operator] = STATE(2423), - [sym_binary_operator] = STATE(2423), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2423), - [sym_call] = STATE(2423), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(41), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2423), - [sym_anonymous_function] = STATE(2423), + [sym__expression] = STATE(2330), + [sym_block] = STATE(2330), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2330), + [sym_nil] = STATE(2330), + [sym__atom] = STATE(2330), + [sym_quoted_atom] = STATE(2330), + [sym__quoted_i_double] = STATE(1250), + [sym__quoted_i_single] = STATE(1249), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(2330), + [sym_charlist] = STATE(2330), + [sym_sigil] = STATE(2330), + [sym_list] = STATE(2330), + [sym_tuple] = STATE(2330), + [sym_bitstring] = STATE(2330), + [sym_map] = STATE(2330), + [sym_unary_operator] = STATE(2330), + [sym_binary_operator] = STATE(2330), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(2330), + [sym_call] = STATE(2330), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(2330), + [sym_anonymous_function] = STATE(2330), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(438), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(461), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), [sym_alias] = ACTIONS(1817), [sym_integer] = ACTIONS(1817), [sym_float] = ACTIONS(1817), @@ -86360,18 +86998,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(448), - [anon_sym_PLUS] = ACTIONS(450), - [anon_sym_DASH] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(450), - [anon_sym_CARET] = ACTIONS(450), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), - [anon_sym_not] = ACTIONS(450), - [anon_sym_AT] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(476), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_CARET] = ACTIONS(476), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(476), + [anon_sym_not] = ACTIONS(476), + [anon_sym_AT] = ACTIONS(478), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -86411,217 +87049,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), + [anon_sym_fn] = ACTIONS(235), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(454), + [sym__before_unary_op] = ACTIONS(480), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), + [sym__quoted_atom_start] = ACTIONS(243), }, [476] = { - [sym__expression] = STATE(3047), - [sym_block] = STATE(3047), - [sym__identifier] = STATE(63), - [sym_identifier] = STATE(63), - [sym_special_identifier] = STATE(63), - [sym_boolean] = STATE(3047), - [sym_nil] = STATE(3047), - [sym__atom] = STATE(3047), - [sym_quoted_atom] = STATE(3047), - [sym__quoted_i_double] = STATE(2988), - [sym__quoted_i_single] = STATE(2987), - [sym__quoted_i_heredoc_single] = STATE(2987), - [sym__quoted_i_heredoc_double] = STATE(2988), - [sym_string] = STATE(3047), - [sym_charlist] = STATE(3047), - [sym_sigil] = STATE(3047), - [sym_list] = STATE(3047), - [sym_tuple] = STATE(3047), - [sym_bitstring] = STATE(3047), - [sym_map] = STATE(3047), - [sym_unary_operator] = STATE(3047), - [sym_binary_operator] = STATE(3047), - [sym_operator_identifier] = STATE(5020), - [sym_dot] = STATE(3047), - [sym_call] = STATE(3047), - [sym__call_without_parentheses] = STATE(2986), - [sym__call_with_parentheses] = STATE(2985), - [sym__local_call_without_parentheses] = STATE(2984), - [sym__local_call_with_parentheses] = STATE(2047), - [sym__local_call_just_do_block] = STATE(2983), - [sym__remote_call_without_parentheses] = STATE(2982), - [sym__remote_call_with_parentheses] = STATE(2050), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(2052), - [sym__anonymous_dot] = STATE(4887), - [sym__double_call] = STATE(2981), - [sym_access_call] = STATE(3047), - [sym_anonymous_function] = STATE(3047), + [sym__expression] = STATE(2325), + [sym_block] = STATE(2325), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2325), + [sym_nil] = STATE(2325), + [sym__atom] = STATE(2325), + [sym_quoted_atom] = STATE(2325), + [sym__quoted_i_double] = STATE(1250), + [sym__quoted_i_single] = STATE(1249), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(2325), + [sym_charlist] = STATE(2325), + [sym_sigil] = STATE(2325), + [sym_list] = STATE(2325), + [sym_tuple] = STATE(2325), + [sym_bitstring] = STATE(2325), + [sym_map] = STATE(2325), + [sym_unary_operator] = STATE(2325), + [sym_binary_operator] = STATE(2325), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(2325), + [sym_call] = STATE(2325), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(2325), + [sym_anonymous_function] = STATE(2325), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(604), - [aux_sym_identifier_token1] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(606), - [sym_unused_identifier] = ACTIONS(608), - [anon_sym___MODULE__] = ACTIONS(610), - [anon_sym___DIR__] = ACTIONS(610), - [anon_sym___ENV__] = ACTIONS(610), - [anon_sym___CALLER__] = ACTIONS(610), - [anon_sym___STACKTRACE__] = ACTIONS(610), - [sym_alias] = ACTIONS(1393), - [sym_integer] = ACTIONS(1393), - [sym_float] = ACTIONS(1393), - [sym_char] = ACTIONS(1393), - [anon_sym_true] = ACTIONS(614), - [anon_sym_false] = ACTIONS(614), - [anon_sym_nil] = ACTIONS(616), - [sym_atom] = ACTIONS(1393), - [anon_sym_DQUOTE] = ACTIONS(618), - [anon_sym_SQUOTE] = ACTIONS(620), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(624), - [anon_sym_LBRACE] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(630), - [anon_sym_LT_LT] = ACTIONS(634), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_AMP] = ACTIONS(638), - [anon_sym_PLUS] = ACTIONS(640), - [anon_sym_DASH] = ACTIONS(640), - [anon_sym_BANG] = ACTIONS(640), - [anon_sym_CARET] = ACTIONS(640), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(640), - [anon_sym_not] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(642), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(646), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(652), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(654), - }, - [477] = { - [sym__expression] = STATE(3137), - [sym_block] = STATE(3137), - [sym__identifier] = STATE(68), - [sym_identifier] = STATE(68), - [sym_special_identifier] = STATE(68), - [sym_boolean] = STATE(3137), - [sym_nil] = STATE(3137), - [sym__atom] = STATE(3137), - [sym_quoted_atom] = STATE(3137), - [sym__quoted_i_double] = STATE(1866), - [sym__quoted_i_single] = STATE(1867), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(3137), - [sym_charlist] = STATE(3137), - [sym_sigil] = STATE(3137), - [sym_list] = STATE(3137), - [sym_tuple] = STATE(3137), - [sym_bitstring] = STATE(3137), - [sym_map] = STATE(3137), - [sym_unary_operator] = STATE(3137), - [sym_binary_operator] = STATE(3137), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(3137), - [sym_call] = STATE(3137), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(3137), - [sym_anonymous_function] = STATE(3137), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(662), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(461), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), [sym_alias] = ACTIONS(1819), [sym_integer] = ACTIONS(1819), [sym_float] = ACTIONS(1819), [sym_char] = ACTIONS(1819), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), [sym_atom] = ACTIONS(1819), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(670), - [anon_sym_DASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(670), - [anon_sym_CARET] = ACTIONS(670), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(670), - [anon_sym_not] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(476), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_CARET] = ACTIONS(476), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(476), + [anon_sym_not] = ACTIONS(476), + [anon_sym_AT] = ACTIONS(478), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -86661,63 +87174,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), + [anon_sym_fn] = ACTIONS(235), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(674), + [sym__before_unary_op] = ACTIONS(480), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), + [sym__quoted_atom_start] = ACTIONS(243), }, - [478] = { - [sym__expression] = STATE(2692), - [sym_block] = STATE(2692), - [sym__identifier] = STATE(47), - [sym_identifier] = STATE(47), - [sym_special_identifier] = STATE(47), - [sym_boolean] = STATE(2692), - [sym_nil] = STATE(2692), - [sym__atom] = STATE(2692), - [sym_quoted_atom] = STATE(2692), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2692), - [sym_charlist] = STATE(2692), - [sym_sigil] = STATE(2692), - [sym_list] = STATE(2692), - [sym_tuple] = STATE(2692), - [sym_bitstring] = STATE(2692), - [sym_map] = STATE(2692), - [sym_unary_operator] = STATE(2692), - [sym_binary_operator] = STATE(2692), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2692), - [sym_call] = STATE(2692), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(41), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2692), - [sym_anonymous_function] = STATE(2692), + [477] = { + [sym__expression] = STATE(2324), + [sym_block] = STATE(2324), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2324), + [sym_nil] = STATE(2324), + [sym__atom] = STATE(2324), + [sym_quoted_atom] = STATE(2324), + [sym__quoted_i_double] = STATE(1250), + [sym__quoted_i_single] = STATE(1249), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(2324), + [sym_charlist] = STATE(2324), + [sym_sigil] = STATE(2324), + [sym_list] = STATE(2324), + [sym_tuple] = STATE(2324), + [sym_bitstring] = STATE(2324), + [sym_map] = STATE(2324), + [sym_unary_operator] = STATE(2324), + [sym_binary_operator] = STATE(2324), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(2324), + [sym_call] = STATE(2324), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(2324), + [sym_anonymous_function] = STATE(2324), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(438), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(461), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), [sym_alias] = ACTIONS(1821), [sym_integer] = ACTIONS(1821), [sym_float] = ACTIONS(1821), @@ -86736,17 +87249,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(448), - [anon_sym_PLUS] = ACTIONS(450), - [anon_sym_DASH] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(450), - [anon_sym_CARET] = ACTIONS(450), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), - [anon_sym_not] = ACTIONS(450), - [anon_sym_AT] = ACTIONS(452), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(476), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_CARET] = ACTIONS(476), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(476), + [anon_sym_not] = ACTIONS(476), + [anon_sym_AT] = ACTIONS(478), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -86786,63 +87299,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), + [anon_sym_fn] = ACTIONS(235), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(454), + [sym__before_unary_op] = ACTIONS(480), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), + [sym__quoted_atom_start] = ACTIONS(243), }, - [479] = { - [sym__expression] = STATE(2489), - [sym_block] = STATE(2489), - [sym__identifier] = STATE(47), - [sym_identifier] = STATE(47), - [sym_special_identifier] = STATE(47), - [sym_boolean] = STATE(2489), - [sym_nil] = STATE(2489), - [sym__atom] = STATE(2489), - [sym_quoted_atom] = STATE(2489), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2489), - [sym_charlist] = STATE(2489), - [sym_sigil] = STATE(2489), - [sym_list] = STATE(2489), - [sym_tuple] = STATE(2489), - [sym_bitstring] = STATE(2489), - [sym_map] = STATE(2489), - [sym_unary_operator] = STATE(2489), - [sym_binary_operator] = STATE(2489), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2489), - [sym_call] = STATE(2489), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(41), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2489), - [sym_anonymous_function] = STATE(2489), + [478] = { + [sym__expression] = STATE(2323), + [sym_block] = STATE(2323), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2323), + [sym_nil] = STATE(2323), + [sym__atom] = STATE(2323), + [sym_quoted_atom] = STATE(2323), + [sym__quoted_i_double] = STATE(1250), + [sym__quoted_i_single] = STATE(1249), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(2323), + [sym_charlist] = STATE(2323), + [sym_sigil] = STATE(2323), + [sym_list] = STATE(2323), + [sym_tuple] = STATE(2323), + [sym_bitstring] = STATE(2323), + [sym_map] = STATE(2323), + [sym_unary_operator] = STATE(2323), + [sym_binary_operator] = STATE(2323), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(2323), + [sym_call] = STATE(2323), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(2323), + [sym_anonymous_function] = STATE(2323), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(438), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(461), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), [sym_alias] = ACTIONS(1823), [sym_integer] = ACTIONS(1823), [sym_float] = ACTIONS(1823), @@ -86861,17 +87374,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(448), - [anon_sym_PLUS] = ACTIONS(450), - [anon_sym_DASH] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(450), - [anon_sym_CARET] = ACTIONS(450), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), - [anon_sym_not] = ACTIONS(450), - [anon_sym_AT] = ACTIONS(452), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(476), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_CARET] = ACTIONS(476), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(476), + [anon_sym_not] = ACTIONS(476), + [anon_sym_AT] = ACTIONS(478), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -86911,446 +87424,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), + [anon_sym_fn] = ACTIONS(235), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(454), + [sym__before_unary_op] = ACTIONS(480), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), + [sym__quoted_atom_start] = ACTIONS(243), }, - [480] = { - [sym__expression] = STATE(3485), - [sym_block] = STATE(3485), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3485), - [sym_nil] = STATE(3485), - [sym__atom] = STATE(3485), - [sym_quoted_atom] = STATE(3485), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3485), - [sym_charlist] = STATE(3485), - [sym_sigil] = STATE(3485), - [sym_list] = STATE(3485), - [sym_tuple] = STATE(3485), - [sym_bitstring] = STATE(3485), - [sym_map] = STATE(3485), - [sym_unary_operator] = STATE(3485), - [sym_binary_operator] = STATE(3485), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3485), - [sym_call] = STATE(3485), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3485), - [sym_anonymous_function] = STATE(3485), + [479] = { + [sym__expression] = STATE(2319), + [sym_block] = STATE(2319), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2319), + [sym_nil] = STATE(2319), + [sym__atom] = STATE(2319), + [sym_quoted_atom] = STATE(2319), + [sym__quoted_i_double] = STATE(1250), + [sym__quoted_i_single] = STATE(1249), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(2319), + [sym_charlist] = STATE(2319), + [sym_sigil] = STATE(2319), + [sym_list] = STATE(2319), + [sym_tuple] = STATE(2319), + [sym_bitstring] = STATE(2319), + [sym_map] = STATE(2319), + [sym_unary_operator] = STATE(2319), + [sym_binary_operator] = STATE(2319), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(2319), + [sym_call] = STATE(2319), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(2319), + [sym_anonymous_function] = STATE(2319), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1555), - [sym_integer] = ACTIONS(1555), - [sym_float] = ACTIONS(1555), - [sym_char] = ACTIONS(1555), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1555), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [481] = { - [sym__expression] = STATE(3335), - [sym_block] = STATE(3335), - [sym__identifier] = STATE(64), - [sym_identifier] = STATE(64), - [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3335), - [sym_nil] = STATE(3335), - [sym__atom] = STATE(3335), - [sym_quoted_atom] = STATE(3335), - [sym__quoted_i_double] = STATE(3395), - [sym__quoted_i_single] = STATE(3394), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3335), - [sym_charlist] = STATE(3335), - [sym_sigil] = STATE(3335), - [sym_list] = STATE(3335), - [sym_tuple] = STATE(3335), - [sym_bitstring] = STATE(3335), - [sym_map] = STATE(3335), - [sym_unary_operator] = STATE(3335), - [sym_binary_operator] = STATE(3335), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3335), - [sym_call] = STATE(3335), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), - [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3335), - [sym_anonymous_function] = STATE(3335), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1361), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(828), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(461), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), [sym_alias] = ACTIONS(1825), [sym_integer] = ACTIONS(1825), [sym_float] = ACTIONS(1825), [sym_char] = ACTIONS(1825), - [anon_sym_true] = ACTIONS(834), - [anon_sym_false] = ACTIONS(834), - [anon_sym_nil] = ACTIONS(836), - [sym_atom] = ACTIONS(1825), - [anon_sym_DQUOTE] = ACTIONS(838), - [anon_sym_SQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(850), - [anon_sym_LT_LT] = ACTIONS(852), - [anon_sym_PERCENT] = ACTIONS(854), - [anon_sym_AMP] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_BANG] = ACTIONS(858), - [anon_sym_CARET] = ACTIONS(858), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), - [anon_sym_not] = ACTIONS(858), - [anon_sym_AT] = ACTIONS(860), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(864), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(866), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(868), - }, - [482] = { - [sym__expression] = STATE(3020), - [sym_block] = STATE(3020), - [sym__identifier] = STATE(68), - [sym_identifier] = STATE(68), - [sym_special_identifier] = STATE(68), - [sym_boolean] = STATE(3020), - [sym_nil] = STATE(3020), - [sym__atom] = STATE(3020), - [sym_quoted_atom] = STATE(3020), - [sym__quoted_i_double] = STATE(1866), - [sym__quoted_i_single] = STATE(1867), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(3020), - [sym_charlist] = STATE(3020), - [sym_sigil] = STATE(3020), - [sym_list] = STATE(3020), - [sym_tuple] = STATE(3020), - [sym_bitstring] = STATE(3020), - [sym_map] = STATE(3020), - [sym_unary_operator] = STATE(3020), - [sym_binary_operator] = STATE(3020), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(3020), - [sym_call] = STATE(3020), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(3020), - [sym_anonymous_function] = STATE(3020), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(662), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(1827), - [sym_integer] = ACTIONS(1827), - [sym_float] = ACTIONS(1827), - [sym_char] = ACTIONS(1827), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), - [sym_atom] = ACTIONS(1827), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(670), - [anon_sym_DASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(670), - [anon_sym_CARET] = ACTIONS(670), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(670), - [anon_sym_not] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(672), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(674), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), - }, - [483] = { - [sym__expression] = STATE(2529), - [sym_block] = STATE(2529), - [sym__identifier] = STATE(47), - [sym_identifier] = STATE(47), - [sym_special_identifier] = STATE(47), - [sym_boolean] = STATE(2529), - [sym_nil] = STATE(2529), - [sym__atom] = STATE(2529), - [sym_quoted_atom] = STATE(2529), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2529), - [sym_charlist] = STATE(2529), - [sym_sigil] = STATE(2529), - [sym_list] = STATE(2529), - [sym_tuple] = STATE(2529), - [sym_bitstring] = STATE(2529), - [sym_map] = STATE(2529), - [sym_unary_operator] = STATE(2529), - [sym_binary_operator] = STATE(2529), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2529), - [sym_call] = STATE(2529), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(41), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2529), - [sym_anonymous_function] = STATE(2529), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(438), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(1409), - [sym_integer] = ACTIONS(1409), - [sym_float] = ACTIONS(1409), - [sym_char] = ACTIONS(1409), [anon_sym_true] = ACTIONS(203), [anon_sym_false] = ACTIONS(203), [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1409), + [sym_atom] = ACTIONS(1825), [anon_sym_DQUOTE] = ACTIONS(207), [anon_sym_SQUOTE] = ACTIONS(209), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), @@ -87361,17 +87499,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(448), - [anon_sym_PLUS] = ACTIONS(450), - [anon_sym_DASH] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(450), - [anon_sym_CARET] = ACTIONS(450), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), - [anon_sym_not] = ACTIONS(450), - [anon_sym_AT] = ACTIONS(452), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(476), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_CARET] = ACTIONS(476), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(476), + [anon_sym_not] = ACTIONS(476), + [anon_sym_AT] = ACTIONS(478), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -87411,63 +87549,313 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), + [anon_sym_fn] = ACTIONS(235), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(454), + [sym__before_unary_op] = ACTIONS(480), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), + [sym__quoted_atom_start] = ACTIONS(243), }, - [484] = { - [sym__expression] = STATE(2490), - [sym_block] = STATE(2490), + [480] = { + [sym__expression] = STATE(2881), + [sym_block] = STATE(2881), + [sym__identifier] = STATE(56), + [sym_identifier] = STATE(56), + [sym_special_identifier] = STATE(56), + [sym_boolean] = STATE(2881), + [sym_nil] = STATE(2881), + [sym__atom] = STATE(2881), + [sym_quoted_atom] = STATE(2881), + [sym__quoted_i_double] = STATE(2913), + [sym__quoted_i_single] = STATE(2912), + [sym__quoted_i_heredoc_single] = STATE(2910), + [sym__quoted_i_heredoc_double] = STATE(2805), + [sym_string] = STATE(2881), + [sym_charlist] = STATE(2881), + [sym_sigil] = STATE(2881), + [sym_list] = STATE(2881), + [sym_tuple] = STATE(2881), + [sym_bitstring] = STATE(2881), + [sym_map] = STATE(2881), + [sym_unary_operator] = STATE(2881), + [sym_binary_operator] = STATE(2881), + [sym_operator_identifier] = STATE(5636), + [sym_dot] = STATE(2881), + [sym_call] = STATE(2881), + [sym__call_without_parentheses] = STATE(2883), + [sym__call_with_parentheses] = STATE(2876), + [sym__local_call_without_parentheses] = STATE(2870), + [sym__local_call_with_parentheses] = STATE(2037), + [sym__local_call_just_do_block] = STATE(2853), + [sym__remote_call_without_parentheses] = STATE(2846), + [sym__remote_call_with_parentheses] = STATE(2038), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2051), + [sym__anonymous_dot] = STATE(5534), + [sym__double_call] = STATE(2836), + [sym_access_call] = STATE(2881), + [sym_anonymous_function] = STATE(2881), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(1827), + [sym_integer] = ACTIONS(1827), + [sym_float] = ACTIONS(1827), + [sym_char] = ACTIONS(1827), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(1827), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [481] = { + [sym__expression] = STATE(3435), + [sym_block] = STATE(3435), + [sym__identifier] = STATE(61), + [sym_identifier] = STATE(61), + [sym_special_identifier] = STATE(61), + [sym_boolean] = STATE(3435), + [sym_nil] = STATE(3435), + [sym__atom] = STATE(3435), + [sym_quoted_atom] = STATE(3435), + [sym__quoted_i_double] = STATE(3318), + [sym__quoted_i_single] = STATE(3317), + [sym__quoted_i_heredoc_single] = STATE(3316), + [sym__quoted_i_heredoc_double] = STATE(3315), + [sym_string] = STATE(3435), + [sym_charlist] = STATE(3435), + [sym_sigil] = STATE(3435), + [sym_list] = STATE(3435), + [sym_tuple] = STATE(3435), + [sym_bitstring] = STATE(3435), + [sym_map] = STATE(3435), + [sym_unary_operator] = STATE(3435), + [sym_binary_operator] = STATE(3435), + [sym_operator_identifier] = STATE(5628), + [sym_dot] = STATE(3435), + [sym_call] = STATE(3435), + [sym__call_without_parentheses] = STATE(3314), + [sym__call_with_parentheses] = STATE(3313), + [sym__local_call_without_parentheses] = STATE(3312), + [sym__local_call_with_parentheses] = STATE(2420), + [sym__local_call_just_do_block] = STATE(3311), + [sym__remote_call_without_parentheses] = STATE(3310), + [sym__remote_call_with_parentheses] = STATE(2423), + [sym__remote_dot] = STATE(60), + [sym__anonymous_call] = STATE(2425), + [sym__anonymous_dot] = STATE(5498), + [sym__double_call] = STATE(3309), + [sym_access_call] = STATE(3435), + [sym_anonymous_function] = STATE(3435), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(1489), + [sym_integer] = ACTIONS(1489), + [sym_float] = ACTIONS(1489), + [sym_char] = ACTIONS(1489), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(1489), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(643), + [anon_sym_not] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(649), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(655), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(657), + }, + [482] = { + [sym__expression] = STATE(2318), + [sym_block] = STATE(2318), [sym__identifier] = STATE(42), [sym_identifier] = STATE(42), [sym_special_identifier] = STATE(42), - [sym_boolean] = STATE(2490), - [sym_nil] = STATE(2490), - [sym__atom] = STATE(2490), - [sym_quoted_atom] = STATE(2490), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2490), - [sym_charlist] = STATE(2490), - [sym_sigil] = STATE(2490), - [sym_list] = STATE(2490), - [sym_tuple] = STATE(2490), - [sym_bitstring] = STATE(2490), - [sym_map] = STATE(2490), - [sym_unary_operator] = STATE(2490), - [sym_binary_operator] = STATE(2490), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2490), - [sym_call] = STATE(2490), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2490), - [sym_anonymous_function] = STATE(2490), + [sym_boolean] = STATE(2318), + [sym_nil] = STATE(2318), + [sym__atom] = STATE(2318), + [sym_quoted_atom] = STATE(2318), + [sym__quoted_i_double] = STATE(1250), + [sym__quoted_i_single] = STATE(1249), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(2318), + [sym_charlist] = STATE(2318), + [sym_sigil] = STATE(2318), + [sym_list] = STATE(2318), + [sym_tuple] = STATE(2318), + [sym_bitstring] = STATE(2318), + [sym_map] = STATE(2318), + [sym_unary_operator] = STATE(2318), + [sym_binary_operator] = STATE(2318), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(2318), + [sym_call] = STATE(2318), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(2318), + [sym_anonymous_function] = STATE(2318), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(456), - [sym_unused_identifier] = ACTIONS(458), - [anon_sym___MODULE__] = ACTIONS(460), - [anon_sym___DIR__] = ACTIONS(460), - [anon_sym___ENV__] = ACTIONS(460), - [anon_sym___CALLER__] = ACTIONS(460), - [anon_sym___STACKTRACE__] = ACTIONS(460), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(461), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), [sym_alias] = ACTIONS(1829), [sym_integer] = ACTIONS(1829), [sym_float] = ACTIONS(1829), @@ -87485,18 +87873,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(464), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(473), - [anon_sym_BANG] = ACTIONS(473), - [anon_sym_CARET] = ACTIONS(473), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), - [anon_sym_not] = ACTIONS(473), - [anon_sym_AT] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(476), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_CARET] = ACTIONS(476), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(476), + [anon_sym_not] = ACTIONS(476), + [anon_sym_AT] = ACTIONS(478), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -87536,71 +87924,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), + [anon_sym_fn] = ACTIONS(235), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(477), + [sym__before_unary_op] = ACTIONS(480), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), + [sym__quoted_atom_start] = ACTIONS(243), }, - [485] = { - [sym__expression] = STATE(1432), - [sym_block] = STATE(1432), + [483] = { + [sym__expression] = STATE(2317), + [sym_block] = STATE(2317), [sym__identifier] = STATE(42), [sym_identifier] = STATE(42), [sym_special_identifier] = STATE(42), - [sym_boolean] = STATE(1432), - [sym_nil] = STATE(1432), - [sym__atom] = STATE(1432), - [sym_quoted_atom] = STATE(1432), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(1432), - [sym_charlist] = STATE(1432), - [sym_sigil] = STATE(1432), - [sym_list] = STATE(1432), - [sym_tuple] = STATE(1432), - [sym_bitstring] = STATE(1432), - [sym_map] = STATE(1432), - [sym_unary_operator] = STATE(1432), - [sym_binary_operator] = STATE(1432), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(1432), - [sym_call] = STATE(1432), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(1432), - [sym_anonymous_function] = STATE(1432), + [sym_boolean] = STATE(2317), + [sym_nil] = STATE(2317), + [sym__atom] = STATE(2317), + [sym_quoted_atom] = STATE(2317), + [sym__quoted_i_double] = STATE(1250), + [sym__quoted_i_single] = STATE(1249), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(2317), + [sym_charlist] = STATE(2317), + [sym_sigil] = STATE(2317), + [sym_list] = STATE(2317), + [sym_tuple] = STATE(2317), + [sym_bitstring] = STATE(2317), + [sym_map] = STATE(2317), + [sym_unary_operator] = STATE(2317), + [sym_binary_operator] = STATE(2317), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(2317), + [sym_call] = STATE(2317), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(2317), + [sym_anonymous_function] = STATE(2317), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(456), - [sym_unused_identifier] = ACTIONS(458), - [anon_sym___MODULE__] = ACTIONS(460), - [anon_sym___DIR__] = ACTIONS(460), - [anon_sym___ENV__] = ACTIONS(460), - [anon_sym___CALLER__] = ACTIONS(460), - [anon_sym___STACKTRACE__] = ACTIONS(460), - [sym_alias] = ACTIONS(1795), - [sym_integer] = ACTIONS(1795), - [sym_float] = ACTIONS(1795), - [sym_char] = ACTIONS(1795), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(461), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), + [sym_alias] = ACTIONS(1831), + [sym_integer] = ACTIONS(1831), + [sym_float] = ACTIONS(1831), + [sym_char] = ACTIONS(1831), [anon_sym_true] = ACTIONS(203), [anon_sym_false] = ACTIONS(203), [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1795), + [sym_atom] = ACTIONS(1831), [anon_sym_DQUOTE] = ACTIONS(207), [anon_sym_SQUOTE] = ACTIONS(209), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), @@ -87610,143 +87998,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(464), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(473), - [anon_sym_BANG] = ACTIONS(473), - [anon_sym_CARET] = ACTIONS(473), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), - [anon_sym_not] = ACTIONS(473), - [anon_sym_AT] = ACTIONS(475), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(477), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [486] = { - [sym__expression] = STATE(3338), - [sym_block] = STATE(3338), - [sym__identifier] = STATE(64), - [sym_identifier] = STATE(64), - [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3338), - [sym_nil] = STATE(3338), - [sym__atom] = STATE(3338), - [sym_quoted_atom] = STATE(3338), - [sym__quoted_i_double] = STATE(3395), - [sym__quoted_i_single] = STATE(3394), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3338), - [sym_charlist] = STATE(3338), - [sym_sigil] = STATE(3338), - [sym_list] = STATE(3338), - [sym_tuple] = STATE(3338), - [sym_bitstring] = STATE(3338), - [sym_map] = STATE(3338), - [sym_unary_operator] = STATE(3338), - [sym_binary_operator] = STATE(3338), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3338), - [sym_call] = STATE(3338), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), - [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3338), - [sym_anonymous_function] = STATE(3338), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1361), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(828), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1831), - [sym_integer] = ACTIONS(1831), - [sym_float] = ACTIONS(1831), - [sym_char] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(834), - [anon_sym_false] = ACTIONS(834), - [anon_sym_nil] = ACTIONS(836), - [sym_atom] = ACTIONS(1831), - [anon_sym_DQUOTE] = ACTIONS(838), - [anon_sym_SQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(850), - [anon_sym_LT_LT] = ACTIONS(852), - [anon_sym_PERCENT] = ACTIONS(854), - [anon_sym_AMP] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_BANG] = ACTIONS(858), - [anon_sym_CARET] = ACTIONS(858), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), - [anon_sym_not] = ACTIONS(858), - [anon_sym_AT] = ACTIONS(860), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(476), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_CARET] = ACTIONS(476), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(476), + [anon_sym_not] = ACTIONS(476), + [anon_sym_AT] = ACTIONS(478), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -87786,92 +88049,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(864), + [anon_sym_fn] = ACTIONS(235), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(866), + [sym__before_unary_op] = ACTIONS(480), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(868), + [sym__quoted_atom_start] = ACTIONS(243), }, - [487] = { - [sym__expression] = STATE(3131), - [sym_block] = STATE(3131), - [sym__identifier] = STATE(68), - [sym_identifier] = STATE(68), - [sym_special_identifier] = STATE(68), - [sym_boolean] = STATE(3131), - [sym_nil] = STATE(3131), - [sym__atom] = STATE(3131), - [sym_quoted_atom] = STATE(3131), - [sym__quoted_i_double] = STATE(1866), - [sym__quoted_i_single] = STATE(1867), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(3131), - [sym_charlist] = STATE(3131), - [sym_sigil] = STATE(3131), - [sym_list] = STATE(3131), - [sym_tuple] = STATE(3131), - [sym_bitstring] = STATE(3131), - [sym_map] = STATE(3131), - [sym_unary_operator] = STATE(3131), - [sym_binary_operator] = STATE(3131), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(3131), - [sym_call] = STATE(3131), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(3131), - [sym_anonymous_function] = STATE(3131), + [484] = { + [sym__expression] = STATE(2316), + [sym_block] = STATE(2316), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2316), + [sym_nil] = STATE(2316), + [sym__atom] = STATE(2316), + [sym_quoted_atom] = STATE(2316), + [sym__quoted_i_double] = STATE(1250), + [sym__quoted_i_single] = STATE(1249), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(2316), + [sym_charlist] = STATE(2316), + [sym_sigil] = STATE(2316), + [sym_list] = STATE(2316), + [sym_tuple] = STATE(2316), + [sym_bitstring] = STATE(2316), + [sym_map] = STATE(2316), + [sym_unary_operator] = STATE(2316), + [sym_binary_operator] = STATE(2316), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(2316), + [sym_call] = STATE(2316), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(2316), + [sym_anonymous_function] = STATE(2316), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(662), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(461), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), [sym_alias] = ACTIONS(1833), [sym_integer] = ACTIONS(1833), [sym_float] = ACTIONS(1833), [sym_char] = ACTIONS(1833), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), [sym_atom] = ACTIONS(1833), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(670), - [anon_sym_DASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(670), - [anon_sym_CARET] = ACTIONS(670), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(670), - [anon_sym_not] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(476), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_CARET] = ACTIONS(476), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(476), + [anon_sym_not] = ACTIONS(476), + [anon_sym_AT] = ACTIONS(478), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -87911,92 +88174,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), + [anon_sym_fn] = ACTIONS(235), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(674), + [sym__before_unary_op] = ACTIONS(480), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), + [sym__quoted_atom_start] = ACTIONS(243), }, - [488] = { - [sym__expression] = STATE(3130), - [sym_block] = STATE(3130), - [sym__identifier] = STATE(68), - [sym_identifier] = STATE(68), - [sym_special_identifier] = STATE(68), - [sym_boolean] = STATE(3130), - [sym_nil] = STATE(3130), - [sym__atom] = STATE(3130), - [sym_quoted_atom] = STATE(3130), - [sym__quoted_i_double] = STATE(1866), - [sym__quoted_i_single] = STATE(1867), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(3130), - [sym_charlist] = STATE(3130), - [sym_sigil] = STATE(3130), - [sym_list] = STATE(3130), - [sym_tuple] = STATE(3130), - [sym_bitstring] = STATE(3130), - [sym_map] = STATE(3130), - [sym_unary_operator] = STATE(3130), - [sym_binary_operator] = STATE(3130), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(3130), - [sym_call] = STATE(3130), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(3130), - [sym_anonymous_function] = STATE(3130), + [485] = { + [sym__expression] = STATE(2315), + [sym_block] = STATE(2315), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2315), + [sym_nil] = STATE(2315), + [sym__atom] = STATE(2315), + [sym_quoted_atom] = STATE(2315), + [sym__quoted_i_double] = STATE(1250), + [sym__quoted_i_single] = STATE(1249), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(2315), + [sym_charlist] = STATE(2315), + [sym_sigil] = STATE(2315), + [sym_list] = STATE(2315), + [sym_tuple] = STATE(2315), + [sym_bitstring] = STATE(2315), + [sym_map] = STATE(2315), + [sym_unary_operator] = STATE(2315), + [sym_binary_operator] = STATE(2315), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(2315), + [sym_call] = STATE(2315), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(2315), + [sym_anonymous_function] = STATE(2315), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(662), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(461), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), [sym_alias] = ACTIONS(1835), [sym_integer] = ACTIONS(1835), [sym_float] = ACTIONS(1835), [sym_char] = ACTIONS(1835), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), [sym_atom] = ACTIONS(1835), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(670), - [anon_sym_DASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(670), - [anon_sym_CARET] = ACTIONS(670), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(670), - [anon_sym_not] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(476), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_CARET] = ACTIONS(476), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(476), + [anon_sym_not] = ACTIONS(476), + [anon_sym_AT] = ACTIONS(478), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -88036,92 +88299,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), + [anon_sym_fn] = ACTIONS(235), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(674), + [sym__before_unary_op] = ACTIONS(480), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), + [sym__quoted_atom_start] = ACTIONS(243), }, - [489] = { - [sym__expression] = STATE(3128), - [sym_block] = STATE(3128), - [sym__identifier] = STATE(68), - [sym_identifier] = STATE(68), - [sym_special_identifier] = STATE(68), - [sym_boolean] = STATE(3128), - [sym_nil] = STATE(3128), - [sym__atom] = STATE(3128), - [sym_quoted_atom] = STATE(3128), - [sym__quoted_i_double] = STATE(1866), - [sym__quoted_i_single] = STATE(1867), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(3128), - [sym_charlist] = STATE(3128), - [sym_sigil] = STATE(3128), - [sym_list] = STATE(3128), - [sym_tuple] = STATE(3128), - [sym_bitstring] = STATE(3128), - [sym_map] = STATE(3128), - [sym_unary_operator] = STATE(3128), - [sym_binary_operator] = STATE(3128), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(3128), - [sym_call] = STATE(3128), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(3128), - [sym_anonymous_function] = STATE(3128), + [486] = { + [sym__expression] = STATE(2314), + [sym_block] = STATE(2314), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2314), + [sym_nil] = STATE(2314), + [sym__atom] = STATE(2314), + [sym_quoted_atom] = STATE(2314), + [sym__quoted_i_double] = STATE(1250), + [sym__quoted_i_single] = STATE(1249), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(2314), + [sym_charlist] = STATE(2314), + [sym_sigil] = STATE(2314), + [sym_list] = STATE(2314), + [sym_tuple] = STATE(2314), + [sym_bitstring] = STATE(2314), + [sym_map] = STATE(2314), + [sym_unary_operator] = STATE(2314), + [sym_binary_operator] = STATE(2314), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(2314), + [sym_call] = STATE(2314), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(2314), + [sym_anonymous_function] = STATE(2314), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(662), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(461), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), [sym_alias] = ACTIONS(1837), [sym_integer] = ACTIONS(1837), [sym_float] = ACTIONS(1837), [sym_char] = ACTIONS(1837), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), [sym_atom] = ACTIONS(1837), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(670), - [anon_sym_DASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(670), - [anon_sym_CARET] = ACTIONS(670), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(670), - [anon_sym_not] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(476), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_CARET] = ACTIONS(476), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(476), + [anon_sym_not] = ACTIONS(476), + [anon_sym_AT] = ACTIONS(478), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -88161,92 +88424,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), + [anon_sym_fn] = ACTIONS(235), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(674), + [sym__before_unary_op] = ACTIONS(480), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), + [sym__quoted_atom_start] = ACTIONS(243), }, - [490] = { - [sym__expression] = STATE(3127), - [sym_block] = STATE(3127), - [sym__identifier] = STATE(68), - [sym_identifier] = STATE(68), - [sym_special_identifier] = STATE(68), - [sym_boolean] = STATE(3127), - [sym_nil] = STATE(3127), - [sym__atom] = STATE(3127), - [sym_quoted_atom] = STATE(3127), - [sym__quoted_i_double] = STATE(1866), - [sym__quoted_i_single] = STATE(1867), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(3127), - [sym_charlist] = STATE(3127), - [sym_sigil] = STATE(3127), - [sym_list] = STATE(3127), - [sym_tuple] = STATE(3127), - [sym_bitstring] = STATE(3127), - [sym_map] = STATE(3127), - [sym_unary_operator] = STATE(3127), - [sym_binary_operator] = STATE(3127), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(3127), - [sym_call] = STATE(3127), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(3127), - [sym_anonymous_function] = STATE(3127), + [487] = { + [sym__expression] = STATE(2303), + [sym_block] = STATE(2303), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2303), + [sym_nil] = STATE(2303), + [sym__atom] = STATE(2303), + [sym_quoted_atom] = STATE(2303), + [sym__quoted_i_double] = STATE(1250), + [sym__quoted_i_single] = STATE(1249), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(2303), + [sym_charlist] = STATE(2303), + [sym_sigil] = STATE(2303), + [sym_list] = STATE(2303), + [sym_tuple] = STATE(2303), + [sym_bitstring] = STATE(2303), + [sym_map] = STATE(2303), + [sym_unary_operator] = STATE(2303), + [sym_binary_operator] = STATE(2303), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(2303), + [sym_call] = STATE(2303), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(2303), + [sym_anonymous_function] = STATE(2303), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(662), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(461), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), [sym_alias] = ACTIONS(1839), [sym_integer] = ACTIONS(1839), [sym_float] = ACTIONS(1839), [sym_char] = ACTIONS(1839), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), [sym_atom] = ACTIONS(1839), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(670), - [anon_sym_DASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(670), - [anon_sym_CARET] = ACTIONS(670), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(670), - [anon_sym_not] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(476), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_CARET] = ACTIONS(476), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(476), + [anon_sym_not] = ACTIONS(476), + [anon_sym_AT] = ACTIONS(478), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -88286,92 +88549,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), + [anon_sym_fn] = ACTIONS(235), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(674), + [sym__before_unary_op] = ACTIONS(480), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), + [sym__quoted_atom_start] = ACTIONS(243), }, - [491] = { - [sym__expression] = STATE(1757), - [sym_block] = STATE(1757), - [sym__identifier] = STATE(25), - [sym_identifier] = STATE(25), - [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1757), - [sym_nil] = STATE(1757), - [sym__atom] = STATE(1757), - [sym_quoted_atom] = STATE(1757), - [sym__quoted_i_double] = STATE(1551), - [sym__quoted_i_single] = STATE(1552), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1757), - [sym_charlist] = STATE(1757), - [sym_sigil] = STATE(1757), - [sym_list] = STATE(1757), - [sym_tuple] = STATE(1757), - [sym_bitstring] = STATE(1757), - [sym_map] = STATE(1757), - [sym_unary_operator] = STATE(1757), - [sym_binary_operator] = STATE(1757), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1757), - [sym_call] = STATE(1757), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1757), - [sym_anonymous_function] = STATE(1757), + [488] = { + [sym__expression] = STATE(2298), + [sym_block] = STATE(2298), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2298), + [sym_nil] = STATE(2298), + [sym__atom] = STATE(2298), + [sym_quoted_atom] = STATE(2298), + [sym__quoted_i_double] = STATE(1250), + [sym__quoted_i_single] = STATE(1249), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(2298), + [sym_charlist] = STATE(2298), + [sym_sigil] = STATE(2298), + [sym_list] = STATE(2298), + [sym_tuple] = STATE(2298), + [sym_bitstring] = STATE(2298), + [sym_map] = STATE(2298), + [sym_unary_operator] = STATE(2298), + [sym_binary_operator] = STATE(2298), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(2298), + [sym_call] = STATE(2298), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(2298), + [sym_anonymous_function] = STATE(2298), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1479), - [aux_sym_identifier_token1] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(69), - [anon_sym___MODULE__] = ACTIONS(71), - [anon_sym___DIR__] = ACTIONS(71), - [anon_sym___ENV__] = ACTIONS(71), - [anon_sym___CALLER__] = ACTIONS(71), - [anon_sym___STACKTRACE__] = ACTIONS(71), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(461), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), [sym_alias] = ACTIONS(1841), [sym_integer] = ACTIONS(1841), [sym_float] = ACTIONS(1841), [sym_char] = ACTIONS(1841), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), [sym_atom] = ACTIONS(1841), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_LT_LT] = ACTIONS(95), - [anon_sym_PERCENT] = ACTIONS(97), - [anon_sym_AMP] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), - [anon_sym_BANG] = ACTIONS(101), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), - [anon_sym_not] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(476), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_CARET] = ACTIONS(476), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(476), + [anon_sym_not] = ACTIONS(476), + [anon_sym_AT] = ACTIONS(478), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -88411,63 +88674,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(235), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(119), + [sym__before_unary_op] = ACTIONS(480), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(121), + [sym__quoted_atom_start] = ACTIONS(243), }, - [492] = { - [sym__expression] = STATE(2500), - [sym_block] = STATE(2500), - [sym__identifier] = STATE(47), - [sym_identifier] = STATE(47), - [sym_special_identifier] = STATE(47), - [sym_boolean] = STATE(2500), - [sym_nil] = STATE(2500), - [sym__atom] = STATE(2500), - [sym_quoted_atom] = STATE(2500), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2500), - [sym_charlist] = STATE(2500), - [sym_sigil] = STATE(2500), - [sym_list] = STATE(2500), - [sym_tuple] = STATE(2500), - [sym_bitstring] = STATE(2500), - [sym_map] = STATE(2500), - [sym_unary_operator] = STATE(2500), - [sym_binary_operator] = STATE(2500), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2500), - [sym_call] = STATE(2500), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(41), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2500), - [sym_anonymous_function] = STATE(2500), + [489] = { + [sym__expression] = STATE(2294), + [sym_block] = STATE(2294), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2294), + [sym_nil] = STATE(2294), + [sym__atom] = STATE(2294), + [sym_quoted_atom] = STATE(2294), + [sym__quoted_i_double] = STATE(1250), + [sym__quoted_i_single] = STATE(1249), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(2294), + [sym_charlist] = STATE(2294), + [sym_sigil] = STATE(2294), + [sym_list] = STATE(2294), + [sym_tuple] = STATE(2294), + [sym_bitstring] = STATE(2294), + [sym_map] = STATE(2294), + [sym_unary_operator] = STATE(2294), + [sym_binary_operator] = STATE(2294), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(2294), + [sym_call] = STATE(2294), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(2294), + [sym_anonymous_function] = STATE(2294), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(438), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(461), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), [sym_alias] = ACTIONS(1843), [sym_integer] = ACTIONS(1843), [sym_float] = ACTIONS(1843), @@ -88486,17 +88749,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(448), - [anon_sym_PLUS] = ACTIONS(450), - [anon_sym_DASH] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(450), - [anon_sym_CARET] = ACTIONS(450), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), - [anon_sym_not] = ACTIONS(450), - [anon_sym_AT] = ACTIONS(452), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(476), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_CARET] = ACTIONS(476), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(476), + [anon_sym_not] = ACTIONS(476), + [anon_sym_AT] = ACTIONS(478), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -88536,92 +88799,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), + [anon_sym_fn] = ACTIONS(235), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(454), + [sym__before_unary_op] = ACTIONS(480), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), + [sym__quoted_atom_start] = ACTIONS(243), }, - [493] = { - [sym__expression] = STATE(2795), - [sym_block] = STATE(2795), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(2795), - [sym_nil] = STATE(2795), - [sym__atom] = STATE(2795), - [sym_quoted_atom] = STATE(2795), - [sym__quoted_i_double] = STATE(1551), - [sym__quoted_i_single] = STATE(1552), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(2795), - [sym_charlist] = STATE(2795), - [sym_sigil] = STATE(2795), - [sym_list] = STATE(2795), - [sym_tuple] = STATE(2795), - [sym_bitstring] = STATE(2795), - [sym_map] = STATE(2795), - [sym_unary_operator] = STATE(2795), - [sym_binary_operator] = STATE(2795), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(2795), - [sym_call] = STATE(2795), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(2795), - [sym_anonymous_function] = STATE(2795), + [490] = { + [sym__expression] = STATE(2293), + [sym_block] = STATE(2293), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2293), + [sym_nil] = STATE(2293), + [sym__atom] = STATE(2293), + [sym_quoted_atom] = STATE(2293), + [sym__quoted_i_double] = STATE(1250), + [sym__quoted_i_single] = STATE(1249), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(2293), + [sym_charlist] = STATE(2293), + [sym_sigil] = STATE(2293), + [sym_list] = STATE(2293), + [sym_tuple] = STATE(2293), + [sym_bitstring] = STATE(2293), + [sym_map] = STATE(2293), + [sym_unary_operator] = STATE(2293), + [sym_binary_operator] = STATE(2293), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(2293), + [sym_call] = STATE(2293), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(2293), + [sym_anonymous_function] = STATE(2293), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1479), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(706), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(461), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), [sym_alias] = ACTIONS(1845), [sym_integer] = ACTIONS(1845), [sym_float] = ACTIONS(1845), [sym_char] = ACTIONS(1845), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), [sym_atom] = ACTIONS(1845), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(712), - [anon_sym_LT_LT] = ACTIONS(95), - [anon_sym_PERCENT] = ACTIONS(97), - [anon_sym_AMP] = ACTIONS(714), - [anon_sym_PLUS] = ACTIONS(716), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_CARET] = ACTIONS(716), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), - [anon_sym_not] = ACTIONS(716), - [anon_sym_AT] = ACTIONS(718), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(476), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_CARET] = ACTIONS(476), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(476), + [anon_sym_not] = ACTIONS(476), + [anon_sym_AT] = ACTIONS(478), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -88661,92 +88924,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(235), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(722), + [sym__before_unary_op] = ACTIONS(480), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(121), + [sym__quoted_atom_start] = ACTIONS(243), }, - [494] = { - [sym__expression] = STATE(1508), - [sym_block] = STATE(1508), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(1508), - [sym_nil] = STATE(1508), - [sym__atom] = STATE(1508), - [sym_quoted_atom] = STATE(1508), - [sym__quoted_i_double] = STATE(1551), - [sym__quoted_i_single] = STATE(1552), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1508), - [sym_charlist] = STATE(1508), - [sym_sigil] = STATE(1508), - [sym_list] = STATE(1508), - [sym_tuple] = STATE(1508), - [sym_bitstring] = STATE(1508), - [sym_map] = STATE(1508), - [sym_unary_operator] = STATE(1508), - [sym_binary_operator] = STATE(1508), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1508), - [sym_call] = STATE(1508), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1508), - [sym_anonymous_function] = STATE(1508), + [491] = { + [sym__expression] = STATE(2292), + [sym_block] = STATE(2292), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2292), + [sym_nil] = STATE(2292), + [sym__atom] = STATE(2292), + [sym_quoted_atom] = STATE(2292), + [sym__quoted_i_double] = STATE(1250), + [sym__quoted_i_single] = STATE(1249), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(2292), + [sym_charlist] = STATE(2292), + [sym_sigil] = STATE(2292), + [sym_list] = STATE(2292), + [sym_tuple] = STATE(2292), + [sym_bitstring] = STATE(2292), + [sym_map] = STATE(2292), + [sym_unary_operator] = STATE(2292), + [sym_binary_operator] = STATE(2292), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(2292), + [sym_call] = STATE(2292), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(2292), + [sym_anonymous_function] = STATE(2292), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1479), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(706), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(461), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), [sym_alias] = ACTIONS(1847), [sym_integer] = ACTIONS(1847), [sym_float] = ACTIONS(1847), [sym_char] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), [sym_atom] = ACTIONS(1847), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(712), - [anon_sym_LT_LT] = ACTIONS(95), - [anon_sym_PERCENT] = ACTIONS(97), - [anon_sym_AMP] = ACTIONS(714), - [anon_sym_PLUS] = ACTIONS(716), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_CARET] = ACTIONS(716), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), - [anon_sym_not] = ACTIONS(716), - [anon_sym_AT] = ACTIONS(718), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(476), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_CARET] = ACTIONS(476), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(476), + [anon_sym_not] = ACTIONS(476), + [anon_sym_AT] = ACTIONS(478), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -88786,92 +89049,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(235), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(722), + [sym__before_unary_op] = ACTIONS(480), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(121), + [sym__quoted_atom_start] = ACTIONS(243), }, - [495] = { - [sym__expression] = STATE(2752), - [sym_block] = STATE(2752), - [sym__identifier] = STATE(42), - [sym_identifier] = STATE(42), - [sym_special_identifier] = STATE(42), - [sym_boolean] = STATE(2752), - [sym_nil] = STATE(2752), - [sym__atom] = STATE(2752), - [sym_quoted_atom] = STATE(2752), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2752), - [sym_charlist] = STATE(2752), - [sym_sigil] = STATE(2752), - [sym_list] = STATE(2752), - [sym_tuple] = STATE(2752), - [sym_bitstring] = STATE(2752), - [sym_map] = STATE(2752), - [sym_unary_operator] = STATE(2752), - [sym_binary_operator] = STATE(2752), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2752), - [sym_call] = STATE(2752), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2752), - [sym_anonymous_function] = STATE(2752), + [492] = { + [sym__expression] = STATE(2869), + [sym_block] = STATE(2869), + [sym__identifier] = STATE(51), + [sym_identifier] = STATE(51), + [sym_special_identifier] = STATE(51), + [sym_boolean] = STATE(2869), + [sym_nil] = STATE(2869), + [sym__atom] = STATE(2869), + [sym_quoted_atom] = STATE(2869), + [sym__quoted_i_double] = STATE(2738), + [sym__quoted_i_single] = STATE(2766), + [sym__quoted_i_heredoc_single] = STATE(2751), + [sym__quoted_i_heredoc_double] = STATE(2852), + [sym_string] = STATE(2869), + [sym_charlist] = STATE(2869), + [sym_sigil] = STATE(2869), + [sym_list] = STATE(2869), + [sym_tuple] = STATE(2869), + [sym_bitstring] = STATE(2869), + [sym_map] = STATE(2869), + [sym_unary_operator] = STATE(2869), + [sym_binary_operator] = STATE(2869), + [sym_operator_identifier] = STATE(5596), + [sym_dot] = STATE(2869), + [sym_call] = STATE(2869), + [sym__call_without_parentheses] = STATE(2764), + [sym__call_with_parentheses] = STATE(2765), + [sym__local_call_without_parentheses] = STATE(2767), + [sym__local_call_with_parentheses] = STATE(2120), + [sym__local_call_just_do_block] = STATE(2833), + [sym__remote_call_without_parentheses] = STATE(2843), + [sym__remote_call_with_parentheses] = STATE(2108), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2107), + [sym__anonymous_dot] = STATE(5500), + [sym__double_call] = STATE(2844), + [sym_access_call] = STATE(2869), + [sym_anonymous_function] = STATE(2869), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(456), - [sym_unused_identifier] = ACTIONS(458), - [anon_sym___MODULE__] = ACTIONS(460), - [anon_sym___DIR__] = ACTIONS(460), - [anon_sym___ENV__] = ACTIONS(460), - [anon_sym___CALLER__] = ACTIONS(460), - [anon_sym___STACKTRACE__] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), [sym_alias] = ACTIONS(1849), [sym_integer] = ACTIONS(1849), [sym_float] = ACTIONS(1849), [sym_char] = ACTIONS(1849), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), [sym_atom] = ACTIONS(1849), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(464), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(473), - [anon_sym_BANG] = ACTIONS(473), - [anon_sym_CARET] = ACTIONS(473), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), - [anon_sym_not] = ACTIONS(473), - [anon_sym_AT] = ACTIONS(475), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -88911,92 +89174,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), + [anon_sym_fn] = ACTIONS(541), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(477), + [sym__before_unary_op] = ACTIONS(545), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), + [sym__quoted_atom_start] = ACTIONS(547), }, - [496] = { - [sym__expression] = STATE(1801), - [sym_block] = STATE(1801), - [sym__identifier] = STATE(25), - [sym_identifier] = STATE(25), - [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1801), - [sym_nil] = STATE(1801), - [sym__atom] = STATE(1801), - [sym_quoted_atom] = STATE(1801), - [sym__quoted_i_double] = STATE(1551), - [sym__quoted_i_single] = STATE(1552), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1801), - [sym_charlist] = STATE(1801), - [sym_sigil] = STATE(1801), - [sym_list] = STATE(1801), - [sym_tuple] = STATE(1801), - [sym_bitstring] = STATE(1801), - [sym_map] = STATE(1801), - [sym_unary_operator] = STATE(1801), - [sym_binary_operator] = STATE(1801), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1801), - [sym_call] = STATE(1801), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1801), - [sym_anonymous_function] = STATE(1801), + [493] = { + [sym__expression] = STATE(2837), + [sym_block] = STATE(2837), + [sym__identifier] = STATE(51), + [sym_identifier] = STATE(51), + [sym_special_identifier] = STATE(51), + [sym_boolean] = STATE(2837), + [sym_nil] = STATE(2837), + [sym__atom] = STATE(2837), + [sym_quoted_atom] = STATE(2837), + [sym__quoted_i_double] = STATE(2738), + [sym__quoted_i_single] = STATE(2766), + [sym__quoted_i_heredoc_single] = STATE(2751), + [sym__quoted_i_heredoc_double] = STATE(2852), + [sym_string] = STATE(2837), + [sym_charlist] = STATE(2837), + [sym_sigil] = STATE(2837), + [sym_list] = STATE(2837), + [sym_tuple] = STATE(2837), + [sym_bitstring] = STATE(2837), + [sym_map] = STATE(2837), + [sym_unary_operator] = STATE(2837), + [sym_binary_operator] = STATE(2837), + [sym_operator_identifier] = STATE(5596), + [sym_dot] = STATE(2837), + [sym_call] = STATE(2837), + [sym__call_without_parentheses] = STATE(2764), + [sym__call_with_parentheses] = STATE(2765), + [sym__local_call_without_parentheses] = STATE(2767), + [sym__local_call_with_parentheses] = STATE(2120), + [sym__local_call_just_do_block] = STATE(2833), + [sym__remote_call_without_parentheses] = STATE(2843), + [sym__remote_call_with_parentheses] = STATE(2108), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2107), + [sym__anonymous_dot] = STATE(5500), + [sym__double_call] = STATE(2844), + [sym_access_call] = STATE(2837), + [sym_anonymous_function] = STATE(2837), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1479), - [aux_sym_identifier_token1] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(69), - [anon_sym___MODULE__] = ACTIONS(71), - [anon_sym___DIR__] = ACTIONS(71), - [anon_sym___ENV__] = ACTIONS(71), - [anon_sym___CALLER__] = ACTIONS(71), - [anon_sym___STACKTRACE__] = ACTIONS(71), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), [sym_alias] = ACTIONS(1851), [sym_integer] = ACTIONS(1851), [sym_float] = ACTIONS(1851), [sym_char] = ACTIONS(1851), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), [sym_atom] = ACTIONS(1851), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_LT_LT] = ACTIONS(95), - [anon_sym_PERCENT] = ACTIONS(97), - [anon_sym_AMP] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), - [anon_sym_BANG] = ACTIONS(101), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), - [anon_sym_not] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -89036,92 +89299,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(541), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(119), + [sym__before_unary_op] = ACTIONS(545), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(121), + [sym__quoted_atom_start] = ACTIONS(547), }, - [497] = { - [sym__expression] = STATE(1804), - [sym_block] = STATE(1804), - [sym__identifier] = STATE(25), - [sym_identifier] = STATE(25), - [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1804), - [sym_nil] = STATE(1804), - [sym__atom] = STATE(1804), - [sym_quoted_atom] = STATE(1804), - [sym__quoted_i_double] = STATE(1551), - [sym__quoted_i_single] = STATE(1552), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1804), - [sym_charlist] = STATE(1804), - [sym_sigil] = STATE(1804), - [sym_list] = STATE(1804), - [sym_tuple] = STATE(1804), - [sym_bitstring] = STATE(1804), - [sym_map] = STATE(1804), - [sym_unary_operator] = STATE(1804), - [sym_binary_operator] = STATE(1804), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1804), - [sym_call] = STATE(1804), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1804), - [sym_anonymous_function] = STATE(1804), + [494] = { + [sym__expression] = STATE(2841), + [sym_block] = STATE(2841), + [sym__identifier] = STATE(51), + [sym_identifier] = STATE(51), + [sym_special_identifier] = STATE(51), + [sym_boolean] = STATE(2841), + [sym_nil] = STATE(2841), + [sym__atom] = STATE(2841), + [sym_quoted_atom] = STATE(2841), + [sym__quoted_i_double] = STATE(2738), + [sym__quoted_i_single] = STATE(2766), + [sym__quoted_i_heredoc_single] = STATE(2751), + [sym__quoted_i_heredoc_double] = STATE(2852), + [sym_string] = STATE(2841), + [sym_charlist] = STATE(2841), + [sym_sigil] = STATE(2841), + [sym_list] = STATE(2841), + [sym_tuple] = STATE(2841), + [sym_bitstring] = STATE(2841), + [sym_map] = STATE(2841), + [sym_unary_operator] = STATE(2841), + [sym_binary_operator] = STATE(2841), + [sym_operator_identifier] = STATE(5596), + [sym_dot] = STATE(2841), + [sym_call] = STATE(2841), + [sym__call_without_parentheses] = STATE(2764), + [sym__call_with_parentheses] = STATE(2765), + [sym__local_call_without_parentheses] = STATE(2767), + [sym__local_call_with_parentheses] = STATE(2120), + [sym__local_call_just_do_block] = STATE(2833), + [sym__remote_call_without_parentheses] = STATE(2843), + [sym__remote_call_with_parentheses] = STATE(2108), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2107), + [sym__anonymous_dot] = STATE(5500), + [sym__double_call] = STATE(2844), + [sym_access_call] = STATE(2841), + [sym_anonymous_function] = STATE(2841), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1479), - [aux_sym_identifier_token1] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(69), - [anon_sym___MODULE__] = ACTIONS(71), - [anon_sym___DIR__] = ACTIONS(71), - [anon_sym___ENV__] = ACTIONS(71), - [anon_sym___CALLER__] = ACTIONS(71), - [anon_sym___STACKTRACE__] = ACTIONS(71), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), [sym_alias] = ACTIONS(1853), [sym_integer] = ACTIONS(1853), [sym_float] = ACTIONS(1853), [sym_char] = ACTIONS(1853), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), [sym_atom] = ACTIONS(1853), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_LT_LT] = ACTIONS(95), - [anon_sym_PERCENT] = ACTIONS(97), - [anon_sym_AMP] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), - [anon_sym_BANG] = ACTIONS(101), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), - [anon_sym_not] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -89161,92 +89424,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(541), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(119), + [sym__before_unary_op] = ACTIONS(545), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(121), + [sym__quoted_atom_start] = ACTIONS(547), }, - [498] = { - [sym__expression] = STATE(1722), - [sym_block] = STATE(1722), - [sym__identifier] = STATE(25), - [sym_identifier] = STATE(25), - [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1722), - [sym_nil] = STATE(1722), - [sym__atom] = STATE(1722), - [sym_quoted_atom] = STATE(1722), - [sym__quoted_i_double] = STATE(1551), - [sym__quoted_i_single] = STATE(1552), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1722), - [sym_charlist] = STATE(1722), - [sym_sigil] = STATE(1722), - [sym_list] = STATE(1722), - [sym_tuple] = STATE(1722), - [sym_bitstring] = STATE(1722), - [sym_map] = STATE(1722), - [sym_unary_operator] = STATE(1722), - [sym_binary_operator] = STATE(1722), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1722), - [sym_call] = STATE(1722), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1722), - [sym_anonymous_function] = STATE(1722), + [495] = { + [sym__expression] = STATE(3045), + [sym_block] = STATE(3045), + [sym__identifier] = STATE(51), + [sym_identifier] = STATE(51), + [sym_special_identifier] = STATE(51), + [sym_boolean] = STATE(3045), + [sym_nil] = STATE(3045), + [sym__atom] = STATE(3045), + [sym_quoted_atom] = STATE(3045), + [sym__quoted_i_double] = STATE(2738), + [sym__quoted_i_single] = STATE(2766), + [sym__quoted_i_heredoc_single] = STATE(2751), + [sym__quoted_i_heredoc_double] = STATE(2852), + [sym_string] = STATE(3045), + [sym_charlist] = STATE(3045), + [sym_sigil] = STATE(3045), + [sym_list] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_bitstring] = STATE(3045), + [sym_map] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_binary_operator] = STATE(3045), + [sym_operator_identifier] = STATE(5596), + [sym_dot] = STATE(3045), + [sym_call] = STATE(3045), + [sym__call_without_parentheses] = STATE(2764), + [sym__call_with_parentheses] = STATE(2765), + [sym__local_call_without_parentheses] = STATE(2767), + [sym__local_call_with_parentheses] = STATE(2120), + [sym__local_call_just_do_block] = STATE(2833), + [sym__remote_call_without_parentheses] = STATE(2843), + [sym__remote_call_with_parentheses] = STATE(2108), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2107), + [sym__anonymous_dot] = STATE(5500), + [sym__double_call] = STATE(2844), + [sym_access_call] = STATE(3045), + [sym_anonymous_function] = STATE(3045), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1479), - [aux_sym_identifier_token1] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(69), - [anon_sym___MODULE__] = ACTIONS(71), - [anon_sym___DIR__] = ACTIONS(71), - [anon_sym___ENV__] = ACTIONS(71), - [anon_sym___CALLER__] = ACTIONS(71), - [anon_sym___STACKTRACE__] = ACTIONS(71), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), [sym_alias] = ACTIONS(1855), [sym_integer] = ACTIONS(1855), [sym_float] = ACTIONS(1855), [sym_char] = ACTIONS(1855), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), [sym_atom] = ACTIONS(1855), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_LT_LT] = ACTIONS(95), - [anon_sym_PERCENT] = ACTIONS(97), - [anon_sym_AMP] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), - [anon_sym_BANG] = ACTIONS(101), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), - [anon_sym_not] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -89286,92 +89549,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(541), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(119), + [sym__before_unary_op] = ACTIONS(545), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(121), + [sym__quoted_atom_start] = ACTIONS(547), }, - [499] = { - [sym__expression] = STATE(1817), - [sym_block] = STATE(1817), - [sym__identifier] = STATE(25), - [sym_identifier] = STATE(25), - [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1817), - [sym_nil] = STATE(1817), - [sym__atom] = STATE(1817), - [sym_quoted_atom] = STATE(1817), - [sym__quoted_i_double] = STATE(1551), - [sym__quoted_i_single] = STATE(1552), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1817), - [sym_charlist] = STATE(1817), - [sym_sigil] = STATE(1817), - [sym_list] = STATE(1817), - [sym_tuple] = STATE(1817), - [sym_bitstring] = STATE(1817), - [sym_map] = STATE(1817), - [sym_unary_operator] = STATE(1817), - [sym_binary_operator] = STATE(1817), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1817), - [sym_call] = STATE(1817), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1817), - [sym_anonymous_function] = STATE(1817), + [496] = { + [sym__expression] = STATE(2930), + [sym_block] = STATE(2930), + [sym__identifier] = STATE(51), + [sym_identifier] = STATE(51), + [sym_special_identifier] = STATE(51), + [sym_boolean] = STATE(2930), + [sym_nil] = STATE(2930), + [sym__atom] = STATE(2930), + [sym_quoted_atom] = STATE(2930), + [sym__quoted_i_double] = STATE(2738), + [sym__quoted_i_single] = STATE(2766), + [sym__quoted_i_heredoc_single] = STATE(2751), + [sym__quoted_i_heredoc_double] = STATE(2852), + [sym_string] = STATE(2930), + [sym_charlist] = STATE(2930), + [sym_sigil] = STATE(2930), + [sym_list] = STATE(2930), + [sym_tuple] = STATE(2930), + [sym_bitstring] = STATE(2930), + [sym_map] = STATE(2930), + [sym_unary_operator] = STATE(2930), + [sym_binary_operator] = STATE(2930), + [sym_operator_identifier] = STATE(5596), + [sym_dot] = STATE(2930), + [sym_call] = STATE(2930), + [sym__call_without_parentheses] = STATE(2764), + [sym__call_with_parentheses] = STATE(2765), + [sym__local_call_without_parentheses] = STATE(2767), + [sym__local_call_with_parentheses] = STATE(2120), + [sym__local_call_just_do_block] = STATE(2833), + [sym__remote_call_without_parentheses] = STATE(2843), + [sym__remote_call_with_parentheses] = STATE(2108), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2107), + [sym__anonymous_dot] = STATE(5500), + [sym__double_call] = STATE(2844), + [sym_access_call] = STATE(2930), + [sym_anonymous_function] = STATE(2930), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1479), - [aux_sym_identifier_token1] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(69), - [anon_sym___MODULE__] = ACTIONS(71), - [anon_sym___DIR__] = ACTIONS(71), - [anon_sym___ENV__] = ACTIONS(71), - [anon_sym___CALLER__] = ACTIONS(71), - [anon_sym___STACKTRACE__] = ACTIONS(71), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), [sym_alias] = ACTIONS(1857), [sym_integer] = ACTIONS(1857), [sym_float] = ACTIONS(1857), [sym_char] = ACTIONS(1857), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), [sym_atom] = ACTIONS(1857), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_LT_LT] = ACTIONS(95), - [anon_sym_PERCENT] = ACTIONS(97), - [anon_sym_AMP] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), - [anon_sym_BANG] = ACTIONS(101), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), - [anon_sym_not] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -89411,92 +89674,217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(541), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(119), + [sym__before_unary_op] = ACTIONS(545), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(121), + [sym__quoted_atom_start] = ACTIONS(547), }, - [500] = { - [sym__expression] = STATE(1827), - [sym_block] = STATE(1827), - [sym__identifier] = STATE(25), - [sym_identifier] = STATE(25), - [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1827), - [sym_nil] = STATE(1827), - [sym__atom] = STATE(1827), - [sym_quoted_atom] = STATE(1827), - [sym__quoted_i_double] = STATE(1551), - [sym__quoted_i_single] = STATE(1552), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1827), - [sym_charlist] = STATE(1827), - [sym_sigil] = STATE(1827), - [sym_list] = STATE(1827), - [sym_tuple] = STATE(1827), - [sym_bitstring] = STATE(1827), - [sym_map] = STATE(1827), - [sym_unary_operator] = STATE(1827), - [sym_binary_operator] = STATE(1827), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1827), - [sym_call] = STATE(1827), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1827), - [sym_anonymous_function] = STATE(1827), + [497] = { + [sym__expression] = STATE(4104), + [sym_block] = STATE(4104), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(4104), + [sym_nil] = STATE(4104), + [sym__atom] = STATE(4104), + [sym_quoted_atom] = STATE(4104), + [sym__quoted_i_double] = STATE(3664), + [sym__quoted_i_single] = STATE(3697), + [sym__quoted_i_heredoc_single] = STATE(3698), + [sym__quoted_i_heredoc_double] = STATE(3702), + [sym_string] = STATE(4104), + [sym_charlist] = STATE(4104), + [sym_sigil] = STATE(4104), + [sym_list] = STATE(4104), + [sym_tuple] = STATE(4104), + [sym_bitstring] = STATE(4104), + [sym_map] = STATE(4104), + [sym_unary_operator] = STATE(4104), + [sym_binary_operator] = STATE(4104), + [sym_operator_identifier] = STATE(5655), + [sym_dot] = STATE(4104), + [sym_call] = STATE(4104), + [sym__call_without_parentheses] = STATE(3705), + [sym__call_with_parentheses] = STATE(3725), + [sym__local_call_without_parentheses] = STATE(3765), + [sym__local_call_with_parentheses] = STATE(2681), + [sym__local_call_just_do_block] = STATE(3808), + [sym__remote_call_without_parentheses] = STATE(3810), + [sym__remote_call_with_parentheses] = STATE(2682), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2683), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(3811), + [sym_access_call] = STATE(4104), + [sym_anonymous_function] = STATE(4104), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1479), - [aux_sym_identifier_token1] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(69), - [anon_sym___MODULE__] = ACTIONS(71), - [anon_sym___DIR__] = ACTIONS(71), - [anon_sym___ENV__] = ACTIONS(71), - [anon_sym___CALLER__] = ACTIONS(71), - [anon_sym___STACKTRACE__] = ACTIONS(71), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), + [sym_alias] = ACTIONS(1563), + [sym_integer] = ACTIONS(1563), + [sym_float] = ACTIONS(1563), + [sym_char] = ACTIONS(1563), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), + [sym_atom] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(55), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(59), + }, + [498] = { + [sym__expression] = STATE(3111), + [sym_block] = STATE(3111), + [sym__identifier] = STATE(51), + [sym_identifier] = STATE(51), + [sym_special_identifier] = STATE(51), + [sym_boolean] = STATE(3111), + [sym_nil] = STATE(3111), + [sym__atom] = STATE(3111), + [sym_quoted_atom] = STATE(3111), + [sym__quoted_i_double] = STATE(2738), + [sym__quoted_i_single] = STATE(2766), + [sym__quoted_i_heredoc_single] = STATE(2751), + [sym__quoted_i_heredoc_double] = STATE(2852), + [sym_string] = STATE(3111), + [sym_charlist] = STATE(3111), + [sym_sigil] = STATE(3111), + [sym_list] = STATE(3111), + [sym_tuple] = STATE(3111), + [sym_bitstring] = STATE(3111), + [sym_map] = STATE(3111), + [sym_unary_operator] = STATE(3111), + [sym_binary_operator] = STATE(3111), + [sym_operator_identifier] = STATE(5596), + [sym_dot] = STATE(3111), + [sym_call] = STATE(3111), + [sym__call_without_parentheses] = STATE(2764), + [sym__call_with_parentheses] = STATE(2765), + [sym__local_call_without_parentheses] = STATE(2767), + [sym__local_call_with_parentheses] = STATE(2120), + [sym__local_call_just_do_block] = STATE(2833), + [sym__remote_call_without_parentheses] = STATE(2843), + [sym__remote_call_with_parentheses] = STATE(2108), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2107), + [sym__anonymous_dot] = STATE(5500), + [sym__double_call] = STATE(2844), + [sym_access_call] = STATE(3111), + [sym_anonymous_function] = STATE(3111), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), [sym_alias] = ACTIONS(1859), [sym_integer] = ACTIONS(1859), [sym_float] = ACTIONS(1859), [sym_char] = ACTIONS(1859), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), [sym_atom] = ACTIONS(1859), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_LT_LT] = ACTIONS(95), - [anon_sym_PERCENT] = ACTIONS(97), - [anon_sym_AMP] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), - [anon_sym_BANG] = ACTIONS(101), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), - [anon_sym_not] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -89536,92 +89924,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(541), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(119), + [sym__before_unary_op] = ACTIONS(545), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(121), + [sym__quoted_atom_start] = ACTIONS(547), }, - [501] = { - [sym__expression] = STATE(1789), - [sym_block] = STATE(1789), - [sym__identifier] = STATE(25), - [sym_identifier] = STATE(25), - [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1789), - [sym_nil] = STATE(1789), - [sym__atom] = STATE(1789), - [sym_quoted_atom] = STATE(1789), - [sym__quoted_i_double] = STATE(1551), - [sym__quoted_i_single] = STATE(1552), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1789), - [sym_charlist] = STATE(1789), - [sym_sigil] = STATE(1789), - [sym_list] = STATE(1789), - [sym_tuple] = STATE(1789), - [sym_bitstring] = STATE(1789), - [sym_map] = STATE(1789), - [sym_unary_operator] = STATE(1789), - [sym_binary_operator] = STATE(1789), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1789), - [sym_call] = STATE(1789), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1789), - [sym_anonymous_function] = STATE(1789), + [499] = { + [sym__expression] = STATE(2998), + [sym_block] = STATE(2998), + [sym__identifier] = STATE(51), + [sym_identifier] = STATE(51), + [sym_special_identifier] = STATE(51), + [sym_boolean] = STATE(2998), + [sym_nil] = STATE(2998), + [sym__atom] = STATE(2998), + [sym_quoted_atom] = STATE(2998), + [sym__quoted_i_double] = STATE(2738), + [sym__quoted_i_single] = STATE(2766), + [sym__quoted_i_heredoc_single] = STATE(2751), + [sym__quoted_i_heredoc_double] = STATE(2852), + [sym_string] = STATE(2998), + [sym_charlist] = STATE(2998), + [sym_sigil] = STATE(2998), + [sym_list] = STATE(2998), + [sym_tuple] = STATE(2998), + [sym_bitstring] = STATE(2998), + [sym_map] = STATE(2998), + [sym_unary_operator] = STATE(2998), + [sym_binary_operator] = STATE(2998), + [sym_operator_identifier] = STATE(5596), + [sym_dot] = STATE(2998), + [sym_call] = STATE(2998), + [sym__call_without_parentheses] = STATE(2764), + [sym__call_with_parentheses] = STATE(2765), + [sym__local_call_without_parentheses] = STATE(2767), + [sym__local_call_with_parentheses] = STATE(2120), + [sym__local_call_just_do_block] = STATE(2833), + [sym__remote_call_without_parentheses] = STATE(2843), + [sym__remote_call_with_parentheses] = STATE(2108), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2107), + [sym__anonymous_dot] = STATE(5500), + [sym__double_call] = STATE(2844), + [sym_access_call] = STATE(2998), + [sym_anonymous_function] = STATE(2998), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1479), - [aux_sym_identifier_token1] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(69), - [anon_sym___MODULE__] = ACTIONS(71), - [anon_sym___DIR__] = ACTIONS(71), - [anon_sym___ENV__] = ACTIONS(71), - [anon_sym___CALLER__] = ACTIONS(71), - [anon_sym___STACKTRACE__] = ACTIONS(71), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), [sym_alias] = ACTIONS(1861), [sym_integer] = ACTIONS(1861), [sym_float] = ACTIONS(1861), [sym_char] = ACTIONS(1861), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), [sym_atom] = ACTIONS(1861), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_LT_LT] = ACTIONS(95), - [anon_sym_PERCENT] = ACTIONS(97), - [anon_sym_AMP] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), - [anon_sym_BANG] = ACTIONS(101), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), - [anon_sym_not] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -89661,92 +90049,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(541), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(119), + [sym__before_unary_op] = ACTIONS(545), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(121), + [sym__quoted_atom_start] = ACTIONS(547), }, - [502] = { - [sym__expression] = STATE(1787), - [sym_block] = STATE(1787), - [sym__identifier] = STATE(25), - [sym_identifier] = STATE(25), - [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1787), - [sym_nil] = STATE(1787), - [sym__atom] = STATE(1787), - [sym_quoted_atom] = STATE(1787), - [sym__quoted_i_double] = STATE(1551), - [sym__quoted_i_single] = STATE(1552), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1787), - [sym_charlist] = STATE(1787), - [sym_sigil] = STATE(1787), - [sym_list] = STATE(1787), - [sym_tuple] = STATE(1787), - [sym_bitstring] = STATE(1787), - [sym_map] = STATE(1787), - [sym_unary_operator] = STATE(1787), - [sym_binary_operator] = STATE(1787), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1787), - [sym_call] = STATE(1787), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1787), - [sym_anonymous_function] = STATE(1787), + [500] = { + [sym__expression] = STATE(2997), + [sym_block] = STATE(2997), + [sym__identifier] = STATE(51), + [sym_identifier] = STATE(51), + [sym_special_identifier] = STATE(51), + [sym_boolean] = STATE(2997), + [sym_nil] = STATE(2997), + [sym__atom] = STATE(2997), + [sym_quoted_atom] = STATE(2997), + [sym__quoted_i_double] = STATE(2738), + [sym__quoted_i_single] = STATE(2766), + [sym__quoted_i_heredoc_single] = STATE(2751), + [sym__quoted_i_heredoc_double] = STATE(2852), + [sym_string] = STATE(2997), + [sym_charlist] = STATE(2997), + [sym_sigil] = STATE(2997), + [sym_list] = STATE(2997), + [sym_tuple] = STATE(2997), + [sym_bitstring] = STATE(2997), + [sym_map] = STATE(2997), + [sym_unary_operator] = STATE(2997), + [sym_binary_operator] = STATE(2997), + [sym_operator_identifier] = STATE(5596), + [sym_dot] = STATE(2997), + [sym_call] = STATE(2997), + [sym__call_without_parentheses] = STATE(2764), + [sym__call_with_parentheses] = STATE(2765), + [sym__local_call_without_parentheses] = STATE(2767), + [sym__local_call_with_parentheses] = STATE(2120), + [sym__local_call_just_do_block] = STATE(2833), + [sym__remote_call_without_parentheses] = STATE(2843), + [sym__remote_call_with_parentheses] = STATE(2108), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2107), + [sym__anonymous_dot] = STATE(5500), + [sym__double_call] = STATE(2844), + [sym_access_call] = STATE(2997), + [sym_anonymous_function] = STATE(2997), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1479), - [aux_sym_identifier_token1] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(69), - [anon_sym___MODULE__] = ACTIONS(71), - [anon_sym___DIR__] = ACTIONS(71), - [anon_sym___ENV__] = ACTIONS(71), - [anon_sym___CALLER__] = ACTIONS(71), - [anon_sym___STACKTRACE__] = ACTIONS(71), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), [sym_alias] = ACTIONS(1863), [sym_integer] = ACTIONS(1863), [sym_float] = ACTIONS(1863), [sym_char] = ACTIONS(1863), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), [sym_atom] = ACTIONS(1863), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_LT_LT] = ACTIONS(95), - [anon_sym_PERCENT] = ACTIONS(97), - [anon_sym_AMP] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), - [anon_sym_BANG] = ACTIONS(101), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), - [anon_sym_not] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -89786,92 +90174,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(541), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(119), + [sym__before_unary_op] = ACTIONS(545), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(121), + [sym__quoted_atom_start] = ACTIONS(547), }, - [503] = { - [sym__expression] = STATE(1784), - [sym_block] = STATE(1784), - [sym__identifier] = STATE(25), - [sym_identifier] = STATE(25), - [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1784), - [sym_nil] = STATE(1784), - [sym__atom] = STATE(1784), - [sym_quoted_atom] = STATE(1784), - [sym__quoted_i_double] = STATE(1551), - [sym__quoted_i_single] = STATE(1552), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1784), - [sym_charlist] = STATE(1784), - [sym_sigil] = STATE(1784), - [sym_list] = STATE(1784), - [sym_tuple] = STATE(1784), - [sym_bitstring] = STATE(1784), - [sym_map] = STATE(1784), - [sym_unary_operator] = STATE(1784), - [sym_binary_operator] = STATE(1784), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1784), - [sym_call] = STATE(1784), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1784), - [sym_anonymous_function] = STATE(1784), + [501] = { + [sym__expression] = STATE(2996), + [sym_block] = STATE(2996), + [sym__identifier] = STATE(51), + [sym_identifier] = STATE(51), + [sym_special_identifier] = STATE(51), + [sym_boolean] = STATE(2996), + [sym_nil] = STATE(2996), + [sym__atom] = STATE(2996), + [sym_quoted_atom] = STATE(2996), + [sym__quoted_i_double] = STATE(2738), + [sym__quoted_i_single] = STATE(2766), + [sym__quoted_i_heredoc_single] = STATE(2751), + [sym__quoted_i_heredoc_double] = STATE(2852), + [sym_string] = STATE(2996), + [sym_charlist] = STATE(2996), + [sym_sigil] = STATE(2996), + [sym_list] = STATE(2996), + [sym_tuple] = STATE(2996), + [sym_bitstring] = STATE(2996), + [sym_map] = STATE(2996), + [sym_unary_operator] = STATE(2996), + [sym_binary_operator] = STATE(2996), + [sym_operator_identifier] = STATE(5596), + [sym_dot] = STATE(2996), + [sym_call] = STATE(2996), + [sym__call_without_parentheses] = STATE(2764), + [sym__call_with_parentheses] = STATE(2765), + [sym__local_call_without_parentheses] = STATE(2767), + [sym__local_call_with_parentheses] = STATE(2120), + [sym__local_call_just_do_block] = STATE(2833), + [sym__remote_call_without_parentheses] = STATE(2843), + [sym__remote_call_with_parentheses] = STATE(2108), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2107), + [sym__anonymous_dot] = STATE(5500), + [sym__double_call] = STATE(2844), + [sym_access_call] = STATE(2996), + [sym_anonymous_function] = STATE(2996), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1479), - [aux_sym_identifier_token1] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(69), - [anon_sym___MODULE__] = ACTIONS(71), - [anon_sym___DIR__] = ACTIONS(71), - [anon_sym___ENV__] = ACTIONS(71), - [anon_sym___CALLER__] = ACTIONS(71), - [anon_sym___STACKTRACE__] = ACTIONS(71), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), [sym_alias] = ACTIONS(1865), [sym_integer] = ACTIONS(1865), [sym_float] = ACTIONS(1865), [sym_char] = ACTIONS(1865), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), [sym_atom] = ACTIONS(1865), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_LT_LT] = ACTIONS(95), - [anon_sym_PERCENT] = ACTIONS(97), - [anon_sym_AMP] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), - [anon_sym_BANG] = ACTIONS(101), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), - [anon_sym_not] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -89911,4028 +90299,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(541), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(119), + [sym__before_unary_op] = ACTIONS(545), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(121), + [sym__quoted_atom_start] = ACTIONS(547), }, - [504] = { - [sym__expression] = STATE(1783), - [sym_block] = STATE(1783), - [sym__identifier] = STATE(25), - [sym_identifier] = STATE(25), - [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1783), - [sym_nil] = STATE(1783), - [sym__atom] = STATE(1783), - [sym_quoted_atom] = STATE(1783), - [sym__quoted_i_double] = STATE(1551), - [sym__quoted_i_single] = STATE(1552), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1783), - [sym_charlist] = STATE(1783), - [sym_sigil] = STATE(1783), - [sym_list] = STATE(1783), - [sym_tuple] = STATE(1783), - [sym_bitstring] = STATE(1783), - [sym_map] = STATE(1783), - [sym_unary_operator] = STATE(1783), - [sym_binary_operator] = STATE(1783), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1783), - [sym_call] = STATE(1783), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1783), - [sym_anonymous_function] = STATE(1783), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1479), - [aux_sym_identifier_token1] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(69), - [anon_sym___MODULE__] = ACTIONS(71), - [anon_sym___DIR__] = ACTIONS(71), - [anon_sym___ENV__] = ACTIONS(71), - [anon_sym___CALLER__] = ACTIONS(71), - [anon_sym___STACKTRACE__] = ACTIONS(71), - [sym_alias] = ACTIONS(1867), - [sym_integer] = ACTIONS(1867), - [sym_float] = ACTIONS(1867), - [sym_char] = ACTIONS(1867), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(1867), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_LT_LT] = ACTIONS(95), - [anon_sym_PERCENT] = ACTIONS(97), - [anon_sym_AMP] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), - [anon_sym_BANG] = ACTIONS(101), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), - [anon_sym_not] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(115), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(119), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(121), - }, - [505] = { - [sym__expression] = STATE(2492), - [sym_block] = STATE(2492), - [sym__identifier] = STATE(42), - [sym_identifier] = STATE(42), - [sym_special_identifier] = STATE(42), - [sym_boolean] = STATE(2492), - [sym_nil] = STATE(2492), - [sym__atom] = STATE(2492), - [sym_quoted_atom] = STATE(2492), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2492), - [sym_charlist] = STATE(2492), - [sym_sigil] = STATE(2492), - [sym_list] = STATE(2492), - [sym_tuple] = STATE(2492), - [sym_bitstring] = STATE(2492), - [sym_map] = STATE(2492), - [sym_unary_operator] = STATE(2492), - [sym_binary_operator] = STATE(2492), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2492), - [sym_call] = STATE(2492), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2492), - [sym_anonymous_function] = STATE(2492), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(456), - [sym_unused_identifier] = ACTIONS(458), - [anon_sym___MODULE__] = ACTIONS(460), - [anon_sym___DIR__] = ACTIONS(460), - [anon_sym___ENV__] = ACTIONS(460), - [anon_sym___CALLER__] = ACTIONS(460), - [anon_sym___STACKTRACE__] = ACTIONS(460), - [sym_alias] = ACTIONS(1869), - [sym_integer] = ACTIONS(1869), - [sym_float] = ACTIONS(1869), - [sym_char] = ACTIONS(1869), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1869), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(464), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(473), - [anon_sym_BANG] = ACTIONS(473), - [anon_sym_CARET] = ACTIONS(473), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), - [anon_sym_not] = ACTIONS(473), - [anon_sym_AT] = ACTIONS(475), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(477), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [506] = { - [sym__expression] = STATE(1781), - [sym_block] = STATE(1781), - [sym__identifier] = STATE(25), - [sym_identifier] = STATE(25), - [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1781), - [sym_nil] = STATE(1781), - [sym__atom] = STATE(1781), - [sym_quoted_atom] = STATE(1781), - [sym__quoted_i_double] = STATE(1551), - [sym__quoted_i_single] = STATE(1552), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1781), - [sym_charlist] = STATE(1781), - [sym_sigil] = STATE(1781), - [sym_list] = STATE(1781), - [sym_tuple] = STATE(1781), - [sym_bitstring] = STATE(1781), - [sym_map] = STATE(1781), - [sym_unary_operator] = STATE(1781), - [sym_binary_operator] = STATE(1781), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1781), - [sym_call] = STATE(1781), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1781), - [sym_anonymous_function] = STATE(1781), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1479), - [aux_sym_identifier_token1] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(69), - [anon_sym___MODULE__] = ACTIONS(71), - [anon_sym___DIR__] = ACTIONS(71), - [anon_sym___ENV__] = ACTIONS(71), - [anon_sym___CALLER__] = ACTIONS(71), - [anon_sym___STACKTRACE__] = ACTIONS(71), - [sym_alias] = ACTIONS(1871), - [sym_integer] = ACTIONS(1871), - [sym_float] = ACTIONS(1871), - [sym_char] = ACTIONS(1871), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(1871), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_LT_LT] = ACTIONS(95), - [anon_sym_PERCENT] = ACTIONS(97), - [anon_sym_AMP] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), - [anon_sym_BANG] = ACTIONS(101), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), - [anon_sym_not] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(115), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(119), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(121), - }, - [507] = { - [sym__expression] = STATE(3376), - [sym_block] = STATE(3376), - [sym__identifier] = STATE(64), - [sym_identifier] = STATE(64), - [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3376), - [sym_nil] = STATE(3376), - [sym__atom] = STATE(3376), - [sym_quoted_atom] = STATE(3376), - [sym__quoted_i_double] = STATE(3395), - [sym__quoted_i_single] = STATE(3394), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3376), - [sym_charlist] = STATE(3376), - [sym_sigil] = STATE(3376), - [sym_list] = STATE(3376), - [sym_tuple] = STATE(3376), - [sym_bitstring] = STATE(3376), - [sym_map] = STATE(3376), - [sym_unary_operator] = STATE(3376), - [sym_binary_operator] = STATE(3376), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3376), - [sym_call] = STATE(3376), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), - [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3376), - [sym_anonymous_function] = STATE(3376), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1361), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(828), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1873), - [sym_integer] = ACTIONS(1873), - [sym_float] = ACTIONS(1873), - [sym_char] = ACTIONS(1873), - [anon_sym_true] = ACTIONS(834), - [anon_sym_false] = ACTIONS(834), - [anon_sym_nil] = ACTIONS(836), - [sym_atom] = ACTIONS(1873), - [anon_sym_DQUOTE] = ACTIONS(838), - [anon_sym_SQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(850), - [anon_sym_LT_LT] = ACTIONS(852), - [anon_sym_PERCENT] = ACTIONS(854), - [anon_sym_AMP] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_BANG] = ACTIONS(858), - [anon_sym_CARET] = ACTIONS(858), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), - [anon_sym_not] = ACTIONS(858), - [anon_sym_AT] = ACTIONS(860), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(864), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(866), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(868), - }, - [508] = { - [sym__expression] = STATE(3378), - [sym_block] = STATE(3378), - [sym__identifier] = STATE(64), - [sym_identifier] = STATE(64), - [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3378), - [sym_nil] = STATE(3378), - [sym__atom] = STATE(3378), - [sym_quoted_atom] = STATE(3378), - [sym__quoted_i_double] = STATE(3395), - [sym__quoted_i_single] = STATE(3394), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3378), - [sym_charlist] = STATE(3378), - [sym_sigil] = STATE(3378), - [sym_list] = STATE(3378), - [sym_tuple] = STATE(3378), - [sym_bitstring] = STATE(3378), - [sym_map] = STATE(3378), - [sym_unary_operator] = STATE(3378), - [sym_binary_operator] = STATE(3378), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3378), - [sym_call] = STATE(3378), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), - [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3378), - [sym_anonymous_function] = STATE(3378), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1361), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(828), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1875), - [sym_integer] = ACTIONS(1875), - [sym_float] = ACTIONS(1875), - [sym_char] = ACTIONS(1875), - [anon_sym_true] = ACTIONS(834), - [anon_sym_false] = ACTIONS(834), - [anon_sym_nil] = ACTIONS(836), - [sym_atom] = ACTIONS(1875), - [anon_sym_DQUOTE] = ACTIONS(838), - [anon_sym_SQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(850), - [anon_sym_LT_LT] = ACTIONS(852), - [anon_sym_PERCENT] = ACTIONS(854), - [anon_sym_AMP] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_BANG] = ACTIONS(858), - [anon_sym_CARET] = ACTIONS(858), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), - [anon_sym_not] = ACTIONS(858), - [anon_sym_AT] = ACTIONS(860), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(864), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(866), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(868), - }, - [509] = { - [sym__expression] = STATE(3126), - [sym_block] = STATE(3126), - [sym__identifier] = STATE(68), - [sym_identifier] = STATE(68), - [sym_special_identifier] = STATE(68), - [sym_boolean] = STATE(3126), - [sym_nil] = STATE(3126), - [sym__atom] = STATE(3126), - [sym_quoted_atom] = STATE(3126), - [sym__quoted_i_double] = STATE(1866), - [sym__quoted_i_single] = STATE(1867), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(3126), - [sym_charlist] = STATE(3126), - [sym_sigil] = STATE(3126), - [sym_list] = STATE(3126), - [sym_tuple] = STATE(3126), - [sym_bitstring] = STATE(3126), - [sym_map] = STATE(3126), - [sym_unary_operator] = STATE(3126), - [sym_binary_operator] = STATE(3126), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(3126), - [sym_call] = STATE(3126), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(3126), - [sym_anonymous_function] = STATE(3126), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(662), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(1877), - [sym_integer] = ACTIONS(1877), - [sym_float] = ACTIONS(1877), - [sym_char] = ACTIONS(1877), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), - [sym_atom] = ACTIONS(1877), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(670), - [anon_sym_DASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(670), - [anon_sym_CARET] = ACTIONS(670), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(670), - [anon_sym_not] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(672), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(674), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), - }, - [510] = { - [sym__expression] = STATE(2823), - [sym_block] = STATE(2823), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(2823), - [sym_nil] = STATE(2823), - [sym__atom] = STATE(2823), - [sym_quoted_atom] = STATE(2823), - [sym__quoted_i_double] = STATE(1551), - [sym__quoted_i_single] = STATE(1552), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(2823), - [sym_charlist] = STATE(2823), - [sym_sigil] = STATE(2823), - [sym_list] = STATE(2823), - [sym_tuple] = STATE(2823), - [sym_bitstring] = STATE(2823), - [sym_map] = STATE(2823), - [sym_unary_operator] = STATE(2823), - [sym_binary_operator] = STATE(2823), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(2823), - [sym_call] = STATE(2823), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(2823), - [sym_anonymous_function] = STATE(2823), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1479), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(706), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1879), - [sym_integer] = ACTIONS(1879), - [sym_float] = ACTIONS(1879), - [sym_char] = ACTIONS(1879), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(1879), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(712), - [anon_sym_LT_LT] = ACTIONS(95), - [anon_sym_PERCENT] = ACTIONS(97), - [anon_sym_AMP] = ACTIONS(714), - [anon_sym_PLUS] = ACTIONS(716), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_CARET] = ACTIONS(716), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), - [anon_sym_not] = ACTIONS(716), - [anon_sym_AT] = ACTIONS(718), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(115), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(722), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(121), - }, - [511] = { - [sym__expression] = STATE(1484), - [sym_block] = STATE(1484), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(1484), - [sym_nil] = STATE(1484), - [sym__atom] = STATE(1484), - [sym_quoted_atom] = STATE(1484), - [sym__quoted_i_double] = STATE(1551), - [sym__quoted_i_single] = STATE(1552), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1484), - [sym_charlist] = STATE(1484), - [sym_sigil] = STATE(1484), - [sym_list] = STATE(1484), - [sym_tuple] = STATE(1484), - [sym_bitstring] = STATE(1484), - [sym_map] = STATE(1484), - [sym_unary_operator] = STATE(1484), - [sym_binary_operator] = STATE(1484), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1484), - [sym_call] = STATE(1484), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1484), - [sym_anonymous_function] = STATE(1484), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1479), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(706), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1881), - [sym_integer] = ACTIONS(1881), - [sym_float] = ACTIONS(1881), - [sym_char] = ACTIONS(1881), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(1881), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(712), - [anon_sym_LT_LT] = ACTIONS(95), - [anon_sym_PERCENT] = ACTIONS(97), - [anon_sym_AMP] = ACTIONS(714), - [anon_sym_PLUS] = ACTIONS(716), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_CARET] = ACTIONS(716), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), - [anon_sym_not] = ACTIONS(716), - [anon_sym_AT] = ACTIONS(718), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(115), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(722), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(121), - }, - [512] = { - [sym__expression] = STATE(1766), - [sym_block] = STATE(1766), - [sym__identifier] = STATE(25), - [sym_identifier] = STATE(25), - [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1766), - [sym_nil] = STATE(1766), - [sym__atom] = STATE(1766), - [sym_quoted_atom] = STATE(1766), - [sym__quoted_i_double] = STATE(1551), - [sym__quoted_i_single] = STATE(1552), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1766), - [sym_charlist] = STATE(1766), - [sym_sigil] = STATE(1766), - [sym_list] = STATE(1766), - [sym_tuple] = STATE(1766), - [sym_bitstring] = STATE(1766), - [sym_map] = STATE(1766), - [sym_unary_operator] = STATE(1766), - [sym_binary_operator] = STATE(1766), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1766), - [sym_call] = STATE(1766), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1766), - [sym_anonymous_function] = STATE(1766), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1479), - [aux_sym_identifier_token1] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(69), - [anon_sym___MODULE__] = ACTIONS(71), - [anon_sym___DIR__] = ACTIONS(71), - [anon_sym___ENV__] = ACTIONS(71), - [anon_sym___CALLER__] = ACTIONS(71), - [anon_sym___STACKTRACE__] = ACTIONS(71), - [sym_alias] = ACTIONS(1883), - [sym_integer] = ACTIONS(1883), - [sym_float] = ACTIONS(1883), - [sym_char] = ACTIONS(1883), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(1883), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_LT_LT] = ACTIONS(95), - [anon_sym_PERCENT] = ACTIONS(97), - [anon_sym_AMP] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), - [anon_sym_BANG] = ACTIONS(101), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), - [anon_sym_not] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(115), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(119), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(121), - }, - [513] = { - [sym__expression] = STATE(1749), - [sym_block] = STATE(1749), - [sym__identifier] = STATE(25), - [sym_identifier] = STATE(25), - [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1749), - [sym_nil] = STATE(1749), - [sym__atom] = STATE(1749), - [sym_quoted_atom] = STATE(1749), - [sym__quoted_i_double] = STATE(1551), - [sym__quoted_i_single] = STATE(1552), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1749), - [sym_charlist] = STATE(1749), - [sym_sigil] = STATE(1749), - [sym_list] = STATE(1749), - [sym_tuple] = STATE(1749), - [sym_bitstring] = STATE(1749), - [sym_map] = STATE(1749), - [sym_unary_operator] = STATE(1749), - [sym_binary_operator] = STATE(1749), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1749), - [sym_call] = STATE(1749), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1749), - [sym_anonymous_function] = STATE(1749), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1479), - [aux_sym_identifier_token1] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(69), - [anon_sym___MODULE__] = ACTIONS(71), - [anon_sym___DIR__] = ACTIONS(71), - [anon_sym___ENV__] = ACTIONS(71), - [anon_sym___CALLER__] = ACTIONS(71), - [anon_sym___STACKTRACE__] = ACTIONS(71), - [sym_alias] = ACTIONS(1885), - [sym_integer] = ACTIONS(1885), - [sym_float] = ACTIONS(1885), - [sym_char] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(1885), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_LT_LT] = ACTIONS(95), - [anon_sym_PERCENT] = ACTIONS(97), - [anon_sym_AMP] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), - [anon_sym_BANG] = ACTIONS(101), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), - [anon_sym_not] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(115), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(119), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(121), - }, - [514] = { - [sym__expression] = STATE(3125), - [sym_block] = STATE(3125), - [sym__identifier] = STATE(68), - [sym_identifier] = STATE(68), - [sym_special_identifier] = STATE(68), - [sym_boolean] = STATE(3125), - [sym_nil] = STATE(3125), - [sym__atom] = STATE(3125), - [sym_quoted_atom] = STATE(3125), - [sym__quoted_i_double] = STATE(1866), - [sym__quoted_i_single] = STATE(1867), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(3125), - [sym_charlist] = STATE(3125), - [sym_sigil] = STATE(3125), - [sym_list] = STATE(3125), - [sym_tuple] = STATE(3125), - [sym_bitstring] = STATE(3125), - [sym_map] = STATE(3125), - [sym_unary_operator] = STATE(3125), - [sym_binary_operator] = STATE(3125), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(3125), - [sym_call] = STATE(3125), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(3125), - [sym_anonymous_function] = STATE(3125), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(662), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(1887), - [sym_integer] = ACTIONS(1887), - [sym_float] = ACTIONS(1887), - [sym_char] = ACTIONS(1887), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), - [sym_atom] = ACTIONS(1887), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(670), - [anon_sym_DASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(670), - [anon_sym_CARET] = ACTIONS(670), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(670), - [anon_sym_not] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(672), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(674), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), - }, - [515] = { - [sym__expression] = STATE(1694), - [sym_block] = STATE(1694), - [sym__identifier] = STATE(25), - [sym_identifier] = STATE(25), - [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1694), - [sym_nil] = STATE(1694), - [sym__atom] = STATE(1694), - [sym_quoted_atom] = STATE(1694), - [sym__quoted_i_double] = STATE(1551), - [sym__quoted_i_single] = STATE(1552), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1694), - [sym_charlist] = STATE(1694), - [sym_sigil] = STATE(1694), - [sym_list] = STATE(1694), - [sym_tuple] = STATE(1694), - [sym_bitstring] = STATE(1694), - [sym_map] = STATE(1694), - [sym_unary_operator] = STATE(1694), - [sym_binary_operator] = STATE(1694), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1694), - [sym_call] = STATE(1694), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1694), - [sym_anonymous_function] = STATE(1694), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1479), - [aux_sym_identifier_token1] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(69), - [anon_sym___MODULE__] = ACTIONS(71), - [anon_sym___DIR__] = ACTIONS(71), - [anon_sym___ENV__] = ACTIONS(71), - [anon_sym___CALLER__] = ACTIONS(71), - [anon_sym___STACKTRACE__] = ACTIONS(71), - [sym_alias] = ACTIONS(1889), - [sym_integer] = ACTIONS(1889), - [sym_float] = ACTIONS(1889), - [sym_char] = ACTIONS(1889), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(1889), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_LT_LT] = ACTIONS(95), - [anon_sym_PERCENT] = ACTIONS(97), - [anon_sym_AMP] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), - [anon_sym_BANG] = ACTIONS(101), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), - [anon_sym_not] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(115), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(119), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(121), - }, - [516] = { - [sym__expression] = STATE(3124), - [sym_block] = STATE(3124), - [sym__identifier] = STATE(68), - [sym_identifier] = STATE(68), - [sym_special_identifier] = STATE(68), - [sym_boolean] = STATE(3124), - [sym_nil] = STATE(3124), - [sym__atom] = STATE(3124), - [sym_quoted_atom] = STATE(3124), - [sym__quoted_i_double] = STATE(1866), - [sym__quoted_i_single] = STATE(1867), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(3124), - [sym_charlist] = STATE(3124), - [sym_sigil] = STATE(3124), - [sym_list] = STATE(3124), - [sym_tuple] = STATE(3124), - [sym_bitstring] = STATE(3124), - [sym_map] = STATE(3124), - [sym_unary_operator] = STATE(3124), - [sym_binary_operator] = STATE(3124), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(3124), - [sym_call] = STATE(3124), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(3124), - [sym_anonymous_function] = STATE(3124), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(662), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(1891), - [sym_integer] = ACTIONS(1891), - [sym_float] = ACTIONS(1891), - [sym_char] = ACTIONS(1891), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), - [sym_atom] = ACTIONS(1891), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(670), - [anon_sym_DASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(670), - [anon_sym_CARET] = ACTIONS(670), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(670), - [anon_sym_not] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(672), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(674), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), - }, - [517] = { - [sym__expression] = STATE(1650), - [sym_block] = STATE(1650), - [sym__identifier] = STATE(25), - [sym_identifier] = STATE(25), - [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1650), - [sym_nil] = STATE(1650), - [sym__atom] = STATE(1650), - [sym_quoted_atom] = STATE(1650), - [sym__quoted_i_double] = STATE(1551), - [sym__quoted_i_single] = STATE(1552), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1650), - [sym_charlist] = STATE(1650), - [sym_sigil] = STATE(1650), - [sym_list] = STATE(1650), - [sym_tuple] = STATE(1650), - [sym_bitstring] = STATE(1650), - [sym_map] = STATE(1650), - [sym_unary_operator] = STATE(1650), - [sym_binary_operator] = STATE(1650), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1650), - [sym_call] = STATE(1650), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1650), - [sym_anonymous_function] = STATE(1650), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1479), - [aux_sym_identifier_token1] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(69), - [anon_sym___MODULE__] = ACTIONS(71), - [anon_sym___DIR__] = ACTIONS(71), - [anon_sym___ENV__] = ACTIONS(71), - [anon_sym___CALLER__] = ACTIONS(71), - [anon_sym___STACKTRACE__] = ACTIONS(71), - [sym_alias] = ACTIONS(1893), - [sym_integer] = ACTIONS(1893), - [sym_float] = ACTIONS(1893), - [sym_char] = ACTIONS(1893), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(1893), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_LT_LT] = ACTIONS(95), - [anon_sym_PERCENT] = ACTIONS(97), - [anon_sym_AMP] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), - [anon_sym_BANG] = ACTIONS(101), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), - [anon_sym_not] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(115), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(119), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(121), - }, - [518] = { - [sym__expression] = STATE(3176), - [sym_block] = STATE(3176), - [sym__identifier] = STATE(57), - [sym_identifier] = STATE(57), - [sym_special_identifier] = STATE(57), - [sym_boolean] = STATE(3176), - [sym_nil] = STATE(3176), - [sym__atom] = STATE(3176), - [sym_quoted_atom] = STATE(3176), - [sym__quoted_i_double] = STATE(3146), - [sym__quoted_i_single] = STATE(3147), - [sym__quoted_i_heredoc_single] = STATE(3147), - [sym__quoted_i_heredoc_double] = STATE(3146), - [sym_string] = STATE(3176), - [sym_charlist] = STATE(3176), - [sym_sigil] = STATE(3176), - [sym_list] = STATE(3176), - [sym_tuple] = STATE(3176), - [sym_bitstring] = STATE(3176), - [sym_map] = STATE(3176), - [sym_unary_operator] = STATE(3176), - [sym_binary_operator] = STATE(3176), - [sym_operator_identifier] = STATE(5049), - [sym_dot] = STATE(3176), - [sym_call] = STATE(3176), - [sym__call_without_parentheses] = STATE(3175), - [sym__call_with_parentheses] = STATE(3177), - [sym__local_call_without_parentheses] = STATE(3178), - [sym__local_call_with_parentheses] = STATE(2550), - [sym__local_call_just_do_block] = STATE(3183), - [sym__remote_call_without_parentheses] = STATE(3200), - [sym__remote_call_with_parentheses] = STATE(2583), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(2582), - [sym__anonymous_dot] = STATE(4866), - [sym__double_call] = STATE(3202), - [sym_access_call] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(15), - [sym_unused_identifier] = ACTIONS(17), - [anon_sym___MODULE__] = ACTIONS(19), - [anon_sym___DIR__] = ACTIONS(19), - [anon_sym___ENV__] = ACTIONS(19), - [anon_sym___CALLER__] = ACTIONS(19), - [anon_sym___STACKTRACE__] = ACTIONS(19), - [sym_alias] = ACTIONS(1895), - [sym_integer] = ACTIONS(1895), - [sym_float] = ACTIONS(1895), - [sym_char] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_nil] = ACTIONS(25), - [sym_atom] = ACTIONS(1895), - [anon_sym_DQUOTE] = ACTIONS(27), - [anon_sym_SQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(41), - [anon_sym_LT_LT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(45), - [anon_sym_AMP] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(49), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_CARET] = ACTIONS(49), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), - [anon_sym_not] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(51), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(53), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(55), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(59), - }, - [519] = { - [sym__expression] = STATE(1647), - [sym_block] = STATE(1647), - [sym__identifier] = STATE(25), - [sym_identifier] = STATE(25), - [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1647), - [sym_nil] = STATE(1647), - [sym__atom] = STATE(1647), - [sym_quoted_atom] = STATE(1647), - [sym__quoted_i_double] = STATE(1551), - [sym__quoted_i_single] = STATE(1552), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1647), - [sym_charlist] = STATE(1647), - [sym_sigil] = STATE(1647), - [sym_list] = STATE(1647), - [sym_tuple] = STATE(1647), - [sym_bitstring] = STATE(1647), - [sym_map] = STATE(1647), - [sym_unary_operator] = STATE(1647), - [sym_binary_operator] = STATE(1647), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1647), - [sym_call] = STATE(1647), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1647), - [sym_anonymous_function] = STATE(1647), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1479), - [aux_sym_identifier_token1] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(69), - [anon_sym___MODULE__] = ACTIONS(71), - [anon_sym___DIR__] = ACTIONS(71), - [anon_sym___ENV__] = ACTIONS(71), - [anon_sym___CALLER__] = ACTIONS(71), - [anon_sym___STACKTRACE__] = ACTIONS(71), - [sym_alias] = ACTIONS(1897), - [sym_integer] = ACTIONS(1897), - [sym_float] = ACTIONS(1897), - [sym_char] = ACTIONS(1897), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(1897), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_LT_LT] = ACTIONS(95), - [anon_sym_PERCENT] = ACTIONS(97), - [anon_sym_AMP] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), - [anon_sym_BANG] = ACTIONS(101), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), - [anon_sym_not] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(115), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(119), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(121), - }, - [520] = { - [sym__expression] = STATE(3123), - [sym_block] = STATE(3123), - [sym__identifier] = STATE(68), - [sym_identifier] = STATE(68), - [sym_special_identifier] = STATE(68), - [sym_boolean] = STATE(3123), - [sym_nil] = STATE(3123), - [sym__atom] = STATE(3123), - [sym_quoted_atom] = STATE(3123), - [sym__quoted_i_double] = STATE(1866), - [sym__quoted_i_single] = STATE(1867), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(3123), - [sym_charlist] = STATE(3123), - [sym_sigil] = STATE(3123), - [sym_list] = STATE(3123), - [sym_tuple] = STATE(3123), - [sym_bitstring] = STATE(3123), - [sym_map] = STATE(3123), - [sym_unary_operator] = STATE(3123), - [sym_binary_operator] = STATE(3123), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(3123), - [sym_call] = STATE(3123), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(3123), - [sym_anonymous_function] = STATE(3123), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(662), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(1899), - [sym_integer] = ACTIONS(1899), - [sym_float] = ACTIONS(1899), - [sym_char] = ACTIONS(1899), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), - [sym_atom] = ACTIONS(1899), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(670), - [anon_sym_DASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(670), - [anon_sym_CARET] = ACTIONS(670), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(670), - [anon_sym_not] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(672), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(674), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), - }, - [521] = { - [sym__expression] = STATE(3121), - [sym_block] = STATE(3121), - [sym__identifier] = STATE(68), - [sym_identifier] = STATE(68), - [sym_special_identifier] = STATE(68), - [sym_boolean] = STATE(3121), - [sym_nil] = STATE(3121), - [sym__atom] = STATE(3121), - [sym_quoted_atom] = STATE(3121), - [sym__quoted_i_double] = STATE(1866), - [sym__quoted_i_single] = STATE(1867), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(3121), - [sym_charlist] = STATE(3121), - [sym_sigil] = STATE(3121), - [sym_list] = STATE(3121), - [sym_tuple] = STATE(3121), - [sym_bitstring] = STATE(3121), - [sym_map] = STATE(3121), - [sym_unary_operator] = STATE(3121), - [sym_binary_operator] = STATE(3121), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(3121), - [sym_call] = STATE(3121), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(3121), - [sym_anonymous_function] = STATE(3121), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(662), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(1901), - [sym_integer] = ACTIONS(1901), - [sym_float] = ACTIONS(1901), - [sym_char] = ACTIONS(1901), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), - [sym_atom] = ACTIONS(1901), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(670), - [anon_sym_DASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(670), - [anon_sym_CARET] = ACTIONS(670), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(670), - [anon_sym_not] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(672), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(674), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), - }, - [522] = { - [sym__expression] = STATE(1484), - [sym_block] = STATE(1484), - [sym__identifier] = STATE(25), - [sym_identifier] = STATE(25), - [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1484), - [sym_nil] = STATE(1484), - [sym__atom] = STATE(1484), - [sym_quoted_atom] = STATE(1484), - [sym__quoted_i_double] = STATE(1551), - [sym__quoted_i_single] = STATE(1552), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1484), - [sym_charlist] = STATE(1484), - [sym_sigil] = STATE(1484), - [sym_list] = STATE(1484), - [sym_tuple] = STATE(1484), - [sym_bitstring] = STATE(1484), - [sym_map] = STATE(1484), - [sym_unary_operator] = STATE(1484), - [sym_binary_operator] = STATE(1484), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1484), - [sym_call] = STATE(1484), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1484), - [sym_anonymous_function] = STATE(1484), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1479), - [aux_sym_identifier_token1] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(69), - [anon_sym___MODULE__] = ACTIONS(71), - [anon_sym___DIR__] = ACTIONS(71), - [anon_sym___ENV__] = ACTIONS(71), - [anon_sym___CALLER__] = ACTIONS(71), - [anon_sym___STACKTRACE__] = ACTIONS(71), - [sym_alias] = ACTIONS(1881), - [sym_integer] = ACTIONS(1881), - [sym_float] = ACTIONS(1881), - [sym_char] = ACTIONS(1881), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(1881), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_LT_LT] = ACTIONS(95), - [anon_sym_PERCENT] = ACTIONS(97), - [anon_sym_AMP] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), - [anon_sym_BANG] = ACTIONS(101), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), - [anon_sym_not] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(115), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(119), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(121), - }, - [523] = { - [sym__expression] = STATE(1752), - [sym_block] = STATE(1752), - [sym__identifier] = STATE(25), - [sym_identifier] = STATE(25), - [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1752), - [sym_nil] = STATE(1752), - [sym__atom] = STATE(1752), - [sym_quoted_atom] = STATE(1752), - [sym__quoted_i_double] = STATE(1551), - [sym__quoted_i_single] = STATE(1552), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1752), - [sym_charlist] = STATE(1752), - [sym_sigil] = STATE(1752), - [sym_list] = STATE(1752), - [sym_tuple] = STATE(1752), - [sym_bitstring] = STATE(1752), - [sym_map] = STATE(1752), - [sym_unary_operator] = STATE(1752), - [sym_binary_operator] = STATE(1752), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1752), - [sym_call] = STATE(1752), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1752), - [sym_anonymous_function] = STATE(1752), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1479), - [aux_sym_identifier_token1] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(69), - [anon_sym___MODULE__] = ACTIONS(71), - [anon_sym___DIR__] = ACTIONS(71), - [anon_sym___ENV__] = ACTIONS(71), - [anon_sym___CALLER__] = ACTIONS(71), - [anon_sym___STACKTRACE__] = ACTIONS(71), - [sym_alias] = ACTIONS(1903), - [sym_integer] = ACTIONS(1903), - [sym_float] = ACTIONS(1903), - [sym_char] = ACTIONS(1903), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(1903), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_LT_LT] = ACTIONS(95), - [anon_sym_PERCENT] = ACTIONS(97), - [anon_sym_AMP] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), - [anon_sym_BANG] = ACTIONS(101), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), - [anon_sym_not] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(115), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(119), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(121), - }, - [524] = { - [sym__expression] = STATE(3132), - [sym_block] = STATE(3132), - [sym__identifier] = STATE(68), - [sym_identifier] = STATE(68), - [sym_special_identifier] = STATE(68), - [sym_boolean] = STATE(3132), - [sym_nil] = STATE(3132), - [sym__atom] = STATE(3132), - [sym_quoted_atom] = STATE(3132), - [sym__quoted_i_double] = STATE(1866), - [sym__quoted_i_single] = STATE(1867), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(3132), - [sym_charlist] = STATE(3132), - [sym_sigil] = STATE(3132), - [sym_list] = STATE(3132), - [sym_tuple] = STATE(3132), - [sym_bitstring] = STATE(3132), - [sym_map] = STATE(3132), - [sym_unary_operator] = STATE(3132), - [sym_binary_operator] = STATE(3132), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(3132), - [sym_call] = STATE(3132), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(3132), - [sym_anonymous_function] = STATE(3132), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(662), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(1905), - [sym_integer] = ACTIONS(1905), - [sym_float] = ACTIONS(1905), - [sym_char] = ACTIONS(1905), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), - [sym_atom] = ACTIONS(1905), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(670), - [anon_sym_DASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(670), - [anon_sym_CARET] = ACTIONS(670), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(670), - [anon_sym_not] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(672), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(674), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), - }, - [525] = { - [sym__expression] = STATE(1387), - [sym_block] = STATE(1387), - [sym__identifier] = STATE(42), - [sym_identifier] = STATE(42), - [sym_special_identifier] = STATE(42), - [sym_boolean] = STATE(1387), - [sym_nil] = STATE(1387), - [sym__atom] = STATE(1387), - [sym_quoted_atom] = STATE(1387), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(1387), - [sym_charlist] = STATE(1387), - [sym_sigil] = STATE(1387), - [sym_list] = STATE(1387), - [sym_tuple] = STATE(1387), - [sym_bitstring] = STATE(1387), - [sym_map] = STATE(1387), - [sym_unary_operator] = STATE(1387), - [sym_binary_operator] = STATE(1387), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(1387), - [sym_call] = STATE(1387), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(1387), - [sym_anonymous_function] = STATE(1387), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(456), - [sym_unused_identifier] = ACTIONS(458), - [anon_sym___MODULE__] = ACTIONS(460), - [anon_sym___DIR__] = ACTIONS(460), - [anon_sym___ENV__] = ACTIONS(460), - [anon_sym___CALLER__] = ACTIONS(460), - [anon_sym___STACKTRACE__] = ACTIONS(460), - [sym_alias] = ACTIONS(1791), - [sym_integer] = ACTIONS(1791), - [sym_float] = ACTIONS(1791), - [sym_char] = ACTIONS(1791), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1791), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(464), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(473), - [anon_sym_BANG] = ACTIONS(473), - [anon_sym_CARET] = ACTIONS(473), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), - [anon_sym_not] = ACTIONS(473), - [anon_sym_AT] = ACTIONS(475), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(477), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [526] = { - [sym__expression] = STATE(3118), - [sym_block] = STATE(3118), - [sym__identifier] = STATE(68), - [sym_identifier] = STATE(68), - [sym_special_identifier] = STATE(68), - [sym_boolean] = STATE(3118), - [sym_nil] = STATE(3118), - [sym__atom] = STATE(3118), - [sym_quoted_atom] = STATE(3118), - [sym__quoted_i_double] = STATE(1866), - [sym__quoted_i_single] = STATE(1867), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(3118), - [sym_charlist] = STATE(3118), - [sym_sigil] = STATE(3118), - [sym_list] = STATE(3118), - [sym_tuple] = STATE(3118), - [sym_bitstring] = STATE(3118), - [sym_map] = STATE(3118), - [sym_unary_operator] = STATE(3118), - [sym_binary_operator] = STATE(3118), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(3118), - [sym_call] = STATE(3118), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(3118), - [sym_anonymous_function] = STATE(3118), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(662), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(1907), - [sym_integer] = ACTIONS(1907), - [sym_float] = ACTIONS(1907), - [sym_char] = ACTIONS(1907), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), - [sym_atom] = ACTIONS(1907), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(670), - [anon_sym_DASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(670), - [anon_sym_CARET] = ACTIONS(670), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(670), - [anon_sym_not] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(672), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(674), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), - }, - [527] = { - [sym__expression] = STATE(3494), - [sym_block] = STATE(3494), - [sym__identifier] = STATE(57), - [sym_identifier] = STATE(57), - [sym_special_identifier] = STATE(57), - [sym_boolean] = STATE(3494), - [sym_nil] = STATE(3494), - [sym__atom] = STATE(3494), - [sym_quoted_atom] = STATE(3494), - [sym__quoted_i_double] = STATE(3146), - [sym__quoted_i_single] = STATE(3147), - [sym__quoted_i_heredoc_single] = STATE(3147), - [sym__quoted_i_heredoc_double] = STATE(3146), - [sym_string] = STATE(3494), - [sym_charlist] = STATE(3494), - [sym_sigil] = STATE(3494), - [sym_list] = STATE(3494), - [sym_tuple] = STATE(3494), - [sym_bitstring] = STATE(3494), - [sym_map] = STATE(3494), - [sym_unary_operator] = STATE(3494), - [sym_binary_operator] = STATE(3494), - [sym_operator_identifier] = STATE(5049), - [sym_dot] = STATE(3494), - [sym_call] = STATE(3494), - [sym__call_without_parentheses] = STATE(3175), - [sym__call_with_parentheses] = STATE(3177), - [sym__local_call_without_parentheses] = STATE(3178), - [sym__local_call_with_parentheses] = STATE(2550), - [sym__local_call_just_do_block] = STATE(3183), - [sym__remote_call_without_parentheses] = STATE(3200), - [sym__remote_call_with_parentheses] = STATE(2583), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(2582), - [sym__anonymous_dot] = STATE(4866), - [sym__double_call] = STATE(3202), - [sym_access_call] = STATE(3494), - [sym_anonymous_function] = STATE(3494), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(15), - [sym_unused_identifier] = ACTIONS(17), - [anon_sym___MODULE__] = ACTIONS(19), - [anon_sym___DIR__] = ACTIONS(19), - [anon_sym___ENV__] = ACTIONS(19), - [anon_sym___CALLER__] = ACTIONS(19), - [anon_sym___STACKTRACE__] = ACTIONS(19), - [sym_alias] = ACTIONS(1591), - [sym_integer] = ACTIONS(1591), - [sym_float] = ACTIONS(1591), - [sym_char] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_nil] = ACTIONS(25), - [sym_atom] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(27), - [anon_sym_SQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(41), - [anon_sym_LT_LT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(45), - [anon_sym_AMP] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(49), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_CARET] = ACTIONS(49), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), - [anon_sym_not] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(51), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(53), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(55), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(59), - }, - [528] = { - [sym__expression] = STATE(2761), - [sym_block] = STATE(2761), - [sym__identifier] = STATE(42), - [sym_identifier] = STATE(42), - [sym_special_identifier] = STATE(42), - [sym_boolean] = STATE(2761), - [sym_nil] = STATE(2761), - [sym__atom] = STATE(2761), - [sym_quoted_atom] = STATE(2761), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2761), - [sym_charlist] = STATE(2761), - [sym_sigil] = STATE(2761), - [sym_list] = STATE(2761), - [sym_tuple] = STATE(2761), - [sym_bitstring] = STATE(2761), - [sym_map] = STATE(2761), - [sym_unary_operator] = STATE(2761), - [sym_binary_operator] = STATE(2761), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2761), - [sym_call] = STATE(2761), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2761), - [sym_anonymous_function] = STATE(2761), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(456), - [sym_unused_identifier] = ACTIONS(458), - [anon_sym___MODULE__] = ACTIONS(460), - [anon_sym___DIR__] = ACTIONS(460), - [anon_sym___ENV__] = ACTIONS(460), - [anon_sym___CALLER__] = ACTIONS(460), - [anon_sym___STACKTRACE__] = ACTIONS(460), - [sym_alias] = ACTIONS(1909), - [sym_integer] = ACTIONS(1909), - [sym_float] = ACTIONS(1909), - [sym_char] = ACTIONS(1909), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1909), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(464), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(473), - [anon_sym_BANG] = ACTIONS(473), - [anon_sym_CARET] = ACTIONS(473), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), - [anon_sym_not] = ACTIONS(473), - [anon_sym_AT] = ACTIONS(475), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(477), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [529] = { - [sym__expression] = STATE(1508), - [sym_block] = STATE(1508), - [sym__identifier] = STATE(25), - [sym_identifier] = STATE(25), - [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1508), - [sym_nil] = STATE(1508), - [sym__atom] = STATE(1508), - [sym_quoted_atom] = STATE(1508), - [sym__quoted_i_double] = STATE(1551), - [sym__quoted_i_single] = STATE(1552), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1508), - [sym_charlist] = STATE(1508), - [sym_sigil] = STATE(1508), - [sym_list] = STATE(1508), - [sym_tuple] = STATE(1508), - [sym_bitstring] = STATE(1508), - [sym_map] = STATE(1508), - [sym_unary_operator] = STATE(1508), - [sym_binary_operator] = STATE(1508), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1508), - [sym_call] = STATE(1508), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1508), - [sym_anonymous_function] = STATE(1508), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1479), - [aux_sym_identifier_token1] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(69), - [anon_sym___MODULE__] = ACTIONS(71), - [anon_sym___DIR__] = ACTIONS(71), - [anon_sym___ENV__] = ACTIONS(71), - [anon_sym___CALLER__] = ACTIONS(71), - [anon_sym___STACKTRACE__] = ACTIONS(71), - [sym_alias] = ACTIONS(1847), - [sym_integer] = ACTIONS(1847), - [sym_float] = ACTIONS(1847), - [sym_char] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(1847), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_LT_LT] = ACTIONS(95), - [anon_sym_PERCENT] = ACTIONS(97), - [anon_sym_AMP] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), - [anon_sym_BANG] = ACTIONS(101), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), - [anon_sym_not] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(115), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(119), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(121), - }, - [530] = { - [sym__expression] = STATE(1742), - [sym_block] = STATE(1742), - [sym__identifier] = STATE(25), - [sym_identifier] = STATE(25), - [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1742), - [sym_nil] = STATE(1742), - [sym__atom] = STATE(1742), - [sym_quoted_atom] = STATE(1742), - [sym__quoted_i_double] = STATE(1551), - [sym__quoted_i_single] = STATE(1552), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1742), - [sym_charlist] = STATE(1742), - [sym_sigil] = STATE(1742), - [sym_list] = STATE(1742), - [sym_tuple] = STATE(1742), - [sym_bitstring] = STATE(1742), - [sym_map] = STATE(1742), - [sym_unary_operator] = STATE(1742), - [sym_binary_operator] = STATE(1742), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1742), - [sym_call] = STATE(1742), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1742), - [sym_anonymous_function] = STATE(1742), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1479), - [aux_sym_identifier_token1] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(69), - [anon_sym___MODULE__] = ACTIONS(71), - [anon_sym___DIR__] = ACTIONS(71), - [anon_sym___ENV__] = ACTIONS(71), - [anon_sym___CALLER__] = ACTIONS(71), - [anon_sym___STACKTRACE__] = ACTIONS(71), - [sym_alias] = ACTIONS(1911), - [sym_integer] = ACTIONS(1911), - [sym_float] = ACTIONS(1911), - [sym_char] = ACTIONS(1911), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(1911), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_LT_LT] = ACTIONS(95), - [anon_sym_PERCENT] = ACTIONS(97), - [anon_sym_AMP] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), - [anon_sym_BANG] = ACTIONS(101), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), - [anon_sym_not] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(115), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(119), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(121), - }, - [531] = { - [sym__expression] = STATE(3117), - [sym_block] = STATE(3117), - [sym__identifier] = STATE(68), - [sym_identifier] = STATE(68), - [sym_special_identifier] = STATE(68), - [sym_boolean] = STATE(3117), - [sym_nil] = STATE(3117), - [sym__atom] = STATE(3117), - [sym_quoted_atom] = STATE(3117), - [sym__quoted_i_double] = STATE(1866), - [sym__quoted_i_single] = STATE(1867), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(3117), - [sym_charlist] = STATE(3117), - [sym_sigil] = STATE(3117), - [sym_list] = STATE(3117), - [sym_tuple] = STATE(3117), - [sym_bitstring] = STATE(3117), - [sym_map] = STATE(3117), - [sym_unary_operator] = STATE(3117), - [sym_binary_operator] = STATE(3117), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(3117), - [sym_call] = STATE(3117), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(3117), - [sym_anonymous_function] = STATE(3117), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(662), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(1913), - [sym_integer] = ACTIONS(1913), - [sym_float] = ACTIONS(1913), - [sym_char] = ACTIONS(1913), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), - [sym_atom] = ACTIONS(1913), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(670), - [anon_sym_DASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(670), - [anon_sym_CARET] = ACTIONS(670), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(670), - [anon_sym_not] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(672), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(674), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), - }, - [532] = { - [sym__expression] = STATE(1962), - [sym_block] = STATE(1962), - [sym__identifier] = STATE(68), - [sym_identifier] = STATE(68), - [sym_special_identifier] = STATE(68), - [sym_boolean] = STATE(1962), - [sym_nil] = STATE(1962), - [sym__atom] = STATE(1962), - [sym_quoted_atom] = STATE(1962), - [sym__quoted_i_double] = STATE(1866), - [sym__quoted_i_single] = STATE(1867), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(1962), - [sym_charlist] = STATE(1962), - [sym_sigil] = STATE(1962), - [sym_list] = STATE(1962), - [sym_tuple] = STATE(1962), - [sym_bitstring] = STATE(1962), - [sym_map] = STATE(1962), - [sym_unary_operator] = STATE(1962), - [sym_binary_operator] = STATE(1962), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(1962), - [sym_call] = STATE(1962), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(1962), - [sym_anonymous_function] = STATE(1962), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(662), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(1915), - [sym_integer] = ACTIONS(1915), - [sym_float] = ACTIONS(1915), - [sym_char] = ACTIONS(1915), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), - [sym_atom] = ACTIONS(1915), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(670), - [anon_sym_DASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(670), - [anon_sym_CARET] = ACTIONS(670), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(670), - [anon_sym_not] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(672), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(674), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), - }, - [533] = { - [sym__expression] = STATE(2827), - [sym_block] = STATE(2827), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(2827), - [sym_nil] = STATE(2827), - [sym__atom] = STATE(2827), - [sym_quoted_atom] = STATE(2827), - [sym__quoted_i_double] = STATE(1551), - [sym__quoted_i_single] = STATE(1552), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(2827), - [sym_charlist] = STATE(2827), - [sym_sigil] = STATE(2827), - [sym_list] = STATE(2827), - [sym_tuple] = STATE(2827), - [sym_bitstring] = STATE(2827), - [sym_map] = STATE(2827), - [sym_unary_operator] = STATE(2827), - [sym_binary_operator] = STATE(2827), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(2827), - [sym_call] = STATE(2827), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(2827), - [sym_anonymous_function] = STATE(2827), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1479), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(706), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1917), - [sym_integer] = ACTIONS(1917), - [sym_float] = ACTIONS(1917), - [sym_char] = ACTIONS(1917), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(1917), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(712), - [anon_sym_LT_LT] = ACTIONS(95), - [anon_sym_PERCENT] = ACTIONS(97), - [anon_sym_AMP] = ACTIONS(714), - [anon_sym_PLUS] = ACTIONS(716), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_CARET] = ACTIONS(716), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), - [anon_sym_not] = ACTIONS(716), - [anon_sym_AT] = ACTIONS(718), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(115), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(722), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(121), - }, - [534] = { - [sym__expression] = STATE(2828), - [sym_block] = STATE(2828), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(2828), - [sym_nil] = STATE(2828), - [sym__atom] = STATE(2828), - [sym_quoted_atom] = STATE(2828), - [sym__quoted_i_double] = STATE(1551), - [sym__quoted_i_single] = STATE(1552), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(2828), - [sym_charlist] = STATE(2828), - [sym_sigil] = STATE(2828), - [sym_list] = STATE(2828), - [sym_tuple] = STATE(2828), - [sym_bitstring] = STATE(2828), - [sym_map] = STATE(2828), - [sym_unary_operator] = STATE(2828), - [sym_binary_operator] = STATE(2828), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(2828), - [sym_call] = STATE(2828), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(2828), - [sym_anonymous_function] = STATE(2828), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1479), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(706), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1919), - [sym_integer] = ACTIONS(1919), - [sym_float] = ACTIONS(1919), - [sym_char] = ACTIONS(1919), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(1919), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(712), - [anon_sym_LT_LT] = ACTIONS(95), - [anon_sym_PERCENT] = ACTIONS(97), - [anon_sym_AMP] = ACTIONS(714), - [anon_sym_PLUS] = ACTIONS(716), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_CARET] = ACTIONS(716), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), - [anon_sym_not] = ACTIONS(716), - [anon_sym_AT] = ACTIONS(718), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(115), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(722), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(121), - }, - [535] = { - [sym__expression] = STATE(1896), - [sym_block] = STATE(1896), - [sym__identifier] = STATE(68), - [sym_identifier] = STATE(68), - [sym_special_identifier] = STATE(68), - [sym_boolean] = STATE(1896), - [sym_nil] = STATE(1896), - [sym__atom] = STATE(1896), - [sym_quoted_atom] = STATE(1896), - [sym__quoted_i_double] = STATE(1866), - [sym__quoted_i_single] = STATE(1867), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(1896), - [sym_charlist] = STATE(1896), - [sym_sigil] = STATE(1896), - [sym_list] = STATE(1896), - [sym_tuple] = STATE(1896), - [sym_bitstring] = STATE(1896), - [sym_map] = STATE(1896), - [sym_unary_operator] = STATE(1896), - [sym_binary_operator] = STATE(1896), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(1896), - [sym_call] = STATE(1896), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(1896), - [sym_anonymous_function] = STATE(1896), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(662), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(1921), - [sym_integer] = ACTIONS(1921), - [sym_float] = ACTIONS(1921), - [sym_char] = ACTIONS(1921), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), - [sym_atom] = ACTIONS(1921), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(670), - [anon_sym_DASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(670), - [anon_sym_CARET] = ACTIONS(670), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(670), - [anon_sym_not] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(672), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(674), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), - }, - [536] = { + [502] = { [sym__expression] = STATE(2830), [sym_block] = STATE(2830), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), [sym_boolean] = STATE(2830), [sym_nil] = STATE(2830), [sym__atom] = STATE(2830), [sym_quoted_atom] = STATE(2830), - [sym__quoted_i_double] = STATE(1551), - [sym__quoted_i_single] = STATE(1552), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), [sym_string] = STATE(2830), [sym_charlist] = STATE(2830), [sym_sigil] = STATE(2830), @@ -93942,24 +90330,4274 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_map] = STATE(2830), [sym_unary_operator] = STATE(2830), [sym_binary_operator] = STATE(2830), - [sym_operator_identifier] = STATE(4949), + [sym_operator_identifier] = STATE(5643), [sym_dot] = STATE(2830), [sym_call] = STATE(2830), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), [sym_access_call] = STATE(2830), [sym_anonymous_function] = STATE(2830), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(482), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), + [sym_alias] = ACTIONS(1419), + [sym_integer] = ACTIONS(1419), + [sym_float] = ACTIONS(1419), + [sym_char] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(486), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(495), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_CARET] = ACTIONS(495), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(495), + [anon_sym_not] = ACTIONS(495), + [anon_sym_AT] = ACTIONS(497), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(499), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [503] = { + [sym__expression] = STATE(4031), + [sym_block] = STATE(4031), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(4031), + [sym_nil] = STATE(4031), + [sym__atom] = STATE(4031), + [sym_quoted_atom] = STATE(4031), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4031), + [sym_charlist] = STATE(4031), + [sym_sigil] = STATE(4031), + [sym_list] = STATE(4031), + [sym_tuple] = STATE(4031), + [sym_bitstring] = STATE(4031), + [sym_map] = STATE(4031), + [sym_unary_operator] = STATE(4031), + [sym_binary_operator] = STATE(4031), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4031), + [sym_call] = STATE(4031), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4031), + [sym_anonymous_function] = STATE(4031), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1373), + [sym_integer] = ACTIONS(1373), + [sym_float] = ACTIONS(1373), + [sym_char] = ACTIONS(1373), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(1373), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [504] = { + [sym__expression] = STATE(2995), + [sym_block] = STATE(2995), + [sym__identifier] = STATE(51), + [sym_identifier] = STATE(51), + [sym_special_identifier] = STATE(51), + [sym_boolean] = STATE(2995), + [sym_nil] = STATE(2995), + [sym__atom] = STATE(2995), + [sym_quoted_atom] = STATE(2995), + [sym__quoted_i_double] = STATE(2738), + [sym__quoted_i_single] = STATE(2766), + [sym__quoted_i_heredoc_single] = STATE(2751), + [sym__quoted_i_heredoc_double] = STATE(2852), + [sym_string] = STATE(2995), + [sym_charlist] = STATE(2995), + [sym_sigil] = STATE(2995), + [sym_list] = STATE(2995), + [sym_tuple] = STATE(2995), + [sym_bitstring] = STATE(2995), + [sym_map] = STATE(2995), + [sym_unary_operator] = STATE(2995), + [sym_binary_operator] = STATE(2995), + [sym_operator_identifier] = STATE(5596), + [sym_dot] = STATE(2995), + [sym_call] = STATE(2995), + [sym__call_without_parentheses] = STATE(2764), + [sym__call_with_parentheses] = STATE(2765), + [sym__local_call_without_parentheses] = STATE(2767), + [sym__local_call_with_parentheses] = STATE(2120), + [sym__local_call_just_do_block] = STATE(2833), + [sym__remote_call_without_parentheses] = STATE(2843), + [sym__remote_call_with_parentheses] = STATE(2108), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2107), + [sym__anonymous_dot] = STATE(5500), + [sym__double_call] = STATE(2844), + [sym_access_call] = STATE(2995), + [sym_anonymous_function] = STATE(2995), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(1867), + [sym_integer] = ACTIONS(1867), + [sym_float] = ACTIONS(1867), + [sym_char] = ACTIONS(1867), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(1867), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(541), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(545), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(547), + }, + [505] = { + [sym__expression] = STATE(3118), + [sym_block] = STATE(3118), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(3118), + [sym_nil] = STATE(3118), + [sym__atom] = STATE(3118), + [sym_quoted_atom] = STATE(3118), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(3118), + [sym_charlist] = STATE(3118), + [sym_sigil] = STATE(3118), + [sym_list] = STATE(3118), + [sym_tuple] = STATE(3118), + [sym_bitstring] = STATE(3118), + [sym_map] = STATE(3118), + [sym_unary_operator] = STATE(3118), + [sym_binary_operator] = STATE(3118), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(3118), + [sym_call] = STATE(3118), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(3118), + [sym_anonymous_function] = STATE(3118), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(482), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), + [sym_alias] = ACTIONS(1869), + [sym_integer] = ACTIONS(1869), + [sym_float] = ACTIONS(1869), + [sym_char] = ACTIONS(1869), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1869), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(486), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(495), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_CARET] = ACTIONS(495), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(495), + [anon_sym_not] = ACTIONS(495), + [anon_sym_AT] = ACTIONS(497), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(499), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [506] = { + [sym__expression] = STATE(2992), + [sym_block] = STATE(2992), + [sym__identifier] = STATE(51), + [sym_identifier] = STATE(51), + [sym_special_identifier] = STATE(51), + [sym_boolean] = STATE(2992), + [sym_nil] = STATE(2992), + [sym__atom] = STATE(2992), + [sym_quoted_atom] = STATE(2992), + [sym__quoted_i_double] = STATE(2738), + [sym__quoted_i_single] = STATE(2766), + [sym__quoted_i_heredoc_single] = STATE(2751), + [sym__quoted_i_heredoc_double] = STATE(2852), + [sym_string] = STATE(2992), + [sym_charlist] = STATE(2992), + [sym_sigil] = STATE(2992), + [sym_list] = STATE(2992), + [sym_tuple] = STATE(2992), + [sym_bitstring] = STATE(2992), + [sym_map] = STATE(2992), + [sym_unary_operator] = STATE(2992), + [sym_binary_operator] = STATE(2992), + [sym_operator_identifier] = STATE(5596), + [sym_dot] = STATE(2992), + [sym_call] = STATE(2992), + [sym__call_without_parentheses] = STATE(2764), + [sym__call_with_parentheses] = STATE(2765), + [sym__local_call_without_parentheses] = STATE(2767), + [sym__local_call_with_parentheses] = STATE(2120), + [sym__local_call_just_do_block] = STATE(2833), + [sym__remote_call_without_parentheses] = STATE(2843), + [sym__remote_call_with_parentheses] = STATE(2108), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2107), + [sym__anonymous_dot] = STATE(5500), + [sym__double_call] = STATE(2844), + [sym_access_call] = STATE(2992), + [sym_anonymous_function] = STATE(2992), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(1871), + [sym_integer] = ACTIONS(1871), + [sym_float] = ACTIONS(1871), + [sym_char] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(541), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(545), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(547), + }, + [507] = { + [sym__expression] = STATE(3849), + [sym_block] = STATE(3849), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3849), + [sym_nil] = STATE(3849), + [sym__atom] = STATE(3849), + [sym_quoted_atom] = STATE(3849), + [sym__quoted_i_double] = STATE(3664), + [sym__quoted_i_single] = STATE(3697), + [sym__quoted_i_heredoc_single] = STATE(3698), + [sym__quoted_i_heredoc_double] = STATE(3702), + [sym_string] = STATE(3849), + [sym_charlist] = STATE(3849), + [sym_sigil] = STATE(3849), + [sym_list] = STATE(3849), + [sym_tuple] = STATE(3849), + [sym_bitstring] = STATE(3849), + [sym_map] = STATE(3849), + [sym_unary_operator] = STATE(3849), + [sym_binary_operator] = STATE(3849), + [sym_operator_identifier] = STATE(5655), + [sym_dot] = STATE(3849), + [sym_call] = STATE(3849), + [sym__call_without_parentheses] = STATE(3705), + [sym__call_with_parentheses] = STATE(3725), + [sym__local_call_without_parentheses] = STATE(3765), + [sym__local_call_with_parentheses] = STATE(2681), + [sym__local_call_just_do_block] = STATE(3808), + [sym__remote_call_without_parentheses] = STATE(3810), + [sym__remote_call_with_parentheses] = STATE(2682), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2683), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(3811), + [sym_access_call] = STATE(3849), + [sym_anonymous_function] = STATE(3849), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), + [sym_alias] = ACTIONS(1873), + [sym_integer] = ACTIONS(1873), + [sym_float] = ACTIONS(1873), + [sym_char] = ACTIONS(1873), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), + [sym_atom] = ACTIONS(1873), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(55), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(59), + }, + [508] = { + [sym__expression] = STATE(2984), + [sym_block] = STATE(2984), + [sym__identifier] = STATE(51), + [sym_identifier] = STATE(51), + [sym_special_identifier] = STATE(51), + [sym_boolean] = STATE(2984), + [sym_nil] = STATE(2984), + [sym__atom] = STATE(2984), + [sym_quoted_atom] = STATE(2984), + [sym__quoted_i_double] = STATE(2738), + [sym__quoted_i_single] = STATE(2766), + [sym__quoted_i_heredoc_single] = STATE(2751), + [sym__quoted_i_heredoc_double] = STATE(2852), + [sym_string] = STATE(2984), + [sym_charlist] = STATE(2984), + [sym_sigil] = STATE(2984), + [sym_list] = STATE(2984), + [sym_tuple] = STATE(2984), + [sym_bitstring] = STATE(2984), + [sym_map] = STATE(2984), + [sym_unary_operator] = STATE(2984), + [sym_binary_operator] = STATE(2984), + [sym_operator_identifier] = STATE(5596), + [sym_dot] = STATE(2984), + [sym_call] = STATE(2984), + [sym__call_without_parentheses] = STATE(2764), + [sym__call_with_parentheses] = STATE(2765), + [sym__local_call_without_parentheses] = STATE(2767), + [sym__local_call_with_parentheses] = STATE(2120), + [sym__local_call_just_do_block] = STATE(2833), + [sym__remote_call_without_parentheses] = STATE(2843), + [sym__remote_call_with_parentheses] = STATE(2108), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2107), + [sym__anonymous_dot] = STATE(5500), + [sym__double_call] = STATE(2844), + [sym_access_call] = STATE(2984), + [sym_anonymous_function] = STATE(2984), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(1875), + [sym_integer] = ACTIONS(1875), + [sym_float] = ACTIONS(1875), + [sym_char] = ACTIONS(1875), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(541), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(545), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(547), + }, + [509] = { + [sym__expression] = STATE(2983), + [sym_block] = STATE(2983), + [sym__identifier] = STATE(51), + [sym_identifier] = STATE(51), + [sym_special_identifier] = STATE(51), + [sym_boolean] = STATE(2983), + [sym_nil] = STATE(2983), + [sym__atom] = STATE(2983), + [sym_quoted_atom] = STATE(2983), + [sym__quoted_i_double] = STATE(2738), + [sym__quoted_i_single] = STATE(2766), + [sym__quoted_i_heredoc_single] = STATE(2751), + [sym__quoted_i_heredoc_double] = STATE(2852), + [sym_string] = STATE(2983), + [sym_charlist] = STATE(2983), + [sym_sigil] = STATE(2983), + [sym_list] = STATE(2983), + [sym_tuple] = STATE(2983), + [sym_bitstring] = STATE(2983), + [sym_map] = STATE(2983), + [sym_unary_operator] = STATE(2983), + [sym_binary_operator] = STATE(2983), + [sym_operator_identifier] = STATE(5596), + [sym_dot] = STATE(2983), + [sym_call] = STATE(2983), + [sym__call_without_parentheses] = STATE(2764), + [sym__call_with_parentheses] = STATE(2765), + [sym__local_call_without_parentheses] = STATE(2767), + [sym__local_call_with_parentheses] = STATE(2120), + [sym__local_call_just_do_block] = STATE(2833), + [sym__remote_call_without_parentheses] = STATE(2843), + [sym__remote_call_with_parentheses] = STATE(2108), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2107), + [sym__anonymous_dot] = STATE(5500), + [sym__double_call] = STATE(2844), + [sym_access_call] = STATE(2983), + [sym_anonymous_function] = STATE(2983), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(1877), + [sym_integer] = ACTIONS(1877), + [sym_float] = ACTIONS(1877), + [sym_char] = ACTIONS(1877), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(1877), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(541), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(545), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(547), + }, + [510] = { + [sym__expression] = STATE(2982), + [sym_block] = STATE(2982), + [sym__identifier] = STATE(51), + [sym_identifier] = STATE(51), + [sym_special_identifier] = STATE(51), + [sym_boolean] = STATE(2982), + [sym_nil] = STATE(2982), + [sym__atom] = STATE(2982), + [sym_quoted_atom] = STATE(2982), + [sym__quoted_i_double] = STATE(2738), + [sym__quoted_i_single] = STATE(2766), + [sym__quoted_i_heredoc_single] = STATE(2751), + [sym__quoted_i_heredoc_double] = STATE(2852), + [sym_string] = STATE(2982), + [sym_charlist] = STATE(2982), + [sym_sigil] = STATE(2982), + [sym_list] = STATE(2982), + [sym_tuple] = STATE(2982), + [sym_bitstring] = STATE(2982), + [sym_map] = STATE(2982), + [sym_unary_operator] = STATE(2982), + [sym_binary_operator] = STATE(2982), + [sym_operator_identifier] = STATE(5596), + [sym_dot] = STATE(2982), + [sym_call] = STATE(2982), + [sym__call_without_parentheses] = STATE(2764), + [sym__call_with_parentheses] = STATE(2765), + [sym__local_call_without_parentheses] = STATE(2767), + [sym__local_call_with_parentheses] = STATE(2120), + [sym__local_call_just_do_block] = STATE(2833), + [sym__remote_call_without_parentheses] = STATE(2843), + [sym__remote_call_with_parentheses] = STATE(2108), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2107), + [sym__anonymous_dot] = STATE(5500), + [sym__double_call] = STATE(2844), + [sym_access_call] = STATE(2982), + [sym_anonymous_function] = STATE(2982), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(1879), + [sym_integer] = ACTIONS(1879), + [sym_float] = ACTIONS(1879), + [sym_char] = ACTIONS(1879), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(1879), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(541), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(545), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(547), + }, + [511] = { + [sym__expression] = STATE(2356), + [sym_block] = STATE(2356), + [sym__identifier] = STATE(35), + [sym_identifier] = STATE(35), + [sym_special_identifier] = STATE(35), + [sym_boolean] = STATE(2356), + [sym_nil] = STATE(2356), + [sym__atom] = STATE(2356), + [sym_quoted_atom] = STATE(2356), + [sym__quoted_i_double] = STATE(2196), + [sym__quoted_i_single] = STATE(2197), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(2356), + [sym_charlist] = STATE(2356), + [sym_sigil] = STATE(2356), + [sym_list] = STATE(2356), + [sym_tuple] = STATE(2356), + [sym_bitstring] = STATE(2356), + [sym_map] = STATE(2356), + [sym_unary_operator] = STATE(2356), + [sym_binary_operator] = STATE(2356), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(2356), + [sym_call] = STATE(2356), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(2356), + [sym_anonymous_function] = STATE(2356), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(367), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(1881), + [sym_integer] = ACTIONS(1881), + [sym_float] = ACTIONS(1881), + [sym_char] = ACTIONS(1881), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(1881), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(402), + [anon_sym_DASH] = ACTIONS(402), + [anon_sym_BANG] = ACTIONS(402), + [anon_sym_CARET] = ACTIONS(402), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(402), + [anon_sym_not] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(404), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(406), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(410), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(412), + }, + [512] = { + [sym__expression] = STATE(2976), + [sym_block] = STATE(2976), + [sym__identifier] = STATE(51), + [sym_identifier] = STATE(51), + [sym_special_identifier] = STATE(51), + [sym_boolean] = STATE(2976), + [sym_nil] = STATE(2976), + [sym__atom] = STATE(2976), + [sym_quoted_atom] = STATE(2976), + [sym__quoted_i_double] = STATE(2738), + [sym__quoted_i_single] = STATE(2766), + [sym__quoted_i_heredoc_single] = STATE(2751), + [sym__quoted_i_heredoc_double] = STATE(2852), + [sym_string] = STATE(2976), + [sym_charlist] = STATE(2976), + [sym_sigil] = STATE(2976), + [sym_list] = STATE(2976), + [sym_tuple] = STATE(2976), + [sym_bitstring] = STATE(2976), + [sym_map] = STATE(2976), + [sym_unary_operator] = STATE(2976), + [sym_binary_operator] = STATE(2976), + [sym_operator_identifier] = STATE(5596), + [sym_dot] = STATE(2976), + [sym_call] = STATE(2976), + [sym__call_without_parentheses] = STATE(2764), + [sym__call_with_parentheses] = STATE(2765), + [sym__local_call_without_parentheses] = STATE(2767), + [sym__local_call_with_parentheses] = STATE(2120), + [sym__local_call_just_do_block] = STATE(2833), + [sym__remote_call_without_parentheses] = STATE(2843), + [sym__remote_call_with_parentheses] = STATE(2108), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2107), + [sym__anonymous_dot] = STATE(5500), + [sym__double_call] = STATE(2844), + [sym_access_call] = STATE(2976), + [sym_anonymous_function] = STATE(2976), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(1883), + [sym_integer] = ACTIONS(1883), + [sym_float] = ACTIONS(1883), + [sym_char] = ACTIONS(1883), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(1883), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(541), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(545), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(547), + }, + [513] = { + [sym__expression] = STATE(2975), + [sym_block] = STATE(2975), + [sym__identifier] = STATE(51), + [sym_identifier] = STATE(51), + [sym_special_identifier] = STATE(51), + [sym_boolean] = STATE(2975), + [sym_nil] = STATE(2975), + [sym__atom] = STATE(2975), + [sym_quoted_atom] = STATE(2975), + [sym__quoted_i_double] = STATE(2738), + [sym__quoted_i_single] = STATE(2766), + [sym__quoted_i_heredoc_single] = STATE(2751), + [sym__quoted_i_heredoc_double] = STATE(2852), + [sym_string] = STATE(2975), + [sym_charlist] = STATE(2975), + [sym_sigil] = STATE(2975), + [sym_list] = STATE(2975), + [sym_tuple] = STATE(2975), + [sym_bitstring] = STATE(2975), + [sym_map] = STATE(2975), + [sym_unary_operator] = STATE(2975), + [sym_binary_operator] = STATE(2975), + [sym_operator_identifier] = STATE(5596), + [sym_dot] = STATE(2975), + [sym_call] = STATE(2975), + [sym__call_without_parentheses] = STATE(2764), + [sym__call_with_parentheses] = STATE(2765), + [sym__local_call_without_parentheses] = STATE(2767), + [sym__local_call_with_parentheses] = STATE(2120), + [sym__local_call_just_do_block] = STATE(2833), + [sym__remote_call_without_parentheses] = STATE(2843), + [sym__remote_call_with_parentheses] = STATE(2108), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2107), + [sym__anonymous_dot] = STATE(5500), + [sym__double_call] = STATE(2844), + [sym_access_call] = STATE(2975), + [sym_anonymous_function] = STATE(2975), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(1885), + [sym_integer] = ACTIONS(1885), + [sym_float] = ACTIONS(1885), + [sym_char] = ACTIONS(1885), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(1885), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(541), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(545), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(547), + }, + [514] = { + [sym__expression] = STATE(2916), + [sym_block] = STATE(2916), + [sym__identifier] = STATE(51), + [sym_identifier] = STATE(51), + [sym_special_identifier] = STATE(51), + [sym_boolean] = STATE(2916), + [sym_nil] = STATE(2916), + [sym__atom] = STATE(2916), + [sym_quoted_atom] = STATE(2916), + [sym__quoted_i_double] = STATE(2738), + [sym__quoted_i_single] = STATE(2766), + [sym__quoted_i_heredoc_single] = STATE(2751), + [sym__quoted_i_heredoc_double] = STATE(2852), + [sym_string] = STATE(2916), + [sym_charlist] = STATE(2916), + [sym_sigil] = STATE(2916), + [sym_list] = STATE(2916), + [sym_tuple] = STATE(2916), + [sym_bitstring] = STATE(2916), + [sym_map] = STATE(2916), + [sym_unary_operator] = STATE(2916), + [sym_binary_operator] = STATE(2916), + [sym_operator_identifier] = STATE(5596), + [sym_dot] = STATE(2916), + [sym_call] = STATE(2916), + [sym__call_without_parentheses] = STATE(2764), + [sym__call_with_parentheses] = STATE(2765), + [sym__local_call_without_parentheses] = STATE(2767), + [sym__local_call_with_parentheses] = STATE(2120), + [sym__local_call_just_do_block] = STATE(2833), + [sym__remote_call_without_parentheses] = STATE(2843), + [sym__remote_call_with_parentheses] = STATE(2108), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2107), + [sym__anonymous_dot] = STATE(5500), + [sym__double_call] = STATE(2844), + [sym_access_call] = STATE(2916), + [sym_anonymous_function] = STATE(2916), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(1887), + [sym_integer] = ACTIONS(1887), + [sym_float] = ACTIONS(1887), + [sym_char] = ACTIONS(1887), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(1887), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(541), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(545), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(547), + }, + [515] = { + [sym__expression] = STATE(2914), + [sym_block] = STATE(2914), + [sym__identifier] = STATE(51), + [sym_identifier] = STATE(51), + [sym_special_identifier] = STATE(51), + [sym_boolean] = STATE(2914), + [sym_nil] = STATE(2914), + [sym__atom] = STATE(2914), + [sym_quoted_atom] = STATE(2914), + [sym__quoted_i_double] = STATE(2738), + [sym__quoted_i_single] = STATE(2766), + [sym__quoted_i_heredoc_single] = STATE(2751), + [sym__quoted_i_heredoc_double] = STATE(2852), + [sym_string] = STATE(2914), + [sym_charlist] = STATE(2914), + [sym_sigil] = STATE(2914), + [sym_list] = STATE(2914), + [sym_tuple] = STATE(2914), + [sym_bitstring] = STATE(2914), + [sym_map] = STATE(2914), + [sym_unary_operator] = STATE(2914), + [sym_binary_operator] = STATE(2914), + [sym_operator_identifier] = STATE(5596), + [sym_dot] = STATE(2914), + [sym_call] = STATE(2914), + [sym__call_without_parentheses] = STATE(2764), + [sym__call_with_parentheses] = STATE(2765), + [sym__local_call_without_parentheses] = STATE(2767), + [sym__local_call_with_parentheses] = STATE(2120), + [sym__local_call_just_do_block] = STATE(2833), + [sym__remote_call_without_parentheses] = STATE(2843), + [sym__remote_call_with_parentheses] = STATE(2108), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2107), + [sym__anonymous_dot] = STATE(5500), + [sym__double_call] = STATE(2844), + [sym_access_call] = STATE(2914), + [sym_anonymous_function] = STATE(2914), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(1889), + [sym_integer] = ACTIONS(1889), + [sym_float] = ACTIONS(1889), + [sym_char] = ACTIONS(1889), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(1889), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(541), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(545), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(547), + }, + [516] = { + [sym__expression] = STATE(2880), + [sym_block] = STATE(2880), + [sym__identifier] = STATE(51), + [sym_identifier] = STATE(51), + [sym_special_identifier] = STATE(51), + [sym_boolean] = STATE(2880), + [sym_nil] = STATE(2880), + [sym__atom] = STATE(2880), + [sym_quoted_atom] = STATE(2880), + [sym__quoted_i_double] = STATE(2738), + [sym__quoted_i_single] = STATE(2766), + [sym__quoted_i_heredoc_single] = STATE(2751), + [sym__quoted_i_heredoc_double] = STATE(2852), + [sym_string] = STATE(2880), + [sym_charlist] = STATE(2880), + [sym_sigil] = STATE(2880), + [sym_list] = STATE(2880), + [sym_tuple] = STATE(2880), + [sym_bitstring] = STATE(2880), + [sym_map] = STATE(2880), + [sym_unary_operator] = STATE(2880), + [sym_binary_operator] = STATE(2880), + [sym_operator_identifier] = STATE(5596), + [sym_dot] = STATE(2880), + [sym_call] = STATE(2880), + [sym__call_without_parentheses] = STATE(2764), + [sym__call_with_parentheses] = STATE(2765), + [sym__local_call_without_parentheses] = STATE(2767), + [sym__local_call_with_parentheses] = STATE(2120), + [sym__local_call_just_do_block] = STATE(2833), + [sym__remote_call_without_parentheses] = STATE(2843), + [sym__remote_call_with_parentheses] = STATE(2108), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2107), + [sym__anonymous_dot] = STATE(5500), + [sym__double_call] = STATE(2844), + [sym_access_call] = STATE(2880), + [sym_anonymous_function] = STATE(2880), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(1891), + [sym_integer] = ACTIONS(1891), + [sym_float] = ACTIONS(1891), + [sym_char] = ACTIONS(1891), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(1891), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(541), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(545), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(547), + }, + [517] = { + [sym__expression] = STATE(2875), + [sym_block] = STATE(2875), + [sym__identifier] = STATE(51), + [sym_identifier] = STATE(51), + [sym_special_identifier] = STATE(51), + [sym_boolean] = STATE(2875), + [sym_nil] = STATE(2875), + [sym__atom] = STATE(2875), + [sym_quoted_atom] = STATE(2875), + [sym__quoted_i_double] = STATE(2738), + [sym__quoted_i_single] = STATE(2766), + [sym__quoted_i_heredoc_single] = STATE(2751), + [sym__quoted_i_heredoc_double] = STATE(2852), + [sym_string] = STATE(2875), + [sym_charlist] = STATE(2875), + [sym_sigil] = STATE(2875), + [sym_list] = STATE(2875), + [sym_tuple] = STATE(2875), + [sym_bitstring] = STATE(2875), + [sym_map] = STATE(2875), + [sym_unary_operator] = STATE(2875), + [sym_binary_operator] = STATE(2875), + [sym_operator_identifier] = STATE(5596), + [sym_dot] = STATE(2875), + [sym_call] = STATE(2875), + [sym__call_without_parentheses] = STATE(2764), + [sym__call_with_parentheses] = STATE(2765), + [sym__local_call_without_parentheses] = STATE(2767), + [sym__local_call_with_parentheses] = STATE(2120), + [sym__local_call_just_do_block] = STATE(2833), + [sym__remote_call_without_parentheses] = STATE(2843), + [sym__remote_call_with_parentheses] = STATE(2108), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2107), + [sym__anonymous_dot] = STATE(5500), + [sym__double_call] = STATE(2844), + [sym_access_call] = STATE(2875), + [sym_anonymous_function] = STATE(2875), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(1893), + [sym_integer] = ACTIONS(1893), + [sym_float] = ACTIONS(1893), + [sym_char] = ACTIONS(1893), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(1893), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(541), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(545), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(547), + }, + [518] = { + [sym__expression] = STATE(2192), + [sym_block] = STATE(2192), + [sym__identifier] = STATE(35), + [sym_identifier] = STATE(35), + [sym_special_identifier] = STATE(35), + [sym_boolean] = STATE(2192), + [sym_nil] = STATE(2192), + [sym__atom] = STATE(2192), + [sym_quoted_atom] = STATE(2192), + [sym__quoted_i_double] = STATE(2196), + [sym__quoted_i_single] = STATE(2197), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(2192), + [sym_charlist] = STATE(2192), + [sym_sigil] = STATE(2192), + [sym_list] = STATE(2192), + [sym_tuple] = STATE(2192), + [sym_bitstring] = STATE(2192), + [sym_map] = STATE(2192), + [sym_unary_operator] = STATE(2192), + [sym_binary_operator] = STATE(2192), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(2192), + [sym_call] = STATE(2192), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(2192), + [sym_anonymous_function] = STATE(2192), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(367), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(1895), + [sym_integer] = ACTIONS(1895), + [sym_float] = ACTIONS(1895), + [sym_char] = ACTIONS(1895), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(1895), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(402), + [anon_sym_DASH] = ACTIONS(402), + [anon_sym_BANG] = ACTIONS(402), + [anon_sym_CARET] = ACTIONS(402), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(402), + [anon_sym_not] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(404), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(406), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(410), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(412), + }, + [519] = { + [sym__expression] = STATE(2186), + [sym_block] = STATE(2186), + [sym__identifier] = STATE(35), + [sym_identifier] = STATE(35), + [sym_special_identifier] = STATE(35), + [sym_boolean] = STATE(2186), + [sym_nil] = STATE(2186), + [sym__atom] = STATE(2186), + [sym_quoted_atom] = STATE(2186), + [sym__quoted_i_double] = STATE(2196), + [sym__quoted_i_single] = STATE(2197), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(2186), + [sym_charlist] = STATE(2186), + [sym_sigil] = STATE(2186), + [sym_list] = STATE(2186), + [sym_tuple] = STATE(2186), + [sym_bitstring] = STATE(2186), + [sym_map] = STATE(2186), + [sym_unary_operator] = STATE(2186), + [sym_binary_operator] = STATE(2186), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(2186), + [sym_call] = STATE(2186), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(2186), + [sym_anonymous_function] = STATE(2186), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(367), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(1897), + [sym_integer] = ACTIONS(1897), + [sym_float] = ACTIONS(1897), + [sym_char] = ACTIONS(1897), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(1897), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(402), + [anon_sym_DASH] = ACTIONS(402), + [anon_sym_BANG] = ACTIONS(402), + [anon_sym_CARET] = ACTIONS(402), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(402), + [anon_sym_not] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(404), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(406), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(410), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(412), + }, + [520] = { + [sym__expression] = STATE(4139), + [sym_block] = STATE(4139), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(4139), + [sym_nil] = STATE(4139), + [sym__atom] = STATE(4139), + [sym_quoted_atom] = STATE(4139), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4139), + [sym_charlist] = STATE(4139), + [sym_sigil] = STATE(4139), + [sym_list] = STATE(4139), + [sym_tuple] = STATE(4139), + [sym_bitstring] = STATE(4139), + [sym_map] = STATE(4139), + [sym_unary_operator] = STATE(4139), + [sym_binary_operator] = STATE(4139), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4139), + [sym_call] = STATE(4139), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4139), + [sym_anonymous_function] = STATE(4139), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1899), + [sym_integer] = ACTIONS(1899), + [sym_float] = ACTIONS(1899), + [sym_char] = ACTIONS(1899), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [521] = { + [sym__expression] = STATE(3847), + [sym_block] = STATE(3847), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3847), + [sym_nil] = STATE(3847), + [sym__atom] = STATE(3847), + [sym_quoted_atom] = STATE(3847), + [sym__quoted_i_double] = STATE(3664), + [sym__quoted_i_single] = STATE(3697), + [sym__quoted_i_heredoc_single] = STATE(3698), + [sym__quoted_i_heredoc_double] = STATE(3702), + [sym_string] = STATE(3847), + [sym_charlist] = STATE(3847), + [sym_sigil] = STATE(3847), + [sym_list] = STATE(3847), + [sym_tuple] = STATE(3847), + [sym_bitstring] = STATE(3847), + [sym_map] = STATE(3847), + [sym_unary_operator] = STATE(3847), + [sym_binary_operator] = STATE(3847), + [sym_operator_identifier] = STATE(5655), + [sym_dot] = STATE(3847), + [sym_call] = STATE(3847), + [sym__call_without_parentheses] = STATE(3705), + [sym__call_with_parentheses] = STATE(3725), + [sym__local_call_without_parentheses] = STATE(3765), + [sym__local_call_with_parentheses] = STATE(2681), + [sym__local_call_just_do_block] = STATE(3808), + [sym__remote_call_without_parentheses] = STATE(3810), + [sym__remote_call_with_parentheses] = STATE(2682), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2683), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(3811), + [sym_access_call] = STATE(3847), + [sym_anonymous_function] = STATE(3847), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), + [sym_alias] = ACTIONS(1901), + [sym_integer] = ACTIONS(1901), + [sym_float] = ACTIONS(1901), + [sym_char] = ACTIONS(1901), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), + [sym_atom] = ACTIONS(1901), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(55), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(59), + }, + [522] = { + [sym__expression] = STATE(2150), + [sym_block] = STATE(2150), + [sym__identifier] = STATE(35), + [sym_identifier] = STATE(35), + [sym_special_identifier] = STATE(35), + [sym_boolean] = STATE(2150), + [sym_nil] = STATE(2150), + [sym__atom] = STATE(2150), + [sym_quoted_atom] = STATE(2150), + [sym__quoted_i_double] = STATE(2196), + [sym__quoted_i_single] = STATE(2197), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(2150), + [sym_charlist] = STATE(2150), + [sym_sigil] = STATE(2150), + [sym_list] = STATE(2150), + [sym_tuple] = STATE(2150), + [sym_bitstring] = STATE(2150), + [sym_map] = STATE(2150), + [sym_unary_operator] = STATE(2150), + [sym_binary_operator] = STATE(2150), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(2150), + [sym_call] = STATE(2150), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(2150), + [sym_anonymous_function] = STATE(2150), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(367), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(1903), + [sym_integer] = ACTIONS(1903), + [sym_float] = ACTIONS(1903), + [sym_char] = ACTIONS(1903), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(1903), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(402), + [anon_sym_DASH] = ACTIONS(402), + [anon_sym_BANG] = ACTIONS(402), + [anon_sym_CARET] = ACTIONS(402), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(402), + [anon_sym_not] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(404), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(406), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(410), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(412), + }, + [523] = { + [sym__expression] = STATE(2149), + [sym_block] = STATE(2149), + [sym__identifier] = STATE(35), + [sym_identifier] = STATE(35), + [sym_special_identifier] = STATE(35), + [sym_boolean] = STATE(2149), + [sym_nil] = STATE(2149), + [sym__atom] = STATE(2149), + [sym_quoted_atom] = STATE(2149), + [sym__quoted_i_double] = STATE(2196), + [sym__quoted_i_single] = STATE(2197), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(2149), + [sym_charlist] = STATE(2149), + [sym_sigil] = STATE(2149), + [sym_list] = STATE(2149), + [sym_tuple] = STATE(2149), + [sym_bitstring] = STATE(2149), + [sym_map] = STATE(2149), + [sym_unary_operator] = STATE(2149), + [sym_binary_operator] = STATE(2149), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(2149), + [sym_call] = STATE(2149), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(2149), + [sym_anonymous_function] = STATE(2149), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(367), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(1905), + [sym_integer] = ACTIONS(1905), + [sym_float] = ACTIONS(1905), + [sym_char] = ACTIONS(1905), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(1905), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(402), + [anon_sym_DASH] = ACTIONS(402), + [anon_sym_BANG] = ACTIONS(402), + [anon_sym_CARET] = ACTIONS(402), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(402), + [anon_sym_not] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(404), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(406), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(410), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(412), + }, + [524] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym__identifier] = STATE(35), + [sym_identifier] = STATE(35), + [sym_special_identifier] = STATE(35), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym__atom] = STATE(2295), + [sym_quoted_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(2196), + [sym__quoted_i_single] = STATE(2197), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(2295), + [sym_charlist] = STATE(2295), + [sym_sigil] = STATE(2295), + [sym_list] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_bitstring] = STATE(2295), + [sym_map] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_binary_operator] = STATE(2295), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(2295), + [sym_anonymous_function] = STATE(2295), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(367), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(1907), + [sym_integer] = ACTIONS(1907), + [sym_float] = ACTIONS(1907), + [sym_char] = ACTIONS(1907), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(1907), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(402), + [anon_sym_DASH] = ACTIONS(402), + [anon_sym_BANG] = ACTIONS(402), + [anon_sym_CARET] = ACTIONS(402), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(402), + [anon_sym_not] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(404), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(406), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(410), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(412), + }, + [525] = { + [sym__expression] = STATE(3615), + [sym_block] = STATE(3615), + [sym__identifier] = STATE(70), + [sym_identifier] = STATE(70), + [sym_special_identifier] = STATE(70), + [sym_boolean] = STATE(3615), + [sym_nil] = STATE(3615), + [sym__atom] = STATE(3615), + [sym_quoted_atom] = STATE(3615), + [sym__quoted_i_double] = STATE(2196), + [sym__quoted_i_single] = STATE(2197), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(3615), + [sym_charlist] = STATE(3615), + [sym_sigil] = STATE(3615), + [sym_list] = STATE(3615), + [sym_tuple] = STATE(3615), + [sym_bitstring] = STATE(3615), + [sym_map] = STATE(3615), + [sym_unary_operator] = STATE(3615), + [sym_binary_operator] = STATE(3615), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(3615), + [sym_call] = STATE(3615), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(3615), + [sym_anonymous_function] = STATE(3615), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(1367), + [sym_integer] = ACTIONS(1367), + [sym_float] = ACTIONS(1367), + [sym_char] = ACTIONS(1367), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(678), + [anon_sym_CARET] = ACTIONS(678), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(678), + [anon_sym_not] = ACTIONS(678), + [anon_sym_AT] = ACTIONS(680), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(406), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(682), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(412), + }, + [526] = { + [sym__expression] = STATE(2296), + [sym_block] = STATE(2296), + [sym__identifier] = STATE(35), + [sym_identifier] = STATE(35), + [sym_special_identifier] = STATE(35), + [sym_boolean] = STATE(2296), + [sym_nil] = STATE(2296), + [sym__atom] = STATE(2296), + [sym_quoted_atom] = STATE(2296), + [sym__quoted_i_double] = STATE(2196), + [sym__quoted_i_single] = STATE(2197), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(2296), + [sym_charlist] = STATE(2296), + [sym_sigil] = STATE(2296), + [sym_list] = STATE(2296), + [sym_tuple] = STATE(2296), + [sym_bitstring] = STATE(2296), + [sym_map] = STATE(2296), + [sym_unary_operator] = STATE(2296), + [sym_binary_operator] = STATE(2296), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(2296), + [sym_call] = STATE(2296), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(2296), + [sym_anonymous_function] = STATE(2296), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(367), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(1909), + [sym_integer] = ACTIONS(1909), + [sym_float] = ACTIONS(1909), + [sym_char] = ACTIONS(1909), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(1909), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(402), + [anon_sym_DASH] = ACTIONS(402), + [anon_sym_BANG] = ACTIONS(402), + [anon_sym_CARET] = ACTIONS(402), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(402), + [anon_sym_not] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(404), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(406), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(410), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(412), + }, + [527] = { + [sym__expression] = STATE(2299), + [sym_block] = STATE(2299), + [sym__identifier] = STATE(35), + [sym_identifier] = STATE(35), + [sym_special_identifier] = STATE(35), + [sym_boolean] = STATE(2299), + [sym_nil] = STATE(2299), + [sym__atom] = STATE(2299), + [sym_quoted_atom] = STATE(2299), + [sym__quoted_i_double] = STATE(2196), + [sym__quoted_i_single] = STATE(2197), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(2299), + [sym_charlist] = STATE(2299), + [sym_sigil] = STATE(2299), + [sym_list] = STATE(2299), + [sym_tuple] = STATE(2299), + [sym_bitstring] = STATE(2299), + [sym_map] = STATE(2299), + [sym_unary_operator] = STATE(2299), + [sym_binary_operator] = STATE(2299), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(2299), + [sym_call] = STATE(2299), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(2299), + [sym_anonymous_function] = STATE(2299), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(367), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(1911), + [sym_integer] = ACTIONS(1911), + [sym_float] = ACTIONS(1911), + [sym_char] = ACTIONS(1911), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(1911), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(402), + [anon_sym_DASH] = ACTIONS(402), + [anon_sym_BANG] = ACTIONS(402), + [anon_sym_CARET] = ACTIONS(402), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(402), + [anon_sym_not] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(404), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(406), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(410), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(412), + }, + [528] = { + [sym__expression] = STATE(2300), + [sym_block] = STATE(2300), + [sym__identifier] = STATE(35), + [sym_identifier] = STATE(35), + [sym_special_identifier] = STATE(35), + [sym_boolean] = STATE(2300), + [sym_nil] = STATE(2300), + [sym__atom] = STATE(2300), + [sym_quoted_atom] = STATE(2300), + [sym__quoted_i_double] = STATE(2196), + [sym__quoted_i_single] = STATE(2197), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(2300), + [sym_charlist] = STATE(2300), + [sym_sigil] = STATE(2300), + [sym_list] = STATE(2300), + [sym_tuple] = STATE(2300), + [sym_bitstring] = STATE(2300), + [sym_map] = STATE(2300), + [sym_unary_operator] = STATE(2300), + [sym_binary_operator] = STATE(2300), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(2300), + [sym_call] = STATE(2300), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(2300), + [sym_anonymous_function] = STATE(2300), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(367), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(1913), + [sym_integer] = ACTIONS(1913), + [sym_float] = ACTIONS(1913), + [sym_char] = ACTIONS(1913), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(1913), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(402), + [anon_sym_DASH] = ACTIONS(402), + [anon_sym_BANG] = ACTIONS(402), + [anon_sym_CARET] = ACTIONS(402), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(402), + [anon_sym_not] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(404), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(406), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(410), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(412), + }, + [529] = { + [sym__expression] = STATE(2301), + [sym_block] = STATE(2301), + [sym__identifier] = STATE(35), + [sym_identifier] = STATE(35), + [sym_special_identifier] = STATE(35), + [sym_boolean] = STATE(2301), + [sym_nil] = STATE(2301), + [sym__atom] = STATE(2301), + [sym_quoted_atom] = STATE(2301), + [sym__quoted_i_double] = STATE(2196), + [sym__quoted_i_single] = STATE(2197), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(2301), + [sym_charlist] = STATE(2301), + [sym_sigil] = STATE(2301), + [sym_list] = STATE(2301), + [sym_tuple] = STATE(2301), + [sym_bitstring] = STATE(2301), + [sym_map] = STATE(2301), + [sym_unary_operator] = STATE(2301), + [sym_binary_operator] = STATE(2301), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(2301), + [sym_call] = STATE(2301), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(2301), + [sym_anonymous_function] = STATE(2301), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(367), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(1915), + [sym_integer] = ACTIONS(1915), + [sym_float] = ACTIONS(1915), + [sym_char] = ACTIONS(1915), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(1915), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(402), + [anon_sym_DASH] = ACTIONS(402), + [anon_sym_BANG] = ACTIONS(402), + [anon_sym_CARET] = ACTIONS(402), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(402), + [anon_sym_not] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(404), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(406), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(410), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(412), + }, + [530] = { + [sym__expression] = STATE(2304), + [sym_block] = STATE(2304), + [sym__identifier] = STATE(35), + [sym_identifier] = STATE(35), + [sym_special_identifier] = STATE(35), + [sym_boolean] = STATE(2304), + [sym_nil] = STATE(2304), + [sym__atom] = STATE(2304), + [sym_quoted_atom] = STATE(2304), + [sym__quoted_i_double] = STATE(2196), + [sym__quoted_i_single] = STATE(2197), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(2304), + [sym_charlist] = STATE(2304), + [sym_sigil] = STATE(2304), + [sym_list] = STATE(2304), + [sym_tuple] = STATE(2304), + [sym_bitstring] = STATE(2304), + [sym_map] = STATE(2304), + [sym_unary_operator] = STATE(2304), + [sym_binary_operator] = STATE(2304), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(2304), + [sym_call] = STATE(2304), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(2304), + [sym_anonymous_function] = STATE(2304), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(367), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(1917), + [sym_integer] = ACTIONS(1917), + [sym_float] = ACTIONS(1917), + [sym_char] = ACTIONS(1917), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(1917), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(402), + [anon_sym_DASH] = ACTIONS(402), + [anon_sym_BANG] = ACTIONS(402), + [anon_sym_CARET] = ACTIONS(402), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(402), + [anon_sym_not] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(404), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(406), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(410), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(412), + }, + [531] = { + [sym__expression] = STATE(2305), + [sym_block] = STATE(2305), + [sym__identifier] = STATE(35), + [sym_identifier] = STATE(35), + [sym_special_identifier] = STATE(35), + [sym_boolean] = STATE(2305), + [sym_nil] = STATE(2305), + [sym__atom] = STATE(2305), + [sym_quoted_atom] = STATE(2305), + [sym__quoted_i_double] = STATE(2196), + [sym__quoted_i_single] = STATE(2197), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(2305), + [sym_charlist] = STATE(2305), + [sym_sigil] = STATE(2305), + [sym_list] = STATE(2305), + [sym_tuple] = STATE(2305), + [sym_bitstring] = STATE(2305), + [sym_map] = STATE(2305), + [sym_unary_operator] = STATE(2305), + [sym_binary_operator] = STATE(2305), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(2305), + [sym_call] = STATE(2305), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(2305), + [sym_anonymous_function] = STATE(2305), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(367), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(1919), + [sym_integer] = ACTIONS(1919), + [sym_float] = ACTIONS(1919), + [sym_char] = ACTIONS(1919), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(1919), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(402), + [anon_sym_DASH] = ACTIONS(402), + [anon_sym_BANG] = ACTIONS(402), + [anon_sym_CARET] = ACTIONS(402), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(402), + [anon_sym_not] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(404), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(406), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(410), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(412), + }, + [532] = { + [sym__expression] = STATE(2306), + [sym_block] = STATE(2306), + [sym__identifier] = STATE(35), + [sym_identifier] = STATE(35), + [sym_special_identifier] = STATE(35), + [sym_boolean] = STATE(2306), + [sym_nil] = STATE(2306), + [sym__atom] = STATE(2306), + [sym_quoted_atom] = STATE(2306), + [sym__quoted_i_double] = STATE(2196), + [sym__quoted_i_single] = STATE(2197), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(2306), + [sym_charlist] = STATE(2306), + [sym_sigil] = STATE(2306), + [sym_list] = STATE(2306), + [sym_tuple] = STATE(2306), + [sym_bitstring] = STATE(2306), + [sym_map] = STATE(2306), + [sym_unary_operator] = STATE(2306), + [sym_binary_operator] = STATE(2306), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(2306), + [sym_call] = STATE(2306), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(2306), + [sym_anonymous_function] = STATE(2306), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(367), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(1921), + [sym_integer] = ACTIONS(1921), + [sym_float] = ACTIONS(1921), + [sym_char] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(1921), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(402), + [anon_sym_DASH] = ACTIONS(402), + [anon_sym_BANG] = ACTIONS(402), + [anon_sym_CARET] = ACTIONS(402), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(402), + [anon_sym_not] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(404), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(406), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(410), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(412), + }, + [533] = { + [sym__expression] = STATE(2307), + [sym_block] = STATE(2307), + [sym__identifier] = STATE(35), + [sym_identifier] = STATE(35), + [sym_special_identifier] = STATE(35), + [sym_boolean] = STATE(2307), + [sym_nil] = STATE(2307), + [sym__atom] = STATE(2307), + [sym_quoted_atom] = STATE(2307), + [sym__quoted_i_double] = STATE(2196), + [sym__quoted_i_single] = STATE(2197), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(2307), + [sym_charlist] = STATE(2307), + [sym_sigil] = STATE(2307), + [sym_list] = STATE(2307), + [sym_tuple] = STATE(2307), + [sym_bitstring] = STATE(2307), + [sym_map] = STATE(2307), + [sym_unary_operator] = STATE(2307), + [sym_binary_operator] = STATE(2307), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(2307), + [sym_call] = STATE(2307), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(2307), + [sym_anonymous_function] = STATE(2307), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(367), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(1923), + [sym_integer] = ACTIONS(1923), + [sym_float] = ACTIONS(1923), + [sym_char] = ACTIONS(1923), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(1923), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(402), + [anon_sym_DASH] = ACTIONS(402), + [anon_sym_BANG] = ACTIONS(402), + [anon_sym_CARET] = ACTIONS(402), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(402), + [anon_sym_not] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(404), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(406), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(410), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(412), + }, + [534] = { + [sym__expression] = STATE(2308), + [sym_block] = STATE(2308), + [sym__identifier] = STATE(35), + [sym_identifier] = STATE(35), + [sym_special_identifier] = STATE(35), + [sym_boolean] = STATE(2308), + [sym_nil] = STATE(2308), + [sym__atom] = STATE(2308), + [sym_quoted_atom] = STATE(2308), + [sym__quoted_i_double] = STATE(2196), + [sym__quoted_i_single] = STATE(2197), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(2308), + [sym_charlist] = STATE(2308), + [sym_sigil] = STATE(2308), + [sym_list] = STATE(2308), + [sym_tuple] = STATE(2308), + [sym_bitstring] = STATE(2308), + [sym_map] = STATE(2308), + [sym_unary_operator] = STATE(2308), + [sym_binary_operator] = STATE(2308), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(2308), + [sym_call] = STATE(2308), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(2308), + [sym_anonymous_function] = STATE(2308), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(367), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(1925), + [sym_integer] = ACTIONS(1925), + [sym_float] = ACTIONS(1925), + [sym_char] = ACTIONS(1925), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(1925), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(402), + [anon_sym_DASH] = ACTIONS(402), + [anon_sym_BANG] = ACTIONS(402), + [anon_sym_CARET] = ACTIONS(402), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(402), + [anon_sym_not] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(404), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(406), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(410), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(412), + }, + [535] = { + [sym__expression] = STATE(2309), + [sym_block] = STATE(2309), + [sym__identifier] = STATE(35), + [sym_identifier] = STATE(35), + [sym_special_identifier] = STATE(35), + [sym_boolean] = STATE(2309), + [sym_nil] = STATE(2309), + [sym__atom] = STATE(2309), + [sym_quoted_atom] = STATE(2309), + [sym__quoted_i_double] = STATE(2196), + [sym__quoted_i_single] = STATE(2197), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(2309), + [sym_charlist] = STATE(2309), + [sym_sigil] = STATE(2309), + [sym_list] = STATE(2309), + [sym_tuple] = STATE(2309), + [sym_bitstring] = STATE(2309), + [sym_map] = STATE(2309), + [sym_unary_operator] = STATE(2309), + [sym_binary_operator] = STATE(2309), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(2309), + [sym_call] = STATE(2309), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(2309), + [sym_anonymous_function] = STATE(2309), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(367), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(1927), + [sym_integer] = ACTIONS(1927), + [sym_float] = ACTIONS(1927), + [sym_char] = ACTIONS(1927), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(1927), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(402), + [anon_sym_DASH] = ACTIONS(402), + [anon_sym_BANG] = ACTIONS(402), + [anon_sym_CARET] = ACTIONS(402), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(402), + [anon_sym_not] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(404), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(406), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(410), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(412), + }, + [536] = { + [sym__expression] = STATE(3498), + [sym_block] = STATE(3498), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3498), + [sym_nil] = STATE(3498), + [sym__atom] = STATE(3498), + [sym_quoted_atom] = STATE(3498), + [sym__quoted_i_double] = STATE(1540), + [sym__quoted_i_single] = STATE(1541), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(3498), + [sym_charlist] = STATE(3498), + [sym_sigil] = STATE(3498), + [sym_list] = STATE(3498), + [sym_tuple] = STATE(3498), + [sym_bitstring] = STATE(3498), + [sym_map] = STATE(3498), + [sym_unary_operator] = STATE(3498), + [sym_binary_operator] = STATE(3498), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(3498), + [sym_call] = STATE(3498), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(3498), + [sym_anonymous_function] = STATE(3498), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1337), [aux_sym_identifier_token1] = ACTIONS(704), [anon_sym_DOT_DOT_DOT] = ACTIONS(704), [sym_unused_identifier] = ACTIONS(706), @@ -93968,14 +94606,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ENV__] = ACTIONS(708), [anon_sym___CALLER__] = ACTIONS(708), [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1923), - [sym_integer] = ACTIONS(1923), - [sym_float] = ACTIONS(1923), - [sym_char] = ACTIONS(1923), + [sym_alias] = ACTIONS(1929), + [sym_integer] = ACTIONS(1929), + [sym_float] = ACTIONS(1929), + [sym_char] = ACTIONS(1929), [anon_sym_true] = ACTIONS(75), [anon_sym_false] = ACTIONS(75), [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(1923), + [sym_atom] = ACTIONS(1929), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), @@ -93985,7 +94623,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1062), [anon_sym_TILDE] = ACTIONS(712), [anon_sym_LT_LT] = ACTIONS(95), [anon_sym_PERCENT] = ACTIONS(97), @@ -94045,46 +94683,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [537] = { - [sym__expression] = STATE(2833), - [sym_block] = STATE(2833), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(2833), - [sym_nil] = STATE(2833), - [sym__atom] = STATE(2833), - [sym_quoted_atom] = STATE(2833), - [sym__quoted_i_double] = STATE(1551), - [sym__quoted_i_single] = STATE(1552), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(2833), - [sym_charlist] = STATE(2833), - [sym_sigil] = STATE(2833), - [sym_list] = STATE(2833), - [sym_tuple] = STATE(2833), - [sym_bitstring] = STATE(2833), - [sym_map] = STATE(2833), - [sym_unary_operator] = STATE(2833), - [sym_binary_operator] = STATE(2833), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(2833), - [sym_call] = STATE(2833), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(2833), - [sym_anonymous_function] = STATE(2833), + [sym__expression] = STATE(1642), + [sym_block] = STATE(1642), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(1642), + [sym_nil] = STATE(1642), + [sym__atom] = STATE(1642), + [sym_quoted_atom] = STATE(1642), + [sym__quoted_i_double] = STATE(1540), + [sym__quoted_i_single] = STATE(1541), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1642), + [sym_charlist] = STATE(1642), + [sym_sigil] = STATE(1642), + [sym_list] = STATE(1642), + [sym_tuple] = STATE(1642), + [sym_bitstring] = STATE(1642), + [sym_map] = STATE(1642), + [sym_unary_operator] = STATE(1642), + [sym_binary_operator] = STATE(1642), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1642), + [sym_call] = STATE(1642), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1642), + [sym_anonymous_function] = STATE(1642), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1337), [aux_sym_identifier_token1] = ACTIONS(704), [anon_sym_DOT_DOT_DOT] = ACTIONS(704), [sym_unused_identifier] = ACTIONS(706), @@ -94093,14 +94731,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ENV__] = ACTIONS(708), [anon_sym___CALLER__] = ACTIONS(708), [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1925), - [sym_integer] = ACTIONS(1925), - [sym_float] = ACTIONS(1925), - [sym_char] = ACTIONS(1925), + [sym_alias] = ACTIONS(1931), + [sym_integer] = ACTIONS(1931), + [sym_float] = ACTIONS(1931), + [sym_char] = ACTIONS(1931), [anon_sym_true] = ACTIONS(75), [anon_sym_false] = ACTIONS(75), [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(1925), + [sym_atom] = ACTIONS(1931), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), @@ -94110,7 +94748,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1062), [anon_sym_TILDE] = ACTIONS(712), [anon_sym_LT_LT] = ACTIONS(95), [anon_sym_PERCENT] = ACTIONS(97), @@ -94170,458 +94808,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(121), }, [538] = { - [sym__expression] = STATE(2834), - [sym_block] = STATE(2834), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(2834), - [sym_nil] = STATE(2834), - [sym__atom] = STATE(2834), - [sym_quoted_atom] = STATE(2834), - [sym__quoted_i_double] = STATE(1551), - [sym__quoted_i_single] = STATE(1552), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(2834), - [sym_charlist] = STATE(2834), - [sym_sigil] = STATE(2834), - [sym_list] = STATE(2834), - [sym_tuple] = STATE(2834), - [sym_bitstring] = STATE(2834), - [sym_map] = STATE(2834), - [sym_unary_operator] = STATE(2834), - [sym_binary_operator] = STATE(2834), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(2834), - [sym_call] = STATE(2834), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(2834), - [sym_anonymous_function] = STATE(2834), + [sym__expression] = STATE(2310), + [sym_block] = STATE(2310), + [sym__identifier] = STATE(35), + [sym_identifier] = STATE(35), + [sym_special_identifier] = STATE(35), + [sym_boolean] = STATE(2310), + [sym_nil] = STATE(2310), + [sym__atom] = STATE(2310), + [sym_quoted_atom] = STATE(2310), + [sym__quoted_i_double] = STATE(2196), + [sym__quoted_i_single] = STATE(2197), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(2310), + [sym_charlist] = STATE(2310), + [sym_sigil] = STATE(2310), + [sym_list] = STATE(2310), + [sym_tuple] = STATE(2310), + [sym_bitstring] = STATE(2310), + [sym_map] = STATE(2310), + [sym_unary_operator] = STATE(2310), + [sym_binary_operator] = STATE(2310), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(2310), + [sym_call] = STATE(2310), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(2310), + [sym_anonymous_function] = STATE(2310), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1479), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(706), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1927), - [sym_integer] = ACTIONS(1927), - [sym_float] = ACTIONS(1927), - [sym_char] = ACTIONS(1927), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(1927), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(712), - [anon_sym_LT_LT] = ACTIONS(95), - [anon_sym_PERCENT] = ACTIONS(97), - [anon_sym_AMP] = ACTIONS(714), - [anon_sym_PLUS] = ACTIONS(716), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_CARET] = ACTIONS(716), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), - [anon_sym_not] = ACTIONS(716), - [anon_sym_AT] = ACTIONS(718), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(115), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(722), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(121), - }, - [539] = { - [sym__expression] = STATE(2762), - [sym_block] = STATE(2762), - [sym__identifier] = STATE(42), - [sym_identifier] = STATE(42), - [sym_special_identifier] = STATE(42), - [sym_boolean] = STATE(2762), - [sym_nil] = STATE(2762), - [sym__atom] = STATE(2762), - [sym_quoted_atom] = STATE(2762), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2762), - [sym_charlist] = STATE(2762), - [sym_sigil] = STATE(2762), - [sym_list] = STATE(2762), - [sym_tuple] = STATE(2762), - [sym_bitstring] = STATE(2762), - [sym_map] = STATE(2762), - [sym_unary_operator] = STATE(2762), - [sym_binary_operator] = STATE(2762), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2762), - [sym_call] = STATE(2762), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2762), - [sym_anonymous_function] = STATE(2762), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(456), - [sym_unused_identifier] = ACTIONS(458), - [anon_sym___MODULE__] = ACTIONS(460), - [anon_sym___DIR__] = ACTIONS(460), - [anon_sym___ENV__] = ACTIONS(460), - [anon_sym___CALLER__] = ACTIONS(460), - [anon_sym___STACKTRACE__] = ACTIONS(460), - [sym_alias] = ACTIONS(1929), - [sym_integer] = ACTIONS(1929), - [sym_float] = ACTIONS(1929), - [sym_char] = ACTIONS(1929), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1929), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(464), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(473), - [anon_sym_BANG] = ACTIONS(473), - [anon_sym_CARET] = ACTIONS(473), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), - [anon_sym_not] = ACTIONS(473), - [anon_sym_AT] = ACTIONS(475), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(477), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [540] = { - [sym__expression] = STATE(2837), - [sym_block] = STATE(2837), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(2837), - [sym_nil] = STATE(2837), - [sym__atom] = STATE(2837), - [sym_quoted_atom] = STATE(2837), - [sym__quoted_i_double] = STATE(1551), - [sym__quoted_i_single] = STATE(1552), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(2837), - [sym_charlist] = STATE(2837), - [sym_sigil] = STATE(2837), - [sym_list] = STATE(2837), - [sym_tuple] = STATE(2837), - [sym_bitstring] = STATE(2837), - [sym_map] = STATE(2837), - [sym_unary_operator] = STATE(2837), - [sym_binary_operator] = STATE(2837), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(2837), - [sym_call] = STATE(2837), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(2837), - [sym_anonymous_function] = STATE(2837), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1479), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(706), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1931), - [sym_integer] = ACTIONS(1931), - [sym_float] = ACTIONS(1931), - [sym_char] = ACTIONS(1931), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(1931), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(712), - [anon_sym_LT_LT] = ACTIONS(95), - [anon_sym_PERCENT] = ACTIONS(97), - [anon_sym_AMP] = ACTIONS(714), - [anon_sym_PLUS] = ACTIONS(716), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_CARET] = ACTIONS(716), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), - [anon_sym_not] = ACTIONS(716), - [anon_sym_AT] = ACTIONS(718), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(115), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(722), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(121), - }, - [541] = { - [sym__expression] = STATE(2890), - [sym_block] = STATE(2890), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(2890), - [sym_nil] = STATE(2890), - [sym__atom] = STATE(2890), - [sym_quoted_atom] = STATE(2890), - [sym__quoted_i_double] = STATE(1551), - [sym__quoted_i_single] = STATE(1552), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(2890), - [sym_charlist] = STATE(2890), - [sym_sigil] = STATE(2890), - [sym_list] = STATE(2890), - [sym_tuple] = STATE(2890), - [sym_bitstring] = STATE(2890), - [sym_map] = STATE(2890), - [sym_unary_operator] = STATE(2890), - [sym_binary_operator] = STATE(2890), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(2890), - [sym_call] = STATE(2890), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(2890), - [sym_anonymous_function] = STATE(2890), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1479), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(706), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(367), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), [sym_alias] = ACTIONS(1933), [sym_integer] = ACTIONS(1933), [sym_float] = ACTIONS(1933), [sym_char] = ACTIONS(1933), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), [sym_atom] = ACTIONS(1933), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(712), - [anon_sym_LT_LT] = ACTIONS(95), - [anon_sym_PERCENT] = ACTIONS(97), - [anon_sym_AMP] = ACTIONS(714), - [anon_sym_PLUS] = ACTIONS(716), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_CARET] = ACTIONS(716), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), - [anon_sym_not] = ACTIONS(716), - [anon_sym_AT] = ACTIONS(718), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(402), + [anon_sym_DASH] = ACTIONS(402), + [anon_sym_BANG] = ACTIONS(402), + [anon_sym_CARET] = ACTIONS(402), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(402), + [anon_sym_not] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(404), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -94661,92 +94924,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(406), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(722), + [sym__before_unary_op] = ACTIONS(410), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(121), + [sym__quoted_atom_start] = ACTIONS(412), }, - [542] = { - [sym__expression] = STATE(2874), - [sym_block] = STATE(2874), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(2874), - [sym_nil] = STATE(2874), - [sym__atom] = STATE(2874), - [sym_quoted_atom] = STATE(2874), - [sym__quoted_i_double] = STATE(1551), - [sym__quoted_i_single] = STATE(1552), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(2874), - [sym_charlist] = STATE(2874), - [sym_sigil] = STATE(2874), - [sym_list] = STATE(2874), - [sym_tuple] = STATE(2874), - [sym_bitstring] = STATE(2874), - [sym_map] = STATE(2874), - [sym_unary_operator] = STATE(2874), - [sym_binary_operator] = STATE(2874), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(2874), - [sym_call] = STATE(2874), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(2874), - [sym_anonymous_function] = STATE(2874), + [539] = { + [sym__expression] = STATE(2311), + [sym_block] = STATE(2311), + [sym__identifier] = STATE(35), + [sym_identifier] = STATE(35), + [sym_special_identifier] = STATE(35), + [sym_boolean] = STATE(2311), + [sym_nil] = STATE(2311), + [sym__atom] = STATE(2311), + [sym_quoted_atom] = STATE(2311), + [sym__quoted_i_double] = STATE(2196), + [sym__quoted_i_single] = STATE(2197), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(2311), + [sym_charlist] = STATE(2311), + [sym_sigil] = STATE(2311), + [sym_list] = STATE(2311), + [sym_tuple] = STATE(2311), + [sym_bitstring] = STATE(2311), + [sym_map] = STATE(2311), + [sym_unary_operator] = STATE(2311), + [sym_binary_operator] = STATE(2311), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(2311), + [sym_call] = STATE(2311), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(2311), + [sym_anonymous_function] = STATE(2311), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1479), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(706), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(367), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), [sym_alias] = ACTIONS(1935), [sym_integer] = ACTIONS(1935), [sym_float] = ACTIONS(1935), [sym_char] = ACTIONS(1935), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), [sym_atom] = ACTIONS(1935), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(712), - [anon_sym_LT_LT] = ACTIONS(95), - [anon_sym_PERCENT] = ACTIONS(97), - [anon_sym_AMP] = ACTIONS(714), - [anon_sym_PLUS] = ACTIONS(716), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_CARET] = ACTIONS(716), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), - [anon_sym_not] = ACTIONS(716), - [anon_sym_AT] = ACTIONS(718), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(402), + [anon_sym_DASH] = ACTIONS(402), + [anon_sym_BANG] = ACTIONS(402), + [anon_sym_CARET] = ACTIONS(402), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(402), + [anon_sym_not] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(404), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -94786,92 +95049,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(406), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(722), + [sym__before_unary_op] = ACTIONS(410), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(121), + [sym__quoted_atom_start] = ACTIONS(412), }, - [543] = { - [sym__expression] = STATE(2875), - [sym_block] = STATE(2875), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(2875), - [sym_nil] = STATE(2875), - [sym__atom] = STATE(2875), - [sym_quoted_atom] = STATE(2875), - [sym__quoted_i_double] = STATE(1551), - [sym__quoted_i_single] = STATE(1552), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(2875), - [sym_charlist] = STATE(2875), - [sym_sigil] = STATE(2875), - [sym_list] = STATE(2875), - [sym_tuple] = STATE(2875), - [sym_bitstring] = STATE(2875), - [sym_map] = STATE(2875), - [sym_unary_operator] = STATE(2875), - [sym_binary_operator] = STATE(2875), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(2875), - [sym_call] = STATE(2875), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(2875), - [sym_anonymous_function] = STATE(2875), + [540] = { + [sym__expression] = STATE(2312), + [sym_block] = STATE(2312), + [sym__identifier] = STATE(35), + [sym_identifier] = STATE(35), + [sym_special_identifier] = STATE(35), + [sym_boolean] = STATE(2312), + [sym_nil] = STATE(2312), + [sym__atom] = STATE(2312), + [sym_quoted_atom] = STATE(2312), + [sym__quoted_i_double] = STATE(2196), + [sym__quoted_i_single] = STATE(2197), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(2312), + [sym_charlist] = STATE(2312), + [sym_sigil] = STATE(2312), + [sym_list] = STATE(2312), + [sym_tuple] = STATE(2312), + [sym_bitstring] = STATE(2312), + [sym_map] = STATE(2312), + [sym_unary_operator] = STATE(2312), + [sym_binary_operator] = STATE(2312), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(2312), + [sym_call] = STATE(2312), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(2312), + [sym_anonymous_function] = STATE(2312), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1479), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(706), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(367), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), [sym_alias] = ACTIONS(1937), [sym_integer] = ACTIONS(1937), [sym_float] = ACTIONS(1937), [sym_char] = ACTIONS(1937), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), [sym_atom] = ACTIONS(1937), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(712), - [anon_sym_LT_LT] = ACTIONS(95), - [anon_sym_PERCENT] = ACTIONS(97), - [anon_sym_AMP] = ACTIONS(714), - [anon_sym_PLUS] = ACTIONS(716), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_CARET] = ACTIONS(716), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), - [anon_sym_not] = ACTIONS(716), - [anon_sym_AT] = ACTIONS(718), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(402), + [anon_sym_DASH] = ACTIONS(402), + [anon_sym_BANG] = ACTIONS(402), + [anon_sym_CARET] = ACTIONS(402), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(402), + [anon_sym_not] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(404), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -94911,92 +95174,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(406), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(722), + [sym__before_unary_op] = ACTIONS(410), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(121), + [sym__quoted_atom_start] = ACTIONS(412), }, - [544] = { - [sym__expression] = STATE(2876), - [sym_block] = STATE(2876), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(2876), - [sym_nil] = STATE(2876), - [sym__atom] = STATE(2876), - [sym_quoted_atom] = STATE(2876), - [sym__quoted_i_double] = STATE(1551), - [sym__quoted_i_single] = STATE(1552), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(2876), - [sym_charlist] = STATE(2876), - [sym_sigil] = STATE(2876), - [sym_list] = STATE(2876), - [sym_tuple] = STATE(2876), - [sym_bitstring] = STATE(2876), - [sym_map] = STATE(2876), - [sym_unary_operator] = STATE(2876), - [sym_binary_operator] = STATE(2876), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(2876), - [sym_call] = STATE(2876), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(2876), - [sym_anonymous_function] = STATE(2876), + [541] = { + [sym__expression] = STATE(2313), + [sym_block] = STATE(2313), + [sym__identifier] = STATE(35), + [sym_identifier] = STATE(35), + [sym_special_identifier] = STATE(35), + [sym_boolean] = STATE(2313), + [sym_nil] = STATE(2313), + [sym__atom] = STATE(2313), + [sym_quoted_atom] = STATE(2313), + [sym__quoted_i_double] = STATE(2196), + [sym__quoted_i_single] = STATE(2197), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(2313), + [sym_charlist] = STATE(2313), + [sym_sigil] = STATE(2313), + [sym_list] = STATE(2313), + [sym_tuple] = STATE(2313), + [sym_bitstring] = STATE(2313), + [sym_map] = STATE(2313), + [sym_unary_operator] = STATE(2313), + [sym_binary_operator] = STATE(2313), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(2313), + [sym_call] = STATE(2313), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(2313), + [sym_anonymous_function] = STATE(2313), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1479), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(706), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(367), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), [sym_alias] = ACTIONS(1939), [sym_integer] = ACTIONS(1939), [sym_float] = ACTIONS(1939), [sym_char] = ACTIONS(1939), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), [sym_atom] = ACTIONS(1939), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(712), - [anon_sym_LT_LT] = ACTIONS(95), - [anon_sym_PERCENT] = ACTIONS(97), - [anon_sym_AMP] = ACTIONS(714), - [anon_sym_PLUS] = ACTIONS(716), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_CARET] = ACTIONS(716), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), - [anon_sym_not] = ACTIONS(716), - [anon_sym_AT] = ACTIONS(718), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(402), + [anon_sym_DASH] = ACTIONS(402), + [anon_sym_BANG] = ACTIONS(402), + [anon_sym_CARET] = ACTIONS(402), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(402), + [anon_sym_not] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(404), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -95036,92 +95299,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(406), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(722), + [sym__before_unary_op] = ACTIONS(410), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(121), + [sym__quoted_atom_start] = ACTIONS(412), }, - [545] = { - [sym__expression] = STATE(2877), - [sym_block] = STATE(2877), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(2877), - [sym_nil] = STATE(2877), - [sym__atom] = STATE(2877), - [sym_quoted_atom] = STATE(2877), - [sym__quoted_i_double] = STATE(1551), - [sym__quoted_i_single] = STATE(1552), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(2877), - [sym_charlist] = STATE(2877), - [sym_sigil] = STATE(2877), - [sym_list] = STATE(2877), - [sym_tuple] = STATE(2877), - [sym_bitstring] = STATE(2877), - [sym_map] = STATE(2877), - [sym_unary_operator] = STATE(2877), - [sym_binary_operator] = STATE(2877), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(2877), - [sym_call] = STATE(2877), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(2877), - [sym_anonymous_function] = STATE(2877), + [542] = { + [sym__expression] = STATE(2090), + [sym_block] = STATE(2090), + [sym__identifier] = STATE(35), + [sym_identifier] = STATE(35), + [sym_special_identifier] = STATE(35), + [sym_boolean] = STATE(2090), + [sym_nil] = STATE(2090), + [sym__atom] = STATE(2090), + [sym_quoted_atom] = STATE(2090), + [sym__quoted_i_double] = STATE(2196), + [sym__quoted_i_single] = STATE(2197), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(2090), + [sym_charlist] = STATE(2090), + [sym_sigil] = STATE(2090), + [sym_list] = STATE(2090), + [sym_tuple] = STATE(2090), + [sym_bitstring] = STATE(2090), + [sym_map] = STATE(2090), + [sym_unary_operator] = STATE(2090), + [sym_binary_operator] = STATE(2090), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(2090), + [sym_call] = STATE(2090), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(2090), + [sym_anonymous_function] = STATE(2090), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1479), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(706), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(367), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), [sym_alias] = ACTIONS(1941), [sym_integer] = ACTIONS(1941), [sym_float] = ACTIONS(1941), [sym_char] = ACTIONS(1941), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), [sym_atom] = ACTIONS(1941), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(712), - [anon_sym_LT_LT] = ACTIONS(95), - [anon_sym_PERCENT] = ACTIONS(97), - [anon_sym_AMP] = ACTIONS(714), - [anon_sym_PLUS] = ACTIONS(716), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_CARET] = ACTIONS(716), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), - [anon_sym_not] = ACTIONS(716), - [anon_sym_AT] = ACTIONS(718), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(402), + [anon_sym_DASH] = ACTIONS(402), + [anon_sym_BANG] = ACTIONS(402), + [anon_sym_CARET] = ACTIONS(402), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(402), + [anon_sym_not] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(404), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -95161,92 +95424,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(406), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(722), + [sym__before_unary_op] = ACTIONS(410), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(121), + [sym__quoted_atom_start] = ACTIONS(412), }, - [546] = { - [sym__expression] = STATE(2878), - [sym_block] = STATE(2878), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(2878), - [sym_nil] = STATE(2878), - [sym__atom] = STATE(2878), - [sym_quoted_atom] = STATE(2878), - [sym__quoted_i_double] = STATE(1551), - [sym__quoted_i_single] = STATE(1552), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(2878), - [sym_charlist] = STATE(2878), - [sym_sigil] = STATE(2878), - [sym_list] = STATE(2878), - [sym_tuple] = STATE(2878), - [sym_bitstring] = STATE(2878), - [sym_map] = STATE(2878), - [sym_unary_operator] = STATE(2878), - [sym_binary_operator] = STATE(2878), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(2878), - [sym_call] = STATE(2878), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(2878), - [sym_anonymous_function] = STATE(2878), + [543] = { + [sym__expression] = STATE(3258), + [sym_block] = STATE(3258), + [sym__identifier] = STATE(61), + [sym_identifier] = STATE(61), + [sym_special_identifier] = STATE(61), + [sym_boolean] = STATE(3258), + [sym_nil] = STATE(3258), + [sym__atom] = STATE(3258), + [sym_quoted_atom] = STATE(3258), + [sym__quoted_i_double] = STATE(3318), + [sym__quoted_i_single] = STATE(3317), + [sym__quoted_i_heredoc_single] = STATE(3316), + [sym__quoted_i_heredoc_double] = STATE(3315), + [sym_string] = STATE(3258), + [sym_charlist] = STATE(3258), + [sym_sigil] = STATE(3258), + [sym_list] = STATE(3258), + [sym_tuple] = STATE(3258), + [sym_bitstring] = STATE(3258), + [sym_map] = STATE(3258), + [sym_unary_operator] = STATE(3258), + [sym_binary_operator] = STATE(3258), + [sym_operator_identifier] = STATE(5628), + [sym_dot] = STATE(3258), + [sym_call] = STATE(3258), + [sym__call_without_parentheses] = STATE(3314), + [sym__call_with_parentheses] = STATE(3313), + [sym__local_call_without_parentheses] = STATE(3312), + [sym__local_call_with_parentheses] = STATE(2420), + [sym__local_call_just_do_block] = STATE(3311), + [sym__remote_call_without_parentheses] = STATE(3310), + [sym__remote_call_with_parentheses] = STATE(2423), + [sym__remote_dot] = STATE(60), + [sym__anonymous_call] = STATE(2425), + [sym__anonymous_dot] = STATE(5498), + [sym__double_call] = STATE(3309), + [sym_access_call] = STATE(3258), + [sym_anonymous_function] = STATE(3258), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1479), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(706), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), [sym_alias] = ACTIONS(1943), [sym_integer] = ACTIONS(1943), [sym_float] = ACTIONS(1943), [sym_char] = ACTIONS(1943), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), [sym_atom] = ACTIONS(1943), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(712), - [anon_sym_LT_LT] = ACTIONS(95), - [anon_sym_PERCENT] = ACTIONS(97), - [anon_sym_AMP] = ACTIONS(714), - [anon_sym_PLUS] = ACTIONS(716), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_CARET] = ACTIONS(716), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), - [anon_sym_not] = ACTIONS(716), - [anon_sym_AT] = ACTIONS(718), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(643), + [anon_sym_not] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -95286,92 +95549,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(649), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(722), + [sym__before_unary_op] = ACTIONS(655), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(121), + [sym__quoted_atom_start] = ACTIONS(657), }, - [547] = { - [sym__expression] = STATE(2883), - [sym_block] = STATE(2883), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(2883), - [sym_nil] = STATE(2883), - [sym__atom] = STATE(2883), - [sym_quoted_atom] = STATE(2883), - [sym__quoted_i_double] = STATE(1551), - [sym__quoted_i_single] = STATE(1552), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(2883), - [sym_charlist] = STATE(2883), - [sym_sigil] = STATE(2883), - [sym_list] = STATE(2883), - [sym_tuple] = STATE(2883), - [sym_bitstring] = STATE(2883), - [sym_map] = STATE(2883), - [sym_unary_operator] = STATE(2883), - [sym_binary_operator] = STATE(2883), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(2883), - [sym_call] = STATE(2883), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(2883), - [sym_anonymous_function] = STATE(2883), + [544] = { + [sym__expression] = STATE(3257), + [sym_block] = STATE(3257), + [sym__identifier] = STATE(61), + [sym_identifier] = STATE(61), + [sym_special_identifier] = STATE(61), + [sym_boolean] = STATE(3257), + [sym_nil] = STATE(3257), + [sym__atom] = STATE(3257), + [sym_quoted_atom] = STATE(3257), + [sym__quoted_i_double] = STATE(3318), + [sym__quoted_i_single] = STATE(3317), + [sym__quoted_i_heredoc_single] = STATE(3316), + [sym__quoted_i_heredoc_double] = STATE(3315), + [sym_string] = STATE(3257), + [sym_charlist] = STATE(3257), + [sym_sigil] = STATE(3257), + [sym_list] = STATE(3257), + [sym_tuple] = STATE(3257), + [sym_bitstring] = STATE(3257), + [sym_map] = STATE(3257), + [sym_unary_operator] = STATE(3257), + [sym_binary_operator] = STATE(3257), + [sym_operator_identifier] = STATE(5628), + [sym_dot] = STATE(3257), + [sym_call] = STATE(3257), + [sym__call_without_parentheses] = STATE(3314), + [sym__call_with_parentheses] = STATE(3313), + [sym__local_call_without_parentheses] = STATE(3312), + [sym__local_call_with_parentheses] = STATE(2420), + [sym__local_call_just_do_block] = STATE(3311), + [sym__remote_call_without_parentheses] = STATE(3310), + [sym__remote_call_with_parentheses] = STATE(2423), + [sym__remote_dot] = STATE(60), + [sym__anonymous_call] = STATE(2425), + [sym__anonymous_dot] = STATE(5498), + [sym__double_call] = STATE(3309), + [sym_access_call] = STATE(3257), + [sym_anonymous_function] = STATE(3257), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1479), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(706), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), [sym_alias] = ACTIONS(1945), [sym_integer] = ACTIONS(1945), [sym_float] = ACTIONS(1945), [sym_char] = ACTIONS(1945), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), [sym_atom] = ACTIONS(1945), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(712), - [anon_sym_LT_LT] = ACTIONS(95), - [anon_sym_PERCENT] = ACTIONS(97), - [anon_sym_AMP] = ACTIONS(714), - [anon_sym_PLUS] = ACTIONS(716), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_CARET] = ACTIONS(716), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), - [anon_sym_not] = ACTIONS(716), - [anon_sym_AT] = ACTIONS(718), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(643), + [anon_sym_not] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -95411,92 +95674,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(649), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(722), + [sym__before_unary_op] = ACTIONS(655), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(121), + [sym__quoted_atom_start] = ACTIONS(657), }, - [548] = { - [sym__expression] = STATE(2884), - [sym_block] = STATE(2884), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(2884), - [sym_nil] = STATE(2884), - [sym__atom] = STATE(2884), - [sym_quoted_atom] = STATE(2884), - [sym__quoted_i_double] = STATE(1551), - [sym__quoted_i_single] = STATE(1552), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(2884), - [sym_charlist] = STATE(2884), - [sym_sigil] = STATE(2884), - [sym_list] = STATE(2884), - [sym_tuple] = STATE(2884), - [sym_bitstring] = STATE(2884), - [sym_map] = STATE(2884), - [sym_unary_operator] = STATE(2884), - [sym_binary_operator] = STATE(2884), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(2884), - [sym_call] = STATE(2884), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(2884), - [sym_anonymous_function] = STATE(2884), + [545] = { + [sym__expression] = STATE(3858), + [sym_block] = STATE(3858), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3858), + [sym_nil] = STATE(3858), + [sym__atom] = STATE(3858), + [sym_quoted_atom] = STATE(3858), + [sym__quoted_i_double] = STATE(3664), + [sym__quoted_i_single] = STATE(3697), + [sym__quoted_i_heredoc_single] = STATE(3698), + [sym__quoted_i_heredoc_double] = STATE(3702), + [sym_string] = STATE(3858), + [sym_charlist] = STATE(3858), + [sym_sigil] = STATE(3858), + [sym_list] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_bitstring] = STATE(3858), + [sym_map] = STATE(3858), + [sym_unary_operator] = STATE(3858), + [sym_binary_operator] = STATE(3858), + [sym_operator_identifier] = STATE(5655), + [sym_dot] = STATE(3858), + [sym_call] = STATE(3858), + [sym__call_without_parentheses] = STATE(3705), + [sym__call_with_parentheses] = STATE(3725), + [sym__local_call_without_parentheses] = STATE(3765), + [sym__local_call_with_parentheses] = STATE(2681), + [sym__local_call_just_do_block] = STATE(3808), + [sym__remote_call_without_parentheses] = STATE(3810), + [sym__remote_call_with_parentheses] = STATE(2682), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2683), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(3811), + [sym_access_call] = STATE(3858), + [sym_anonymous_function] = STATE(3858), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1479), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(706), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), [sym_alias] = ACTIONS(1947), [sym_integer] = ACTIONS(1947), [sym_float] = ACTIONS(1947), [sym_char] = ACTIONS(1947), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), [sym_atom] = ACTIONS(1947), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(712), - [anon_sym_LT_LT] = ACTIONS(95), - [anon_sym_PERCENT] = ACTIONS(97), - [anon_sym_AMP] = ACTIONS(714), - [anon_sym_PLUS] = ACTIONS(716), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_CARET] = ACTIONS(716), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), - [anon_sym_not] = ACTIONS(716), - [anon_sym_AT] = ACTIONS(718), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -95536,571 +95799,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(53), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(722), + [sym__before_unary_op] = ACTIONS(55), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(121), + [sym__quoted_atom_start] = ACTIONS(59), }, - [549] = { - [sym__expression] = STATE(2885), - [sym_block] = STATE(2885), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(2885), - [sym_nil] = STATE(2885), - [sym__atom] = STATE(2885), - [sym_quoted_atom] = STATE(2885), - [sym__quoted_i_double] = STATE(1551), - [sym__quoted_i_single] = STATE(1552), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(2885), - [sym_charlist] = STATE(2885), - [sym_sigil] = STATE(2885), - [sym_list] = STATE(2885), - [sym_tuple] = STATE(2885), - [sym_bitstring] = STATE(2885), - [sym_map] = STATE(2885), - [sym_unary_operator] = STATE(2885), - [sym_binary_operator] = STATE(2885), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(2885), - [sym_call] = STATE(2885), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(2885), - [sym_anonymous_function] = STATE(2885), + [546] = { + [sym__expression] = STATE(3859), + [sym_block] = STATE(3859), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3859), + [sym_nil] = STATE(3859), + [sym__atom] = STATE(3859), + [sym_quoted_atom] = STATE(3859), + [sym__quoted_i_double] = STATE(3664), + [sym__quoted_i_single] = STATE(3697), + [sym__quoted_i_heredoc_single] = STATE(3698), + [sym__quoted_i_heredoc_double] = STATE(3702), + [sym_string] = STATE(3859), + [sym_charlist] = STATE(3859), + [sym_sigil] = STATE(3859), + [sym_list] = STATE(3859), + [sym_tuple] = STATE(3859), + [sym_bitstring] = STATE(3859), + [sym_map] = STATE(3859), + [sym_unary_operator] = STATE(3859), + [sym_binary_operator] = STATE(3859), + [sym_operator_identifier] = STATE(5655), + [sym_dot] = STATE(3859), + [sym_call] = STATE(3859), + [sym__call_without_parentheses] = STATE(3705), + [sym__call_with_parentheses] = STATE(3725), + [sym__local_call_without_parentheses] = STATE(3765), + [sym__local_call_with_parentheses] = STATE(2681), + [sym__local_call_just_do_block] = STATE(3808), + [sym__remote_call_without_parentheses] = STATE(3810), + [sym__remote_call_with_parentheses] = STATE(2682), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2683), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(3811), + [sym_access_call] = STATE(3859), + [sym_anonymous_function] = STATE(3859), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1479), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(706), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), [sym_alias] = ACTIONS(1949), [sym_integer] = ACTIONS(1949), [sym_float] = ACTIONS(1949), [sym_char] = ACTIONS(1949), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), [sym_atom] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(712), - [anon_sym_LT_LT] = ACTIONS(95), - [anon_sym_PERCENT] = ACTIONS(97), - [anon_sym_AMP] = ACTIONS(714), - [anon_sym_PLUS] = ACTIONS(716), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_CARET] = ACTIONS(716), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), - [anon_sym_not] = ACTIONS(716), - [anon_sym_AT] = ACTIONS(718), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(115), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(722), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(121), - }, - [550] = { - [sym__expression] = STATE(2886), - [sym_block] = STATE(2886), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(2886), - [sym_nil] = STATE(2886), - [sym__atom] = STATE(2886), - [sym_quoted_atom] = STATE(2886), - [sym__quoted_i_double] = STATE(1551), - [sym__quoted_i_single] = STATE(1552), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(2886), - [sym_charlist] = STATE(2886), - [sym_sigil] = STATE(2886), - [sym_list] = STATE(2886), - [sym_tuple] = STATE(2886), - [sym_bitstring] = STATE(2886), - [sym_map] = STATE(2886), - [sym_unary_operator] = STATE(2886), - [sym_binary_operator] = STATE(2886), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(2886), - [sym_call] = STATE(2886), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(2886), - [sym_anonymous_function] = STATE(2886), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1479), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(706), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1951), - [sym_integer] = ACTIONS(1951), - [sym_float] = ACTIONS(1951), - [sym_char] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(1951), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(712), - [anon_sym_LT_LT] = ACTIONS(95), - [anon_sym_PERCENT] = ACTIONS(97), - [anon_sym_AMP] = ACTIONS(714), - [anon_sym_PLUS] = ACTIONS(716), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_CARET] = ACTIONS(716), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), - [anon_sym_not] = ACTIONS(716), - [anon_sym_AT] = ACTIONS(718), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(115), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(722), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(121), - }, - [551] = { - [sym__expression] = STATE(1897), - [sym_block] = STATE(1897), - [sym__identifier] = STATE(68), - [sym_identifier] = STATE(68), - [sym_special_identifier] = STATE(68), - [sym_boolean] = STATE(1897), - [sym_nil] = STATE(1897), - [sym__atom] = STATE(1897), - [sym_quoted_atom] = STATE(1897), - [sym__quoted_i_double] = STATE(1866), - [sym__quoted_i_single] = STATE(1867), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(1897), - [sym_charlist] = STATE(1897), - [sym_sigil] = STATE(1897), - [sym_list] = STATE(1897), - [sym_tuple] = STATE(1897), - [sym_bitstring] = STATE(1897), - [sym_map] = STATE(1897), - [sym_unary_operator] = STATE(1897), - [sym_binary_operator] = STATE(1897), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(1897), - [sym_call] = STATE(1897), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(1897), - [sym_anonymous_function] = STATE(1897), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(662), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(1953), - [sym_integer] = ACTIONS(1953), - [sym_float] = ACTIONS(1953), - [sym_char] = ACTIONS(1953), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), - [sym_atom] = ACTIONS(1953), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(670), - [anon_sym_DASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(670), - [anon_sym_CARET] = ACTIONS(670), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(670), - [anon_sym_not] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(672), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(674), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), - }, - [552] = { - [sym__expression] = STATE(2374), - [sym_block] = STATE(2374), - [sym__identifier] = STATE(60), - [sym_identifier] = STATE(60), - [sym_special_identifier] = STATE(60), - [sym_boolean] = STATE(2374), - [sym_nil] = STATE(2374), - [sym__atom] = STATE(2374), - [sym_quoted_atom] = STATE(2374), - [sym__quoted_i_double] = STATE(2414), - [sym__quoted_i_single] = STATE(2413), - [sym__quoted_i_heredoc_single] = STATE(2413), - [sym__quoted_i_heredoc_double] = STATE(2414), - [sym_string] = STATE(2374), - [sym_charlist] = STATE(2374), - [sym_sigil] = STATE(2374), - [sym_list] = STATE(2374), - [sym_tuple] = STATE(2374), - [sym_bitstring] = STATE(2374), - [sym_map] = STATE(2374), - [sym_unary_operator] = STATE(2374), - [sym_binary_operator] = STATE(2374), - [sym_operator_identifier] = STATE(5028), - [sym_dot] = STATE(2374), - [sym_call] = STATE(2374), - [sym__call_without_parentheses] = STATE(2412), - [sym__call_with_parentheses] = STATE(2411), - [sym__local_call_without_parentheses] = STATE(2410), - [sym__local_call_with_parentheses] = STATE(1910), - [sym__local_call_just_do_block] = STATE(2409), - [sym__remote_call_without_parentheses] = STATE(2408), - [sym__remote_call_with_parentheses] = STATE(1916), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(1975), - [sym__anonymous_dot] = STATE(4890), - [sym__double_call] = STATE(2407), - [sym_access_call] = STATE(2374), - [sym_anonymous_function] = STATE(2374), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(556), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(558), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(1955), - [sym_integer] = ACTIONS(1955), - [sym_float] = ACTIONS(1955), - [sym_char] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(562), - [anon_sym_false] = ACTIONS(562), - [anon_sym_nil] = ACTIONS(564), - [sym_atom] = ACTIONS(1955), - [anon_sym_DQUOTE] = ACTIONS(566), - [anon_sym_SQUOTE] = ACTIONS(568), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), - [anon_sym_LBRACE] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(578), - [anon_sym_LT_LT] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_CARET] = ACTIONS(588), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), - [anon_sym_not] = ACTIONS(588), - [anon_sym_AT] = ACTIONS(590), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(594), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(600), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(602), - }, - [553] = { - [sym__expression] = STATE(3228), - [sym_block] = STATE(3228), - [sym__identifier] = STATE(57), - [sym_identifier] = STATE(57), - [sym_special_identifier] = STATE(57), - [sym_boolean] = STATE(3228), - [sym_nil] = STATE(3228), - [sym__atom] = STATE(3228), - [sym_quoted_atom] = STATE(3228), - [sym__quoted_i_double] = STATE(3146), - [sym__quoted_i_single] = STATE(3147), - [sym__quoted_i_heredoc_single] = STATE(3147), - [sym__quoted_i_heredoc_double] = STATE(3146), - [sym_string] = STATE(3228), - [sym_charlist] = STATE(3228), - [sym_sigil] = STATE(3228), - [sym_list] = STATE(3228), - [sym_tuple] = STATE(3228), - [sym_bitstring] = STATE(3228), - [sym_map] = STATE(3228), - [sym_unary_operator] = STATE(3228), - [sym_binary_operator] = STATE(3228), - [sym_operator_identifier] = STATE(5049), - [sym_dot] = STATE(3228), - [sym_call] = STATE(3228), - [sym__call_without_parentheses] = STATE(3175), - [sym__call_with_parentheses] = STATE(3177), - [sym__local_call_without_parentheses] = STATE(3178), - [sym__local_call_with_parentheses] = STATE(2550), - [sym__local_call_just_do_block] = STATE(3183), - [sym__remote_call_without_parentheses] = STATE(3200), - [sym__remote_call_with_parentheses] = STATE(2583), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(2582), - [sym__anonymous_dot] = STATE(4866), - [sym__double_call] = STATE(3202), - [sym_access_call] = STATE(3228), - [sym_anonymous_function] = STATE(3228), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(15), - [sym_unused_identifier] = ACTIONS(17), - [anon_sym___MODULE__] = ACTIONS(19), - [anon_sym___DIR__] = ACTIONS(19), - [anon_sym___ENV__] = ACTIONS(19), - [anon_sym___CALLER__] = ACTIONS(19), - [anon_sym___STACKTRACE__] = ACTIONS(19), - [sym_alias] = ACTIONS(1957), - [sym_integer] = ACTIONS(1957), - [sym_float] = ACTIONS(1957), - [sym_char] = ACTIONS(1957), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_nil] = ACTIONS(25), - [sym_atom] = ACTIONS(1957), [anon_sym_DQUOTE] = ACTIONS(27), [anon_sym_SQUOTE] = ACTIONS(29), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), @@ -96110,7 +95873,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_SLASH] = ACTIONS(39), [anon_sym_TILDE] = ACTIONS(41), [anon_sym_LT_LT] = ACTIONS(43), [anon_sym_PERCENT] = ACTIONS(45), @@ -96169,7545 +95932,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(59), }, - [554] = { - [sym__expression] = STATE(1928), - [sym_block] = STATE(1928), - [sym__identifier] = STATE(68), - [sym_identifier] = STATE(68), - [sym_special_identifier] = STATE(68), - [sym_boolean] = STATE(1928), - [sym_nil] = STATE(1928), - [sym__atom] = STATE(1928), - [sym_quoted_atom] = STATE(1928), - [sym__quoted_i_double] = STATE(1866), - [sym__quoted_i_single] = STATE(1867), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(1928), - [sym_charlist] = STATE(1928), - [sym_sigil] = STATE(1928), - [sym_list] = STATE(1928), - [sym_tuple] = STATE(1928), - [sym_bitstring] = STATE(1928), - [sym_map] = STATE(1928), - [sym_unary_operator] = STATE(1928), - [sym_binary_operator] = STATE(1928), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(1928), - [sym_call] = STATE(1928), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(1928), - [sym_anonymous_function] = STATE(1928), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(662), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(1959), - [sym_integer] = ACTIONS(1959), - [sym_float] = ACTIONS(1959), - [sym_char] = ACTIONS(1959), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), - [sym_atom] = ACTIONS(1959), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(670), - [anon_sym_DASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(670), - [anon_sym_CARET] = ACTIONS(670), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(670), - [anon_sym_not] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(672), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(674), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), - }, - [555] = { - [sym__expression] = STATE(2488), - [sym_block] = STATE(2488), - [sym__identifier] = STATE(60), - [sym_identifier] = STATE(60), - [sym_special_identifier] = STATE(60), - [sym_boolean] = STATE(2488), - [sym_nil] = STATE(2488), - [sym__atom] = STATE(2488), - [sym_quoted_atom] = STATE(2488), - [sym__quoted_i_double] = STATE(2414), - [sym__quoted_i_single] = STATE(2413), - [sym__quoted_i_heredoc_single] = STATE(2413), - [sym__quoted_i_heredoc_double] = STATE(2414), - [sym_string] = STATE(2488), - [sym_charlist] = STATE(2488), - [sym_sigil] = STATE(2488), - [sym_list] = STATE(2488), - [sym_tuple] = STATE(2488), - [sym_bitstring] = STATE(2488), - [sym_map] = STATE(2488), - [sym_unary_operator] = STATE(2488), - [sym_binary_operator] = STATE(2488), - [sym_operator_identifier] = STATE(5028), - [sym_dot] = STATE(2488), - [sym_call] = STATE(2488), - [sym__call_without_parentheses] = STATE(2412), - [sym__call_with_parentheses] = STATE(2411), - [sym__local_call_without_parentheses] = STATE(2410), - [sym__local_call_with_parentheses] = STATE(1910), - [sym__local_call_just_do_block] = STATE(2409), - [sym__remote_call_without_parentheses] = STATE(2408), - [sym__remote_call_with_parentheses] = STATE(1916), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(1975), - [sym__anonymous_dot] = STATE(4890), - [sym__double_call] = STATE(2407), - [sym_access_call] = STATE(2488), - [sym_anonymous_function] = STATE(2488), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(556), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(558), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(1961), - [sym_integer] = ACTIONS(1961), - [sym_float] = ACTIONS(1961), - [sym_char] = ACTIONS(1961), - [anon_sym_true] = ACTIONS(562), - [anon_sym_false] = ACTIONS(562), - [anon_sym_nil] = ACTIONS(564), - [sym_atom] = ACTIONS(1961), - [anon_sym_DQUOTE] = ACTIONS(566), - [anon_sym_SQUOTE] = ACTIONS(568), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), - [anon_sym_LBRACE] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(578), - [anon_sym_LT_LT] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_CARET] = ACTIONS(588), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), - [anon_sym_not] = ACTIONS(588), - [anon_sym_AT] = ACTIONS(590), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(594), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(600), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(602), - }, - [556] = { - [sym__expression] = STATE(3334), - [sym_block] = STATE(3334), - [sym__identifier] = STATE(64), - [sym_identifier] = STATE(64), - [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3334), - [sym_nil] = STATE(3334), - [sym__atom] = STATE(3334), - [sym_quoted_atom] = STATE(3334), - [sym__quoted_i_double] = STATE(3395), - [sym__quoted_i_single] = STATE(3394), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3334), - [sym_charlist] = STATE(3334), - [sym_sigil] = STATE(3334), - [sym_list] = STATE(3334), - [sym_tuple] = STATE(3334), - [sym_bitstring] = STATE(3334), - [sym_map] = STATE(3334), - [sym_unary_operator] = STATE(3334), - [sym_binary_operator] = STATE(3334), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3334), - [sym_call] = STATE(3334), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), - [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3334), - [sym_anonymous_function] = STATE(3334), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1361), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(828), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1963), - [sym_integer] = ACTIONS(1963), - [sym_float] = ACTIONS(1963), - [sym_char] = ACTIONS(1963), - [anon_sym_true] = ACTIONS(834), - [anon_sym_false] = ACTIONS(834), - [anon_sym_nil] = ACTIONS(836), - [sym_atom] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(838), - [anon_sym_SQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(850), - [anon_sym_LT_LT] = ACTIONS(852), - [anon_sym_PERCENT] = ACTIONS(854), - [anon_sym_AMP] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_BANG] = ACTIONS(858), - [anon_sym_CARET] = ACTIONS(858), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), - [anon_sym_not] = ACTIONS(858), - [anon_sym_AT] = ACTIONS(860), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(864), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(866), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(868), - }, - [557] = { - [sym__expression] = STATE(3333), - [sym_block] = STATE(3333), - [sym__identifier] = STATE(64), - [sym_identifier] = STATE(64), - [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3333), - [sym_nil] = STATE(3333), - [sym__atom] = STATE(3333), - [sym_quoted_atom] = STATE(3333), - [sym__quoted_i_double] = STATE(3395), - [sym__quoted_i_single] = STATE(3394), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3333), - [sym_charlist] = STATE(3333), - [sym_sigil] = STATE(3333), - [sym_list] = STATE(3333), - [sym_tuple] = STATE(3333), - [sym_bitstring] = STATE(3333), - [sym_map] = STATE(3333), - [sym_unary_operator] = STATE(3333), - [sym_binary_operator] = STATE(3333), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3333), - [sym_call] = STATE(3333), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), - [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3333), - [sym_anonymous_function] = STATE(3333), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1361), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(828), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1965), - [sym_integer] = ACTIONS(1965), - [sym_float] = ACTIONS(1965), - [sym_char] = ACTIONS(1965), - [anon_sym_true] = ACTIONS(834), - [anon_sym_false] = ACTIONS(834), - [anon_sym_nil] = ACTIONS(836), - [sym_atom] = ACTIONS(1965), - [anon_sym_DQUOTE] = ACTIONS(838), - [anon_sym_SQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(850), - [anon_sym_LT_LT] = ACTIONS(852), - [anon_sym_PERCENT] = ACTIONS(854), - [anon_sym_AMP] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_BANG] = ACTIONS(858), - [anon_sym_CARET] = ACTIONS(858), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), - [anon_sym_not] = ACTIONS(858), - [anon_sym_AT] = ACTIONS(860), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(864), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(866), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(868), - }, - [558] = { - [sym__expression] = STATE(3332), - [sym_block] = STATE(3332), - [sym__identifier] = STATE(64), - [sym_identifier] = STATE(64), - [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3332), - [sym_nil] = STATE(3332), - [sym__atom] = STATE(3332), - [sym_quoted_atom] = STATE(3332), - [sym__quoted_i_double] = STATE(3395), - [sym__quoted_i_single] = STATE(3394), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3332), - [sym_charlist] = STATE(3332), - [sym_sigil] = STATE(3332), - [sym_list] = STATE(3332), - [sym_tuple] = STATE(3332), - [sym_bitstring] = STATE(3332), - [sym_map] = STATE(3332), - [sym_unary_operator] = STATE(3332), - [sym_binary_operator] = STATE(3332), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3332), - [sym_call] = STATE(3332), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), - [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3332), - [sym_anonymous_function] = STATE(3332), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1361), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(828), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1967), - [sym_integer] = ACTIONS(1967), - [sym_float] = ACTIONS(1967), - [sym_char] = ACTIONS(1967), - [anon_sym_true] = ACTIONS(834), - [anon_sym_false] = ACTIONS(834), - [anon_sym_nil] = ACTIONS(836), - [sym_atom] = ACTIONS(1967), - [anon_sym_DQUOTE] = ACTIONS(838), - [anon_sym_SQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(850), - [anon_sym_LT_LT] = ACTIONS(852), - [anon_sym_PERCENT] = ACTIONS(854), - [anon_sym_AMP] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_BANG] = ACTIONS(858), - [anon_sym_CARET] = ACTIONS(858), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), - [anon_sym_not] = ACTIONS(858), - [anon_sym_AT] = ACTIONS(860), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(864), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(866), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(868), - }, - [559] = { - [sym__expression] = STATE(3331), - [sym_block] = STATE(3331), - [sym__identifier] = STATE(64), - [sym_identifier] = STATE(64), - [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3331), - [sym_nil] = STATE(3331), - [sym__atom] = STATE(3331), - [sym_quoted_atom] = STATE(3331), - [sym__quoted_i_double] = STATE(3395), - [sym__quoted_i_single] = STATE(3394), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3331), - [sym_charlist] = STATE(3331), - [sym_sigil] = STATE(3331), - [sym_list] = STATE(3331), - [sym_tuple] = STATE(3331), - [sym_bitstring] = STATE(3331), - [sym_map] = STATE(3331), - [sym_unary_operator] = STATE(3331), - [sym_binary_operator] = STATE(3331), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3331), - [sym_call] = STATE(3331), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), - [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3331), - [sym_anonymous_function] = STATE(3331), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1361), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(828), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1969), - [sym_integer] = ACTIONS(1969), - [sym_float] = ACTIONS(1969), - [sym_char] = ACTIONS(1969), - [anon_sym_true] = ACTIONS(834), - [anon_sym_false] = ACTIONS(834), - [anon_sym_nil] = ACTIONS(836), - [sym_atom] = ACTIONS(1969), - [anon_sym_DQUOTE] = ACTIONS(838), - [anon_sym_SQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(850), - [anon_sym_LT_LT] = ACTIONS(852), - [anon_sym_PERCENT] = ACTIONS(854), - [anon_sym_AMP] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_BANG] = ACTIONS(858), - [anon_sym_CARET] = ACTIONS(858), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), - [anon_sym_not] = ACTIONS(858), - [anon_sym_AT] = ACTIONS(860), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(864), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(866), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(868), - }, - [560] = { - [sym__expression] = STATE(2487), - [sym_block] = STATE(2487), - [sym__identifier] = STATE(60), - [sym_identifier] = STATE(60), - [sym_special_identifier] = STATE(60), - [sym_boolean] = STATE(2487), - [sym_nil] = STATE(2487), - [sym__atom] = STATE(2487), - [sym_quoted_atom] = STATE(2487), - [sym__quoted_i_double] = STATE(2414), - [sym__quoted_i_single] = STATE(2413), - [sym__quoted_i_heredoc_single] = STATE(2413), - [sym__quoted_i_heredoc_double] = STATE(2414), - [sym_string] = STATE(2487), - [sym_charlist] = STATE(2487), - [sym_sigil] = STATE(2487), - [sym_list] = STATE(2487), - [sym_tuple] = STATE(2487), - [sym_bitstring] = STATE(2487), - [sym_map] = STATE(2487), - [sym_unary_operator] = STATE(2487), - [sym_binary_operator] = STATE(2487), - [sym_operator_identifier] = STATE(5028), - [sym_dot] = STATE(2487), - [sym_call] = STATE(2487), - [sym__call_without_parentheses] = STATE(2412), - [sym__call_with_parentheses] = STATE(2411), - [sym__local_call_without_parentheses] = STATE(2410), - [sym__local_call_with_parentheses] = STATE(1910), - [sym__local_call_just_do_block] = STATE(2409), - [sym__remote_call_without_parentheses] = STATE(2408), - [sym__remote_call_with_parentheses] = STATE(1916), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(1975), - [sym__anonymous_dot] = STATE(4890), - [sym__double_call] = STATE(2407), - [sym_access_call] = STATE(2487), - [sym_anonymous_function] = STATE(2487), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(556), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(558), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(1971), - [sym_integer] = ACTIONS(1971), - [sym_float] = ACTIONS(1971), - [sym_char] = ACTIONS(1971), - [anon_sym_true] = ACTIONS(562), - [anon_sym_false] = ACTIONS(562), - [anon_sym_nil] = ACTIONS(564), - [sym_atom] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(566), - [anon_sym_SQUOTE] = ACTIONS(568), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), - [anon_sym_LBRACE] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(578), - [anon_sym_LT_LT] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_CARET] = ACTIONS(588), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), - [anon_sym_not] = ACTIONS(588), - [anon_sym_AT] = ACTIONS(590), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(594), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(600), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(602), - }, - [561] = { - [sym__expression] = STATE(3330), - [sym_block] = STATE(3330), - [sym__identifier] = STATE(64), - [sym_identifier] = STATE(64), - [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3330), - [sym_nil] = STATE(3330), - [sym__atom] = STATE(3330), - [sym_quoted_atom] = STATE(3330), - [sym__quoted_i_double] = STATE(3395), - [sym__quoted_i_single] = STATE(3394), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3330), - [sym_charlist] = STATE(3330), - [sym_sigil] = STATE(3330), - [sym_list] = STATE(3330), - [sym_tuple] = STATE(3330), - [sym_bitstring] = STATE(3330), - [sym_map] = STATE(3330), - [sym_unary_operator] = STATE(3330), - [sym_binary_operator] = STATE(3330), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3330), - [sym_call] = STATE(3330), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), - [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3330), - [sym_anonymous_function] = STATE(3330), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1361), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(828), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1973), - [sym_integer] = ACTIONS(1973), - [sym_float] = ACTIONS(1973), - [sym_char] = ACTIONS(1973), - [anon_sym_true] = ACTIONS(834), - [anon_sym_false] = ACTIONS(834), - [anon_sym_nil] = ACTIONS(836), - [sym_atom] = ACTIONS(1973), - [anon_sym_DQUOTE] = ACTIONS(838), - [anon_sym_SQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(850), - [anon_sym_LT_LT] = ACTIONS(852), - [anon_sym_PERCENT] = ACTIONS(854), - [anon_sym_AMP] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_BANG] = ACTIONS(858), - [anon_sym_CARET] = ACTIONS(858), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), - [anon_sym_not] = ACTIONS(858), - [anon_sym_AT] = ACTIONS(860), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(864), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(866), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(868), - }, - [562] = { - [sym__expression] = STATE(2486), - [sym_block] = STATE(2486), - [sym__identifier] = STATE(60), - [sym_identifier] = STATE(60), - [sym_special_identifier] = STATE(60), - [sym_boolean] = STATE(2486), - [sym_nil] = STATE(2486), - [sym__atom] = STATE(2486), - [sym_quoted_atom] = STATE(2486), - [sym__quoted_i_double] = STATE(2414), - [sym__quoted_i_single] = STATE(2413), - [sym__quoted_i_heredoc_single] = STATE(2413), - [sym__quoted_i_heredoc_double] = STATE(2414), - [sym_string] = STATE(2486), - [sym_charlist] = STATE(2486), - [sym_sigil] = STATE(2486), - [sym_list] = STATE(2486), - [sym_tuple] = STATE(2486), - [sym_bitstring] = STATE(2486), - [sym_map] = STATE(2486), - [sym_unary_operator] = STATE(2486), - [sym_binary_operator] = STATE(2486), - [sym_operator_identifier] = STATE(5028), - [sym_dot] = STATE(2486), - [sym_call] = STATE(2486), - [sym__call_without_parentheses] = STATE(2412), - [sym__call_with_parentheses] = STATE(2411), - [sym__local_call_without_parentheses] = STATE(2410), - [sym__local_call_with_parentheses] = STATE(1910), - [sym__local_call_just_do_block] = STATE(2409), - [sym__remote_call_without_parentheses] = STATE(2408), - [sym__remote_call_with_parentheses] = STATE(1916), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(1975), - [sym__anonymous_dot] = STATE(4890), - [sym__double_call] = STATE(2407), - [sym_access_call] = STATE(2486), - [sym_anonymous_function] = STATE(2486), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(556), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(558), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(1975), - [sym_integer] = ACTIONS(1975), - [sym_float] = ACTIONS(1975), - [sym_char] = ACTIONS(1975), - [anon_sym_true] = ACTIONS(562), - [anon_sym_false] = ACTIONS(562), - [anon_sym_nil] = ACTIONS(564), - [sym_atom] = ACTIONS(1975), - [anon_sym_DQUOTE] = ACTIONS(566), - [anon_sym_SQUOTE] = ACTIONS(568), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), - [anon_sym_LBRACE] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(578), - [anon_sym_LT_LT] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_CARET] = ACTIONS(588), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), - [anon_sym_not] = ACTIONS(588), - [anon_sym_AT] = ACTIONS(590), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(594), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(600), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(602), - }, - [563] = { - [sym__expression] = STATE(3327), - [sym_block] = STATE(3327), - [sym__identifier] = STATE(64), - [sym_identifier] = STATE(64), - [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3327), - [sym_nil] = STATE(3327), - [sym__atom] = STATE(3327), - [sym_quoted_atom] = STATE(3327), - [sym__quoted_i_double] = STATE(3395), - [sym__quoted_i_single] = STATE(3394), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3327), - [sym_charlist] = STATE(3327), - [sym_sigil] = STATE(3327), - [sym_list] = STATE(3327), - [sym_tuple] = STATE(3327), - [sym_bitstring] = STATE(3327), - [sym_map] = STATE(3327), - [sym_unary_operator] = STATE(3327), - [sym_binary_operator] = STATE(3327), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3327), - [sym_call] = STATE(3327), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), - [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3327), - [sym_anonymous_function] = STATE(3327), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1361), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(828), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1977), - [sym_integer] = ACTIONS(1977), - [sym_float] = ACTIONS(1977), - [sym_char] = ACTIONS(1977), - [anon_sym_true] = ACTIONS(834), - [anon_sym_false] = ACTIONS(834), - [anon_sym_nil] = ACTIONS(836), - [sym_atom] = ACTIONS(1977), - [anon_sym_DQUOTE] = ACTIONS(838), - [anon_sym_SQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(850), - [anon_sym_LT_LT] = ACTIONS(852), - [anon_sym_PERCENT] = ACTIONS(854), - [anon_sym_AMP] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_BANG] = ACTIONS(858), - [anon_sym_CARET] = ACTIONS(858), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), - [anon_sym_not] = ACTIONS(858), - [anon_sym_AT] = ACTIONS(860), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(864), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(866), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(868), - }, - [564] = { - [sym__expression] = STATE(3326), - [sym_block] = STATE(3326), - [sym__identifier] = STATE(64), - [sym_identifier] = STATE(64), - [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3326), - [sym_nil] = STATE(3326), - [sym__atom] = STATE(3326), - [sym_quoted_atom] = STATE(3326), - [sym__quoted_i_double] = STATE(3395), - [sym__quoted_i_single] = STATE(3394), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3326), - [sym_charlist] = STATE(3326), - [sym_sigil] = STATE(3326), - [sym_list] = STATE(3326), - [sym_tuple] = STATE(3326), - [sym_bitstring] = STATE(3326), - [sym_map] = STATE(3326), - [sym_unary_operator] = STATE(3326), - [sym_binary_operator] = STATE(3326), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3326), - [sym_call] = STATE(3326), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), - [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3326), - [sym_anonymous_function] = STATE(3326), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1361), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(828), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(1979), - [sym_integer] = ACTIONS(1979), - [sym_float] = ACTIONS(1979), - [sym_char] = ACTIONS(1979), - [anon_sym_true] = ACTIONS(834), - [anon_sym_false] = ACTIONS(834), - [anon_sym_nil] = ACTIONS(836), - [sym_atom] = ACTIONS(1979), - [anon_sym_DQUOTE] = ACTIONS(838), - [anon_sym_SQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(850), - [anon_sym_LT_LT] = ACTIONS(852), - [anon_sym_PERCENT] = ACTIONS(854), - [anon_sym_AMP] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_BANG] = ACTIONS(858), - [anon_sym_CARET] = ACTIONS(858), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), - [anon_sym_not] = ACTIONS(858), - [anon_sym_AT] = ACTIONS(860), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(864), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(866), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(868), - }, - [565] = { - [sym__expression] = STATE(2485), - [sym_block] = STATE(2485), - [sym__identifier] = STATE(60), - [sym_identifier] = STATE(60), - [sym_special_identifier] = STATE(60), - [sym_boolean] = STATE(2485), - [sym_nil] = STATE(2485), - [sym__atom] = STATE(2485), - [sym_quoted_atom] = STATE(2485), - [sym__quoted_i_double] = STATE(2414), - [sym__quoted_i_single] = STATE(2413), - [sym__quoted_i_heredoc_single] = STATE(2413), - [sym__quoted_i_heredoc_double] = STATE(2414), - [sym_string] = STATE(2485), - [sym_charlist] = STATE(2485), - [sym_sigil] = STATE(2485), - [sym_list] = STATE(2485), - [sym_tuple] = STATE(2485), - [sym_bitstring] = STATE(2485), - [sym_map] = STATE(2485), - [sym_unary_operator] = STATE(2485), - [sym_binary_operator] = STATE(2485), - [sym_operator_identifier] = STATE(5028), - [sym_dot] = STATE(2485), - [sym_call] = STATE(2485), - [sym__call_without_parentheses] = STATE(2412), - [sym__call_with_parentheses] = STATE(2411), - [sym__local_call_without_parentheses] = STATE(2410), - [sym__local_call_with_parentheses] = STATE(1910), - [sym__local_call_just_do_block] = STATE(2409), - [sym__remote_call_without_parentheses] = STATE(2408), - [sym__remote_call_with_parentheses] = STATE(1916), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(1975), - [sym__anonymous_dot] = STATE(4890), - [sym__double_call] = STATE(2407), - [sym_access_call] = STATE(2485), - [sym_anonymous_function] = STATE(2485), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(556), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(558), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(1981), - [sym_integer] = ACTIONS(1981), - [sym_float] = ACTIONS(1981), - [sym_char] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(562), - [anon_sym_false] = ACTIONS(562), - [anon_sym_nil] = ACTIONS(564), - [sym_atom] = ACTIONS(1981), - [anon_sym_DQUOTE] = ACTIONS(566), - [anon_sym_SQUOTE] = ACTIONS(568), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), - [anon_sym_LBRACE] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(578), - [anon_sym_LT_LT] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_CARET] = ACTIONS(588), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), - [anon_sym_not] = ACTIONS(588), - [anon_sym_AT] = ACTIONS(590), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(594), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(600), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(602), - }, - [566] = { - [sym__expression] = STATE(2484), - [sym_block] = STATE(2484), - [sym__identifier] = STATE(60), - [sym_identifier] = STATE(60), - [sym_special_identifier] = STATE(60), - [sym_boolean] = STATE(2484), - [sym_nil] = STATE(2484), - [sym__atom] = STATE(2484), - [sym_quoted_atom] = STATE(2484), - [sym__quoted_i_double] = STATE(2414), - [sym__quoted_i_single] = STATE(2413), - [sym__quoted_i_heredoc_single] = STATE(2413), - [sym__quoted_i_heredoc_double] = STATE(2414), - [sym_string] = STATE(2484), - [sym_charlist] = STATE(2484), - [sym_sigil] = STATE(2484), - [sym_list] = STATE(2484), - [sym_tuple] = STATE(2484), - [sym_bitstring] = STATE(2484), - [sym_map] = STATE(2484), - [sym_unary_operator] = STATE(2484), - [sym_binary_operator] = STATE(2484), - [sym_operator_identifier] = STATE(5028), - [sym_dot] = STATE(2484), - [sym_call] = STATE(2484), - [sym__call_without_parentheses] = STATE(2412), - [sym__call_with_parentheses] = STATE(2411), - [sym__local_call_without_parentheses] = STATE(2410), - [sym__local_call_with_parentheses] = STATE(1910), - [sym__local_call_just_do_block] = STATE(2409), - [sym__remote_call_without_parentheses] = STATE(2408), - [sym__remote_call_with_parentheses] = STATE(1916), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(1975), - [sym__anonymous_dot] = STATE(4890), - [sym__double_call] = STATE(2407), - [sym_access_call] = STATE(2484), - [sym_anonymous_function] = STATE(2484), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(556), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(558), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(1983), - [sym_integer] = ACTIONS(1983), - [sym_float] = ACTIONS(1983), - [sym_char] = ACTIONS(1983), - [anon_sym_true] = ACTIONS(562), - [anon_sym_false] = ACTIONS(562), - [anon_sym_nil] = ACTIONS(564), - [sym_atom] = ACTIONS(1983), - [anon_sym_DQUOTE] = ACTIONS(566), - [anon_sym_SQUOTE] = ACTIONS(568), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), - [anon_sym_LBRACE] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(578), - [anon_sym_LT_LT] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_CARET] = ACTIONS(588), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), - [anon_sym_not] = ACTIONS(588), - [anon_sym_AT] = ACTIONS(590), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(594), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(600), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(602), - }, - [567] = { - [sym__expression] = STATE(1929), - [sym_block] = STATE(1929), - [sym__identifier] = STATE(68), - [sym_identifier] = STATE(68), - [sym_special_identifier] = STATE(68), - [sym_boolean] = STATE(1929), - [sym_nil] = STATE(1929), - [sym__atom] = STATE(1929), - [sym_quoted_atom] = STATE(1929), - [sym__quoted_i_double] = STATE(1866), - [sym__quoted_i_single] = STATE(1867), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(1929), - [sym_charlist] = STATE(1929), - [sym_sigil] = STATE(1929), - [sym_list] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_bitstring] = STATE(1929), - [sym_map] = STATE(1929), - [sym_unary_operator] = STATE(1929), - [sym_binary_operator] = STATE(1929), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(1929), - [sym_call] = STATE(1929), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(1929), - [sym_anonymous_function] = STATE(1929), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(662), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(1985), - [sym_integer] = ACTIONS(1985), - [sym_float] = ACTIONS(1985), - [sym_char] = ACTIONS(1985), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), - [sym_atom] = ACTIONS(1985), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(670), - [anon_sym_DASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(670), - [anon_sym_CARET] = ACTIONS(670), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(670), - [anon_sym_not] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(672), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(674), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), - }, - [568] = { - [sym__expression] = STATE(2482), - [sym_block] = STATE(2482), - [sym__identifier] = STATE(60), - [sym_identifier] = STATE(60), - [sym_special_identifier] = STATE(60), - [sym_boolean] = STATE(2482), - [sym_nil] = STATE(2482), - [sym__atom] = STATE(2482), - [sym_quoted_atom] = STATE(2482), - [sym__quoted_i_double] = STATE(2414), - [sym__quoted_i_single] = STATE(2413), - [sym__quoted_i_heredoc_single] = STATE(2413), - [sym__quoted_i_heredoc_double] = STATE(2414), - [sym_string] = STATE(2482), - [sym_charlist] = STATE(2482), - [sym_sigil] = STATE(2482), - [sym_list] = STATE(2482), - [sym_tuple] = STATE(2482), - [sym_bitstring] = STATE(2482), - [sym_map] = STATE(2482), - [sym_unary_operator] = STATE(2482), - [sym_binary_operator] = STATE(2482), - [sym_operator_identifier] = STATE(5028), - [sym_dot] = STATE(2482), - [sym_call] = STATE(2482), - [sym__call_without_parentheses] = STATE(2412), - [sym__call_with_parentheses] = STATE(2411), - [sym__local_call_without_parentheses] = STATE(2410), - [sym__local_call_with_parentheses] = STATE(1910), - [sym__local_call_just_do_block] = STATE(2409), - [sym__remote_call_without_parentheses] = STATE(2408), - [sym__remote_call_with_parentheses] = STATE(1916), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(1975), - [sym__anonymous_dot] = STATE(4890), - [sym__double_call] = STATE(2407), - [sym_access_call] = STATE(2482), - [sym_anonymous_function] = STATE(2482), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(556), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(558), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(1987), - [sym_integer] = ACTIONS(1987), - [sym_float] = ACTIONS(1987), - [sym_char] = ACTIONS(1987), - [anon_sym_true] = ACTIONS(562), - [anon_sym_false] = ACTIONS(562), - [anon_sym_nil] = ACTIONS(564), - [sym_atom] = ACTIONS(1987), - [anon_sym_DQUOTE] = ACTIONS(566), - [anon_sym_SQUOTE] = ACTIONS(568), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), - [anon_sym_LBRACE] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(578), - [anon_sym_LT_LT] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_CARET] = ACTIONS(588), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), - [anon_sym_not] = ACTIONS(588), - [anon_sym_AT] = ACTIONS(590), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(594), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(600), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(602), - }, - [569] = { - [sym__expression] = STATE(2849), - [sym_block] = STATE(2849), - [sym__identifier] = STATE(68), - [sym_identifier] = STATE(68), - [sym_special_identifier] = STATE(68), - [sym_boolean] = STATE(2849), - [sym_nil] = STATE(2849), - [sym__atom] = STATE(2849), - [sym_quoted_atom] = STATE(2849), - [sym__quoted_i_double] = STATE(1866), - [sym__quoted_i_single] = STATE(1867), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(2849), - [sym_charlist] = STATE(2849), - [sym_sigil] = STATE(2849), - [sym_list] = STATE(2849), - [sym_tuple] = STATE(2849), - [sym_bitstring] = STATE(2849), - [sym_map] = STATE(2849), - [sym_unary_operator] = STATE(2849), - [sym_binary_operator] = STATE(2849), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(2849), - [sym_call] = STATE(2849), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(2849), - [sym_anonymous_function] = STATE(2849), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(662), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(1367), - [sym_integer] = ACTIONS(1367), - [sym_float] = ACTIONS(1367), - [sym_char] = ACTIONS(1367), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), - [sym_atom] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(670), - [anon_sym_DASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(670), - [anon_sym_CARET] = ACTIONS(670), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(670), - [anon_sym_not] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(672), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(674), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), - }, - [570] = { - [sym__expression] = STATE(2481), - [sym_block] = STATE(2481), - [sym__identifier] = STATE(60), - [sym_identifier] = STATE(60), - [sym_special_identifier] = STATE(60), - [sym_boolean] = STATE(2481), - [sym_nil] = STATE(2481), - [sym__atom] = STATE(2481), - [sym_quoted_atom] = STATE(2481), - [sym__quoted_i_double] = STATE(2414), - [sym__quoted_i_single] = STATE(2413), - [sym__quoted_i_heredoc_single] = STATE(2413), - [sym__quoted_i_heredoc_double] = STATE(2414), - [sym_string] = STATE(2481), - [sym_charlist] = STATE(2481), - [sym_sigil] = STATE(2481), - [sym_list] = STATE(2481), - [sym_tuple] = STATE(2481), - [sym_bitstring] = STATE(2481), - [sym_map] = STATE(2481), - [sym_unary_operator] = STATE(2481), - [sym_binary_operator] = STATE(2481), - [sym_operator_identifier] = STATE(5028), - [sym_dot] = STATE(2481), - [sym_call] = STATE(2481), - [sym__call_without_parentheses] = STATE(2412), - [sym__call_with_parentheses] = STATE(2411), - [sym__local_call_without_parentheses] = STATE(2410), - [sym__local_call_with_parentheses] = STATE(1910), - [sym__local_call_just_do_block] = STATE(2409), - [sym__remote_call_without_parentheses] = STATE(2408), - [sym__remote_call_with_parentheses] = STATE(1916), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(1975), - [sym__anonymous_dot] = STATE(4890), - [sym__double_call] = STATE(2407), - [sym_access_call] = STATE(2481), - [sym_anonymous_function] = STATE(2481), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(556), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(558), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(1989), - [sym_integer] = ACTIONS(1989), - [sym_float] = ACTIONS(1989), - [sym_char] = ACTIONS(1989), - [anon_sym_true] = ACTIONS(562), - [anon_sym_false] = ACTIONS(562), - [anon_sym_nil] = ACTIONS(564), - [sym_atom] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(566), - [anon_sym_SQUOTE] = ACTIONS(568), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), - [anon_sym_LBRACE] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(578), - [anon_sym_LT_LT] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_CARET] = ACTIONS(588), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), - [anon_sym_not] = ACTIONS(588), - [anon_sym_AT] = ACTIONS(590), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(594), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(600), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(602), - }, - [571] = { - [sym__expression] = STATE(2480), - [sym_block] = STATE(2480), - [sym__identifier] = STATE(60), - [sym_identifier] = STATE(60), - [sym_special_identifier] = STATE(60), - [sym_boolean] = STATE(2480), - [sym_nil] = STATE(2480), - [sym__atom] = STATE(2480), - [sym_quoted_atom] = STATE(2480), - [sym__quoted_i_double] = STATE(2414), - [sym__quoted_i_single] = STATE(2413), - [sym__quoted_i_heredoc_single] = STATE(2413), - [sym__quoted_i_heredoc_double] = STATE(2414), - [sym_string] = STATE(2480), - [sym_charlist] = STATE(2480), - [sym_sigil] = STATE(2480), - [sym_list] = STATE(2480), - [sym_tuple] = STATE(2480), - [sym_bitstring] = STATE(2480), - [sym_map] = STATE(2480), - [sym_unary_operator] = STATE(2480), - [sym_binary_operator] = STATE(2480), - [sym_operator_identifier] = STATE(5028), - [sym_dot] = STATE(2480), - [sym_call] = STATE(2480), - [sym__call_without_parentheses] = STATE(2412), - [sym__call_with_parentheses] = STATE(2411), - [sym__local_call_without_parentheses] = STATE(2410), - [sym__local_call_with_parentheses] = STATE(1910), - [sym__local_call_just_do_block] = STATE(2409), - [sym__remote_call_without_parentheses] = STATE(2408), - [sym__remote_call_with_parentheses] = STATE(1916), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(1975), - [sym__anonymous_dot] = STATE(4890), - [sym__double_call] = STATE(2407), - [sym_access_call] = STATE(2480), - [sym_anonymous_function] = STATE(2480), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(556), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(558), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(1991), - [sym_integer] = ACTIONS(1991), - [sym_float] = ACTIONS(1991), - [sym_char] = ACTIONS(1991), - [anon_sym_true] = ACTIONS(562), - [anon_sym_false] = ACTIONS(562), - [anon_sym_nil] = ACTIONS(564), - [sym_atom] = ACTIONS(1991), - [anon_sym_DQUOTE] = ACTIONS(566), - [anon_sym_SQUOTE] = ACTIONS(568), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), - [anon_sym_LBRACE] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(578), - [anon_sym_LT_LT] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_CARET] = ACTIONS(588), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), - [anon_sym_not] = ACTIONS(588), - [anon_sym_AT] = ACTIONS(590), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(594), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(600), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(602), - }, - [572] = { - [sym__expression] = STATE(2479), - [sym_block] = STATE(2479), - [sym__identifier] = STATE(60), - [sym_identifier] = STATE(60), - [sym_special_identifier] = STATE(60), - [sym_boolean] = STATE(2479), - [sym_nil] = STATE(2479), - [sym__atom] = STATE(2479), - [sym_quoted_atom] = STATE(2479), - [sym__quoted_i_double] = STATE(2414), - [sym__quoted_i_single] = STATE(2413), - [sym__quoted_i_heredoc_single] = STATE(2413), - [sym__quoted_i_heredoc_double] = STATE(2414), - [sym_string] = STATE(2479), - [sym_charlist] = STATE(2479), - [sym_sigil] = STATE(2479), - [sym_list] = STATE(2479), - [sym_tuple] = STATE(2479), - [sym_bitstring] = STATE(2479), - [sym_map] = STATE(2479), - [sym_unary_operator] = STATE(2479), - [sym_binary_operator] = STATE(2479), - [sym_operator_identifier] = STATE(5028), - [sym_dot] = STATE(2479), - [sym_call] = STATE(2479), - [sym__call_without_parentheses] = STATE(2412), - [sym__call_with_parentheses] = STATE(2411), - [sym__local_call_without_parentheses] = STATE(2410), - [sym__local_call_with_parentheses] = STATE(1910), - [sym__local_call_just_do_block] = STATE(2409), - [sym__remote_call_without_parentheses] = STATE(2408), - [sym__remote_call_with_parentheses] = STATE(1916), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(1975), - [sym__anonymous_dot] = STATE(4890), - [sym__double_call] = STATE(2407), - [sym_access_call] = STATE(2479), - [sym_anonymous_function] = STATE(2479), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(556), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(558), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(1993), - [sym_integer] = ACTIONS(1993), - [sym_float] = ACTIONS(1993), - [sym_char] = ACTIONS(1993), - [anon_sym_true] = ACTIONS(562), - [anon_sym_false] = ACTIONS(562), - [anon_sym_nil] = ACTIONS(564), - [sym_atom] = ACTIONS(1993), - [anon_sym_DQUOTE] = ACTIONS(566), - [anon_sym_SQUOTE] = ACTIONS(568), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), - [anon_sym_LBRACE] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(578), - [anon_sym_LT_LT] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_CARET] = ACTIONS(588), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), - [anon_sym_not] = ACTIONS(588), - [anon_sym_AT] = ACTIONS(590), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(594), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(600), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(602), - }, - [573] = { - [sym__expression] = STATE(2764), - [sym_block] = STATE(2764), - [sym__identifier] = STATE(42), - [sym_identifier] = STATE(42), - [sym_special_identifier] = STATE(42), - [sym_boolean] = STATE(2764), - [sym_nil] = STATE(2764), - [sym__atom] = STATE(2764), - [sym_quoted_atom] = STATE(2764), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2764), - [sym_charlist] = STATE(2764), - [sym_sigil] = STATE(2764), - [sym_list] = STATE(2764), - [sym_tuple] = STATE(2764), - [sym_bitstring] = STATE(2764), - [sym_map] = STATE(2764), - [sym_unary_operator] = STATE(2764), - [sym_binary_operator] = STATE(2764), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2764), - [sym_call] = STATE(2764), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2764), - [sym_anonymous_function] = STATE(2764), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(456), - [sym_unused_identifier] = ACTIONS(458), - [anon_sym___MODULE__] = ACTIONS(460), - [anon_sym___DIR__] = ACTIONS(460), - [anon_sym___ENV__] = ACTIONS(460), - [anon_sym___CALLER__] = ACTIONS(460), - [anon_sym___STACKTRACE__] = ACTIONS(460), - [sym_alias] = ACTIONS(1995), - [sym_integer] = ACTIONS(1995), - [sym_float] = ACTIONS(1995), - [sym_char] = ACTIONS(1995), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1995), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(464), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(473), - [anon_sym_BANG] = ACTIONS(473), - [anon_sym_CARET] = ACTIONS(473), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), - [anon_sym_not] = ACTIONS(473), - [anon_sym_AT] = ACTIONS(475), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(477), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [574] = { - [sym__expression] = STATE(2765), - [sym_block] = STATE(2765), - [sym__identifier] = STATE(42), - [sym_identifier] = STATE(42), - [sym_special_identifier] = STATE(42), - [sym_boolean] = STATE(2765), - [sym_nil] = STATE(2765), - [sym__atom] = STATE(2765), - [sym_quoted_atom] = STATE(2765), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2765), - [sym_charlist] = STATE(2765), - [sym_sigil] = STATE(2765), - [sym_list] = STATE(2765), - [sym_tuple] = STATE(2765), - [sym_bitstring] = STATE(2765), - [sym_map] = STATE(2765), - [sym_unary_operator] = STATE(2765), - [sym_binary_operator] = STATE(2765), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2765), - [sym_call] = STATE(2765), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2765), - [sym_anonymous_function] = STATE(2765), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(456), - [sym_unused_identifier] = ACTIONS(458), - [anon_sym___MODULE__] = ACTIONS(460), - [anon_sym___DIR__] = ACTIONS(460), - [anon_sym___ENV__] = ACTIONS(460), - [anon_sym___CALLER__] = ACTIONS(460), - [anon_sym___STACKTRACE__] = ACTIONS(460), - [sym_alias] = ACTIONS(1997), - [sym_integer] = ACTIONS(1997), - [sym_float] = ACTIONS(1997), - [sym_char] = ACTIONS(1997), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1997), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(464), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(473), - [anon_sym_BANG] = ACTIONS(473), - [anon_sym_CARET] = ACTIONS(473), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), - [anon_sym_not] = ACTIONS(473), - [anon_sym_AT] = ACTIONS(475), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(477), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [575] = { - [sym__expression] = STATE(2766), - [sym_block] = STATE(2766), - [sym__identifier] = STATE(42), - [sym_identifier] = STATE(42), - [sym_special_identifier] = STATE(42), - [sym_boolean] = STATE(2766), - [sym_nil] = STATE(2766), - [sym__atom] = STATE(2766), - [sym_quoted_atom] = STATE(2766), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2766), - [sym_charlist] = STATE(2766), - [sym_sigil] = STATE(2766), - [sym_list] = STATE(2766), - [sym_tuple] = STATE(2766), - [sym_bitstring] = STATE(2766), - [sym_map] = STATE(2766), - [sym_unary_operator] = STATE(2766), - [sym_binary_operator] = STATE(2766), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2766), - [sym_call] = STATE(2766), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2766), - [sym_anonymous_function] = STATE(2766), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(456), - [sym_unused_identifier] = ACTIONS(458), - [anon_sym___MODULE__] = ACTIONS(460), - [anon_sym___DIR__] = ACTIONS(460), - [anon_sym___ENV__] = ACTIONS(460), - [anon_sym___CALLER__] = ACTIONS(460), - [anon_sym___STACKTRACE__] = ACTIONS(460), - [sym_alias] = ACTIONS(1999), - [sym_integer] = ACTIONS(1999), - [sym_float] = ACTIONS(1999), - [sym_char] = ACTIONS(1999), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1999), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(464), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(473), - [anon_sym_BANG] = ACTIONS(473), - [anon_sym_CARET] = ACTIONS(473), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), - [anon_sym_not] = ACTIONS(473), - [anon_sym_AT] = ACTIONS(475), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(477), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [576] = { - [sym__expression] = STATE(2476), - [sym_block] = STATE(2476), - [sym__identifier] = STATE(60), - [sym_identifier] = STATE(60), - [sym_special_identifier] = STATE(60), - [sym_boolean] = STATE(2476), - [sym_nil] = STATE(2476), - [sym__atom] = STATE(2476), - [sym_quoted_atom] = STATE(2476), - [sym__quoted_i_double] = STATE(2414), - [sym__quoted_i_single] = STATE(2413), - [sym__quoted_i_heredoc_single] = STATE(2413), - [sym__quoted_i_heredoc_double] = STATE(2414), - [sym_string] = STATE(2476), - [sym_charlist] = STATE(2476), - [sym_sigil] = STATE(2476), - [sym_list] = STATE(2476), - [sym_tuple] = STATE(2476), - [sym_bitstring] = STATE(2476), - [sym_map] = STATE(2476), - [sym_unary_operator] = STATE(2476), - [sym_binary_operator] = STATE(2476), - [sym_operator_identifier] = STATE(5028), - [sym_dot] = STATE(2476), - [sym_call] = STATE(2476), - [sym__call_without_parentheses] = STATE(2412), - [sym__call_with_parentheses] = STATE(2411), - [sym__local_call_without_parentheses] = STATE(2410), - [sym__local_call_with_parentheses] = STATE(1910), - [sym__local_call_just_do_block] = STATE(2409), - [sym__remote_call_without_parentheses] = STATE(2408), - [sym__remote_call_with_parentheses] = STATE(1916), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(1975), - [sym__anonymous_dot] = STATE(4890), - [sym__double_call] = STATE(2407), - [sym_access_call] = STATE(2476), - [sym_anonymous_function] = STATE(2476), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(556), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(558), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(2001), - [sym_integer] = ACTIONS(2001), - [sym_float] = ACTIONS(2001), - [sym_char] = ACTIONS(2001), - [anon_sym_true] = ACTIONS(562), - [anon_sym_false] = ACTIONS(562), - [anon_sym_nil] = ACTIONS(564), - [sym_atom] = ACTIONS(2001), - [anon_sym_DQUOTE] = ACTIONS(566), - [anon_sym_SQUOTE] = ACTIONS(568), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), - [anon_sym_LBRACE] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(578), - [anon_sym_LT_LT] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_CARET] = ACTIONS(588), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), - [anon_sym_not] = ACTIONS(588), - [anon_sym_AT] = ACTIONS(590), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(594), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(600), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(602), - }, - [577] = { - [sym__expression] = STATE(2475), - [sym_block] = STATE(2475), - [sym__identifier] = STATE(60), - [sym_identifier] = STATE(60), - [sym_special_identifier] = STATE(60), - [sym_boolean] = STATE(2475), - [sym_nil] = STATE(2475), - [sym__atom] = STATE(2475), - [sym_quoted_atom] = STATE(2475), - [sym__quoted_i_double] = STATE(2414), - [sym__quoted_i_single] = STATE(2413), - [sym__quoted_i_heredoc_single] = STATE(2413), - [sym__quoted_i_heredoc_double] = STATE(2414), - [sym_string] = STATE(2475), - [sym_charlist] = STATE(2475), - [sym_sigil] = STATE(2475), - [sym_list] = STATE(2475), - [sym_tuple] = STATE(2475), - [sym_bitstring] = STATE(2475), - [sym_map] = STATE(2475), - [sym_unary_operator] = STATE(2475), - [sym_binary_operator] = STATE(2475), - [sym_operator_identifier] = STATE(5028), - [sym_dot] = STATE(2475), - [sym_call] = STATE(2475), - [sym__call_without_parentheses] = STATE(2412), - [sym__call_with_parentheses] = STATE(2411), - [sym__local_call_without_parentheses] = STATE(2410), - [sym__local_call_with_parentheses] = STATE(1910), - [sym__local_call_just_do_block] = STATE(2409), - [sym__remote_call_without_parentheses] = STATE(2408), - [sym__remote_call_with_parentheses] = STATE(1916), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(1975), - [sym__anonymous_dot] = STATE(4890), - [sym__double_call] = STATE(2407), - [sym_access_call] = STATE(2475), - [sym_anonymous_function] = STATE(2475), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(556), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(558), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(2003), - [sym_integer] = ACTIONS(2003), - [sym_float] = ACTIONS(2003), - [sym_char] = ACTIONS(2003), - [anon_sym_true] = ACTIONS(562), - [anon_sym_false] = ACTIONS(562), - [anon_sym_nil] = ACTIONS(564), - [sym_atom] = ACTIONS(2003), - [anon_sym_DQUOTE] = ACTIONS(566), - [anon_sym_SQUOTE] = ACTIONS(568), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), - [anon_sym_LBRACE] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(578), - [anon_sym_LT_LT] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_CARET] = ACTIONS(588), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), - [anon_sym_not] = ACTIONS(588), - [anon_sym_AT] = ACTIONS(590), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(594), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(600), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(602), - }, - [578] = { - [sym__expression] = STATE(2474), - [sym_block] = STATE(2474), - [sym__identifier] = STATE(60), - [sym_identifier] = STATE(60), - [sym_special_identifier] = STATE(60), - [sym_boolean] = STATE(2474), - [sym_nil] = STATE(2474), - [sym__atom] = STATE(2474), - [sym_quoted_atom] = STATE(2474), - [sym__quoted_i_double] = STATE(2414), - [sym__quoted_i_single] = STATE(2413), - [sym__quoted_i_heredoc_single] = STATE(2413), - [sym__quoted_i_heredoc_double] = STATE(2414), - [sym_string] = STATE(2474), - [sym_charlist] = STATE(2474), - [sym_sigil] = STATE(2474), - [sym_list] = STATE(2474), - [sym_tuple] = STATE(2474), - [sym_bitstring] = STATE(2474), - [sym_map] = STATE(2474), - [sym_unary_operator] = STATE(2474), - [sym_binary_operator] = STATE(2474), - [sym_operator_identifier] = STATE(5028), - [sym_dot] = STATE(2474), - [sym_call] = STATE(2474), - [sym__call_without_parentheses] = STATE(2412), - [sym__call_with_parentheses] = STATE(2411), - [sym__local_call_without_parentheses] = STATE(2410), - [sym__local_call_with_parentheses] = STATE(1910), - [sym__local_call_just_do_block] = STATE(2409), - [sym__remote_call_without_parentheses] = STATE(2408), - [sym__remote_call_with_parentheses] = STATE(1916), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(1975), - [sym__anonymous_dot] = STATE(4890), - [sym__double_call] = STATE(2407), - [sym_access_call] = STATE(2474), - [sym_anonymous_function] = STATE(2474), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(556), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(558), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(2005), - [sym_integer] = ACTIONS(2005), - [sym_float] = ACTIONS(2005), - [sym_char] = ACTIONS(2005), - [anon_sym_true] = ACTIONS(562), - [anon_sym_false] = ACTIONS(562), - [anon_sym_nil] = ACTIONS(564), - [sym_atom] = ACTIONS(2005), - [anon_sym_DQUOTE] = ACTIONS(566), - [anon_sym_SQUOTE] = ACTIONS(568), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), - [anon_sym_LBRACE] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(578), - [anon_sym_LT_LT] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_CARET] = ACTIONS(588), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), - [anon_sym_not] = ACTIONS(588), - [anon_sym_AT] = ACTIONS(590), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(594), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(600), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(602), - }, - [579] = { - [sym__expression] = STATE(2768), - [sym_block] = STATE(2768), - [sym__identifier] = STATE(42), - [sym_identifier] = STATE(42), - [sym_special_identifier] = STATE(42), - [sym_boolean] = STATE(2768), - [sym_nil] = STATE(2768), - [sym__atom] = STATE(2768), - [sym_quoted_atom] = STATE(2768), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2768), - [sym_charlist] = STATE(2768), - [sym_sigil] = STATE(2768), - [sym_list] = STATE(2768), - [sym_tuple] = STATE(2768), - [sym_bitstring] = STATE(2768), - [sym_map] = STATE(2768), - [sym_unary_operator] = STATE(2768), - [sym_binary_operator] = STATE(2768), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2768), - [sym_call] = STATE(2768), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2768), - [sym_anonymous_function] = STATE(2768), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(456), - [sym_unused_identifier] = ACTIONS(458), - [anon_sym___MODULE__] = ACTIONS(460), - [anon_sym___DIR__] = ACTIONS(460), - [anon_sym___ENV__] = ACTIONS(460), - [anon_sym___CALLER__] = ACTIONS(460), - [anon_sym___STACKTRACE__] = ACTIONS(460), - [sym_alias] = ACTIONS(2007), - [sym_integer] = ACTIONS(2007), - [sym_float] = ACTIONS(2007), - [sym_char] = ACTIONS(2007), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(2007), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(464), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(473), - [anon_sym_BANG] = ACTIONS(473), - [anon_sym_CARET] = ACTIONS(473), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), - [anon_sym_not] = ACTIONS(473), - [anon_sym_AT] = ACTIONS(475), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(477), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [580] = { - [sym__expression] = STATE(2769), - [sym_block] = STATE(2769), - [sym__identifier] = STATE(42), - [sym_identifier] = STATE(42), - [sym_special_identifier] = STATE(42), - [sym_boolean] = STATE(2769), - [sym_nil] = STATE(2769), - [sym__atom] = STATE(2769), - [sym_quoted_atom] = STATE(2769), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2769), - [sym_charlist] = STATE(2769), - [sym_sigil] = STATE(2769), - [sym_list] = STATE(2769), - [sym_tuple] = STATE(2769), - [sym_bitstring] = STATE(2769), - [sym_map] = STATE(2769), - [sym_unary_operator] = STATE(2769), - [sym_binary_operator] = STATE(2769), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2769), - [sym_call] = STATE(2769), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2769), - [sym_anonymous_function] = STATE(2769), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(456), - [sym_unused_identifier] = ACTIONS(458), - [anon_sym___MODULE__] = ACTIONS(460), - [anon_sym___DIR__] = ACTIONS(460), - [anon_sym___ENV__] = ACTIONS(460), - [anon_sym___CALLER__] = ACTIONS(460), - [anon_sym___STACKTRACE__] = ACTIONS(460), - [sym_alias] = ACTIONS(2009), - [sym_integer] = ACTIONS(2009), - [sym_float] = ACTIONS(2009), - [sym_char] = ACTIONS(2009), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(2009), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(464), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(473), - [anon_sym_BANG] = ACTIONS(473), - [anon_sym_CARET] = ACTIONS(473), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), - [anon_sym_not] = ACTIONS(473), - [anon_sym_AT] = ACTIONS(475), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(477), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [581] = { - [sym__expression] = STATE(2471), - [sym_block] = STATE(2471), - [sym__identifier] = STATE(60), - [sym_identifier] = STATE(60), - [sym_special_identifier] = STATE(60), - [sym_boolean] = STATE(2471), - [sym_nil] = STATE(2471), - [sym__atom] = STATE(2471), - [sym_quoted_atom] = STATE(2471), - [sym__quoted_i_double] = STATE(2414), - [sym__quoted_i_single] = STATE(2413), - [sym__quoted_i_heredoc_single] = STATE(2413), - [sym__quoted_i_heredoc_double] = STATE(2414), - [sym_string] = STATE(2471), - [sym_charlist] = STATE(2471), - [sym_sigil] = STATE(2471), - [sym_list] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_bitstring] = STATE(2471), - [sym_map] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_binary_operator] = STATE(2471), - [sym_operator_identifier] = STATE(5028), - [sym_dot] = STATE(2471), - [sym_call] = STATE(2471), - [sym__call_without_parentheses] = STATE(2412), - [sym__call_with_parentheses] = STATE(2411), - [sym__local_call_without_parentheses] = STATE(2410), - [sym__local_call_with_parentheses] = STATE(1910), - [sym__local_call_just_do_block] = STATE(2409), - [sym__remote_call_without_parentheses] = STATE(2408), - [sym__remote_call_with_parentheses] = STATE(1916), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(1975), - [sym__anonymous_dot] = STATE(4890), - [sym__double_call] = STATE(2407), - [sym_access_call] = STATE(2471), - [sym_anonymous_function] = STATE(2471), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(556), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(558), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(2011), - [sym_integer] = ACTIONS(2011), - [sym_float] = ACTIONS(2011), - [sym_char] = ACTIONS(2011), - [anon_sym_true] = ACTIONS(562), - [anon_sym_false] = ACTIONS(562), - [anon_sym_nil] = ACTIONS(564), - [sym_atom] = ACTIONS(2011), - [anon_sym_DQUOTE] = ACTIONS(566), - [anon_sym_SQUOTE] = ACTIONS(568), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), - [anon_sym_LBRACE] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(578), - [anon_sym_LT_LT] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_CARET] = ACTIONS(588), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), - [anon_sym_not] = ACTIONS(588), - [anon_sym_AT] = ACTIONS(590), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(594), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(600), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(602), - }, - [582] = { - [sym__expression] = STATE(2470), - [sym_block] = STATE(2470), - [sym__identifier] = STATE(60), - [sym_identifier] = STATE(60), - [sym_special_identifier] = STATE(60), - [sym_boolean] = STATE(2470), - [sym_nil] = STATE(2470), - [sym__atom] = STATE(2470), - [sym_quoted_atom] = STATE(2470), - [sym__quoted_i_double] = STATE(2414), - [sym__quoted_i_single] = STATE(2413), - [sym__quoted_i_heredoc_single] = STATE(2413), - [sym__quoted_i_heredoc_double] = STATE(2414), - [sym_string] = STATE(2470), - [sym_charlist] = STATE(2470), - [sym_sigil] = STATE(2470), - [sym_list] = STATE(2470), - [sym_tuple] = STATE(2470), - [sym_bitstring] = STATE(2470), - [sym_map] = STATE(2470), - [sym_unary_operator] = STATE(2470), - [sym_binary_operator] = STATE(2470), - [sym_operator_identifier] = STATE(5028), - [sym_dot] = STATE(2470), - [sym_call] = STATE(2470), - [sym__call_without_parentheses] = STATE(2412), - [sym__call_with_parentheses] = STATE(2411), - [sym__local_call_without_parentheses] = STATE(2410), - [sym__local_call_with_parentheses] = STATE(1910), - [sym__local_call_just_do_block] = STATE(2409), - [sym__remote_call_without_parentheses] = STATE(2408), - [sym__remote_call_with_parentheses] = STATE(1916), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(1975), - [sym__anonymous_dot] = STATE(4890), - [sym__double_call] = STATE(2407), - [sym_access_call] = STATE(2470), - [sym_anonymous_function] = STATE(2470), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(556), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(558), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(2013), - [sym_integer] = ACTIONS(2013), - [sym_float] = ACTIONS(2013), - [sym_char] = ACTIONS(2013), - [anon_sym_true] = ACTIONS(562), - [anon_sym_false] = ACTIONS(562), - [anon_sym_nil] = ACTIONS(564), - [sym_atom] = ACTIONS(2013), - [anon_sym_DQUOTE] = ACTIONS(566), - [anon_sym_SQUOTE] = ACTIONS(568), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), - [anon_sym_LBRACE] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(578), - [anon_sym_LT_LT] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_CARET] = ACTIONS(588), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), - [anon_sym_not] = ACTIONS(588), - [anon_sym_AT] = ACTIONS(590), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(594), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(600), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(602), - }, - [583] = { - [sym__expression] = STATE(2388), - [sym_block] = STATE(2388), - [sym__identifier] = STATE(60), - [sym_identifier] = STATE(60), - [sym_special_identifier] = STATE(60), - [sym_boolean] = STATE(2388), - [sym_nil] = STATE(2388), - [sym__atom] = STATE(2388), - [sym_quoted_atom] = STATE(2388), - [sym__quoted_i_double] = STATE(2414), - [sym__quoted_i_single] = STATE(2413), - [sym__quoted_i_heredoc_single] = STATE(2413), - [sym__quoted_i_heredoc_double] = STATE(2414), - [sym_string] = STATE(2388), - [sym_charlist] = STATE(2388), - [sym_sigil] = STATE(2388), - [sym_list] = STATE(2388), - [sym_tuple] = STATE(2388), - [sym_bitstring] = STATE(2388), - [sym_map] = STATE(2388), - [sym_unary_operator] = STATE(2388), - [sym_binary_operator] = STATE(2388), - [sym_operator_identifier] = STATE(5028), - [sym_dot] = STATE(2388), - [sym_call] = STATE(2388), - [sym__call_without_parentheses] = STATE(2412), - [sym__call_with_parentheses] = STATE(2411), - [sym__local_call_without_parentheses] = STATE(2410), - [sym__local_call_with_parentheses] = STATE(1910), - [sym__local_call_just_do_block] = STATE(2409), - [sym__remote_call_without_parentheses] = STATE(2408), - [sym__remote_call_with_parentheses] = STATE(1916), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(1975), - [sym__anonymous_dot] = STATE(4890), - [sym__double_call] = STATE(2407), - [sym_access_call] = STATE(2388), - [sym_anonymous_function] = STATE(2388), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(556), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(558), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(2015), - [sym_integer] = ACTIONS(2015), - [sym_float] = ACTIONS(2015), - [sym_char] = ACTIONS(2015), - [anon_sym_true] = ACTIONS(562), - [anon_sym_false] = ACTIONS(562), - [anon_sym_nil] = ACTIONS(564), - [sym_atom] = ACTIONS(2015), - [anon_sym_DQUOTE] = ACTIONS(566), - [anon_sym_SQUOTE] = ACTIONS(568), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), - [anon_sym_LBRACE] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(578), - [anon_sym_LT_LT] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_CARET] = ACTIONS(588), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), - [anon_sym_not] = ACTIONS(588), - [anon_sym_AT] = ACTIONS(590), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(594), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(600), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(602), - }, - [584] = { - [sym__expression] = STATE(2389), - [sym_block] = STATE(2389), - [sym__identifier] = STATE(60), - [sym_identifier] = STATE(60), - [sym_special_identifier] = STATE(60), - [sym_boolean] = STATE(2389), - [sym_nil] = STATE(2389), - [sym__atom] = STATE(2389), - [sym_quoted_atom] = STATE(2389), - [sym__quoted_i_double] = STATE(2414), - [sym__quoted_i_single] = STATE(2413), - [sym__quoted_i_heredoc_single] = STATE(2413), - [sym__quoted_i_heredoc_double] = STATE(2414), - [sym_string] = STATE(2389), - [sym_charlist] = STATE(2389), - [sym_sigil] = STATE(2389), - [sym_list] = STATE(2389), - [sym_tuple] = STATE(2389), - [sym_bitstring] = STATE(2389), - [sym_map] = STATE(2389), - [sym_unary_operator] = STATE(2389), - [sym_binary_operator] = STATE(2389), - [sym_operator_identifier] = STATE(5028), - [sym_dot] = STATE(2389), - [sym_call] = STATE(2389), - [sym__call_without_parentheses] = STATE(2412), - [sym__call_with_parentheses] = STATE(2411), - [sym__local_call_without_parentheses] = STATE(2410), - [sym__local_call_with_parentheses] = STATE(1910), - [sym__local_call_just_do_block] = STATE(2409), - [sym__remote_call_without_parentheses] = STATE(2408), - [sym__remote_call_with_parentheses] = STATE(1916), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(1975), - [sym__anonymous_dot] = STATE(4890), - [sym__double_call] = STATE(2407), - [sym_access_call] = STATE(2389), - [sym_anonymous_function] = STATE(2389), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(556), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(558), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(2017), - [sym_integer] = ACTIONS(2017), - [sym_float] = ACTIONS(2017), - [sym_char] = ACTIONS(2017), - [anon_sym_true] = ACTIONS(562), - [anon_sym_false] = ACTIONS(562), - [anon_sym_nil] = ACTIONS(564), - [sym_atom] = ACTIONS(2017), - [anon_sym_DQUOTE] = ACTIONS(566), - [anon_sym_SQUOTE] = ACTIONS(568), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), - [anon_sym_LBRACE] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(578), - [anon_sym_LT_LT] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_CARET] = ACTIONS(588), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), - [anon_sym_not] = ACTIONS(588), - [anon_sym_AT] = ACTIONS(590), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(594), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(600), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(602), - }, - [585] = { - [sym__expression] = STATE(2770), - [sym_block] = STATE(2770), - [sym__identifier] = STATE(42), - [sym_identifier] = STATE(42), - [sym_special_identifier] = STATE(42), - [sym_boolean] = STATE(2770), - [sym_nil] = STATE(2770), - [sym__atom] = STATE(2770), - [sym_quoted_atom] = STATE(2770), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2770), - [sym_charlist] = STATE(2770), - [sym_sigil] = STATE(2770), - [sym_list] = STATE(2770), - [sym_tuple] = STATE(2770), - [sym_bitstring] = STATE(2770), - [sym_map] = STATE(2770), - [sym_unary_operator] = STATE(2770), - [sym_binary_operator] = STATE(2770), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2770), - [sym_call] = STATE(2770), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2770), - [sym_anonymous_function] = STATE(2770), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(456), - [sym_unused_identifier] = ACTIONS(458), - [anon_sym___MODULE__] = ACTIONS(460), - [anon_sym___DIR__] = ACTIONS(460), - [anon_sym___ENV__] = ACTIONS(460), - [anon_sym___CALLER__] = ACTIONS(460), - [anon_sym___STACKTRACE__] = ACTIONS(460), - [sym_alias] = ACTIONS(2019), - [sym_integer] = ACTIONS(2019), - [sym_float] = ACTIONS(2019), - [sym_char] = ACTIONS(2019), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(2019), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(464), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(473), - [anon_sym_BANG] = ACTIONS(473), - [anon_sym_CARET] = ACTIONS(473), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), - [anon_sym_not] = ACTIONS(473), - [anon_sym_AT] = ACTIONS(475), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(477), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [586] = { - [sym__expression] = STATE(3325), - [sym_block] = STATE(3325), - [sym__identifier] = STATE(64), - [sym_identifier] = STATE(64), - [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3325), - [sym_nil] = STATE(3325), - [sym__atom] = STATE(3325), - [sym_quoted_atom] = STATE(3325), - [sym__quoted_i_double] = STATE(3395), - [sym__quoted_i_single] = STATE(3394), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3325), - [sym_charlist] = STATE(3325), - [sym_sigil] = STATE(3325), - [sym_list] = STATE(3325), - [sym_tuple] = STATE(3325), - [sym_bitstring] = STATE(3325), - [sym_map] = STATE(3325), - [sym_unary_operator] = STATE(3325), - [sym_binary_operator] = STATE(3325), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3325), - [sym_call] = STATE(3325), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), - [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3325), - [sym_anonymous_function] = STATE(3325), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1361), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(828), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2021), - [sym_integer] = ACTIONS(2021), - [sym_float] = ACTIONS(2021), - [sym_char] = ACTIONS(2021), - [anon_sym_true] = ACTIONS(834), - [anon_sym_false] = ACTIONS(834), - [anon_sym_nil] = ACTIONS(836), - [sym_atom] = ACTIONS(2021), - [anon_sym_DQUOTE] = ACTIONS(838), - [anon_sym_SQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(850), - [anon_sym_LT_LT] = ACTIONS(852), - [anon_sym_PERCENT] = ACTIONS(854), - [anon_sym_AMP] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_BANG] = ACTIONS(858), - [anon_sym_CARET] = ACTIONS(858), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), - [anon_sym_not] = ACTIONS(858), - [anon_sym_AT] = ACTIONS(860), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(864), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(866), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(868), - }, - [587] = { - [sym__expression] = STATE(2771), - [sym_block] = STATE(2771), - [sym__identifier] = STATE(42), - [sym_identifier] = STATE(42), - [sym_special_identifier] = STATE(42), - [sym_boolean] = STATE(2771), - [sym_nil] = STATE(2771), - [sym__atom] = STATE(2771), - [sym_quoted_atom] = STATE(2771), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2771), - [sym_charlist] = STATE(2771), - [sym_sigil] = STATE(2771), - [sym_list] = STATE(2771), - [sym_tuple] = STATE(2771), - [sym_bitstring] = STATE(2771), - [sym_map] = STATE(2771), - [sym_unary_operator] = STATE(2771), - [sym_binary_operator] = STATE(2771), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2771), - [sym_call] = STATE(2771), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2771), - [sym_anonymous_function] = STATE(2771), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(456), - [sym_unused_identifier] = ACTIONS(458), - [anon_sym___MODULE__] = ACTIONS(460), - [anon_sym___DIR__] = ACTIONS(460), - [anon_sym___ENV__] = ACTIONS(460), - [anon_sym___CALLER__] = ACTIONS(460), - [anon_sym___STACKTRACE__] = ACTIONS(460), - [sym_alias] = ACTIONS(2023), - [sym_integer] = ACTIONS(2023), - [sym_float] = ACTIONS(2023), - [sym_char] = ACTIONS(2023), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(2023), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(464), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(473), - [anon_sym_BANG] = ACTIONS(473), - [anon_sym_CARET] = ACTIONS(473), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), - [anon_sym_not] = ACTIONS(473), - [anon_sym_AT] = ACTIONS(475), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(477), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [588] = { - [sym__expression] = STATE(3323), - [sym_block] = STATE(3323), - [sym__identifier] = STATE(64), - [sym_identifier] = STATE(64), - [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3323), - [sym_nil] = STATE(3323), - [sym__atom] = STATE(3323), - [sym_quoted_atom] = STATE(3323), - [sym__quoted_i_double] = STATE(3395), - [sym__quoted_i_single] = STATE(3394), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3323), - [sym_charlist] = STATE(3323), - [sym_sigil] = STATE(3323), - [sym_list] = STATE(3323), - [sym_tuple] = STATE(3323), - [sym_bitstring] = STATE(3323), - [sym_map] = STATE(3323), - [sym_unary_operator] = STATE(3323), - [sym_binary_operator] = STATE(3323), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3323), - [sym_call] = STATE(3323), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), - [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3323), - [sym_anonymous_function] = STATE(3323), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1361), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(828), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2025), - [sym_integer] = ACTIONS(2025), - [sym_float] = ACTIONS(2025), - [sym_char] = ACTIONS(2025), - [anon_sym_true] = ACTIONS(834), - [anon_sym_false] = ACTIONS(834), - [anon_sym_nil] = ACTIONS(836), - [sym_atom] = ACTIONS(2025), - [anon_sym_DQUOTE] = ACTIONS(838), - [anon_sym_SQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(850), - [anon_sym_LT_LT] = ACTIONS(852), - [anon_sym_PERCENT] = ACTIONS(854), - [anon_sym_AMP] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_BANG] = ACTIONS(858), - [anon_sym_CARET] = ACTIONS(858), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), - [anon_sym_not] = ACTIONS(858), - [anon_sym_AT] = ACTIONS(860), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(864), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(866), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(868), - }, - [589] = { - [sym__expression] = STATE(3318), - [sym_block] = STATE(3318), - [sym__identifier] = STATE(64), - [sym_identifier] = STATE(64), - [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3318), - [sym_nil] = STATE(3318), - [sym__atom] = STATE(3318), - [sym_quoted_atom] = STATE(3318), - [sym__quoted_i_double] = STATE(3395), - [sym__quoted_i_single] = STATE(3394), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3318), - [sym_charlist] = STATE(3318), - [sym_sigil] = STATE(3318), - [sym_list] = STATE(3318), - [sym_tuple] = STATE(3318), - [sym_bitstring] = STATE(3318), - [sym_map] = STATE(3318), - [sym_unary_operator] = STATE(3318), - [sym_binary_operator] = STATE(3318), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3318), - [sym_call] = STATE(3318), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), - [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3318), - [sym_anonymous_function] = STATE(3318), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1361), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(828), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2027), - [sym_integer] = ACTIONS(2027), - [sym_float] = ACTIONS(2027), - [sym_char] = ACTIONS(2027), - [anon_sym_true] = ACTIONS(834), - [anon_sym_false] = ACTIONS(834), - [anon_sym_nil] = ACTIONS(836), - [sym_atom] = ACTIONS(2027), - [anon_sym_DQUOTE] = ACTIONS(838), - [anon_sym_SQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(850), - [anon_sym_LT_LT] = ACTIONS(852), - [anon_sym_PERCENT] = ACTIONS(854), - [anon_sym_AMP] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_BANG] = ACTIONS(858), - [anon_sym_CARET] = ACTIONS(858), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), - [anon_sym_not] = ACTIONS(858), - [anon_sym_AT] = ACTIONS(860), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(864), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(866), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(868), - }, - [590] = { - [sym__expression] = STATE(2593), - [sym_block] = STATE(2593), - [sym__identifier] = STATE(42), - [sym_identifier] = STATE(42), - [sym_special_identifier] = STATE(42), - [sym_boolean] = STATE(2593), - [sym_nil] = STATE(2593), - [sym__atom] = STATE(2593), - [sym_quoted_atom] = STATE(2593), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2593), - [sym_charlist] = STATE(2593), - [sym_sigil] = STATE(2593), - [sym_list] = STATE(2593), - [sym_tuple] = STATE(2593), - [sym_bitstring] = STATE(2593), - [sym_map] = STATE(2593), - [sym_unary_operator] = STATE(2593), - [sym_binary_operator] = STATE(2593), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2593), - [sym_call] = STATE(2593), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2593), - [sym_anonymous_function] = STATE(2593), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(456), - [sym_unused_identifier] = ACTIONS(458), - [anon_sym___MODULE__] = ACTIONS(460), - [anon_sym___DIR__] = ACTIONS(460), - [anon_sym___ENV__] = ACTIONS(460), - [anon_sym___CALLER__] = ACTIONS(460), - [anon_sym___STACKTRACE__] = ACTIONS(460), - [sym_alias] = ACTIONS(2029), - [sym_integer] = ACTIONS(2029), - [sym_float] = ACTIONS(2029), - [sym_char] = ACTIONS(2029), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(2029), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(464), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(473), - [anon_sym_BANG] = ACTIONS(473), - [anon_sym_CARET] = ACTIONS(473), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), - [anon_sym_not] = ACTIONS(473), - [anon_sym_AT] = ACTIONS(475), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(477), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [591] = { - [sym__expression] = STATE(2394), - [sym_block] = STATE(2394), - [sym__identifier] = STATE(60), - [sym_identifier] = STATE(60), - [sym_special_identifier] = STATE(60), - [sym_boolean] = STATE(2394), - [sym_nil] = STATE(2394), - [sym__atom] = STATE(2394), - [sym_quoted_atom] = STATE(2394), - [sym__quoted_i_double] = STATE(2414), - [sym__quoted_i_single] = STATE(2413), - [sym__quoted_i_heredoc_single] = STATE(2413), - [sym__quoted_i_heredoc_double] = STATE(2414), - [sym_string] = STATE(2394), - [sym_charlist] = STATE(2394), - [sym_sigil] = STATE(2394), - [sym_list] = STATE(2394), - [sym_tuple] = STATE(2394), - [sym_bitstring] = STATE(2394), - [sym_map] = STATE(2394), - [sym_unary_operator] = STATE(2394), - [sym_binary_operator] = STATE(2394), - [sym_operator_identifier] = STATE(5028), - [sym_dot] = STATE(2394), - [sym_call] = STATE(2394), - [sym__call_without_parentheses] = STATE(2412), - [sym__call_with_parentheses] = STATE(2411), - [sym__local_call_without_parentheses] = STATE(2410), - [sym__local_call_with_parentheses] = STATE(1910), - [sym__local_call_just_do_block] = STATE(2409), - [sym__remote_call_without_parentheses] = STATE(2408), - [sym__remote_call_with_parentheses] = STATE(1916), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(1975), - [sym__anonymous_dot] = STATE(4890), - [sym__double_call] = STATE(2407), - [sym_access_call] = STATE(2394), - [sym_anonymous_function] = STATE(2394), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(556), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(558), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(2031), - [sym_integer] = ACTIONS(2031), - [sym_float] = ACTIONS(2031), - [sym_char] = ACTIONS(2031), - [anon_sym_true] = ACTIONS(562), - [anon_sym_false] = ACTIONS(562), - [anon_sym_nil] = ACTIONS(564), - [sym_atom] = ACTIONS(2031), - [anon_sym_DQUOTE] = ACTIONS(566), - [anon_sym_SQUOTE] = ACTIONS(568), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), - [anon_sym_LBRACE] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(578), - [anon_sym_LT_LT] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_CARET] = ACTIONS(588), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), - [anon_sym_not] = ACTIONS(588), - [anon_sym_AT] = ACTIONS(590), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(594), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(600), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(602), - }, - [592] = { - [sym__expression] = STATE(2395), - [sym_block] = STATE(2395), - [sym__identifier] = STATE(60), - [sym_identifier] = STATE(60), - [sym_special_identifier] = STATE(60), - [sym_boolean] = STATE(2395), - [sym_nil] = STATE(2395), - [sym__atom] = STATE(2395), - [sym_quoted_atom] = STATE(2395), - [sym__quoted_i_double] = STATE(2414), - [sym__quoted_i_single] = STATE(2413), - [sym__quoted_i_heredoc_single] = STATE(2413), - [sym__quoted_i_heredoc_double] = STATE(2414), - [sym_string] = STATE(2395), - [sym_charlist] = STATE(2395), - [sym_sigil] = STATE(2395), - [sym_list] = STATE(2395), - [sym_tuple] = STATE(2395), - [sym_bitstring] = STATE(2395), - [sym_map] = STATE(2395), - [sym_unary_operator] = STATE(2395), - [sym_binary_operator] = STATE(2395), - [sym_operator_identifier] = STATE(5028), - [sym_dot] = STATE(2395), - [sym_call] = STATE(2395), - [sym__call_without_parentheses] = STATE(2412), - [sym__call_with_parentheses] = STATE(2411), - [sym__local_call_without_parentheses] = STATE(2410), - [sym__local_call_with_parentheses] = STATE(1910), - [sym__local_call_just_do_block] = STATE(2409), - [sym__remote_call_without_parentheses] = STATE(2408), - [sym__remote_call_with_parentheses] = STATE(1916), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(1975), - [sym__anonymous_dot] = STATE(4890), - [sym__double_call] = STATE(2407), - [sym_access_call] = STATE(2395), - [sym_anonymous_function] = STATE(2395), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(556), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(558), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(2033), - [sym_integer] = ACTIONS(2033), - [sym_float] = ACTIONS(2033), - [sym_char] = ACTIONS(2033), - [anon_sym_true] = ACTIONS(562), - [anon_sym_false] = ACTIONS(562), - [anon_sym_nil] = ACTIONS(564), - [sym_atom] = ACTIONS(2033), - [anon_sym_DQUOTE] = ACTIONS(566), - [anon_sym_SQUOTE] = ACTIONS(568), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), - [anon_sym_LBRACE] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(578), - [anon_sym_LT_LT] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_CARET] = ACTIONS(588), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), - [anon_sym_not] = ACTIONS(588), - [anon_sym_AT] = ACTIONS(590), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(594), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(600), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(602), - }, - [593] = { - [sym__expression] = STATE(2753), - [sym_block] = STATE(2753), - [sym__identifier] = STATE(42), - [sym_identifier] = STATE(42), - [sym_special_identifier] = STATE(42), - [sym_boolean] = STATE(2753), - [sym_nil] = STATE(2753), - [sym__atom] = STATE(2753), - [sym_quoted_atom] = STATE(2753), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2753), - [sym_charlist] = STATE(2753), - [sym_sigil] = STATE(2753), - [sym_list] = STATE(2753), - [sym_tuple] = STATE(2753), - [sym_bitstring] = STATE(2753), - [sym_map] = STATE(2753), - [sym_unary_operator] = STATE(2753), - [sym_binary_operator] = STATE(2753), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2753), - [sym_call] = STATE(2753), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2753), - [sym_anonymous_function] = STATE(2753), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(456), - [sym_unused_identifier] = ACTIONS(458), - [anon_sym___MODULE__] = ACTIONS(460), - [anon_sym___DIR__] = ACTIONS(460), - [anon_sym___ENV__] = ACTIONS(460), - [anon_sym___CALLER__] = ACTIONS(460), - [anon_sym___STACKTRACE__] = ACTIONS(460), - [sym_alias] = ACTIONS(2035), - [sym_integer] = ACTIONS(2035), - [sym_float] = ACTIONS(2035), - [sym_char] = ACTIONS(2035), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(2035), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(464), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(473), - [anon_sym_BANG] = ACTIONS(473), - [anon_sym_CARET] = ACTIONS(473), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), - [anon_sym_not] = ACTIONS(473), - [anon_sym_AT] = ACTIONS(475), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(477), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [594] = { - [sym__expression] = STATE(2022), - [sym_block] = STATE(2022), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2022), - [sym_nil] = STATE(2022), - [sym__atom] = STATE(2022), - [sym_quoted_atom] = STATE(2022), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2022), - [sym_charlist] = STATE(2022), - [sym_sigil] = STATE(2022), - [sym_list] = STATE(2022), - [sym_tuple] = STATE(2022), - [sym_bitstring] = STATE(2022), - [sym_map] = STATE(2022), - [sym_unary_operator] = STATE(2022), - [sym_binary_operator] = STATE(2022), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2022), - [sym_call] = STATE(2022), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(2022), - [sym_anonymous_function] = STATE(2022), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(944), - [anon_sym___MODULE__] = ACTIONS(71), - [anon_sym___DIR__] = ACTIONS(71), - [anon_sym___ENV__] = ACTIONS(71), - [anon_sym___CALLER__] = ACTIONS(71), - [anon_sym___STACKTRACE__] = ACTIONS(71), - [sym_alias] = ACTIONS(1325), - [sym_integer] = ACTIONS(1325), - [sym_float] = ACTIONS(1325), - [sym_char] = ACTIONS(1325), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1325), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(972), - [anon_sym_CARET] = ACTIONS(972), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), - [anon_sym_not] = ACTIONS(972), - [anon_sym_AT] = ACTIONS(974), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(980), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [595] = { - [sym__expression] = STATE(2590), - [sym_block] = STATE(2590), - [sym__identifier] = STATE(95), - [sym_identifier] = STATE(95), - [sym_special_identifier] = STATE(95), - [sym_boolean] = STATE(2590), - [sym_nil] = STATE(2590), - [sym__atom] = STATE(2590), - [sym_quoted_atom] = STATE(2590), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(2590), - [sym_charlist] = STATE(2590), - [sym_sigil] = STATE(2590), - [sym_list] = STATE(2590), - [sym_tuple] = STATE(2590), - [sym_bitstring] = STATE(2590), - [sym_map] = STATE(2590), - [sym_unary_operator] = STATE(2590), - [sym_binary_operator] = STATE(2590), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(2590), - [sym_call] = STATE(2590), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(65), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(2590), - [sym_anonymous_function] = STATE(2590), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1509), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2037), - [sym_integer] = ACTIONS(2037), - [sym_float] = ACTIONS(2037), - [sym_char] = ACTIONS(2037), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2037), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1517), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1517), - [anon_sym_not] = ACTIONS(1517), - [anon_sym_AT] = ACTIONS(1519), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1521), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [596] = { - [sym__expression] = STATE(3419), - [sym_block] = STATE(3419), - [sym__identifier] = STATE(95), - [sym_identifier] = STATE(95), - [sym_special_identifier] = STATE(95), - [sym_boolean] = STATE(3419), - [sym_nil] = STATE(3419), - [sym__atom] = STATE(3419), - [sym_quoted_atom] = STATE(3419), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3419), - [sym_charlist] = STATE(3419), - [sym_sigil] = STATE(3419), - [sym_list] = STATE(3419), - [sym_tuple] = STATE(3419), - [sym_bitstring] = STATE(3419), - [sym_map] = STATE(3419), - [sym_unary_operator] = STATE(3419), - [sym_binary_operator] = STATE(3419), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3419), - [sym_call] = STATE(3419), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(65), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3419), - [sym_anonymous_function] = STATE(3419), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1509), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2039), - [sym_integer] = ACTIONS(2039), - [sym_float] = ACTIONS(2039), - [sym_char] = ACTIONS(2039), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2039), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1517), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1517), - [anon_sym_not] = ACTIONS(1517), - [anon_sym_AT] = ACTIONS(1519), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1521), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [597] = { - [sym__expression] = STATE(3230), - [sym_block] = STATE(3230), - [sym__identifier] = STATE(57), - [sym_identifier] = STATE(57), - [sym_special_identifier] = STATE(57), - [sym_boolean] = STATE(3230), - [sym_nil] = STATE(3230), - [sym__atom] = STATE(3230), - [sym_quoted_atom] = STATE(3230), - [sym__quoted_i_double] = STATE(3146), - [sym__quoted_i_single] = STATE(3147), - [sym__quoted_i_heredoc_single] = STATE(3147), - [sym__quoted_i_heredoc_double] = STATE(3146), - [sym_string] = STATE(3230), - [sym_charlist] = STATE(3230), - [sym_sigil] = STATE(3230), - [sym_list] = STATE(3230), - [sym_tuple] = STATE(3230), - [sym_bitstring] = STATE(3230), - [sym_map] = STATE(3230), - [sym_unary_operator] = STATE(3230), - [sym_binary_operator] = STATE(3230), - [sym_operator_identifier] = STATE(5049), - [sym_dot] = STATE(3230), - [sym_call] = STATE(3230), - [sym__call_without_parentheses] = STATE(3175), - [sym__call_with_parentheses] = STATE(3177), - [sym__local_call_without_parentheses] = STATE(3178), - [sym__local_call_with_parentheses] = STATE(2550), - [sym__local_call_just_do_block] = STATE(3183), - [sym__remote_call_without_parentheses] = STATE(3200), - [sym__remote_call_with_parentheses] = STATE(2583), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(2582), - [sym__anonymous_dot] = STATE(4866), - [sym__double_call] = STATE(3202), - [sym_access_call] = STATE(3230), - [sym_anonymous_function] = STATE(3230), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(15), - [sym_unused_identifier] = ACTIONS(17), - [anon_sym___MODULE__] = ACTIONS(19), - [anon_sym___DIR__] = ACTIONS(19), - [anon_sym___ENV__] = ACTIONS(19), - [anon_sym___CALLER__] = ACTIONS(19), - [anon_sym___STACKTRACE__] = ACTIONS(19), - [sym_alias] = ACTIONS(2041), - [sym_integer] = ACTIONS(2041), - [sym_float] = ACTIONS(2041), - [sym_char] = ACTIONS(2041), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_nil] = ACTIONS(25), - [sym_atom] = ACTIONS(2041), - [anon_sym_DQUOTE] = ACTIONS(27), - [anon_sym_SQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(41), - [anon_sym_LT_LT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(45), - [anon_sym_AMP] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(49), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_CARET] = ACTIONS(49), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), - [anon_sym_not] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(51), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(53), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(55), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(59), - }, - [598] = { - [sym__expression] = STATE(1497), - [sym_block] = STATE(1497), - [sym__identifier] = STATE(14), - [sym_identifier] = STATE(14), - [sym_special_identifier] = STATE(14), - [sym_boolean] = STATE(1497), - [sym_nil] = STATE(1497), - [sym__atom] = STATE(1497), - [sym_quoted_atom] = STATE(1497), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(1497), - [sym_charlist] = STATE(1497), - [sym_sigil] = STATE(1497), - [sym_list] = STATE(1497), - [sym_tuple] = STATE(1497), - [sym_bitstring] = STATE(1497), - [sym_map] = STATE(1497), - [sym_unary_operator] = STATE(1497), - [sym_binary_operator] = STATE(1497), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(1497), - [sym_call] = STATE(1497), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(1497), - [sym_anonymous_function] = STATE(1497), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(197), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), - [sym_alias] = ACTIONS(2043), - [sym_integer] = ACTIONS(2043), - [sym_float] = ACTIONS(2043), - [sym_char] = ACTIONS(2043), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(2043), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(222), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(230), - [anon_sym_PLUS] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_CARET] = ACTIONS(235), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(235), - [anon_sym_not] = ACTIONS(235), - [anon_sym_AT] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(243), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [599] = { - [sym__expression] = STATE(1569), - [sym_block] = STATE(1569), - [sym__identifier] = STATE(14), - [sym_identifier] = STATE(14), - [sym_special_identifier] = STATE(14), - [sym_boolean] = STATE(1569), - [sym_nil] = STATE(1569), - [sym__atom] = STATE(1569), - [sym_quoted_atom] = STATE(1569), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(1569), - [sym_charlist] = STATE(1569), - [sym_sigil] = STATE(1569), - [sym_list] = STATE(1569), - [sym_tuple] = STATE(1569), - [sym_bitstring] = STATE(1569), - [sym_map] = STATE(1569), - [sym_unary_operator] = STATE(1569), - [sym_binary_operator] = STATE(1569), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(1569), - [sym_call] = STATE(1569), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(1569), - [sym_anonymous_function] = STATE(1569), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(197), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), - [sym_alias] = ACTIONS(2045), - [sym_integer] = ACTIONS(2045), - [sym_float] = ACTIONS(2045), - [sym_char] = ACTIONS(2045), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(2045), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(222), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(230), - [anon_sym_PLUS] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_CARET] = ACTIONS(235), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(235), - [anon_sym_not] = ACTIONS(235), - [anon_sym_AT] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(243), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [600] = { - [sym__expression] = STATE(3265), - [sym_block] = STATE(3265), - [sym__identifier] = STATE(54), - [sym_identifier] = STATE(54), - [sym_special_identifier] = STATE(54), - [sym_boolean] = STATE(3265), - [sym_nil] = STATE(3265), - [sym__atom] = STATE(3265), - [sym_quoted_atom] = STATE(3265), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3265), - [sym_charlist] = STATE(3265), - [sym_sigil] = STATE(3265), - [sym_list] = STATE(3265), - [sym_tuple] = STATE(3265), - [sym_bitstring] = STATE(3265), - [sym_map] = STATE(3265), - [sym_unary_operator] = STATE(3265), - [sym_binary_operator] = STATE(3265), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3265), - [sym_call] = STATE(3265), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3265), - [sym_anonymous_function] = STATE(3265), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(1427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1427), - [sym_unused_identifier] = ACTIONS(1429), - [anon_sym___MODULE__] = ACTIONS(1431), - [anon_sym___DIR__] = ACTIONS(1431), - [anon_sym___ENV__] = ACTIONS(1431), - [anon_sym___CALLER__] = ACTIONS(1431), - [anon_sym___STACKTRACE__] = ACTIONS(1431), - [sym_alias] = ACTIONS(2047), - [sym_integer] = ACTIONS(2047), - [sym_float] = ACTIONS(2047), - [sym_char] = ACTIONS(2047), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(2047), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_CARET] = ACTIONS(1441), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1441), - [anon_sym_not] = ACTIONS(1441), - [anon_sym_AT] = ACTIONS(1443), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1445), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [601] = { - [sym__expression] = STATE(3157), - [sym_block] = STATE(3157), - [sym__identifier] = STATE(54), - [sym_identifier] = STATE(54), - [sym_special_identifier] = STATE(54), - [sym_boolean] = STATE(3157), - [sym_nil] = STATE(3157), - [sym__atom] = STATE(3157), - [sym_quoted_atom] = STATE(3157), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3157), - [sym_charlist] = STATE(3157), - [sym_sigil] = STATE(3157), - [sym_list] = STATE(3157), - [sym_tuple] = STATE(3157), - [sym_bitstring] = STATE(3157), - [sym_map] = STATE(3157), - [sym_unary_operator] = STATE(3157), - [sym_binary_operator] = STATE(3157), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3157), - [sym_call] = STATE(3157), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3157), - [sym_anonymous_function] = STATE(3157), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(1427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1427), - [sym_unused_identifier] = ACTIONS(1429), - [anon_sym___MODULE__] = ACTIONS(1431), - [anon_sym___DIR__] = ACTIONS(1431), - [anon_sym___ENV__] = ACTIONS(1431), - [anon_sym___CALLER__] = ACTIONS(1431), - [anon_sym___STACKTRACE__] = ACTIONS(1431), - [sym_alias] = ACTIONS(2049), - [sym_integer] = ACTIONS(2049), - [sym_float] = ACTIONS(2049), - [sym_char] = ACTIONS(2049), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(2049), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_CARET] = ACTIONS(1441), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1441), - [anon_sym_not] = ACTIONS(1441), - [anon_sym_AT] = ACTIONS(1443), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1445), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [602] = { - [sym__expression] = STATE(3158), - [sym_block] = STATE(3158), - [sym__identifier] = STATE(54), - [sym_identifier] = STATE(54), - [sym_special_identifier] = STATE(54), - [sym_boolean] = STATE(3158), - [sym_nil] = STATE(3158), - [sym__atom] = STATE(3158), - [sym_quoted_atom] = STATE(3158), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3158), - [sym_charlist] = STATE(3158), - [sym_sigil] = STATE(3158), - [sym_list] = STATE(3158), - [sym_tuple] = STATE(3158), - [sym_bitstring] = STATE(3158), - [sym_map] = STATE(3158), - [sym_unary_operator] = STATE(3158), - [sym_binary_operator] = STATE(3158), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3158), - [sym_call] = STATE(3158), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3158), - [sym_anonymous_function] = STATE(3158), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(1427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1427), - [sym_unused_identifier] = ACTIONS(1429), - [anon_sym___MODULE__] = ACTIONS(1431), - [anon_sym___DIR__] = ACTIONS(1431), - [anon_sym___ENV__] = ACTIONS(1431), - [anon_sym___CALLER__] = ACTIONS(1431), - [anon_sym___STACKTRACE__] = ACTIONS(1431), - [sym_alias] = ACTIONS(2051), - [sym_integer] = ACTIONS(2051), - [sym_float] = ACTIONS(2051), - [sym_char] = ACTIONS(2051), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(2051), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_CARET] = ACTIONS(1441), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1441), - [anon_sym_not] = ACTIONS(1441), - [anon_sym_AT] = ACTIONS(1443), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1445), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [603] = { - [sym__expression] = STATE(3159), - [sym_block] = STATE(3159), - [sym__identifier] = STATE(54), - [sym_identifier] = STATE(54), - [sym_special_identifier] = STATE(54), - [sym_boolean] = STATE(3159), - [sym_nil] = STATE(3159), - [sym__atom] = STATE(3159), - [sym_quoted_atom] = STATE(3159), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3159), - [sym_charlist] = STATE(3159), - [sym_sigil] = STATE(3159), - [sym_list] = STATE(3159), - [sym_tuple] = STATE(3159), - [sym_bitstring] = STATE(3159), - [sym_map] = STATE(3159), - [sym_unary_operator] = STATE(3159), - [sym_binary_operator] = STATE(3159), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3159), - [sym_call] = STATE(3159), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3159), - [sym_anonymous_function] = STATE(3159), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(1427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1427), - [sym_unused_identifier] = ACTIONS(1429), - [anon_sym___MODULE__] = ACTIONS(1431), - [anon_sym___DIR__] = ACTIONS(1431), - [anon_sym___ENV__] = ACTIONS(1431), - [anon_sym___CALLER__] = ACTIONS(1431), - [anon_sym___STACKTRACE__] = ACTIONS(1431), - [sym_alias] = ACTIONS(2053), - [sym_integer] = ACTIONS(2053), - [sym_float] = ACTIONS(2053), - [sym_char] = ACTIONS(2053), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(2053), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_CARET] = ACTIONS(1441), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1441), - [anon_sym_not] = ACTIONS(1441), - [anon_sym_AT] = ACTIONS(1443), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1445), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [604] = { - [sym__expression] = STATE(3160), - [sym_block] = STATE(3160), - [sym__identifier] = STATE(54), - [sym_identifier] = STATE(54), - [sym_special_identifier] = STATE(54), - [sym_boolean] = STATE(3160), - [sym_nil] = STATE(3160), - [sym__atom] = STATE(3160), - [sym_quoted_atom] = STATE(3160), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3160), - [sym_charlist] = STATE(3160), - [sym_sigil] = STATE(3160), - [sym_list] = STATE(3160), - [sym_tuple] = STATE(3160), - [sym_bitstring] = STATE(3160), - [sym_map] = STATE(3160), - [sym_unary_operator] = STATE(3160), - [sym_binary_operator] = STATE(3160), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3160), - [sym_call] = STATE(3160), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3160), - [sym_anonymous_function] = STATE(3160), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(1427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1427), - [sym_unused_identifier] = ACTIONS(1429), - [anon_sym___MODULE__] = ACTIONS(1431), - [anon_sym___DIR__] = ACTIONS(1431), - [anon_sym___ENV__] = ACTIONS(1431), - [anon_sym___CALLER__] = ACTIONS(1431), - [anon_sym___STACKTRACE__] = ACTIONS(1431), - [sym_alias] = ACTIONS(2055), - [sym_integer] = ACTIONS(2055), - [sym_float] = ACTIONS(2055), - [sym_char] = ACTIONS(2055), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_CARET] = ACTIONS(1441), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1441), - [anon_sym_not] = ACTIONS(1441), - [anon_sym_AT] = ACTIONS(1443), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1445), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [605] = { - [sym__expression] = STATE(3161), - [sym_block] = STATE(3161), - [sym__identifier] = STATE(54), - [sym_identifier] = STATE(54), - [sym_special_identifier] = STATE(54), - [sym_boolean] = STATE(3161), - [sym_nil] = STATE(3161), - [sym__atom] = STATE(3161), - [sym_quoted_atom] = STATE(3161), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3161), - [sym_charlist] = STATE(3161), - [sym_sigil] = STATE(3161), - [sym_list] = STATE(3161), - [sym_tuple] = STATE(3161), - [sym_bitstring] = STATE(3161), - [sym_map] = STATE(3161), - [sym_unary_operator] = STATE(3161), - [sym_binary_operator] = STATE(3161), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3161), - [sym_call] = STATE(3161), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3161), - [sym_anonymous_function] = STATE(3161), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(1427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1427), - [sym_unused_identifier] = ACTIONS(1429), - [anon_sym___MODULE__] = ACTIONS(1431), - [anon_sym___DIR__] = ACTIONS(1431), - [anon_sym___ENV__] = ACTIONS(1431), - [anon_sym___CALLER__] = ACTIONS(1431), - [anon_sym___STACKTRACE__] = ACTIONS(1431), - [sym_alias] = ACTIONS(2057), - [sym_integer] = ACTIONS(2057), - [sym_float] = ACTIONS(2057), - [sym_char] = ACTIONS(2057), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(2057), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_CARET] = ACTIONS(1441), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1441), - [anon_sym_not] = ACTIONS(1441), - [anon_sym_AT] = ACTIONS(1443), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1445), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [606] = { - [sym__expression] = STATE(3162), - [sym_block] = STATE(3162), - [sym__identifier] = STATE(54), - [sym_identifier] = STATE(54), - [sym_special_identifier] = STATE(54), - [sym_boolean] = STATE(3162), - [sym_nil] = STATE(3162), - [sym__atom] = STATE(3162), - [sym_quoted_atom] = STATE(3162), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3162), - [sym_charlist] = STATE(3162), - [sym_sigil] = STATE(3162), - [sym_list] = STATE(3162), - [sym_tuple] = STATE(3162), - [sym_bitstring] = STATE(3162), - [sym_map] = STATE(3162), - [sym_unary_operator] = STATE(3162), - [sym_binary_operator] = STATE(3162), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3162), - [sym_call] = STATE(3162), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3162), - [sym_anonymous_function] = STATE(3162), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(1427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1427), - [sym_unused_identifier] = ACTIONS(1429), - [anon_sym___MODULE__] = ACTIONS(1431), - [anon_sym___DIR__] = ACTIONS(1431), - [anon_sym___ENV__] = ACTIONS(1431), - [anon_sym___CALLER__] = ACTIONS(1431), - [anon_sym___STACKTRACE__] = ACTIONS(1431), - [sym_alias] = ACTIONS(2059), - [sym_integer] = ACTIONS(2059), - [sym_float] = ACTIONS(2059), - [sym_char] = ACTIONS(2059), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(2059), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_CARET] = ACTIONS(1441), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1441), - [anon_sym_not] = ACTIONS(1441), - [anon_sym_AT] = ACTIONS(1443), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1445), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [607] = { - [sym__expression] = STATE(3420), - [sym_block] = STATE(3420), - [sym__identifier] = STATE(95), - [sym_identifier] = STATE(95), - [sym_special_identifier] = STATE(95), - [sym_boolean] = STATE(3420), - [sym_nil] = STATE(3420), - [sym__atom] = STATE(3420), - [sym_quoted_atom] = STATE(3420), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3420), - [sym_charlist] = STATE(3420), - [sym_sigil] = STATE(3420), - [sym_list] = STATE(3420), - [sym_tuple] = STATE(3420), - [sym_bitstring] = STATE(3420), - [sym_map] = STATE(3420), - [sym_unary_operator] = STATE(3420), - [sym_binary_operator] = STATE(3420), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3420), - [sym_call] = STATE(3420), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(65), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3420), - [sym_anonymous_function] = STATE(3420), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1509), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2061), - [sym_integer] = ACTIONS(2061), - [sym_float] = ACTIONS(2061), - [sym_char] = ACTIONS(2061), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2061), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1517), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1517), - [anon_sym_not] = ACTIONS(1517), - [anon_sym_AT] = ACTIONS(1519), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1521), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [608] = { - [sym__expression] = STATE(1572), - [sym_block] = STATE(1572), - [sym__identifier] = STATE(14), - [sym_identifier] = STATE(14), - [sym_special_identifier] = STATE(14), - [sym_boolean] = STATE(1572), - [sym_nil] = STATE(1572), - [sym__atom] = STATE(1572), - [sym_quoted_atom] = STATE(1572), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(1572), - [sym_charlist] = STATE(1572), - [sym_sigil] = STATE(1572), - [sym_list] = STATE(1572), - [sym_tuple] = STATE(1572), - [sym_bitstring] = STATE(1572), - [sym_map] = STATE(1572), - [sym_unary_operator] = STATE(1572), - [sym_binary_operator] = STATE(1572), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(1572), - [sym_call] = STATE(1572), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(1572), - [sym_anonymous_function] = STATE(1572), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(197), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), - [sym_alias] = ACTIONS(2063), - [sym_integer] = ACTIONS(2063), - [sym_float] = ACTIONS(2063), - [sym_char] = ACTIONS(2063), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(222), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(230), - [anon_sym_PLUS] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_CARET] = ACTIONS(235), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(235), - [anon_sym_not] = ACTIONS(235), - [anon_sym_AT] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(243), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [609] = { - [sym__expression] = STATE(1575), - [sym_block] = STATE(1575), - [sym__identifier] = STATE(14), - [sym_identifier] = STATE(14), - [sym_special_identifier] = STATE(14), - [sym_boolean] = STATE(1575), - [sym_nil] = STATE(1575), - [sym__atom] = STATE(1575), - [sym_quoted_atom] = STATE(1575), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(1575), - [sym_charlist] = STATE(1575), - [sym_sigil] = STATE(1575), - [sym_list] = STATE(1575), - [sym_tuple] = STATE(1575), - [sym_bitstring] = STATE(1575), - [sym_map] = STATE(1575), - [sym_unary_operator] = STATE(1575), - [sym_binary_operator] = STATE(1575), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(1575), - [sym_call] = STATE(1575), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(1575), - [sym_anonymous_function] = STATE(1575), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(197), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), - [sym_alias] = ACTIONS(2065), - [sym_integer] = ACTIONS(2065), - [sym_float] = ACTIONS(2065), - [sym_char] = ACTIONS(2065), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(2065), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(222), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(230), - [anon_sym_PLUS] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_CARET] = ACTIONS(235), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(235), - [anon_sym_not] = ACTIONS(235), - [anon_sym_AT] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(243), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [610] = { - [sym__expression] = STATE(3426), - [sym_block] = STATE(3426), - [sym__identifier] = STATE(95), - [sym_identifier] = STATE(95), - [sym_special_identifier] = STATE(95), - [sym_boolean] = STATE(3426), - [sym_nil] = STATE(3426), - [sym__atom] = STATE(3426), - [sym_quoted_atom] = STATE(3426), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3426), - [sym_charlist] = STATE(3426), - [sym_sigil] = STATE(3426), - [sym_list] = STATE(3426), - [sym_tuple] = STATE(3426), - [sym_bitstring] = STATE(3426), - [sym_map] = STATE(3426), - [sym_unary_operator] = STATE(3426), - [sym_binary_operator] = STATE(3426), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3426), - [sym_call] = STATE(3426), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(65), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3426), - [sym_anonymous_function] = STATE(3426), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1509), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2067), - [sym_integer] = ACTIONS(2067), - [sym_float] = ACTIONS(2067), - [sym_char] = ACTIONS(2067), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2067), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1517), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1517), - [anon_sym_not] = ACTIONS(1517), - [anon_sym_AT] = ACTIONS(1519), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1521), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [611] = { - [sym__expression] = STATE(3429), - [sym_block] = STATE(3429), - [sym__identifier] = STATE(95), - [sym_identifier] = STATE(95), - [sym_special_identifier] = STATE(95), - [sym_boolean] = STATE(3429), - [sym_nil] = STATE(3429), - [sym__atom] = STATE(3429), - [sym_quoted_atom] = STATE(3429), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3429), - [sym_charlist] = STATE(3429), - [sym_sigil] = STATE(3429), - [sym_list] = STATE(3429), - [sym_tuple] = STATE(3429), - [sym_bitstring] = STATE(3429), - [sym_map] = STATE(3429), - [sym_unary_operator] = STATE(3429), - [sym_binary_operator] = STATE(3429), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3429), - [sym_call] = STATE(3429), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(65), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3429), - [sym_anonymous_function] = STATE(3429), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1509), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2069), - [sym_integer] = ACTIONS(2069), - [sym_float] = ACTIONS(2069), - [sym_char] = ACTIONS(2069), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2069), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1517), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1517), - [anon_sym_not] = ACTIONS(1517), - [anon_sym_AT] = ACTIONS(1519), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1521), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [612] = { - [sym__expression] = STATE(3430), - [sym_block] = STATE(3430), - [sym__identifier] = STATE(95), - [sym_identifier] = STATE(95), - [sym_special_identifier] = STATE(95), - [sym_boolean] = STATE(3430), - [sym_nil] = STATE(3430), - [sym__atom] = STATE(3430), - [sym_quoted_atom] = STATE(3430), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3430), - [sym_charlist] = STATE(3430), - [sym_sigil] = STATE(3430), - [sym_list] = STATE(3430), - [sym_tuple] = STATE(3430), - [sym_bitstring] = STATE(3430), - [sym_map] = STATE(3430), - [sym_unary_operator] = STATE(3430), - [sym_binary_operator] = STATE(3430), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3430), - [sym_call] = STATE(3430), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(65), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3430), - [sym_anonymous_function] = STATE(3430), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1509), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2071), - [sym_integer] = ACTIONS(2071), - [sym_float] = ACTIONS(2071), - [sym_char] = ACTIONS(2071), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2071), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1517), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1517), - [anon_sym_not] = ACTIONS(1517), - [anon_sym_AT] = ACTIONS(1519), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1521), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [613] = { - [sym__expression] = STATE(3501), - [sym_block] = STATE(3501), - [sym__identifier] = STATE(72), - [sym_identifier] = STATE(72), - [sym_special_identifier] = STATE(72), - [sym_boolean] = STATE(3501), - [sym_nil] = STATE(3501), - [sym__atom] = STATE(3501), - [sym_quoted_atom] = STATE(3501), - [sym__quoted_i_double] = STATE(3516), - [sym__quoted_i_single] = STATE(3518), - [sym__quoted_i_heredoc_single] = STATE(3518), - [sym__quoted_i_heredoc_double] = STATE(3516), - [sym_string] = STATE(3501), - [sym_charlist] = STATE(3501), - [sym_sigil] = STATE(3501), - [sym_list] = STATE(3501), - [sym_tuple] = STATE(3501), - [sym_bitstring] = STATE(3501), - [sym_map] = STATE(3501), - [sym_unary_operator] = STATE(3501), - [sym_binary_operator] = STATE(3501), - [sym_operator_identifier] = STATE(4972), - [sym_dot] = STATE(3501), - [sym_call] = STATE(3501), - [sym__call_without_parentheses] = STATE(3517), - [sym__call_with_parentheses] = STATE(3515), - [sym__local_call_without_parentheses] = STATE(3511), - [sym__local_call_with_parentheses] = STATE(3073), - [sym__local_call_just_do_block] = STATE(3510), - [sym__remote_call_without_parentheses] = STATE(3514), - [sym__remote_call_with_parentheses] = STATE(3088), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(3095), - [sym__anonymous_dot] = STATE(4928), - [sym__double_call] = STATE(3499), - [sym_access_call] = STATE(3501), - [sym_anonymous_function] = STATE(3501), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1123), - [aux_sym_identifier_token1] = ACTIONS(1125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1125), - [sym_unused_identifier] = ACTIONS(1127), - [anon_sym___MODULE__] = ACTIONS(1129), - [anon_sym___DIR__] = ACTIONS(1129), - [anon_sym___ENV__] = ACTIONS(1129), - [anon_sym___CALLER__] = ACTIONS(1129), - [anon_sym___STACKTRACE__] = ACTIONS(1129), - [sym_alias] = ACTIONS(2073), - [sym_integer] = ACTIONS(2073), - [sym_float] = ACTIONS(2073), - [sym_char] = ACTIONS(2073), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_nil] = ACTIONS(1135), - [sym_atom] = ACTIONS(2073), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(1147), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1149), - [anon_sym_LT_LT] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1161), - [anon_sym_not] = ACTIONS(1161), - [anon_sym_AT] = ACTIONS(1163), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1165), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1167), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1169), - }, - [614] = { - [sym__expression] = STATE(3547), - [sym_block] = STATE(3547), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3547), - [sym_nil] = STATE(3547), - [sym__atom] = STATE(3547), - [sym_quoted_atom] = STATE(3547), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3547), - [sym_charlist] = STATE(3547), - [sym_sigil] = STATE(3547), - [sym_list] = STATE(3547), - [sym_tuple] = STATE(3547), - [sym_bitstring] = STATE(3547), - [sym_map] = STATE(3547), - [sym_unary_operator] = STATE(3547), - [sym_binary_operator] = STATE(3547), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3547), - [sym_call] = STATE(3547), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3547), - [sym_anonymous_function] = STATE(3547), + [547] = { + [sym__expression] = STATE(4148), + [sym_block] = STATE(4148), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(4148), + [sym_nil] = STATE(4148), + [sym__atom] = STATE(4148), + [sym_quoted_atom] = STATE(4148), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4148), + [sym_charlist] = STATE(4148), + [sym_sigil] = STATE(4148), + [sym_list] = STATE(4148), + [sym_tuple] = STATE(4148), + [sym_bitstring] = STATE(4148), + [sym_map] = STATE(4148), + [sym_unary_operator] = STATE(4148), + [sym_binary_operator] = STATE(4148), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4148), + [sym_call] = STATE(4148), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4148), + [sym_anonymous_function] = STATE(4148), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), [aux_sym_identifier_token1] = ACTIONS(826), @@ -103718,14 +95981,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ENV__] = ACTIONS(830), [anon_sym___CALLER__] = ACTIONS(830), [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2075), - [sym_integer] = ACTIONS(2075), - [sym_float] = ACTIONS(2075), - [sym_char] = ACTIONS(2075), + [sym_alias] = ACTIONS(1951), + [sym_integer] = ACTIONS(1951), + [sym_float] = ACTIONS(1951), + [sym_char] = ACTIONS(1951), [anon_sym_true] = ACTIONS(1073), [anon_sym_false] = ACTIONS(1073), [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2075), + [sym_atom] = ACTIONS(1951), [anon_sym_DQUOTE] = ACTIONS(1077), [anon_sym_SQUOTE] = ACTIONS(1079), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), @@ -103794,84 +96057,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(1109), }, - [615] = { - [sym__expression] = STATE(1576), - [sym_block] = STATE(1576), - [sym__identifier] = STATE(14), - [sym_identifier] = STATE(14), - [sym_special_identifier] = STATE(14), - [sym_boolean] = STATE(1576), - [sym_nil] = STATE(1576), - [sym__atom] = STATE(1576), - [sym_quoted_atom] = STATE(1576), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(1576), - [sym_charlist] = STATE(1576), - [sym_sigil] = STATE(1576), - [sym_list] = STATE(1576), - [sym_tuple] = STATE(1576), - [sym_bitstring] = STATE(1576), - [sym_map] = STATE(1576), - [sym_unary_operator] = STATE(1576), - [sym_binary_operator] = STATE(1576), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(1576), - [sym_call] = STATE(1576), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(1576), - [sym_anonymous_function] = STATE(1576), + [548] = { + [sym__expression] = STATE(3242), + [sym_block] = STATE(3242), + [sym__identifier] = STATE(61), + [sym_identifier] = STATE(61), + [sym_special_identifier] = STATE(61), + [sym_boolean] = STATE(3242), + [sym_nil] = STATE(3242), + [sym__atom] = STATE(3242), + [sym_quoted_atom] = STATE(3242), + [sym__quoted_i_double] = STATE(3318), + [sym__quoted_i_single] = STATE(3317), + [sym__quoted_i_heredoc_single] = STATE(3316), + [sym__quoted_i_heredoc_double] = STATE(3315), + [sym_string] = STATE(3242), + [sym_charlist] = STATE(3242), + [sym_sigil] = STATE(3242), + [sym_list] = STATE(3242), + [sym_tuple] = STATE(3242), + [sym_bitstring] = STATE(3242), + [sym_map] = STATE(3242), + [sym_unary_operator] = STATE(3242), + [sym_binary_operator] = STATE(3242), + [sym_operator_identifier] = STATE(5628), + [sym_dot] = STATE(3242), + [sym_call] = STATE(3242), + [sym__call_without_parentheses] = STATE(3314), + [sym__call_with_parentheses] = STATE(3313), + [sym__local_call_without_parentheses] = STATE(3312), + [sym__local_call_with_parentheses] = STATE(2420), + [sym__local_call_just_do_block] = STATE(3311), + [sym__remote_call_without_parentheses] = STATE(3310), + [sym__remote_call_with_parentheses] = STATE(2423), + [sym__remote_dot] = STATE(60), + [sym__anonymous_call] = STATE(2425), + [sym__anonymous_dot] = STATE(5498), + [sym__double_call] = STATE(3309), + [sym_access_call] = STATE(3242), + [sym_anonymous_function] = STATE(3242), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(197), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), - [sym_alias] = ACTIONS(2077), - [sym_integer] = ACTIONS(2077), - [sym_float] = ACTIONS(2077), - [sym_char] = ACTIONS(2077), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(2077), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(1953), + [sym_integer] = ACTIONS(1953), + [sym_float] = ACTIONS(1953), + [sym_char] = ACTIONS(1953), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(1953), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(222), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(230), - [anon_sym_PLUS] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_CARET] = ACTIONS(235), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(235), - [anon_sym_not] = ACTIONS(235), - [anon_sym_AT] = ACTIONS(237), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(643), + [anon_sym_not] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -103911,55 +96174,805 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), + [anon_sym_fn] = ACTIONS(649), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(243), + [sym__before_unary_op] = ACTIONS(655), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), + [sym__quoted_atom_start] = ACTIONS(657), }, - [616] = { - [sym__expression] = STATE(2881), - [sym_block] = STATE(2881), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), - [sym_boolean] = STATE(2881), - [sym_nil] = STATE(2881), - [sym__atom] = STATE(2881), - [sym_quoted_atom] = STATE(2881), - [sym__quoted_i_double] = STATE(1551), - [sym__quoted_i_single] = STATE(1552), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(2881), - [sym_charlist] = STATE(2881), - [sym_sigil] = STATE(2881), - [sym_list] = STATE(2881), - [sym_tuple] = STATE(2881), - [sym_bitstring] = STATE(2881), - [sym_map] = STATE(2881), - [sym_unary_operator] = STATE(2881), - [sym_binary_operator] = STATE(2881), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(2881), - [sym_call] = STATE(2881), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(53), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(2881), - [sym_anonymous_function] = STATE(2881), + [549] = { + [sym__expression] = STATE(3241), + [sym_block] = STATE(3241), + [sym__identifier] = STATE(61), + [sym_identifier] = STATE(61), + [sym_special_identifier] = STATE(61), + [sym_boolean] = STATE(3241), + [sym_nil] = STATE(3241), + [sym__atom] = STATE(3241), + [sym_quoted_atom] = STATE(3241), + [sym__quoted_i_double] = STATE(3318), + [sym__quoted_i_single] = STATE(3317), + [sym__quoted_i_heredoc_single] = STATE(3316), + [sym__quoted_i_heredoc_double] = STATE(3315), + [sym_string] = STATE(3241), + [sym_charlist] = STATE(3241), + [sym_sigil] = STATE(3241), + [sym_list] = STATE(3241), + [sym_tuple] = STATE(3241), + [sym_bitstring] = STATE(3241), + [sym_map] = STATE(3241), + [sym_unary_operator] = STATE(3241), + [sym_binary_operator] = STATE(3241), + [sym_operator_identifier] = STATE(5628), + [sym_dot] = STATE(3241), + [sym_call] = STATE(3241), + [sym__call_without_parentheses] = STATE(3314), + [sym__call_with_parentheses] = STATE(3313), + [sym__local_call_without_parentheses] = STATE(3312), + [sym__local_call_with_parentheses] = STATE(2420), + [sym__local_call_just_do_block] = STATE(3311), + [sym__remote_call_without_parentheses] = STATE(3310), + [sym__remote_call_with_parentheses] = STATE(2423), + [sym__remote_dot] = STATE(60), + [sym__anonymous_call] = STATE(2425), + [sym__anonymous_dot] = STATE(5498), + [sym__double_call] = STATE(3309), + [sym_access_call] = STATE(3241), + [sym_anonymous_function] = STATE(3241), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(1955), + [sym_integer] = ACTIONS(1955), + [sym_float] = ACTIONS(1955), + [sym_char] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(1955), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(643), + [anon_sym_not] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(649), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(655), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(657), + }, + [550] = { + [sym__expression] = STATE(3207), + [sym_block] = STATE(3207), + [sym__identifier] = STATE(61), + [sym_identifier] = STATE(61), + [sym_special_identifier] = STATE(61), + [sym_boolean] = STATE(3207), + [sym_nil] = STATE(3207), + [sym__atom] = STATE(3207), + [sym_quoted_atom] = STATE(3207), + [sym__quoted_i_double] = STATE(3318), + [sym__quoted_i_single] = STATE(3317), + [sym__quoted_i_heredoc_single] = STATE(3316), + [sym__quoted_i_heredoc_double] = STATE(3315), + [sym_string] = STATE(3207), + [sym_charlist] = STATE(3207), + [sym_sigil] = STATE(3207), + [sym_list] = STATE(3207), + [sym_tuple] = STATE(3207), + [sym_bitstring] = STATE(3207), + [sym_map] = STATE(3207), + [sym_unary_operator] = STATE(3207), + [sym_binary_operator] = STATE(3207), + [sym_operator_identifier] = STATE(5628), + [sym_dot] = STATE(3207), + [sym_call] = STATE(3207), + [sym__call_without_parentheses] = STATE(3314), + [sym__call_with_parentheses] = STATE(3313), + [sym__local_call_without_parentheses] = STATE(3312), + [sym__local_call_with_parentheses] = STATE(2420), + [sym__local_call_just_do_block] = STATE(3311), + [sym__remote_call_without_parentheses] = STATE(3310), + [sym__remote_call_with_parentheses] = STATE(2423), + [sym__remote_dot] = STATE(60), + [sym__anonymous_call] = STATE(2425), + [sym__anonymous_dot] = STATE(5498), + [sym__double_call] = STATE(3309), + [sym_access_call] = STATE(3207), + [sym_anonymous_function] = STATE(3207), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(1957), + [sym_integer] = ACTIONS(1957), + [sym_float] = ACTIONS(1957), + [sym_char] = ACTIONS(1957), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(1957), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(643), + [anon_sym_not] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(649), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(655), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(657), + }, + [551] = { + [sym__expression] = STATE(4133), + [sym_block] = STATE(4133), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(4133), + [sym_nil] = STATE(4133), + [sym__atom] = STATE(4133), + [sym_quoted_atom] = STATE(4133), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4133), + [sym_charlist] = STATE(4133), + [sym_sigil] = STATE(4133), + [sym_list] = STATE(4133), + [sym_tuple] = STATE(4133), + [sym_bitstring] = STATE(4133), + [sym_map] = STATE(4133), + [sym_unary_operator] = STATE(4133), + [sym_binary_operator] = STATE(4133), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4133), + [sym_call] = STATE(4133), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4133), + [sym_anonymous_function] = STATE(4133), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1959), + [sym_integer] = ACTIONS(1959), + [sym_float] = ACTIONS(1959), + [sym_char] = ACTIONS(1959), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(1959), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [552] = { + [sym__expression] = STATE(3208), + [sym_block] = STATE(3208), + [sym__identifier] = STATE(61), + [sym_identifier] = STATE(61), + [sym_special_identifier] = STATE(61), + [sym_boolean] = STATE(3208), + [sym_nil] = STATE(3208), + [sym__atom] = STATE(3208), + [sym_quoted_atom] = STATE(3208), + [sym__quoted_i_double] = STATE(3318), + [sym__quoted_i_single] = STATE(3317), + [sym__quoted_i_heredoc_single] = STATE(3316), + [sym__quoted_i_heredoc_double] = STATE(3315), + [sym_string] = STATE(3208), + [sym_charlist] = STATE(3208), + [sym_sigil] = STATE(3208), + [sym_list] = STATE(3208), + [sym_tuple] = STATE(3208), + [sym_bitstring] = STATE(3208), + [sym_map] = STATE(3208), + [sym_unary_operator] = STATE(3208), + [sym_binary_operator] = STATE(3208), + [sym_operator_identifier] = STATE(5628), + [sym_dot] = STATE(3208), + [sym_call] = STATE(3208), + [sym__call_without_parentheses] = STATE(3314), + [sym__call_with_parentheses] = STATE(3313), + [sym__local_call_without_parentheses] = STATE(3312), + [sym__local_call_with_parentheses] = STATE(2420), + [sym__local_call_just_do_block] = STATE(3311), + [sym__remote_call_without_parentheses] = STATE(3310), + [sym__remote_call_with_parentheses] = STATE(2423), + [sym__remote_dot] = STATE(60), + [sym__anonymous_call] = STATE(2425), + [sym__anonymous_dot] = STATE(5498), + [sym__double_call] = STATE(3309), + [sym_access_call] = STATE(3208), + [sym_anonymous_function] = STATE(3208), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(1961), + [sym_integer] = ACTIONS(1961), + [sym_float] = ACTIONS(1961), + [sym_char] = ACTIONS(1961), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(1961), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(643), + [anon_sym_not] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(649), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(655), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(657), + }, + [553] = { + [sym__expression] = STATE(3210), + [sym_block] = STATE(3210), + [sym__identifier] = STATE(61), + [sym_identifier] = STATE(61), + [sym_special_identifier] = STATE(61), + [sym_boolean] = STATE(3210), + [sym_nil] = STATE(3210), + [sym__atom] = STATE(3210), + [sym_quoted_atom] = STATE(3210), + [sym__quoted_i_double] = STATE(3318), + [sym__quoted_i_single] = STATE(3317), + [sym__quoted_i_heredoc_single] = STATE(3316), + [sym__quoted_i_heredoc_double] = STATE(3315), + [sym_string] = STATE(3210), + [sym_charlist] = STATE(3210), + [sym_sigil] = STATE(3210), + [sym_list] = STATE(3210), + [sym_tuple] = STATE(3210), + [sym_bitstring] = STATE(3210), + [sym_map] = STATE(3210), + [sym_unary_operator] = STATE(3210), + [sym_binary_operator] = STATE(3210), + [sym_operator_identifier] = STATE(5628), + [sym_dot] = STATE(3210), + [sym_call] = STATE(3210), + [sym__call_without_parentheses] = STATE(3314), + [sym__call_with_parentheses] = STATE(3313), + [sym__local_call_without_parentheses] = STATE(3312), + [sym__local_call_with_parentheses] = STATE(2420), + [sym__local_call_just_do_block] = STATE(3311), + [sym__remote_call_without_parentheses] = STATE(3310), + [sym__remote_call_with_parentheses] = STATE(2423), + [sym__remote_dot] = STATE(60), + [sym__anonymous_call] = STATE(2425), + [sym__anonymous_dot] = STATE(5498), + [sym__double_call] = STATE(3309), + [sym_access_call] = STATE(3210), + [sym_anonymous_function] = STATE(3210), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(1963), + [sym_integer] = ACTIONS(1963), + [sym_float] = ACTIONS(1963), + [sym_char] = ACTIONS(1963), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(1963), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(643), + [anon_sym_not] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(649), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(655), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(657), + }, + [554] = { + [sym__expression] = STATE(3211), + [sym_block] = STATE(3211), + [sym__identifier] = STATE(61), + [sym_identifier] = STATE(61), + [sym_special_identifier] = STATE(61), + [sym_boolean] = STATE(3211), + [sym_nil] = STATE(3211), + [sym__atom] = STATE(3211), + [sym_quoted_atom] = STATE(3211), + [sym__quoted_i_double] = STATE(3318), + [sym__quoted_i_single] = STATE(3317), + [sym__quoted_i_heredoc_single] = STATE(3316), + [sym__quoted_i_heredoc_double] = STATE(3315), + [sym_string] = STATE(3211), + [sym_charlist] = STATE(3211), + [sym_sigil] = STATE(3211), + [sym_list] = STATE(3211), + [sym_tuple] = STATE(3211), + [sym_bitstring] = STATE(3211), + [sym_map] = STATE(3211), + [sym_unary_operator] = STATE(3211), + [sym_binary_operator] = STATE(3211), + [sym_operator_identifier] = STATE(5628), + [sym_dot] = STATE(3211), + [sym_call] = STATE(3211), + [sym__call_without_parentheses] = STATE(3314), + [sym__call_with_parentheses] = STATE(3313), + [sym__local_call_without_parentheses] = STATE(3312), + [sym__local_call_with_parentheses] = STATE(2420), + [sym__local_call_just_do_block] = STATE(3311), + [sym__remote_call_without_parentheses] = STATE(3310), + [sym__remote_call_with_parentheses] = STATE(2423), + [sym__remote_dot] = STATE(60), + [sym__anonymous_call] = STATE(2425), + [sym__anonymous_dot] = STATE(5498), + [sym__double_call] = STATE(3309), + [sym_access_call] = STATE(3211), + [sym_anonymous_function] = STATE(3211), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(1965), + [sym_integer] = ACTIONS(1965), + [sym_float] = ACTIONS(1965), + [sym_char] = ACTIONS(1965), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(643), + [anon_sym_not] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(649), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(655), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(657), + }, + [555] = { + [sym__expression] = STATE(3496), + [sym_block] = STATE(3496), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3496), + [sym_nil] = STATE(3496), + [sym__atom] = STATE(3496), + [sym_quoted_atom] = STATE(3496), + [sym__quoted_i_double] = STATE(1540), + [sym__quoted_i_single] = STATE(1541), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(3496), + [sym_charlist] = STATE(3496), + [sym_sigil] = STATE(3496), + [sym_list] = STATE(3496), + [sym_tuple] = STATE(3496), + [sym_bitstring] = STATE(3496), + [sym_map] = STATE(3496), + [sym_unary_operator] = STATE(3496), + [sym_binary_operator] = STATE(3496), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(3496), + [sym_call] = STATE(3496), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(3496), + [sym_anonymous_function] = STATE(3496), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1337), [aux_sym_identifier_token1] = ACTIONS(704), [anon_sym_DOT_DOT_DOT] = ACTIONS(704), [sym_unused_identifier] = ACTIONS(706), @@ -103968,14 +96981,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ENV__] = ACTIONS(708), [anon_sym___CALLER__] = ACTIONS(708), [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(2079), - [sym_integer] = ACTIONS(2079), - [sym_float] = ACTIONS(2079), - [sym_char] = ACTIONS(2079), + [sym_alias] = ACTIONS(1967), + [sym_integer] = ACTIONS(1967), + [sym_float] = ACTIONS(1967), + [sym_char] = ACTIONS(1967), [anon_sym_true] = ACTIONS(75), [anon_sym_false] = ACTIONS(75), [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(2079), + [sym_atom] = ACTIONS(1967), [anon_sym_DQUOTE] = ACTIONS(79), [anon_sym_SQUOTE] = ACTIONS(81), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), @@ -104044,84 +97057,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(121), }, - [617] = { - [sym__expression] = STATE(1583), - [sym_block] = STATE(1583), - [sym__identifier] = STATE(14), - [sym_identifier] = STATE(14), - [sym_special_identifier] = STATE(14), - [sym_boolean] = STATE(1583), - [sym_nil] = STATE(1583), - [sym__atom] = STATE(1583), - [sym_quoted_atom] = STATE(1583), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(1583), - [sym_charlist] = STATE(1583), - [sym_sigil] = STATE(1583), - [sym_list] = STATE(1583), - [sym_tuple] = STATE(1583), - [sym_bitstring] = STATE(1583), - [sym_map] = STATE(1583), - [sym_unary_operator] = STATE(1583), - [sym_binary_operator] = STATE(1583), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(1583), - [sym_call] = STATE(1583), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(1583), - [sym_anonymous_function] = STATE(1583), + [556] = { + [sym__expression] = STATE(1669), + [sym_block] = STATE(1669), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(1669), + [sym_nil] = STATE(1669), + [sym__atom] = STATE(1669), + [sym_quoted_atom] = STATE(1669), + [sym__quoted_i_double] = STATE(1540), + [sym__quoted_i_single] = STATE(1541), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1669), + [sym_charlist] = STATE(1669), + [sym_sigil] = STATE(1669), + [sym_list] = STATE(1669), + [sym_tuple] = STATE(1669), + [sym_bitstring] = STATE(1669), + [sym_map] = STATE(1669), + [sym_unary_operator] = STATE(1669), + [sym_binary_operator] = STATE(1669), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1669), + [sym_call] = STATE(1669), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1669), + [sym_anonymous_function] = STATE(1669), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(197), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), - [sym_alias] = ACTIONS(2081), - [sym_integer] = ACTIONS(2081), - [sym_float] = ACTIONS(2081), - [sym_char] = ACTIONS(2081), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LPAREN] = ACTIONS(1337), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1969), + [sym_integer] = ACTIONS(1969), + [sym_float] = ACTIONS(1969), + [sym_char] = ACTIONS(1969), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1969), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(222), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(230), - [anon_sym_PLUS] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_CARET] = ACTIONS(235), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(235), - [anon_sym_not] = ACTIONS(235), - [anon_sym_AT] = ACTIONS(237), + [anon_sym_TILDE] = ACTIONS(712), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -104161,71 +97174,2446 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), + [anon_sym_fn] = ACTIONS(115), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(243), + [sym__before_unary_op] = ACTIONS(722), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), + [sym__quoted_atom_start] = ACTIONS(121), }, - [618] = { - [sym__expression] = STATE(3163), - [sym_block] = STATE(3163), + [557] = { + [sym__expression] = STATE(3212), + [sym_block] = STATE(3212), + [sym__identifier] = STATE(61), + [sym_identifier] = STATE(61), + [sym_special_identifier] = STATE(61), + [sym_boolean] = STATE(3212), + [sym_nil] = STATE(3212), + [sym__atom] = STATE(3212), + [sym_quoted_atom] = STATE(3212), + [sym__quoted_i_double] = STATE(3318), + [sym__quoted_i_single] = STATE(3317), + [sym__quoted_i_heredoc_single] = STATE(3316), + [sym__quoted_i_heredoc_double] = STATE(3315), + [sym_string] = STATE(3212), + [sym_charlist] = STATE(3212), + [sym_sigil] = STATE(3212), + [sym_list] = STATE(3212), + [sym_tuple] = STATE(3212), + [sym_bitstring] = STATE(3212), + [sym_map] = STATE(3212), + [sym_unary_operator] = STATE(3212), + [sym_binary_operator] = STATE(3212), + [sym_operator_identifier] = STATE(5628), + [sym_dot] = STATE(3212), + [sym_call] = STATE(3212), + [sym__call_without_parentheses] = STATE(3314), + [sym__call_with_parentheses] = STATE(3313), + [sym__local_call_without_parentheses] = STATE(3312), + [sym__local_call_with_parentheses] = STATE(2420), + [sym__local_call_just_do_block] = STATE(3311), + [sym__remote_call_without_parentheses] = STATE(3310), + [sym__remote_call_with_parentheses] = STATE(2423), + [sym__remote_dot] = STATE(60), + [sym__anonymous_call] = STATE(2425), + [sym__anonymous_dot] = STATE(5498), + [sym__double_call] = STATE(3309), + [sym_access_call] = STATE(3212), + [sym_anonymous_function] = STATE(3212), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(1971), + [sym_integer] = ACTIONS(1971), + [sym_float] = ACTIONS(1971), + [sym_char] = ACTIONS(1971), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(1971), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(643), + [anon_sym_not] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(649), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(655), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(657), + }, + [558] = { + [sym__expression] = STATE(3217), + [sym_block] = STATE(3217), + [sym__identifier] = STATE(61), + [sym_identifier] = STATE(61), + [sym_special_identifier] = STATE(61), + [sym_boolean] = STATE(3217), + [sym_nil] = STATE(3217), + [sym__atom] = STATE(3217), + [sym_quoted_atom] = STATE(3217), + [sym__quoted_i_double] = STATE(3318), + [sym__quoted_i_single] = STATE(3317), + [sym__quoted_i_heredoc_single] = STATE(3316), + [sym__quoted_i_heredoc_double] = STATE(3315), + [sym_string] = STATE(3217), + [sym_charlist] = STATE(3217), + [sym_sigil] = STATE(3217), + [sym_list] = STATE(3217), + [sym_tuple] = STATE(3217), + [sym_bitstring] = STATE(3217), + [sym_map] = STATE(3217), + [sym_unary_operator] = STATE(3217), + [sym_binary_operator] = STATE(3217), + [sym_operator_identifier] = STATE(5628), + [sym_dot] = STATE(3217), + [sym_call] = STATE(3217), + [sym__call_without_parentheses] = STATE(3314), + [sym__call_with_parentheses] = STATE(3313), + [sym__local_call_without_parentheses] = STATE(3312), + [sym__local_call_with_parentheses] = STATE(2420), + [sym__local_call_just_do_block] = STATE(3311), + [sym__remote_call_without_parentheses] = STATE(3310), + [sym__remote_call_with_parentheses] = STATE(2423), + [sym__remote_dot] = STATE(60), + [sym__anonymous_call] = STATE(2425), + [sym__anonymous_dot] = STATE(5498), + [sym__double_call] = STATE(3309), + [sym_access_call] = STATE(3217), + [sym_anonymous_function] = STATE(3217), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(1973), + [sym_integer] = ACTIONS(1973), + [sym_float] = ACTIONS(1973), + [sym_char] = ACTIONS(1973), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(1973), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(643), + [anon_sym_not] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(649), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(655), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(657), + }, + [559] = { + [sym__expression] = STATE(1492), + [sym_block] = STATE(1492), + [sym__identifier] = STATE(18), + [sym_identifier] = STATE(18), + [sym_special_identifier] = STATE(18), + [sym_boolean] = STATE(1492), + [sym_nil] = STATE(1492), + [sym__atom] = STATE(1492), + [sym_quoted_atom] = STATE(1492), + [sym__quoted_i_double] = STATE(1250), + [sym__quoted_i_single] = STATE(1249), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(1492), + [sym_charlist] = STATE(1492), + [sym_sigil] = STATE(1492), + [sym_list] = STATE(1492), + [sym_tuple] = STATE(1492), + [sym_bitstring] = STATE(1492), + [sym_map] = STATE(1492), + [sym_unary_operator] = STATE(1492), + [sym_binary_operator] = STATE(1492), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(1492), + [sym_call] = STATE(1492), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(1492), + [sym_anonymous_function] = STATE(1492), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(1975), + [sym_integer] = ACTIONS(1975), + [sym_float] = ACTIONS(1975), + [sym_char] = ACTIONS(1975), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [560] = { + [sym__expression] = STATE(3645), + [sym_block] = STATE(3645), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3645), + [sym_nil] = STATE(3645), + [sym__atom] = STATE(3645), + [sym_quoted_atom] = STATE(3645), + [sym__quoted_i_double] = STATE(1540), + [sym__quoted_i_single] = STATE(1541), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(3645), + [sym_charlist] = STATE(3645), + [sym_sigil] = STATE(3645), + [sym_list] = STATE(3645), + [sym_tuple] = STATE(3645), + [sym_bitstring] = STATE(3645), + [sym_map] = STATE(3645), + [sym_unary_operator] = STATE(3645), + [sym_binary_operator] = STATE(3645), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(3645), + [sym_call] = STATE(3645), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(3645), + [sym_anonymous_function] = STATE(3645), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1337), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1977), + [sym_integer] = ACTIONS(1977), + [sym_float] = ACTIONS(1977), + [sym_char] = ACTIONS(1977), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1977), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [561] = { + [sym__expression] = STATE(1454), + [sym_block] = STATE(1454), + [sym__identifier] = STATE(18), + [sym_identifier] = STATE(18), + [sym_special_identifier] = STATE(18), + [sym_boolean] = STATE(1454), + [sym_nil] = STATE(1454), + [sym__atom] = STATE(1454), + [sym_quoted_atom] = STATE(1454), + [sym__quoted_i_double] = STATE(1250), + [sym__quoted_i_single] = STATE(1249), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(1454), + [sym_charlist] = STATE(1454), + [sym_sigil] = STATE(1454), + [sym_list] = STATE(1454), + [sym_tuple] = STATE(1454), + [sym_bitstring] = STATE(1454), + [sym_map] = STATE(1454), + [sym_unary_operator] = STATE(1454), + [sym_binary_operator] = STATE(1454), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(1454), + [sym_call] = STATE(1454), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(1454), + [sym_anonymous_function] = STATE(1454), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(1979), + [sym_integer] = ACTIONS(1979), + [sym_float] = ACTIONS(1979), + [sym_char] = ACTIONS(1979), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(1979), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [562] = { + [sym__expression] = STATE(1438), + [sym_block] = STATE(1438), + [sym__identifier] = STATE(18), + [sym_identifier] = STATE(18), + [sym_special_identifier] = STATE(18), + [sym_boolean] = STATE(1438), + [sym_nil] = STATE(1438), + [sym__atom] = STATE(1438), + [sym_quoted_atom] = STATE(1438), + [sym__quoted_i_double] = STATE(1250), + [sym__quoted_i_single] = STATE(1249), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(1438), + [sym_charlist] = STATE(1438), + [sym_sigil] = STATE(1438), + [sym_list] = STATE(1438), + [sym_tuple] = STATE(1438), + [sym_bitstring] = STATE(1438), + [sym_map] = STATE(1438), + [sym_unary_operator] = STATE(1438), + [sym_binary_operator] = STATE(1438), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(1438), + [sym_call] = STATE(1438), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(1438), + [sym_anonymous_function] = STATE(1438), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(1981), + [sym_integer] = ACTIONS(1981), + [sym_float] = ACTIONS(1981), + [sym_char] = ACTIONS(1981), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [563] = { + [sym__expression] = STATE(1433), + [sym_block] = STATE(1433), + [sym__identifier] = STATE(18), + [sym_identifier] = STATE(18), + [sym_special_identifier] = STATE(18), + [sym_boolean] = STATE(1433), + [sym_nil] = STATE(1433), + [sym__atom] = STATE(1433), + [sym_quoted_atom] = STATE(1433), + [sym__quoted_i_double] = STATE(1250), + [sym__quoted_i_single] = STATE(1249), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(1433), + [sym_charlist] = STATE(1433), + [sym_sigil] = STATE(1433), + [sym_list] = STATE(1433), + [sym_tuple] = STATE(1433), + [sym_bitstring] = STATE(1433), + [sym_map] = STATE(1433), + [sym_unary_operator] = STATE(1433), + [sym_binary_operator] = STATE(1433), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(1433), + [sym_call] = STATE(1433), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(1433), + [sym_anonymous_function] = STATE(1433), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(1983), + [sym_integer] = ACTIONS(1983), + [sym_float] = ACTIONS(1983), + [sym_char] = ACTIONS(1983), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(1983), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [564] = { + [sym__expression] = STATE(3699), + [sym_block] = STATE(3699), [sym__identifier] = STATE(54), [sym_identifier] = STATE(54), [sym_special_identifier] = STATE(54), - [sym_boolean] = STATE(3163), - [sym_nil] = STATE(3163), - [sym__atom] = STATE(3163), - [sym_quoted_atom] = STATE(3163), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3163), - [sym_charlist] = STATE(3163), - [sym_sigil] = STATE(3163), - [sym_list] = STATE(3163), - [sym_tuple] = STATE(3163), - [sym_bitstring] = STATE(3163), - [sym_map] = STATE(3163), - [sym_unary_operator] = STATE(3163), - [sym_binary_operator] = STATE(3163), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3163), - [sym_call] = STATE(3163), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3163), - [sym_anonymous_function] = STATE(3163), + [sym_boolean] = STATE(3699), + [sym_nil] = STATE(3699), + [sym__atom] = STATE(3699), + [sym_quoted_atom] = STATE(3699), + [sym__quoted_i_double] = STATE(3664), + [sym__quoted_i_single] = STATE(3697), + [sym__quoted_i_heredoc_single] = STATE(3698), + [sym__quoted_i_heredoc_double] = STATE(3702), + [sym_string] = STATE(3699), + [sym_charlist] = STATE(3699), + [sym_sigil] = STATE(3699), + [sym_list] = STATE(3699), + [sym_tuple] = STATE(3699), + [sym_bitstring] = STATE(3699), + [sym_map] = STATE(3699), + [sym_unary_operator] = STATE(3699), + [sym_binary_operator] = STATE(3699), + [sym_operator_identifier] = STATE(5655), + [sym_dot] = STATE(3699), + [sym_call] = STATE(3699), + [sym__call_without_parentheses] = STATE(3705), + [sym__call_with_parentheses] = STATE(3725), + [sym__local_call_without_parentheses] = STATE(3765), + [sym__local_call_with_parentheses] = STATE(2681), + [sym__local_call_just_do_block] = STATE(3808), + [sym__remote_call_without_parentheses] = STATE(3810), + [sym__remote_call_with_parentheses] = STATE(2682), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2683), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(3811), + [sym_access_call] = STATE(3699), + [sym_anonymous_function] = STATE(3699), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), + [sym_alias] = ACTIONS(1985), + [sym_integer] = ACTIONS(1985), + [sym_float] = ACTIONS(1985), + [sym_char] = ACTIONS(1985), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), + [sym_atom] = ACTIONS(1985), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(55), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(59), + }, + [565] = { + [sym__expression] = STATE(3218), + [sym_block] = STATE(3218), + [sym__identifier] = STATE(61), + [sym_identifier] = STATE(61), + [sym_special_identifier] = STATE(61), + [sym_boolean] = STATE(3218), + [sym_nil] = STATE(3218), + [sym__atom] = STATE(3218), + [sym_quoted_atom] = STATE(3218), + [sym__quoted_i_double] = STATE(3318), + [sym__quoted_i_single] = STATE(3317), + [sym__quoted_i_heredoc_single] = STATE(3316), + [sym__quoted_i_heredoc_double] = STATE(3315), + [sym_string] = STATE(3218), + [sym_charlist] = STATE(3218), + [sym_sigil] = STATE(3218), + [sym_list] = STATE(3218), + [sym_tuple] = STATE(3218), + [sym_bitstring] = STATE(3218), + [sym_map] = STATE(3218), + [sym_unary_operator] = STATE(3218), + [sym_binary_operator] = STATE(3218), + [sym_operator_identifier] = STATE(5628), + [sym_dot] = STATE(3218), + [sym_call] = STATE(3218), + [sym__call_without_parentheses] = STATE(3314), + [sym__call_with_parentheses] = STATE(3313), + [sym__local_call_without_parentheses] = STATE(3312), + [sym__local_call_with_parentheses] = STATE(2420), + [sym__local_call_just_do_block] = STATE(3311), + [sym__remote_call_without_parentheses] = STATE(3310), + [sym__remote_call_with_parentheses] = STATE(2423), + [sym__remote_dot] = STATE(60), + [sym__anonymous_call] = STATE(2425), + [sym__anonymous_dot] = STATE(5498), + [sym__double_call] = STATE(3309), + [sym_access_call] = STATE(3218), + [sym_anonymous_function] = STATE(3218), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(1987), + [sym_integer] = ACTIONS(1987), + [sym_float] = ACTIONS(1987), + [sym_char] = ACTIONS(1987), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(643), + [anon_sym_not] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(649), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(655), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(657), + }, + [566] = { + [sym__expression] = STATE(3219), + [sym_block] = STATE(3219), + [sym__identifier] = STATE(61), + [sym_identifier] = STATE(61), + [sym_special_identifier] = STATE(61), + [sym_boolean] = STATE(3219), + [sym_nil] = STATE(3219), + [sym__atom] = STATE(3219), + [sym_quoted_atom] = STATE(3219), + [sym__quoted_i_double] = STATE(3318), + [sym__quoted_i_single] = STATE(3317), + [sym__quoted_i_heredoc_single] = STATE(3316), + [sym__quoted_i_heredoc_double] = STATE(3315), + [sym_string] = STATE(3219), + [sym_charlist] = STATE(3219), + [sym_sigil] = STATE(3219), + [sym_list] = STATE(3219), + [sym_tuple] = STATE(3219), + [sym_bitstring] = STATE(3219), + [sym_map] = STATE(3219), + [sym_unary_operator] = STATE(3219), + [sym_binary_operator] = STATE(3219), + [sym_operator_identifier] = STATE(5628), + [sym_dot] = STATE(3219), + [sym_call] = STATE(3219), + [sym__call_without_parentheses] = STATE(3314), + [sym__call_with_parentheses] = STATE(3313), + [sym__local_call_without_parentheses] = STATE(3312), + [sym__local_call_with_parentheses] = STATE(2420), + [sym__local_call_just_do_block] = STATE(3311), + [sym__remote_call_without_parentheses] = STATE(3310), + [sym__remote_call_with_parentheses] = STATE(2423), + [sym__remote_dot] = STATE(60), + [sym__anonymous_call] = STATE(2425), + [sym__anonymous_dot] = STATE(5498), + [sym__double_call] = STATE(3309), + [sym_access_call] = STATE(3219), + [sym_anonymous_function] = STATE(3219), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(1989), + [sym_integer] = ACTIONS(1989), + [sym_float] = ACTIONS(1989), + [sym_char] = ACTIONS(1989), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(1989), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(643), + [anon_sym_not] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(649), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(655), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(657), + }, + [567] = { + [sym__expression] = STATE(3220), + [sym_block] = STATE(3220), + [sym__identifier] = STATE(61), + [sym_identifier] = STATE(61), + [sym_special_identifier] = STATE(61), + [sym_boolean] = STATE(3220), + [sym_nil] = STATE(3220), + [sym__atom] = STATE(3220), + [sym_quoted_atom] = STATE(3220), + [sym__quoted_i_double] = STATE(3318), + [sym__quoted_i_single] = STATE(3317), + [sym__quoted_i_heredoc_single] = STATE(3316), + [sym__quoted_i_heredoc_double] = STATE(3315), + [sym_string] = STATE(3220), + [sym_charlist] = STATE(3220), + [sym_sigil] = STATE(3220), + [sym_list] = STATE(3220), + [sym_tuple] = STATE(3220), + [sym_bitstring] = STATE(3220), + [sym_map] = STATE(3220), + [sym_unary_operator] = STATE(3220), + [sym_binary_operator] = STATE(3220), + [sym_operator_identifier] = STATE(5628), + [sym_dot] = STATE(3220), + [sym_call] = STATE(3220), + [sym__call_without_parentheses] = STATE(3314), + [sym__call_with_parentheses] = STATE(3313), + [sym__local_call_without_parentheses] = STATE(3312), + [sym__local_call_with_parentheses] = STATE(2420), + [sym__local_call_just_do_block] = STATE(3311), + [sym__remote_call_without_parentheses] = STATE(3310), + [sym__remote_call_with_parentheses] = STATE(2423), + [sym__remote_dot] = STATE(60), + [sym__anonymous_call] = STATE(2425), + [sym__anonymous_dot] = STATE(5498), + [sym__double_call] = STATE(3309), + [sym_access_call] = STATE(3220), + [sym_anonymous_function] = STATE(3220), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(1991), + [sym_integer] = ACTIONS(1991), + [sym_float] = ACTIONS(1991), + [sym_char] = ACTIONS(1991), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(1991), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(643), + [anon_sym_not] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(649), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(655), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(657), + }, + [568] = { + [sym__expression] = STATE(3221), + [sym_block] = STATE(3221), + [sym__identifier] = STATE(61), + [sym_identifier] = STATE(61), + [sym_special_identifier] = STATE(61), + [sym_boolean] = STATE(3221), + [sym_nil] = STATE(3221), + [sym__atom] = STATE(3221), + [sym_quoted_atom] = STATE(3221), + [sym__quoted_i_double] = STATE(3318), + [sym__quoted_i_single] = STATE(3317), + [sym__quoted_i_heredoc_single] = STATE(3316), + [sym__quoted_i_heredoc_double] = STATE(3315), + [sym_string] = STATE(3221), + [sym_charlist] = STATE(3221), + [sym_sigil] = STATE(3221), + [sym_list] = STATE(3221), + [sym_tuple] = STATE(3221), + [sym_bitstring] = STATE(3221), + [sym_map] = STATE(3221), + [sym_unary_operator] = STATE(3221), + [sym_binary_operator] = STATE(3221), + [sym_operator_identifier] = STATE(5628), + [sym_dot] = STATE(3221), + [sym_call] = STATE(3221), + [sym__call_without_parentheses] = STATE(3314), + [sym__call_with_parentheses] = STATE(3313), + [sym__local_call_without_parentheses] = STATE(3312), + [sym__local_call_with_parentheses] = STATE(2420), + [sym__local_call_just_do_block] = STATE(3311), + [sym__remote_call_without_parentheses] = STATE(3310), + [sym__remote_call_with_parentheses] = STATE(2423), + [sym__remote_dot] = STATE(60), + [sym__anonymous_call] = STATE(2425), + [sym__anonymous_dot] = STATE(5498), + [sym__double_call] = STATE(3309), + [sym_access_call] = STATE(3221), + [sym_anonymous_function] = STATE(3221), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(1993), + [sym_integer] = ACTIONS(1993), + [sym_float] = ACTIONS(1993), + [sym_char] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(1993), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(643), + [anon_sym_not] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(649), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(655), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(657), + }, + [569] = { + [sym__expression] = STATE(3222), + [sym_block] = STATE(3222), + [sym__identifier] = STATE(61), + [sym_identifier] = STATE(61), + [sym_special_identifier] = STATE(61), + [sym_boolean] = STATE(3222), + [sym_nil] = STATE(3222), + [sym__atom] = STATE(3222), + [sym_quoted_atom] = STATE(3222), + [sym__quoted_i_double] = STATE(3318), + [sym__quoted_i_single] = STATE(3317), + [sym__quoted_i_heredoc_single] = STATE(3316), + [sym__quoted_i_heredoc_double] = STATE(3315), + [sym_string] = STATE(3222), + [sym_charlist] = STATE(3222), + [sym_sigil] = STATE(3222), + [sym_list] = STATE(3222), + [sym_tuple] = STATE(3222), + [sym_bitstring] = STATE(3222), + [sym_map] = STATE(3222), + [sym_unary_operator] = STATE(3222), + [sym_binary_operator] = STATE(3222), + [sym_operator_identifier] = STATE(5628), + [sym_dot] = STATE(3222), + [sym_call] = STATE(3222), + [sym__call_without_parentheses] = STATE(3314), + [sym__call_with_parentheses] = STATE(3313), + [sym__local_call_without_parentheses] = STATE(3312), + [sym__local_call_with_parentheses] = STATE(2420), + [sym__local_call_just_do_block] = STATE(3311), + [sym__remote_call_without_parentheses] = STATE(3310), + [sym__remote_call_with_parentheses] = STATE(2423), + [sym__remote_dot] = STATE(60), + [sym__anonymous_call] = STATE(2425), + [sym__anonymous_dot] = STATE(5498), + [sym__double_call] = STATE(3309), + [sym_access_call] = STATE(3222), + [sym_anonymous_function] = STATE(3222), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(1995), + [sym_integer] = ACTIONS(1995), + [sym_float] = ACTIONS(1995), + [sym_char] = ACTIONS(1995), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(1995), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(643), + [anon_sym_not] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(649), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(655), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(657), + }, + [570] = { + [sym__expression] = STATE(3223), + [sym_block] = STATE(3223), + [sym__identifier] = STATE(61), + [sym_identifier] = STATE(61), + [sym_special_identifier] = STATE(61), + [sym_boolean] = STATE(3223), + [sym_nil] = STATE(3223), + [sym__atom] = STATE(3223), + [sym_quoted_atom] = STATE(3223), + [sym__quoted_i_double] = STATE(3318), + [sym__quoted_i_single] = STATE(3317), + [sym__quoted_i_heredoc_single] = STATE(3316), + [sym__quoted_i_heredoc_double] = STATE(3315), + [sym_string] = STATE(3223), + [sym_charlist] = STATE(3223), + [sym_sigil] = STATE(3223), + [sym_list] = STATE(3223), + [sym_tuple] = STATE(3223), + [sym_bitstring] = STATE(3223), + [sym_map] = STATE(3223), + [sym_unary_operator] = STATE(3223), + [sym_binary_operator] = STATE(3223), + [sym_operator_identifier] = STATE(5628), + [sym_dot] = STATE(3223), + [sym_call] = STATE(3223), + [sym__call_without_parentheses] = STATE(3314), + [sym__call_with_parentheses] = STATE(3313), + [sym__local_call_without_parentheses] = STATE(3312), + [sym__local_call_with_parentheses] = STATE(2420), + [sym__local_call_just_do_block] = STATE(3311), + [sym__remote_call_without_parentheses] = STATE(3310), + [sym__remote_call_with_parentheses] = STATE(2423), + [sym__remote_dot] = STATE(60), + [sym__anonymous_call] = STATE(2425), + [sym__anonymous_dot] = STATE(5498), + [sym__double_call] = STATE(3309), + [sym_access_call] = STATE(3223), + [sym_anonymous_function] = STATE(3223), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(1997), + [sym_integer] = ACTIONS(1997), + [sym_float] = ACTIONS(1997), + [sym_char] = ACTIONS(1997), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(1997), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(643), + [anon_sym_not] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(649), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(655), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(657), + }, + [571] = { + [sym__expression] = STATE(3224), + [sym_block] = STATE(3224), + [sym__identifier] = STATE(61), + [sym_identifier] = STATE(61), + [sym_special_identifier] = STATE(61), + [sym_boolean] = STATE(3224), + [sym_nil] = STATE(3224), + [sym__atom] = STATE(3224), + [sym_quoted_atom] = STATE(3224), + [sym__quoted_i_double] = STATE(3318), + [sym__quoted_i_single] = STATE(3317), + [sym__quoted_i_heredoc_single] = STATE(3316), + [sym__quoted_i_heredoc_double] = STATE(3315), + [sym_string] = STATE(3224), + [sym_charlist] = STATE(3224), + [sym_sigil] = STATE(3224), + [sym_list] = STATE(3224), + [sym_tuple] = STATE(3224), + [sym_bitstring] = STATE(3224), + [sym_map] = STATE(3224), + [sym_unary_operator] = STATE(3224), + [sym_binary_operator] = STATE(3224), + [sym_operator_identifier] = STATE(5628), + [sym_dot] = STATE(3224), + [sym_call] = STATE(3224), + [sym__call_without_parentheses] = STATE(3314), + [sym__call_with_parentheses] = STATE(3313), + [sym__local_call_without_parentheses] = STATE(3312), + [sym__local_call_with_parentheses] = STATE(2420), + [sym__local_call_just_do_block] = STATE(3311), + [sym__remote_call_without_parentheses] = STATE(3310), + [sym__remote_call_with_parentheses] = STATE(2423), + [sym__remote_dot] = STATE(60), + [sym__anonymous_call] = STATE(2425), + [sym__anonymous_dot] = STATE(5498), + [sym__double_call] = STATE(3309), + [sym_access_call] = STATE(3224), + [sym_anonymous_function] = STATE(3224), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(1999), + [sym_integer] = ACTIONS(1999), + [sym_float] = ACTIONS(1999), + [sym_char] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(1999), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(643), + [anon_sym_not] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(649), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(655), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(657), + }, + [572] = { + [sym__expression] = STATE(3225), + [sym_block] = STATE(3225), + [sym__identifier] = STATE(61), + [sym_identifier] = STATE(61), + [sym_special_identifier] = STATE(61), + [sym_boolean] = STATE(3225), + [sym_nil] = STATE(3225), + [sym__atom] = STATE(3225), + [sym_quoted_atom] = STATE(3225), + [sym__quoted_i_double] = STATE(3318), + [sym__quoted_i_single] = STATE(3317), + [sym__quoted_i_heredoc_single] = STATE(3316), + [sym__quoted_i_heredoc_double] = STATE(3315), + [sym_string] = STATE(3225), + [sym_charlist] = STATE(3225), + [sym_sigil] = STATE(3225), + [sym_list] = STATE(3225), + [sym_tuple] = STATE(3225), + [sym_bitstring] = STATE(3225), + [sym_map] = STATE(3225), + [sym_unary_operator] = STATE(3225), + [sym_binary_operator] = STATE(3225), + [sym_operator_identifier] = STATE(5628), + [sym_dot] = STATE(3225), + [sym_call] = STATE(3225), + [sym__call_without_parentheses] = STATE(3314), + [sym__call_with_parentheses] = STATE(3313), + [sym__local_call_without_parentheses] = STATE(3312), + [sym__local_call_with_parentheses] = STATE(2420), + [sym__local_call_just_do_block] = STATE(3311), + [sym__remote_call_without_parentheses] = STATE(3310), + [sym__remote_call_with_parentheses] = STATE(2423), + [sym__remote_dot] = STATE(60), + [sym__anonymous_call] = STATE(2425), + [sym__anonymous_dot] = STATE(5498), + [sym__double_call] = STATE(3309), + [sym_access_call] = STATE(3225), + [sym_anonymous_function] = STATE(3225), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(2001), + [sym_integer] = ACTIONS(2001), + [sym_float] = ACTIONS(2001), + [sym_char] = ACTIONS(2001), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(2001), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(643), + [anon_sym_not] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(649), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(655), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(657), + }, + [573] = { + [sym__expression] = STATE(3226), + [sym_block] = STATE(3226), + [sym__identifier] = STATE(61), + [sym_identifier] = STATE(61), + [sym_special_identifier] = STATE(61), + [sym_boolean] = STATE(3226), + [sym_nil] = STATE(3226), + [sym__atom] = STATE(3226), + [sym_quoted_atom] = STATE(3226), + [sym__quoted_i_double] = STATE(3318), + [sym__quoted_i_single] = STATE(3317), + [sym__quoted_i_heredoc_single] = STATE(3316), + [sym__quoted_i_heredoc_double] = STATE(3315), + [sym_string] = STATE(3226), + [sym_charlist] = STATE(3226), + [sym_sigil] = STATE(3226), + [sym_list] = STATE(3226), + [sym_tuple] = STATE(3226), + [sym_bitstring] = STATE(3226), + [sym_map] = STATE(3226), + [sym_unary_operator] = STATE(3226), + [sym_binary_operator] = STATE(3226), + [sym_operator_identifier] = STATE(5628), + [sym_dot] = STATE(3226), + [sym_call] = STATE(3226), + [sym__call_without_parentheses] = STATE(3314), + [sym__call_with_parentheses] = STATE(3313), + [sym__local_call_without_parentheses] = STATE(3312), + [sym__local_call_with_parentheses] = STATE(2420), + [sym__local_call_just_do_block] = STATE(3311), + [sym__remote_call_without_parentheses] = STATE(3310), + [sym__remote_call_with_parentheses] = STATE(2423), + [sym__remote_dot] = STATE(60), + [sym__anonymous_call] = STATE(2425), + [sym__anonymous_dot] = STATE(5498), + [sym__double_call] = STATE(3309), + [sym_access_call] = STATE(3226), + [sym_anonymous_function] = STATE(3226), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(2003), + [sym_integer] = ACTIONS(2003), + [sym_float] = ACTIONS(2003), + [sym_char] = ACTIONS(2003), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(2003), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(643), + [anon_sym_not] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(649), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(655), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(657), + }, + [574] = { + [sym__expression] = STATE(3227), + [sym_block] = STATE(3227), + [sym__identifier] = STATE(61), + [sym_identifier] = STATE(61), + [sym_special_identifier] = STATE(61), + [sym_boolean] = STATE(3227), + [sym_nil] = STATE(3227), + [sym__atom] = STATE(3227), + [sym_quoted_atom] = STATE(3227), + [sym__quoted_i_double] = STATE(3318), + [sym__quoted_i_single] = STATE(3317), + [sym__quoted_i_heredoc_single] = STATE(3316), + [sym__quoted_i_heredoc_double] = STATE(3315), + [sym_string] = STATE(3227), + [sym_charlist] = STATE(3227), + [sym_sigil] = STATE(3227), + [sym_list] = STATE(3227), + [sym_tuple] = STATE(3227), + [sym_bitstring] = STATE(3227), + [sym_map] = STATE(3227), + [sym_unary_operator] = STATE(3227), + [sym_binary_operator] = STATE(3227), + [sym_operator_identifier] = STATE(5628), + [sym_dot] = STATE(3227), + [sym_call] = STATE(3227), + [sym__call_without_parentheses] = STATE(3314), + [sym__call_with_parentheses] = STATE(3313), + [sym__local_call_without_parentheses] = STATE(3312), + [sym__local_call_with_parentheses] = STATE(2420), + [sym__local_call_just_do_block] = STATE(3311), + [sym__remote_call_without_parentheses] = STATE(3310), + [sym__remote_call_with_parentheses] = STATE(2423), + [sym__remote_dot] = STATE(60), + [sym__anonymous_call] = STATE(2425), + [sym__anonymous_dot] = STATE(5498), + [sym__double_call] = STATE(3309), + [sym_access_call] = STATE(3227), + [sym_anonymous_function] = STATE(3227), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(2005), + [sym_integer] = ACTIONS(2005), + [sym_float] = ACTIONS(2005), + [sym_char] = ACTIONS(2005), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(2005), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(643), + [anon_sym_not] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(645), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(649), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(655), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(657), + }, + [575] = { + [sym__expression] = STATE(1431), + [sym_block] = STATE(1431), + [sym__identifier] = STATE(18), + [sym_identifier] = STATE(18), + [sym_special_identifier] = STATE(18), + [sym_boolean] = STATE(1431), + [sym_nil] = STATE(1431), + [sym__atom] = STATE(1431), + [sym_quoted_atom] = STATE(1431), + [sym__quoted_i_double] = STATE(1250), + [sym__quoted_i_single] = STATE(1249), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(1431), + [sym_charlist] = STATE(1431), + [sym_sigil] = STATE(1431), + [sym_list] = STATE(1431), + [sym_tuple] = STATE(1431), + [sym_bitstring] = STATE(1431), + [sym_map] = STATE(1431), + [sym_unary_operator] = STATE(1431), + [sym_binary_operator] = STATE(1431), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(1431), + [sym_call] = STATE(1431), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(1431), + [sym_anonymous_function] = STATE(1431), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2007), + [sym_integer] = ACTIONS(2007), + [sym_float] = ACTIONS(2007), + [sym_char] = ACTIONS(2007), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2007), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [576] = { + [sym__expression] = STATE(3884), + [sym_block] = STATE(3884), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(3884), + [sym_nil] = STATE(3884), + [sym__atom] = STATE(3884), + [sym_quoted_atom] = STATE(3884), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(3884), + [sym_charlist] = STATE(3884), + [sym_sigil] = STATE(3884), + [sym_list] = STATE(3884), + [sym_tuple] = STATE(3884), + [sym_bitstring] = STATE(3884), + [sym_map] = STATE(3884), + [sym_unary_operator] = STATE(3884), + [sym_binary_operator] = STATE(3884), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(3884), + [sym_call] = STATE(3884), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(3884), + [sym_anonymous_function] = STATE(3884), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(1427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1427), - [sym_unused_identifier] = ACTIONS(1429), - [anon_sym___MODULE__] = ACTIONS(1431), - [anon_sym___DIR__] = ACTIONS(1431), - [anon_sym___ENV__] = ACTIONS(1431), - [anon_sym___CALLER__] = ACTIONS(1431), - [anon_sym___STACKTRACE__] = ACTIONS(1431), - [sym_alias] = ACTIONS(2083), - [sym_integer] = ACTIONS(2083), - [sym_float] = ACTIONS(2083), - [sym_char] = ACTIONS(2083), + [aux_sym_identifier_token1] = ACTIONS(1437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1437), + [sym_unused_identifier] = ACTIONS(1439), + [anon_sym___MODULE__] = ACTIONS(1441), + [anon_sym___DIR__] = ACTIONS(1441), + [anon_sym___ENV__] = ACTIONS(1441), + [anon_sym___CALLER__] = ACTIONS(1441), + [anon_sym___STACKTRACE__] = ACTIONS(1441), + [sym_alias] = ACTIONS(2009), + [sym_integer] = ACTIONS(2009), + [sym_float] = ACTIONS(2009), + [sym_char] = ACTIONS(2009), [anon_sym_true] = ACTIONS(948), [anon_sym_false] = ACTIONS(948), [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(2083), + [sym_atom] = ACTIONS(2009), [anon_sym_DQUOTE] = ACTIONS(952), [anon_sym_SQUOTE] = ACTIONS(954), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), @@ -104235,18 +99623,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1435), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1445), [anon_sym_LT_LT] = ACTIONS(966), [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_CARET] = ACTIONS(1441), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1441), - [anon_sym_not] = ACTIONS(1441), - [anon_sym_AT] = ACTIONS(1443), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1451), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), + [anon_sym_not] = ACTIONS(1451), + [anon_sym_AT] = ACTIONS(1453), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -104290,49 +99678,5049 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1445), + [sym__before_unary_op] = ACTIONS(1455), [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(982), }, - [619] = { - [sym__expression] = STATE(1588), - [sym_block] = STATE(1588), - [sym__identifier] = STATE(14), - [sym_identifier] = STATE(14), - [sym_special_identifier] = STATE(14), - [sym_boolean] = STATE(1588), - [sym_nil] = STATE(1588), - [sym__atom] = STATE(1588), - [sym_quoted_atom] = STATE(1588), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(1588), - [sym_charlist] = STATE(1588), - [sym_sigil] = STATE(1588), - [sym_list] = STATE(1588), - [sym_tuple] = STATE(1588), - [sym_bitstring] = STATE(1588), - [sym_map] = STATE(1588), - [sym_unary_operator] = STATE(1588), - [sym_binary_operator] = STATE(1588), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(1588), - [sym_call] = STATE(1588), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(1588), - [sym_anonymous_function] = STATE(1588), + [577] = { + [sym__expression] = STATE(1427), + [sym_block] = STATE(1427), + [sym__identifier] = STATE(18), + [sym_identifier] = STATE(18), + [sym_special_identifier] = STATE(18), + [sym_boolean] = STATE(1427), + [sym_nil] = STATE(1427), + [sym__atom] = STATE(1427), + [sym_quoted_atom] = STATE(1427), + [sym__quoted_i_double] = STATE(1250), + [sym__quoted_i_single] = STATE(1249), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(1427), + [sym_charlist] = STATE(1427), + [sym_sigil] = STATE(1427), + [sym_list] = STATE(1427), + [sym_tuple] = STATE(1427), + [sym_bitstring] = STATE(1427), + [sym_map] = STATE(1427), + [sym_unary_operator] = STATE(1427), + [sym_binary_operator] = STATE(1427), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(1427), + [sym_call] = STATE(1427), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(1427), + [sym_anonymous_function] = STATE(1427), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2011), + [sym_integer] = ACTIONS(2011), + [sym_float] = ACTIONS(2011), + [sym_char] = ACTIONS(2011), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2011), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [578] = { + [sym__expression] = STATE(1791), + [sym_block] = STATE(1791), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(1791), + [sym_nil] = STATE(1791), + [sym__atom] = STATE(1791), + [sym_quoted_atom] = STATE(1791), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(1791), + [sym_charlist] = STATE(1791), + [sym_sigil] = STATE(1791), + [sym_list] = STATE(1791), + [sym_tuple] = STATE(1791), + [sym_bitstring] = STATE(1791), + [sym_map] = STATE(1791), + [sym_unary_operator] = STATE(1791), + [sym_binary_operator] = STATE(1791), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(1791), + [sym_call] = STATE(1791), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(1791), + [sym_anonymous_function] = STATE(1791), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1437), + [sym_unused_identifier] = ACTIONS(1439), + [anon_sym___MODULE__] = ACTIONS(1441), + [anon_sym___DIR__] = ACTIONS(1441), + [anon_sym___ENV__] = ACTIONS(1441), + [anon_sym___CALLER__] = ACTIONS(1441), + [anon_sym___STACKTRACE__] = ACTIONS(1441), + [sym_alias] = ACTIONS(1767), + [sym_integer] = ACTIONS(1767), + [sym_float] = ACTIONS(1767), + [sym_char] = ACTIONS(1767), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1767), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1445), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1451), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), + [anon_sym_not] = ACTIONS(1451), + [anon_sym_AT] = ACTIONS(1453), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1455), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [579] = { + [sym__expression] = STATE(3278), + [sym_block] = STATE(3278), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3278), + [sym_nil] = STATE(3278), + [sym__atom] = STATE(3278), + [sym_quoted_atom] = STATE(3278), + [sym__quoted_i_double] = STATE(1540), + [sym__quoted_i_single] = STATE(1541), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(3278), + [sym_charlist] = STATE(3278), + [sym_sigil] = STATE(3278), + [sym_list] = STATE(3278), + [sym_tuple] = STATE(3278), + [sym_bitstring] = STATE(3278), + [sym_map] = STATE(3278), + [sym_unary_operator] = STATE(3278), + [sym_binary_operator] = STATE(3278), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(3278), + [sym_call] = STATE(3278), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(3278), + [sym_anonymous_function] = STATE(3278), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1337), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(2013), + [sym_integer] = ACTIONS(2013), + [sym_float] = ACTIONS(2013), + [sym_char] = ACTIONS(2013), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(2013), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [580] = { + [sym__expression] = STATE(3401), + [sym_block] = STATE(3401), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3401), + [sym_nil] = STATE(3401), + [sym__atom] = STATE(3401), + [sym_quoted_atom] = STATE(3401), + [sym__quoted_i_double] = STATE(1540), + [sym__quoted_i_single] = STATE(1541), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(3401), + [sym_charlist] = STATE(3401), + [sym_sigil] = STATE(3401), + [sym_list] = STATE(3401), + [sym_tuple] = STATE(3401), + [sym_bitstring] = STATE(3401), + [sym_map] = STATE(3401), + [sym_unary_operator] = STATE(3401), + [sym_binary_operator] = STATE(3401), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(3401), + [sym_call] = STATE(3401), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(3401), + [sym_anonymous_function] = STATE(3401), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1337), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(2015), + [sym_integer] = ACTIONS(2015), + [sym_float] = ACTIONS(2015), + [sym_char] = ACTIONS(2015), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [581] = { + [sym__expression] = STATE(3867), + [sym_block] = STATE(3867), + [sym__identifier] = STATE(64), + [sym_identifier] = STATE(64), + [sym_special_identifier] = STATE(64), + [sym_boolean] = STATE(3867), + [sym_nil] = STATE(3867), + [sym__atom] = STATE(3867), + [sym_quoted_atom] = STATE(3867), + [sym__quoted_i_double] = STATE(3871), + [sym__quoted_i_single] = STATE(3876), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3867), + [sym_charlist] = STATE(3867), + [sym_sigil] = STATE(3867), + [sym_list] = STATE(3867), + [sym_tuple] = STATE(3867), + [sym_bitstring] = STATE(3867), + [sym_map] = STATE(3867), + [sym_unary_operator] = STATE(3867), + [sym_binary_operator] = STATE(3867), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3867), + [sym_call] = STATE(3867), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), + [sym__remote_dot] = STATE(55), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3867), + [sym_anonymous_function] = STATE(3867), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1413), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2017), + [sym_integer] = ACTIONS(2017), + [sym_float] = ACTIONS(2017), + [sym_char] = ACTIONS(2017), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(2017), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [582] = { + [sym__expression] = STATE(3399), + [sym_block] = STATE(3399), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3399), + [sym_nil] = STATE(3399), + [sym__atom] = STATE(3399), + [sym_quoted_atom] = STATE(3399), + [sym__quoted_i_double] = STATE(1540), + [sym__quoted_i_single] = STATE(1541), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(3399), + [sym_charlist] = STATE(3399), + [sym_sigil] = STATE(3399), + [sym_list] = STATE(3399), + [sym_tuple] = STATE(3399), + [sym_bitstring] = STATE(3399), + [sym_map] = STATE(3399), + [sym_unary_operator] = STATE(3399), + [sym_binary_operator] = STATE(3399), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(3399), + [sym_call] = STATE(3399), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(3399), + [sym_anonymous_function] = STATE(3399), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1337), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(2019), + [sym_integer] = ACTIONS(2019), + [sym_float] = ACTIONS(2019), + [sym_char] = ACTIONS(2019), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(2019), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [583] = { + [sym__expression] = STATE(3398), + [sym_block] = STATE(3398), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3398), + [sym_nil] = STATE(3398), + [sym__atom] = STATE(3398), + [sym_quoted_atom] = STATE(3398), + [sym__quoted_i_double] = STATE(1540), + [sym__quoted_i_single] = STATE(1541), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(3398), + [sym_charlist] = STATE(3398), + [sym_sigil] = STATE(3398), + [sym_list] = STATE(3398), + [sym_tuple] = STATE(3398), + [sym_bitstring] = STATE(3398), + [sym_map] = STATE(3398), + [sym_unary_operator] = STATE(3398), + [sym_binary_operator] = STATE(3398), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(3398), + [sym_call] = STATE(3398), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(3398), + [sym_anonymous_function] = STATE(3398), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1337), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(2021), + [sym_integer] = ACTIONS(2021), + [sym_float] = ACTIONS(2021), + [sym_char] = ACTIONS(2021), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(2021), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [584] = { + [sym__expression] = STATE(3397), + [sym_block] = STATE(3397), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3397), + [sym_nil] = STATE(3397), + [sym__atom] = STATE(3397), + [sym_quoted_atom] = STATE(3397), + [sym__quoted_i_double] = STATE(1540), + [sym__quoted_i_single] = STATE(1541), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(3397), + [sym_charlist] = STATE(3397), + [sym_sigil] = STATE(3397), + [sym_list] = STATE(3397), + [sym_tuple] = STATE(3397), + [sym_bitstring] = STATE(3397), + [sym_map] = STATE(3397), + [sym_unary_operator] = STATE(3397), + [sym_binary_operator] = STATE(3397), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(3397), + [sym_call] = STATE(3397), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(3397), + [sym_anonymous_function] = STATE(3397), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1337), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(2023), + [sym_integer] = ACTIONS(2023), + [sym_float] = ACTIONS(2023), + [sym_char] = ACTIONS(2023), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(2023), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [585] = { + [sym__expression] = STATE(4146), + [sym_block] = STATE(4146), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(4146), + [sym_nil] = STATE(4146), + [sym__atom] = STATE(4146), + [sym_quoted_atom] = STATE(4146), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4146), + [sym_charlist] = STATE(4146), + [sym_sigil] = STATE(4146), + [sym_list] = STATE(4146), + [sym_tuple] = STATE(4146), + [sym_bitstring] = STATE(4146), + [sym_map] = STATE(4146), + [sym_unary_operator] = STATE(4146), + [sym_binary_operator] = STATE(4146), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4146), + [sym_call] = STATE(4146), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4146), + [sym_anonymous_function] = STATE(4146), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2025), + [sym_integer] = ACTIONS(2025), + [sym_float] = ACTIONS(2025), + [sym_char] = ACTIONS(2025), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(2025), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [586] = { + [sym__expression] = STATE(3395), + [sym_block] = STATE(3395), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3395), + [sym_nil] = STATE(3395), + [sym__atom] = STATE(3395), + [sym_quoted_atom] = STATE(3395), + [sym__quoted_i_double] = STATE(1540), + [sym__quoted_i_single] = STATE(1541), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(3395), + [sym_charlist] = STATE(3395), + [sym_sigil] = STATE(3395), + [sym_list] = STATE(3395), + [sym_tuple] = STATE(3395), + [sym_bitstring] = STATE(3395), + [sym_map] = STATE(3395), + [sym_unary_operator] = STATE(3395), + [sym_binary_operator] = STATE(3395), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(3395), + [sym_call] = STATE(3395), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(3395), + [sym_anonymous_function] = STATE(3395), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1337), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(2027), + [sym_integer] = ACTIONS(2027), + [sym_float] = ACTIONS(2027), + [sym_char] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(2027), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [587] = { + [sym__expression] = STATE(3394), + [sym_block] = STATE(3394), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3394), + [sym_nil] = STATE(3394), + [sym__atom] = STATE(3394), + [sym_quoted_atom] = STATE(3394), + [sym__quoted_i_double] = STATE(1540), + [sym__quoted_i_single] = STATE(1541), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(3394), + [sym_charlist] = STATE(3394), + [sym_sigil] = STATE(3394), + [sym_list] = STATE(3394), + [sym_tuple] = STATE(3394), + [sym_bitstring] = STATE(3394), + [sym_map] = STATE(3394), + [sym_unary_operator] = STATE(3394), + [sym_binary_operator] = STATE(3394), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(3394), + [sym_call] = STATE(3394), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(3394), + [sym_anonymous_function] = STATE(3394), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1337), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(2029), + [sym_integer] = ACTIONS(2029), + [sym_float] = ACTIONS(2029), + [sym_char] = ACTIONS(2029), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(2029), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [588] = { + [sym__expression] = STATE(3393), + [sym_block] = STATE(3393), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3393), + [sym_nil] = STATE(3393), + [sym__atom] = STATE(3393), + [sym_quoted_atom] = STATE(3393), + [sym__quoted_i_double] = STATE(1540), + [sym__quoted_i_single] = STATE(1541), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(3393), + [sym_charlist] = STATE(3393), + [sym_sigil] = STATE(3393), + [sym_list] = STATE(3393), + [sym_tuple] = STATE(3393), + [sym_bitstring] = STATE(3393), + [sym_map] = STATE(3393), + [sym_unary_operator] = STATE(3393), + [sym_binary_operator] = STATE(3393), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(3393), + [sym_call] = STATE(3393), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(3393), + [sym_anonymous_function] = STATE(3393), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1337), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(2031), + [sym_integer] = ACTIONS(2031), + [sym_float] = ACTIONS(2031), + [sym_char] = ACTIONS(2031), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(2031), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [589] = { + [sym__expression] = STATE(3392), + [sym_block] = STATE(3392), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3392), + [sym_nil] = STATE(3392), + [sym__atom] = STATE(3392), + [sym_quoted_atom] = STATE(3392), + [sym__quoted_i_double] = STATE(1540), + [sym__quoted_i_single] = STATE(1541), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(3392), + [sym_charlist] = STATE(3392), + [sym_sigil] = STATE(3392), + [sym_list] = STATE(3392), + [sym_tuple] = STATE(3392), + [sym_bitstring] = STATE(3392), + [sym_map] = STATE(3392), + [sym_unary_operator] = STATE(3392), + [sym_binary_operator] = STATE(3392), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(3392), + [sym_call] = STATE(3392), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(3392), + [sym_anonymous_function] = STATE(3392), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1337), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(2033), + [sym_integer] = ACTIONS(2033), + [sym_float] = ACTIONS(2033), + [sym_char] = ACTIONS(2033), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(2033), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [590] = { + [sym__expression] = STATE(3391), + [sym_block] = STATE(3391), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3391), + [sym_nil] = STATE(3391), + [sym__atom] = STATE(3391), + [sym_quoted_atom] = STATE(3391), + [sym__quoted_i_double] = STATE(1540), + [sym__quoted_i_single] = STATE(1541), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(3391), + [sym_charlist] = STATE(3391), + [sym_sigil] = STATE(3391), + [sym_list] = STATE(3391), + [sym_tuple] = STATE(3391), + [sym_bitstring] = STATE(3391), + [sym_map] = STATE(3391), + [sym_unary_operator] = STATE(3391), + [sym_binary_operator] = STATE(3391), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(3391), + [sym_call] = STATE(3391), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(3391), + [sym_anonymous_function] = STATE(3391), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1337), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(2035), + [sym_integer] = ACTIONS(2035), + [sym_float] = ACTIONS(2035), + [sym_char] = ACTIONS(2035), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(2035), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [591] = { + [sym__expression] = STATE(3390), + [sym_block] = STATE(3390), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3390), + [sym_nil] = STATE(3390), + [sym__atom] = STATE(3390), + [sym_quoted_atom] = STATE(3390), + [sym__quoted_i_double] = STATE(1540), + [sym__quoted_i_single] = STATE(1541), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(3390), + [sym_charlist] = STATE(3390), + [sym_sigil] = STATE(3390), + [sym_list] = STATE(3390), + [sym_tuple] = STATE(3390), + [sym_bitstring] = STATE(3390), + [sym_map] = STATE(3390), + [sym_unary_operator] = STATE(3390), + [sym_binary_operator] = STATE(3390), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(3390), + [sym_call] = STATE(3390), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(3390), + [sym_anonymous_function] = STATE(3390), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1337), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(2037), + [sym_integer] = ACTIONS(2037), + [sym_float] = ACTIONS(2037), + [sym_char] = ACTIONS(2037), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(2037), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [592] = { + [sym__expression] = STATE(3389), + [sym_block] = STATE(3389), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3389), + [sym_nil] = STATE(3389), + [sym__atom] = STATE(3389), + [sym_quoted_atom] = STATE(3389), + [sym__quoted_i_double] = STATE(1540), + [sym__quoted_i_single] = STATE(1541), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(3389), + [sym_charlist] = STATE(3389), + [sym_sigil] = STATE(3389), + [sym_list] = STATE(3389), + [sym_tuple] = STATE(3389), + [sym_bitstring] = STATE(3389), + [sym_map] = STATE(3389), + [sym_unary_operator] = STATE(3389), + [sym_binary_operator] = STATE(3389), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(3389), + [sym_call] = STATE(3389), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(3389), + [sym_anonymous_function] = STATE(3389), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1337), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(2039), + [sym_integer] = ACTIONS(2039), + [sym_float] = ACTIONS(2039), + [sym_char] = ACTIONS(2039), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(2039), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [593] = { + [sym__expression] = STATE(3388), + [sym_block] = STATE(3388), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3388), + [sym_nil] = STATE(3388), + [sym__atom] = STATE(3388), + [sym_quoted_atom] = STATE(3388), + [sym__quoted_i_double] = STATE(1540), + [sym__quoted_i_single] = STATE(1541), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(3388), + [sym_charlist] = STATE(3388), + [sym_sigil] = STATE(3388), + [sym_list] = STATE(3388), + [sym_tuple] = STATE(3388), + [sym_bitstring] = STATE(3388), + [sym_map] = STATE(3388), + [sym_unary_operator] = STATE(3388), + [sym_binary_operator] = STATE(3388), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(3388), + [sym_call] = STATE(3388), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(3388), + [sym_anonymous_function] = STATE(3388), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1337), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(2041), + [sym_integer] = ACTIONS(2041), + [sym_float] = ACTIONS(2041), + [sym_char] = ACTIONS(2041), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(2041), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [594] = { + [sym__expression] = STATE(3387), + [sym_block] = STATE(3387), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3387), + [sym_nil] = STATE(3387), + [sym__atom] = STATE(3387), + [sym_quoted_atom] = STATE(3387), + [sym__quoted_i_double] = STATE(1540), + [sym__quoted_i_single] = STATE(1541), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(3387), + [sym_charlist] = STATE(3387), + [sym_sigil] = STATE(3387), + [sym_list] = STATE(3387), + [sym_tuple] = STATE(3387), + [sym_bitstring] = STATE(3387), + [sym_map] = STATE(3387), + [sym_unary_operator] = STATE(3387), + [sym_binary_operator] = STATE(3387), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(3387), + [sym_call] = STATE(3387), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(3387), + [sym_anonymous_function] = STATE(3387), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1337), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(2043), + [sym_integer] = ACTIONS(2043), + [sym_float] = ACTIONS(2043), + [sym_char] = ACTIONS(2043), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(2043), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [595] = { + [sym__expression] = STATE(3386), + [sym_block] = STATE(3386), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3386), + [sym_nil] = STATE(3386), + [sym__atom] = STATE(3386), + [sym_quoted_atom] = STATE(3386), + [sym__quoted_i_double] = STATE(1540), + [sym__quoted_i_single] = STATE(1541), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(3386), + [sym_charlist] = STATE(3386), + [sym_sigil] = STATE(3386), + [sym_list] = STATE(3386), + [sym_tuple] = STATE(3386), + [sym_bitstring] = STATE(3386), + [sym_map] = STATE(3386), + [sym_unary_operator] = STATE(3386), + [sym_binary_operator] = STATE(3386), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(3386), + [sym_call] = STATE(3386), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(3386), + [sym_anonymous_function] = STATE(3386), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1337), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(2045), + [sym_integer] = ACTIONS(2045), + [sym_float] = ACTIONS(2045), + [sym_char] = ACTIONS(2045), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(2045), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [596] = { + [sym__expression] = STATE(3385), + [sym_block] = STATE(3385), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3385), + [sym_nil] = STATE(3385), + [sym__atom] = STATE(3385), + [sym_quoted_atom] = STATE(3385), + [sym__quoted_i_double] = STATE(1540), + [sym__quoted_i_single] = STATE(1541), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(3385), + [sym_charlist] = STATE(3385), + [sym_sigil] = STATE(3385), + [sym_list] = STATE(3385), + [sym_tuple] = STATE(3385), + [sym_bitstring] = STATE(3385), + [sym_map] = STATE(3385), + [sym_unary_operator] = STATE(3385), + [sym_binary_operator] = STATE(3385), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(3385), + [sym_call] = STATE(3385), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(3385), + [sym_anonymous_function] = STATE(3385), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1337), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(2047), + [sym_integer] = ACTIONS(2047), + [sym_float] = ACTIONS(2047), + [sym_char] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(2047), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [597] = { + [sym__expression] = STATE(1423), + [sym_block] = STATE(1423), + [sym__identifier] = STATE(18), + [sym_identifier] = STATE(18), + [sym_special_identifier] = STATE(18), + [sym_boolean] = STATE(1423), + [sym_nil] = STATE(1423), + [sym__atom] = STATE(1423), + [sym_quoted_atom] = STATE(1423), + [sym__quoted_i_double] = STATE(1250), + [sym__quoted_i_single] = STATE(1249), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(1423), + [sym_charlist] = STATE(1423), + [sym_sigil] = STATE(1423), + [sym_list] = STATE(1423), + [sym_tuple] = STATE(1423), + [sym_bitstring] = STATE(1423), + [sym_map] = STATE(1423), + [sym_unary_operator] = STATE(1423), + [sym_binary_operator] = STATE(1423), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(1423), + [sym_call] = STATE(1423), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(1423), + [sym_anonymous_function] = STATE(1423), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2049), + [sym_integer] = ACTIONS(2049), + [sym_float] = ACTIONS(2049), + [sym_char] = ACTIONS(2049), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2049), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [598] = { + [sym__expression] = STATE(4152), + [sym_block] = STATE(4152), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(4152), + [sym_nil] = STATE(4152), + [sym__atom] = STATE(4152), + [sym_quoted_atom] = STATE(4152), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4152), + [sym_charlist] = STATE(4152), + [sym_sigil] = STATE(4152), + [sym_list] = STATE(4152), + [sym_tuple] = STATE(4152), + [sym_bitstring] = STATE(4152), + [sym_map] = STATE(4152), + [sym_unary_operator] = STATE(4152), + [sym_binary_operator] = STATE(4152), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4152), + [sym_call] = STATE(4152), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4152), + [sym_anonymous_function] = STATE(4152), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2051), + [sym_integer] = ACTIONS(2051), + [sym_float] = ACTIONS(2051), + [sym_char] = ACTIONS(2051), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(2051), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [599] = { + [sym__expression] = STATE(3883), + [sym_block] = STATE(3883), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(3883), + [sym_nil] = STATE(3883), + [sym__atom] = STATE(3883), + [sym_quoted_atom] = STATE(3883), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(3883), + [sym_charlist] = STATE(3883), + [sym_sigil] = STATE(3883), + [sym_list] = STATE(3883), + [sym_tuple] = STATE(3883), + [sym_bitstring] = STATE(3883), + [sym_map] = STATE(3883), + [sym_unary_operator] = STATE(3883), + [sym_binary_operator] = STATE(3883), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(3883), + [sym_call] = STATE(3883), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(3883), + [sym_anonymous_function] = STATE(3883), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1437), + [sym_unused_identifier] = ACTIONS(1439), + [anon_sym___MODULE__] = ACTIONS(1441), + [anon_sym___DIR__] = ACTIONS(1441), + [anon_sym___ENV__] = ACTIONS(1441), + [anon_sym___CALLER__] = ACTIONS(1441), + [anon_sym___STACKTRACE__] = ACTIONS(1441), + [sym_alias] = ACTIONS(2053), + [sym_integer] = ACTIONS(2053), + [sym_float] = ACTIONS(2053), + [sym_char] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2053), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1445), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1451), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), + [anon_sym_not] = ACTIONS(1451), + [anon_sym_AT] = ACTIONS(1453), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1455), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [600] = { + [sym__expression] = STATE(1824), + [sym_block] = STATE(1824), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(1824), + [sym_nil] = STATE(1824), + [sym__atom] = STATE(1824), + [sym_quoted_atom] = STATE(1824), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(1824), + [sym_charlist] = STATE(1824), + [sym_sigil] = STATE(1824), + [sym_list] = STATE(1824), + [sym_tuple] = STATE(1824), + [sym_bitstring] = STATE(1824), + [sym_map] = STATE(1824), + [sym_unary_operator] = STATE(1824), + [sym_binary_operator] = STATE(1824), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(1824), + [sym_call] = STATE(1824), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(1824), + [sym_anonymous_function] = STATE(1824), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1437), + [sym_unused_identifier] = ACTIONS(1439), + [anon_sym___MODULE__] = ACTIONS(1441), + [anon_sym___DIR__] = ACTIONS(1441), + [anon_sym___ENV__] = ACTIONS(1441), + [anon_sym___CALLER__] = ACTIONS(1441), + [anon_sym___STACKTRACE__] = ACTIONS(1441), + [sym_alias] = ACTIONS(1771), + [sym_integer] = ACTIONS(1771), + [sym_float] = ACTIONS(1771), + [sym_char] = ACTIONS(1771), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1445), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1451), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), + [anon_sym_not] = ACTIONS(1451), + [anon_sym_AT] = ACTIONS(1453), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1455), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [601] = { + [sym__expression] = STATE(3693), + [sym_block] = STATE(3693), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(3693), + [sym_nil] = STATE(3693), + [sym__atom] = STATE(3693), + [sym_quoted_atom] = STATE(3693), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(3693), + [sym_charlist] = STATE(3693), + [sym_sigil] = STATE(3693), + [sym_list] = STATE(3693), + [sym_tuple] = STATE(3693), + [sym_bitstring] = STATE(3693), + [sym_map] = STATE(3693), + [sym_unary_operator] = STATE(3693), + [sym_binary_operator] = STATE(3693), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(3693), + [sym_call] = STATE(3693), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(3693), + [sym_anonymous_function] = STATE(3693), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1437), + [sym_unused_identifier] = ACTIONS(1439), + [anon_sym___MODULE__] = ACTIONS(1441), + [anon_sym___DIR__] = ACTIONS(1441), + [anon_sym___ENV__] = ACTIONS(1441), + [anon_sym___CALLER__] = ACTIONS(1441), + [anon_sym___STACKTRACE__] = ACTIONS(1441), + [sym_alias] = ACTIONS(2055), + [sym_integer] = ACTIONS(2055), + [sym_float] = ACTIONS(2055), + [sym_char] = ACTIONS(2055), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1445), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1451), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), + [anon_sym_not] = ACTIONS(1451), + [anon_sym_AT] = ACTIONS(1453), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1455), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [602] = { + [sym__expression] = STATE(3690), + [sym_block] = STATE(3690), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(3690), + [sym_nil] = STATE(3690), + [sym__atom] = STATE(3690), + [sym_quoted_atom] = STATE(3690), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(3690), + [sym_charlist] = STATE(3690), + [sym_sigil] = STATE(3690), + [sym_list] = STATE(3690), + [sym_tuple] = STATE(3690), + [sym_bitstring] = STATE(3690), + [sym_map] = STATE(3690), + [sym_unary_operator] = STATE(3690), + [sym_binary_operator] = STATE(3690), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(3690), + [sym_call] = STATE(3690), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(3690), + [sym_anonymous_function] = STATE(3690), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1437), + [sym_unused_identifier] = ACTIONS(1439), + [anon_sym___MODULE__] = ACTIONS(1441), + [anon_sym___DIR__] = ACTIONS(1441), + [anon_sym___ENV__] = ACTIONS(1441), + [anon_sym___CALLER__] = ACTIONS(1441), + [anon_sym___STACKTRACE__] = ACTIONS(1441), + [sym_alias] = ACTIONS(2057), + [sym_integer] = ACTIONS(2057), + [sym_float] = ACTIONS(2057), + [sym_char] = ACTIONS(2057), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2057), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1445), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1451), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), + [anon_sym_not] = ACTIONS(1451), + [anon_sym_AT] = ACTIONS(1453), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1455), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [603] = { + [sym__expression] = STATE(4141), + [sym_block] = STATE(4141), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(4141), + [sym_nil] = STATE(4141), + [sym__atom] = STATE(4141), + [sym_quoted_atom] = STATE(4141), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4141), + [sym_charlist] = STATE(4141), + [sym_sigil] = STATE(4141), + [sym_list] = STATE(4141), + [sym_tuple] = STATE(4141), + [sym_bitstring] = STATE(4141), + [sym_map] = STATE(4141), + [sym_unary_operator] = STATE(4141), + [sym_binary_operator] = STATE(4141), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4141), + [sym_call] = STATE(4141), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4141), + [sym_anonymous_function] = STATE(4141), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2059), + [sym_integer] = ACTIONS(2059), + [sym_float] = ACTIONS(2059), + [sym_char] = ACTIONS(2059), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(2059), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [604] = { + [sym__expression] = STATE(3688), + [sym_block] = STATE(3688), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(3688), + [sym_nil] = STATE(3688), + [sym__atom] = STATE(3688), + [sym_quoted_atom] = STATE(3688), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(3688), + [sym_charlist] = STATE(3688), + [sym_sigil] = STATE(3688), + [sym_list] = STATE(3688), + [sym_tuple] = STATE(3688), + [sym_bitstring] = STATE(3688), + [sym_map] = STATE(3688), + [sym_unary_operator] = STATE(3688), + [sym_binary_operator] = STATE(3688), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(3688), + [sym_call] = STATE(3688), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(3688), + [sym_anonymous_function] = STATE(3688), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1437), + [sym_unused_identifier] = ACTIONS(1439), + [anon_sym___MODULE__] = ACTIONS(1441), + [anon_sym___DIR__] = ACTIONS(1441), + [anon_sym___ENV__] = ACTIONS(1441), + [anon_sym___CALLER__] = ACTIONS(1441), + [anon_sym___STACKTRACE__] = ACTIONS(1441), + [sym_alias] = ACTIONS(2061), + [sym_integer] = ACTIONS(2061), + [sym_float] = ACTIONS(2061), + [sym_char] = ACTIONS(2061), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1445), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1451), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), + [anon_sym_not] = ACTIONS(1451), + [anon_sym_AT] = ACTIONS(1453), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1455), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [605] = { + [sym__expression] = STATE(3687), + [sym_block] = STATE(3687), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(3687), + [sym_nil] = STATE(3687), + [sym__atom] = STATE(3687), + [sym_quoted_atom] = STATE(3687), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(3687), + [sym_charlist] = STATE(3687), + [sym_sigil] = STATE(3687), + [sym_list] = STATE(3687), + [sym_tuple] = STATE(3687), + [sym_bitstring] = STATE(3687), + [sym_map] = STATE(3687), + [sym_unary_operator] = STATE(3687), + [sym_binary_operator] = STATE(3687), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(3687), + [sym_call] = STATE(3687), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(3687), + [sym_anonymous_function] = STATE(3687), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1437), + [sym_unused_identifier] = ACTIONS(1439), + [anon_sym___MODULE__] = ACTIONS(1441), + [anon_sym___DIR__] = ACTIONS(1441), + [anon_sym___ENV__] = ACTIONS(1441), + [anon_sym___CALLER__] = ACTIONS(1441), + [anon_sym___STACKTRACE__] = ACTIONS(1441), + [sym_alias] = ACTIONS(2063), + [sym_integer] = ACTIONS(2063), + [sym_float] = ACTIONS(2063), + [sym_char] = ACTIONS(2063), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2063), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1445), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1451), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), + [anon_sym_not] = ACTIONS(1451), + [anon_sym_AT] = ACTIONS(1453), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1455), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [606] = { + [sym__expression] = STATE(3686), + [sym_block] = STATE(3686), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(3686), + [sym_nil] = STATE(3686), + [sym__atom] = STATE(3686), + [sym_quoted_atom] = STATE(3686), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(3686), + [sym_charlist] = STATE(3686), + [sym_sigil] = STATE(3686), + [sym_list] = STATE(3686), + [sym_tuple] = STATE(3686), + [sym_bitstring] = STATE(3686), + [sym_map] = STATE(3686), + [sym_unary_operator] = STATE(3686), + [sym_binary_operator] = STATE(3686), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(3686), + [sym_call] = STATE(3686), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(3686), + [sym_anonymous_function] = STATE(3686), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1437), + [sym_unused_identifier] = ACTIONS(1439), + [anon_sym___MODULE__] = ACTIONS(1441), + [anon_sym___DIR__] = ACTIONS(1441), + [anon_sym___ENV__] = ACTIONS(1441), + [anon_sym___CALLER__] = ACTIONS(1441), + [anon_sym___STACKTRACE__] = ACTIONS(1441), + [sym_alias] = ACTIONS(2065), + [sym_integer] = ACTIONS(2065), + [sym_float] = ACTIONS(2065), + [sym_char] = ACTIONS(2065), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2065), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1445), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1451), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), + [anon_sym_not] = ACTIONS(1451), + [anon_sym_AT] = ACTIONS(1453), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1455), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [607] = { + [sym__expression] = STATE(3684), + [sym_block] = STATE(3684), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(3684), + [sym_nil] = STATE(3684), + [sym__atom] = STATE(3684), + [sym_quoted_atom] = STATE(3684), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(3684), + [sym_charlist] = STATE(3684), + [sym_sigil] = STATE(3684), + [sym_list] = STATE(3684), + [sym_tuple] = STATE(3684), + [sym_bitstring] = STATE(3684), + [sym_map] = STATE(3684), + [sym_unary_operator] = STATE(3684), + [sym_binary_operator] = STATE(3684), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(3684), + [sym_call] = STATE(3684), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(3684), + [sym_anonymous_function] = STATE(3684), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1437), + [sym_unused_identifier] = ACTIONS(1439), + [anon_sym___MODULE__] = ACTIONS(1441), + [anon_sym___DIR__] = ACTIONS(1441), + [anon_sym___ENV__] = ACTIONS(1441), + [anon_sym___CALLER__] = ACTIONS(1441), + [anon_sym___STACKTRACE__] = ACTIONS(1441), + [sym_alias] = ACTIONS(2067), + [sym_integer] = ACTIONS(2067), + [sym_float] = ACTIONS(2067), + [sym_char] = ACTIONS(2067), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2067), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1445), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1451), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), + [anon_sym_not] = ACTIONS(1451), + [anon_sym_AT] = ACTIONS(1453), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1455), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [608] = { + [sym__expression] = STATE(3683), + [sym_block] = STATE(3683), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(3683), + [sym_nil] = STATE(3683), + [sym__atom] = STATE(3683), + [sym_quoted_atom] = STATE(3683), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(3683), + [sym_charlist] = STATE(3683), + [sym_sigil] = STATE(3683), + [sym_list] = STATE(3683), + [sym_tuple] = STATE(3683), + [sym_bitstring] = STATE(3683), + [sym_map] = STATE(3683), + [sym_unary_operator] = STATE(3683), + [sym_binary_operator] = STATE(3683), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(3683), + [sym_call] = STATE(3683), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(3683), + [sym_anonymous_function] = STATE(3683), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1437), + [sym_unused_identifier] = ACTIONS(1439), + [anon_sym___MODULE__] = ACTIONS(1441), + [anon_sym___DIR__] = ACTIONS(1441), + [anon_sym___ENV__] = ACTIONS(1441), + [anon_sym___CALLER__] = ACTIONS(1441), + [anon_sym___STACKTRACE__] = ACTIONS(1441), + [sym_alias] = ACTIONS(2069), + [sym_integer] = ACTIONS(2069), + [sym_float] = ACTIONS(2069), + [sym_char] = ACTIONS(2069), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2069), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1445), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1451), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), + [anon_sym_not] = ACTIONS(1451), + [anon_sym_AT] = ACTIONS(1453), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1455), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [609] = { + [sym__expression] = STATE(3682), + [sym_block] = STATE(3682), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(3682), + [sym_nil] = STATE(3682), + [sym__atom] = STATE(3682), + [sym_quoted_atom] = STATE(3682), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(3682), + [sym_charlist] = STATE(3682), + [sym_sigil] = STATE(3682), + [sym_list] = STATE(3682), + [sym_tuple] = STATE(3682), + [sym_bitstring] = STATE(3682), + [sym_map] = STATE(3682), + [sym_unary_operator] = STATE(3682), + [sym_binary_operator] = STATE(3682), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(3682), + [sym_call] = STATE(3682), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(3682), + [sym_anonymous_function] = STATE(3682), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1437), + [sym_unused_identifier] = ACTIONS(1439), + [anon_sym___MODULE__] = ACTIONS(1441), + [anon_sym___DIR__] = ACTIONS(1441), + [anon_sym___ENV__] = ACTIONS(1441), + [anon_sym___CALLER__] = ACTIONS(1441), + [anon_sym___STACKTRACE__] = ACTIONS(1441), + [sym_alias] = ACTIONS(2071), + [sym_integer] = ACTIONS(2071), + [sym_float] = ACTIONS(2071), + [sym_char] = ACTIONS(2071), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2071), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1445), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1451), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), + [anon_sym_not] = ACTIONS(1451), + [anon_sym_AT] = ACTIONS(1453), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1455), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [610] = { + [sym__expression] = STATE(3681), + [sym_block] = STATE(3681), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(3681), + [sym_nil] = STATE(3681), + [sym__atom] = STATE(3681), + [sym_quoted_atom] = STATE(3681), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(3681), + [sym_charlist] = STATE(3681), + [sym_sigil] = STATE(3681), + [sym_list] = STATE(3681), + [sym_tuple] = STATE(3681), + [sym_bitstring] = STATE(3681), + [sym_map] = STATE(3681), + [sym_unary_operator] = STATE(3681), + [sym_binary_operator] = STATE(3681), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(3681), + [sym_call] = STATE(3681), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(3681), + [sym_anonymous_function] = STATE(3681), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1437), + [sym_unused_identifier] = ACTIONS(1439), + [anon_sym___MODULE__] = ACTIONS(1441), + [anon_sym___DIR__] = ACTIONS(1441), + [anon_sym___ENV__] = ACTIONS(1441), + [anon_sym___CALLER__] = ACTIONS(1441), + [anon_sym___STACKTRACE__] = ACTIONS(1441), + [sym_alias] = ACTIONS(2073), + [sym_integer] = ACTIONS(2073), + [sym_float] = ACTIONS(2073), + [sym_char] = ACTIONS(2073), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2073), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1445), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1451), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), + [anon_sym_not] = ACTIONS(1451), + [anon_sym_AT] = ACTIONS(1453), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1455), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [611] = { + [sym__expression] = STATE(3680), + [sym_block] = STATE(3680), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(3680), + [sym_nil] = STATE(3680), + [sym__atom] = STATE(3680), + [sym_quoted_atom] = STATE(3680), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(3680), + [sym_charlist] = STATE(3680), + [sym_sigil] = STATE(3680), + [sym_list] = STATE(3680), + [sym_tuple] = STATE(3680), + [sym_bitstring] = STATE(3680), + [sym_map] = STATE(3680), + [sym_unary_operator] = STATE(3680), + [sym_binary_operator] = STATE(3680), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(3680), + [sym_call] = STATE(3680), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(3680), + [sym_anonymous_function] = STATE(3680), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1437), + [sym_unused_identifier] = ACTIONS(1439), + [anon_sym___MODULE__] = ACTIONS(1441), + [anon_sym___DIR__] = ACTIONS(1441), + [anon_sym___ENV__] = ACTIONS(1441), + [anon_sym___CALLER__] = ACTIONS(1441), + [anon_sym___STACKTRACE__] = ACTIONS(1441), + [sym_alias] = ACTIONS(2075), + [sym_integer] = ACTIONS(2075), + [sym_float] = ACTIONS(2075), + [sym_char] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2075), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1445), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1451), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), + [anon_sym_not] = ACTIONS(1451), + [anon_sym_AT] = ACTIONS(1453), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1455), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [612] = { + [sym__expression] = STATE(3679), + [sym_block] = STATE(3679), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(3679), + [sym_nil] = STATE(3679), + [sym__atom] = STATE(3679), + [sym_quoted_atom] = STATE(3679), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(3679), + [sym_charlist] = STATE(3679), + [sym_sigil] = STATE(3679), + [sym_list] = STATE(3679), + [sym_tuple] = STATE(3679), + [sym_bitstring] = STATE(3679), + [sym_map] = STATE(3679), + [sym_unary_operator] = STATE(3679), + [sym_binary_operator] = STATE(3679), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(3679), + [sym_call] = STATE(3679), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(3679), + [sym_anonymous_function] = STATE(3679), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1437), + [sym_unused_identifier] = ACTIONS(1439), + [anon_sym___MODULE__] = ACTIONS(1441), + [anon_sym___DIR__] = ACTIONS(1441), + [anon_sym___ENV__] = ACTIONS(1441), + [anon_sym___CALLER__] = ACTIONS(1441), + [anon_sym___STACKTRACE__] = ACTIONS(1441), + [sym_alias] = ACTIONS(2077), + [sym_integer] = ACTIONS(2077), + [sym_float] = ACTIONS(2077), + [sym_char] = ACTIONS(2077), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2077), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1445), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1451), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), + [anon_sym_not] = ACTIONS(1451), + [anon_sym_AT] = ACTIONS(1453), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1455), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [613] = { + [sym__expression] = STATE(1421), + [sym_block] = STATE(1421), + [sym__identifier] = STATE(18), + [sym_identifier] = STATE(18), + [sym_special_identifier] = STATE(18), + [sym_boolean] = STATE(1421), + [sym_nil] = STATE(1421), + [sym__atom] = STATE(1421), + [sym_quoted_atom] = STATE(1421), + [sym__quoted_i_double] = STATE(1250), + [sym__quoted_i_single] = STATE(1249), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(1421), + [sym_charlist] = STATE(1421), + [sym_sigil] = STATE(1421), + [sym_list] = STATE(1421), + [sym_tuple] = STATE(1421), + [sym_bitstring] = STATE(1421), + [sym_map] = STATE(1421), + [sym_unary_operator] = STATE(1421), + [sym_binary_operator] = STATE(1421), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(1421), + [sym_call] = STATE(1421), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(1421), + [sym_anonymous_function] = STATE(1421), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2079), + [sym_integer] = ACTIONS(2079), + [sym_float] = ACTIONS(2079), + [sym_char] = ACTIONS(2079), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2079), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [614] = { + [sym__expression] = STATE(3678), + [sym_block] = STATE(3678), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(3678), + [sym_nil] = STATE(3678), + [sym__atom] = STATE(3678), + [sym_quoted_atom] = STATE(3678), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(3678), + [sym_charlist] = STATE(3678), + [sym_sigil] = STATE(3678), + [sym_list] = STATE(3678), + [sym_tuple] = STATE(3678), + [sym_bitstring] = STATE(3678), + [sym_map] = STATE(3678), + [sym_unary_operator] = STATE(3678), + [sym_binary_operator] = STATE(3678), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(3678), + [sym_call] = STATE(3678), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(3678), + [sym_anonymous_function] = STATE(3678), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1437), + [sym_unused_identifier] = ACTIONS(1439), + [anon_sym___MODULE__] = ACTIONS(1441), + [anon_sym___DIR__] = ACTIONS(1441), + [anon_sym___ENV__] = ACTIONS(1441), + [anon_sym___CALLER__] = ACTIONS(1441), + [anon_sym___STACKTRACE__] = ACTIONS(1441), + [sym_alias] = ACTIONS(2081), + [sym_integer] = ACTIONS(2081), + [sym_float] = ACTIONS(2081), + [sym_char] = ACTIONS(2081), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2081), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1445), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1451), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), + [anon_sym_not] = ACTIONS(1451), + [anon_sym_AT] = ACTIONS(1453), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1455), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [615] = { + [sym__expression] = STATE(2424), + [sym_block] = STATE(2424), + [sym__identifier] = STATE(35), + [sym_identifier] = STATE(35), + [sym_special_identifier] = STATE(35), + [sym_boolean] = STATE(2424), + [sym_nil] = STATE(2424), + [sym__atom] = STATE(2424), + [sym_quoted_atom] = STATE(2424), + [sym__quoted_i_double] = STATE(2196), + [sym__quoted_i_single] = STATE(2197), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(2424), + [sym_charlist] = STATE(2424), + [sym_sigil] = STATE(2424), + [sym_list] = STATE(2424), + [sym_tuple] = STATE(2424), + [sym_bitstring] = STATE(2424), + [sym_map] = STATE(2424), + [sym_unary_operator] = STATE(2424), + [sym_binary_operator] = STATE(2424), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(2424), + [sym_call] = STATE(2424), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(2424), + [sym_anonymous_function] = STATE(2424), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(367), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(1377), + [sym_integer] = ACTIONS(1377), + [sym_float] = ACTIONS(1377), + [sym_char] = ACTIONS(1377), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(402), + [anon_sym_DASH] = ACTIONS(402), + [anon_sym_BANG] = ACTIONS(402), + [anon_sym_CARET] = ACTIONS(402), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(402), + [anon_sym_not] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(404), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(406), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(410), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(412), + }, + [616] = { + [sym__expression] = STATE(3677), + [sym_block] = STATE(3677), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(3677), + [sym_nil] = STATE(3677), + [sym__atom] = STATE(3677), + [sym_quoted_atom] = STATE(3677), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(3677), + [sym_charlist] = STATE(3677), + [sym_sigil] = STATE(3677), + [sym_list] = STATE(3677), + [sym_tuple] = STATE(3677), + [sym_bitstring] = STATE(3677), + [sym_map] = STATE(3677), + [sym_unary_operator] = STATE(3677), + [sym_binary_operator] = STATE(3677), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(3677), + [sym_call] = STATE(3677), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(3677), + [sym_anonymous_function] = STATE(3677), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1437), + [sym_unused_identifier] = ACTIONS(1439), + [anon_sym___MODULE__] = ACTIONS(1441), + [anon_sym___DIR__] = ACTIONS(1441), + [anon_sym___ENV__] = ACTIONS(1441), + [anon_sym___CALLER__] = ACTIONS(1441), + [anon_sym___STACKTRACE__] = ACTIONS(1441), + [sym_alias] = ACTIONS(2083), + [sym_integer] = ACTIONS(2083), + [sym_float] = ACTIONS(2083), + [sym_char] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2083), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1445), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1451), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), + [anon_sym_not] = ACTIONS(1451), + [anon_sym_AT] = ACTIONS(1453), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1455), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [617] = { + [sym__expression] = STATE(1419), + [sym_block] = STATE(1419), + [sym__identifier] = STATE(18), + [sym_identifier] = STATE(18), + [sym_special_identifier] = STATE(18), + [sym_boolean] = STATE(1419), + [sym_nil] = STATE(1419), + [sym__atom] = STATE(1419), + [sym_quoted_atom] = STATE(1419), + [sym__quoted_i_double] = STATE(1250), + [sym__quoted_i_single] = STATE(1249), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(1419), + [sym_charlist] = STATE(1419), + [sym_sigil] = STATE(1419), + [sym_list] = STATE(1419), + [sym_tuple] = STATE(1419), + [sym_bitstring] = STATE(1419), + [sym_map] = STATE(1419), + [sym_unary_operator] = STATE(1419), + [sym_binary_operator] = STATE(1419), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(1419), + [sym_call] = STATE(1419), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(1419), + [sym_anonymous_function] = STATE(1419), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(193), [aux_sym_identifier_token1] = ACTIONS(195), @@ -104361,17 +104749,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(222), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(230), - [anon_sym_PLUS] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_CARET] = ACTIONS(235), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(235), - [anon_sym_not] = ACTIONS(235), - [anon_sym_AT] = ACTIONS(237), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -104411,92 +104799,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), + [anon_sym_fn] = ACTIONS(235), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(243), + [sym__before_unary_op] = ACTIONS(241), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), + [sym__quoted_atom_start] = ACTIONS(243), }, - [620] = { - [sym__expression] = STATE(3154), - [sym_block] = STATE(3154), - [sym__identifier] = STATE(54), - [sym_identifier] = STATE(54), - [sym_special_identifier] = STATE(54), - [sym_boolean] = STATE(3154), - [sym_nil] = STATE(3154), - [sym__atom] = STATE(3154), - [sym_quoted_atom] = STATE(3154), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3154), - [sym_charlist] = STATE(3154), - [sym_sigil] = STATE(3154), - [sym_list] = STATE(3154), - [sym_tuple] = STATE(3154), - [sym_bitstring] = STATE(3154), - [sym_map] = STATE(3154), - [sym_unary_operator] = STATE(3154), - [sym_binary_operator] = STATE(3154), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3154), - [sym_call] = STATE(3154), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3154), - [sym_anonymous_function] = STATE(3154), + [618] = { + [sym__expression] = STATE(1418), + [sym_block] = STATE(1418), + [sym__identifier] = STATE(18), + [sym_identifier] = STATE(18), + [sym_special_identifier] = STATE(18), + [sym_boolean] = STATE(1418), + [sym_nil] = STATE(1418), + [sym__atom] = STATE(1418), + [sym_quoted_atom] = STATE(1418), + [sym__quoted_i_double] = STATE(1250), + [sym__quoted_i_single] = STATE(1249), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(1418), + [sym_charlist] = STATE(1418), + [sym_sigil] = STATE(1418), + [sym_list] = STATE(1418), + [sym_tuple] = STATE(1418), + [sym_bitstring] = STATE(1418), + [sym_map] = STATE(1418), + [sym_unary_operator] = STATE(1418), + [sym_binary_operator] = STATE(1418), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(1418), + [sym_call] = STATE(1418), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(1418), + [sym_anonymous_function] = STATE(1418), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(1427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1427), - [sym_unused_identifier] = ACTIONS(1429), - [anon_sym___MODULE__] = ACTIONS(1431), - [anon_sym___DIR__] = ACTIONS(1431), - [anon_sym___ENV__] = ACTIONS(1431), - [anon_sym___CALLER__] = ACTIONS(1431), - [anon_sym___STACKTRACE__] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), [sym_alias] = ACTIONS(2087), [sym_integer] = ACTIONS(2087), [sym_float] = ACTIONS(2087), [sym_char] = ACTIONS(2087), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), [sym_atom] = ACTIONS(2087), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_CARET] = ACTIONS(1441), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1441), - [anon_sym_not] = ACTIONS(1441), - [anon_sym_AT] = ACTIONS(1443), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -104536,63 +104924,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(235), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1445), + [sym__before_unary_op] = ACTIONS(241), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), + [sym__quoted_atom_start] = ACTIONS(243), }, - [621] = { - [sym__expression] = STATE(3165), - [sym_block] = STATE(3165), - [sym__identifier] = STATE(54), - [sym_identifier] = STATE(54), - [sym_special_identifier] = STATE(54), - [sym_boolean] = STATE(3165), - [sym_nil] = STATE(3165), - [sym__atom] = STATE(3165), - [sym_quoted_atom] = STATE(3165), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3165), - [sym_charlist] = STATE(3165), - [sym_sigil] = STATE(3165), - [sym_list] = STATE(3165), - [sym_tuple] = STATE(3165), - [sym_bitstring] = STATE(3165), - [sym_map] = STATE(3165), - [sym_unary_operator] = STATE(3165), - [sym_binary_operator] = STATE(3165), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3165), - [sym_call] = STATE(3165), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3165), - [sym_anonymous_function] = STATE(3165), + [619] = { + [sym__expression] = STATE(3676), + [sym_block] = STATE(3676), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(3676), + [sym_nil] = STATE(3676), + [sym__atom] = STATE(3676), + [sym_quoted_atom] = STATE(3676), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(3676), + [sym_charlist] = STATE(3676), + [sym_sigil] = STATE(3676), + [sym_list] = STATE(3676), + [sym_tuple] = STATE(3676), + [sym_bitstring] = STATE(3676), + [sym_map] = STATE(3676), + [sym_unary_operator] = STATE(3676), + [sym_binary_operator] = STATE(3676), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(3676), + [sym_call] = STATE(3676), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(3676), + [sym_anonymous_function] = STATE(3676), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(1427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1427), - [sym_unused_identifier] = ACTIONS(1429), - [anon_sym___MODULE__] = ACTIONS(1431), - [anon_sym___DIR__] = ACTIONS(1431), - [anon_sym___ENV__] = ACTIONS(1431), - [anon_sym___CALLER__] = ACTIONS(1431), - [anon_sym___STACKTRACE__] = ACTIONS(1431), + [aux_sym_identifier_token1] = ACTIONS(1437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1437), + [sym_unused_identifier] = ACTIONS(1439), + [anon_sym___MODULE__] = ACTIONS(1441), + [anon_sym___DIR__] = ACTIONS(1441), + [anon_sym___ENV__] = ACTIONS(1441), + [anon_sym___CALLER__] = ACTIONS(1441), + [anon_sym___STACKTRACE__] = ACTIONS(1441), [sym_alias] = ACTIONS(2089), [sym_integer] = ACTIONS(2089), [sym_float] = ACTIONS(2089), @@ -104611,17 +104999,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1435), + [anon_sym_TILDE] = ACTIONS(1445), [anon_sym_LT_LT] = ACTIONS(966), [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_CARET] = ACTIONS(1441), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1441), - [anon_sym_not] = ACTIONS(1441), - [anon_sym_AT] = ACTIONS(1443), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1451), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), + [anon_sym_not] = ACTIONS(1451), + [anon_sym_AT] = ACTIONS(1453), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -104665,59 +105053,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1445), + [sym__before_unary_op] = ACTIONS(1455), [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(982), }, - [622] = { - [sym__expression] = STATE(3166), - [sym_block] = STATE(3166), - [sym__identifier] = STATE(54), - [sym_identifier] = STATE(54), - [sym_special_identifier] = STATE(54), - [sym_boolean] = STATE(3166), - [sym_nil] = STATE(3166), - [sym__atom] = STATE(3166), - [sym_quoted_atom] = STATE(3166), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3166), - [sym_charlist] = STATE(3166), - [sym_sigil] = STATE(3166), - [sym_list] = STATE(3166), - [sym_tuple] = STATE(3166), - [sym_bitstring] = STATE(3166), - [sym_map] = STATE(3166), - [sym_unary_operator] = STATE(3166), - [sym_binary_operator] = STATE(3166), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3166), - [sym_call] = STATE(3166), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3166), - [sym_anonymous_function] = STATE(3166), + [620] = { + [sym__expression] = STATE(3675), + [sym_block] = STATE(3675), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(3675), + [sym_nil] = STATE(3675), + [sym__atom] = STATE(3675), + [sym_quoted_atom] = STATE(3675), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(3675), + [sym_charlist] = STATE(3675), + [sym_sigil] = STATE(3675), + [sym_list] = STATE(3675), + [sym_tuple] = STATE(3675), + [sym_bitstring] = STATE(3675), + [sym_map] = STATE(3675), + [sym_unary_operator] = STATE(3675), + [sym_binary_operator] = STATE(3675), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(3675), + [sym_call] = STATE(3675), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(3675), + [sym_anonymous_function] = STATE(3675), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(1427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1427), - [sym_unused_identifier] = ACTIONS(1429), - [anon_sym___MODULE__] = ACTIONS(1431), - [anon_sym___DIR__] = ACTIONS(1431), - [anon_sym___ENV__] = ACTIONS(1431), - [anon_sym___CALLER__] = ACTIONS(1431), - [anon_sym___STACKTRACE__] = ACTIONS(1431), + [aux_sym_identifier_token1] = ACTIONS(1437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1437), + [sym_unused_identifier] = ACTIONS(1439), + [anon_sym___MODULE__] = ACTIONS(1441), + [anon_sym___DIR__] = ACTIONS(1441), + [anon_sym___ENV__] = ACTIONS(1441), + [anon_sym___CALLER__] = ACTIONS(1441), + [anon_sym___STACKTRACE__] = ACTIONS(1441), [sym_alias] = ACTIONS(2091), [sym_integer] = ACTIONS(2091), [sym_float] = ACTIONS(2091), @@ -104736,17 +105124,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1435), + [anon_sym_TILDE] = ACTIONS(1445), [anon_sym_LT_LT] = ACTIONS(966), [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_CARET] = ACTIONS(1441), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1441), - [anon_sym_not] = ACTIONS(1441), - [anon_sym_AT] = ACTIONS(1443), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1451), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), + [anon_sym_not] = ACTIONS(1451), + [anon_sym_AT] = ACTIONS(1453), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -104790,59 +105178,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1445), + [sym__before_unary_op] = ACTIONS(1455), [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(982), }, - [623] = { - [sym__expression] = STATE(1445), - [sym_block] = STATE(1445), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(1445), - [sym_nil] = STATE(1445), - [sym__atom] = STATE(1445), - [sym_quoted_atom] = STATE(1445), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(1445), - [sym_charlist] = STATE(1445), - [sym_sigil] = STATE(1445), - [sym_list] = STATE(1445), - [sym_tuple] = STATE(1445), - [sym_bitstring] = STATE(1445), - [sym_map] = STATE(1445), - [sym_unary_operator] = STATE(1445), - [sym_binary_operator] = STATE(1445), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(1445), - [sym_call] = STATE(1445), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(1445), - [sym_anonymous_function] = STATE(1445), + [621] = { + [sym__expression] = STATE(3882), + [sym_block] = STATE(3882), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(3882), + [sym_nil] = STATE(3882), + [sym__atom] = STATE(3882), + [sym_quoted_atom] = STATE(3882), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(3882), + [sym_charlist] = STATE(3882), + [sym_sigil] = STATE(3882), + [sym_list] = STATE(3882), + [sym_tuple] = STATE(3882), + [sym_bitstring] = STATE(3882), + [sym_map] = STATE(3882), + [sym_unary_operator] = STATE(3882), + [sym_binary_operator] = STATE(3882), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(3882), + [sym_call] = STATE(3882), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(3882), + [sym_anonymous_function] = STATE(3882), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(944), - [anon_sym___MODULE__] = ACTIONS(71), - [anon_sym___DIR__] = ACTIONS(71), - [anon_sym___ENV__] = ACTIONS(71), - [anon_sym___CALLER__] = ACTIONS(71), - [anon_sym___STACKTRACE__] = ACTIONS(71), + [aux_sym_identifier_token1] = ACTIONS(1437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1437), + [sym_unused_identifier] = ACTIONS(1439), + [anon_sym___MODULE__] = ACTIONS(1441), + [anon_sym___DIR__] = ACTIONS(1441), + [anon_sym___ENV__] = ACTIONS(1441), + [anon_sym___CALLER__] = ACTIONS(1441), + [anon_sym___STACKTRACE__] = ACTIONS(1441), [sym_alias] = ACTIONS(2093), [sym_integer] = ACTIONS(2093), [sym_float] = ACTIONS(2093), @@ -104861,17 +105249,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_TILDE] = ACTIONS(1445), [anon_sym_LT_LT] = ACTIONS(966), [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(972), - [anon_sym_CARET] = ACTIONS(972), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), - [anon_sym_not] = ACTIONS(972), - [anon_sym_AT] = ACTIONS(974), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1451), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), + [anon_sym_not] = ACTIONS(1451), + [anon_sym_AT] = ACTIONS(1453), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -104915,2174 +105303,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(980), + [sym__before_unary_op] = ACTIONS(1455), [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(982), }, - [624] = { - [sym__expression] = STATE(3168), - [sym_block] = STATE(3168), - [sym__identifier] = STATE(54), - [sym_identifier] = STATE(54), - [sym_special_identifier] = STATE(54), - [sym_boolean] = STATE(3168), - [sym_nil] = STATE(3168), - [sym__atom] = STATE(3168), - [sym_quoted_atom] = STATE(3168), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3168), - [sym_charlist] = STATE(3168), - [sym_sigil] = STATE(3168), - [sym_list] = STATE(3168), - [sym_tuple] = STATE(3168), - [sym_bitstring] = STATE(3168), - [sym_map] = STATE(3168), - [sym_unary_operator] = STATE(3168), - [sym_binary_operator] = STATE(3168), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3168), - [sym_call] = STATE(3168), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3168), - [sym_anonymous_function] = STATE(3168), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(1427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1427), - [sym_unused_identifier] = ACTIONS(1429), - [anon_sym___MODULE__] = ACTIONS(1431), - [anon_sym___DIR__] = ACTIONS(1431), - [anon_sym___ENV__] = ACTIONS(1431), - [anon_sym___CALLER__] = ACTIONS(1431), - [anon_sym___STACKTRACE__] = ACTIONS(1431), - [sym_alias] = ACTIONS(2095), - [sym_integer] = ACTIONS(2095), - [sym_float] = ACTIONS(2095), - [sym_char] = ACTIONS(2095), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(2095), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_CARET] = ACTIONS(1441), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1441), - [anon_sym_not] = ACTIONS(1441), - [anon_sym_AT] = ACTIONS(1443), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1445), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [625] = { - [sym__expression] = STATE(3169), - [sym_block] = STATE(3169), - [sym__identifier] = STATE(54), - [sym_identifier] = STATE(54), - [sym_special_identifier] = STATE(54), - [sym_boolean] = STATE(3169), - [sym_nil] = STATE(3169), - [sym__atom] = STATE(3169), - [sym_quoted_atom] = STATE(3169), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3169), - [sym_charlist] = STATE(3169), - [sym_sigil] = STATE(3169), - [sym_list] = STATE(3169), - [sym_tuple] = STATE(3169), - [sym_bitstring] = STATE(3169), - [sym_map] = STATE(3169), - [sym_unary_operator] = STATE(3169), - [sym_binary_operator] = STATE(3169), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3169), - [sym_call] = STATE(3169), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3169), - [sym_anonymous_function] = STATE(3169), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(1427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1427), - [sym_unused_identifier] = ACTIONS(1429), - [anon_sym___MODULE__] = ACTIONS(1431), - [anon_sym___DIR__] = ACTIONS(1431), - [anon_sym___ENV__] = ACTIONS(1431), - [anon_sym___CALLER__] = ACTIONS(1431), - [anon_sym___STACKTRACE__] = ACTIONS(1431), - [sym_alias] = ACTIONS(2097), - [sym_integer] = ACTIONS(2097), - [sym_float] = ACTIONS(2097), - [sym_char] = ACTIONS(2097), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_CARET] = ACTIONS(1441), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1441), - [anon_sym_not] = ACTIONS(1441), - [anon_sym_AT] = ACTIONS(1443), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1445), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [626] = { - [sym__expression] = STATE(3170), - [sym_block] = STATE(3170), - [sym__identifier] = STATE(54), - [sym_identifier] = STATE(54), - [sym_special_identifier] = STATE(54), - [sym_boolean] = STATE(3170), - [sym_nil] = STATE(3170), - [sym__atom] = STATE(3170), - [sym_quoted_atom] = STATE(3170), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3170), - [sym_charlist] = STATE(3170), - [sym_sigil] = STATE(3170), - [sym_list] = STATE(3170), - [sym_tuple] = STATE(3170), - [sym_bitstring] = STATE(3170), - [sym_map] = STATE(3170), - [sym_unary_operator] = STATE(3170), - [sym_binary_operator] = STATE(3170), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3170), - [sym_call] = STATE(3170), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3170), - [sym_anonymous_function] = STATE(3170), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(1427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1427), - [sym_unused_identifier] = ACTIONS(1429), - [anon_sym___MODULE__] = ACTIONS(1431), - [anon_sym___DIR__] = ACTIONS(1431), - [anon_sym___ENV__] = ACTIONS(1431), - [anon_sym___CALLER__] = ACTIONS(1431), - [anon_sym___STACKTRACE__] = ACTIONS(1431), - [sym_alias] = ACTIONS(2099), - [sym_integer] = ACTIONS(2099), - [sym_float] = ACTIONS(2099), - [sym_char] = ACTIONS(2099), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(2099), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_CARET] = ACTIONS(1441), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1441), - [anon_sym_not] = ACTIONS(1441), - [anon_sym_AT] = ACTIONS(1443), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1445), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [627] = { - [sym__expression] = STATE(2751), - [sym_block] = STATE(2751), - [sym__identifier] = STATE(42), - [sym_identifier] = STATE(42), - [sym_special_identifier] = STATE(42), - [sym_boolean] = STATE(2751), - [sym_nil] = STATE(2751), - [sym__atom] = STATE(2751), - [sym_quoted_atom] = STATE(2751), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2751), - [sym_charlist] = STATE(2751), - [sym_sigil] = STATE(2751), - [sym_list] = STATE(2751), - [sym_tuple] = STATE(2751), - [sym_bitstring] = STATE(2751), - [sym_map] = STATE(2751), - [sym_unary_operator] = STATE(2751), - [sym_binary_operator] = STATE(2751), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2751), - [sym_call] = STATE(2751), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2751), - [sym_anonymous_function] = STATE(2751), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(456), - [sym_unused_identifier] = ACTIONS(458), - [anon_sym___MODULE__] = ACTIONS(460), - [anon_sym___DIR__] = ACTIONS(460), - [anon_sym___ENV__] = ACTIONS(460), - [anon_sym___CALLER__] = ACTIONS(460), - [anon_sym___STACKTRACE__] = ACTIONS(460), - [sym_alias] = ACTIONS(2101), - [sym_integer] = ACTIONS(2101), - [sym_float] = ACTIONS(2101), - [sym_char] = ACTIONS(2101), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(2101), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(464), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(473), - [anon_sym_BANG] = ACTIONS(473), - [anon_sym_CARET] = ACTIONS(473), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), - [anon_sym_not] = ACTIONS(473), - [anon_sym_AT] = ACTIONS(475), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(477), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [628] = { - [sym__expression] = STATE(3172), - [sym_block] = STATE(3172), - [sym__identifier] = STATE(54), - [sym_identifier] = STATE(54), - [sym_special_identifier] = STATE(54), - [sym_boolean] = STATE(3172), - [sym_nil] = STATE(3172), - [sym__atom] = STATE(3172), - [sym_quoted_atom] = STATE(3172), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3172), - [sym_charlist] = STATE(3172), - [sym_sigil] = STATE(3172), - [sym_list] = STATE(3172), - [sym_tuple] = STATE(3172), - [sym_bitstring] = STATE(3172), - [sym_map] = STATE(3172), - [sym_unary_operator] = STATE(3172), - [sym_binary_operator] = STATE(3172), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3172), - [sym_call] = STATE(3172), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3172), - [sym_anonymous_function] = STATE(3172), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(1427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1427), - [sym_unused_identifier] = ACTIONS(1429), - [anon_sym___MODULE__] = ACTIONS(1431), - [anon_sym___DIR__] = ACTIONS(1431), - [anon_sym___ENV__] = ACTIONS(1431), - [anon_sym___CALLER__] = ACTIONS(1431), - [anon_sym___STACKTRACE__] = ACTIONS(1431), - [sym_alias] = ACTIONS(2103), - [sym_integer] = ACTIONS(2103), - [sym_float] = ACTIONS(2103), - [sym_char] = ACTIONS(2103), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(2103), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_CARET] = ACTIONS(1441), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1441), - [anon_sym_not] = ACTIONS(1441), - [anon_sym_AT] = ACTIONS(1443), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1445), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [629] = { - [sym__expression] = STATE(3173), - [sym_block] = STATE(3173), - [sym__identifier] = STATE(54), - [sym_identifier] = STATE(54), - [sym_special_identifier] = STATE(54), - [sym_boolean] = STATE(3173), - [sym_nil] = STATE(3173), - [sym__atom] = STATE(3173), - [sym_quoted_atom] = STATE(3173), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3173), - [sym_charlist] = STATE(3173), - [sym_sigil] = STATE(3173), - [sym_list] = STATE(3173), - [sym_tuple] = STATE(3173), - [sym_bitstring] = STATE(3173), - [sym_map] = STATE(3173), - [sym_unary_operator] = STATE(3173), - [sym_binary_operator] = STATE(3173), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3173), - [sym_call] = STATE(3173), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3173), - [sym_anonymous_function] = STATE(3173), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(1427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1427), - [sym_unused_identifier] = ACTIONS(1429), - [anon_sym___MODULE__] = ACTIONS(1431), - [anon_sym___DIR__] = ACTIONS(1431), - [anon_sym___ENV__] = ACTIONS(1431), - [anon_sym___CALLER__] = ACTIONS(1431), - [anon_sym___STACKTRACE__] = ACTIONS(1431), - [sym_alias] = ACTIONS(2105), - [sym_integer] = ACTIONS(2105), - [sym_float] = ACTIONS(2105), - [sym_char] = ACTIONS(2105), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_CARET] = ACTIONS(1441), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1441), - [anon_sym_not] = ACTIONS(1441), - [anon_sym_AT] = ACTIONS(1443), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1445), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [630] = { - [sym__expression] = STATE(1624), - [sym_block] = STATE(1624), - [sym__identifier] = STATE(54), - [sym_identifier] = STATE(54), - [sym_special_identifier] = STATE(54), - [sym_boolean] = STATE(1624), - [sym_nil] = STATE(1624), - [sym__atom] = STATE(1624), - [sym_quoted_atom] = STATE(1624), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(1624), - [sym_charlist] = STATE(1624), - [sym_sigil] = STATE(1624), - [sym_list] = STATE(1624), - [sym_tuple] = STATE(1624), - [sym_bitstring] = STATE(1624), - [sym_map] = STATE(1624), - [sym_unary_operator] = STATE(1624), - [sym_binary_operator] = STATE(1624), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(1624), - [sym_call] = STATE(1624), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(1624), - [sym_anonymous_function] = STATE(1624), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(1427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1427), - [sym_unused_identifier] = ACTIONS(1429), - [anon_sym___MODULE__] = ACTIONS(1431), - [anon_sym___DIR__] = ACTIONS(1431), - [anon_sym___ENV__] = ACTIONS(1431), - [anon_sym___CALLER__] = ACTIONS(1431), - [anon_sym___STACKTRACE__] = ACTIONS(1431), - [sym_alias] = ACTIONS(2107), - [sym_integer] = ACTIONS(2107), - [sym_float] = ACTIONS(2107), - [sym_char] = ACTIONS(2107), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(2107), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_CARET] = ACTIONS(1441), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1441), - [anon_sym_not] = ACTIONS(1441), - [anon_sym_AT] = ACTIONS(1443), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1445), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [631] = { - [sym__expression] = STATE(3435), - [sym_block] = STATE(3435), - [sym__identifier] = STATE(95), - [sym_identifier] = STATE(95), - [sym_special_identifier] = STATE(95), - [sym_boolean] = STATE(3435), - [sym_nil] = STATE(3435), - [sym__atom] = STATE(3435), - [sym_quoted_atom] = STATE(3435), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3435), - [sym_charlist] = STATE(3435), - [sym_sigil] = STATE(3435), - [sym_list] = STATE(3435), - [sym_tuple] = STATE(3435), - [sym_bitstring] = STATE(3435), - [sym_map] = STATE(3435), - [sym_unary_operator] = STATE(3435), - [sym_binary_operator] = STATE(3435), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3435), - [sym_call] = STATE(3435), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(65), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3435), - [sym_anonymous_function] = STATE(3435), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1509), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2109), - [sym_integer] = ACTIONS(2109), - [sym_float] = ACTIONS(2109), - [sym_char] = ACTIONS(2109), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1517), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1517), - [anon_sym_not] = ACTIONS(1517), - [anon_sym_AT] = ACTIONS(1519), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1521), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [632] = { - [sym__expression] = STATE(2750), - [sym_block] = STATE(2750), - [sym__identifier] = STATE(42), - [sym_identifier] = STATE(42), - [sym_special_identifier] = STATE(42), - [sym_boolean] = STATE(2750), - [sym_nil] = STATE(2750), - [sym__atom] = STATE(2750), - [sym_quoted_atom] = STATE(2750), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2750), - [sym_charlist] = STATE(2750), - [sym_sigil] = STATE(2750), - [sym_list] = STATE(2750), - [sym_tuple] = STATE(2750), - [sym_bitstring] = STATE(2750), - [sym_map] = STATE(2750), - [sym_unary_operator] = STATE(2750), - [sym_binary_operator] = STATE(2750), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2750), - [sym_call] = STATE(2750), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2750), - [sym_anonymous_function] = STATE(2750), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(456), - [sym_unused_identifier] = ACTIONS(458), - [anon_sym___MODULE__] = ACTIONS(460), - [anon_sym___DIR__] = ACTIONS(460), - [anon_sym___ENV__] = ACTIONS(460), - [anon_sym___CALLER__] = ACTIONS(460), - [anon_sym___STACKTRACE__] = ACTIONS(460), - [sym_alias] = ACTIONS(2111), - [sym_integer] = ACTIONS(2111), - [sym_float] = ACTIONS(2111), - [sym_char] = ACTIONS(2111), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(2111), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(464), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(473), - [anon_sym_BANG] = ACTIONS(473), - [anon_sym_CARET] = ACTIONS(473), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), - [anon_sym_not] = ACTIONS(473), - [anon_sym_AT] = ACTIONS(475), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(477), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [633] = { - [sym__expression] = STATE(3271), - [sym_block] = STATE(3271), - [sym__identifier] = STATE(54), - [sym_identifier] = STATE(54), - [sym_special_identifier] = STATE(54), - [sym_boolean] = STATE(3271), - [sym_nil] = STATE(3271), - [sym__atom] = STATE(3271), - [sym_quoted_atom] = STATE(3271), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3271), - [sym_charlist] = STATE(3271), - [sym_sigil] = STATE(3271), - [sym_list] = STATE(3271), - [sym_tuple] = STATE(3271), - [sym_bitstring] = STATE(3271), - [sym_map] = STATE(3271), - [sym_unary_operator] = STATE(3271), - [sym_binary_operator] = STATE(3271), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3271), - [sym_call] = STATE(3271), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3271), - [sym_anonymous_function] = STATE(3271), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(1427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1427), - [sym_unused_identifier] = ACTIONS(1429), - [anon_sym___MODULE__] = ACTIONS(1431), - [anon_sym___DIR__] = ACTIONS(1431), - [anon_sym___ENV__] = ACTIONS(1431), - [anon_sym___CALLER__] = ACTIONS(1431), - [anon_sym___STACKTRACE__] = ACTIONS(1431), - [sym_alias] = ACTIONS(2113), - [sym_integer] = ACTIONS(2113), - [sym_float] = ACTIONS(2113), - [sym_char] = ACTIONS(2113), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(2113), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_CARET] = ACTIONS(1441), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1441), - [anon_sym_not] = ACTIONS(1441), - [anon_sym_AT] = ACTIONS(1443), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1445), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [634] = { - [sym__expression] = STATE(2749), - [sym_block] = STATE(2749), - [sym__identifier] = STATE(42), - [sym_identifier] = STATE(42), - [sym_special_identifier] = STATE(42), - [sym_boolean] = STATE(2749), - [sym_nil] = STATE(2749), - [sym__atom] = STATE(2749), - [sym_quoted_atom] = STATE(2749), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2749), - [sym_charlist] = STATE(2749), - [sym_sigil] = STATE(2749), - [sym_list] = STATE(2749), - [sym_tuple] = STATE(2749), - [sym_bitstring] = STATE(2749), - [sym_map] = STATE(2749), - [sym_unary_operator] = STATE(2749), - [sym_binary_operator] = STATE(2749), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2749), - [sym_call] = STATE(2749), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2749), - [sym_anonymous_function] = STATE(2749), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(456), - [sym_unused_identifier] = ACTIONS(458), - [anon_sym___MODULE__] = ACTIONS(460), - [anon_sym___DIR__] = ACTIONS(460), - [anon_sym___ENV__] = ACTIONS(460), - [anon_sym___CALLER__] = ACTIONS(460), - [anon_sym___STACKTRACE__] = ACTIONS(460), - [sym_alias] = ACTIONS(2115), - [sym_integer] = ACTIONS(2115), - [sym_float] = ACTIONS(2115), - [sym_char] = ACTIONS(2115), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(2115), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(464), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(473), - [anon_sym_BANG] = ACTIONS(473), - [anon_sym_CARET] = ACTIONS(473), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), - [anon_sym_not] = ACTIONS(473), - [anon_sym_AT] = ACTIONS(475), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(477), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [635] = { - [sym__expression] = STATE(2493), - [sym_block] = STATE(2493), - [sym__identifier] = STATE(42), - [sym_identifier] = STATE(42), - [sym_special_identifier] = STATE(42), - [sym_boolean] = STATE(2493), - [sym_nil] = STATE(2493), - [sym__atom] = STATE(2493), - [sym_quoted_atom] = STATE(2493), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2493), - [sym_charlist] = STATE(2493), - [sym_sigil] = STATE(2493), - [sym_list] = STATE(2493), - [sym_tuple] = STATE(2493), - [sym_bitstring] = STATE(2493), - [sym_map] = STATE(2493), - [sym_unary_operator] = STATE(2493), - [sym_binary_operator] = STATE(2493), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2493), - [sym_call] = STATE(2493), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2493), - [sym_anonymous_function] = STATE(2493), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(456), - [sym_unused_identifier] = ACTIONS(458), - [anon_sym___MODULE__] = ACTIONS(460), - [anon_sym___DIR__] = ACTIONS(460), - [anon_sym___ENV__] = ACTIONS(460), - [anon_sym___CALLER__] = ACTIONS(460), - [anon_sym___STACKTRACE__] = ACTIONS(460), - [sym_alias] = ACTIONS(2117), - [sym_integer] = ACTIONS(2117), - [sym_float] = ACTIONS(2117), - [sym_char] = ACTIONS(2117), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(2117), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(464), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(473), - [anon_sym_BANG] = ACTIONS(473), - [anon_sym_CARET] = ACTIONS(473), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), - [anon_sym_not] = ACTIONS(473), - [anon_sym_AT] = ACTIONS(475), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(477), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [636] = { - [sym__expression] = STATE(1978), - [sym_block] = STATE(1978), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(1978), - [sym_nil] = STATE(1978), - [sym__atom] = STATE(1978), - [sym_quoted_atom] = STATE(1978), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(1978), - [sym_charlist] = STATE(1978), - [sym_sigil] = STATE(1978), - [sym_list] = STATE(1978), - [sym_tuple] = STATE(1978), - [sym_bitstring] = STATE(1978), - [sym_map] = STATE(1978), - [sym_unary_operator] = STATE(1978), - [sym_binary_operator] = STATE(1978), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(1978), - [sym_call] = STATE(1978), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(1978), - [sym_anonymous_function] = STATE(1978), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(944), - [anon_sym___MODULE__] = ACTIONS(71), - [anon_sym___DIR__] = ACTIONS(71), - [anon_sym___ENV__] = ACTIONS(71), - [anon_sym___CALLER__] = ACTIONS(71), - [anon_sym___STACKTRACE__] = ACTIONS(71), - [sym_alias] = ACTIONS(2119), - [sym_integer] = ACTIONS(2119), - [sym_float] = ACTIONS(2119), - [sym_char] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(2119), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(972), - [anon_sym_CARET] = ACTIONS(972), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), - [anon_sym_not] = ACTIONS(972), - [anon_sym_AT] = ACTIONS(974), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(980), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [637] = { - [sym__expression] = STATE(1641), - [sym_block] = STATE(1641), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(1641), - [sym_nil] = STATE(1641), - [sym__atom] = STATE(1641), - [sym_quoted_atom] = STATE(1641), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(1641), - [sym_charlist] = STATE(1641), - [sym_sigil] = STATE(1641), - [sym_list] = STATE(1641), - [sym_tuple] = STATE(1641), - [sym_bitstring] = STATE(1641), - [sym_map] = STATE(1641), - [sym_unary_operator] = STATE(1641), - [sym_binary_operator] = STATE(1641), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(1641), - [sym_call] = STATE(1641), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(1641), - [sym_anonymous_function] = STATE(1641), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(944), - [anon_sym___MODULE__] = ACTIONS(71), - [anon_sym___DIR__] = ACTIONS(71), - [anon_sym___ENV__] = ACTIONS(71), - [anon_sym___CALLER__] = ACTIONS(71), - [anon_sym___STACKTRACE__] = ACTIONS(71), - [sym_alias] = ACTIONS(2121), - [sym_integer] = ACTIONS(2121), - [sym_float] = ACTIONS(2121), - [sym_char] = ACTIONS(2121), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(2121), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(972), - [anon_sym_CARET] = ACTIONS(972), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), - [anon_sym_not] = ACTIONS(972), - [anon_sym_AT] = ACTIONS(974), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(980), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [638] = { - [sym__expression] = STATE(3436), - [sym_block] = STATE(3436), - [sym__identifier] = STATE(95), - [sym_identifier] = STATE(95), - [sym_special_identifier] = STATE(95), - [sym_boolean] = STATE(3436), - [sym_nil] = STATE(3436), - [sym__atom] = STATE(3436), - [sym_quoted_atom] = STATE(3436), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3436), - [sym_charlist] = STATE(3436), - [sym_sigil] = STATE(3436), - [sym_list] = STATE(3436), - [sym_tuple] = STATE(3436), - [sym_bitstring] = STATE(3436), - [sym_map] = STATE(3436), - [sym_unary_operator] = STATE(3436), - [sym_binary_operator] = STATE(3436), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3436), - [sym_call] = STATE(3436), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(65), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3436), - [sym_anonymous_function] = STATE(3436), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1509), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2123), - [sym_integer] = ACTIONS(2123), - [sym_float] = ACTIONS(2123), - [sym_char] = ACTIONS(2123), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2123), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1517), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1517), - [anon_sym_not] = ACTIONS(1517), - [anon_sym_AT] = ACTIONS(1519), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1521), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [639] = { - [sym__expression] = STATE(1641), - [sym_block] = STATE(1641), - [sym__identifier] = STATE(54), - [sym_identifier] = STATE(54), - [sym_special_identifier] = STATE(54), - [sym_boolean] = STATE(1641), - [sym_nil] = STATE(1641), - [sym__atom] = STATE(1641), - [sym_quoted_atom] = STATE(1641), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(1641), - [sym_charlist] = STATE(1641), - [sym_sigil] = STATE(1641), - [sym_list] = STATE(1641), - [sym_tuple] = STATE(1641), - [sym_bitstring] = STATE(1641), - [sym_map] = STATE(1641), - [sym_unary_operator] = STATE(1641), - [sym_binary_operator] = STATE(1641), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(1641), - [sym_call] = STATE(1641), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(1641), - [sym_anonymous_function] = STATE(1641), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(1427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1427), - [sym_unused_identifier] = ACTIONS(1429), - [anon_sym___MODULE__] = ACTIONS(1431), - [anon_sym___DIR__] = ACTIONS(1431), - [anon_sym___ENV__] = ACTIONS(1431), - [anon_sym___CALLER__] = ACTIONS(1431), - [anon_sym___STACKTRACE__] = ACTIONS(1431), - [sym_alias] = ACTIONS(2121), - [sym_integer] = ACTIONS(2121), - [sym_float] = ACTIONS(2121), - [sym_char] = ACTIONS(2121), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(2121), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_CARET] = ACTIONS(1441), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1441), - [anon_sym_not] = ACTIONS(1441), - [anon_sym_AT] = ACTIONS(1443), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1445), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [640] = { - [sym__expression] = STATE(3273), - [sym_block] = STATE(3273), - [sym__identifier] = STATE(54), - [sym_identifier] = STATE(54), - [sym_special_identifier] = STATE(54), - [sym_boolean] = STATE(3273), - [sym_nil] = STATE(3273), - [sym__atom] = STATE(3273), - [sym_quoted_atom] = STATE(3273), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3273), - [sym_charlist] = STATE(3273), - [sym_sigil] = STATE(3273), - [sym_list] = STATE(3273), - [sym_tuple] = STATE(3273), - [sym_bitstring] = STATE(3273), - [sym_map] = STATE(3273), - [sym_unary_operator] = STATE(3273), - [sym_binary_operator] = STATE(3273), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3273), - [sym_call] = STATE(3273), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3273), - [sym_anonymous_function] = STATE(3273), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(1427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1427), - [sym_unused_identifier] = ACTIONS(1429), - [anon_sym___MODULE__] = ACTIONS(1431), - [anon_sym___DIR__] = ACTIONS(1431), - [anon_sym___ENV__] = ACTIONS(1431), - [anon_sym___CALLER__] = ACTIONS(1431), - [anon_sym___STACKTRACE__] = ACTIONS(1431), - [sym_alias] = ACTIONS(2125), - [sym_integer] = ACTIONS(2125), - [sym_float] = ACTIONS(2125), - [sym_char] = ACTIONS(2125), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(2125), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_CARET] = ACTIONS(1441), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1441), - [anon_sym_not] = ACTIONS(1441), - [anon_sym_AT] = ACTIONS(1443), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1445), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [641] = { - [sym__expression] = STATE(3550), - [sym_block] = STATE(3550), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3550), - [sym_nil] = STATE(3550), - [sym__atom] = STATE(3550), - [sym_quoted_atom] = STATE(3550), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3550), - [sym_charlist] = STATE(3550), - [sym_sigil] = STATE(3550), - [sym_list] = STATE(3550), - [sym_tuple] = STATE(3550), - [sym_bitstring] = STATE(3550), - [sym_map] = STATE(3550), - [sym_unary_operator] = STATE(3550), - [sym_binary_operator] = STATE(3550), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3550), - [sym_call] = STATE(3550), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3550), - [sym_anonymous_function] = STATE(3550), + [622] = { + [sym__expression] = STATE(4137), + [sym_block] = STATE(4137), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(4137), + [sym_nil] = STATE(4137), + [sym__atom] = STATE(4137), + [sym_quoted_atom] = STATE(4137), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4137), + [sym_charlist] = STATE(4137), + [sym_sigil] = STATE(4137), + [sym_list] = STATE(4137), + [sym_tuple] = STATE(4137), + [sym_bitstring] = STATE(4137), + [sym_map] = STATE(4137), + [sym_unary_operator] = STATE(4137), + [sym_binary_operator] = STATE(4137), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4137), + [sym_call] = STATE(4137), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4137), + [sym_anonymous_function] = STATE(4137), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), [aux_sym_identifier_token1] = ACTIONS(826), @@ -107093,14 +105356,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ENV__] = ACTIONS(830), [anon_sym___CALLER__] = ACTIONS(830), [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2127), - [sym_integer] = ACTIONS(2127), - [sym_float] = ACTIONS(2127), - [sym_char] = ACTIONS(2127), + [sym_alias] = ACTIONS(2095), + [sym_integer] = ACTIONS(2095), + [sym_float] = ACTIONS(2095), + [sym_char] = ACTIONS(2095), [anon_sym_true] = ACTIONS(1073), [anon_sym_false] = ACTIONS(1073), [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2127), + [sym_atom] = ACTIONS(2095), [anon_sym_DQUOTE] = ACTIONS(1077), [anon_sym_SQUOTE] = ACTIONS(1079), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), @@ -107169,63 +105432,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(1109), }, - [642] = { - [sym__expression] = STATE(3438), - [sym_block] = STATE(3438), - [sym__identifier] = STATE(95), - [sym_identifier] = STATE(95), - [sym_special_identifier] = STATE(95), - [sym_boolean] = STATE(3438), - [sym_nil] = STATE(3438), - [sym__atom] = STATE(3438), - [sym_quoted_atom] = STATE(3438), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3438), - [sym_charlist] = STATE(3438), - [sym_sigil] = STATE(3438), - [sym_list] = STATE(3438), - [sym_tuple] = STATE(3438), - [sym_bitstring] = STATE(3438), - [sym_map] = STATE(3438), - [sym_unary_operator] = STATE(3438), - [sym_binary_operator] = STATE(3438), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3438), - [sym_call] = STATE(3438), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(65), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3438), - [sym_anonymous_function] = STATE(3438), + [623] = { + [sym__expression] = STATE(4135), + [sym_block] = STATE(4135), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(4135), + [sym_nil] = STATE(4135), + [sym__atom] = STATE(4135), + [sym_quoted_atom] = STATE(4135), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4135), + [sym_charlist] = STATE(4135), + [sym_sigil] = STATE(4135), + [sym_list] = STATE(4135), + [sym_tuple] = STATE(4135), + [sym_bitstring] = STATE(4135), + [sym_map] = STATE(4135), + [sym_unary_operator] = STATE(4135), + [sym_binary_operator] = STATE(4135), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4135), + [sym_call] = STATE(4135), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4135), + [sym_anonymous_function] = STATE(4135), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), [aux_sym_identifier_token1] = ACTIONS(826), [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1509), + [sym_unused_identifier] = ACTIONS(1069), [anon_sym___MODULE__] = ACTIONS(830), [anon_sym___DIR__] = ACTIONS(830), [anon_sym___ENV__] = ACTIONS(830), [anon_sym___CALLER__] = ACTIONS(830), [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2129), - [sym_integer] = ACTIONS(2129), - [sym_float] = ACTIONS(2129), - [sym_char] = ACTIONS(2129), + [sym_alias] = ACTIONS(2097), + [sym_integer] = ACTIONS(2097), + [sym_float] = ACTIONS(2097), + [sym_char] = ACTIONS(2097), [anon_sym_true] = ACTIONS(1073), [anon_sym_false] = ACTIONS(1073), [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2129), + [sym_atom] = ACTIONS(2097), [anon_sym_DQUOTE] = ACTIONS(1077), [anon_sym_SQUOTE] = ACTIONS(1079), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), @@ -107239,14 +105502,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(1091), [anon_sym_LT_LT] = ACTIONS(1095), [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1517), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1517), - [anon_sym_not] = ACTIONS(1517), - [anon_sym_AT] = ACTIONS(1519), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -107290,88 +105553,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1521), + [sym__before_unary_op] = ACTIONS(1107), [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(1109), }, - [643] = { - [sym__expression] = STATE(3246), - [sym_block] = STATE(3246), - [sym__identifier] = STATE(57), - [sym_identifier] = STATE(57), - [sym_special_identifier] = STATE(57), - [sym_boolean] = STATE(3246), - [sym_nil] = STATE(3246), - [sym__atom] = STATE(3246), - [sym_quoted_atom] = STATE(3246), - [sym__quoted_i_double] = STATE(3146), - [sym__quoted_i_single] = STATE(3147), - [sym__quoted_i_heredoc_single] = STATE(3147), - [sym__quoted_i_heredoc_double] = STATE(3146), - [sym_string] = STATE(3246), - [sym_charlist] = STATE(3246), - [sym_sigil] = STATE(3246), - [sym_list] = STATE(3246), - [sym_tuple] = STATE(3246), - [sym_bitstring] = STATE(3246), - [sym_map] = STATE(3246), - [sym_unary_operator] = STATE(3246), - [sym_binary_operator] = STATE(3246), - [sym_operator_identifier] = STATE(5049), - [sym_dot] = STATE(3246), - [sym_call] = STATE(3246), - [sym__call_without_parentheses] = STATE(3175), - [sym__call_with_parentheses] = STATE(3177), - [sym__local_call_without_parentheses] = STATE(3178), - [sym__local_call_with_parentheses] = STATE(2550), - [sym__local_call_just_do_block] = STATE(3183), - [sym__remote_call_without_parentheses] = STATE(3200), - [sym__remote_call_with_parentheses] = STATE(2583), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(2582), - [sym__anonymous_dot] = STATE(4866), - [sym__double_call] = STATE(3202), - [sym_access_call] = STATE(3246), - [sym_anonymous_function] = STATE(3246), + [624] = { + [sym__expression] = STATE(3774), + [sym_block] = STATE(3774), + [sym__identifier] = STATE(64), + [sym_identifier] = STATE(64), + [sym_special_identifier] = STATE(64), + [sym_boolean] = STATE(3774), + [sym_nil] = STATE(3774), + [sym__atom] = STATE(3774), + [sym_quoted_atom] = STATE(3774), + [sym__quoted_i_double] = STATE(3871), + [sym__quoted_i_single] = STATE(3876), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3774), + [sym_charlist] = STATE(3774), + [sym_sigil] = STATE(3774), + [sym_list] = STATE(3774), + [sym_tuple] = STATE(3774), + [sym_bitstring] = STATE(3774), + [sym_map] = STATE(3774), + [sym_unary_operator] = STATE(3774), + [sym_binary_operator] = STATE(3774), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3774), + [sym_call] = STATE(3774), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), + [sym__remote_dot] = STATE(55), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3774), + [sym_anonymous_function] = STATE(3774), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(15), - [sym_unused_identifier] = ACTIONS(17), - [anon_sym___MODULE__] = ACTIONS(19), - [anon_sym___DIR__] = ACTIONS(19), - [anon_sym___ENV__] = ACTIONS(19), - [anon_sym___CALLER__] = ACTIONS(19), - [anon_sym___STACKTRACE__] = ACTIONS(19), - [sym_alias] = ACTIONS(2131), - [sym_integer] = ACTIONS(2131), - [sym_float] = ACTIONS(2131), - [sym_char] = ACTIONS(2131), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_nil] = ACTIONS(25), - [sym_atom] = ACTIONS(2131), - [anon_sym_DQUOTE] = ACTIONS(27), - [anon_sym_SQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(1413), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2099), + [sym_integer] = ACTIONS(2099), + [sym_float] = ACTIONS(2099), + [sym_char] = ACTIONS(2099), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(2099), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(41), - [anon_sym_LT_LT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(45), - [anon_sym_AMP] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(49), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_CARET] = ACTIONS(49), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), - [anon_sym_not] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(51), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -107411,92 +105674,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(53), + [anon_sym_fn] = ACTIONS(864), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(55), + [sym__before_unary_op] = ACTIONS(866), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(59), + [sym__quoted_atom_start] = ACTIONS(868), }, - [644] = { - [sym__expression] = STATE(3247), - [sym_block] = STATE(3247), - [sym__identifier] = STATE(57), - [sym_identifier] = STATE(57), - [sym_special_identifier] = STATE(57), - [sym_boolean] = STATE(3247), - [sym_nil] = STATE(3247), - [sym__atom] = STATE(3247), - [sym_quoted_atom] = STATE(3247), - [sym__quoted_i_double] = STATE(3146), - [sym__quoted_i_single] = STATE(3147), - [sym__quoted_i_heredoc_single] = STATE(3147), - [sym__quoted_i_heredoc_double] = STATE(3146), - [sym_string] = STATE(3247), - [sym_charlist] = STATE(3247), - [sym_sigil] = STATE(3247), - [sym_list] = STATE(3247), - [sym_tuple] = STATE(3247), - [sym_bitstring] = STATE(3247), - [sym_map] = STATE(3247), - [sym_unary_operator] = STATE(3247), - [sym_binary_operator] = STATE(3247), - [sym_operator_identifier] = STATE(5049), - [sym_dot] = STATE(3247), - [sym_call] = STATE(3247), - [sym__call_without_parentheses] = STATE(3175), - [sym__call_with_parentheses] = STATE(3177), - [sym__local_call_without_parentheses] = STATE(3178), - [sym__local_call_with_parentheses] = STATE(2550), - [sym__local_call_just_do_block] = STATE(3183), - [sym__remote_call_without_parentheses] = STATE(3200), - [sym__remote_call_with_parentheses] = STATE(2583), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(2582), - [sym__anonymous_dot] = STATE(4866), - [sym__double_call] = STATE(3202), - [sym_access_call] = STATE(3247), - [sym_anonymous_function] = STATE(3247), + [625] = { + [sym__expression] = STATE(3775), + [sym_block] = STATE(3775), + [sym__identifier] = STATE(64), + [sym_identifier] = STATE(64), + [sym_special_identifier] = STATE(64), + [sym_boolean] = STATE(3775), + [sym_nil] = STATE(3775), + [sym__atom] = STATE(3775), + [sym_quoted_atom] = STATE(3775), + [sym__quoted_i_double] = STATE(3871), + [sym__quoted_i_single] = STATE(3876), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3775), + [sym_charlist] = STATE(3775), + [sym_sigil] = STATE(3775), + [sym_list] = STATE(3775), + [sym_tuple] = STATE(3775), + [sym_bitstring] = STATE(3775), + [sym_map] = STATE(3775), + [sym_unary_operator] = STATE(3775), + [sym_binary_operator] = STATE(3775), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3775), + [sym_call] = STATE(3775), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), + [sym__remote_dot] = STATE(55), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3775), + [sym_anonymous_function] = STATE(3775), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(15), - [sym_unused_identifier] = ACTIONS(17), - [anon_sym___MODULE__] = ACTIONS(19), - [anon_sym___DIR__] = ACTIONS(19), - [anon_sym___ENV__] = ACTIONS(19), - [anon_sym___CALLER__] = ACTIONS(19), - [anon_sym___STACKTRACE__] = ACTIONS(19), - [sym_alias] = ACTIONS(2133), - [sym_integer] = ACTIONS(2133), - [sym_float] = ACTIONS(2133), - [sym_char] = ACTIONS(2133), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_nil] = ACTIONS(25), - [sym_atom] = ACTIONS(2133), - [anon_sym_DQUOTE] = ACTIONS(27), - [anon_sym_SQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(1413), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2101), + [sym_integer] = ACTIONS(2101), + [sym_float] = ACTIONS(2101), + [sym_char] = ACTIONS(2101), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(2101), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(41), - [anon_sym_LT_LT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(45), - [anon_sym_AMP] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(49), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_CARET] = ACTIONS(49), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), - [anon_sym_not] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(51), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -107536,92 +105799,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(53), + [anon_sym_fn] = ACTIONS(864), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(55), + [sym__before_unary_op] = ACTIONS(866), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(59), + [sym__quoted_atom_start] = ACTIONS(868), }, - [645] = { - [sym__expression] = STATE(2925), - [sym_block] = STATE(2925), - [sym__identifier] = STATE(63), - [sym_identifier] = STATE(63), - [sym_special_identifier] = STATE(63), - [sym_boolean] = STATE(2925), - [sym_nil] = STATE(2925), - [sym__atom] = STATE(2925), - [sym_quoted_atom] = STATE(2925), - [sym__quoted_i_double] = STATE(2988), - [sym__quoted_i_single] = STATE(2987), - [sym__quoted_i_heredoc_single] = STATE(2987), - [sym__quoted_i_heredoc_double] = STATE(2988), - [sym_string] = STATE(2925), - [sym_charlist] = STATE(2925), - [sym_sigil] = STATE(2925), - [sym_list] = STATE(2925), - [sym_tuple] = STATE(2925), - [sym_bitstring] = STATE(2925), - [sym_map] = STATE(2925), - [sym_unary_operator] = STATE(2925), - [sym_binary_operator] = STATE(2925), - [sym_operator_identifier] = STATE(5020), - [sym_dot] = STATE(2925), - [sym_call] = STATE(2925), - [sym__call_without_parentheses] = STATE(2986), - [sym__call_with_parentheses] = STATE(2985), - [sym__local_call_without_parentheses] = STATE(2984), - [sym__local_call_with_parentheses] = STATE(2047), - [sym__local_call_just_do_block] = STATE(2983), - [sym__remote_call_without_parentheses] = STATE(2982), - [sym__remote_call_with_parentheses] = STATE(2050), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(2052), - [sym__anonymous_dot] = STATE(4887), - [sym__double_call] = STATE(2981), - [sym_access_call] = STATE(2925), - [sym_anonymous_function] = STATE(2925), + [626] = { + [sym__expression] = STATE(3776), + [sym_block] = STATE(3776), + [sym__identifier] = STATE(64), + [sym_identifier] = STATE(64), + [sym_special_identifier] = STATE(64), + [sym_boolean] = STATE(3776), + [sym_nil] = STATE(3776), + [sym__atom] = STATE(3776), + [sym_quoted_atom] = STATE(3776), + [sym__quoted_i_double] = STATE(3871), + [sym__quoted_i_single] = STATE(3876), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3776), + [sym_charlist] = STATE(3776), + [sym_sigil] = STATE(3776), + [sym_list] = STATE(3776), + [sym_tuple] = STATE(3776), + [sym_bitstring] = STATE(3776), + [sym_map] = STATE(3776), + [sym_unary_operator] = STATE(3776), + [sym_binary_operator] = STATE(3776), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3776), + [sym_call] = STATE(3776), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), + [sym__remote_dot] = STATE(55), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3776), + [sym_anonymous_function] = STATE(3776), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(604), - [aux_sym_identifier_token1] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(606), - [sym_unused_identifier] = ACTIONS(608), - [anon_sym___MODULE__] = ACTIONS(610), - [anon_sym___DIR__] = ACTIONS(610), - [anon_sym___ENV__] = ACTIONS(610), - [anon_sym___CALLER__] = ACTIONS(610), - [anon_sym___STACKTRACE__] = ACTIONS(610), - [sym_alias] = ACTIONS(2135), - [sym_integer] = ACTIONS(2135), - [sym_float] = ACTIONS(2135), - [sym_char] = ACTIONS(2135), - [anon_sym_true] = ACTIONS(614), - [anon_sym_false] = ACTIONS(614), - [anon_sym_nil] = ACTIONS(616), - [sym_atom] = ACTIONS(2135), - [anon_sym_DQUOTE] = ACTIONS(618), - [anon_sym_SQUOTE] = ACTIONS(620), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(624), - [anon_sym_LBRACE] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), + [anon_sym_LPAREN] = ACTIONS(1413), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2103), + [sym_integer] = ACTIONS(2103), + [sym_float] = ACTIONS(2103), + [sym_char] = ACTIONS(2103), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(2103), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(630), - [anon_sym_LT_LT] = ACTIONS(634), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_AMP] = ACTIONS(638), - [anon_sym_PLUS] = ACTIONS(640), - [anon_sym_DASH] = ACTIONS(640), - [anon_sym_BANG] = ACTIONS(640), - [anon_sym_CARET] = ACTIONS(640), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(640), - [anon_sym_not] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(642), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -107661,92 +105924,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(646), + [anon_sym_fn] = ACTIONS(864), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(652), + [sym__before_unary_op] = ACTIONS(866), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(654), + [sym__quoted_atom_start] = ACTIONS(868), }, - [646] = { - [sym__expression] = STATE(2926), - [sym_block] = STATE(2926), - [sym__identifier] = STATE(63), - [sym_identifier] = STATE(63), - [sym_special_identifier] = STATE(63), - [sym_boolean] = STATE(2926), - [sym_nil] = STATE(2926), - [sym__atom] = STATE(2926), - [sym_quoted_atom] = STATE(2926), - [sym__quoted_i_double] = STATE(2988), - [sym__quoted_i_single] = STATE(2987), - [sym__quoted_i_heredoc_single] = STATE(2987), - [sym__quoted_i_heredoc_double] = STATE(2988), - [sym_string] = STATE(2926), - [sym_charlist] = STATE(2926), - [sym_sigil] = STATE(2926), - [sym_list] = STATE(2926), - [sym_tuple] = STATE(2926), - [sym_bitstring] = STATE(2926), - [sym_map] = STATE(2926), - [sym_unary_operator] = STATE(2926), - [sym_binary_operator] = STATE(2926), - [sym_operator_identifier] = STATE(5020), - [sym_dot] = STATE(2926), - [sym_call] = STATE(2926), - [sym__call_without_parentheses] = STATE(2986), - [sym__call_with_parentheses] = STATE(2985), - [sym__local_call_without_parentheses] = STATE(2984), - [sym__local_call_with_parentheses] = STATE(2047), - [sym__local_call_just_do_block] = STATE(2983), - [sym__remote_call_without_parentheses] = STATE(2982), - [sym__remote_call_with_parentheses] = STATE(2050), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(2052), - [sym__anonymous_dot] = STATE(4887), - [sym__double_call] = STATE(2981), - [sym_access_call] = STATE(2926), - [sym_anonymous_function] = STATE(2926), + [627] = { + [sym__expression] = STATE(3777), + [sym_block] = STATE(3777), + [sym__identifier] = STATE(64), + [sym_identifier] = STATE(64), + [sym_special_identifier] = STATE(64), + [sym_boolean] = STATE(3777), + [sym_nil] = STATE(3777), + [sym__atom] = STATE(3777), + [sym_quoted_atom] = STATE(3777), + [sym__quoted_i_double] = STATE(3871), + [sym__quoted_i_single] = STATE(3876), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3777), + [sym_charlist] = STATE(3777), + [sym_sigil] = STATE(3777), + [sym_list] = STATE(3777), + [sym_tuple] = STATE(3777), + [sym_bitstring] = STATE(3777), + [sym_map] = STATE(3777), + [sym_unary_operator] = STATE(3777), + [sym_binary_operator] = STATE(3777), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3777), + [sym_call] = STATE(3777), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), + [sym__remote_dot] = STATE(55), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3777), + [sym_anonymous_function] = STATE(3777), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(604), - [aux_sym_identifier_token1] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(606), - [sym_unused_identifier] = ACTIONS(608), - [anon_sym___MODULE__] = ACTIONS(610), - [anon_sym___DIR__] = ACTIONS(610), - [anon_sym___ENV__] = ACTIONS(610), - [anon_sym___CALLER__] = ACTIONS(610), - [anon_sym___STACKTRACE__] = ACTIONS(610), - [sym_alias] = ACTIONS(2137), - [sym_integer] = ACTIONS(2137), - [sym_float] = ACTIONS(2137), - [sym_char] = ACTIONS(2137), - [anon_sym_true] = ACTIONS(614), - [anon_sym_false] = ACTIONS(614), - [anon_sym_nil] = ACTIONS(616), - [sym_atom] = ACTIONS(2137), - [anon_sym_DQUOTE] = ACTIONS(618), - [anon_sym_SQUOTE] = ACTIONS(620), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(624), - [anon_sym_LBRACE] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), + [anon_sym_LPAREN] = ACTIONS(1413), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2105), + [sym_integer] = ACTIONS(2105), + [sym_float] = ACTIONS(2105), + [sym_char] = ACTIONS(2105), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(2105), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(630), - [anon_sym_LT_LT] = ACTIONS(634), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_AMP] = ACTIONS(638), - [anon_sym_PLUS] = ACTIONS(640), - [anon_sym_DASH] = ACTIONS(640), - [anon_sym_BANG] = ACTIONS(640), - [anon_sym_CARET] = ACTIONS(640), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(640), - [anon_sym_not] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(642), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -107786,1196 +106049,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(646), + [anon_sym_fn] = ACTIONS(864), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(652), + [sym__before_unary_op] = ACTIONS(866), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(654), + [sym__quoted_atom_start] = ACTIONS(868), }, - [647] = { - [sym__expression] = STATE(2927), - [sym_block] = STATE(2927), - [sym__identifier] = STATE(63), - [sym_identifier] = STATE(63), - [sym_special_identifier] = STATE(63), - [sym_boolean] = STATE(2927), - [sym_nil] = STATE(2927), - [sym__atom] = STATE(2927), - [sym_quoted_atom] = STATE(2927), - [sym__quoted_i_double] = STATE(2988), - [sym__quoted_i_single] = STATE(2987), - [sym__quoted_i_heredoc_single] = STATE(2987), - [sym__quoted_i_heredoc_double] = STATE(2988), - [sym_string] = STATE(2927), - [sym_charlist] = STATE(2927), - [sym_sigil] = STATE(2927), - [sym_list] = STATE(2927), - [sym_tuple] = STATE(2927), - [sym_bitstring] = STATE(2927), - [sym_map] = STATE(2927), - [sym_unary_operator] = STATE(2927), - [sym_binary_operator] = STATE(2927), - [sym_operator_identifier] = STATE(5020), - [sym_dot] = STATE(2927), - [sym_call] = STATE(2927), - [sym__call_without_parentheses] = STATE(2986), - [sym__call_with_parentheses] = STATE(2985), - [sym__local_call_without_parentheses] = STATE(2984), - [sym__local_call_with_parentheses] = STATE(2047), - [sym__local_call_just_do_block] = STATE(2983), - [sym__remote_call_without_parentheses] = STATE(2982), - [sym__remote_call_with_parentheses] = STATE(2050), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(2052), - [sym__anonymous_dot] = STATE(4887), - [sym__double_call] = STATE(2981), - [sym_access_call] = STATE(2927), - [sym_anonymous_function] = STATE(2927), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(604), - [aux_sym_identifier_token1] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(606), - [sym_unused_identifier] = ACTIONS(608), - [anon_sym___MODULE__] = ACTIONS(610), - [anon_sym___DIR__] = ACTIONS(610), - [anon_sym___ENV__] = ACTIONS(610), - [anon_sym___CALLER__] = ACTIONS(610), - [anon_sym___STACKTRACE__] = ACTIONS(610), - [sym_alias] = ACTIONS(2139), - [sym_integer] = ACTIONS(2139), - [sym_float] = ACTIONS(2139), - [sym_char] = ACTIONS(2139), - [anon_sym_true] = ACTIONS(614), - [anon_sym_false] = ACTIONS(614), - [anon_sym_nil] = ACTIONS(616), - [sym_atom] = ACTIONS(2139), - [anon_sym_DQUOTE] = ACTIONS(618), - [anon_sym_SQUOTE] = ACTIONS(620), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(624), - [anon_sym_LBRACE] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(630), - [anon_sym_LT_LT] = ACTIONS(634), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_AMP] = ACTIONS(638), - [anon_sym_PLUS] = ACTIONS(640), - [anon_sym_DASH] = ACTIONS(640), - [anon_sym_BANG] = ACTIONS(640), - [anon_sym_CARET] = ACTIONS(640), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(640), - [anon_sym_not] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(642), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(646), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(652), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(654), - }, - [648] = { - [sym__expression] = STATE(2928), - [sym_block] = STATE(2928), - [sym__identifier] = STATE(63), - [sym_identifier] = STATE(63), - [sym_special_identifier] = STATE(63), - [sym_boolean] = STATE(2928), - [sym_nil] = STATE(2928), - [sym__atom] = STATE(2928), - [sym_quoted_atom] = STATE(2928), - [sym__quoted_i_double] = STATE(2988), - [sym__quoted_i_single] = STATE(2987), - [sym__quoted_i_heredoc_single] = STATE(2987), - [sym__quoted_i_heredoc_double] = STATE(2988), - [sym_string] = STATE(2928), - [sym_charlist] = STATE(2928), - [sym_sigil] = STATE(2928), - [sym_list] = STATE(2928), - [sym_tuple] = STATE(2928), - [sym_bitstring] = STATE(2928), - [sym_map] = STATE(2928), - [sym_unary_operator] = STATE(2928), - [sym_binary_operator] = STATE(2928), - [sym_operator_identifier] = STATE(5020), - [sym_dot] = STATE(2928), - [sym_call] = STATE(2928), - [sym__call_without_parentheses] = STATE(2986), - [sym__call_with_parentheses] = STATE(2985), - [sym__local_call_without_parentheses] = STATE(2984), - [sym__local_call_with_parentheses] = STATE(2047), - [sym__local_call_just_do_block] = STATE(2983), - [sym__remote_call_without_parentheses] = STATE(2982), - [sym__remote_call_with_parentheses] = STATE(2050), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(2052), - [sym__anonymous_dot] = STATE(4887), - [sym__double_call] = STATE(2981), - [sym_access_call] = STATE(2928), - [sym_anonymous_function] = STATE(2928), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(604), - [aux_sym_identifier_token1] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(606), - [sym_unused_identifier] = ACTIONS(608), - [anon_sym___MODULE__] = ACTIONS(610), - [anon_sym___DIR__] = ACTIONS(610), - [anon_sym___ENV__] = ACTIONS(610), - [anon_sym___CALLER__] = ACTIONS(610), - [anon_sym___STACKTRACE__] = ACTIONS(610), - [sym_alias] = ACTIONS(2141), - [sym_integer] = ACTIONS(2141), - [sym_float] = ACTIONS(2141), - [sym_char] = ACTIONS(2141), - [anon_sym_true] = ACTIONS(614), - [anon_sym_false] = ACTIONS(614), - [anon_sym_nil] = ACTIONS(616), - [sym_atom] = ACTIONS(2141), - [anon_sym_DQUOTE] = ACTIONS(618), - [anon_sym_SQUOTE] = ACTIONS(620), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(624), - [anon_sym_LBRACE] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(630), - [anon_sym_LT_LT] = ACTIONS(634), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_AMP] = ACTIONS(638), - [anon_sym_PLUS] = ACTIONS(640), - [anon_sym_DASH] = ACTIONS(640), - [anon_sym_BANG] = ACTIONS(640), - [anon_sym_CARET] = ACTIONS(640), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(640), - [anon_sym_not] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(642), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(646), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(652), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(654), - }, - [649] = { - [sym__expression] = STATE(2929), - [sym_block] = STATE(2929), - [sym__identifier] = STATE(63), - [sym_identifier] = STATE(63), - [sym_special_identifier] = STATE(63), - [sym_boolean] = STATE(2929), - [sym_nil] = STATE(2929), - [sym__atom] = STATE(2929), - [sym_quoted_atom] = STATE(2929), - [sym__quoted_i_double] = STATE(2988), - [sym__quoted_i_single] = STATE(2987), - [sym__quoted_i_heredoc_single] = STATE(2987), - [sym__quoted_i_heredoc_double] = STATE(2988), - [sym_string] = STATE(2929), - [sym_charlist] = STATE(2929), - [sym_sigil] = STATE(2929), - [sym_list] = STATE(2929), - [sym_tuple] = STATE(2929), - [sym_bitstring] = STATE(2929), - [sym_map] = STATE(2929), - [sym_unary_operator] = STATE(2929), - [sym_binary_operator] = STATE(2929), - [sym_operator_identifier] = STATE(5020), - [sym_dot] = STATE(2929), - [sym_call] = STATE(2929), - [sym__call_without_parentheses] = STATE(2986), - [sym__call_with_parentheses] = STATE(2985), - [sym__local_call_without_parentheses] = STATE(2984), - [sym__local_call_with_parentheses] = STATE(2047), - [sym__local_call_just_do_block] = STATE(2983), - [sym__remote_call_without_parentheses] = STATE(2982), - [sym__remote_call_with_parentheses] = STATE(2050), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(2052), - [sym__anonymous_dot] = STATE(4887), - [sym__double_call] = STATE(2981), - [sym_access_call] = STATE(2929), - [sym_anonymous_function] = STATE(2929), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(604), - [aux_sym_identifier_token1] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(606), - [sym_unused_identifier] = ACTIONS(608), - [anon_sym___MODULE__] = ACTIONS(610), - [anon_sym___DIR__] = ACTIONS(610), - [anon_sym___ENV__] = ACTIONS(610), - [anon_sym___CALLER__] = ACTIONS(610), - [anon_sym___STACKTRACE__] = ACTIONS(610), - [sym_alias] = ACTIONS(2143), - [sym_integer] = ACTIONS(2143), - [sym_float] = ACTIONS(2143), - [sym_char] = ACTIONS(2143), - [anon_sym_true] = ACTIONS(614), - [anon_sym_false] = ACTIONS(614), - [anon_sym_nil] = ACTIONS(616), - [sym_atom] = ACTIONS(2143), - [anon_sym_DQUOTE] = ACTIONS(618), - [anon_sym_SQUOTE] = ACTIONS(620), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(624), - [anon_sym_LBRACE] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(630), - [anon_sym_LT_LT] = ACTIONS(634), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_AMP] = ACTIONS(638), - [anon_sym_PLUS] = ACTIONS(640), - [anon_sym_DASH] = ACTIONS(640), - [anon_sym_BANG] = ACTIONS(640), - [anon_sym_CARET] = ACTIONS(640), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(640), - [anon_sym_not] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(642), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(646), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(652), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(654), - }, - [650] = { - [sym__expression] = STATE(2930), - [sym_block] = STATE(2930), - [sym__identifier] = STATE(63), - [sym_identifier] = STATE(63), - [sym_special_identifier] = STATE(63), - [sym_boolean] = STATE(2930), - [sym_nil] = STATE(2930), - [sym__atom] = STATE(2930), - [sym_quoted_atom] = STATE(2930), - [sym__quoted_i_double] = STATE(2988), - [sym__quoted_i_single] = STATE(2987), - [sym__quoted_i_heredoc_single] = STATE(2987), - [sym__quoted_i_heredoc_double] = STATE(2988), - [sym_string] = STATE(2930), - [sym_charlist] = STATE(2930), - [sym_sigil] = STATE(2930), - [sym_list] = STATE(2930), - [sym_tuple] = STATE(2930), - [sym_bitstring] = STATE(2930), - [sym_map] = STATE(2930), - [sym_unary_operator] = STATE(2930), - [sym_binary_operator] = STATE(2930), - [sym_operator_identifier] = STATE(5020), - [sym_dot] = STATE(2930), - [sym_call] = STATE(2930), - [sym__call_without_parentheses] = STATE(2986), - [sym__call_with_parentheses] = STATE(2985), - [sym__local_call_without_parentheses] = STATE(2984), - [sym__local_call_with_parentheses] = STATE(2047), - [sym__local_call_just_do_block] = STATE(2983), - [sym__remote_call_without_parentheses] = STATE(2982), - [sym__remote_call_with_parentheses] = STATE(2050), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(2052), - [sym__anonymous_dot] = STATE(4887), - [sym__double_call] = STATE(2981), - [sym_access_call] = STATE(2930), - [sym_anonymous_function] = STATE(2930), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(604), - [aux_sym_identifier_token1] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(606), - [sym_unused_identifier] = ACTIONS(608), - [anon_sym___MODULE__] = ACTIONS(610), - [anon_sym___DIR__] = ACTIONS(610), - [anon_sym___ENV__] = ACTIONS(610), - [anon_sym___CALLER__] = ACTIONS(610), - [anon_sym___STACKTRACE__] = ACTIONS(610), - [sym_alias] = ACTIONS(2145), - [sym_integer] = ACTIONS(2145), - [sym_float] = ACTIONS(2145), - [sym_char] = ACTIONS(2145), - [anon_sym_true] = ACTIONS(614), - [anon_sym_false] = ACTIONS(614), - [anon_sym_nil] = ACTIONS(616), - [sym_atom] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(618), - [anon_sym_SQUOTE] = ACTIONS(620), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(624), - [anon_sym_LBRACE] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(630), - [anon_sym_LT_LT] = ACTIONS(634), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_AMP] = ACTIONS(638), - [anon_sym_PLUS] = ACTIONS(640), - [anon_sym_DASH] = ACTIONS(640), - [anon_sym_BANG] = ACTIONS(640), - [anon_sym_CARET] = ACTIONS(640), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(640), - [anon_sym_not] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(642), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(646), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(652), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(654), - }, - [651] = { - [sym__expression] = STATE(2932), - [sym_block] = STATE(2932), - [sym__identifier] = STATE(63), - [sym_identifier] = STATE(63), - [sym_special_identifier] = STATE(63), - [sym_boolean] = STATE(2932), - [sym_nil] = STATE(2932), - [sym__atom] = STATE(2932), - [sym_quoted_atom] = STATE(2932), - [sym__quoted_i_double] = STATE(2988), - [sym__quoted_i_single] = STATE(2987), - [sym__quoted_i_heredoc_single] = STATE(2987), - [sym__quoted_i_heredoc_double] = STATE(2988), - [sym_string] = STATE(2932), - [sym_charlist] = STATE(2932), - [sym_sigil] = STATE(2932), - [sym_list] = STATE(2932), - [sym_tuple] = STATE(2932), - [sym_bitstring] = STATE(2932), - [sym_map] = STATE(2932), - [sym_unary_operator] = STATE(2932), - [sym_binary_operator] = STATE(2932), - [sym_operator_identifier] = STATE(5020), - [sym_dot] = STATE(2932), - [sym_call] = STATE(2932), - [sym__call_without_parentheses] = STATE(2986), - [sym__call_with_parentheses] = STATE(2985), - [sym__local_call_without_parentheses] = STATE(2984), - [sym__local_call_with_parentheses] = STATE(2047), - [sym__local_call_just_do_block] = STATE(2983), - [sym__remote_call_without_parentheses] = STATE(2982), - [sym__remote_call_with_parentheses] = STATE(2050), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(2052), - [sym__anonymous_dot] = STATE(4887), - [sym__double_call] = STATE(2981), - [sym_access_call] = STATE(2932), - [sym_anonymous_function] = STATE(2932), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(604), - [aux_sym_identifier_token1] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(606), - [sym_unused_identifier] = ACTIONS(608), - [anon_sym___MODULE__] = ACTIONS(610), - [anon_sym___DIR__] = ACTIONS(610), - [anon_sym___ENV__] = ACTIONS(610), - [anon_sym___CALLER__] = ACTIONS(610), - [anon_sym___STACKTRACE__] = ACTIONS(610), - [sym_alias] = ACTIONS(2147), - [sym_integer] = ACTIONS(2147), - [sym_float] = ACTIONS(2147), - [sym_char] = ACTIONS(2147), - [anon_sym_true] = ACTIONS(614), - [anon_sym_false] = ACTIONS(614), - [anon_sym_nil] = ACTIONS(616), - [sym_atom] = ACTIONS(2147), - [anon_sym_DQUOTE] = ACTIONS(618), - [anon_sym_SQUOTE] = ACTIONS(620), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(624), - [anon_sym_LBRACE] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(630), - [anon_sym_LT_LT] = ACTIONS(634), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_AMP] = ACTIONS(638), - [anon_sym_PLUS] = ACTIONS(640), - [anon_sym_DASH] = ACTIONS(640), - [anon_sym_BANG] = ACTIONS(640), - [anon_sym_CARET] = ACTIONS(640), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(640), - [anon_sym_not] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(642), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(646), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(652), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(654), - }, - [652] = { - [sym__expression] = STATE(2933), - [sym_block] = STATE(2933), - [sym__identifier] = STATE(63), - [sym_identifier] = STATE(63), - [sym_special_identifier] = STATE(63), - [sym_boolean] = STATE(2933), - [sym_nil] = STATE(2933), - [sym__atom] = STATE(2933), - [sym_quoted_atom] = STATE(2933), - [sym__quoted_i_double] = STATE(2988), - [sym__quoted_i_single] = STATE(2987), - [sym__quoted_i_heredoc_single] = STATE(2987), - [sym__quoted_i_heredoc_double] = STATE(2988), - [sym_string] = STATE(2933), - [sym_charlist] = STATE(2933), - [sym_sigil] = STATE(2933), - [sym_list] = STATE(2933), - [sym_tuple] = STATE(2933), - [sym_bitstring] = STATE(2933), - [sym_map] = STATE(2933), - [sym_unary_operator] = STATE(2933), - [sym_binary_operator] = STATE(2933), - [sym_operator_identifier] = STATE(5020), - [sym_dot] = STATE(2933), - [sym_call] = STATE(2933), - [sym__call_without_parentheses] = STATE(2986), - [sym__call_with_parentheses] = STATE(2985), - [sym__local_call_without_parentheses] = STATE(2984), - [sym__local_call_with_parentheses] = STATE(2047), - [sym__local_call_just_do_block] = STATE(2983), - [sym__remote_call_without_parentheses] = STATE(2982), - [sym__remote_call_with_parentheses] = STATE(2050), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(2052), - [sym__anonymous_dot] = STATE(4887), - [sym__double_call] = STATE(2981), - [sym_access_call] = STATE(2933), - [sym_anonymous_function] = STATE(2933), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(604), - [aux_sym_identifier_token1] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(606), - [sym_unused_identifier] = ACTIONS(608), - [anon_sym___MODULE__] = ACTIONS(610), - [anon_sym___DIR__] = ACTIONS(610), - [anon_sym___ENV__] = ACTIONS(610), - [anon_sym___CALLER__] = ACTIONS(610), - [anon_sym___STACKTRACE__] = ACTIONS(610), - [sym_alias] = ACTIONS(2149), - [sym_integer] = ACTIONS(2149), - [sym_float] = ACTIONS(2149), - [sym_char] = ACTIONS(2149), - [anon_sym_true] = ACTIONS(614), - [anon_sym_false] = ACTIONS(614), - [anon_sym_nil] = ACTIONS(616), - [sym_atom] = ACTIONS(2149), - [anon_sym_DQUOTE] = ACTIONS(618), - [anon_sym_SQUOTE] = ACTIONS(620), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(624), - [anon_sym_LBRACE] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(630), - [anon_sym_LT_LT] = ACTIONS(634), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_AMP] = ACTIONS(638), - [anon_sym_PLUS] = ACTIONS(640), - [anon_sym_DASH] = ACTIONS(640), - [anon_sym_BANG] = ACTIONS(640), - [anon_sym_CARET] = ACTIONS(640), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(640), - [anon_sym_not] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(642), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(646), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(652), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(654), - }, - [653] = { - [sym__expression] = STATE(2934), - [sym_block] = STATE(2934), - [sym__identifier] = STATE(63), - [sym_identifier] = STATE(63), - [sym_special_identifier] = STATE(63), - [sym_boolean] = STATE(2934), - [sym_nil] = STATE(2934), - [sym__atom] = STATE(2934), - [sym_quoted_atom] = STATE(2934), - [sym__quoted_i_double] = STATE(2988), - [sym__quoted_i_single] = STATE(2987), - [sym__quoted_i_heredoc_single] = STATE(2987), - [sym__quoted_i_heredoc_double] = STATE(2988), - [sym_string] = STATE(2934), - [sym_charlist] = STATE(2934), - [sym_sigil] = STATE(2934), - [sym_list] = STATE(2934), - [sym_tuple] = STATE(2934), - [sym_bitstring] = STATE(2934), - [sym_map] = STATE(2934), - [sym_unary_operator] = STATE(2934), - [sym_binary_operator] = STATE(2934), - [sym_operator_identifier] = STATE(5020), - [sym_dot] = STATE(2934), - [sym_call] = STATE(2934), - [sym__call_without_parentheses] = STATE(2986), - [sym__call_with_parentheses] = STATE(2985), - [sym__local_call_without_parentheses] = STATE(2984), - [sym__local_call_with_parentheses] = STATE(2047), - [sym__local_call_just_do_block] = STATE(2983), - [sym__remote_call_without_parentheses] = STATE(2982), - [sym__remote_call_with_parentheses] = STATE(2050), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(2052), - [sym__anonymous_dot] = STATE(4887), - [sym__double_call] = STATE(2981), - [sym_access_call] = STATE(2934), - [sym_anonymous_function] = STATE(2934), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(604), - [aux_sym_identifier_token1] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(606), - [sym_unused_identifier] = ACTIONS(608), - [anon_sym___MODULE__] = ACTIONS(610), - [anon_sym___DIR__] = ACTIONS(610), - [anon_sym___ENV__] = ACTIONS(610), - [anon_sym___CALLER__] = ACTIONS(610), - [anon_sym___STACKTRACE__] = ACTIONS(610), - [sym_alias] = ACTIONS(2151), - [sym_integer] = ACTIONS(2151), - [sym_float] = ACTIONS(2151), - [sym_char] = ACTIONS(2151), - [anon_sym_true] = ACTIONS(614), - [anon_sym_false] = ACTIONS(614), - [anon_sym_nil] = ACTIONS(616), - [sym_atom] = ACTIONS(2151), - [anon_sym_DQUOTE] = ACTIONS(618), - [anon_sym_SQUOTE] = ACTIONS(620), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(624), - [anon_sym_LBRACE] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(630), - [anon_sym_LT_LT] = ACTIONS(634), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_AMP] = ACTIONS(638), - [anon_sym_PLUS] = ACTIONS(640), - [anon_sym_DASH] = ACTIONS(640), - [anon_sym_BANG] = ACTIONS(640), - [anon_sym_CARET] = ACTIONS(640), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(640), - [anon_sym_not] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(642), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(646), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(652), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(654), - }, - [654] = { - [sym__expression] = STATE(2937), - [sym_block] = STATE(2937), - [sym__identifier] = STATE(63), - [sym_identifier] = STATE(63), - [sym_special_identifier] = STATE(63), - [sym_boolean] = STATE(2937), - [sym_nil] = STATE(2937), - [sym__atom] = STATE(2937), - [sym_quoted_atom] = STATE(2937), - [sym__quoted_i_double] = STATE(2988), - [sym__quoted_i_single] = STATE(2987), - [sym__quoted_i_heredoc_single] = STATE(2987), - [sym__quoted_i_heredoc_double] = STATE(2988), - [sym_string] = STATE(2937), - [sym_charlist] = STATE(2937), - [sym_sigil] = STATE(2937), - [sym_list] = STATE(2937), - [sym_tuple] = STATE(2937), - [sym_bitstring] = STATE(2937), - [sym_map] = STATE(2937), - [sym_unary_operator] = STATE(2937), - [sym_binary_operator] = STATE(2937), - [sym_operator_identifier] = STATE(5020), - [sym_dot] = STATE(2937), - [sym_call] = STATE(2937), - [sym__call_without_parentheses] = STATE(2986), - [sym__call_with_parentheses] = STATE(2985), - [sym__local_call_without_parentheses] = STATE(2984), - [sym__local_call_with_parentheses] = STATE(2047), - [sym__local_call_just_do_block] = STATE(2983), - [sym__remote_call_without_parentheses] = STATE(2982), - [sym__remote_call_with_parentheses] = STATE(2050), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(2052), - [sym__anonymous_dot] = STATE(4887), - [sym__double_call] = STATE(2981), - [sym_access_call] = STATE(2937), - [sym_anonymous_function] = STATE(2937), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(604), - [aux_sym_identifier_token1] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(606), - [sym_unused_identifier] = ACTIONS(608), - [anon_sym___MODULE__] = ACTIONS(610), - [anon_sym___DIR__] = ACTIONS(610), - [anon_sym___ENV__] = ACTIONS(610), - [anon_sym___CALLER__] = ACTIONS(610), - [anon_sym___STACKTRACE__] = ACTIONS(610), - [sym_alias] = ACTIONS(2153), - [sym_integer] = ACTIONS(2153), - [sym_float] = ACTIONS(2153), - [sym_char] = ACTIONS(2153), - [anon_sym_true] = ACTIONS(614), - [anon_sym_false] = ACTIONS(614), - [anon_sym_nil] = ACTIONS(616), - [sym_atom] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(618), - [anon_sym_SQUOTE] = ACTIONS(620), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(624), - [anon_sym_LBRACE] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(630), - [anon_sym_LT_LT] = ACTIONS(634), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_AMP] = ACTIONS(638), - [anon_sym_PLUS] = ACTIONS(640), - [anon_sym_DASH] = ACTIONS(640), - [anon_sym_BANG] = ACTIONS(640), - [anon_sym_CARET] = ACTIONS(640), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(640), - [anon_sym_not] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(642), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(646), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(652), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(654), - }, - [655] = { - [sym__expression] = STATE(2938), - [sym_block] = STATE(2938), - [sym__identifier] = STATE(63), - [sym_identifier] = STATE(63), - [sym_special_identifier] = STATE(63), - [sym_boolean] = STATE(2938), - [sym_nil] = STATE(2938), - [sym__atom] = STATE(2938), - [sym_quoted_atom] = STATE(2938), - [sym__quoted_i_double] = STATE(2988), - [sym__quoted_i_single] = STATE(2987), - [sym__quoted_i_heredoc_single] = STATE(2987), - [sym__quoted_i_heredoc_double] = STATE(2988), - [sym_string] = STATE(2938), - [sym_charlist] = STATE(2938), - [sym_sigil] = STATE(2938), - [sym_list] = STATE(2938), - [sym_tuple] = STATE(2938), - [sym_bitstring] = STATE(2938), - [sym_map] = STATE(2938), - [sym_unary_operator] = STATE(2938), - [sym_binary_operator] = STATE(2938), - [sym_operator_identifier] = STATE(5020), - [sym_dot] = STATE(2938), - [sym_call] = STATE(2938), - [sym__call_without_parentheses] = STATE(2986), - [sym__call_with_parentheses] = STATE(2985), - [sym__local_call_without_parentheses] = STATE(2984), - [sym__local_call_with_parentheses] = STATE(2047), - [sym__local_call_just_do_block] = STATE(2983), - [sym__remote_call_without_parentheses] = STATE(2982), - [sym__remote_call_with_parentheses] = STATE(2050), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(2052), - [sym__anonymous_dot] = STATE(4887), - [sym__double_call] = STATE(2981), - [sym_access_call] = STATE(2938), - [sym_anonymous_function] = STATE(2938), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(604), - [aux_sym_identifier_token1] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(606), - [sym_unused_identifier] = ACTIONS(608), - [anon_sym___MODULE__] = ACTIONS(610), - [anon_sym___DIR__] = ACTIONS(610), - [anon_sym___ENV__] = ACTIONS(610), - [anon_sym___CALLER__] = ACTIONS(610), - [anon_sym___STACKTRACE__] = ACTIONS(610), - [sym_alias] = ACTIONS(2155), - [sym_integer] = ACTIONS(2155), - [sym_float] = ACTIONS(2155), - [sym_char] = ACTIONS(2155), - [anon_sym_true] = ACTIONS(614), - [anon_sym_false] = ACTIONS(614), - [anon_sym_nil] = ACTIONS(616), - [sym_atom] = ACTIONS(2155), - [anon_sym_DQUOTE] = ACTIONS(618), - [anon_sym_SQUOTE] = ACTIONS(620), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(624), - [anon_sym_LBRACE] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(630), - [anon_sym_LT_LT] = ACTIONS(634), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_AMP] = ACTIONS(638), - [anon_sym_PLUS] = ACTIONS(640), - [anon_sym_DASH] = ACTIONS(640), - [anon_sym_BANG] = ACTIONS(640), - [anon_sym_CARET] = ACTIONS(640), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(640), - [anon_sym_not] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(642), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(646), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(652), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(654), - }, - [656] = { - [sym__expression] = STATE(2757), - [sym_block] = STATE(2757), - [sym__identifier] = STATE(42), - [sym_identifier] = STATE(42), - [sym_special_identifier] = STATE(42), - [sym_boolean] = STATE(2757), - [sym_nil] = STATE(2757), - [sym__atom] = STATE(2757), - [sym_quoted_atom] = STATE(2757), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2757), - [sym_charlist] = STATE(2757), - [sym_sigil] = STATE(2757), - [sym_list] = STATE(2757), - [sym_tuple] = STATE(2757), - [sym_bitstring] = STATE(2757), - [sym_map] = STATE(2757), - [sym_unary_operator] = STATE(2757), - [sym_binary_operator] = STATE(2757), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2757), - [sym_call] = STATE(2757), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2757), - [sym_anonymous_function] = STATE(2757), + [628] = { + [sym__expression] = STATE(1404), + [sym_block] = STATE(1404), + [sym__identifier] = STATE(18), + [sym_identifier] = STATE(18), + [sym_special_identifier] = STATE(18), + [sym_boolean] = STATE(1404), + [sym_nil] = STATE(1404), + [sym__atom] = STATE(1404), + [sym_quoted_atom] = STATE(1404), + [sym__quoted_i_double] = STATE(1250), + [sym__quoted_i_single] = STATE(1249), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(1404), + [sym_charlist] = STATE(1404), + [sym_sigil] = STATE(1404), + [sym_list] = STATE(1404), + [sym_tuple] = STATE(1404), + [sym_bitstring] = STATE(1404), + [sym_map] = STATE(1404), + [sym_unary_operator] = STATE(1404), + [sym_binary_operator] = STATE(1404), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(1404), + [sym_call] = STATE(1404), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(1404), + [sym_anonymous_function] = STATE(1404), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(456), - [sym_unused_identifier] = ACTIONS(458), - [anon_sym___MODULE__] = ACTIONS(460), - [anon_sym___DIR__] = ACTIONS(460), - [anon_sym___ENV__] = ACTIONS(460), - [anon_sym___CALLER__] = ACTIONS(460), - [anon_sym___STACKTRACE__] = ACTIONS(460), - [sym_alias] = ACTIONS(1385), - [sym_integer] = ACTIONS(1385), - [sym_float] = ACTIONS(1385), - [sym_char] = ACTIONS(1385), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2107), + [sym_integer] = ACTIONS(2107), + [sym_float] = ACTIONS(2107), + [sym_char] = ACTIONS(2107), [anon_sym_true] = ACTIONS(203), [anon_sym_false] = ACTIONS(203), [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1385), + [sym_atom] = ACTIONS(2107), [anon_sym_DQUOTE] = ACTIONS(207), [anon_sym_SQUOTE] = ACTIONS(209), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), @@ -108986,17 +106124,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(464), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(473), - [anon_sym_BANG] = ACTIONS(473), - [anon_sym_CARET] = ACTIONS(473), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), - [anon_sym_not] = ACTIONS(473), - [anon_sym_AT] = ACTIONS(475), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -109036,92 +106174,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), + [anon_sym_fn] = ACTIONS(235), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(477), + [sym__before_unary_op] = ACTIONS(241), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), + [sym__quoted_atom_start] = ACTIONS(243), }, - [657] = { - [sym__expression] = STATE(2941), - [sym_block] = STATE(2941), - [sym__identifier] = STATE(63), - [sym_identifier] = STATE(63), - [sym_special_identifier] = STATE(63), - [sym_boolean] = STATE(2941), - [sym_nil] = STATE(2941), - [sym__atom] = STATE(2941), - [sym_quoted_atom] = STATE(2941), - [sym__quoted_i_double] = STATE(2988), - [sym__quoted_i_single] = STATE(2987), - [sym__quoted_i_heredoc_single] = STATE(2987), - [sym__quoted_i_heredoc_double] = STATE(2988), - [sym_string] = STATE(2941), - [sym_charlist] = STATE(2941), - [sym_sigil] = STATE(2941), - [sym_list] = STATE(2941), - [sym_tuple] = STATE(2941), - [sym_bitstring] = STATE(2941), - [sym_map] = STATE(2941), - [sym_unary_operator] = STATE(2941), - [sym_binary_operator] = STATE(2941), - [sym_operator_identifier] = STATE(5020), - [sym_dot] = STATE(2941), - [sym_call] = STATE(2941), - [sym__call_without_parentheses] = STATE(2986), - [sym__call_with_parentheses] = STATE(2985), - [sym__local_call_without_parentheses] = STATE(2984), - [sym__local_call_with_parentheses] = STATE(2047), - [sym__local_call_just_do_block] = STATE(2983), - [sym__remote_call_without_parentheses] = STATE(2982), - [sym__remote_call_with_parentheses] = STATE(2050), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(2052), - [sym__anonymous_dot] = STATE(4887), - [sym__double_call] = STATE(2981), - [sym_access_call] = STATE(2941), - [sym_anonymous_function] = STATE(2941), + [629] = { + [sym__expression] = STATE(2847), + [sym_block] = STATE(2847), + [sym__identifier] = STATE(41), + [sym_identifier] = STATE(41), + [sym_special_identifier] = STATE(41), + [sym_boolean] = STATE(2847), + [sym_nil] = STATE(2847), + [sym__atom] = STATE(2847), + [sym_quoted_atom] = STATE(2847), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(2847), + [sym_charlist] = STATE(2847), + [sym_sigil] = STATE(2847), + [sym_list] = STATE(2847), + [sym_tuple] = STATE(2847), + [sym_bitstring] = STATE(2847), + [sym_map] = STATE(2847), + [sym_unary_operator] = STATE(2847), + [sym_binary_operator] = STATE(2847), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(2847), + [sym_call] = STATE(2847), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(2847), + [sym_anonymous_function] = STATE(2847), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(604), - [aux_sym_identifier_token1] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(606), - [sym_unused_identifier] = ACTIONS(608), - [anon_sym___MODULE__] = ACTIONS(610), - [anon_sym___DIR__] = ACTIONS(610), - [anon_sym___ENV__] = ACTIONS(610), - [anon_sym___CALLER__] = ACTIONS(610), - [anon_sym___STACKTRACE__] = ACTIONS(610), - [sym_alias] = ACTIONS(2157), - [sym_integer] = ACTIONS(2157), - [sym_float] = ACTIONS(2157), - [sym_char] = ACTIONS(2157), - [anon_sym_true] = ACTIONS(614), - [anon_sym_false] = ACTIONS(614), - [anon_sym_nil] = ACTIONS(616), - [sym_atom] = ACTIONS(2157), - [anon_sym_DQUOTE] = ACTIONS(618), - [anon_sym_SQUOTE] = ACTIONS(620), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(624), - [anon_sym_LBRACE] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(1471), + [sym_integer] = ACTIONS(1471), + [sym_float] = ACTIONS(1471), + [sym_char] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(630), - [anon_sym_LT_LT] = ACTIONS(634), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_AMP] = ACTIONS(638), - [anon_sym_PLUS] = ACTIONS(640), - [anon_sym_DASH] = ACTIONS(640), - [anon_sym_BANG] = ACTIONS(640), - [anon_sym_CARET] = ACTIONS(640), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(640), - [anon_sym_not] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(642), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(453), + [anon_sym_not] = ACTIONS(453), + [anon_sym_AT] = ACTIONS(455), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -109161,92 +106299,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(646), + [anon_sym_fn] = ACTIONS(291), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(652), + [sym__before_unary_op] = ACTIONS(457), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(654), + [sym__quoted_atom_start] = ACTIONS(300), }, - [658] = { - [sym__expression] = STATE(2942), - [sym_block] = STATE(2942), - [sym__identifier] = STATE(63), - [sym_identifier] = STATE(63), - [sym_special_identifier] = STATE(63), - [sym_boolean] = STATE(2942), - [sym_nil] = STATE(2942), - [sym__atom] = STATE(2942), - [sym_quoted_atom] = STATE(2942), - [sym__quoted_i_double] = STATE(2988), - [sym__quoted_i_single] = STATE(2987), - [sym__quoted_i_heredoc_single] = STATE(2987), - [sym__quoted_i_heredoc_double] = STATE(2988), - [sym_string] = STATE(2942), - [sym_charlist] = STATE(2942), - [sym_sigil] = STATE(2942), - [sym_list] = STATE(2942), - [sym_tuple] = STATE(2942), - [sym_bitstring] = STATE(2942), - [sym_map] = STATE(2942), - [sym_unary_operator] = STATE(2942), - [sym_binary_operator] = STATE(2942), - [sym_operator_identifier] = STATE(5020), - [sym_dot] = STATE(2942), - [sym_call] = STATE(2942), - [sym__call_without_parentheses] = STATE(2986), - [sym__call_with_parentheses] = STATE(2985), - [sym__local_call_without_parentheses] = STATE(2984), - [sym__local_call_with_parentheses] = STATE(2047), - [sym__local_call_just_do_block] = STATE(2983), - [sym__remote_call_without_parentheses] = STATE(2982), - [sym__remote_call_with_parentheses] = STATE(2050), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(2052), - [sym__anonymous_dot] = STATE(4887), - [sym__double_call] = STATE(2981), - [sym_access_call] = STATE(2942), - [sym_anonymous_function] = STATE(2942), + [630] = { + [sym__expression] = STATE(1343), + [sym_block] = STATE(1343), + [sym__identifier] = STATE(18), + [sym_identifier] = STATE(18), + [sym_special_identifier] = STATE(18), + [sym_boolean] = STATE(1343), + [sym_nil] = STATE(1343), + [sym__atom] = STATE(1343), + [sym_quoted_atom] = STATE(1343), + [sym__quoted_i_double] = STATE(1250), + [sym__quoted_i_single] = STATE(1249), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(1343), + [sym_charlist] = STATE(1343), + [sym_sigil] = STATE(1343), + [sym_list] = STATE(1343), + [sym_tuple] = STATE(1343), + [sym_bitstring] = STATE(1343), + [sym_map] = STATE(1343), + [sym_unary_operator] = STATE(1343), + [sym_binary_operator] = STATE(1343), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(1343), + [sym_call] = STATE(1343), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(1343), + [sym_anonymous_function] = STATE(1343), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(604), - [aux_sym_identifier_token1] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(606), - [sym_unused_identifier] = ACTIONS(608), - [anon_sym___MODULE__] = ACTIONS(610), - [anon_sym___DIR__] = ACTIONS(610), - [anon_sym___ENV__] = ACTIONS(610), - [anon_sym___CALLER__] = ACTIONS(610), - [anon_sym___STACKTRACE__] = ACTIONS(610), - [sym_alias] = ACTIONS(2159), - [sym_integer] = ACTIONS(2159), - [sym_float] = ACTIONS(2159), - [sym_char] = ACTIONS(2159), - [anon_sym_true] = ACTIONS(614), - [anon_sym_false] = ACTIONS(614), - [anon_sym_nil] = ACTIONS(616), - [sym_atom] = ACTIONS(2159), - [anon_sym_DQUOTE] = ACTIONS(618), - [anon_sym_SQUOTE] = ACTIONS(620), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(624), - [anon_sym_LBRACE] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2109), + [sym_integer] = ACTIONS(2109), + [sym_float] = ACTIONS(2109), + [sym_char] = ACTIONS(2109), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(630), - [anon_sym_LT_LT] = ACTIONS(634), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_AMP] = ACTIONS(638), - [anon_sym_PLUS] = ACTIONS(640), - [anon_sym_DASH] = ACTIONS(640), - [anon_sym_BANG] = ACTIONS(640), - [anon_sym_CARET] = ACTIONS(640), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(640), - [anon_sym_not] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(642), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -109286,92 +106424,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(646), + [anon_sym_fn] = ACTIONS(235), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(652), + [sym__before_unary_op] = ACTIONS(241), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(654), + [sym__quoted_atom_start] = ACTIONS(243), }, - [659] = { - [sym__expression] = STATE(2943), - [sym_block] = STATE(2943), - [sym__identifier] = STATE(63), - [sym_identifier] = STATE(63), - [sym_special_identifier] = STATE(63), - [sym_boolean] = STATE(2943), - [sym_nil] = STATE(2943), - [sym__atom] = STATE(2943), - [sym_quoted_atom] = STATE(2943), - [sym__quoted_i_double] = STATE(2988), - [sym__quoted_i_single] = STATE(2987), - [sym__quoted_i_heredoc_single] = STATE(2987), - [sym__quoted_i_heredoc_double] = STATE(2988), - [sym_string] = STATE(2943), - [sym_charlist] = STATE(2943), - [sym_sigil] = STATE(2943), - [sym_list] = STATE(2943), - [sym_tuple] = STATE(2943), - [sym_bitstring] = STATE(2943), - [sym_map] = STATE(2943), - [sym_unary_operator] = STATE(2943), - [sym_binary_operator] = STATE(2943), - [sym_operator_identifier] = STATE(5020), - [sym_dot] = STATE(2943), - [sym_call] = STATE(2943), - [sym__call_without_parentheses] = STATE(2986), - [sym__call_with_parentheses] = STATE(2985), - [sym__local_call_without_parentheses] = STATE(2984), - [sym__local_call_with_parentheses] = STATE(2047), - [sym__local_call_just_do_block] = STATE(2983), - [sym__remote_call_without_parentheses] = STATE(2982), - [sym__remote_call_with_parentheses] = STATE(2050), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(2052), - [sym__anonymous_dot] = STATE(4887), - [sym__double_call] = STATE(2981), - [sym_access_call] = STATE(2943), - [sym_anonymous_function] = STATE(2943), + [631] = { + [sym__expression] = STATE(1344), + [sym_block] = STATE(1344), + [sym__identifier] = STATE(18), + [sym_identifier] = STATE(18), + [sym_special_identifier] = STATE(18), + [sym_boolean] = STATE(1344), + [sym_nil] = STATE(1344), + [sym__atom] = STATE(1344), + [sym_quoted_atom] = STATE(1344), + [sym__quoted_i_double] = STATE(1250), + [sym__quoted_i_single] = STATE(1249), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(1344), + [sym_charlist] = STATE(1344), + [sym_sigil] = STATE(1344), + [sym_list] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_bitstring] = STATE(1344), + [sym_map] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_binary_operator] = STATE(1344), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(1344), + [sym_call] = STATE(1344), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(1344), + [sym_anonymous_function] = STATE(1344), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(604), - [aux_sym_identifier_token1] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(606), - [sym_unused_identifier] = ACTIONS(608), - [anon_sym___MODULE__] = ACTIONS(610), - [anon_sym___DIR__] = ACTIONS(610), - [anon_sym___ENV__] = ACTIONS(610), - [anon_sym___CALLER__] = ACTIONS(610), - [anon_sym___STACKTRACE__] = ACTIONS(610), - [sym_alias] = ACTIONS(2161), - [sym_integer] = ACTIONS(2161), - [sym_float] = ACTIONS(2161), - [sym_char] = ACTIONS(2161), - [anon_sym_true] = ACTIONS(614), - [anon_sym_false] = ACTIONS(614), - [anon_sym_nil] = ACTIONS(616), - [sym_atom] = ACTIONS(2161), - [anon_sym_DQUOTE] = ACTIONS(618), - [anon_sym_SQUOTE] = ACTIONS(620), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(624), - [anon_sym_LBRACE] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2111), + [sym_integer] = ACTIONS(2111), + [sym_float] = ACTIONS(2111), + [sym_char] = ACTIONS(2111), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(630), - [anon_sym_LT_LT] = ACTIONS(634), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_AMP] = ACTIONS(638), - [anon_sym_PLUS] = ACTIONS(640), - [anon_sym_DASH] = ACTIONS(640), - [anon_sym_BANG] = ACTIONS(640), - [anon_sym_CARET] = ACTIONS(640), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(640), - [anon_sym_not] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(642), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -109411,92 +106549,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(646), + [anon_sym_fn] = ACTIONS(235), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(652), + [sym__before_unary_op] = ACTIONS(241), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(654), + [sym__quoted_atom_start] = ACTIONS(243), }, - [660] = { - [sym__expression] = STATE(2850), - [sym_block] = STATE(2850), - [sym__identifier] = STATE(68), - [sym_identifier] = STATE(68), - [sym_special_identifier] = STATE(68), - [sym_boolean] = STATE(2850), - [sym_nil] = STATE(2850), - [sym__atom] = STATE(2850), - [sym_quoted_atom] = STATE(2850), - [sym__quoted_i_double] = STATE(1866), - [sym__quoted_i_single] = STATE(1867), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(2850), - [sym_charlist] = STATE(2850), - [sym_sigil] = STATE(2850), - [sym_list] = STATE(2850), - [sym_tuple] = STATE(2850), - [sym_bitstring] = STATE(2850), - [sym_map] = STATE(2850), - [sym_unary_operator] = STATE(2850), - [sym_binary_operator] = STATE(2850), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(2850), - [sym_call] = STATE(2850), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(2850), - [sym_anonymous_function] = STATE(2850), + [632] = { + [sym__expression] = STATE(1477), + [sym_block] = STATE(1477), + [sym__identifier] = STATE(18), + [sym_identifier] = STATE(18), + [sym_special_identifier] = STATE(18), + [sym_boolean] = STATE(1477), + [sym_nil] = STATE(1477), + [sym__atom] = STATE(1477), + [sym_quoted_atom] = STATE(1477), + [sym__quoted_i_double] = STATE(1250), + [sym__quoted_i_single] = STATE(1249), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(1477), + [sym_charlist] = STATE(1477), + [sym_sigil] = STATE(1477), + [sym_list] = STATE(1477), + [sym_tuple] = STATE(1477), + [sym_bitstring] = STATE(1477), + [sym_map] = STATE(1477), + [sym_unary_operator] = STATE(1477), + [sym_binary_operator] = STATE(1477), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(1477), + [sym_call] = STATE(1477), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(1477), + [sym_anonymous_function] = STATE(1477), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(662), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(2163), - [sym_integer] = ACTIONS(2163), - [sym_float] = ACTIONS(2163), - [sym_char] = ACTIONS(2163), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), - [sym_atom] = ACTIONS(2163), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2113), + [sym_integer] = ACTIONS(2113), + [sym_float] = ACTIONS(2113), + [sym_char] = ACTIONS(2113), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2113), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(670), - [anon_sym_DASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(670), - [anon_sym_CARET] = ACTIONS(670), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(670), - [anon_sym_not] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -109536,92 +106674,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), + [anon_sym_fn] = ACTIONS(235), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(674), + [sym__before_unary_op] = ACTIONS(241), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), + [sym__quoted_atom_start] = ACTIONS(243), }, - [661] = { - [sym__expression] = STATE(2946), - [sym_block] = STATE(2946), - [sym__identifier] = STATE(63), - [sym_identifier] = STATE(63), - [sym_special_identifier] = STATE(63), - [sym_boolean] = STATE(2946), - [sym_nil] = STATE(2946), - [sym__atom] = STATE(2946), - [sym_quoted_atom] = STATE(2946), - [sym__quoted_i_double] = STATE(2988), - [sym__quoted_i_single] = STATE(2987), - [sym__quoted_i_heredoc_single] = STATE(2987), - [sym__quoted_i_heredoc_double] = STATE(2988), - [sym_string] = STATE(2946), - [sym_charlist] = STATE(2946), - [sym_sigil] = STATE(2946), - [sym_list] = STATE(2946), - [sym_tuple] = STATE(2946), - [sym_bitstring] = STATE(2946), - [sym_map] = STATE(2946), - [sym_unary_operator] = STATE(2946), - [sym_binary_operator] = STATE(2946), - [sym_operator_identifier] = STATE(5020), - [sym_dot] = STATE(2946), - [sym_call] = STATE(2946), - [sym__call_without_parentheses] = STATE(2986), - [sym__call_with_parentheses] = STATE(2985), - [sym__local_call_without_parentheses] = STATE(2984), - [sym__local_call_with_parentheses] = STATE(2047), - [sym__local_call_just_do_block] = STATE(2983), - [sym__remote_call_without_parentheses] = STATE(2982), - [sym__remote_call_with_parentheses] = STATE(2050), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(2052), - [sym__anonymous_dot] = STATE(4887), - [sym__double_call] = STATE(2981), - [sym_access_call] = STATE(2946), - [sym_anonymous_function] = STATE(2946), + [633] = { + [sym__expression] = STATE(3778), + [sym_block] = STATE(3778), + [sym__identifier] = STATE(64), + [sym_identifier] = STATE(64), + [sym_special_identifier] = STATE(64), + [sym_boolean] = STATE(3778), + [sym_nil] = STATE(3778), + [sym__atom] = STATE(3778), + [sym_quoted_atom] = STATE(3778), + [sym__quoted_i_double] = STATE(3871), + [sym__quoted_i_single] = STATE(3876), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3778), + [sym_charlist] = STATE(3778), + [sym_sigil] = STATE(3778), + [sym_list] = STATE(3778), + [sym_tuple] = STATE(3778), + [sym_bitstring] = STATE(3778), + [sym_map] = STATE(3778), + [sym_unary_operator] = STATE(3778), + [sym_binary_operator] = STATE(3778), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3778), + [sym_call] = STATE(3778), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), + [sym__remote_dot] = STATE(55), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3778), + [sym_anonymous_function] = STATE(3778), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(604), - [aux_sym_identifier_token1] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(606), - [sym_unused_identifier] = ACTIONS(608), - [anon_sym___MODULE__] = ACTIONS(610), - [anon_sym___DIR__] = ACTIONS(610), - [anon_sym___ENV__] = ACTIONS(610), - [anon_sym___CALLER__] = ACTIONS(610), - [anon_sym___STACKTRACE__] = ACTIONS(610), - [sym_alias] = ACTIONS(2165), - [sym_integer] = ACTIONS(2165), - [sym_float] = ACTIONS(2165), - [sym_char] = ACTIONS(2165), - [anon_sym_true] = ACTIONS(614), - [anon_sym_false] = ACTIONS(614), - [anon_sym_nil] = ACTIONS(616), - [sym_atom] = ACTIONS(2165), - [anon_sym_DQUOTE] = ACTIONS(618), - [anon_sym_SQUOTE] = ACTIONS(620), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(624), - [anon_sym_LBRACE] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), + [anon_sym_LPAREN] = ACTIONS(1413), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2115), + [sym_integer] = ACTIONS(2115), + [sym_float] = ACTIONS(2115), + [sym_char] = ACTIONS(2115), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(2115), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(630), - [anon_sym_LT_LT] = ACTIONS(634), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_AMP] = ACTIONS(638), - [anon_sym_PLUS] = ACTIONS(640), - [anon_sym_DASH] = ACTIONS(640), - [anon_sym_BANG] = ACTIONS(640), - [anon_sym_CARET] = ACTIONS(640), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(640), - [anon_sym_not] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(642), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -109661,71 +106799,2446 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(646), + [anon_sym_fn] = ACTIONS(864), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(652), + [sym__before_unary_op] = ACTIONS(866), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(654), + [sym__quoted_atom_start] = ACTIONS(868), }, - [662] = { - [sym__expression] = STATE(3467), - [sym_block] = STATE(3467), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3467), - [sym_nil] = STATE(3467), - [sym__atom] = STATE(3467), - [sym_quoted_atom] = STATE(3467), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3467), - [sym_charlist] = STATE(3467), - [sym_sigil] = STATE(3467), - [sym_list] = STATE(3467), - [sym_tuple] = STATE(3467), - [sym_bitstring] = STATE(3467), - [sym_map] = STATE(3467), - [sym_unary_operator] = STATE(3467), - [sym_binary_operator] = STATE(3467), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3467), - [sym_call] = STATE(3467), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3467), - [sym_anonymous_function] = STATE(3467), + [634] = { + [sym__expression] = STATE(1336), + [sym_block] = STATE(1336), + [sym__identifier] = STATE(18), + [sym_identifier] = STATE(18), + [sym_special_identifier] = STATE(18), + [sym_boolean] = STATE(1336), + [sym_nil] = STATE(1336), + [sym__atom] = STATE(1336), + [sym_quoted_atom] = STATE(1336), + [sym__quoted_i_double] = STATE(1250), + [sym__quoted_i_single] = STATE(1249), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(1336), + [sym_charlist] = STATE(1336), + [sym_sigil] = STATE(1336), + [sym_list] = STATE(1336), + [sym_tuple] = STATE(1336), + [sym_bitstring] = STATE(1336), + [sym_map] = STATE(1336), + [sym_unary_operator] = STATE(1336), + [sym_binary_operator] = STATE(1336), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(1336), + [sym_call] = STATE(1336), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(1336), + [sym_anonymous_function] = STATE(1336), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2117), + [sym_integer] = ACTIONS(2117), + [sym_float] = ACTIONS(2117), + [sym_char] = ACTIONS(2117), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2117), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [635] = { + [sym__expression] = STATE(1338), + [sym_block] = STATE(1338), + [sym__identifier] = STATE(18), + [sym_identifier] = STATE(18), + [sym_special_identifier] = STATE(18), + [sym_boolean] = STATE(1338), + [sym_nil] = STATE(1338), + [sym__atom] = STATE(1338), + [sym_quoted_atom] = STATE(1338), + [sym__quoted_i_double] = STATE(1250), + [sym__quoted_i_single] = STATE(1249), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(1338), + [sym_charlist] = STATE(1338), + [sym_sigil] = STATE(1338), + [sym_list] = STATE(1338), + [sym_tuple] = STATE(1338), + [sym_bitstring] = STATE(1338), + [sym_map] = STATE(1338), + [sym_unary_operator] = STATE(1338), + [sym_binary_operator] = STATE(1338), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(1338), + [sym_call] = STATE(1338), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(1338), + [sym_anonymous_function] = STATE(1338), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2119), + [sym_integer] = ACTIONS(2119), + [sym_float] = ACTIONS(2119), + [sym_char] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2119), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [636] = { + [sym__expression] = STATE(3779), + [sym_block] = STATE(3779), + [sym__identifier] = STATE(64), + [sym_identifier] = STATE(64), + [sym_special_identifier] = STATE(64), + [sym_boolean] = STATE(3779), + [sym_nil] = STATE(3779), + [sym__atom] = STATE(3779), + [sym_quoted_atom] = STATE(3779), + [sym__quoted_i_double] = STATE(3871), + [sym__quoted_i_single] = STATE(3876), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3779), + [sym_charlist] = STATE(3779), + [sym_sigil] = STATE(3779), + [sym_list] = STATE(3779), + [sym_tuple] = STATE(3779), + [sym_bitstring] = STATE(3779), + [sym_map] = STATE(3779), + [sym_unary_operator] = STATE(3779), + [sym_binary_operator] = STATE(3779), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3779), + [sym_call] = STATE(3779), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), + [sym__remote_dot] = STATE(55), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3779), + [sym_anonymous_function] = STATE(3779), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1413), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2121), + [sym_integer] = ACTIONS(2121), + [sym_float] = ACTIONS(2121), + [sym_char] = ACTIONS(2121), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(2121), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [637] = { + [sym__expression] = STATE(3780), + [sym_block] = STATE(3780), + [sym__identifier] = STATE(64), + [sym_identifier] = STATE(64), + [sym_special_identifier] = STATE(64), + [sym_boolean] = STATE(3780), + [sym_nil] = STATE(3780), + [sym__atom] = STATE(3780), + [sym_quoted_atom] = STATE(3780), + [sym__quoted_i_double] = STATE(3871), + [sym__quoted_i_single] = STATE(3876), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3780), + [sym_charlist] = STATE(3780), + [sym_sigil] = STATE(3780), + [sym_list] = STATE(3780), + [sym_tuple] = STATE(3780), + [sym_bitstring] = STATE(3780), + [sym_map] = STATE(3780), + [sym_unary_operator] = STATE(3780), + [sym_binary_operator] = STATE(3780), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3780), + [sym_call] = STATE(3780), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), + [sym__remote_dot] = STATE(55), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3780), + [sym_anonymous_function] = STATE(3780), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1413), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2123), + [sym_integer] = ACTIONS(2123), + [sym_float] = ACTIONS(2123), + [sym_char] = ACTIONS(2123), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(2123), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [638] = { + [sym__expression] = STATE(1218), + [sym_block] = STATE(1218), + [sym__identifier] = STATE(18), + [sym_identifier] = STATE(18), + [sym_special_identifier] = STATE(18), + [sym_boolean] = STATE(1218), + [sym_nil] = STATE(1218), + [sym__atom] = STATE(1218), + [sym_quoted_atom] = STATE(1218), + [sym__quoted_i_double] = STATE(1250), + [sym__quoted_i_single] = STATE(1249), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(1218), + [sym_charlist] = STATE(1218), + [sym_sigil] = STATE(1218), + [sym_list] = STATE(1218), + [sym_tuple] = STATE(1218), + [sym_bitstring] = STATE(1218), + [sym_map] = STATE(1218), + [sym_unary_operator] = STATE(1218), + [sym_binary_operator] = STATE(1218), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(1218), + [sym_call] = STATE(1218), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(1218), + [sym_anonymous_function] = STATE(1218), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(1813), + [sym_integer] = ACTIONS(1813), + [sym_float] = ACTIONS(1813), + [sym_char] = ACTIONS(1813), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(1813), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [639] = { + [sym__expression] = STATE(1490), + [sym_block] = STATE(1490), + [sym__identifier] = STATE(18), + [sym_identifier] = STATE(18), + [sym_special_identifier] = STATE(18), + [sym_boolean] = STATE(1490), + [sym_nil] = STATE(1490), + [sym__atom] = STATE(1490), + [sym_quoted_atom] = STATE(1490), + [sym__quoted_i_double] = STATE(1250), + [sym__quoted_i_single] = STATE(1249), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(1490), + [sym_charlist] = STATE(1490), + [sym_sigil] = STATE(1490), + [sym_list] = STATE(1490), + [sym_tuple] = STATE(1490), + [sym_bitstring] = STATE(1490), + [sym_map] = STATE(1490), + [sym_unary_operator] = STATE(1490), + [sym_binary_operator] = STATE(1490), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(1490), + [sym_call] = STATE(1490), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(1490), + [sym_anonymous_function] = STATE(1490), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2125), + [sym_integer] = ACTIONS(2125), + [sym_float] = ACTIONS(2125), + [sym_char] = ACTIONS(2125), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2125), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [640] = { + [sym__expression] = STATE(3781), + [sym_block] = STATE(3781), + [sym__identifier] = STATE(64), + [sym_identifier] = STATE(64), + [sym_special_identifier] = STATE(64), + [sym_boolean] = STATE(3781), + [sym_nil] = STATE(3781), + [sym__atom] = STATE(3781), + [sym_quoted_atom] = STATE(3781), + [sym__quoted_i_double] = STATE(3871), + [sym__quoted_i_single] = STATE(3876), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3781), + [sym_charlist] = STATE(3781), + [sym_sigil] = STATE(3781), + [sym_list] = STATE(3781), + [sym_tuple] = STATE(3781), + [sym_bitstring] = STATE(3781), + [sym_map] = STATE(3781), + [sym_unary_operator] = STATE(3781), + [sym_binary_operator] = STATE(3781), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3781), + [sym_call] = STATE(3781), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), + [sym__remote_dot] = STATE(55), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3781), + [sym_anonymous_function] = STATE(3781), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1413), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2127), + [sym_integer] = ACTIONS(2127), + [sym_float] = ACTIONS(2127), + [sym_char] = ACTIONS(2127), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(2127), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [641] = { + [sym__expression] = STATE(3782), + [sym_block] = STATE(3782), + [sym__identifier] = STATE(64), + [sym_identifier] = STATE(64), + [sym_special_identifier] = STATE(64), + [sym_boolean] = STATE(3782), + [sym_nil] = STATE(3782), + [sym__atom] = STATE(3782), + [sym_quoted_atom] = STATE(3782), + [sym__quoted_i_double] = STATE(3871), + [sym__quoted_i_single] = STATE(3876), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3782), + [sym_charlist] = STATE(3782), + [sym_sigil] = STATE(3782), + [sym_list] = STATE(3782), + [sym_tuple] = STATE(3782), + [sym_bitstring] = STATE(3782), + [sym_map] = STATE(3782), + [sym_unary_operator] = STATE(3782), + [sym_binary_operator] = STATE(3782), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3782), + [sym_call] = STATE(3782), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), + [sym__remote_dot] = STATE(55), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3782), + [sym_anonymous_function] = STATE(3782), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1413), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2129), + [sym_integer] = ACTIONS(2129), + [sym_float] = ACTIONS(2129), + [sym_char] = ACTIONS(2129), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(2129), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [642] = { + [sym__expression] = STATE(3616), + [sym_block] = STATE(3616), + [sym__identifier] = STATE(70), + [sym_identifier] = STATE(70), + [sym_special_identifier] = STATE(70), + [sym_boolean] = STATE(3616), + [sym_nil] = STATE(3616), + [sym__atom] = STATE(3616), + [sym_quoted_atom] = STATE(3616), + [sym__quoted_i_double] = STATE(2196), + [sym__quoted_i_single] = STATE(2197), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(3616), + [sym_charlist] = STATE(3616), + [sym_sigil] = STATE(3616), + [sym_list] = STATE(3616), + [sym_tuple] = STATE(3616), + [sym_bitstring] = STATE(3616), + [sym_map] = STATE(3616), + [sym_unary_operator] = STATE(3616), + [sym_binary_operator] = STATE(3616), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(3616), + [sym_call] = STATE(3616), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(3616), + [sym_anonymous_function] = STATE(3616), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(2131), + [sym_integer] = ACTIONS(2131), + [sym_float] = ACTIONS(2131), + [sym_char] = ACTIONS(2131), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(2131), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(678), + [anon_sym_CARET] = ACTIONS(678), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(678), + [anon_sym_not] = ACTIONS(678), + [anon_sym_AT] = ACTIONS(680), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(406), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(682), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(412), + }, + [643] = { + [sym__expression] = STATE(1185), + [sym_block] = STATE(1185), + [sym__identifier] = STATE(18), + [sym_identifier] = STATE(18), + [sym_special_identifier] = STATE(18), + [sym_boolean] = STATE(1185), + [sym_nil] = STATE(1185), + [sym__atom] = STATE(1185), + [sym_quoted_atom] = STATE(1185), + [sym__quoted_i_double] = STATE(1250), + [sym__quoted_i_single] = STATE(1249), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(1185), + [sym_charlist] = STATE(1185), + [sym_sigil] = STATE(1185), + [sym_list] = STATE(1185), + [sym_tuple] = STATE(1185), + [sym_bitstring] = STATE(1185), + [sym_map] = STATE(1185), + [sym_unary_operator] = STATE(1185), + [sym_binary_operator] = STATE(1185), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(1185), + [sym_call] = STATE(1185), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(1185), + [sym_anonymous_function] = STATE(1185), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(1809), + [sym_integer] = ACTIONS(1809), + [sym_float] = ACTIONS(1809), + [sym_char] = ACTIONS(1809), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [644] = { + [sym__expression] = STATE(1485), + [sym_block] = STATE(1485), + [sym__identifier] = STATE(18), + [sym_identifier] = STATE(18), + [sym_special_identifier] = STATE(18), + [sym_boolean] = STATE(1485), + [sym_nil] = STATE(1485), + [sym__atom] = STATE(1485), + [sym_quoted_atom] = STATE(1485), + [sym__quoted_i_double] = STATE(1250), + [sym__quoted_i_single] = STATE(1249), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(1485), + [sym_charlist] = STATE(1485), + [sym_sigil] = STATE(1485), + [sym_list] = STATE(1485), + [sym_tuple] = STATE(1485), + [sym_bitstring] = STATE(1485), + [sym_map] = STATE(1485), + [sym_unary_operator] = STATE(1485), + [sym_binary_operator] = STATE(1485), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(1485), + [sym_call] = STATE(1485), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(1485), + [sym_anonymous_function] = STATE(1485), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2133), + [sym_integer] = ACTIONS(2133), + [sym_float] = ACTIONS(2133), + [sym_char] = ACTIONS(2133), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2133), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [645] = { + [sym__expression] = STATE(3783), + [sym_block] = STATE(3783), + [sym__identifier] = STATE(64), + [sym_identifier] = STATE(64), + [sym_special_identifier] = STATE(64), + [sym_boolean] = STATE(3783), + [sym_nil] = STATE(3783), + [sym__atom] = STATE(3783), + [sym_quoted_atom] = STATE(3783), + [sym__quoted_i_double] = STATE(3871), + [sym__quoted_i_single] = STATE(3876), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3783), + [sym_charlist] = STATE(3783), + [sym_sigil] = STATE(3783), + [sym_list] = STATE(3783), + [sym_tuple] = STATE(3783), + [sym_bitstring] = STATE(3783), + [sym_map] = STATE(3783), + [sym_unary_operator] = STATE(3783), + [sym_binary_operator] = STATE(3783), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3783), + [sym_call] = STATE(3783), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), + [sym__remote_dot] = STATE(55), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3783), + [sym_anonymous_function] = STATE(3783), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1413), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2135), + [sym_integer] = ACTIONS(2135), + [sym_float] = ACTIONS(2135), + [sym_char] = ACTIONS(2135), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(2135), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [646] = { + [sym__expression] = STATE(3784), + [sym_block] = STATE(3784), + [sym__identifier] = STATE(64), + [sym_identifier] = STATE(64), + [sym_special_identifier] = STATE(64), + [sym_boolean] = STATE(3784), + [sym_nil] = STATE(3784), + [sym__atom] = STATE(3784), + [sym_quoted_atom] = STATE(3784), + [sym__quoted_i_double] = STATE(3871), + [sym__quoted_i_single] = STATE(3876), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3784), + [sym_charlist] = STATE(3784), + [sym_sigil] = STATE(3784), + [sym_list] = STATE(3784), + [sym_tuple] = STATE(3784), + [sym_bitstring] = STATE(3784), + [sym_map] = STATE(3784), + [sym_unary_operator] = STATE(3784), + [sym_binary_operator] = STATE(3784), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3784), + [sym_call] = STATE(3784), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), + [sym__remote_dot] = STATE(55), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3784), + [sym_anonymous_function] = STATE(3784), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1413), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2137), + [sym_integer] = ACTIONS(2137), + [sym_float] = ACTIONS(2137), + [sym_char] = ACTIONS(2137), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(2137), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [647] = { + [sym__expression] = STATE(4143), + [sym_block] = STATE(4143), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(4143), + [sym_nil] = STATE(4143), + [sym__atom] = STATE(4143), + [sym_quoted_atom] = STATE(4143), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4143), + [sym_charlist] = STATE(4143), + [sym_sigil] = STATE(4143), + [sym_list] = STATE(4143), + [sym_tuple] = STATE(4143), + [sym_bitstring] = STATE(4143), + [sym_map] = STATE(4143), + [sym_unary_operator] = STATE(4143), + [sym_binary_operator] = STATE(4143), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4143), + [sym_call] = STATE(4143), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4143), + [sym_anonymous_function] = STATE(4143), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2139), + [sym_integer] = ACTIONS(2139), + [sym_float] = ACTIONS(2139), + [sym_char] = ACTIONS(2139), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(2139), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [648] = { + [sym__expression] = STATE(3787), + [sym_block] = STATE(3787), + [sym__identifier] = STATE(64), + [sym_identifier] = STATE(64), + [sym_special_identifier] = STATE(64), + [sym_boolean] = STATE(3787), + [sym_nil] = STATE(3787), + [sym__atom] = STATE(3787), + [sym_quoted_atom] = STATE(3787), + [sym__quoted_i_double] = STATE(3871), + [sym__quoted_i_single] = STATE(3876), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3787), + [sym_charlist] = STATE(3787), + [sym_sigil] = STATE(3787), + [sym_list] = STATE(3787), + [sym_tuple] = STATE(3787), + [sym_bitstring] = STATE(3787), + [sym_map] = STATE(3787), + [sym_unary_operator] = STATE(3787), + [sym_binary_operator] = STATE(3787), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3787), + [sym_call] = STATE(3787), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), + [sym__remote_dot] = STATE(55), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3787), + [sym_anonymous_function] = STATE(3787), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1413), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2141), + [sym_integer] = ACTIONS(2141), + [sym_float] = ACTIONS(2141), + [sym_char] = ACTIONS(2141), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [649] = { + [sym__expression] = STATE(3788), + [sym_block] = STATE(3788), + [sym__identifier] = STATE(64), + [sym_identifier] = STATE(64), + [sym_special_identifier] = STATE(64), + [sym_boolean] = STATE(3788), + [sym_nil] = STATE(3788), + [sym__atom] = STATE(3788), + [sym_quoted_atom] = STATE(3788), + [sym__quoted_i_double] = STATE(3871), + [sym__quoted_i_single] = STATE(3876), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3788), + [sym_charlist] = STATE(3788), + [sym_sigil] = STATE(3788), + [sym_list] = STATE(3788), + [sym_tuple] = STATE(3788), + [sym_bitstring] = STATE(3788), + [sym_map] = STATE(3788), + [sym_unary_operator] = STATE(3788), + [sym_binary_operator] = STATE(3788), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3788), + [sym_call] = STATE(3788), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), + [sym__remote_dot] = STATE(55), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3788), + [sym_anonymous_function] = STATE(3788), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1413), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2143), + [sym_integer] = ACTIONS(2143), + [sym_float] = ACTIONS(2143), + [sym_char] = ACTIONS(2143), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(2143), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [650] = { + [sym__expression] = STATE(3789), + [sym_block] = STATE(3789), + [sym__identifier] = STATE(64), + [sym_identifier] = STATE(64), + [sym_special_identifier] = STATE(64), + [sym_boolean] = STATE(3789), + [sym_nil] = STATE(3789), + [sym__atom] = STATE(3789), + [sym_quoted_atom] = STATE(3789), + [sym__quoted_i_double] = STATE(3871), + [sym__quoted_i_single] = STATE(3876), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3789), + [sym_charlist] = STATE(3789), + [sym_sigil] = STATE(3789), + [sym_list] = STATE(3789), + [sym_tuple] = STATE(3789), + [sym_bitstring] = STATE(3789), + [sym_map] = STATE(3789), + [sym_unary_operator] = STATE(3789), + [sym_binary_operator] = STATE(3789), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3789), + [sym_call] = STATE(3789), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), + [sym__remote_dot] = STATE(55), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3789), + [sym_anonymous_function] = STATE(3789), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1413), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2145), + [sym_integer] = ACTIONS(2145), + [sym_float] = ACTIONS(2145), + [sym_char] = ACTIONS(2145), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(2145), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [651] = { + [sym__expression] = STATE(4156), + [sym_block] = STATE(4156), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(4156), + [sym_nil] = STATE(4156), + [sym__atom] = STATE(4156), + [sym_quoted_atom] = STATE(4156), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4156), + [sym_charlist] = STATE(4156), + [sym_sigil] = STATE(4156), + [sym_list] = STATE(4156), + [sym_tuple] = STATE(4156), + [sym_bitstring] = STATE(4156), + [sym_map] = STATE(4156), + [sym_unary_operator] = STATE(4156), + [sym_binary_operator] = STATE(4156), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4156), + [sym_call] = STATE(4156), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4156), + [sym_anonymous_function] = STATE(4156), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2147), + [sym_integer] = ACTIONS(2147), + [sym_float] = ACTIONS(2147), + [sym_char] = ACTIONS(2147), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [652] = { + [sym__expression] = STATE(3792), + [sym_block] = STATE(3792), + [sym__identifier] = STATE(64), + [sym_identifier] = STATE(64), + [sym_special_identifier] = STATE(64), + [sym_boolean] = STATE(3792), + [sym_nil] = STATE(3792), + [sym__atom] = STATE(3792), + [sym_quoted_atom] = STATE(3792), + [sym__quoted_i_double] = STATE(3871), + [sym__quoted_i_single] = STATE(3876), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3792), + [sym_charlist] = STATE(3792), + [sym_sigil] = STATE(3792), + [sym_list] = STATE(3792), + [sym_tuple] = STATE(3792), + [sym_bitstring] = STATE(3792), + [sym_map] = STATE(3792), + [sym_unary_operator] = STATE(3792), + [sym_binary_operator] = STATE(3792), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3792), + [sym_call] = STATE(3792), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), + [sym__remote_dot] = STATE(55), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3792), + [sym_anonymous_function] = STATE(3792), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1413), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2149), + [sym_integer] = ACTIONS(2149), + [sym_float] = ACTIONS(2149), + [sym_char] = ACTIONS(2149), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(2149), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [653] = { + [sym__expression] = STATE(2193), + [sym_block] = STATE(2193), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2193), + [sym_nil] = STATE(2193), + [sym__atom] = STATE(2193), + [sym_quoted_atom] = STATE(2193), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2193), + [sym_charlist] = STATE(2193), + [sym_sigil] = STATE(2193), + [sym_list] = STATE(2193), + [sym_tuple] = STATE(2193), + [sym_bitstring] = STATE(2193), + [sym_map] = STATE(2193), + [sym_unary_operator] = STATE(2193), + [sym_binary_operator] = STATE(2193), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2193), + [sym_call] = STATE(2193), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(2193), + [sym_anonymous_function] = STATE(2193), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(1529), - [sym_integer] = ACTIONS(1529), - [sym_float] = ACTIONS(1529), - [sym_char] = ACTIONS(1529), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(2151), + [sym_integer] = ACTIONS(2151), + [sym_float] = ACTIONS(2151), + [sym_char] = ACTIONS(2151), [anon_sym_true] = ACTIONS(948), [anon_sym_false] = ACTIONS(948), [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1529), + [sym_atom] = ACTIONS(2151), [anon_sym_DQUOTE] = ACTIONS(952), [anon_sym_SQUOTE] = ACTIONS(954), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), @@ -109736,17 +109249,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), + [anon_sym_TILDE] = ACTIONS(964), [anon_sym_LT_LT] = ACTIONS(966), [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -109790,88 +109303,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), + [sym__before_unary_op] = ACTIONS(980), [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(982), }, - [663] = { - [sym__expression] = STATE(2947), - [sym_block] = STATE(2947), - [sym__identifier] = STATE(63), - [sym_identifier] = STATE(63), - [sym_special_identifier] = STATE(63), - [sym_boolean] = STATE(2947), - [sym_nil] = STATE(2947), - [sym__atom] = STATE(2947), - [sym_quoted_atom] = STATE(2947), - [sym__quoted_i_double] = STATE(2988), - [sym__quoted_i_single] = STATE(2987), - [sym__quoted_i_heredoc_single] = STATE(2987), - [sym__quoted_i_heredoc_double] = STATE(2988), - [sym_string] = STATE(2947), - [sym_charlist] = STATE(2947), - [sym_sigil] = STATE(2947), - [sym_list] = STATE(2947), - [sym_tuple] = STATE(2947), - [sym_bitstring] = STATE(2947), - [sym_map] = STATE(2947), - [sym_unary_operator] = STATE(2947), - [sym_binary_operator] = STATE(2947), - [sym_operator_identifier] = STATE(5020), - [sym_dot] = STATE(2947), - [sym_call] = STATE(2947), - [sym__call_without_parentheses] = STATE(2986), - [sym__call_with_parentheses] = STATE(2985), - [sym__local_call_without_parentheses] = STATE(2984), - [sym__local_call_with_parentheses] = STATE(2047), - [sym__local_call_just_do_block] = STATE(2983), - [sym__remote_call_without_parentheses] = STATE(2982), - [sym__remote_call_with_parentheses] = STATE(2050), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(2052), - [sym__anonymous_dot] = STATE(4887), - [sym__double_call] = STATE(2981), - [sym_access_call] = STATE(2947), - [sym_anonymous_function] = STATE(2947), + [654] = { + [sym__expression] = STATE(3793), + [sym_block] = STATE(3793), + [sym__identifier] = STATE(64), + [sym_identifier] = STATE(64), + [sym_special_identifier] = STATE(64), + [sym_boolean] = STATE(3793), + [sym_nil] = STATE(3793), + [sym__atom] = STATE(3793), + [sym_quoted_atom] = STATE(3793), + [sym__quoted_i_double] = STATE(3871), + [sym__quoted_i_single] = STATE(3876), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3793), + [sym_charlist] = STATE(3793), + [sym_sigil] = STATE(3793), + [sym_list] = STATE(3793), + [sym_tuple] = STATE(3793), + [sym_bitstring] = STATE(3793), + [sym_map] = STATE(3793), + [sym_unary_operator] = STATE(3793), + [sym_binary_operator] = STATE(3793), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3793), + [sym_call] = STATE(3793), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), + [sym__remote_dot] = STATE(55), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3793), + [sym_anonymous_function] = STATE(3793), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(604), - [aux_sym_identifier_token1] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(606), - [sym_unused_identifier] = ACTIONS(608), - [anon_sym___MODULE__] = ACTIONS(610), - [anon_sym___DIR__] = ACTIONS(610), - [anon_sym___ENV__] = ACTIONS(610), - [anon_sym___CALLER__] = ACTIONS(610), - [anon_sym___STACKTRACE__] = ACTIONS(610), - [sym_alias] = ACTIONS(2167), - [sym_integer] = ACTIONS(2167), - [sym_float] = ACTIONS(2167), - [sym_char] = ACTIONS(2167), - [anon_sym_true] = ACTIONS(614), - [anon_sym_false] = ACTIONS(614), - [anon_sym_nil] = ACTIONS(616), - [sym_atom] = ACTIONS(2167), - [anon_sym_DQUOTE] = ACTIONS(618), - [anon_sym_SQUOTE] = ACTIONS(620), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(624), - [anon_sym_LBRACE] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), + [anon_sym_LPAREN] = ACTIONS(1413), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2153), + [sym_integer] = ACTIONS(2153), + [sym_float] = ACTIONS(2153), + [sym_char] = ACTIONS(2153), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(2153), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(630), - [anon_sym_LT_LT] = ACTIONS(634), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_AMP] = ACTIONS(638), - [anon_sym_PLUS] = ACTIONS(640), - [anon_sym_DASH] = ACTIONS(640), - [anon_sym_BANG] = ACTIONS(640), - [anon_sym_CARET] = ACTIONS(640), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(640), - [anon_sym_not] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(642), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -109911,71 +109424,571 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(646), + [anon_sym_fn] = ACTIONS(864), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(652), + [sym__before_unary_op] = ACTIONS(866), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(654), + [sym__quoted_atom_start] = ACTIONS(868), }, - [664] = { - [sym__expression] = STATE(3441), - [sym_block] = STATE(3441), - [sym__identifier] = STATE(95), - [sym_identifier] = STATE(95), - [sym_special_identifier] = STATE(95), - [sym_boolean] = STATE(3441), - [sym_nil] = STATE(3441), - [sym__atom] = STATE(3441), - [sym_quoted_atom] = STATE(3441), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3441), - [sym_charlist] = STATE(3441), - [sym_sigil] = STATE(3441), - [sym_list] = STATE(3441), - [sym_tuple] = STATE(3441), - [sym_bitstring] = STATE(3441), - [sym_map] = STATE(3441), - [sym_unary_operator] = STATE(3441), - [sym_binary_operator] = STATE(3441), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3441), - [sym_call] = STATE(3441), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(65), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3441), - [sym_anonymous_function] = STATE(3441), + [655] = { + [sym__expression] = STATE(2162), + [sym_block] = STATE(2162), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2162), + [sym_nil] = STATE(2162), + [sym__atom] = STATE(2162), + [sym_quoted_atom] = STATE(2162), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2162), + [sym_charlist] = STATE(2162), + [sym_sigil] = STATE(2162), + [sym_list] = STATE(2162), + [sym_tuple] = STATE(2162), + [sym_bitstring] = STATE(2162), + [sym_map] = STATE(2162), + [sym_unary_operator] = STATE(2162), + [sym_binary_operator] = STATE(2162), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2162), + [sym_call] = STATE(2162), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(2162), + [sym_anonymous_function] = STATE(2162), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(2155), + [sym_integer] = ACTIONS(2155), + [sym_float] = ACTIONS(2155), + [sym_char] = ACTIONS(2155), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2155), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [656] = { + [sym__expression] = STATE(2161), + [sym_block] = STATE(2161), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2161), + [sym_nil] = STATE(2161), + [sym__atom] = STATE(2161), + [sym_quoted_atom] = STATE(2161), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2161), + [sym_charlist] = STATE(2161), + [sym_sigil] = STATE(2161), + [sym_list] = STATE(2161), + [sym_tuple] = STATE(2161), + [sym_bitstring] = STATE(2161), + [sym_map] = STATE(2161), + [sym_unary_operator] = STATE(2161), + [sym_binary_operator] = STATE(2161), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2161), + [sym_call] = STATE(2161), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(2161), + [sym_anonymous_function] = STATE(2161), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(2157), + [sym_integer] = ACTIONS(2157), + [sym_float] = ACTIONS(2157), + [sym_char] = ACTIONS(2157), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2157), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [657] = { + [sym__expression] = STATE(2160), + [sym_block] = STATE(2160), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2160), + [sym_nil] = STATE(2160), + [sym__atom] = STATE(2160), + [sym_quoted_atom] = STATE(2160), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2160), + [sym_charlist] = STATE(2160), + [sym_sigil] = STATE(2160), + [sym_list] = STATE(2160), + [sym_tuple] = STATE(2160), + [sym_bitstring] = STATE(2160), + [sym_map] = STATE(2160), + [sym_unary_operator] = STATE(2160), + [sym_binary_operator] = STATE(2160), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2160), + [sym_call] = STATE(2160), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(2160), + [sym_anonymous_function] = STATE(2160), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(2159), + [sym_integer] = ACTIONS(2159), + [sym_float] = ACTIONS(2159), + [sym_char] = ACTIONS(2159), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2159), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [658] = { + [sym__expression] = STATE(2158), + [sym_block] = STATE(2158), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2158), + [sym_nil] = STATE(2158), + [sym__atom] = STATE(2158), + [sym_quoted_atom] = STATE(2158), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2158), + [sym_charlist] = STATE(2158), + [sym_sigil] = STATE(2158), + [sym_list] = STATE(2158), + [sym_tuple] = STATE(2158), + [sym_bitstring] = STATE(2158), + [sym_map] = STATE(2158), + [sym_unary_operator] = STATE(2158), + [sym_binary_operator] = STATE(2158), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2158), + [sym_call] = STATE(2158), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(2158), + [sym_anonymous_function] = STATE(2158), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(2161), + [sym_integer] = ACTIONS(2161), + [sym_float] = ACTIONS(2161), + [sym_char] = ACTIONS(2161), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2161), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [659] = { + [sym__expression] = STATE(4157), + [sym_block] = STATE(4157), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(4157), + [sym_nil] = STATE(4157), + [sym__atom] = STATE(4157), + [sym_quoted_atom] = STATE(4157), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4157), + [sym_charlist] = STATE(4157), + [sym_sigil] = STATE(4157), + [sym_list] = STATE(4157), + [sym_tuple] = STATE(4157), + [sym_bitstring] = STATE(4157), + [sym_map] = STATE(4157), + [sym_unary_operator] = STATE(4157), + [sym_binary_operator] = STATE(4157), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4157), + [sym_call] = STATE(4157), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4157), + [sym_anonymous_function] = STATE(4157), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), [aux_sym_identifier_token1] = ACTIONS(826), [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1509), + [sym_unused_identifier] = ACTIONS(1069), [anon_sym___MODULE__] = ACTIONS(830), [anon_sym___DIR__] = ACTIONS(830), [anon_sym___ENV__] = ACTIONS(830), [anon_sym___CALLER__] = ACTIONS(830), [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2169), - [sym_integer] = ACTIONS(2169), - [sym_float] = ACTIONS(2169), - [sym_char] = ACTIONS(2169), + [sym_alias] = ACTIONS(2163), + [sym_integer] = ACTIONS(2163), + [sym_float] = ACTIONS(2163), + [sym_char] = ACTIONS(2163), [anon_sym_true] = ACTIONS(1073), [anon_sym_false] = ACTIONS(1073), [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2169), + [sym_atom] = ACTIONS(2163), [anon_sym_DQUOTE] = ACTIONS(1077), [anon_sym_SQUOTE] = ACTIONS(1079), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), @@ -109989,14 +110002,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(1091), [anon_sym_LT_LT] = ACTIONS(1095), [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1517), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1517), - [anon_sym_not] = ACTIONS(1517), - [anon_sym_AT] = ACTIONS(1519), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -110040,424 +110053,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1521), + [sym__before_unary_op] = ACTIONS(1107), [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(1109), }, - [665] = { - [sym__expression] = STATE(2958), - [sym_block] = STATE(2958), - [sym__identifier] = STATE(63), - [sym_identifier] = STATE(63), - [sym_special_identifier] = STATE(63), - [sym_boolean] = STATE(2958), - [sym_nil] = STATE(2958), - [sym__atom] = STATE(2958), - [sym_quoted_atom] = STATE(2958), - [sym__quoted_i_double] = STATE(2988), - [sym__quoted_i_single] = STATE(2987), - [sym__quoted_i_heredoc_single] = STATE(2987), - [sym__quoted_i_heredoc_double] = STATE(2988), - [sym_string] = STATE(2958), - [sym_charlist] = STATE(2958), - [sym_sigil] = STATE(2958), - [sym_list] = STATE(2958), - [sym_tuple] = STATE(2958), - [sym_bitstring] = STATE(2958), - [sym_map] = STATE(2958), - [sym_unary_operator] = STATE(2958), - [sym_binary_operator] = STATE(2958), - [sym_operator_identifier] = STATE(5020), - [sym_dot] = STATE(2958), - [sym_call] = STATE(2958), - [sym__call_without_parentheses] = STATE(2986), - [sym__call_with_parentheses] = STATE(2985), - [sym__local_call_without_parentheses] = STATE(2984), - [sym__local_call_with_parentheses] = STATE(2047), - [sym__local_call_just_do_block] = STATE(2983), - [sym__remote_call_without_parentheses] = STATE(2982), - [sym__remote_call_with_parentheses] = STATE(2050), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(2052), - [sym__anonymous_dot] = STATE(4887), - [sym__double_call] = STATE(2981), - [sym_access_call] = STATE(2958), - [sym_anonymous_function] = STATE(2958), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(604), - [aux_sym_identifier_token1] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(606), - [sym_unused_identifier] = ACTIONS(608), - [anon_sym___MODULE__] = ACTIONS(610), - [anon_sym___DIR__] = ACTIONS(610), - [anon_sym___ENV__] = ACTIONS(610), - [anon_sym___CALLER__] = ACTIONS(610), - [anon_sym___STACKTRACE__] = ACTIONS(610), - [sym_alias] = ACTIONS(2171), - [sym_integer] = ACTIONS(2171), - [sym_float] = ACTIONS(2171), - [sym_char] = ACTIONS(2171), - [anon_sym_true] = ACTIONS(614), - [anon_sym_false] = ACTIONS(614), - [anon_sym_nil] = ACTIONS(616), - [sym_atom] = ACTIONS(2171), - [anon_sym_DQUOTE] = ACTIONS(618), - [anon_sym_SQUOTE] = ACTIONS(620), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(624), - [anon_sym_LBRACE] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(630), - [anon_sym_LT_LT] = ACTIONS(634), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_AMP] = ACTIONS(638), - [anon_sym_PLUS] = ACTIONS(640), - [anon_sym_DASH] = ACTIONS(640), - [anon_sym_BANG] = ACTIONS(640), - [anon_sym_CARET] = ACTIONS(640), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(640), - [anon_sym_not] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(642), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(646), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(652), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(654), - }, - [666] = { - [sym__expression] = STATE(2959), - [sym_block] = STATE(2959), - [sym__identifier] = STATE(63), - [sym_identifier] = STATE(63), - [sym_special_identifier] = STATE(63), - [sym_boolean] = STATE(2959), - [sym_nil] = STATE(2959), - [sym__atom] = STATE(2959), - [sym_quoted_atom] = STATE(2959), - [sym__quoted_i_double] = STATE(2988), - [sym__quoted_i_single] = STATE(2987), - [sym__quoted_i_heredoc_single] = STATE(2987), - [sym__quoted_i_heredoc_double] = STATE(2988), - [sym_string] = STATE(2959), - [sym_charlist] = STATE(2959), - [sym_sigil] = STATE(2959), - [sym_list] = STATE(2959), - [sym_tuple] = STATE(2959), - [sym_bitstring] = STATE(2959), - [sym_map] = STATE(2959), - [sym_unary_operator] = STATE(2959), - [sym_binary_operator] = STATE(2959), - [sym_operator_identifier] = STATE(5020), - [sym_dot] = STATE(2959), - [sym_call] = STATE(2959), - [sym__call_without_parentheses] = STATE(2986), - [sym__call_with_parentheses] = STATE(2985), - [sym__local_call_without_parentheses] = STATE(2984), - [sym__local_call_with_parentheses] = STATE(2047), - [sym__local_call_just_do_block] = STATE(2983), - [sym__remote_call_without_parentheses] = STATE(2982), - [sym__remote_call_with_parentheses] = STATE(2050), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(2052), - [sym__anonymous_dot] = STATE(4887), - [sym__double_call] = STATE(2981), - [sym_access_call] = STATE(2959), - [sym_anonymous_function] = STATE(2959), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(604), - [aux_sym_identifier_token1] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(606), - [sym_unused_identifier] = ACTIONS(608), - [anon_sym___MODULE__] = ACTIONS(610), - [anon_sym___DIR__] = ACTIONS(610), - [anon_sym___ENV__] = ACTIONS(610), - [anon_sym___CALLER__] = ACTIONS(610), - [anon_sym___STACKTRACE__] = ACTIONS(610), - [sym_alias] = ACTIONS(2173), - [sym_integer] = ACTIONS(2173), - [sym_float] = ACTIONS(2173), - [sym_char] = ACTIONS(2173), - [anon_sym_true] = ACTIONS(614), - [anon_sym_false] = ACTIONS(614), - [anon_sym_nil] = ACTIONS(616), - [sym_atom] = ACTIONS(2173), - [anon_sym_DQUOTE] = ACTIONS(618), - [anon_sym_SQUOTE] = ACTIONS(620), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(624), - [anon_sym_LBRACE] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(630), - [anon_sym_LT_LT] = ACTIONS(634), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_AMP] = ACTIONS(638), - [anon_sym_PLUS] = ACTIONS(640), - [anon_sym_DASH] = ACTIONS(640), - [anon_sym_BANG] = ACTIONS(640), - [anon_sym_CARET] = ACTIONS(640), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(640), - [anon_sym_not] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(642), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(646), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(652), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(654), - }, - [667] = { - [sym__expression] = STATE(1589), - [sym_block] = STATE(1589), - [sym__identifier] = STATE(14), - [sym_identifier] = STATE(14), - [sym_special_identifier] = STATE(14), - [sym_boolean] = STATE(1589), - [sym_nil] = STATE(1589), - [sym__atom] = STATE(1589), - [sym_quoted_atom] = STATE(1589), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(1589), - [sym_charlist] = STATE(1589), - [sym_sigil] = STATE(1589), - [sym_list] = STATE(1589), - [sym_tuple] = STATE(1589), - [sym_bitstring] = STATE(1589), - [sym_map] = STATE(1589), - [sym_unary_operator] = STATE(1589), - [sym_binary_operator] = STATE(1589), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(1589), - [sym_call] = STATE(1589), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(1589), - [sym_anonymous_function] = STATE(1589), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(197), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), - [sym_alias] = ACTIONS(2175), - [sym_integer] = ACTIONS(2175), - [sym_float] = ACTIONS(2175), - [sym_char] = ACTIONS(2175), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(222), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(230), - [anon_sym_PLUS] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_CARET] = ACTIONS(235), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(235), - [anon_sym_not] = ACTIONS(235), - [anon_sym_AT] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(243), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [668] = { - [sym__expression] = STATE(1971), - [sym_block] = STATE(1971), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(1971), - [sym_nil] = STATE(1971), - [sym__atom] = STATE(1971), - [sym_quoted_atom] = STATE(1971), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(1971), - [sym_charlist] = STATE(1971), - [sym_sigil] = STATE(1971), - [sym_list] = STATE(1971), - [sym_tuple] = STATE(1971), - [sym_bitstring] = STATE(1971), - [sym_map] = STATE(1971), - [sym_unary_operator] = STATE(1971), - [sym_binary_operator] = STATE(1971), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(1971), - [sym_call] = STATE(1971), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [660] = { + [sym__expression] = STATE(2157), + [sym_block] = STATE(2157), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2157), + [sym_nil] = STATE(2157), + [sym__atom] = STATE(2157), + [sym_quoted_atom] = STATE(2157), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2157), + [sym_charlist] = STATE(2157), + [sym_sigil] = STATE(2157), + [sym_list] = STATE(2157), + [sym_tuple] = STATE(2157), + [sym_bitstring] = STATE(2157), + [sym_map] = STATE(2157), + [sym_unary_operator] = STATE(2157), + [sym_binary_operator] = STATE(2157), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2157), + [sym_call] = STATE(2157), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(1971), - [sym_anonymous_function] = STATE(1971), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(2157), + [sym_anonymous_function] = STATE(2157), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), [aux_sym_identifier_token1] = ACTIONS(67), @@ -110468,14 +110106,1014 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ENV__] = ACTIONS(71), [anon_sym___CALLER__] = ACTIONS(71), [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(2165), + [sym_integer] = ACTIONS(2165), + [sym_float] = ACTIONS(2165), + [sym_char] = ACTIONS(2165), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2165), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [661] = { + [sym__expression] = STATE(2156), + [sym_block] = STATE(2156), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2156), + [sym_nil] = STATE(2156), + [sym__atom] = STATE(2156), + [sym_quoted_atom] = STATE(2156), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2156), + [sym_charlist] = STATE(2156), + [sym_sigil] = STATE(2156), + [sym_list] = STATE(2156), + [sym_tuple] = STATE(2156), + [sym_bitstring] = STATE(2156), + [sym_map] = STATE(2156), + [sym_unary_operator] = STATE(2156), + [sym_binary_operator] = STATE(2156), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2156), + [sym_call] = STATE(2156), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(2156), + [sym_anonymous_function] = STATE(2156), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(2167), + [sym_integer] = ACTIONS(2167), + [sym_float] = ACTIONS(2167), + [sym_char] = ACTIONS(2167), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2167), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [662] = { + [sym__expression] = STATE(2154), + [sym_block] = STATE(2154), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2154), + [sym_nil] = STATE(2154), + [sym__atom] = STATE(2154), + [sym_quoted_atom] = STATE(2154), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2154), + [sym_charlist] = STATE(2154), + [sym_sigil] = STATE(2154), + [sym_list] = STATE(2154), + [sym_tuple] = STATE(2154), + [sym_bitstring] = STATE(2154), + [sym_map] = STATE(2154), + [sym_unary_operator] = STATE(2154), + [sym_binary_operator] = STATE(2154), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2154), + [sym_call] = STATE(2154), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(2154), + [sym_anonymous_function] = STATE(2154), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(2169), + [sym_integer] = ACTIONS(2169), + [sym_float] = ACTIONS(2169), + [sym_char] = ACTIONS(2169), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2169), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [663] = { + [sym__expression] = STATE(2153), + [sym_block] = STATE(2153), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2153), + [sym_nil] = STATE(2153), + [sym__atom] = STATE(2153), + [sym_quoted_atom] = STATE(2153), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2153), + [sym_charlist] = STATE(2153), + [sym_sigil] = STATE(2153), + [sym_list] = STATE(2153), + [sym_tuple] = STATE(2153), + [sym_bitstring] = STATE(2153), + [sym_map] = STATE(2153), + [sym_unary_operator] = STATE(2153), + [sym_binary_operator] = STATE(2153), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2153), + [sym_call] = STATE(2153), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(2153), + [sym_anonymous_function] = STATE(2153), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(2171), + [sym_integer] = ACTIONS(2171), + [sym_float] = ACTIONS(2171), + [sym_char] = ACTIONS(2171), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2171), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [664] = { + [sym__expression] = STATE(2145), + [sym_block] = STATE(2145), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2145), + [sym_nil] = STATE(2145), + [sym__atom] = STATE(2145), + [sym_quoted_atom] = STATE(2145), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2145), + [sym_charlist] = STATE(2145), + [sym_sigil] = STATE(2145), + [sym_list] = STATE(2145), + [sym_tuple] = STATE(2145), + [sym_bitstring] = STATE(2145), + [sym_map] = STATE(2145), + [sym_unary_operator] = STATE(2145), + [sym_binary_operator] = STATE(2145), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2145), + [sym_call] = STATE(2145), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(2145), + [sym_anonymous_function] = STATE(2145), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(2173), + [sym_integer] = ACTIONS(2173), + [sym_float] = ACTIONS(2173), + [sym_char] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2173), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [665] = { + [sym__expression] = STATE(2144), + [sym_block] = STATE(2144), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2144), + [sym_nil] = STATE(2144), + [sym__atom] = STATE(2144), + [sym_quoted_atom] = STATE(2144), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2144), + [sym_charlist] = STATE(2144), + [sym_sigil] = STATE(2144), + [sym_list] = STATE(2144), + [sym_tuple] = STATE(2144), + [sym_bitstring] = STATE(2144), + [sym_map] = STATE(2144), + [sym_unary_operator] = STATE(2144), + [sym_binary_operator] = STATE(2144), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2144), + [sym_call] = STATE(2144), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(2144), + [sym_anonymous_function] = STATE(2144), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(2175), + [sym_integer] = ACTIONS(2175), + [sym_float] = ACTIONS(2175), + [sym_char] = ACTIONS(2175), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2175), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [666] = { + [sym__expression] = STATE(4158), + [sym_block] = STATE(4158), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(4158), + [sym_nil] = STATE(4158), + [sym__atom] = STATE(4158), + [sym_quoted_atom] = STATE(4158), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4158), + [sym_charlist] = STATE(4158), + [sym_sigil] = STATE(4158), + [sym_list] = STATE(4158), + [sym_tuple] = STATE(4158), + [sym_bitstring] = STATE(4158), + [sym_map] = STATE(4158), + [sym_unary_operator] = STATE(4158), + [sym_binary_operator] = STATE(4158), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4158), + [sym_call] = STATE(4158), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4158), + [sym_anonymous_function] = STATE(4158), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), [sym_alias] = ACTIONS(2177), [sym_integer] = ACTIONS(2177), [sym_float] = ACTIONS(2177), [sym_char] = ACTIONS(2177), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [667] = { + [sym__expression] = STATE(2128), + [sym_block] = STATE(2128), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2128), + [sym_nil] = STATE(2128), + [sym__atom] = STATE(2128), + [sym_quoted_atom] = STATE(2128), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2128), + [sym_charlist] = STATE(2128), + [sym_sigil] = STATE(2128), + [sym_list] = STATE(2128), + [sym_tuple] = STATE(2128), + [sym_bitstring] = STATE(2128), + [sym_map] = STATE(2128), + [sym_unary_operator] = STATE(2128), + [sym_binary_operator] = STATE(2128), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2128), + [sym_call] = STATE(2128), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(2128), + [sym_anonymous_function] = STATE(2128), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(2179), + [sym_integer] = ACTIONS(2179), + [sym_float] = ACTIONS(2179), + [sym_char] = ACTIONS(2179), [anon_sym_true] = ACTIONS(948), [anon_sym_false] = ACTIONS(948), [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(2177), + [sym_atom] = ACTIONS(2179), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [668] = { + [sym__expression] = STATE(2127), + [sym_block] = STATE(2127), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2127), + [sym_nil] = STATE(2127), + [sym__atom] = STATE(2127), + [sym_quoted_atom] = STATE(2127), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2127), + [sym_charlist] = STATE(2127), + [sym_sigil] = STATE(2127), + [sym_list] = STATE(2127), + [sym_tuple] = STATE(2127), + [sym_bitstring] = STATE(2127), + [sym_map] = STATE(2127), + [sym_unary_operator] = STATE(2127), + [sym_binary_operator] = STATE(2127), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2127), + [sym_call] = STATE(2127), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(2127), + [sym_anonymous_function] = STATE(2127), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(2181), + [sym_integer] = ACTIONS(2181), + [sym_float] = ACTIONS(2181), + [sym_char] = ACTIONS(2181), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2181), [anon_sym_DQUOTE] = ACTIONS(952), [anon_sym_SQUOTE] = ACTIONS(954), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), @@ -110545,44 +111183,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(982), }, [669] = { - [sym__expression] = STATE(1624), - [sym_block] = STATE(1624), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(1624), - [sym_nil] = STATE(1624), - [sym__atom] = STATE(1624), - [sym_quoted_atom] = STATE(1624), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(1624), - [sym_charlist] = STATE(1624), - [sym_sigil] = STATE(1624), - [sym_list] = STATE(1624), - [sym_tuple] = STATE(1624), - [sym_bitstring] = STATE(1624), - [sym_map] = STATE(1624), - [sym_unary_operator] = STATE(1624), - [sym_binary_operator] = STATE(1624), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(1624), - [sym_call] = STATE(1624), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [sym__expression] = STATE(2126), + [sym_block] = STATE(2126), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2126), + [sym_nil] = STATE(2126), + [sym__atom] = STATE(2126), + [sym_quoted_atom] = STATE(2126), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2126), + [sym_charlist] = STATE(2126), + [sym_sigil] = STATE(2126), + [sym_list] = STATE(2126), + [sym_tuple] = STATE(2126), + [sym_bitstring] = STATE(2126), + [sym_map] = STATE(2126), + [sym_unary_operator] = STATE(2126), + [sym_binary_operator] = STATE(2126), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2126), + [sym_call] = STATE(2126), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(1624), - [sym_anonymous_function] = STATE(1624), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(2126), + [sym_anonymous_function] = STATE(2126), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), [aux_sym_identifier_token1] = ACTIONS(67), @@ -110593,14 +111231,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ENV__] = ACTIONS(71), [anon_sym___CALLER__] = ACTIONS(71), [anon_sym___STACKTRACE__] = ACTIONS(71), - [sym_alias] = ACTIONS(2107), - [sym_integer] = ACTIONS(2107), - [sym_float] = ACTIONS(2107), - [sym_char] = ACTIONS(2107), + [sym_alias] = ACTIONS(2183), + [sym_integer] = ACTIONS(2183), + [sym_float] = ACTIONS(2183), + [sym_char] = ACTIONS(2183), [anon_sym_true] = ACTIONS(948), [anon_sym_false] = ACTIONS(948), [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(2107), + [sym_atom] = ACTIONS(2183), [anon_sym_DQUOTE] = ACTIONS(952), [anon_sym_SQUOTE] = ACTIONS(954), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), @@ -110670,458 +111308,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(982), }, [670] = { - [sym__expression] = STATE(2964), - [sym_block] = STATE(2964), - [sym__identifier] = STATE(63), - [sym_identifier] = STATE(63), - [sym_special_identifier] = STATE(63), - [sym_boolean] = STATE(2964), - [sym_nil] = STATE(2964), - [sym__atom] = STATE(2964), - [sym_quoted_atom] = STATE(2964), - [sym__quoted_i_double] = STATE(2988), - [sym__quoted_i_single] = STATE(2987), - [sym__quoted_i_heredoc_single] = STATE(2987), - [sym__quoted_i_heredoc_double] = STATE(2988), - [sym_string] = STATE(2964), - [sym_charlist] = STATE(2964), - [sym_sigil] = STATE(2964), - [sym_list] = STATE(2964), - [sym_tuple] = STATE(2964), - [sym_bitstring] = STATE(2964), - [sym_map] = STATE(2964), - [sym_unary_operator] = STATE(2964), - [sym_binary_operator] = STATE(2964), - [sym_operator_identifier] = STATE(5020), - [sym_dot] = STATE(2964), - [sym_call] = STATE(2964), - [sym__call_without_parentheses] = STATE(2986), - [sym__call_with_parentheses] = STATE(2985), - [sym__local_call_without_parentheses] = STATE(2984), - [sym__local_call_with_parentheses] = STATE(2047), - [sym__local_call_just_do_block] = STATE(2983), - [sym__remote_call_without_parentheses] = STATE(2982), - [sym__remote_call_with_parentheses] = STATE(2050), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(2052), - [sym__anonymous_dot] = STATE(4887), - [sym__double_call] = STATE(2981), - [sym_access_call] = STATE(2964), - [sym_anonymous_function] = STATE(2964), + [sym__expression] = STATE(4147), + [sym_block] = STATE(4147), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(4147), + [sym_nil] = STATE(4147), + [sym__atom] = STATE(4147), + [sym_quoted_atom] = STATE(4147), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4147), + [sym_charlist] = STATE(4147), + [sym_sigil] = STATE(4147), + [sym_list] = STATE(4147), + [sym_tuple] = STATE(4147), + [sym_bitstring] = STATE(4147), + [sym_map] = STATE(4147), + [sym_unary_operator] = STATE(4147), + [sym_binary_operator] = STATE(4147), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4147), + [sym_call] = STATE(4147), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4147), + [sym_anonymous_function] = STATE(4147), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(604), - [aux_sym_identifier_token1] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(606), - [sym_unused_identifier] = ACTIONS(608), - [anon_sym___MODULE__] = ACTIONS(610), - [anon_sym___DIR__] = ACTIONS(610), - [anon_sym___ENV__] = ACTIONS(610), - [anon_sym___CALLER__] = ACTIONS(610), - [anon_sym___STACKTRACE__] = ACTIONS(610), - [sym_alias] = ACTIONS(2179), - [sym_integer] = ACTIONS(2179), - [sym_float] = ACTIONS(2179), - [sym_char] = ACTIONS(2179), - [anon_sym_true] = ACTIONS(614), - [anon_sym_false] = ACTIONS(614), - [anon_sym_nil] = ACTIONS(616), - [sym_atom] = ACTIONS(2179), - [anon_sym_DQUOTE] = ACTIONS(618), - [anon_sym_SQUOTE] = ACTIONS(620), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(624), - [anon_sym_LBRACE] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(630), - [anon_sym_LT_LT] = ACTIONS(634), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_AMP] = ACTIONS(638), - [anon_sym_PLUS] = ACTIONS(640), - [anon_sym_DASH] = ACTIONS(640), - [anon_sym_BANG] = ACTIONS(640), - [anon_sym_CARET] = ACTIONS(640), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(640), - [anon_sym_not] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(642), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(646), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(652), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(654), - }, - [671] = { - [sym__expression] = STATE(2965), - [sym_block] = STATE(2965), - [sym__identifier] = STATE(63), - [sym_identifier] = STATE(63), - [sym_special_identifier] = STATE(63), - [sym_boolean] = STATE(2965), - [sym_nil] = STATE(2965), - [sym__atom] = STATE(2965), - [sym_quoted_atom] = STATE(2965), - [sym__quoted_i_double] = STATE(2988), - [sym__quoted_i_single] = STATE(2987), - [sym__quoted_i_heredoc_single] = STATE(2987), - [sym__quoted_i_heredoc_double] = STATE(2988), - [sym_string] = STATE(2965), - [sym_charlist] = STATE(2965), - [sym_sigil] = STATE(2965), - [sym_list] = STATE(2965), - [sym_tuple] = STATE(2965), - [sym_bitstring] = STATE(2965), - [sym_map] = STATE(2965), - [sym_unary_operator] = STATE(2965), - [sym_binary_operator] = STATE(2965), - [sym_operator_identifier] = STATE(5020), - [sym_dot] = STATE(2965), - [sym_call] = STATE(2965), - [sym__call_without_parentheses] = STATE(2986), - [sym__call_with_parentheses] = STATE(2985), - [sym__local_call_without_parentheses] = STATE(2984), - [sym__local_call_with_parentheses] = STATE(2047), - [sym__local_call_just_do_block] = STATE(2983), - [sym__remote_call_without_parentheses] = STATE(2982), - [sym__remote_call_with_parentheses] = STATE(2050), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(2052), - [sym__anonymous_dot] = STATE(4887), - [sym__double_call] = STATE(2981), - [sym_access_call] = STATE(2965), - [sym_anonymous_function] = STATE(2965), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(604), - [aux_sym_identifier_token1] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(606), - [sym_unused_identifier] = ACTIONS(608), - [anon_sym___MODULE__] = ACTIONS(610), - [anon_sym___DIR__] = ACTIONS(610), - [anon_sym___ENV__] = ACTIONS(610), - [anon_sym___CALLER__] = ACTIONS(610), - [anon_sym___STACKTRACE__] = ACTIONS(610), - [sym_alias] = ACTIONS(2181), - [sym_integer] = ACTIONS(2181), - [sym_float] = ACTIONS(2181), - [sym_char] = ACTIONS(2181), - [anon_sym_true] = ACTIONS(614), - [anon_sym_false] = ACTIONS(614), - [anon_sym_nil] = ACTIONS(616), - [sym_atom] = ACTIONS(2181), - [anon_sym_DQUOTE] = ACTIONS(618), - [anon_sym_SQUOTE] = ACTIONS(620), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(624), - [anon_sym_LBRACE] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(630), - [anon_sym_LT_LT] = ACTIONS(634), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_AMP] = ACTIONS(638), - [anon_sym_PLUS] = ACTIONS(640), - [anon_sym_DASH] = ACTIONS(640), - [anon_sym_BANG] = ACTIONS(640), - [anon_sym_CARET] = ACTIONS(640), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(640), - [anon_sym_not] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(642), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(646), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(652), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(654), - }, - [672] = { - [sym__expression] = STATE(1579), - [sym_block] = STATE(1579), - [sym__identifier] = STATE(14), - [sym_identifier] = STATE(14), - [sym_special_identifier] = STATE(14), - [sym_boolean] = STATE(1579), - [sym_nil] = STATE(1579), - [sym__atom] = STATE(1579), - [sym_quoted_atom] = STATE(1579), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(1579), - [sym_charlist] = STATE(1579), - [sym_sigil] = STATE(1579), - [sym_list] = STATE(1579), - [sym_tuple] = STATE(1579), - [sym_bitstring] = STATE(1579), - [sym_map] = STATE(1579), - [sym_unary_operator] = STATE(1579), - [sym_binary_operator] = STATE(1579), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(1579), - [sym_call] = STATE(1579), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(1579), - [sym_anonymous_function] = STATE(1579), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(197), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), - [sym_alias] = ACTIONS(2183), - [sym_integer] = ACTIONS(2183), - [sym_float] = ACTIONS(2183), - [sym_char] = ACTIONS(2183), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(2183), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(222), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(230), - [anon_sym_PLUS] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_CARET] = ACTIONS(235), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(235), - [anon_sym_not] = ACTIONS(235), - [anon_sym_AT] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(243), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [673] = { - [sym__expression] = STATE(1570), - [sym_block] = STATE(1570), - [sym__identifier] = STATE(14), - [sym_identifier] = STATE(14), - [sym_special_identifier] = STATE(14), - [sym_boolean] = STATE(1570), - [sym_nil] = STATE(1570), - [sym__atom] = STATE(1570), - [sym_quoted_atom] = STATE(1570), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(1570), - [sym_charlist] = STATE(1570), - [sym_sigil] = STATE(1570), - [sym_list] = STATE(1570), - [sym_tuple] = STATE(1570), - [sym_bitstring] = STATE(1570), - [sym_map] = STATE(1570), - [sym_unary_operator] = STATE(1570), - [sym_binary_operator] = STATE(1570), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(1570), - [sym_call] = STATE(1570), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(1570), - [sym_anonymous_function] = STATE(1570), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(197), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), [sym_alias] = ACTIONS(2185), [sym_integer] = ACTIONS(2185), [sym_float] = ACTIONS(2185), [sym_char] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), [sym_atom] = ACTIONS(2185), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(222), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(230), - [anon_sym_PLUS] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_CARET] = ACTIONS(235), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(235), - [anon_sym_not] = ACTIONS(235), - [anon_sym_AT] = ACTIONS(237), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -111161,53 +111424,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), + [anon_sym_fn] = ACTIONS(1105), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(243), + [sym__before_unary_op] = ACTIONS(1107), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), + [sym__quoted_atom_start] = ACTIONS(1109), }, - [674] = { - [sym__expression] = STATE(3528), - [sym_block] = STATE(3528), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3528), - [sym_nil] = STATE(3528), - [sym__atom] = STATE(3528), - [sym_quoted_atom] = STATE(3528), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3528), - [sym_charlist] = STATE(3528), - [sym_sigil] = STATE(3528), - [sym_list] = STATE(3528), - [sym_tuple] = STATE(3528), - [sym_bitstring] = STATE(3528), - [sym_map] = STATE(3528), - [sym_unary_operator] = STATE(3528), - [sym_binary_operator] = STATE(3528), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3528), - [sym_call] = STATE(3528), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3528), - [sym_anonymous_function] = STATE(3528), + [671] = { + [sym__expression] = STATE(4154), + [sym_block] = STATE(4154), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(4154), + [sym_nil] = STATE(4154), + [sym__atom] = STATE(4154), + [sym_quoted_atom] = STATE(4154), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4154), + [sym_charlist] = STATE(4154), + [sym_sigil] = STATE(4154), + [sym_list] = STATE(4154), + [sym_tuple] = STATE(4154), + [sym_bitstring] = STATE(4154), + [sym_map] = STATE(4154), + [sym_unary_operator] = STATE(4154), + [sym_binary_operator] = STATE(4154), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4154), + [sym_call] = STATE(4154), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4154), + [sym_anonymous_function] = STATE(4154), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), [aux_sym_identifier_token1] = ACTIONS(826), @@ -111294,175 +111557,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(1109), }, - [675] = { - [sym__expression] = STATE(2602), - [sym_block] = STATE(2602), - [sym__identifier] = STATE(45), - [sym_identifier] = STATE(45), - [sym_special_identifier] = STATE(45), - [sym_boolean] = STATE(2602), - [sym_nil] = STATE(2602), - [sym__atom] = STATE(2602), - [sym_quoted_atom] = STATE(2602), - [sym__quoted_i_double] = STATE(2714), - [sym__quoted_i_single] = STATE(2713), - [sym__quoted_i_heredoc_single] = STATE(2713), - [sym__quoted_i_heredoc_double] = STATE(2714), - [sym_string] = STATE(2602), - [sym_charlist] = STATE(2602), - [sym_sigil] = STATE(2602), - [sym_list] = STATE(2602), - [sym_tuple] = STATE(2602), - [sym_bitstring] = STATE(2602), - [sym_map] = STATE(2602), - [sym_unary_operator] = STATE(2602), - [sym_binary_operator] = STATE(2602), - [sym_operator_identifier] = STATE(4988), - [sym_dot] = STATE(2602), - [sym_call] = STATE(2602), - [sym__call_without_parentheses] = STATE(2712), - [sym__call_with_parentheses] = STATE(2711), - [sym__local_call_without_parentheses] = STATE(2710), - [sym__local_call_with_parentheses] = STATE(1879), - [sym__local_call_just_do_block] = STATE(2709), - [sym__remote_call_without_parentheses] = STATE(2708), - [sym__remote_call_with_parentheses] = STATE(1859), - [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1919), - [sym__anonymous_dot] = STATE(4871), - [sym__double_call] = STATE(2707), - [sym_access_call] = STATE(2602), - [sym_anonymous_function] = STATE(2602), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(479), - [aux_sym_identifier_token1] = ACTIONS(481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(481), - [sym_unused_identifier] = ACTIONS(483), - [anon_sym___MODULE__] = ACTIONS(485), - [anon_sym___DIR__] = ACTIONS(485), - [anon_sym___ENV__] = ACTIONS(485), - [anon_sym___CALLER__] = ACTIONS(485), - [anon_sym___STACKTRACE__] = ACTIONS(485), - [sym_alias] = ACTIONS(1339), - [sym_integer] = ACTIONS(1339), - [sym_float] = ACTIONS(1339), - [sym_char] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_nil] = ACTIONS(491), - [sym_atom] = ACTIONS(1339), - [anon_sym_DQUOTE] = ACTIONS(493), - [anon_sym_SQUOTE] = ACTIONS(495), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(497), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(499), - [anon_sym_LBRACE] = ACTIONS(501), - [anon_sym_LBRACK] = ACTIONS(503), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(505), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(515), - [anon_sym_CARET] = ACTIONS(515), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(515), - [anon_sym_not] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(517), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(519), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(523), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(525), - }, - [676] = { - [sym__expression] = STATE(3447), - [sym_block] = STATE(3447), - [sym__identifier] = STATE(95), - [sym_identifier] = STATE(95), - [sym_special_identifier] = STATE(95), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym__atom] = STATE(3447), - [sym_quoted_atom] = STATE(3447), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(65), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), + [672] = { + [sym__expression] = STATE(4149), + [sym_block] = STATE(4149), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(4149), + [sym_nil] = STATE(4149), + [sym__atom] = STATE(4149), + [sym_quoted_atom] = STATE(4149), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4149), + [sym_charlist] = STATE(4149), + [sym_sigil] = STATE(4149), + [sym_list] = STATE(4149), + [sym_tuple] = STATE(4149), + [sym_bitstring] = STATE(4149), + [sym_map] = STATE(4149), + [sym_unary_operator] = STATE(4149), + [sym_binary_operator] = STATE(4149), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4149), + [sym_call] = STATE(4149), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4149), + [sym_anonymous_function] = STATE(4149), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), [aux_sym_identifier_token1] = ACTIONS(826), [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1509), + [sym_unused_identifier] = ACTIONS(1069), [anon_sym___MODULE__] = ACTIONS(830), [anon_sym___DIR__] = ACTIONS(830), [anon_sym___ENV__] = ACTIONS(830), @@ -111489,14 +111627,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(1091), [anon_sym_LT_LT] = ACTIONS(1095), [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1517), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1517), - [anon_sym_not] = ACTIONS(1517), - [anon_sym_AT] = ACTIONS(1519), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -111540,54 +111678,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1521), + [sym__before_unary_op] = ACTIONS(1107), [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(1109), }, - [677] = { - [sym__expression] = STATE(3255), - [sym_block] = STATE(3255), - [sym__identifier] = STATE(64), - [sym_identifier] = STATE(64), - [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3255), - [sym_nil] = STATE(3255), - [sym__atom] = STATE(3255), - [sym_quoted_atom] = STATE(3255), - [sym__quoted_i_double] = STATE(3395), - [sym__quoted_i_single] = STATE(3394), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3255), - [sym_charlist] = STATE(3255), - [sym_sigil] = STATE(3255), - [sym_list] = STATE(3255), - [sym_tuple] = STATE(3255), - [sym_bitstring] = STATE(3255), - [sym_map] = STATE(3255), - [sym_unary_operator] = STATE(3255), - [sym_binary_operator] = STATE(3255), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3255), - [sym_call] = STATE(3255), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), - [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3255), - [sym_anonymous_function] = STATE(3255), + [673] = { + [sym__expression] = STATE(4134), + [sym_block] = STATE(4134), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(4134), + [sym_nil] = STATE(4134), + [sym__atom] = STATE(4134), + [sym_quoted_atom] = STATE(4134), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4134), + [sym_charlist] = STATE(4134), + [sym_sigil] = STATE(4134), + [sym_list] = STATE(4134), + [sym_tuple] = STATE(4134), + [sym_bitstring] = STATE(4134), + [sym_map] = STATE(4134), + [sym_unary_operator] = STATE(4134), + [sym_binary_operator] = STATE(4134), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4134), + [sym_call] = STATE(4134), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4134), + [sym_anonymous_function] = STATE(4134), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1067), [aux_sym_identifier_token1] = ACTIONS(826), [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(828), + [sym_unused_identifier] = ACTIONS(1069), [anon_sym___MODULE__] = ACTIONS(830), [anon_sym___DIR__] = ACTIONS(830), [anon_sym___ENV__] = ACTIONS(830), @@ -111597,10 +111735,510 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(2191), [sym_float] = ACTIONS(2191), [sym_char] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [674] = { + [sym__expression] = STATE(3494), + [sym_block] = STATE(3494), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3494), + [sym_nil] = STATE(3494), + [sym__atom] = STATE(3494), + [sym_quoted_atom] = STATE(3494), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3494), + [sym_charlist] = STATE(3494), + [sym_sigil] = STATE(3494), + [sym_list] = STATE(3494), + [sym_tuple] = STATE(3494), + [sym_bitstring] = STATE(3494), + [sym_map] = STATE(3494), + [sym_unary_operator] = STATE(3494), + [sym_binary_operator] = STATE(3494), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3494), + [sym_call] = STATE(3494), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3494), + [sym_anonymous_function] = STATE(3494), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2193), + [sym_integer] = ACTIONS(2193), + [sym_float] = ACTIONS(2193), + [sym_char] = ACTIONS(2193), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(2193), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [675] = { + [sym__expression] = STATE(4145), + [sym_block] = STATE(4145), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(4145), + [sym_nil] = STATE(4145), + [sym__atom] = STATE(4145), + [sym_quoted_atom] = STATE(4145), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4145), + [sym_charlist] = STATE(4145), + [sym_sigil] = STATE(4145), + [sym_list] = STATE(4145), + [sym_tuple] = STATE(4145), + [sym_bitstring] = STATE(4145), + [sym_map] = STATE(4145), + [sym_unary_operator] = STATE(4145), + [sym_binary_operator] = STATE(4145), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4145), + [sym_call] = STATE(4145), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4145), + [sym_anonymous_function] = STATE(4145), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2195), + [sym_integer] = ACTIONS(2195), + [sym_float] = ACTIONS(2195), + [sym_char] = ACTIONS(2195), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(2195), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [676] = { + [sym__expression] = STATE(3802), + [sym_block] = STATE(3802), + [sym__identifier] = STATE(64), + [sym_identifier] = STATE(64), + [sym_special_identifier] = STATE(64), + [sym_boolean] = STATE(3802), + [sym_nil] = STATE(3802), + [sym__atom] = STATE(3802), + [sym_quoted_atom] = STATE(3802), + [sym__quoted_i_double] = STATE(3871), + [sym__quoted_i_single] = STATE(3876), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3802), + [sym_charlist] = STATE(3802), + [sym_sigil] = STATE(3802), + [sym_list] = STATE(3802), + [sym_tuple] = STATE(3802), + [sym_bitstring] = STATE(3802), + [sym_map] = STATE(3802), + [sym_unary_operator] = STATE(3802), + [sym_binary_operator] = STATE(3802), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3802), + [sym_call] = STATE(3802), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), + [sym__remote_dot] = STATE(55), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3802), + [sym_anonymous_function] = STATE(3802), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1413), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2197), + [sym_integer] = ACTIONS(2197), + [sym_float] = ACTIONS(2197), + [sym_char] = ACTIONS(2197), [anon_sym_true] = ACTIONS(834), [anon_sym_false] = ACTIONS(834), [anon_sym_nil] = ACTIONS(836), - [sym_atom] = ACTIONS(2191), + [sym_atom] = ACTIONS(2197), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [677] = { + [sym__expression] = STATE(3803), + [sym_block] = STATE(3803), + [sym__identifier] = STATE(64), + [sym_identifier] = STATE(64), + [sym_special_identifier] = STATE(64), + [sym_boolean] = STATE(3803), + [sym_nil] = STATE(3803), + [sym__atom] = STATE(3803), + [sym_quoted_atom] = STATE(3803), + [sym__quoted_i_double] = STATE(3871), + [sym__quoted_i_single] = STATE(3876), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3803), + [sym_charlist] = STATE(3803), + [sym_sigil] = STATE(3803), + [sym_list] = STATE(3803), + [sym_tuple] = STATE(3803), + [sym_bitstring] = STATE(3803), + [sym_map] = STATE(3803), + [sym_unary_operator] = STATE(3803), + [sym_binary_operator] = STATE(3803), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3803), + [sym_call] = STATE(3803), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), + [sym__remote_dot] = STATE(55), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3803), + [sym_anonymous_function] = STATE(3803), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1413), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2199), + [sym_integer] = ACTIONS(2199), + [sym_float] = ACTIONS(2199), + [sym_char] = ACTIONS(2199), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(2199), [anon_sym_DQUOTE] = ACTIONS(838), [anon_sym_SQUOTE] = ACTIONS(840), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), @@ -111670,708 +112308,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(868), }, [678] = { - [sym__expression] = STATE(1962), - [sym_block] = STATE(1962), - [sym__identifier] = STATE(34), - [sym_identifier] = STATE(34), - [sym_special_identifier] = STATE(34), - [sym_boolean] = STATE(1962), - [sym_nil] = STATE(1962), - [sym__atom] = STATE(1962), - [sym_quoted_atom] = STATE(1962), - [sym__quoted_i_double] = STATE(1866), - [sym__quoted_i_single] = STATE(1867), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(1962), - [sym_charlist] = STATE(1962), - [sym_sigil] = STATE(1962), - [sym_list] = STATE(1962), - [sym_tuple] = STATE(1962), - [sym_bitstring] = STATE(1962), - [sym_map] = STATE(1962), - [sym_unary_operator] = STATE(1962), - [sym_binary_operator] = STATE(1962), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(1962), - [sym_call] = STATE(1962), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(36), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(1962), - [sym_anonymous_function] = STATE(1962), + [sym__expression] = STATE(3980), + [sym_block] = STATE(3980), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3980), + [sym_nil] = STATE(3980), + [sym__atom] = STATE(3980), + [sym_quoted_atom] = STATE(3980), + [sym__quoted_i_double] = STATE(3664), + [sym__quoted_i_single] = STATE(3697), + [sym__quoted_i_heredoc_single] = STATE(3698), + [sym__quoted_i_heredoc_double] = STATE(3702), + [sym_string] = STATE(3980), + [sym_charlist] = STATE(3980), + [sym_sigil] = STATE(3980), + [sym_list] = STATE(3980), + [sym_tuple] = STATE(3980), + [sym_bitstring] = STATE(3980), + [sym_map] = STATE(3980), + [sym_unary_operator] = STATE(3980), + [sym_binary_operator] = STATE(3980), + [sym_operator_identifier] = STATE(5655), + [sym_dot] = STATE(3980), + [sym_call] = STATE(3980), + [sym__call_without_parentheses] = STATE(3705), + [sym__call_with_parentheses] = STATE(3725), + [sym__local_call_without_parentheses] = STATE(3765), + [sym__local_call_with_parentheses] = STATE(2681), + [sym__local_call_just_do_block] = STATE(3808), + [sym__remote_call_without_parentheses] = STATE(3810), + [sym__remote_call_with_parentheses] = STATE(2682), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2683), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(3811), + [sym_access_call] = STATE(3980), + [sym_anonymous_function] = STATE(3980), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(361), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(1915), - [sym_integer] = ACTIONS(1915), - [sym_float] = ACTIONS(1915), - [sym_char] = ACTIONS(1915), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), - [sym_atom] = ACTIONS(1915), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(396), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(396), - [anon_sym_not] = ACTIONS(396), - [anon_sym_AT] = ACTIONS(398), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(404), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), - }, - [679] = { - [sym__expression] = STATE(1990), - [sym_block] = STATE(1990), - [sym__identifier] = STATE(34), - [sym_identifier] = STATE(34), - [sym_special_identifier] = STATE(34), - [sym_boolean] = STATE(1990), - [sym_nil] = STATE(1990), - [sym__atom] = STATE(1990), - [sym_quoted_atom] = STATE(1990), - [sym__quoted_i_double] = STATE(1866), - [sym__quoted_i_single] = STATE(1867), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(1990), - [sym_charlist] = STATE(1990), - [sym_sigil] = STATE(1990), - [sym_list] = STATE(1990), - [sym_tuple] = STATE(1990), - [sym_bitstring] = STATE(1990), - [sym_map] = STATE(1990), - [sym_unary_operator] = STATE(1990), - [sym_binary_operator] = STATE(1990), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(1990), - [sym_call] = STATE(1990), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(36), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(1990), - [sym_anonymous_function] = STATE(1990), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(361), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(2193), - [sym_integer] = ACTIONS(2193), - [sym_float] = ACTIONS(2193), - [sym_char] = ACTIONS(2193), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), - [sym_atom] = ACTIONS(2193), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(396), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(396), - [anon_sym_not] = ACTIONS(396), - [anon_sym_AT] = ACTIONS(398), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(404), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), - }, - [680] = { - [sym__expression] = STATE(1991), - [sym_block] = STATE(1991), - [sym__identifier] = STATE(34), - [sym_identifier] = STATE(34), - [sym_special_identifier] = STATE(34), - [sym_boolean] = STATE(1991), - [sym_nil] = STATE(1991), - [sym__atom] = STATE(1991), - [sym_quoted_atom] = STATE(1991), - [sym__quoted_i_double] = STATE(1866), - [sym__quoted_i_single] = STATE(1867), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(1991), - [sym_charlist] = STATE(1991), - [sym_sigil] = STATE(1991), - [sym_list] = STATE(1991), - [sym_tuple] = STATE(1991), - [sym_bitstring] = STATE(1991), - [sym_map] = STATE(1991), - [sym_unary_operator] = STATE(1991), - [sym_binary_operator] = STATE(1991), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(1991), - [sym_call] = STATE(1991), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(36), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(1991), - [sym_anonymous_function] = STATE(1991), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(361), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(2195), - [sym_integer] = ACTIONS(2195), - [sym_float] = ACTIONS(2195), - [sym_char] = ACTIONS(2195), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), - [sym_atom] = ACTIONS(2195), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(396), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(396), - [anon_sym_not] = ACTIONS(396), - [anon_sym_AT] = ACTIONS(398), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(404), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), - }, - [681] = { - [sym__expression] = STATE(1992), - [sym_block] = STATE(1992), - [sym__identifier] = STATE(34), - [sym_identifier] = STATE(34), - [sym_special_identifier] = STATE(34), - [sym_boolean] = STATE(1992), - [sym_nil] = STATE(1992), - [sym__atom] = STATE(1992), - [sym_quoted_atom] = STATE(1992), - [sym__quoted_i_double] = STATE(1866), - [sym__quoted_i_single] = STATE(1867), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(1992), - [sym_charlist] = STATE(1992), - [sym_sigil] = STATE(1992), - [sym_list] = STATE(1992), - [sym_tuple] = STATE(1992), - [sym_bitstring] = STATE(1992), - [sym_map] = STATE(1992), - [sym_unary_operator] = STATE(1992), - [sym_binary_operator] = STATE(1992), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(1992), - [sym_call] = STATE(1992), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(36), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(1992), - [sym_anonymous_function] = STATE(1992), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(361), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(2197), - [sym_integer] = ACTIONS(2197), - [sym_float] = ACTIONS(2197), - [sym_char] = ACTIONS(2197), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), - [sym_atom] = ACTIONS(2197), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(396), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(396), - [anon_sym_not] = ACTIONS(396), - [anon_sym_AT] = ACTIONS(398), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(404), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), - }, - [682] = { - [sym__expression] = STATE(1993), - [sym_block] = STATE(1993), - [sym__identifier] = STATE(34), - [sym_identifier] = STATE(34), - [sym_special_identifier] = STATE(34), - [sym_boolean] = STATE(1993), - [sym_nil] = STATE(1993), - [sym__atom] = STATE(1993), - [sym_quoted_atom] = STATE(1993), - [sym__quoted_i_double] = STATE(1866), - [sym__quoted_i_single] = STATE(1867), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(1993), - [sym_charlist] = STATE(1993), - [sym_sigil] = STATE(1993), - [sym_list] = STATE(1993), - [sym_tuple] = STATE(1993), - [sym_bitstring] = STATE(1993), - [sym_map] = STATE(1993), - [sym_unary_operator] = STATE(1993), - [sym_binary_operator] = STATE(1993), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(1993), - [sym_call] = STATE(1993), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(36), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(1993), - [sym_anonymous_function] = STATE(1993), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(361), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(2199), - [sym_integer] = ACTIONS(2199), - [sym_float] = ACTIONS(2199), - [sym_char] = ACTIONS(2199), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), - [sym_atom] = ACTIONS(2199), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(396), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(396), - [anon_sym_not] = ACTIONS(396), - [anon_sym_AT] = ACTIONS(398), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(404), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), - }, - [683] = { - [sym__expression] = STATE(1994), - [sym_block] = STATE(1994), - [sym__identifier] = STATE(34), - [sym_identifier] = STATE(34), - [sym_special_identifier] = STATE(34), - [sym_boolean] = STATE(1994), - [sym_nil] = STATE(1994), - [sym__atom] = STATE(1994), - [sym_quoted_atom] = STATE(1994), - [sym__quoted_i_double] = STATE(1866), - [sym__quoted_i_single] = STATE(1867), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(1994), - [sym_charlist] = STATE(1994), - [sym_sigil] = STATE(1994), - [sym_list] = STATE(1994), - [sym_tuple] = STATE(1994), - [sym_bitstring] = STATE(1994), - [sym_map] = STATE(1994), - [sym_unary_operator] = STATE(1994), - [sym_binary_operator] = STATE(1994), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(1994), - [sym_call] = STATE(1994), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(36), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(1994), - [sym_anonymous_function] = STATE(1994), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(361), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), [sym_alias] = ACTIONS(2201), [sym_integer] = ACTIONS(2201), [sym_float] = ACTIONS(2201), [sym_char] = ACTIONS(2201), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), [sym_atom] = ACTIONS(2201), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(396), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(396), - [anon_sym_not] = ACTIONS(396), - [anon_sym_AT] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -112411,92 +112424,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), + [anon_sym_fn] = ACTIONS(53), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(404), + [sym__before_unary_op] = ACTIONS(55), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), + [sym__quoted_atom_start] = ACTIONS(59), }, - [684] = { - [sym__expression] = STATE(1995), - [sym_block] = STATE(1995), - [sym__identifier] = STATE(34), - [sym_identifier] = STATE(34), - [sym_special_identifier] = STATE(34), - [sym_boolean] = STATE(1995), - [sym_nil] = STATE(1995), - [sym__atom] = STATE(1995), - [sym_quoted_atom] = STATE(1995), - [sym__quoted_i_double] = STATE(1866), - [sym__quoted_i_single] = STATE(1867), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(1995), - [sym_charlist] = STATE(1995), - [sym_sigil] = STATE(1995), - [sym_list] = STATE(1995), - [sym_tuple] = STATE(1995), - [sym_bitstring] = STATE(1995), - [sym_map] = STATE(1995), - [sym_unary_operator] = STATE(1995), - [sym_binary_operator] = STATE(1995), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(1995), - [sym_call] = STATE(1995), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(36), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(1995), - [sym_anonymous_function] = STATE(1995), + [679] = { + [sym__expression] = STATE(3979), + [sym_block] = STATE(3979), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3979), + [sym_nil] = STATE(3979), + [sym__atom] = STATE(3979), + [sym_quoted_atom] = STATE(3979), + [sym__quoted_i_double] = STATE(3664), + [sym__quoted_i_single] = STATE(3697), + [sym__quoted_i_heredoc_single] = STATE(3698), + [sym__quoted_i_heredoc_double] = STATE(3702), + [sym_string] = STATE(3979), + [sym_charlist] = STATE(3979), + [sym_sigil] = STATE(3979), + [sym_list] = STATE(3979), + [sym_tuple] = STATE(3979), + [sym_bitstring] = STATE(3979), + [sym_map] = STATE(3979), + [sym_unary_operator] = STATE(3979), + [sym_binary_operator] = STATE(3979), + [sym_operator_identifier] = STATE(5655), + [sym_dot] = STATE(3979), + [sym_call] = STATE(3979), + [sym__call_without_parentheses] = STATE(3705), + [sym__call_with_parentheses] = STATE(3725), + [sym__local_call_without_parentheses] = STATE(3765), + [sym__local_call_with_parentheses] = STATE(2681), + [sym__local_call_just_do_block] = STATE(3808), + [sym__remote_call_without_parentheses] = STATE(3810), + [sym__remote_call_with_parentheses] = STATE(2682), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2683), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(3811), + [sym_access_call] = STATE(3979), + [sym_anonymous_function] = STATE(3979), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(361), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), [sym_alias] = ACTIONS(2203), [sym_integer] = ACTIONS(2203), [sym_float] = ACTIONS(2203), [sym_char] = ACTIONS(2203), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), [sym_atom] = ACTIONS(2203), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(396), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(396), - [anon_sym_not] = ACTIONS(396), - [anon_sym_AT] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -112536,92 +112549,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), + [anon_sym_fn] = ACTIONS(53), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(404), + [sym__before_unary_op] = ACTIONS(55), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), + [sym__quoted_atom_start] = ACTIONS(59), }, - [685] = { - [sym__expression] = STATE(1996), - [sym_block] = STATE(1996), - [sym__identifier] = STATE(34), - [sym_identifier] = STATE(34), - [sym_special_identifier] = STATE(34), - [sym_boolean] = STATE(1996), - [sym_nil] = STATE(1996), - [sym__atom] = STATE(1996), - [sym_quoted_atom] = STATE(1996), - [sym__quoted_i_double] = STATE(1866), - [sym__quoted_i_single] = STATE(1867), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(1996), - [sym_charlist] = STATE(1996), - [sym_sigil] = STATE(1996), - [sym_list] = STATE(1996), - [sym_tuple] = STATE(1996), - [sym_bitstring] = STATE(1996), - [sym_map] = STATE(1996), - [sym_unary_operator] = STATE(1996), - [sym_binary_operator] = STATE(1996), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(1996), - [sym_call] = STATE(1996), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(36), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(1996), - [sym_anonymous_function] = STATE(1996), + [680] = { + [sym__expression] = STATE(2840), + [sym_block] = STATE(2840), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(2840), + [sym_nil] = STATE(2840), + [sym__atom] = STATE(2840), + [sym_quoted_atom] = STATE(2840), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2840), + [sym_charlist] = STATE(2840), + [sym_sigil] = STATE(2840), + [sym_list] = STATE(2840), + [sym_tuple] = STATE(2840), + [sym_bitstring] = STATE(2840), + [sym_map] = STATE(2840), + [sym_unary_operator] = STATE(2840), + [sym_binary_operator] = STATE(2840), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2840), + [sym_call] = STATE(2840), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(2840), + [sym_anonymous_function] = STATE(2840), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(361), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1437), + [sym_unused_identifier] = ACTIONS(1439), + [anon_sym___MODULE__] = ACTIONS(1441), + [anon_sym___DIR__] = ACTIONS(1441), + [anon_sym___ENV__] = ACTIONS(1441), + [anon_sym___CALLER__] = ACTIONS(1441), + [anon_sym___STACKTRACE__] = ACTIONS(1441), [sym_alias] = ACTIONS(2205), [sym_integer] = ACTIONS(2205), [sym_float] = ACTIONS(2205), [sym_char] = ACTIONS(2205), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), [sym_atom] = ACTIONS(2205), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(396), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(396), - [anon_sym_not] = ACTIONS(396), - [anon_sym_AT] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(1445), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1451), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), + [anon_sym_not] = ACTIONS(1451), + [anon_sym_AT] = ACTIONS(1453), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -112661,92 +112674,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), + [anon_sym_fn] = ACTIONS(978), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(404), + [sym__before_unary_op] = ACTIONS(1455), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), + [sym__quoted_atom_start] = ACTIONS(982), }, - [686] = { - [sym__expression] = STATE(1997), - [sym_block] = STATE(1997), - [sym__identifier] = STATE(34), - [sym_identifier] = STATE(34), - [sym_special_identifier] = STATE(34), - [sym_boolean] = STATE(1997), - [sym_nil] = STATE(1997), - [sym__atom] = STATE(1997), - [sym_quoted_atom] = STATE(1997), - [sym__quoted_i_double] = STATE(1866), - [sym__quoted_i_single] = STATE(1867), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(1997), - [sym_charlist] = STATE(1997), - [sym_sigil] = STATE(1997), - [sym_list] = STATE(1997), - [sym_tuple] = STATE(1997), - [sym_bitstring] = STATE(1997), - [sym_map] = STATE(1997), - [sym_unary_operator] = STATE(1997), - [sym_binary_operator] = STATE(1997), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(1997), - [sym_call] = STATE(1997), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(36), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(1997), - [sym_anonymous_function] = STATE(1997), + [681] = { + [sym__expression] = STATE(3975), + [sym_block] = STATE(3975), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3975), + [sym_nil] = STATE(3975), + [sym__atom] = STATE(3975), + [sym_quoted_atom] = STATE(3975), + [sym__quoted_i_double] = STATE(3664), + [sym__quoted_i_single] = STATE(3697), + [sym__quoted_i_heredoc_single] = STATE(3698), + [sym__quoted_i_heredoc_double] = STATE(3702), + [sym_string] = STATE(3975), + [sym_charlist] = STATE(3975), + [sym_sigil] = STATE(3975), + [sym_list] = STATE(3975), + [sym_tuple] = STATE(3975), + [sym_bitstring] = STATE(3975), + [sym_map] = STATE(3975), + [sym_unary_operator] = STATE(3975), + [sym_binary_operator] = STATE(3975), + [sym_operator_identifier] = STATE(5655), + [sym_dot] = STATE(3975), + [sym_call] = STATE(3975), + [sym__call_without_parentheses] = STATE(3705), + [sym__call_with_parentheses] = STATE(3725), + [sym__local_call_without_parentheses] = STATE(3765), + [sym__local_call_with_parentheses] = STATE(2681), + [sym__local_call_just_do_block] = STATE(3808), + [sym__remote_call_without_parentheses] = STATE(3810), + [sym__remote_call_with_parentheses] = STATE(2682), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2683), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(3811), + [sym_access_call] = STATE(3975), + [sym_anonymous_function] = STATE(3975), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(361), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), [sym_alias] = ACTIONS(2207), [sym_integer] = ACTIONS(2207), [sym_float] = ACTIONS(2207), [sym_char] = ACTIONS(2207), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), [sym_atom] = ACTIONS(2207), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(396), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(396), - [anon_sym_not] = ACTIONS(396), - [anon_sym_AT] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -112786,92 +112799,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), + [anon_sym_fn] = ACTIONS(53), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(404), + [sym__before_unary_op] = ACTIONS(55), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), + [sym__quoted_atom_start] = ACTIONS(59), }, - [687] = { - [sym__expression] = STATE(1998), - [sym_block] = STATE(1998), - [sym__identifier] = STATE(34), - [sym_identifier] = STATE(34), - [sym_special_identifier] = STATE(34), - [sym_boolean] = STATE(1998), - [sym_nil] = STATE(1998), - [sym__atom] = STATE(1998), - [sym_quoted_atom] = STATE(1998), - [sym__quoted_i_double] = STATE(1866), - [sym__quoted_i_single] = STATE(1867), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(1998), - [sym_charlist] = STATE(1998), - [sym_sigil] = STATE(1998), - [sym_list] = STATE(1998), - [sym_tuple] = STATE(1998), - [sym_bitstring] = STATE(1998), - [sym_map] = STATE(1998), - [sym_unary_operator] = STATE(1998), - [sym_binary_operator] = STATE(1998), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(1998), - [sym_call] = STATE(1998), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(36), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(1998), - [sym_anonymous_function] = STATE(1998), + [682] = { + [sym__expression] = STATE(3974), + [sym_block] = STATE(3974), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3974), + [sym_nil] = STATE(3974), + [sym__atom] = STATE(3974), + [sym_quoted_atom] = STATE(3974), + [sym__quoted_i_double] = STATE(3664), + [sym__quoted_i_single] = STATE(3697), + [sym__quoted_i_heredoc_single] = STATE(3698), + [sym__quoted_i_heredoc_double] = STATE(3702), + [sym_string] = STATE(3974), + [sym_charlist] = STATE(3974), + [sym_sigil] = STATE(3974), + [sym_list] = STATE(3974), + [sym_tuple] = STATE(3974), + [sym_bitstring] = STATE(3974), + [sym_map] = STATE(3974), + [sym_unary_operator] = STATE(3974), + [sym_binary_operator] = STATE(3974), + [sym_operator_identifier] = STATE(5655), + [sym_dot] = STATE(3974), + [sym_call] = STATE(3974), + [sym__call_without_parentheses] = STATE(3705), + [sym__call_with_parentheses] = STATE(3725), + [sym__local_call_without_parentheses] = STATE(3765), + [sym__local_call_with_parentheses] = STATE(2681), + [sym__local_call_just_do_block] = STATE(3808), + [sym__remote_call_without_parentheses] = STATE(3810), + [sym__remote_call_with_parentheses] = STATE(2682), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2683), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(3811), + [sym_access_call] = STATE(3974), + [sym_anonymous_function] = STATE(3974), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(361), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), [sym_alias] = ACTIONS(2209), [sym_integer] = ACTIONS(2209), [sym_float] = ACTIONS(2209), [sym_char] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), [sym_atom] = ACTIONS(2209), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(396), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(396), - [anon_sym_not] = ACTIONS(396), - [anon_sym_AT] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -112911,92 +112924,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), + [anon_sym_fn] = ACTIONS(53), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(404), + [sym__before_unary_op] = ACTIONS(55), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), + [sym__quoted_atom_start] = ACTIONS(59), }, - [688] = { - [sym__expression] = STATE(1999), - [sym_block] = STATE(1999), - [sym__identifier] = STATE(34), - [sym_identifier] = STATE(34), - [sym_special_identifier] = STATE(34), - [sym_boolean] = STATE(1999), - [sym_nil] = STATE(1999), - [sym__atom] = STATE(1999), - [sym_quoted_atom] = STATE(1999), - [sym__quoted_i_double] = STATE(1866), - [sym__quoted_i_single] = STATE(1867), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(1999), - [sym_charlist] = STATE(1999), - [sym_sigil] = STATE(1999), - [sym_list] = STATE(1999), - [sym_tuple] = STATE(1999), - [sym_bitstring] = STATE(1999), - [sym_map] = STATE(1999), - [sym_unary_operator] = STATE(1999), - [sym_binary_operator] = STATE(1999), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(1999), - [sym_call] = STATE(1999), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(36), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(1999), - [sym_anonymous_function] = STATE(1999), + [683] = { + [sym__expression] = STATE(3973), + [sym_block] = STATE(3973), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3973), + [sym_nil] = STATE(3973), + [sym__atom] = STATE(3973), + [sym_quoted_atom] = STATE(3973), + [sym__quoted_i_double] = STATE(3664), + [sym__quoted_i_single] = STATE(3697), + [sym__quoted_i_heredoc_single] = STATE(3698), + [sym__quoted_i_heredoc_double] = STATE(3702), + [sym_string] = STATE(3973), + [sym_charlist] = STATE(3973), + [sym_sigil] = STATE(3973), + [sym_list] = STATE(3973), + [sym_tuple] = STATE(3973), + [sym_bitstring] = STATE(3973), + [sym_map] = STATE(3973), + [sym_unary_operator] = STATE(3973), + [sym_binary_operator] = STATE(3973), + [sym_operator_identifier] = STATE(5655), + [sym_dot] = STATE(3973), + [sym_call] = STATE(3973), + [sym__call_without_parentheses] = STATE(3705), + [sym__call_with_parentheses] = STATE(3725), + [sym__local_call_without_parentheses] = STATE(3765), + [sym__local_call_with_parentheses] = STATE(2681), + [sym__local_call_just_do_block] = STATE(3808), + [sym__remote_call_without_parentheses] = STATE(3810), + [sym__remote_call_with_parentheses] = STATE(2682), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2683), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(3811), + [sym_access_call] = STATE(3973), + [sym_anonymous_function] = STATE(3973), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(361), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), [sym_alias] = ACTIONS(2211), [sym_integer] = ACTIONS(2211), [sym_float] = ACTIONS(2211), [sym_char] = ACTIONS(2211), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), [sym_atom] = ACTIONS(2211), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(396), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(396), - [anon_sym_not] = ACTIONS(396), - [anon_sym_AT] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -113036,92 +113049,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), + [anon_sym_fn] = ACTIONS(53), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(404), + [sym__before_unary_op] = ACTIONS(55), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), + [sym__quoted_atom_start] = ACTIONS(59), }, - [689] = { - [sym__expression] = STATE(3539), - [sym_block] = STATE(3539), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3539), - [sym_nil] = STATE(3539), - [sym__atom] = STATE(3539), - [sym_quoted_atom] = STATE(3539), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3539), - [sym_charlist] = STATE(3539), - [sym_sigil] = STATE(3539), - [sym_list] = STATE(3539), - [sym_tuple] = STATE(3539), - [sym_bitstring] = STATE(3539), - [sym_map] = STATE(3539), - [sym_unary_operator] = STATE(3539), - [sym_binary_operator] = STATE(3539), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3539), - [sym_call] = STATE(3539), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3539), - [sym_anonymous_function] = STATE(3539), + [684] = { + [sym__expression] = STATE(3970), + [sym_block] = STATE(3970), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3970), + [sym_nil] = STATE(3970), + [sym__atom] = STATE(3970), + [sym_quoted_atom] = STATE(3970), + [sym__quoted_i_double] = STATE(3664), + [sym__quoted_i_single] = STATE(3697), + [sym__quoted_i_heredoc_single] = STATE(3698), + [sym__quoted_i_heredoc_double] = STATE(3702), + [sym_string] = STATE(3970), + [sym_charlist] = STATE(3970), + [sym_sigil] = STATE(3970), + [sym_list] = STATE(3970), + [sym_tuple] = STATE(3970), + [sym_bitstring] = STATE(3970), + [sym_map] = STATE(3970), + [sym_unary_operator] = STATE(3970), + [sym_binary_operator] = STATE(3970), + [sym_operator_identifier] = STATE(5655), + [sym_dot] = STATE(3970), + [sym_call] = STATE(3970), + [sym__call_without_parentheses] = STATE(3705), + [sym__call_with_parentheses] = STATE(3725), + [sym__local_call_without_parentheses] = STATE(3765), + [sym__local_call_with_parentheses] = STATE(2681), + [sym__local_call_just_do_block] = STATE(3808), + [sym__remote_call_without_parentheses] = STATE(3810), + [sym__remote_call_with_parentheses] = STATE(2682), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2683), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(3811), + [sym_access_call] = STATE(3970), + [sym_anonymous_function] = STATE(3970), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), [sym_alias] = ACTIONS(2213), [sym_integer] = ACTIONS(2213), [sym_float] = ACTIONS(2213), [sym_char] = ACTIONS(2213), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), [sym_atom] = ACTIONS(2213), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -113161,92 +113174,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), + [anon_sym_fn] = ACTIONS(53), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), + [sym__before_unary_op] = ACTIONS(55), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), + [sym__quoted_atom_start] = ACTIONS(59), }, - [690] = { - [sym__expression] = STATE(2001), - [sym_block] = STATE(2001), - [sym__identifier] = STATE(34), - [sym_identifier] = STATE(34), - [sym_special_identifier] = STATE(34), - [sym_boolean] = STATE(2001), - [sym_nil] = STATE(2001), - [sym__atom] = STATE(2001), - [sym_quoted_atom] = STATE(2001), - [sym__quoted_i_double] = STATE(1866), - [sym__quoted_i_single] = STATE(1867), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(2001), - [sym_charlist] = STATE(2001), - [sym_sigil] = STATE(2001), - [sym_list] = STATE(2001), - [sym_tuple] = STATE(2001), - [sym_bitstring] = STATE(2001), - [sym_map] = STATE(2001), - [sym_unary_operator] = STATE(2001), - [sym_binary_operator] = STATE(2001), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(2001), - [sym_call] = STATE(2001), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(36), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(2001), - [sym_anonymous_function] = STATE(2001), + [685] = { + [sym__expression] = STATE(2124), + [sym_block] = STATE(2124), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym__atom] = STATE(2124), + [sym_quoted_atom] = STATE(2124), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(361), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), [sym_alias] = ACTIONS(2215), [sym_integer] = ACTIONS(2215), [sym_float] = ACTIONS(2215), [sym_char] = ACTIONS(2215), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), [sym_atom] = ACTIONS(2215), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(396), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(396), - [anon_sym_not] = ACTIONS(396), - [anon_sym_AT] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -113286,92 +113299,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), + [anon_sym_fn] = ACTIONS(978), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(404), + [sym__before_unary_op] = ACTIONS(980), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), + [sym__quoted_atom_start] = ACTIONS(982), }, - [691] = { - [sym__expression] = STATE(2002), - [sym_block] = STATE(2002), - [sym__identifier] = STATE(34), - [sym_identifier] = STATE(34), - [sym_special_identifier] = STATE(34), - [sym_boolean] = STATE(2002), - [sym_nil] = STATE(2002), - [sym__atom] = STATE(2002), - [sym_quoted_atom] = STATE(2002), - [sym__quoted_i_double] = STATE(1866), - [sym__quoted_i_single] = STATE(1867), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(2002), - [sym_charlist] = STATE(2002), - [sym_sigil] = STATE(2002), - [sym_list] = STATE(2002), - [sym_tuple] = STATE(2002), - [sym_bitstring] = STATE(2002), - [sym_map] = STATE(2002), - [sym_unary_operator] = STATE(2002), - [sym_binary_operator] = STATE(2002), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(2002), - [sym_call] = STATE(2002), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(36), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(2002), - [sym_anonymous_function] = STATE(2002), + [686] = { + [sym__expression] = STATE(3814), + [sym_block] = STATE(3814), + [sym__identifier] = STATE(64), + [sym_identifier] = STATE(64), + [sym_special_identifier] = STATE(64), + [sym_boolean] = STATE(3814), + [sym_nil] = STATE(3814), + [sym__atom] = STATE(3814), + [sym_quoted_atom] = STATE(3814), + [sym__quoted_i_double] = STATE(3871), + [sym__quoted_i_single] = STATE(3876), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3814), + [sym_charlist] = STATE(3814), + [sym_sigil] = STATE(3814), + [sym_list] = STATE(3814), + [sym_tuple] = STATE(3814), + [sym_bitstring] = STATE(3814), + [sym_map] = STATE(3814), + [sym_unary_operator] = STATE(3814), + [sym_binary_operator] = STATE(3814), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3814), + [sym_call] = STATE(3814), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), + [sym__remote_dot] = STATE(55), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3814), + [sym_anonymous_function] = STATE(3814), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(361), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(1413), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), [sym_alias] = ACTIONS(2217), [sym_integer] = ACTIONS(2217), [sym_float] = ACTIONS(2217), [sym_char] = ACTIONS(2217), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), [sym_atom] = ACTIONS(2217), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(396), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(396), - [anon_sym_not] = ACTIONS(396), - [anon_sym_AT] = ACTIONS(398), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -113411,92 +113424,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), + [anon_sym_fn] = ACTIONS(864), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(404), + [sym__before_unary_op] = ACTIONS(866), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), + [sym__quoted_atom_start] = ACTIONS(868), }, - [692] = { - [sym__expression] = STATE(2003), - [sym_block] = STATE(2003), - [sym__identifier] = STATE(34), - [sym_identifier] = STATE(34), - [sym_special_identifier] = STATE(34), - [sym_boolean] = STATE(2003), - [sym_nil] = STATE(2003), - [sym__atom] = STATE(2003), - [sym_quoted_atom] = STATE(2003), - [sym__quoted_i_double] = STATE(1866), - [sym__quoted_i_single] = STATE(1867), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(2003), - [sym_charlist] = STATE(2003), - [sym_sigil] = STATE(2003), - [sym_list] = STATE(2003), - [sym_tuple] = STATE(2003), - [sym_bitstring] = STATE(2003), - [sym_map] = STATE(2003), - [sym_unary_operator] = STATE(2003), - [sym_binary_operator] = STATE(2003), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(2003), - [sym_call] = STATE(2003), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(36), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(2003), - [sym_anonymous_function] = STATE(2003), + [687] = { + [sym__expression] = STATE(3815), + [sym_block] = STATE(3815), + [sym__identifier] = STATE(64), + [sym_identifier] = STATE(64), + [sym_special_identifier] = STATE(64), + [sym_boolean] = STATE(3815), + [sym_nil] = STATE(3815), + [sym__atom] = STATE(3815), + [sym_quoted_atom] = STATE(3815), + [sym__quoted_i_double] = STATE(3871), + [sym__quoted_i_single] = STATE(3876), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(3815), + [sym_charlist] = STATE(3815), + [sym_sigil] = STATE(3815), + [sym_list] = STATE(3815), + [sym_tuple] = STATE(3815), + [sym_bitstring] = STATE(3815), + [sym_map] = STATE(3815), + [sym_unary_operator] = STATE(3815), + [sym_binary_operator] = STATE(3815), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(3815), + [sym_call] = STATE(3815), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), + [sym__remote_dot] = STATE(55), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(3815), + [sym_anonymous_function] = STATE(3815), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(361), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(1413), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), [sym_alias] = ACTIONS(2219), [sym_integer] = ACTIONS(2219), [sym_float] = ACTIONS(2219), [sym_char] = ACTIONS(2219), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), [sym_atom] = ACTIONS(2219), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(396), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(396), - [anon_sym_not] = ACTIONS(396), - [anon_sym_AT] = ACTIONS(398), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -113536,92 +113549,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), + [anon_sym_fn] = ACTIONS(864), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(404), + [sym__before_unary_op] = ACTIONS(866), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), + [sym__quoted_atom_start] = ACTIONS(868), }, - [693] = { - [sym__expression] = STATE(1931), - [sym_block] = STATE(1931), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(1931), - [sym_nil] = STATE(1931), - [sym__atom] = STATE(1931), - [sym_quoted_atom] = STATE(1931), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(1931), - [sym_charlist] = STATE(1931), - [sym_sigil] = STATE(1931), - [sym_list] = STATE(1931), - [sym_tuple] = STATE(1931), - [sym_bitstring] = STATE(1931), - [sym_map] = STATE(1931), - [sym_unary_operator] = STATE(1931), - [sym_binary_operator] = STATE(1931), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(1931), - [sym_call] = STATE(1931), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(1931), - [sym_anonymous_function] = STATE(1931), + [688] = { + [sym__expression] = STATE(3969), + [sym_block] = STATE(3969), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3969), + [sym_nil] = STATE(3969), + [sym__atom] = STATE(3969), + [sym_quoted_atom] = STATE(3969), + [sym__quoted_i_double] = STATE(3664), + [sym__quoted_i_single] = STATE(3697), + [sym__quoted_i_heredoc_single] = STATE(3698), + [sym__quoted_i_heredoc_double] = STATE(3702), + [sym_string] = STATE(3969), + [sym_charlist] = STATE(3969), + [sym_sigil] = STATE(3969), + [sym_list] = STATE(3969), + [sym_tuple] = STATE(3969), + [sym_bitstring] = STATE(3969), + [sym_map] = STATE(3969), + [sym_unary_operator] = STATE(3969), + [sym_binary_operator] = STATE(3969), + [sym_operator_identifier] = STATE(5655), + [sym_dot] = STATE(3969), + [sym_call] = STATE(3969), + [sym__call_without_parentheses] = STATE(3705), + [sym__call_with_parentheses] = STATE(3725), + [sym__local_call_without_parentheses] = STATE(3765), + [sym__local_call_with_parentheses] = STATE(2681), + [sym__local_call_just_do_block] = STATE(3808), + [sym__remote_call_without_parentheses] = STATE(3810), + [sym__remote_call_with_parentheses] = STATE(2682), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2683), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(3811), + [sym_access_call] = STATE(3969), + [sym_anonymous_function] = STATE(3969), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(944), - [anon_sym___MODULE__] = ACTIONS(71), - [anon_sym___DIR__] = ACTIONS(71), - [anon_sym___ENV__] = ACTIONS(71), - [anon_sym___CALLER__] = ACTIONS(71), - [anon_sym___STACKTRACE__] = ACTIONS(71), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), [sym_alias] = ACTIONS(2221), [sym_integer] = ACTIONS(2221), [sym_float] = ACTIONS(2221), [sym_char] = ACTIONS(2221), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), [sym_atom] = ACTIONS(2221), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(972), - [anon_sym_CARET] = ACTIONS(972), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), - [anon_sym_not] = ACTIONS(972), - [anon_sym_AT] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -113661,92 +113674,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(53), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(980), + [sym__before_unary_op] = ACTIONS(55), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), + [sym__quoted_atom_start] = ACTIONS(59), }, - [694] = { - [sym__expression] = STATE(2006), - [sym_block] = STATE(2006), - [sym__identifier] = STATE(34), - [sym_identifier] = STATE(34), - [sym_special_identifier] = STATE(34), - [sym_boolean] = STATE(2006), - [sym_nil] = STATE(2006), - [sym__atom] = STATE(2006), - [sym_quoted_atom] = STATE(2006), - [sym__quoted_i_double] = STATE(1866), - [sym__quoted_i_single] = STATE(1867), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(2006), - [sym_charlist] = STATE(2006), - [sym_sigil] = STATE(2006), - [sym_list] = STATE(2006), - [sym_tuple] = STATE(2006), - [sym_bitstring] = STATE(2006), - [sym_map] = STATE(2006), - [sym_unary_operator] = STATE(2006), - [sym_binary_operator] = STATE(2006), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(2006), - [sym_call] = STATE(2006), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(36), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(2006), - [sym_anonymous_function] = STATE(2006), + [689] = { + [sym__expression] = STATE(2123), + [sym_block] = STATE(2123), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2123), + [sym_nil] = STATE(2123), + [sym__atom] = STATE(2123), + [sym_quoted_atom] = STATE(2123), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2123), + [sym_charlist] = STATE(2123), + [sym_sigil] = STATE(2123), + [sym_list] = STATE(2123), + [sym_tuple] = STATE(2123), + [sym_bitstring] = STATE(2123), + [sym_map] = STATE(2123), + [sym_unary_operator] = STATE(2123), + [sym_binary_operator] = STATE(2123), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2123), + [sym_call] = STATE(2123), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(2123), + [sym_anonymous_function] = STATE(2123), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(361), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), [sym_alias] = ACTIONS(2223), [sym_integer] = ACTIONS(2223), [sym_float] = ACTIONS(2223), [sym_char] = ACTIONS(2223), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), [sym_atom] = ACTIONS(2223), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(396), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(396), - [anon_sym_not] = ACTIONS(396), - [anon_sym_AT] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -113786,92 +113799,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), + [anon_sym_fn] = ACTIONS(978), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(404), + [sym__before_unary_op] = ACTIONS(980), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), + [sym__quoted_atom_start] = ACTIONS(982), }, - [695] = { - [sym__expression] = STATE(1989), - [sym_block] = STATE(1989), - [sym__identifier] = STATE(34), - [sym_identifier] = STATE(34), - [sym_special_identifier] = STATE(34), - [sym_boolean] = STATE(1989), - [sym_nil] = STATE(1989), - [sym__atom] = STATE(1989), - [sym_quoted_atom] = STATE(1989), - [sym__quoted_i_double] = STATE(1866), - [sym__quoted_i_single] = STATE(1867), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(1989), - [sym_charlist] = STATE(1989), - [sym_sigil] = STATE(1989), - [sym_list] = STATE(1989), - [sym_tuple] = STATE(1989), - [sym_bitstring] = STATE(1989), - [sym_map] = STATE(1989), - [sym_unary_operator] = STATE(1989), - [sym_binary_operator] = STATE(1989), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(1989), - [sym_call] = STATE(1989), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(36), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(1989), - [sym_anonymous_function] = STATE(1989), + [690] = { + [sym__expression] = STATE(3968), + [sym_block] = STATE(3968), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3968), + [sym_nil] = STATE(3968), + [sym__atom] = STATE(3968), + [sym_quoted_atom] = STATE(3968), + [sym__quoted_i_double] = STATE(3664), + [sym__quoted_i_single] = STATE(3697), + [sym__quoted_i_heredoc_single] = STATE(3698), + [sym__quoted_i_heredoc_double] = STATE(3702), + [sym_string] = STATE(3968), + [sym_charlist] = STATE(3968), + [sym_sigil] = STATE(3968), + [sym_list] = STATE(3968), + [sym_tuple] = STATE(3968), + [sym_bitstring] = STATE(3968), + [sym_map] = STATE(3968), + [sym_unary_operator] = STATE(3968), + [sym_binary_operator] = STATE(3968), + [sym_operator_identifier] = STATE(5655), + [sym_dot] = STATE(3968), + [sym_call] = STATE(3968), + [sym__call_without_parentheses] = STATE(3705), + [sym__call_with_parentheses] = STATE(3725), + [sym__local_call_without_parentheses] = STATE(3765), + [sym__local_call_with_parentheses] = STATE(2681), + [sym__local_call_just_do_block] = STATE(3808), + [sym__remote_call_without_parentheses] = STATE(3810), + [sym__remote_call_with_parentheses] = STATE(2682), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2683), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(3811), + [sym_access_call] = STATE(3968), + [sym_anonymous_function] = STATE(3968), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(361), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), [sym_alias] = ACTIONS(2225), [sym_integer] = ACTIONS(2225), [sym_float] = ACTIONS(2225), [sym_char] = ACTIONS(2225), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), [sym_atom] = ACTIONS(2225), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(396), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(396), - [anon_sym_not] = ACTIONS(396), - [anon_sym_AT] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -113911,92 +113924,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), + [anon_sym_fn] = ACTIONS(53), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(404), + [sym__before_unary_op] = ACTIONS(55), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), + [sym__quoted_atom_start] = ACTIONS(59), }, - [696] = { - [sym__expression] = STATE(1911), - [sym_block] = STATE(1911), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(1911), - [sym_nil] = STATE(1911), - [sym__atom] = STATE(1911), - [sym_quoted_atom] = STATE(1911), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(1911), - [sym_charlist] = STATE(1911), - [sym_sigil] = STATE(1911), - [sym_list] = STATE(1911), - [sym_tuple] = STATE(1911), - [sym_bitstring] = STATE(1911), - [sym_map] = STATE(1911), - [sym_unary_operator] = STATE(1911), - [sym_binary_operator] = STATE(1911), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(1911), - [sym_call] = STATE(1911), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(1911), - [sym_anonymous_function] = STATE(1911), + [691] = { + [sym__expression] = STATE(3967), + [sym_block] = STATE(3967), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3967), + [sym_nil] = STATE(3967), + [sym__atom] = STATE(3967), + [sym_quoted_atom] = STATE(3967), + [sym__quoted_i_double] = STATE(3664), + [sym__quoted_i_single] = STATE(3697), + [sym__quoted_i_heredoc_single] = STATE(3698), + [sym__quoted_i_heredoc_double] = STATE(3702), + [sym_string] = STATE(3967), + [sym_charlist] = STATE(3967), + [sym_sigil] = STATE(3967), + [sym_list] = STATE(3967), + [sym_tuple] = STATE(3967), + [sym_bitstring] = STATE(3967), + [sym_map] = STATE(3967), + [sym_unary_operator] = STATE(3967), + [sym_binary_operator] = STATE(3967), + [sym_operator_identifier] = STATE(5655), + [sym_dot] = STATE(3967), + [sym_call] = STATE(3967), + [sym__call_without_parentheses] = STATE(3705), + [sym__call_with_parentheses] = STATE(3725), + [sym__local_call_without_parentheses] = STATE(3765), + [sym__local_call_with_parentheses] = STATE(2681), + [sym__local_call_just_do_block] = STATE(3808), + [sym__remote_call_without_parentheses] = STATE(3810), + [sym__remote_call_with_parentheses] = STATE(2682), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2683), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(3811), + [sym_access_call] = STATE(3967), + [sym_anonymous_function] = STATE(3967), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(944), - [anon_sym___MODULE__] = ACTIONS(71), - [anon_sym___DIR__] = ACTIONS(71), - [anon_sym___ENV__] = ACTIONS(71), - [anon_sym___CALLER__] = ACTIONS(71), - [anon_sym___STACKTRACE__] = ACTIONS(71), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), [sym_alias] = ACTIONS(2227), [sym_integer] = ACTIONS(2227), [sym_float] = ACTIONS(2227), [sym_char] = ACTIONS(2227), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), [sym_atom] = ACTIONS(2227), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(972), - [anon_sym_CARET] = ACTIONS(972), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), - [anon_sym_not] = ACTIONS(972), - [anon_sym_AT] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -114036,467 +114049,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(53), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(980), + [sym__before_unary_op] = ACTIONS(55), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), + [sym__quoted_atom_start] = ACTIONS(59), }, - [697] = { - [sym__expression] = STATE(1929), - [sym_block] = STATE(1929), - [sym__identifier] = STATE(34), - [sym_identifier] = STATE(34), - [sym_special_identifier] = STATE(34), - [sym_boolean] = STATE(1929), - [sym_nil] = STATE(1929), - [sym__atom] = STATE(1929), - [sym_quoted_atom] = STATE(1929), - [sym__quoted_i_double] = STATE(1866), - [sym__quoted_i_single] = STATE(1867), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(1929), - [sym_charlist] = STATE(1929), - [sym_sigil] = STATE(1929), - [sym_list] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_bitstring] = STATE(1929), - [sym_map] = STATE(1929), - [sym_unary_operator] = STATE(1929), - [sym_binary_operator] = STATE(1929), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(1929), - [sym_call] = STATE(1929), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(36), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(1929), - [sym_anonymous_function] = STATE(1929), + [692] = { + [sym__expression] = STATE(3966), + [sym_block] = STATE(3966), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3966), + [sym_nil] = STATE(3966), + [sym__atom] = STATE(3966), + [sym_quoted_atom] = STATE(3966), + [sym__quoted_i_double] = STATE(3664), + [sym__quoted_i_single] = STATE(3697), + [sym__quoted_i_heredoc_single] = STATE(3698), + [sym__quoted_i_heredoc_double] = STATE(3702), + [sym_string] = STATE(3966), + [sym_charlist] = STATE(3966), + [sym_sigil] = STATE(3966), + [sym_list] = STATE(3966), + [sym_tuple] = STATE(3966), + [sym_bitstring] = STATE(3966), + [sym_map] = STATE(3966), + [sym_unary_operator] = STATE(3966), + [sym_binary_operator] = STATE(3966), + [sym_operator_identifier] = STATE(5655), + [sym_dot] = STATE(3966), + [sym_call] = STATE(3966), + [sym__call_without_parentheses] = STATE(3705), + [sym__call_with_parentheses] = STATE(3725), + [sym__local_call_without_parentheses] = STATE(3765), + [sym__local_call_with_parentheses] = STATE(2681), + [sym__local_call_just_do_block] = STATE(3808), + [sym__remote_call_without_parentheses] = STATE(3810), + [sym__remote_call_with_parentheses] = STATE(2682), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2683), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(3811), + [sym_access_call] = STATE(3966), + [sym_anonymous_function] = STATE(3966), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(361), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(1985), - [sym_integer] = ACTIONS(1985), - [sym_float] = ACTIONS(1985), - [sym_char] = ACTIONS(1985), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), - [sym_atom] = ACTIONS(1985), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(396), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(396), - [anon_sym_not] = ACTIONS(396), - [anon_sym_AT] = ACTIONS(398), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(404), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), - }, - [698] = { - [sym__expression] = STATE(1928), - [sym_block] = STATE(1928), - [sym__identifier] = STATE(34), - [sym_identifier] = STATE(34), - [sym_special_identifier] = STATE(34), - [sym_boolean] = STATE(1928), - [sym_nil] = STATE(1928), - [sym__atom] = STATE(1928), - [sym_quoted_atom] = STATE(1928), - [sym__quoted_i_double] = STATE(1866), - [sym__quoted_i_single] = STATE(1867), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(1928), - [sym_charlist] = STATE(1928), - [sym_sigil] = STATE(1928), - [sym_list] = STATE(1928), - [sym_tuple] = STATE(1928), - [sym_bitstring] = STATE(1928), - [sym_map] = STATE(1928), - [sym_unary_operator] = STATE(1928), - [sym_binary_operator] = STATE(1928), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(1928), - [sym_call] = STATE(1928), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(36), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(1928), - [sym_anonymous_function] = STATE(1928), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(361), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(1959), - [sym_integer] = ACTIONS(1959), - [sym_float] = ACTIONS(1959), - [sym_char] = ACTIONS(1959), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), - [sym_atom] = ACTIONS(1959), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(396), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(396), - [anon_sym_not] = ACTIONS(396), - [anon_sym_AT] = ACTIONS(398), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(404), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), - }, - [699] = { - [sym__expression] = STATE(1319), - [sym_block] = STATE(1319), - [sym__identifier] = STATE(18), - [sym_identifier] = STATE(18), - [sym_special_identifier] = STATE(18), - [sym_boolean] = STATE(1319), - [sym_nil] = STATE(1319), - [sym__atom] = STATE(1319), - [sym_quoted_atom] = STATE(1319), - [sym__quoted_i_double] = STATE(1259), - [sym__quoted_i_single] = STATE(1258), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(1319), - [sym_charlist] = STATE(1319), - [sym_sigil] = STATE(1319), - [sym_list] = STATE(1319), - [sym_tuple] = STATE(1319), - [sym_bitstring] = STATE(1319), - [sym_map] = STATE(1319), - [sym_unary_operator] = STATE(1319), - [sym_binary_operator] = STATE(1319), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(1319), - [sym_call] = STATE(1319), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(1319), - [sym_anonymous_function] = STATE(1319), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(256), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), - [sym_alias] = ACTIONS(1489), - [sym_integer] = ACTIONS(1489), - [sym_float] = ACTIONS(1489), - [sym_char] = ACTIONS(1489), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(1489), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(286), - [anon_sym_not] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(294), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), - }, - [700] = { - [sym__expression] = STATE(1902), - [sym_block] = STATE(1902), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(1902), - [sym_nil] = STATE(1902), - [sym__atom] = STATE(1902), - [sym_quoted_atom] = STATE(1902), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(1902), - [sym_charlist] = STATE(1902), - [sym_sigil] = STATE(1902), - [sym_list] = STATE(1902), - [sym_tuple] = STATE(1902), - [sym_bitstring] = STATE(1902), - [sym_map] = STATE(1902), - [sym_unary_operator] = STATE(1902), - [sym_binary_operator] = STATE(1902), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(1902), - [sym_call] = STATE(1902), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(1902), - [sym_anonymous_function] = STATE(1902), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(944), - [anon_sym___MODULE__] = ACTIONS(71), - [anon_sym___DIR__] = ACTIONS(71), - [anon_sym___ENV__] = ACTIONS(71), - [anon_sym___CALLER__] = ACTIONS(71), - [anon_sym___STACKTRACE__] = ACTIONS(71), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), [sym_alias] = ACTIONS(2229), [sym_integer] = ACTIONS(2229), [sym_float] = ACTIONS(2229), [sym_char] = ACTIONS(2229), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), [sym_atom] = ACTIONS(2229), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(972), - [anon_sym_CARET] = ACTIONS(972), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), - [anon_sym_not] = ACTIONS(972), - [anon_sym_AT] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -114536,92 +114174,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(53), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(980), + [sym__before_unary_op] = ACTIONS(55), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), + [sym__quoted_atom_start] = ACTIONS(59), }, - [701] = { - [sym__expression] = STATE(3453), - [sym_block] = STATE(3453), - [sym__identifier] = STATE(95), - [sym_identifier] = STATE(95), - [sym_special_identifier] = STATE(95), - [sym_boolean] = STATE(3453), - [sym_nil] = STATE(3453), - [sym__atom] = STATE(3453), - [sym_quoted_atom] = STATE(3453), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3453), - [sym_charlist] = STATE(3453), - [sym_sigil] = STATE(3453), - [sym_list] = STATE(3453), - [sym_tuple] = STATE(3453), - [sym_bitstring] = STATE(3453), - [sym_map] = STATE(3453), - [sym_unary_operator] = STATE(3453), - [sym_binary_operator] = STATE(3453), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3453), - [sym_call] = STATE(3453), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(65), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3453), - [sym_anonymous_function] = STATE(3453), + [693] = { + [sym__expression] = STATE(3965), + [sym_block] = STATE(3965), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3965), + [sym_nil] = STATE(3965), + [sym__atom] = STATE(3965), + [sym_quoted_atom] = STATE(3965), + [sym__quoted_i_double] = STATE(3664), + [sym__quoted_i_single] = STATE(3697), + [sym__quoted_i_heredoc_single] = STATE(3698), + [sym__quoted_i_heredoc_double] = STATE(3702), + [sym_string] = STATE(3965), + [sym_charlist] = STATE(3965), + [sym_sigil] = STATE(3965), + [sym_list] = STATE(3965), + [sym_tuple] = STATE(3965), + [sym_bitstring] = STATE(3965), + [sym_map] = STATE(3965), + [sym_unary_operator] = STATE(3965), + [sym_binary_operator] = STATE(3965), + [sym_operator_identifier] = STATE(5655), + [sym_dot] = STATE(3965), + [sym_call] = STATE(3965), + [sym__call_without_parentheses] = STATE(3705), + [sym__call_with_parentheses] = STATE(3725), + [sym__local_call_without_parentheses] = STATE(3765), + [sym__local_call_with_parentheses] = STATE(2681), + [sym__local_call_just_do_block] = STATE(3808), + [sym__remote_call_without_parentheses] = STATE(3810), + [sym__remote_call_with_parentheses] = STATE(2682), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2683), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(3811), + [sym_access_call] = STATE(3965), + [sym_anonymous_function] = STATE(3965), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1509), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), [sym_alias] = ACTIONS(2231), [sym_integer] = ACTIONS(2231), [sym_float] = ACTIONS(2231), [sym_char] = ACTIONS(2231), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), [sym_atom] = ACTIONS(2231), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1517), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1517), - [anon_sym_not] = ACTIONS(1517), - [anon_sym_AT] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -114661,92 +114299,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), + [anon_sym_fn] = ACTIONS(53), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1521), + [sym__before_unary_op] = ACTIONS(55), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), + [sym__quoted_atom_start] = ACTIONS(59), }, - [702] = { - [sym__expression] = STATE(3455), - [sym_block] = STATE(3455), - [sym__identifier] = STATE(95), - [sym_identifier] = STATE(95), - [sym_special_identifier] = STATE(95), - [sym_boolean] = STATE(3455), - [sym_nil] = STATE(3455), - [sym__atom] = STATE(3455), - [sym_quoted_atom] = STATE(3455), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3455), - [sym_charlist] = STATE(3455), - [sym_sigil] = STATE(3455), - [sym_list] = STATE(3455), - [sym_tuple] = STATE(3455), - [sym_bitstring] = STATE(3455), - [sym_map] = STATE(3455), - [sym_unary_operator] = STATE(3455), - [sym_binary_operator] = STATE(3455), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3455), - [sym_call] = STATE(3455), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(65), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3455), - [sym_anonymous_function] = STATE(3455), + [694] = { + [sym__expression] = STATE(3964), + [sym_block] = STATE(3964), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3964), + [sym_nil] = STATE(3964), + [sym__atom] = STATE(3964), + [sym_quoted_atom] = STATE(3964), + [sym__quoted_i_double] = STATE(3664), + [sym__quoted_i_single] = STATE(3697), + [sym__quoted_i_heredoc_single] = STATE(3698), + [sym__quoted_i_heredoc_double] = STATE(3702), + [sym_string] = STATE(3964), + [sym_charlist] = STATE(3964), + [sym_sigil] = STATE(3964), + [sym_list] = STATE(3964), + [sym_tuple] = STATE(3964), + [sym_bitstring] = STATE(3964), + [sym_map] = STATE(3964), + [sym_unary_operator] = STATE(3964), + [sym_binary_operator] = STATE(3964), + [sym_operator_identifier] = STATE(5655), + [sym_dot] = STATE(3964), + [sym_call] = STATE(3964), + [sym__call_without_parentheses] = STATE(3705), + [sym__call_with_parentheses] = STATE(3725), + [sym__local_call_without_parentheses] = STATE(3765), + [sym__local_call_with_parentheses] = STATE(2681), + [sym__local_call_just_do_block] = STATE(3808), + [sym__remote_call_without_parentheses] = STATE(3810), + [sym__remote_call_with_parentheses] = STATE(2682), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2683), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(3811), + [sym_access_call] = STATE(3964), + [sym_anonymous_function] = STATE(3964), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1509), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), [sym_alias] = ACTIONS(2233), [sym_integer] = ACTIONS(2233), [sym_float] = ACTIONS(2233), [sym_char] = ACTIONS(2233), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), [sym_atom] = ACTIONS(2233), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1517), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1517), - [anon_sym_not] = ACTIONS(1517), - [anon_sym_AT] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -114786,11803 +114424,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), + [anon_sym_fn] = ACTIONS(53), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1521), + [sym__before_unary_op] = ACTIONS(55), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), + [sym__quoted_atom_start] = ACTIONS(59), }, - [703] = { - [sym__expression] = STATE(3549), - [sym_block] = STATE(3549), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3549), - [sym_nil] = STATE(3549), - [sym__atom] = STATE(3549), - [sym_quoted_atom] = STATE(3549), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3549), - [sym_charlist] = STATE(3549), - [sym_sigil] = STATE(3549), - [sym_list] = STATE(3549), - [sym_tuple] = STATE(3549), - [sym_bitstring] = STATE(3549), - [sym_map] = STATE(3549), - [sym_unary_operator] = STATE(3549), - [sym_binary_operator] = STATE(3549), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3549), - [sym_call] = STATE(3549), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3549), - [sym_anonymous_function] = STATE(3549), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2235), - [sym_integer] = ACTIONS(2235), - [sym_float] = ACTIONS(2235), - [sym_char] = ACTIONS(2235), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2235), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [704] = { - [sym__expression] = STATE(3540), - [sym_block] = STATE(3540), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3540), - [sym_nil] = STATE(3540), - [sym__atom] = STATE(3540), - [sym_quoted_atom] = STATE(3540), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3540), - [sym_charlist] = STATE(3540), - [sym_sigil] = STATE(3540), - [sym_list] = STATE(3540), - [sym_tuple] = STATE(3540), - [sym_bitstring] = STATE(3540), - [sym_map] = STATE(3540), - [sym_unary_operator] = STATE(3540), - [sym_binary_operator] = STATE(3540), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3540), - [sym_call] = STATE(3540), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3540), - [sym_anonymous_function] = STATE(3540), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2237), - [sym_integer] = ACTIONS(2237), - [sym_float] = ACTIONS(2237), - [sym_char] = ACTIONS(2237), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2237), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [705] = { - [sym__expression] = STATE(1897), - [sym_block] = STATE(1897), - [sym__identifier] = STATE(34), - [sym_identifier] = STATE(34), - [sym_special_identifier] = STATE(34), - [sym_boolean] = STATE(1897), - [sym_nil] = STATE(1897), - [sym__atom] = STATE(1897), - [sym_quoted_atom] = STATE(1897), - [sym__quoted_i_double] = STATE(1866), - [sym__quoted_i_single] = STATE(1867), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(1897), - [sym_charlist] = STATE(1897), - [sym_sigil] = STATE(1897), - [sym_list] = STATE(1897), - [sym_tuple] = STATE(1897), - [sym_bitstring] = STATE(1897), - [sym_map] = STATE(1897), - [sym_unary_operator] = STATE(1897), - [sym_binary_operator] = STATE(1897), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(1897), - [sym_call] = STATE(1897), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(36), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(1897), - [sym_anonymous_function] = STATE(1897), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(361), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(1953), - [sym_integer] = ACTIONS(1953), - [sym_float] = ACTIONS(1953), - [sym_char] = ACTIONS(1953), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), - [sym_atom] = ACTIONS(1953), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(396), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(396), - [anon_sym_not] = ACTIONS(396), - [anon_sym_AT] = ACTIONS(398), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(404), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), - }, - [706] = { - [sym__expression] = STATE(1907), - [sym_block] = STATE(1907), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(1907), - [sym_nil] = STATE(1907), - [sym__atom] = STATE(1907), - [sym_quoted_atom] = STATE(1907), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(1907), - [sym_charlist] = STATE(1907), - [sym_sigil] = STATE(1907), - [sym_list] = STATE(1907), - [sym_tuple] = STATE(1907), - [sym_bitstring] = STATE(1907), - [sym_map] = STATE(1907), - [sym_unary_operator] = STATE(1907), - [sym_binary_operator] = STATE(1907), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(1907), - [sym_call] = STATE(1907), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [695] = { + [sym__expression] = STATE(2639), + [sym_block] = STATE(2639), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2639), + [sym_nil] = STATE(2639), + [sym__atom] = STATE(2639), + [sym_quoted_atom] = STATE(2639), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2639), + [sym_charlist] = STATE(2639), + [sym_sigil] = STATE(2639), + [sym_list] = STATE(2639), + [sym_tuple] = STATE(2639), + [sym_bitstring] = STATE(2639), + [sym_map] = STATE(2639), + [sym_unary_operator] = STATE(2639), + [sym_binary_operator] = STATE(2639), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2639), + [sym_call] = STATE(2639), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(1907), - [sym_anonymous_function] = STATE(1907), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(944), - [anon_sym___MODULE__] = ACTIONS(71), - [anon_sym___DIR__] = ACTIONS(71), - [anon_sym___ENV__] = ACTIONS(71), - [anon_sym___CALLER__] = ACTIONS(71), - [anon_sym___STACKTRACE__] = ACTIONS(71), - [sym_alias] = ACTIONS(2239), - [sym_integer] = ACTIONS(2239), - [sym_float] = ACTIONS(2239), - [sym_char] = ACTIONS(2239), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(2239), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(972), - [anon_sym_CARET] = ACTIONS(972), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), - [anon_sym_not] = ACTIONS(972), - [anon_sym_AT] = ACTIONS(974), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(980), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [707] = { - [sym__expression] = STATE(2559), - [sym_block] = STATE(2559), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(2559), - [sym_nil] = STATE(2559), - [sym__atom] = STATE(2559), - [sym_quoted_atom] = STATE(2559), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(2559), - [sym_charlist] = STATE(2559), - [sym_sigil] = STATE(2559), - [sym_list] = STATE(2559), - [sym_tuple] = STATE(2559), - [sym_bitstring] = STATE(2559), - [sym_map] = STATE(2559), - [sym_unary_operator] = STATE(2559), - [sym_binary_operator] = STATE(2559), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(2559), - [sym_call] = STATE(2559), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(2559), - [sym_anonymous_function] = STATE(2559), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2241), - [sym_integer] = ACTIONS(2241), - [sym_float] = ACTIONS(2241), - [sym_char] = ACTIONS(2241), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2241), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [708] = { - [sym__expression] = STATE(2560), - [sym_block] = STATE(2560), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(2560), - [sym_nil] = STATE(2560), - [sym__atom] = STATE(2560), - [sym_quoted_atom] = STATE(2560), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(2560), - [sym_charlist] = STATE(2560), - [sym_sigil] = STATE(2560), - [sym_list] = STATE(2560), - [sym_tuple] = STATE(2560), - [sym_bitstring] = STATE(2560), - [sym_map] = STATE(2560), - [sym_unary_operator] = STATE(2560), - [sym_binary_operator] = STATE(2560), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(2560), - [sym_call] = STATE(2560), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(2560), - [sym_anonymous_function] = STATE(2560), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2243), - [sym_integer] = ACTIONS(2243), - [sym_float] = ACTIONS(2243), - [sym_char] = ACTIONS(2243), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2243), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [709] = { - [sym__expression] = STATE(3456), - [sym_block] = STATE(3456), - [sym__identifier] = STATE(95), - [sym_identifier] = STATE(95), - [sym_special_identifier] = STATE(95), - [sym_boolean] = STATE(3456), - [sym_nil] = STATE(3456), - [sym__atom] = STATE(3456), - [sym_quoted_atom] = STATE(3456), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3456), - [sym_charlist] = STATE(3456), - [sym_sigil] = STATE(3456), - [sym_list] = STATE(3456), - [sym_tuple] = STATE(3456), - [sym_bitstring] = STATE(3456), - [sym_map] = STATE(3456), - [sym_unary_operator] = STATE(3456), - [sym_binary_operator] = STATE(3456), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3456), - [sym_call] = STATE(3456), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(65), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3456), - [sym_anonymous_function] = STATE(3456), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1509), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2245), - [sym_integer] = ACTIONS(2245), - [sym_float] = ACTIONS(2245), - [sym_char] = ACTIONS(2245), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2245), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1517), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1517), - [anon_sym_not] = ACTIONS(1517), - [anon_sym_AT] = ACTIONS(1519), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1521), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [710] = { - [sym__expression] = STATE(1896), - [sym_block] = STATE(1896), - [sym__identifier] = STATE(34), - [sym_identifier] = STATE(34), - [sym_special_identifier] = STATE(34), - [sym_boolean] = STATE(1896), - [sym_nil] = STATE(1896), - [sym__atom] = STATE(1896), - [sym_quoted_atom] = STATE(1896), - [sym__quoted_i_double] = STATE(1866), - [sym__quoted_i_single] = STATE(1867), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(1896), - [sym_charlist] = STATE(1896), - [sym_sigil] = STATE(1896), - [sym_list] = STATE(1896), - [sym_tuple] = STATE(1896), - [sym_bitstring] = STATE(1896), - [sym_map] = STATE(1896), - [sym_unary_operator] = STATE(1896), - [sym_binary_operator] = STATE(1896), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(1896), - [sym_call] = STATE(1896), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(36), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(1896), - [sym_anonymous_function] = STATE(1896), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(361), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(1921), - [sym_integer] = ACTIONS(1921), - [sym_float] = ACTIONS(1921), - [sym_char] = ACTIONS(1921), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), - [sym_atom] = ACTIONS(1921), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(396), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(396), - [anon_sym_not] = ACTIONS(396), - [anon_sym_AT] = ACTIONS(398), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(404), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), - }, - [711] = { - [sym__expression] = STATE(1566), - [sym_block] = STATE(1566), - [sym__identifier] = STATE(14), - [sym_identifier] = STATE(14), - [sym_special_identifier] = STATE(14), - [sym_boolean] = STATE(1566), - [sym_nil] = STATE(1566), - [sym__atom] = STATE(1566), - [sym_quoted_atom] = STATE(1566), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(1566), - [sym_charlist] = STATE(1566), - [sym_sigil] = STATE(1566), - [sym_list] = STATE(1566), - [sym_tuple] = STATE(1566), - [sym_bitstring] = STATE(1566), - [sym_map] = STATE(1566), - [sym_unary_operator] = STATE(1566), - [sym_binary_operator] = STATE(1566), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(1566), - [sym_call] = STATE(1566), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(1566), - [sym_anonymous_function] = STATE(1566), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(197), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), - [sym_alias] = ACTIONS(2247), - [sym_integer] = ACTIONS(2247), - [sym_float] = ACTIONS(2247), - [sym_char] = ACTIONS(2247), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(222), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(230), - [anon_sym_PLUS] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_CARET] = ACTIONS(235), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(235), - [anon_sym_not] = ACTIONS(235), - [anon_sym_AT] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(243), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [712] = { - [sym__expression] = STATE(3458), - [sym_block] = STATE(3458), - [sym__identifier] = STATE(95), - [sym_identifier] = STATE(95), - [sym_special_identifier] = STATE(95), - [sym_boolean] = STATE(3458), - [sym_nil] = STATE(3458), - [sym__atom] = STATE(3458), - [sym_quoted_atom] = STATE(3458), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3458), - [sym_charlist] = STATE(3458), - [sym_sigil] = STATE(3458), - [sym_list] = STATE(3458), - [sym_tuple] = STATE(3458), - [sym_bitstring] = STATE(3458), - [sym_map] = STATE(3458), - [sym_unary_operator] = STATE(3458), - [sym_binary_operator] = STATE(3458), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3458), - [sym_call] = STATE(3458), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(65), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3458), - [sym_anonymous_function] = STATE(3458), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1509), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2249), - [sym_integer] = ACTIONS(2249), - [sym_float] = ACTIONS(2249), - [sym_char] = ACTIONS(2249), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2249), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1517), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1517), - [anon_sym_not] = ACTIONS(1517), - [anon_sym_AT] = ACTIONS(1519), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1521), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [713] = { - [sym__expression] = STATE(3459), - [sym_block] = STATE(3459), - [sym__identifier] = STATE(95), - [sym_identifier] = STATE(95), - [sym_special_identifier] = STATE(95), - [sym_boolean] = STATE(3459), - [sym_nil] = STATE(3459), - [sym__atom] = STATE(3459), - [sym_quoted_atom] = STATE(3459), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3459), - [sym_charlist] = STATE(3459), - [sym_sigil] = STATE(3459), - [sym_list] = STATE(3459), - [sym_tuple] = STATE(3459), - [sym_bitstring] = STATE(3459), - [sym_map] = STATE(3459), - [sym_unary_operator] = STATE(3459), - [sym_binary_operator] = STATE(3459), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3459), - [sym_call] = STATE(3459), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(65), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3459), - [sym_anonymous_function] = STATE(3459), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1509), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2251), - [sym_integer] = ACTIONS(2251), - [sym_float] = ACTIONS(2251), - [sym_char] = ACTIONS(2251), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2251), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1517), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1517), - [anon_sym_not] = ACTIONS(1517), - [anon_sym_AT] = ACTIONS(1519), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1521), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [714] = { - [sym__expression] = STATE(2566), - [sym_block] = STATE(2566), - [sym__identifier] = STATE(95), - [sym_identifier] = STATE(95), - [sym_special_identifier] = STATE(95), - [sym_boolean] = STATE(2566), - [sym_nil] = STATE(2566), - [sym__atom] = STATE(2566), - [sym_quoted_atom] = STATE(2566), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(2566), - [sym_charlist] = STATE(2566), - [sym_sigil] = STATE(2566), - [sym_list] = STATE(2566), - [sym_tuple] = STATE(2566), - [sym_bitstring] = STATE(2566), - [sym_map] = STATE(2566), - [sym_unary_operator] = STATE(2566), - [sym_binary_operator] = STATE(2566), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(2566), - [sym_call] = STATE(2566), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(65), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(2566), - [sym_anonymous_function] = STATE(2566), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1509), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2253), - [sym_integer] = ACTIONS(2253), - [sym_float] = ACTIONS(2253), - [sym_char] = ACTIONS(2253), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2253), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1517), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1517), - [anon_sym_not] = ACTIONS(1517), - [anon_sym_AT] = ACTIONS(1519), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1521), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [715] = { - [sym__expression] = STATE(2565), - [sym_block] = STATE(2565), - [sym__identifier] = STATE(95), - [sym_identifier] = STATE(95), - [sym_special_identifier] = STATE(95), - [sym_boolean] = STATE(2565), - [sym_nil] = STATE(2565), - [sym__atom] = STATE(2565), - [sym_quoted_atom] = STATE(2565), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(2565), - [sym_charlist] = STATE(2565), - [sym_sigil] = STATE(2565), - [sym_list] = STATE(2565), - [sym_tuple] = STATE(2565), - [sym_bitstring] = STATE(2565), - [sym_map] = STATE(2565), - [sym_unary_operator] = STATE(2565), - [sym_binary_operator] = STATE(2565), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(2565), - [sym_call] = STATE(2565), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(65), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(2565), - [sym_anonymous_function] = STATE(2565), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1509), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2255), - [sym_integer] = ACTIONS(2255), - [sym_float] = ACTIONS(2255), - [sym_char] = ACTIONS(2255), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2255), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1517), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1517), - [anon_sym_not] = ACTIONS(1517), - [anon_sym_AT] = ACTIONS(1519), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1521), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [716] = { - [sym__expression] = STATE(3532), - [sym_block] = STATE(3532), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3532), - [sym_nil] = STATE(3532), - [sym__atom] = STATE(3532), - [sym_quoted_atom] = STATE(3532), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3532), - [sym_charlist] = STATE(3532), - [sym_sigil] = STATE(3532), - [sym_list] = STATE(3532), - [sym_tuple] = STATE(3532), - [sym_bitstring] = STATE(3532), - [sym_map] = STATE(3532), - [sym_unary_operator] = STATE(3532), - [sym_binary_operator] = STATE(3532), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3532), - [sym_call] = STATE(3532), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3532), - [sym_anonymous_function] = STATE(3532), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2257), - [sym_integer] = ACTIONS(2257), - [sym_float] = ACTIONS(2257), - [sym_char] = ACTIONS(2257), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2257), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [717] = { - [sym__expression] = STATE(3535), - [sym_block] = STATE(3535), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3535), - [sym_nil] = STATE(3535), - [sym__atom] = STATE(3535), - [sym_quoted_atom] = STATE(3535), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3535), - [sym_charlist] = STATE(3535), - [sym_sigil] = STATE(3535), - [sym_list] = STATE(3535), - [sym_tuple] = STATE(3535), - [sym_bitstring] = STATE(3535), - [sym_map] = STATE(3535), - [sym_unary_operator] = STATE(3535), - [sym_binary_operator] = STATE(3535), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3535), - [sym_call] = STATE(3535), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3535), - [sym_anonymous_function] = STATE(3535), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2259), - [sym_integer] = ACTIONS(2259), - [sym_float] = ACTIONS(2259), - [sym_char] = ACTIONS(2259), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2259), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [718] = { - [sym__expression] = STATE(3541), - [sym_block] = STATE(3541), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3541), - [sym_nil] = STATE(3541), - [sym__atom] = STATE(3541), - [sym_quoted_atom] = STATE(3541), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3541), - [sym_charlist] = STATE(3541), - [sym_sigil] = STATE(3541), - [sym_list] = STATE(3541), - [sym_tuple] = STATE(3541), - [sym_bitstring] = STATE(3541), - [sym_map] = STATE(3541), - [sym_unary_operator] = STATE(3541), - [sym_binary_operator] = STATE(3541), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3541), - [sym_call] = STATE(3541), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3541), - [sym_anonymous_function] = STATE(3541), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2261), - [sym_integer] = ACTIONS(2261), - [sym_float] = ACTIONS(2261), - [sym_char] = ACTIONS(2261), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2261), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [719] = { - [sym__expression] = STATE(2560), - [sym_block] = STATE(2560), - [sym__identifier] = STATE(95), - [sym_identifier] = STATE(95), - [sym_special_identifier] = STATE(95), - [sym_boolean] = STATE(2560), - [sym_nil] = STATE(2560), - [sym__atom] = STATE(2560), - [sym_quoted_atom] = STATE(2560), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(2560), - [sym_charlist] = STATE(2560), - [sym_sigil] = STATE(2560), - [sym_list] = STATE(2560), - [sym_tuple] = STATE(2560), - [sym_bitstring] = STATE(2560), - [sym_map] = STATE(2560), - [sym_unary_operator] = STATE(2560), - [sym_binary_operator] = STATE(2560), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(2560), - [sym_call] = STATE(2560), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(65), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(2560), - [sym_anonymous_function] = STATE(2560), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1509), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2243), - [sym_integer] = ACTIONS(2243), - [sym_float] = ACTIONS(2243), - [sym_char] = ACTIONS(2243), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2243), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1517), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1517), - [anon_sym_not] = ACTIONS(1517), - [anon_sym_AT] = ACTIONS(1519), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1521), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [720] = { - [sym__expression] = STATE(1560), - [sym_block] = STATE(1560), - [sym__identifier] = STATE(14), - [sym_identifier] = STATE(14), - [sym_special_identifier] = STATE(14), - [sym_boolean] = STATE(1560), - [sym_nil] = STATE(1560), - [sym__atom] = STATE(1560), - [sym_quoted_atom] = STATE(1560), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(1560), - [sym_charlist] = STATE(1560), - [sym_sigil] = STATE(1560), - [sym_list] = STATE(1560), - [sym_tuple] = STATE(1560), - [sym_bitstring] = STATE(1560), - [sym_map] = STATE(1560), - [sym_unary_operator] = STATE(1560), - [sym_binary_operator] = STATE(1560), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(1560), - [sym_call] = STATE(1560), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(1560), - [sym_anonymous_function] = STATE(1560), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(197), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), - [sym_alias] = ACTIONS(2263), - [sym_integer] = ACTIONS(2263), - [sym_float] = ACTIONS(2263), - [sym_char] = ACTIONS(2263), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(2263), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(222), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(230), - [anon_sym_PLUS] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_CARET] = ACTIONS(235), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(235), - [anon_sym_not] = ACTIONS(235), - [anon_sym_AT] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(243), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [721] = { - [sym__expression] = STATE(3534), - [sym_block] = STATE(3534), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3534), - [sym_nil] = STATE(3534), - [sym__atom] = STATE(3534), - [sym_quoted_atom] = STATE(3534), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3534), - [sym_charlist] = STATE(3534), - [sym_sigil] = STATE(3534), - [sym_list] = STATE(3534), - [sym_tuple] = STATE(3534), - [sym_bitstring] = STATE(3534), - [sym_map] = STATE(3534), - [sym_unary_operator] = STATE(3534), - [sym_binary_operator] = STATE(3534), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3534), - [sym_call] = STATE(3534), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3534), - [sym_anonymous_function] = STATE(3534), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2265), - [sym_integer] = ACTIONS(2265), - [sym_float] = ACTIONS(2265), - [sym_char] = ACTIONS(2265), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2265), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [722] = { - [sym__expression] = STATE(3545), - [sym_block] = STATE(3545), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3545), - [sym_nil] = STATE(3545), - [sym__atom] = STATE(3545), - [sym_quoted_atom] = STATE(3545), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3545), - [sym_charlist] = STATE(3545), - [sym_sigil] = STATE(3545), - [sym_list] = STATE(3545), - [sym_tuple] = STATE(3545), - [sym_bitstring] = STATE(3545), - [sym_map] = STATE(3545), - [sym_unary_operator] = STATE(3545), - [sym_binary_operator] = STATE(3545), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3545), - [sym_call] = STATE(3545), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3545), - [sym_anonymous_function] = STATE(3545), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2267), - [sym_integer] = ACTIONS(2267), - [sym_float] = ACTIONS(2267), - [sym_char] = ACTIONS(2267), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2267), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [723] = { - [sym__expression] = STATE(2559), - [sym_block] = STATE(2559), - [sym__identifier] = STATE(95), - [sym_identifier] = STATE(95), - [sym_special_identifier] = STATE(95), - [sym_boolean] = STATE(2559), - [sym_nil] = STATE(2559), - [sym__atom] = STATE(2559), - [sym_quoted_atom] = STATE(2559), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(2559), - [sym_charlist] = STATE(2559), - [sym_sigil] = STATE(2559), - [sym_list] = STATE(2559), - [sym_tuple] = STATE(2559), - [sym_bitstring] = STATE(2559), - [sym_map] = STATE(2559), - [sym_unary_operator] = STATE(2559), - [sym_binary_operator] = STATE(2559), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(2559), - [sym_call] = STATE(2559), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(65), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(2559), - [sym_anonymous_function] = STATE(2559), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1509), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2241), - [sym_integer] = ACTIONS(2241), - [sym_float] = ACTIONS(2241), - [sym_char] = ACTIONS(2241), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2241), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1517), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1517), - [anon_sym_not] = ACTIONS(1517), - [anon_sym_AT] = ACTIONS(1519), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1521), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [724] = { - [sym__expression] = STATE(2565), - [sym_block] = STATE(2565), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(2565), - [sym_nil] = STATE(2565), - [sym__atom] = STATE(2565), - [sym_quoted_atom] = STATE(2565), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(2565), - [sym_charlist] = STATE(2565), - [sym_sigil] = STATE(2565), - [sym_list] = STATE(2565), - [sym_tuple] = STATE(2565), - [sym_bitstring] = STATE(2565), - [sym_map] = STATE(2565), - [sym_unary_operator] = STATE(2565), - [sym_binary_operator] = STATE(2565), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(2565), - [sym_call] = STATE(2565), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(2565), - [sym_anonymous_function] = STATE(2565), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2255), - [sym_integer] = ACTIONS(2255), - [sym_float] = ACTIONS(2255), - [sym_char] = ACTIONS(2255), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2255), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [725] = { - [sym__expression] = STATE(2566), - [sym_block] = STATE(2566), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(2566), - [sym_nil] = STATE(2566), - [sym__atom] = STATE(2566), - [sym_quoted_atom] = STATE(2566), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(2566), - [sym_charlist] = STATE(2566), - [sym_sigil] = STATE(2566), - [sym_list] = STATE(2566), - [sym_tuple] = STATE(2566), - [sym_bitstring] = STATE(2566), - [sym_map] = STATE(2566), - [sym_unary_operator] = STATE(2566), - [sym_binary_operator] = STATE(2566), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(2566), - [sym_call] = STATE(2566), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(2566), - [sym_anonymous_function] = STATE(2566), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2253), - [sym_integer] = ACTIONS(2253), - [sym_float] = ACTIONS(2253), - [sym_char] = ACTIONS(2253), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2253), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [726] = { - [sym__expression] = STATE(2742), - [sym_block] = STATE(2742), - [sym__identifier] = STATE(45), - [sym_identifier] = STATE(45), - [sym_special_identifier] = STATE(45), - [sym_boolean] = STATE(2742), - [sym_nil] = STATE(2742), - [sym__atom] = STATE(2742), - [sym_quoted_atom] = STATE(2742), - [sym__quoted_i_double] = STATE(2714), - [sym__quoted_i_single] = STATE(2713), - [sym__quoted_i_heredoc_single] = STATE(2713), - [sym__quoted_i_heredoc_double] = STATE(2714), - [sym_string] = STATE(2742), - [sym_charlist] = STATE(2742), - [sym_sigil] = STATE(2742), - [sym_list] = STATE(2742), - [sym_tuple] = STATE(2742), - [sym_bitstring] = STATE(2742), - [sym_map] = STATE(2742), - [sym_unary_operator] = STATE(2742), - [sym_binary_operator] = STATE(2742), - [sym_operator_identifier] = STATE(4988), - [sym_dot] = STATE(2742), - [sym_call] = STATE(2742), - [sym__call_without_parentheses] = STATE(2712), - [sym__call_with_parentheses] = STATE(2711), - [sym__local_call_without_parentheses] = STATE(2710), - [sym__local_call_with_parentheses] = STATE(1879), - [sym__local_call_just_do_block] = STATE(2709), - [sym__remote_call_without_parentheses] = STATE(2708), - [sym__remote_call_with_parentheses] = STATE(1859), - [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1919), - [sym__anonymous_dot] = STATE(4871), - [sym__double_call] = STATE(2707), - [sym_access_call] = STATE(2742), - [sym_anonymous_function] = STATE(2742), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(479), - [aux_sym_identifier_token1] = ACTIONS(481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(481), - [sym_unused_identifier] = ACTIONS(483), - [anon_sym___MODULE__] = ACTIONS(485), - [anon_sym___DIR__] = ACTIONS(485), - [anon_sym___ENV__] = ACTIONS(485), - [anon_sym___CALLER__] = ACTIONS(485), - [anon_sym___STACKTRACE__] = ACTIONS(485), - [sym_alias] = ACTIONS(2269), - [sym_integer] = ACTIONS(2269), - [sym_float] = ACTIONS(2269), - [sym_char] = ACTIONS(2269), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_nil] = ACTIONS(491), - [sym_atom] = ACTIONS(2269), - [anon_sym_DQUOTE] = ACTIONS(493), - [anon_sym_SQUOTE] = ACTIONS(495), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(497), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(499), - [anon_sym_LBRACE] = ACTIONS(501), - [anon_sym_LBRACK] = ACTIONS(503), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(505), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(515), - [anon_sym_CARET] = ACTIONS(515), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(515), - [anon_sym_not] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(517), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(519), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(523), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(525), - }, - [727] = { - [sym__expression] = STATE(3533), - [sym_block] = STATE(3533), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3533), - [sym_nil] = STATE(3533), - [sym__atom] = STATE(3533), - [sym_quoted_atom] = STATE(3533), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3533), - [sym_charlist] = STATE(3533), - [sym_sigil] = STATE(3533), - [sym_list] = STATE(3533), - [sym_tuple] = STATE(3533), - [sym_bitstring] = STATE(3533), - [sym_map] = STATE(3533), - [sym_unary_operator] = STATE(3533), - [sym_binary_operator] = STATE(3533), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3533), - [sym_call] = STATE(3533), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3533), - [sym_anonymous_function] = STATE(3533), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2271), - [sym_integer] = ACTIONS(2271), - [sym_float] = ACTIONS(2271), - [sym_char] = ACTIONS(2271), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2271), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [728] = { - [sym__expression] = STATE(3536), - [sym_block] = STATE(3536), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3536), - [sym_nil] = STATE(3536), - [sym__atom] = STATE(3536), - [sym_quoted_atom] = STATE(3536), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3536), - [sym_charlist] = STATE(3536), - [sym_sigil] = STATE(3536), - [sym_list] = STATE(3536), - [sym_tuple] = STATE(3536), - [sym_bitstring] = STATE(3536), - [sym_map] = STATE(3536), - [sym_unary_operator] = STATE(3536), - [sym_binary_operator] = STATE(3536), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3536), - [sym_call] = STATE(3536), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3536), - [sym_anonymous_function] = STATE(3536), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2273), - [sym_integer] = ACTIONS(2273), - [sym_float] = ACTIONS(2273), - [sym_char] = ACTIONS(2273), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2273), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [729] = { - [sym__expression] = STATE(3538), - [sym_block] = STATE(3538), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3538), - [sym_nil] = STATE(3538), - [sym__atom] = STATE(3538), - [sym_quoted_atom] = STATE(3538), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3538), - [sym_charlist] = STATE(3538), - [sym_sigil] = STATE(3538), - [sym_list] = STATE(3538), - [sym_tuple] = STATE(3538), - [sym_bitstring] = STATE(3538), - [sym_map] = STATE(3538), - [sym_unary_operator] = STATE(3538), - [sym_binary_operator] = STATE(3538), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3538), - [sym_call] = STATE(3538), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3538), - [sym_anonymous_function] = STATE(3538), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2275), - [sym_integer] = ACTIONS(2275), - [sym_float] = ACTIONS(2275), - [sym_char] = ACTIONS(2275), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2275), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [730] = { - [sym__expression] = STATE(3542), - [sym_block] = STATE(3542), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3542), - [sym_nil] = STATE(3542), - [sym__atom] = STATE(3542), - [sym_quoted_atom] = STATE(3542), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3542), - [sym_charlist] = STATE(3542), - [sym_sigil] = STATE(3542), - [sym_list] = STATE(3542), - [sym_tuple] = STATE(3542), - [sym_bitstring] = STATE(3542), - [sym_map] = STATE(3542), - [sym_unary_operator] = STATE(3542), - [sym_binary_operator] = STATE(3542), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3542), - [sym_call] = STATE(3542), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3542), - [sym_anonymous_function] = STATE(3542), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2277), - [sym_integer] = ACTIONS(2277), - [sym_float] = ACTIONS(2277), - [sym_char] = ACTIONS(2277), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2277), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [731] = { - [sym__expression] = STATE(3546), - [sym_block] = STATE(3546), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3546), - [sym_nil] = STATE(3546), - [sym__atom] = STATE(3546), - [sym_quoted_atom] = STATE(3546), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3546), - [sym_charlist] = STATE(3546), - [sym_sigil] = STATE(3546), - [sym_list] = STATE(3546), - [sym_tuple] = STATE(3546), - [sym_bitstring] = STATE(3546), - [sym_map] = STATE(3546), - [sym_unary_operator] = STATE(3546), - [sym_binary_operator] = STATE(3546), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3546), - [sym_call] = STATE(3546), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3546), - [sym_anonymous_function] = STATE(3546), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2279), - [sym_integer] = ACTIONS(2279), - [sym_float] = ACTIONS(2279), - [sym_char] = ACTIONS(2279), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2279), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [732] = { - [sym__expression] = STATE(3529), - [sym_block] = STATE(3529), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3529), - [sym_nil] = STATE(3529), - [sym__atom] = STATE(3529), - [sym_quoted_atom] = STATE(3529), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3529), - [sym_charlist] = STATE(3529), - [sym_sigil] = STATE(3529), - [sym_list] = STATE(3529), - [sym_tuple] = STATE(3529), - [sym_bitstring] = STATE(3529), - [sym_map] = STATE(3529), - [sym_unary_operator] = STATE(3529), - [sym_binary_operator] = STATE(3529), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3529), - [sym_call] = STATE(3529), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3529), - [sym_anonymous_function] = STATE(3529), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2281), - [sym_integer] = ACTIONS(2281), - [sym_float] = ACTIONS(2281), - [sym_char] = ACTIONS(2281), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2281), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [733] = { - [sym__expression] = STATE(3369), - [sym_block] = STATE(3369), - [sym__identifier] = STATE(57), - [sym_identifier] = STATE(57), - [sym_special_identifier] = STATE(57), - [sym_boolean] = STATE(3369), - [sym_nil] = STATE(3369), - [sym__atom] = STATE(3369), - [sym_quoted_atom] = STATE(3369), - [sym__quoted_i_double] = STATE(3146), - [sym__quoted_i_single] = STATE(3147), - [sym__quoted_i_heredoc_single] = STATE(3147), - [sym__quoted_i_heredoc_double] = STATE(3146), - [sym_string] = STATE(3369), - [sym_charlist] = STATE(3369), - [sym_sigil] = STATE(3369), - [sym_list] = STATE(3369), - [sym_tuple] = STATE(3369), - [sym_bitstring] = STATE(3369), - [sym_map] = STATE(3369), - [sym_unary_operator] = STATE(3369), - [sym_binary_operator] = STATE(3369), - [sym_operator_identifier] = STATE(5049), - [sym_dot] = STATE(3369), - [sym_call] = STATE(3369), - [sym__call_without_parentheses] = STATE(3175), - [sym__call_with_parentheses] = STATE(3177), - [sym__local_call_without_parentheses] = STATE(3178), - [sym__local_call_with_parentheses] = STATE(2550), - [sym__local_call_just_do_block] = STATE(3183), - [sym__remote_call_without_parentheses] = STATE(3200), - [sym__remote_call_with_parentheses] = STATE(2583), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(2582), - [sym__anonymous_dot] = STATE(4866), - [sym__double_call] = STATE(3202), - [sym_access_call] = STATE(3369), - [sym_anonymous_function] = STATE(3369), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(15), - [sym_unused_identifier] = ACTIONS(17), - [anon_sym___MODULE__] = ACTIONS(19), - [anon_sym___DIR__] = ACTIONS(19), - [anon_sym___ENV__] = ACTIONS(19), - [anon_sym___CALLER__] = ACTIONS(19), - [anon_sym___STACKTRACE__] = ACTIONS(19), - [sym_alias] = ACTIONS(2283), - [sym_integer] = ACTIONS(2283), - [sym_float] = ACTIONS(2283), - [sym_char] = ACTIONS(2283), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_nil] = ACTIONS(25), - [sym_atom] = ACTIONS(2283), - [anon_sym_DQUOTE] = ACTIONS(27), - [anon_sym_SQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(41), - [anon_sym_LT_LT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(45), - [anon_sym_AMP] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(49), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_CARET] = ACTIONS(49), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), - [anon_sym_not] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(51), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(53), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(55), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(59), - }, - [734] = { - [sym__expression] = STATE(3368), - [sym_block] = STATE(3368), - [sym__identifier] = STATE(57), - [sym_identifier] = STATE(57), - [sym_special_identifier] = STATE(57), - [sym_boolean] = STATE(3368), - [sym_nil] = STATE(3368), - [sym__atom] = STATE(3368), - [sym_quoted_atom] = STATE(3368), - [sym__quoted_i_double] = STATE(3146), - [sym__quoted_i_single] = STATE(3147), - [sym__quoted_i_heredoc_single] = STATE(3147), - [sym__quoted_i_heredoc_double] = STATE(3146), - [sym_string] = STATE(3368), - [sym_charlist] = STATE(3368), - [sym_sigil] = STATE(3368), - [sym_list] = STATE(3368), - [sym_tuple] = STATE(3368), - [sym_bitstring] = STATE(3368), - [sym_map] = STATE(3368), - [sym_unary_operator] = STATE(3368), - [sym_binary_operator] = STATE(3368), - [sym_operator_identifier] = STATE(5049), - [sym_dot] = STATE(3368), - [sym_call] = STATE(3368), - [sym__call_without_parentheses] = STATE(3175), - [sym__call_with_parentheses] = STATE(3177), - [sym__local_call_without_parentheses] = STATE(3178), - [sym__local_call_with_parentheses] = STATE(2550), - [sym__local_call_just_do_block] = STATE(3183), - [sym__remote_call_without_parentheses] = STATE(3200), - [sym__remote_call_with_parentheses] = STATE(2583), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(2582), - [sym__anonymous_dot] = STATE(4866), - [sym__double_call] = STATE(3202), - [sym_access_call] = STATE(3368), - [sym_anonymous_function] = STATE(3368), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(15), - [sym_unused_identifier] = ACTIONS(17), - [anon_sym___MODULE__] = ACTIONS(19), - [anon_sym___DIR__] = ACTIONS(19), - [anon_sym___ENV__] = ACTIONS(19), - [anon_sym___CALLER__] = ACTIONS(19), - [anon_sym___STACKTRACE__] = ACTIONS(19), - [sym_alias] = ACTIONS(2285), - [sym_integer] = ACTIONS(2285), - [sym_float] = ACTIONS(2285), - [sym_char] = ACTIONS(2285), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_nil] = ACTIONS(25), - [sym_atom] = ACTIONS(2285), - [anon_sym_DQUOTE] = ACTIONS(27), - [anon_sym_SQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(41), - [anon_sym_LT_LT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(45), - [anon_sym_AMP] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(49), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_CARET] = ACTIONS(49), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), - [anon_sym_not] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(51), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(53), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(55), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(59), - }, - [735] = { - [sym__expression] = STATE(3361), - [sym_block] = STATE(3361), - [sym__identifier] = STATE(57), - [sym_identifier] = STATE(57), - [sym_special_identifier] = STATE(57), - [sym_boolean] = STATE(3361), - [sym_nil] = STATE(3361), - [sym__atom] = STATE(3361), - [sym_quoted_atom] = STATE(3361), - [sym__quoted_i_double] = STATE(3146), - [sym__quoted_i_single] = STATE(3147), - [sym__quoted_i_heredoc_single] = STATE(3147), - [sym__quoted_i_heredoc_double] = STATE(3146), - [sym_string] = STATE(3361), - [sym_charlist] = STATE(3361), - [sym_sigil] = STATE(3361), - [sym_list] = STATE(3361), - [sym_tuple] = STATE(3361), - [sym_bitstring] = STATE(3361), - [sym_map] = STATE(3361), - [sym_unary_operator] = STATE(3361), - [sym_binary_operator] = STATE(3361), - [sym_operator_identifier] = STATE(5049), - [sym_dot] = STATE(3361), - [sym_call] = STATE(3361), - [sym__call_without_parentheses] = STATE(3175), - [sym__call_with_parentheses] = STATE(3177), - [sym__local_call_without_parentheses] = STATE(3178), - [sym__local_call_with_parentheses] = STATE(2550), - [sym__local_call_just_do_block] = STATE(3183), - [sym__remote_call_without_parentheses] = STATE(3200), - [sym__remote_call_with_parentheses] = STATE(2583), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(2582), - [sym__anonymous_dot] = STATE(4866), - [sym__double_call] = STATE(3202), - [sym_access_call] = STATE(3361), - [sym_anonymous_function] = STATE(3361), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(15), - [sym_unused_identifier] = ACTIONS(17), - [anon_sym___MODULE__] = ACTIONS(19), - [anon_sym___DIR__] = ACTIONS(19), - [anon_sym___ENV__] = ACTIONS(19), - [anon_sym___CALLER__] = ACTIONS(19), - [anon_sym___STACKTRACE__] = ACTIONS(19), - [sym_alias] = ACTIONS(2287), - [sym_integer] = ACTIONS(2287), - [sym_float] = ACTIONS(2287), - [sym_char] = ACTIONS(2287), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_nil] = ACTIONS(25), - [sym_atom] = ACTIONS(2287), - [anon_sym_DQUOTE] = ACTIONS(27), - [anon_sym_SQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(41), - [anon_sym_LT_LT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(45), - [anon_sym_AMP] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(49), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_CARET] = ACTIONS(49), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), - [anon_sym_not] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(51), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(53), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(55), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(59), - }, - [736] = { - [sym__expression] = STATE(3360), - [sym_block] = STATE(3360), - [sym__identifier] = STATE(57), - [sym_identifier] = STATE(57), - [sym_special_identifier] = STATE(57), - [sym_boolean] = STATE(3360), - [sym_nil] = STATE(3360), - [sym__atom] = STATE(3360), - [sym_quoted_atom] = STATE(3360), - [sym__quoted_i_double] = STATE(3146), - [sym__quoted_i_single] = STATE(3147), - [sym__quoted_i_heredoc_single] = STATE(3147), - [sym__quoted_i_heredoc_double] = STATE(3146), - [sym_string] = STATE(3360), - [sym_charlist] = STATE(3360), - [sym_sigil] = STATE(3360), - [sym_list] = STATE(3360), - [sym_tuple] = STATE(3360), - [sym_bitstring] = STATE(3360), - [sym_map] = STATE(3360), - [sym_unary_operator] = STATE(3360), - [sym_binary_operator] = STATE(3360), - [sym_operator_identifier] = STATE(5049), - [sym_dot] = STATE(3360), - [sym_call] = STATE(3360), - [sym__call_without_parentheses] = STATE(3175), - [sym__call_with_parentheses] = STATE(3177), - [sym__local_call_without_parentheses] = STATE(3178), - [sym__local_call_with_parentheses] = STATE(2550), - [sym__local_call_just_do_block] = STATE(3183), - [sym__remote_call_without_parentheses] = STATE(3200), - [sym__remote_call_with_parentheses] = STATE(2583), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(2582), - [sym__anonymous_dot] = STATE(4866), - [sym__double_call] = STATE(3202), - [sym_access_call] = STATE(3360), - [sym_anonymous_function] = STATE(3360), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(15), - [sym_unused_identifier] = ACTIONS(17), - [anon_sym___MODULE__] = ACTIONS(19), - [anon_sym___DIR__] = ACTIONS(19), - [anon_sym___ENV__] = ACTIONS(19), - [anon_sym___CALLER__] = ACTIONS(19), - [anon_sym___STACKTRACE__] = ACTIONS(19), - [sym_alias] = ACTIONS(2289), - [sym_integer] = ACTIONS(2289), - [sym_float] = ACTIONS(2289), - [sym_char] = ACTIONS(2289), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_nil] = ACTIONS(25), - [sym_atom] = ACTIONS(2289), - [anon_sym_DQUOTE] = ACTIONS(27), - [anon_sym_SQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(41), - [anon_sym_LT_LT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(45), - [anon_sym_AMP] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(49), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_CARET] = ACTIONS(49), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), - [anon_sym_not] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(51), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(53), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(55), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(59), - }, - [737] = { - [sym__expression] = STATE(3359), - [sym_block] = STATE(3359), - [sym__identifier] = STATE(57), - [sym_identifier] = STATE(57), - [sym_special_identifier] = STATE(57), - [sym_boolean] = STATE(3359), - [sym_nil] = STATE(3359), - [sym__atom] = STATE(3359), - [sym_quoted_atom] = STATE(3359), - [sym__quoted_i_double] = STATE(3146), - [sym__quoted_i_single] = STATE(3147), - [sym__quoted_i_heredoc_single] = STATE(3147), - [sym__quoted_i_heredoc_double] = STATE(3146), - [sym_string] = STATE(3359), - [sym_charlist] = STATE(3359), - [sym_sigil] = STATE(3359), - [sym_list] = STATE(3359), - [sym_tuple] = STATE(3359), - [sym_bitstring] = STATE(3359), - [sym_map] = STATE(3359), - [sym_unary_operator] = STATE(3359), - [sym_binary_operator] = STATE(3359), - [sym_operator_identifier] = STATE(5049), - [sym_dot] = STATE(3359), - [sym_call] = STATE(3359), - [sym__call_without_parentheses] = STATE(3175), - [sym__call_with_parentheses] = STATE(3177), - [sym__local_call_without_parentheses] = STATE(3178), - [sym__local_call_with_parentheses] = STATE(2550), - [sym__local_call_just_do_block] = STATE(3183), - [sym__remote_call_without_parentheses] = STATE(3200), - [sym__remote_call_with_parentheses] = STATE(2583), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(2582), - [sym__anonymous_dot] = STATE(4866), - [sym__double_call] = STATE(3202), - [sym_access_call] = STATE(3359), - [sym_anonymous_function] = STATE(3359), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(15), - [sym_unused_identifier] = ACTIONS(17), - [anon_sym___MODULE__] = ACTIONS(19), - [anon_sym___DIR__] = ACTIONS(19), - [anon_sym___ENV__] = ACTIONS(19), - [anon_sym___CALLER__] = ACTIONS(19), - [anon_sym___STACKTRACE__] = ACTIONS(19), - [sym_alias] = ACTIONS(2291), - [sym_integer] = ACTIONS(2291), - [sym_float] = ACTIONS(2291), - [sym_char] = ACTIONS(2291), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_nil] = ACTIONS(25), - [sym_atom] = ACTIONS(2291), - [anon_sym_DQUOTE] = ACTIONS(27), - [anon_sym_SQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(41), - [anon_sym_LT_LT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(45), - [anon_sym_AMP] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(49), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_CARET] = ACTIONS(49), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), - [anon_sym_not] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(51), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(53), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(55), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(59), - }, - [738] = { - [sym__expression] = STATE(3322), - [sym_block] = STATE(3322), - [sym__identifier] = STATE(57), - [sym_identifier] = STATE(57), - [sym_special_identifier] = STATE(57), - [sym_boolean] = STATE(3322), - [sym_nil] = STATE(3322), - [sym__atom] = STATE(3322), - [sym_quoted_atom] = STATE(3322), - [sym__quoted_i_double] = STATE(3146), - [sym__quoted_i_single] = STATE(3147), - [sym__quoted_i_heredoc_single] = STATE(3147), - [sym__quoted_i_heredoc_double] = STATE(3146), - [sym_string] = STATE(3322), - [sym_charlist] = STATE(3322), - [sym_sigil] = STATE(3322), - [sym_list] = STATE(3322), - [sym_tuple] = STATE(3322), - [sym_bitstring] = STATE(3322), - [sym_map] = STATE(3322), - [sym_unary_operator] = STATE(3322), - [sym_binary_operator] = STATE(3322), - [sym_operator_identifier] = STATE(5049), - [sym_dot] = STATE(3322), - [sym_call] = STATE(3322), - [sym__call_without_parentheses] = STATE(3175), - [sym__call_with_parentheses] = STATE(3177), - [sym__local_call_without_parentheses] = STATE(3178), - [sym__local_call_with_parentheses] = STATE(2550), - [sym__local_call_just_do_block] = STATE(3183), - [sym__remote_call_without_parentheses] = STATE(3200), - [sym__remote_call_with_parentheses] = STATE(2583), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(2582), - [sym__anonymous_dot] = STATE(4866), - [sym__double_call] = STATE(3202), - [sym_access_call] = STATE(3322), - [sym_anonymous_function] = STATE(3322), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(15), - [sym_unused_identifier] = ACTIONS(17), - [anon_sym___MODULE__] = ACTIONS(19), - [anon_sym___DIR__] = ACTIONS(19), - [anon_sym___ENV__] = ACTIONS(19), - [anon_sym___CALLER__] = ACTIONS(19), - [anon_sym___STACKTRACE__] = ACTIONS(19), - [sym_alias] = ACTIONS(2293), - [sym_integer] = ACTIONS(2293), - [sym_float] = ACTIONS(2293), - [sym_char] = ACTIONS(2293), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_nil] = ACTIONS(25), - [sym_atom] = ACTIONS(2293), - [anon_sym_DQUOTE] = ACTIONS(27), - [anon_sym_SQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(41), - [anon_sym_LT_LT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(45), - [anon_sym_AMP] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(49), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_CARET] = ACTIONS(49), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), - [anon_sym_not] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(51), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(53), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(55), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(59), - }, - [739] = { - [sym__expression] = STATE(3320), - [sym_block] = STATE(3320), - [sym__identifier] = STATE(57), - [sym_identifier] = STATE(57), - [sym_special_identifier] = STATE(57), - [sym_boolean] = STATE(3320), - [sym_nil] = STATE(3320), - [sym__atom] = STATE(3320), - [sym_quoted_atom] = STATE(3320), - [sym__quoted_i_double] = STATE(3146), - [sym__quoted_i_single] = STATE(3147), - [sym__quoted_i_heredoc_single] = STATE(3147), - [sym__quoted_i_heredoc_double] = STATE(3146), - [sym_string] = STATE(3320), - [sym_charlist] = STATE(3320), - [sym_sigil] = STATE(3320), - [sym_list] = STATE(3320), - [sym_tuple] = STATE(3320), - [sym_bitstring] = STATE(3320), - [sym_map] = STATE(3320), - [sym_unary_operator] = STATE(3320), - [sym_binary_operator] = STATE(3320), - [sym_operator_identifier] = STATE(5049), - [sym_dot] = STATE(3320), - [sym_call] = STATE(3320), - [sym__call_without_parentheses] = STATE(3175), - [sym__call_with_parentheses] = STATE(3177), - [sym__local_call_without_parentheses] = STATE(3178), - [sym__local_call_with_parentheses] = STATE(2550), - [sym__local_call_just_do_block] = STATE(3183), - [sym__remote_call_without_parentheses] = STATE(3200), - [sym__remote_call_with_parentheses] = STATE(2583), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(2582), - [sym__anonymous_dot] = STATE(4866), - [sym__double_call] = STATE(3202), - [sym_access_call] = STATE(3320), - [sym_anonymous_function] = STATE(3320), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(15), - [sym_unused_identifier] = ACTIONS(17), - [anon_sym___MODULE__] = ACTIONS(19), - [anon_sym___DIR__] = ACTIONS(19), - [anon_sym___ENV__] = ACTIONS(19), - [anon_sym___CALLER__] = ACTIONS(19), - [anon_sym___STACKTRACE__] = ACTIONS(19), - [sym_alias] = ACTIONS(2295), - [sym_integer] = ACTIONS(2295), - [sym_float] = ACTIONS(2295), - [sym_char] = ACTIONS(2295), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_nil] = ACTIONS(25), - [sym_atom] = ACTIONS(2295), - [anon_sym_DQUOTE] = ACTIONS(27), - [anon_sym_SQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(41), - [anon_sym_LT_LT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(45), - [anon_sym_AMP] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(49), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_CARET] = ACTIONS(49), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), - [anon_sym_not] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(51), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(53), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(55), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(59), - }, - [740] = { - [sym__expression] = STATE(2009), - [sym_block] = STATE(2009), - [sym__identifier] = STATE(48), - [sym_identifier] = STATE(48), - [sym_special_identifier] = STATE(48), - [sym_boolean] = STATE(2009), - [sym_nil] = STATE(2009), - [sym__atom] = STATE(2009), - [sym_quoted_atom] = STATE(2009), - [sym__quoted_i_double] = STATE(1259), - [sym__quoted_i_single] = STATE(1258), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(2009), - [sym_charlist] = STATE(2009), - [sym_sigil] = STATE(2009), - [sym_list] = STATE(2009), - [sym_tuple] = STATE(2009), - [sym_bitstring] = STATE(2009), - [sym_map] = STATE(2009), - [sym_unary_operator] = STATE(2009), - [sym_binary_operator] = STATE(2009), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(2009), - [sym_call] = STATE(2009), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(2009), - [sym_anonymous_function] = STATE(2009), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(527), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(1371), - [sym_integer] = ACTIONS(1371), - [sym_float] = ACTIONS(1371), - [sym_char] = ACTIONS(1371), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(531), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_BANG] = ACTIONS(537), - [anon_sym_CARET] = ACTIONS(537), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), - [anon_sym_not] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(539), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(541), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), - }, - [741] = { - [sym__expression] = STATE(3319), - [sym_block] = STATE(3319), - [sym__identifier] = STATE(57), - [sym_identifier] = STATE(57), - [sym_special_identifier] = STATE(57), - [sym_boolean] = STATE(3319), - [sym_nil] = STATE(3319), - [sym__atom] = STATE(3319), - [sym_quoted_atom] = STATE(3319), - [sym__quoted_i_double] = STATE(3146), - [sym__quoted_i_single] = STATE(3147), - [sym__quoted_i_heredoc_single] = STATE(3147), - [sym__quoted_i_heredoc_double] = STATE(3146), - [sym_string] = STATE(3319), - [sym_charlist] = STATE(3319), - [sym_sigil] = STATE(3319), - [sym_list] = STATE(3319), - [sym_tuple] = STATE(3319), - [sym_bitstring] = STATE(3319), - [sym_map] = STATE(3319), - [sym_unary_operator] = STATE(3319), - [sym_binary_operator] = STATE(3319), - [sym_operator_identifier] = STATE(5049), - [sym_dot] = STATE(3319), - [sym_call] = STATE(3319), - [sym__call_without_parentheses] = STATE(3175), - [sym__call_with_parentheses] = STATE(3177), - [sym__local_call_without_parentheses] = STATE(3178), - [sym__local_call_with_parentheses] = STATE(2550), - [sym__local_call_just_do_block] = STATE(3183), - [sym__remote_call_without_parentheses] = STATE(3200), - [sym__remote_call_with_parentheses] = STATE(2583), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(2582), - [sym__anonymous_dot] = STATE(4866), - [sym__double_call] = STATE(3202), - [sym_access_call] = STATE(3319), - [sym_anonymous_function] = STATE(3319), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(15), - [sym_unused_identifier] = ACTIONS(17), - [anon_sym___MODULE__] = ACTIONS(19), - [anon_sym___DIR__] = ACTIONS(19), - [anon_sym___ENV__] = ACTIONS(19), - [anon_sym___CALLER__] = ACTIONS(19), - [anon_sym___STACKTRACE__] = ACTIONS(19), - [sym_alias] = ACTIONS(2297), - [sym_integer] = ACTIONS(2297), - [sym_float] = ACTIONS(2297), - [sym_char] = ACTIONS(2297), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_nil] = ACTIONS(25), - [sym_atom] = ACTIONS(2297), - [anon_sym_DQUOTE] = ACTIONS(27), - [anon_sym_SQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(41), - [anon_sym_LT_LT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(45), - [anon_sym_AMP] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(49), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_CARET] = ACTIONS(49), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), - [anon_sym_not] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(51), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(53), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(55), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(59), - }, - [742] = { - [sym__expression] = STATE(3312), - [sym_block] = STATE(3312), - [sym__identifier] = STATE(57), - [sym_identifier] = STATE(57), - [sym_special_identifier] = STATE(57), - [sym_boolean] = STATE(3312), - [sym_nil] = STATE(3312), - [sym__atom] = STATE(3312), - [sym_quoted_atom] = STATE(3312), - [sym__quoted_i_double] = STATE(3146), - [sym__quoted_i_single] = STATE(3147), - [sym__quoted_i_heredoc_single] = STATE(3147), - [sym__quoted_i_heredoc_double] = STATE(3146), - [sym_string] = STATE(3312), - [sym_charlist] = STATE(3312), - [sym_sigil] = STATE(3312), - [sym_list] = STATE(3312), - [sym_tuple] = STATE(3312), - [sym_bitstring] = STATE(3312), - [sym_map] = STATE(3312), - [sym_unary_operator] = STATE(3312), - [sym_binary_operator] = STATE(3312), - [sym_operator_identifier] = STATE(5049), - [sym_dot] = STATE(3312), - [sym_call] = STATE(3312), - [sym__call_without_parentheses] = STATE(3175), - [sym__call_with_parentheses] = STATE(3177), - [sym__local_call_without_parentheses] = STATE(3178), - [sym__local_call_with_parentheses] = STATE(2550), - [sym__local_call_just_do_block] = STATE(3183), - [sym__remote_call_without_parentheses] = STATE(3200), - [sym__remote_call_with_parentheses] = STATE(2583), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(2582), - [sym__anonymous_dot] = STATE(4866), - [sym__double_call] = STATE(3202), - [sym_access_call] = STATE(3312), - [sym_anonymous_function] = STATE(3312), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(15), - [sym_unused_identifier] = ACTIONS(17), - [anon_sym___MODULE__] = ACTIONS(19), - [anon_sym___DIR__] = ACTIONS(19), - [anon_sym___ENV__] = ACTIONS(19), - [anon_sym___CALLER__] = ACTIONS(19), - [anon_sym___STACKTRACE__] = ACTIONS(19), - [sym_alias] = ACTIONS(2299), - [sym_integer] = ACTIONS(2299), - [sym_float] = ACTIONS(2299), - [sym_char] = ACTIONS(2299), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_nil] = ACTIONS(25), - [sym_atom] = ACTIONS(2299), - [anon_sym_DQUOTE] = ACTIONS(27), - [anon_sym_SQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(41), - [anon_sym_LT_LT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(45), - [anon_sym_AMP] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(49), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_CARET] = ACTIONS(49), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), - [anon_sym_not] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(51), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(53), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(55), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(59), - }, - [743] = { - [sym__expression] = STATE(3139), - [sym_block] = STATE(3139), - [sym__identifier] = STATE(57), - [sym_identifier] = STATE(57), - [sym_special_identifier] = STATE(57), - [sym_boolean] = STATE(3139), - [sym_nil] = STATE(3139), - [sym__atom] = STATE(3139), - [sym_quoted_atom] = STATE(3139), - [sym__quoted_i_double] = STATE(3146), - [sym__quoted_i_single] = STATE(3147), - [sym__quoted_i_heredoc_single] = STATE(3147), - [sym__quoted_i_heredoc_double] = STATE(3146), - [sym_string] = STATE(3139), - [sym_charlist] = STATE(3139), - [sym_sigil] = STATE(3139), - [sym_list] = STATE(3139), - [sym_tuple] = STATE(3139), - [sym_bitstring] = STATE(3139), - [sym_map] = STATE(3139), - [sym_unary_operator] = STATE(3139), - [sym_binary_operator] = STATE(3139), - [sym_operator_identifier] = STATE(5049), - [sym_dot] = STATE(3139), - [sym_call] = STATE(3139), - [sym__call_without_parentheses] = STATE(3175), - [sym__call_with_parentheses] = STATE(3177), - [sym__local_call_without_parentheses] = STATE(3178), - [sym__local_call_with_parentheses] = STATE(2550), - [sym__local_call_just_do_block] = STATE(3183), - [sym__remote_call_without_parentheses] = STATE(3200), - [sym__remote_call_with_parentheses] = STATE(2583), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(2582), - [sym__anonymous_dot] = STATE(4866), - [sym__double_call] = STATE(3202), - [sym_access_call] = STATE(3139), - [sym_anonymous_function] = STATE(3139), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(15), - [sym_unused_identifier] = ACTIONS(17), - [anon_sym___MODULE__] = ACTIONS(19), - [anon_sym___DIR__] = ACTIONS(19), - [anon_sym___ENV__] = ACTIONS(19), - [anon_sym___CALLER__] = ACTIONS(19), - [anon_sym___STACKTRACE__] = ACTIONS(19), - [sym_alias] = ACTIONS(2301), - [sym_integer] = ACTIONS(2301), - [sym_float] = ACTIONS(2301), - [sym_char] = ACTIONS(2301), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_nil] = ACTIONS(25), - [sym_atom] = ACTIONS(2301), - [anon_sym_DQUOTE] = ACTIONS(27), - [anon_sym_SQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(41), - [anon_sym_LT_LT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(45), - [anon_sym_AMP] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(49), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_CARET] = ACTIONS(49), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), - [anon_sym_not] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(51), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(53), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(55), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(59), - }, - [744] = { - [sym__expression] = STATE(3309), - [sym_block] = STATE(3309), - [sym__identifier] = STATE(57), - [sym_identifier] = STATE(57), - [sym_special_identifier] = STATE(57), - [sym_boolean] = STATE(3309), - [sym_nil] = STATE(3309), - [sym__atom] = STATE(3309), - [sym_quoted_atom] = STATE(3309), - [sym__quoted_i_double] = STATE(3146), - [sym__quoted_i_single] = STATE(3147), - [sym__quoted_i_heredoc_single] = STATE(3147), - [sym__quoted_i_heredoc_double] = STATE(3146), - [sym_string] = STATE(3309), - [sym_charlist] = STATE(3309), - [sym_sigil] = STATE(3309), - [sym_list] = STATE(3309), - [sym_tuple] = STATE(3309), - [sym_bitstring] = STATE(3309), - [sym_map] = STATE(3309), - [sym_unary_operator] = STATE(3309), - [sym_binary_operator] = STATE(3309), - [sym_operator_identifier] = STATE(5049), - [sym_dot] = STATE(3309), - [sym_call] = STATE(3309), - [sym__call_without_parentheses] = STATE(3175), - [sym__call_with_parentheses] = STATE(3177), - [sym__local_call_without_parentheses] = STATE(3178), - [sym__local_call_with_parentheses] = STATE(2550), - [sym__local_call_just_do_block] = STATE(3183), - [sym__remote_call_without_parentheses] = STATE(3200), - [sym__remote_call_with_parentheses] = STATE(2583), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(2582), - [sym__anonymous_dot] = STATE(4866), - [sym__double_call] = STATE(3202), - [sym_access_call] = STATE(3309), - [sym_anonymous_function] = STATE(3309), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(15), - [sym_unused_identifier] = ACTIONS(17), - [anon_sym___MODULE__] = ACTIONS(19), - [anon_sym___DIR__] = ACTIONS(19), - [anon_sym___ENV__] = ACTIONS(19), - [anon_sym___CALLER__] = ACTIONS(19), - [anon_sym___STACKTRACE__] = ACTIONS(19), - [sym_alias] = ACTIONS(2303), - [sym_integer] = ACTIONS(2303), - [sym_float] = ACTIONS(2303), - [sym_char] = ACTIONS(2303), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_nil] = ACTIONS(25), - [sym_atom] = ACTIONS(2303), - [anon_sym_DQUOTE] = ACTIONS(27), - [anon_sym_SQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(41), - [anon_sym_LT_LT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(45), - [anon_sym_AMP] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(49), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_CARET] = ACTIONS(49), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), - [anon_sym_not] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(51), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(53), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(55), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(59), - }, - [745] = { - [sym__expression] = STATE(2992), - [sym_block] = STATE(2992), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(2992), - [sym_nil] = STATE(2992), - [sym__atom] = STATE(2992), - [sym_quoted_atom] = STATE(2992), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(2992), - [sym_charlist] = STATE(2992), - [sym_sigil] = STATE(2992), - [sym_list] = STATE(2992), - [sym_tuple] = STATE(2992), - [sym_bitstring] = STATE(2992), - [sym_map] = STATE(2992), - [sym_unary_operator] = STATE(2992), - [sym_binary_operator] = STATE(2992), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(2992), - [sym_call] = STATE(2992), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(2992), - [sym_anonymous_function] = STATE(2992), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2305), - [sym_integer] = ACTIONS(2305), - [sym_float] = ACTIONS(2305), - [sym_char] = ACTIONS(2305), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2305), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [746] = { - [sym__expression] = STATE(2993), - [sym_block] = STATE(2993), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(2993), - [sym_nil] = STATE(2993), - [sym__atom] = STATE(2993), - [sym_quoted_atom] = STATE(2993), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(2993), - [sym_charlist] = STATE(2993), - [sym_sigil] = STATE(2993), - [sym_list] = STATE(2993), - [sym_tuple] = STATE(2993), - [sym_bitstring] = STATE(2993), - [sym_map] = STATE(2993), - [sym_unary_operator] = STATE(2993), - [sym_binary_operator] = STATE(2993), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(2993), - [sym_call] = STATE(2993), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(2993), - [sym_anonymous_function] = STATE(2993), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2307), - [sym_integer] = ACTIONS(2307), - [sym_float] = ACTIONS(2307), - [sym_char] = ACTIONS(2307), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2307), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [747] = { - [sym__expression] = STATE(3308), - [sym_block] = STATE(3308), - [sym__identifier] = STATE(57), - [sym_identifier] = STATE(57), - [sym_special_identifier] = STATE(57), - [sym_boolean] = STATE(3308), - [sym_nil] = STATE(3308), - [sym__atom] = STATE(3308), - [sym_quoted_atom] = STATE(3308), - [sym__quoted_i_double] = STATE(3146), - [sym__quoted_i_single] = STATE(3147), - [sym__quoted_i_heredoc_single] = STATE(3147), - [sym__quoted_i_heredoc_double] = STATE(3146), - [sym_string] = STATE(3308), - [sym_charlist] = STATE(3308), - [sym_sigil] = STATE(3308), - [sym_list] = STATE(3308), - [sym_tuple] = STATE(3308), - [sym_bitstring] = STATE(3308), - [sym_map] = STATE(3308), - [sym_unary_operator] = STATE(3308), - [sym_binary_operator] = STATE(3308), - [sym_operator_identifier] = STATE(5049), - [sym_dot] = STATE(3308), - [sym_call] = STATE(3308), - [sym__call_without_parentheses] = STATE(3175), - [sym__call_with_parentheses] = STATE(3177), - [sym__local_call_without_parentheses] = STATE(3178), - [sym__local_call_with_parentheses] = STATE(2550), - [sym__local_call_just_do_block] = STATE(3183), - [sym__remote_call_without_parentheses] = STATE(3200), - [sym__remote_call_with_parentheses] = STATE(2583), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(2582), - [sym__anonymous_dot] = STATE(4866), - [sym__double_call] = STATE(3202), - [sym_access_call] = STATE(3308), - [sym_anonymous_function] = STATE(3308), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(15), - [sym_unused_identifier] = ACTIONS(17), - [anon_sym___MODULE__] = ACTIONS(19), - [anon_sym___DIR__] = ACTIONS(19), - [anon_sym___ENV__] = ACTIONS(19), - [anon_sym___CALLER__] = ACTIONS(19), - [anon_sym___STACKTRACE__] = ACTIONS(19), - [sym_alias] = ACTIONS(2309), - [sym_integer] = ACTIONS(2309), - [sym_float] = ACTIONS(2309), - [sym_char] = ACTIONS(2309), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_nil] = ACTIONS(25), - [sym_atom] = ACTIONS(2309), - [anon_sym_DQUOTE] = ACTIONS(27), - [anon_sym_SQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(41), - [anon_sym_LT_LT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(45), - [anon_sym_AMP] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(49), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_CARET] = ACTIONS(49), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), - [anon_sym_not] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(51), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(53), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(55), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(59), - }, - [748] = { - [sym__expression] = STATE(2995), - [sym_block] = STATE(2995), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(2995), - [sym_nil] = STATE(2995), - [sym__atom] = STATE(2995), - [sym_quoted_atom] = STATE(2995), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(2995), - [sym_charlist] = STATE(2995), - [sym_sigil] = STATE(2995), - [sym_list] = STATE(2995), - [sym_tuple] = STATE(2995), - [sym_bitstring] = STATE(2995), - [sym_map] = STATE(2995), - [sym_unary_operator] = STATE(2995), - [sym_binary_operator] = STATE(2995), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(2995), - [sym_call] = STATE(2995), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(2995), - [sym_anonymous_function] = STATE(2995), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2311), - [sym_integer] = ACTIONS(2311), - [sym_float] = ACTIONS(2311), - [sym_char] = ACTIONS(2311), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2311), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [749] = { - [sym__expression] = STATE(2996), - [sym_block] = STATE(2996), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(2996), - [sym_nil] = STATE(2996), - [sym__atom] = STATE(2996), - [sym_quoted_atom] = STATE(2996), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(2996), - [sym_charlist] = STATE(2996), - [sym_sigil] = STATE(2996), - [sym_list] = STATE(2996), - [sym_tuple] = STATE(2996), - [sym_bitstring] = STATE(2996), - [sym_map] = STATE(2996), - [sym_unary_operator] = STATE(2996), - [sym_binary_operator] = STATE(2996), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(2996), - [sym_call] = STATE(2996), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(2996), - [sym_anonymous_function] = STATE(2996), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2313), - [sym_integer] = ACTIONS(2313), - [sym_float] = ACTIONS(2313), - [sym_char] = ACTIONS(2313), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2313), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [750] = { - [sym__expression] = STATE(3033), - [sym_block] = STATE(3033), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3033), - [sym_nil] = STATE(3033), - [sym__atom] = STATE(3033), - [sym_quoted_atom] = STATE(3033), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3033), - [sym_charlist] = STATE(3033), - [sym_sigil] = STATE(3033), - [sym_list] = STATE(3033), - [sym_tuple] = STATE(3033), - [sym_bitstring] = STATE(3033), - [sym_map] = STATE(3033), - [sym_unary_operator] = STATE(3033), - [sym_binary_operator] = STATE(3033), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3033), - [sym_call] = STATE(3033), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3033), - [sym_anonymous_function] = STATE(3033), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2315), - [sym_integer] = ACTIONS(2315), - [sym_float] = ACTIONS(2315), - [sym_char] = ACTIONS(2315), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2315), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [751] = { - [sym__expression] = STATE(1909), - [sym_block] = STATE(1909), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(1909), - [sym_nil] = STATE(1909), - [sym__atom] = STATE(1909), - [sym_quoted_atom] = STATE(1909), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(1909), - [sym_charlist] = STATE(1909), - [sym_sigil] = STATE(1909), - [sym_list] = STATE(1909), - [sym_tuple] = STATE(1909), - [sym_bitstring] = STATE(1909), - [sym_map] = STATE(1909), - [sym_unary_operator] = STATE(1909), - [sym_binary_operator] = STATE(1909), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(1909), - [sym_call] = STATE(1909), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(1909), - [sym_anonymous_function] = STATE(1909), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(944), - [anon_sym___MODULE__] = ACTIONS(71), - [anon_sym___DIR__] = ACTIONS(71), - [anon_sym___ENV__] = ACTIONS(71), - [anon_sym___CALLER__] = ACTIONS(71), - [anon_sym___STACKTRACE__] = ACTIONS(71), - [sym_alias] = ACTIONS(2317), - [sym_integer] = ACTIONS(2317), - [sym_float] = ACTIONS(2317), - [sym_char] = ACTIONS(2317), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(2317), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(972), - [anon_sym_CARET] = ACTIONS(972), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), - [anon_sym_not] = ACTIONS(972), - [anon_sym_AT] = ACTIONS(974), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(980), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [752] = { - [sym__expression] = STATE(3038), - [sym_block] = STATE(3038), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3038), - [sym_nil] = STATE(3038), - [sym__atom] = STATE(3038), - [sym_quoted_atom] = STATE(3038), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3038), - [sym_charlist] = STATE(3038), - [sym_sigil] = STATE(3038), - [sym_list] = STATE(3038), - [sym_tuple] = STATE(3038), - [sym_bitstring] = STATE(3038), - [sym_map] = STATE(3038), - [sym_unary_operator] = STATE(3038), - [sym_binary_operator] = STATE(3038), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3038), - [sym_call] = STATE(3038), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3038), - [sym_anonymous_function] = STATE(3038), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2319), - [sym_integer] = ACTIONS(2319), - [sym_float] = ACTIONS(2319), - [sym_char] = ACTIONS(2319), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2319), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [753] = { - [sym__expression] = STATE(3039), - [sym_block] = STATE(3039), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3039), - [sym_nil] = STATE(3039), - [sym__atom] = STATE(3039), - [sym_quoted_atom] = STATE(3039), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3039), - [sym_charlist] = STATE(3039), - [sym_sigil] = STATE(3039), - [sym_list] = STATE(3039), - [sym_tuple] = STATE(3039), - [sym_bitstring] = STATE(3039), - [sym_map] = STATE(3039), - [sym_unary_operator] = STATE(3039), - [sym_binary_operator] = STATE(3039), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3039), - [sym_call] = STATE(3039), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3039), - [sym_anonymous_function] = STATE(3039), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2321), - [sym_integer] = ACTIONS(2321), - [sym_float] = ACTIONS(2321), - [sym_char] = ACTIONS(2321), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2321), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [754] = { - [sym__expression] = STATE(3048), - [sym_block] = STATE(3048), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3048), - [sym_nil] = STATE(3048), - [sym__atom] = STATE(3048), - [sym_quoted_atom] = STATE(3048), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3048), - [sym_charlist] = STATE(3048), - [sym_sigil] = STATE(3048), - [sym_list] = STATE(3048), - [sym_tuple] = STATE(3048), - [sym_bitstring] = STATE(3048), - [sym_map] = STATE(3048), - [sym_unary_operator] = STATE(3048), - [sym_binary_operator] = STATE(3048), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3048), - [sym_call] = STATE(3048), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3048), - [sym_anonymous_function] = STATE(3048), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2323), - [sym_integer] = ACTIONS(2323), - [sym_float] = ACTIONS(2323), - [sym_char] = ACTIONS(2323), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2323), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [755] = { - [sym__expression] = STATE(3040), - [sym_block] = STATE(3040), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3040), - [sym_nil] = STATE(3040), - [sym__atom] = STATE(3040), - [sym_quoted_atom] = STATE(3040), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3040), - [sym_charlist] = STATE(3040), - [sym_sigil] = STATE(3040), - [sym_list] = STATE(3040), - [sym_tuple] = STATE(3040), - [sym_bitstring] = STATE(3040), - [sym_map] = STATE(3040), - [sym_unary_operator] = STATE(3040), - [sym_binary_operator] = STATE(3040), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3040), - [sym_call] = STATE(3040), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3040), - [sym_anonymous_function] = STATE(3040), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2325), - [sym_integer] = ACTIONS(2325), - [sym_float] = ACTIONS(2325), - [sym_char] = ACTIONS(2325), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2325), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [756] = { - [sym__expression] = STATE(3041), - [sym_block] = STATE(3041), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3041), - [sym_nil] = STATE(3041), - [sym__atom] = STATE(3041), - [sym_quoted_atom] = STATE(3041), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3041), - [sym_charlist] = STATE(3041), - [sym_sigil] = STATE(3041), - [sym_list] = STATE(3041), - [sym_tuple] = STATE(3041), - [sym_bitstring] = STATE(3041), - [sym_map] = STATE(3041), - [sym_unary_operator] = STATE(3041), - [sym_binary_operator] = STATE(3041), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3041), - [sym_call] = STATE(3041), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3041), - [sym_anonymous_function] = STATE(3041), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2327), - [sym_integer] = ACTIONS(2327), - [sym_float] = ACTIONS(2327), - [sym_char] = ACTIONS(2327), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [757] = { - [sym__expression] = STATE(3042), - [sym_block] = STATE(3042), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3042), - [sym_nil] = STATE(3042), - [sym__atom] = STATE(3042), - [sym_quoted_atom] = STATE(3042), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3042), - [sym_charlist] = STATE(3042), - [sym_sigil] = STATE(3042), - [sym_list] = STATE(3042), - [sym_tuple] = STATE(3042), - [sym_bitstring] = STATE(3042), - [sym_map] = STATE(3042), - [sym_unary_operator] = STATE(3042), - [sym_binary_operator] = STATE(3042), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3042), - [sym_call] = STATE(3042), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3042), - [sym_anonymous_function] = STATE(3042), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2329), - [sym_integer] = ACTIONS(2329), - [sym_float] = ACTIONS(2329), - [sym_char] = ACTIONS(2329), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2329), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [758] = { - [sym__expression] = STATE(3043), - [sym_block] = STATE(3043), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3043), - [sym_nil] = STATE(3043), - [sym__atom] = STATE(3043), - [sym_quoted_atom] = STATE(3043), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3043), - [sym_charlist] = STATE(3043), - [sym_sigil] = STATE(3043), - [sym_list] = STATE(3043), - [sym_tuple] = STATE(3043), - [sym_bitstring] = STATE(3043), - [sym_map] = STATE(3043), - [sym_unary_operator] = STATE(3043), - [sym_binary_operator] = STATE(3043), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3043), - [sym_call] = STATE(3043), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3043), - [sym_anonymous_function] = STATE(3043), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2331), - [sym_integer] = ACTIONS(2331), - [sym_float] = ACTIONS(2331), - [sym_char] = ACTIONS(2331), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2331), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [759] = { - [sym__expression] = STATE(3044), - [sym_block] = STATE(3044), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3044), - [sym_nil] = STATE(3044), - [sym__atom] = STATE(3044), - [sym_quoted_atom] = STATE(3044), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3044), - [sym_charlist] = STATE(3044), - [sym_sigil] = STATE(3044), - [sym_list] = STATE(3044), - [sym_tuple] = STATE(3044), - [sym_bitstring] = STATE(3044), - [sym_map] = STATE(3044), - [sym_unary_operator] = STATE(3044), - [sym_binary_operator] = STATE(3044), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3044), - [sym_call] = STATE(3044), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3044), - [sym_anonymous_function] = STATE(3044), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2333), - [sym_integer] = ACTIONS(2333), - [sym_float] = ACTIONS(2333), - [sym_char] = ACTIONS(2333), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2333), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [760] = { - [sym__expression] = STATE(3045), - [sym_block] = STATE(3045), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3045), - [sym_nil] = STATE(3045), - [sym__atom] = STATE(3045), - [sym_quoted_atom] = STATE(3045), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3045), - [sym_charlist] = STATE(3045), - [sym_sigil] = STATE(3045), - [sym_list] = STATE(3045), - [sym_tuple] = STATE(3045), - [sym_bitstring] = STATE(3045), - [sym_map] = STATE(3045), - [sym_unary_operator] = STATE(3045), - [sym_binary_operator] = STATE(3045), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3045), - [sym_call] = STATE(3045), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3045), - [sym_anonymous_function] = STATE(3045), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2335), - [sym_integer] = ACTIONS(2335), - [sym_float] = ACTIONS(2335), - [sym_char] = ACTIONS(2335), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2335), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [761] = { - [sym__expression] = STATE(3046), - [sym_block] = STATE(3046), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3046), - [sym_nil] = STATE(3046), - [sym__atom] = STATE(3046), - [sym_quoted_atom] = STATE(3046), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3046), - [sym_charlist] = STATE(3046), - [sym_sigil] = STATE(3046), - [sym_list] = STATE(3046), - [sym_tuple] = STATE(3046), - [sym_bitstring] = STATE(3046), - [sym_map] = STATE(3046), - [sym_unary_operator] = STATE(3046), - [sym_binary_operator] = STATE(3046), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3046), - [sym_call] = STATE(3046), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3046), - [sym_anonymous_function] = STATE(3046), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2337), - [sym_integer] = ACTIONS(2337), - [sym_float] = ACTIONS(2337), - [sym_char] = ACTIONS(2337), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2337), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [762] = { - [sym__expression] = STATE(2590), - [sym_block] = STATE(2590), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(2590), - [sym_nil] = STATE(2590), - [sym__atom] = STATE(2590), - [sym_quoted_atom] = STATE(2590), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(2590), - [sym_charlist] = STATE(2590), - [sym_sigil] = STATE(2590), - [sym_list] = STATE(2590), - [sym_tuple] = STATE(2590), - [sym_bitstring] = STATE(2590), - [sym_map] = STATE(2590), - [sym_unary_operator] = STATE(2590), - [sym_binary_operator] = STATE(2590), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(2590), - [sym_call] = STATE(2590), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(2590), - [sym_anonymous_function] = STATE(2590), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2037), - [sym_integer] = ACTIONS(2037), - [sym_float] = ACTIONS(2037), - [sym_char] = ACTIONS(2037), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2037), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [763] = { - [sym__expression] = STATE(2041), - [sym_block] = STATE(2041), - [sym__identifier] = STATE(48), - [sym_identifier] = STATE(48), - [sym_special_identifier] = STATE(48), - [sym_boolean] = STATE(2041), - [sym_nil] = STATE(2041), - [sym__atom] = STATE(2041), - [sym_quoted_atom] = STATE(2041), - [sym__quoted_i_double] = STATE(1259), - [sym__quoted_i_single] = STATE(1258), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(2041), - [sym_charlist] = STATE(2041), - [sym_sigil] = STATE(2041), - [sym_list] = STATE(2041), - [sym_tuple] = STATE(2041), - [sym_bitstring] = STATE(2041), - [sym_map] = STATE(2041), - [sym_unary_operator] = STATE(2041), - [sym_binary_operator] = STATE(2041), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(2041), - [sym_call] = STATE(2041), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(2041), - [sym_anonymous_function] = STATE(2041), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(527), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(2339), - [sym_integer] = ACTIONS(2339), - [sym_float] = ACTIONS(2339), - [sym_char] = ACTIONS(2339), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(2339), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(531), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_BANG] = ACTIONS(537), - [anon_sym_CARET] = ACTIONS(537), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), - [anon_sym_not] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(539), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(541), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), - }, - [764] = { - [sym__expression] = STATE(2044), - [sym_block] = STATE(2044), - [sym__identifier] = STATE(48), - [sym_identifier] = STATE(48), - [sym_special_identifier] = STATE(48), - [sym_boolean] = STATE(2044), - [sym_nil] = STATE(2044), - [sym__atom] = STATE(2044), - [sym_quoted_atom] = STATE(2044), - [sym__quoted_i_double] = STATE(1259), - [sym__quoted_i_single] = STATE(1258), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(2044), - [sym_charlist] = STATE(2044), - [sym_sigil] = STATE(2044), - [sym_list] = STATE(2044), - [sym_tuple] = STATE(2044), - [sym_bitstring] = STATE(2044), - [sym_map] = STATE(2044), - [sym_unary_operator] = STATE(2044), - [sym_binary_operator] = STATE(2044), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(2044), - [sym_call] = STATE(2044), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(2044), - [sym_anonymous_function] = STATE(2044), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(527), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(2341), - [sym_integer] = ACTIONS(2341), - [sym_float] = ACTIONS(2341), - [sym_char] = ACTIONS(2341), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(2341), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(531), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_BANG] = ACTIONS(537), - [anon_sym_CARET] = ACTIONS(537), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), - [anon_sym_not] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(539), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(541), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), - }, - [765] = { - [sym__expression] = STATE(2045), - [sym_block] = STATE(2045), - [sym__identifier] = STATE(48), - [sym_identifier] = STATE(48), - [sym_special_identifier] = STATE(48), - [sym_boolean] = STATE(2045), - [sym_nil] = STATE(2045), - [sym__atom] = STATE(2045), - [sym_quoted_atom] = STATE(2045), - [sym__quoted_i_double] = STATE(1259), - [sym__quoted_i_single] = STATE(1258), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(2045), - [sym_charlist] = STATE(2045), - [sym_sigil] = STATE(2045), - [sym_list] = STATE(2045), - [sym_tuple] = STATE(2045), - [sym_bitstring] = STATE(2045), - [sym_map] = STATE(2045), - [sym_unary_operator] = STATE(2045), - [sym_binary_operator] = STATE(2045), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(2045), - [sym_call] = STATE(2045), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(2045), - [sym_anonymous_function] = STATE(2045), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(527), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(2343), - [sym_integer] = ACTIONS(2343), - [sym_float] = ACTIONS(2343), - [sym_char] = ACTIONS(2343), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(2343), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(531), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_BANG] = ACTIONS(537), - [anon_sym_CARET] = ACTIONS(537), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), - [anon_sym_not] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(539), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(541), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), - }, - [766] = { - [sym__expression] = STATE(2051), - [sym_block] = STATE(2051), - [sym__identifier] = STATE(48), - [sym_identifier] = STATE(48), - [sym_special_identifier] = STATE(48), - [sym_boolean] = STATE(2051), - [sym_nil] = STATE(2051), - [sym__atom] = STATE(2051), - [sym_quoted_atom] = STATE(2051), - [sym__quoted_i_double] = STATE(1259), - [sym__quoted_i_single] = STATE(1258), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(2051), - [sym_charlist] = STATE(2051), - [sym_sigil] = STATE(2051), - [sym_list] = STATE(2051), - [sym_tuple] = STATE(2051), - [sym_bitstring] = STATE(2051), - [sym_map] = STATE(2051), - [sym_unary_operator] = STATE(2051), - [sym_binary_operator] = STATE(2051), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(2051), - [sym_call] = STATE(2051), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(2051), - [sym_anonymous_function] = STATE(2051), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(527), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(2345), - [sym_integer] = ACTIONS(2345), - [sym_float] = ACTIONS(2345), - [sym_char] = ACTIONS(2345), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(2345), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(531), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_BANG] = ACTIONS(537), - [anon_sym_CARET] = ACTIONS(537), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), - [anon_sym_not] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(539), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(541), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), - }, - [767] = { - [sym__expression] = STATE(2055), - [sym_block] = STATE(2055), - [sym__identifier] = STATE(48), - [sym_identifier] = STATE(48), - [sym_special_identifier] = STATE(48), - [sym_boolean] = STATE(2055), - [sym_nil] = STATE(2055), - [sym__atom] = STATE(2055), - [sym_quoted_atom] = STATE(2055), - [sym__quoted_i_double] = STATE(1259), - [sym__quoted_i_single] = STATE(1258), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(2055), - [sym_charlist] = STATE(2055), - [sym_sigil] = STATE(2055), - [sym_list] = STATE(2055), - [sym_tuple] = STATE(2055), - [sym_bitstring] = STATE(2055), - [sym_map] = STATE(2055), - [sym_unary_operator] = STATE(2055), - [sym_binary_operator] = STATE(2055), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(2055), - [sym_call] = STATE(2055), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(2055), - [sym_anonymous_function] = STATE(2055), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(527), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(2347), - [sym_integer] = ACTIONS(2347), - [sym_float] = ACTIONS(2347), - [sym_char] = ACTIONS(2347), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(2347), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(531), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_BANG] = ACTIONS(537), - [anon_sym_CARET] = ACTIONS(537), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), - [anon_sym_not] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(539), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(541), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), - }, - [768] = { - [sym__expression] = STATE(2056), - [sym_block] = STATE(2056), - [sym__identifier] = STATE(48), - [sym_identifier] = STATE(48), - [sym_special_identifier] = STATE(48), - [sym_boolean] = STATE(2056), - [sym_nil] = STATE(2056), - [sym__atom] = STATE(2056), - [sym_quoted_atom] = STATE(2056), - [sym__quoted_i_double] = STATE(1259), - [sym__quoted_i_single] = STATE(1258), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(2056), - [sym_charlist] = STATE(2056), - [sym_sigil] = STATE(2056), - [sym_list] = STATE(2056), - [sym_tuple] = STATE(2056), - [sym_bitstring] = STATE(2056), - [sym_map] = STATE(2056), - [sym_unary_operator] = STATE(2056), - [sym_binary_operator] = STATE(2056), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(2056), - [sym_call] = STATE(2056), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(2056), - [sym_anonymous_function] = STATE(2056), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(527), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(2349), - [sym_integer] = ACTIONS(2349), - [sym_float] = ACTIONS(2349), - [sym_char] = ACTIONS(2349), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(531), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_BANG] = ACTIONS(537), - [anon_sym_CARET] = ACTIONS(537), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), - [anon_sym_not] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(539), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(541), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), - }, - [769] = { - [sym__expression] = STATE(2057), - [sym_block] = STATE(2057), - [sym__identifier] = STATE(48), - [sym_identifier] = STATE(48), - [sym_special_identifier] = STATE(48), - [sym_boolean] = STATE(2057), - [sym_nil] = STATE(2057), - [sym__atom] = STATE(2057), - [sym_quoted_atom] = STATE(2057), - [sym__quoted_i_double] = STATE(1259), - [sym__quoted_i_single] = STATE(1258), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(2057), - [sym_charlist] = STATE(2057), - [sym_sigil] = STATE(2057), - [sym_list] = STATE(2057), - [sym_tuple] = STATE(2057), - [sym_bitstring] = STATE(2057), - [sym_map] = STATE(2057), - [sym_unary_operator] = STATE(2057), - [sym_binary_operator] = STATE(2057), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(2057), - [sym_call] = STATE(2057), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(2057), - [sym_anonymous_function] = STATE(2057), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(527), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(2351), - [sym_integer] = ACTIONS(2351), - [sym_float] = ACTIONS(2351), - [sym_char] = ACTIONS(2351), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(2351), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(531), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_BANG] = ACTIONS(537), - [anon_sym_CARET] = ACTIONS(537), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), - [anon_sym_not] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(539), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(541), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), - }, - [770] = { - [sym__expression] = STATE(2058), - [sym_block] = STATE(2058), - [sym__identifier] = STATE(48), - [sym_identifier] = STATE(48), - [sym_special_identifier] = STATE(48), - [sym_boolean] = STATE(2058), - [sym_nil] = STATE(2058), - [sym__atom] = STATE(2058), - [sym_quoted_atom] = STATE(2058), - [sym__quoted_i_double] = STATE(1259), - [sym__quoted_i_single] = STATE(1258), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(2058), - [sym_charlist] = STATE(2058), - [sym_sigil] = STATE(2058), - [sym_list] = STATE(2058), - [sym_tuple] = STATE(2058), - [sym_bitstring] = STATE(2058), - [sym_map] = STATE(2058), - [sym_unary_operator] = STATE(2058), - [sym_binary_operator] = STATE(2058), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(2058), - [sym_call] = STATE(2058), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(2058), - [sym_anonymous_function] = STATE(2058), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(527), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(2353), - [sym_integer] = ACTIONS(2353), - [sym_float] = ACTIONS(2353), - [sym_char] = ACTIONS(2353), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(2353), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(531), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_BANG] = ACTIONS(537), - [anon_sym_CARET] = ACTIONS(537), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), - [anon_sym_not] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(539), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(541), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), - }, - [771] = { - [sym__expression] = STATE(2059), - [sym_block] = STATE(2059), - [sym__identifier] = STATE(48), - [sym_identifier] = STATE(48), - [sym_special_identifier] = STATE(48), - [sym_boolean] = STATE(2059), - [sym_nil] = STATE(2059), - [sym__atom] = STATE(2059), - [sym_quoted_atom] = STATE(2059), - [sym__quoted_i_double] = STATE(1259), - [sym__quoted_i_single] = STATE(1258), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(2059), - [sym_charlist] = STATE(2059), - [sym_sigil] = STATE(2059), - [sym_list] = STATE(2059), - [sym_tuple] = STATE(2059), - [sym_bitstring] = STATE(2059), - [sym_map] = STATE(2059), - [sym_unary_operator] = STATE(2059), - [sym_binary_operator] = STATE(2059), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(2059), - [sym_call] = STATE(2059), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(2059), - [sym_anonymous_function] = STATE(2059), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(527), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(2355), - [sym_integer] = ACTIONS(2355), - [sym_float] = ACTIONS(2355), - [sym_char] = ACTIONS(2355), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(531), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_BANG] = ACTIONS(537), - [anon_sym_CARET] = ACTIONS(537), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), - [anon_sym_not] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(539), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(541), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), - }, - [772] = { - [sym__expression] = STATE(2064), - [sym_block] = STATE(2064), - [sym__identifier] = STATE(48), - [sym_identifier] = STATE(48), - [sym_special_identifier] = STATE(48), - [sym_boolean] = STATE(2064), - [sym_nil] = STATE(2064), - [sym__atom] = STATE(2064), - [sym_quoted_atom] = STATE(2064), - [sym__quoted_i_double] = STATE(1259), - [sym__quoted_i_single] = STATE(1258), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(2064), - [sym_charlist] = STATE(2064), - [sym_sigil] = STATE(2064), - [sym_list] = STATE(2064), - [sym_tuple] = STATE(2064), - [sym_bitstring] = STATE(2064), - [sym_map] = STATE(2064), - [sym_unary_operator] = STATE(2064), - [sym_binary_operator] = STATE(2064), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(2064), - [sym_call] = STATE(2064), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(2064), - [sym_anonymous_function] = STATE(2064), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(527), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(2357), - [sym_integer] = ACTIONS(2357), - [sym_float] = ACTIONS(2357), - [sym_char] = ACTIONS(2357), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(2357), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(531), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_BANG] = ACTIONS(537), - [anon_sym_CARET] = ACTIONS(537), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), - [anon_sym_not] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(539), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(541), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), - }, - [773] = { - [sym__expression] = STATE(2068), - [sym_block] = STATE(2068), - [sym__identifier] = STATE(48), - [sym_identifier] = STATE(48), - [sym_special_identifier] = STATE(48), - [sym_boolean] = STATE(2068), - [sym_nil] = STATE(2068), - [sym__atom] = STATE(2068), - [sym_quoted_atom] = STATE(2068), - [sym__quoted_i_double] = STATE(1259), - [sym__quoted_i_single] = STATE(1258), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(2068), - [sym_charlist] = STATE(2068), - [sym_sigil] = STATE(2068), - [sym_list] = STATE(2068), - [sym_tuple] = STATE(2068), - [sym_bitstring] = STATE(2068), - [sym_map] = STATE(2068), - [sym_unary_operator] = STATE(2068), - [sym_binary_operator] = STATE(2068), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(2068), - [sym_call] = STATE(2068), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(2068), - [sym_anonymous_function] = STATE(2068), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(527), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(2359), - [sym_integer] = ACTIONS(2359), - [sym_float] = ACTIONS(2359), - [sym_char] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(2359), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(531), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_BANG] = ACTIONS(537), - [anon_sym_CARET] = ACTIONS(537), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), - [anon_sym_not] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(539), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(541), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), - }, - [774] = { - [sym__expression] = STATE(2754), - [sym_block] = STATE(2754), - [sym__identifier] = STATE(42), - [sym_identifier] = STATE(42), - [sym_special_identifier] = STATE(42), - [sym_boolean] = STATE(2754), - [sym_nil] = STATE(2754), - [sym__atom] = STATE(2754), - [sym_quoted_atom] = STATE(2754), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(2754), - [sym_charlist] = STATE(2754), - [sym_sigil] = STATE(2754), - [sym_list] = STATE(2754), - [sym_tuple] = STATE(2754), - [sym_bitstring] = STATE(2754), - [sym_map] = STATE(2754), - [sym_unary_operator] = STATE(2754), - [sym_binary_operator] = STATE(2754), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(2754), - [sym_call] = STATE(2754), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(2754), - [sym_anonymous_function] = STATE(2754), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(456), - [sym_unused_identifier] = ACTIONS(458), - [anon_sym___MODULE__] = ACTIONS(460), - [anon_sym___DIR__] = ACTIONS(460), - [anon_sym___ENV__] = ACTIONS(460), - [anon_sym___CALLER__] = ACTIONS(460), - [anon_sym___STACKTRACE__] = ACTIONS(460), - [sym_alias] = ACTIONS(2361), - [sym_integer] = ACTIONS(2361), - [sym_float] = ACTIONS(2361), - [sym_char] = ACTIONS(2361), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(2361), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(464), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(473), - [anon_sym_BANG] = ACTIONS(473), - [anon_sym_CARET] = ACTIONS(473), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), - [anon_sym_not] = ACTIONS(473), - [anon_sym_AT] = ACTIONS(475), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(477), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [775] = { - [sym__expression] = STATE(3306), - [sym_block] = STATE(3306), - [sym__identifier] = STATE(57), - [sym_identifier] = STATE(57), - [sym_special_identifier] = STATE(57), - [sym_boolean] = STATE(3306), - [sym_nil] = STATE(3306), - [sym__atom] = STATE(3306), - [sym_quoted_atom] = STATE(3306), - [sym__quoted_i_double] = STATE(3146), - [sym__quoted_i_single] = STATE(3147), - [sym__quoted_i_heredoc_single] = STATE(3147), - [sym__quoted_i_heredoc_double] = STATE(3146), - [sym_string] = STATE(3306), - [sym_charlist] = STATE(3306), - [sym_sigil] = STATE(3306), - [sym_list] = STATE(3306), - [sym_tuple] = STATE(3306), - [sym_bitstring] = STATE(3306), - [sym_map] = STATE(3306), - [sym_unary_operator] = STATE(3306), - [sym_binary_operator] = STATE(3306), - [sym_operator_identifier] = STATE(5049), - [sym_dot] = STATE(3306), - [sym_call] = STATE(3306), - [sym__call_without_parentheses] = STATE(3175), - [sym__call_with_parentheses] = STATE(3177), - [sym__local_call_without_parentheses] = STATE(3178), - [sym__local_call_with_parentheses] = STATE(2550), - [sym__local_call_just_do_block] = STATE(3183), - [sym__remote_call_without_parentheses] = STATE(3200), - [sym__remote_call_with_parentheses] = STATE(2583), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(2582), - [sym__anonymous_dot] = STATE(4866), - [sym__double_call] = STATE(3202), - [sym_access_call] = STATE(3306), - [sym_anonymous_function] = STATE(3306), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(15), - [sym_unused_identifier] = ACTIONS(17), - [anon_sym___MODULE__] = ACTIONS(19), - [anon_sym___DIR__] = ACTIONS(19), - [anon_sym___ENV__] = ACTIONS(19), - [anon_sym___CALLER__] = ACTIONS(19), - [anon_sym___STACKTRACE__] = ACTIONS(19), - [sym_alias] = ACTIONS(2363), - [sym_integer] = ACTIONS(2363), - [sym_float] = ACTIONS(2363), - [sym_char] = ACTIONS(2363), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_nil] = ACTIONS(25), - [sym_atom] = ACTIONS(2363), - [anon_sym_DQUOTE] = ACTIONS(27), - [anon_sym_SQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(41), - [anon_sym_LT_LT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(45), - [anon_sym_AMP] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(49), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_CARET] = ACTIONS(49), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), - [anon_sym_not] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(51), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(53), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(55), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(59), - }, - [776] = { - [sym__expression] = STATE(3304), - [sym_block] = STATE(3304), - [sym__identifier] = STATE(57), - [sym_identifier] = STATE(57), - [sym_special_identifier] = STATE(57), - [sym_boolean] = STATE(3304), - [sym_nil] = STATE(3304), - [sym__atom] = STATE(3304), - [sym_quoted_atom] = STATE(3304), - [sym__quoted_i_double] = STATE(3146), - [sym__quoted_i_single] = STATE(3147), - [sym__quoted_i_heredoc_single] = STATE(3147), - [sym__quoted_i_heredoc_double] = STATE(3146), - [sym_string] = STATE(3304), - [sym_charlist] = STATE(3304), - [sym_sigil] = STATE(3304), - [sym_list] = STATE(3304), - [sym_tuple] = STATE(3304), - [sym_bitstring] = STATE(3304), - [sym_map] = STATE(3304), - [sym_unary_operator] = STATE(3304), - [sym_binary_operator] = STATE(3304), - [sym_operator_identifier] = STATE(5049), - [sym_dot] = STATE(3304), - [sym_call] = STATE(3304), - [sym__call_without_parentheses] = STATE(3175), - [sym__call_with_parentheses] = STATE(3177), - [sym__local_call_without_parentheses] = STATE(3178), - [sym__local_call_with_parentheses] = STATE(2550), - [sym__local_call_just_do_block] = STATE(3183), - [sym__remote_call_without_parentheses] = STATE(3200), - [sym__remote_call_with_parentheses] = STATE(2583), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(2582), - [sym__anonymous_dot] = STATE(4866), - [sym__double_call] = STATE(3202), - [sym_access_call] = STATE(3304), - [sym_anonymous_function] = STATE(3304), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(15), - [sym_unused_identifier] = ACTIONS(17), - [anon_sym___MODULE__] = ACTIONS(19), - [anon_sym___DIR__] = ACTIONS(19), - [anon_sym___ENV__] = ACTIONS(19), - [anon_sym___CALLER__] = ACTIONS(19), - [anon_sym___STACKTRACE__] = ACTIONS(19), - [sym_alias] = ACTIONS(2365), - [sym_integer] = ACTIONS(2365), - [sym_float] = ACTIONS(2365), - [sym_char] = ACTIONS(2365), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_nil] = ACTIONS(25), - [sym_atom] = ACTIONS(2365), - [anon_sym_DQUOTE] = ACTIONS(27), - [anon_sym_SQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(41), - [anon_sym_LT_LT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(45), - [anon_sym_AMP] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(49), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_CARET] = ACTIONS(49), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), - [anon_sym_not] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(51), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(53), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(55), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(59), - }, - [777] = { - [sym__expression] = STATE(2075), - [sym_block] = STATE(2075), - [sym__identifier] = STATE(48), - [sym_identifier] = STATE(48), - [sym_special_identifier] = STATE(48), - [sym_boolean] = STATE(2075), - [sym_nil] = STATE(2075), - [sym__atom] = STATE(2075), - [sym_quoted_atom] = STATE(2075), - [sym__quoted_i_double] = STATE(1259), - [sym__quoted_i_single] = STATE(1258), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(2075), - [sym_charlist] = STATE(2075), - [sym_sigil] = STATE(2075), - [sym_list] = STATE(2075), - [sym_tuple] = STATE(2075), - [sym_bitstring] = STATE(2075), - [sym_map] = STATE(2075), - [sym_unary_operator] = STATE(2075), - [sym_binary_operator] = STATE(2075), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(2075), - [sym_call] = STATE(2075), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(2075), - [sym_anonymous_function] = STATE(2075), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(527), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(2367), - [sym_integer] = ACTIONS(2367), - [sym_float] = ACTIONS(2367), - [sym_char] = ACTIONS(2367), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(2367), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(531), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_BANG] = ACTIONS(537), - [anon_sym_CARET] = ACTIONS(537), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), - [anon_sym_not] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(539), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(541), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), - }, - [778] = { - [sym__expression] = STATE(2076), - [sym_block] = STATE(2076), - [sym__identifier] = STATE(48), - [sym_identifier] = STATE(48), - [sym_special_identifier] = STATE(48), - [sym_boolean] = STATE(2076), - [sym_nil] = STATE(2076), - [sym__atom] = STATE(2076), - [sym_quoted_atom] = STATE(2076), - [sym__quoted_i_double] = STATE(1259), - [sym__quoted_i_single] = STATE(1258), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(2076), - [sym_charlist] = STATE(2076), - [sym_sigil] = STATE(2076), - [sym_list] = STATE(2076), - [sym_tuple] = STATE(2076), - [sym_bitstring] = STATE(2076), - [sym_map] = STATE(2076), - [sym_unary_operator] = STATE(2076), - [sym_binary_operator] = STATE(2076), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(2076), - [sym_call] = STATE(2076), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(2076), - [sym_anonymous_function] = STATE(2076), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(527), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(2369), - [sym_integer] = ACTIONS(2369), - [sym_float] = ACTIONS(2369), - [sym_char] = ACTIONS(2369), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(2369), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(531), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_BANG] = ACTIONS(537), - [anon_sym_CARET] = ACTIONS(537), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), - [anon_sym_not] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(539), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(541), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), - }, - [779] = { - [sym__expression] = STATE(2077), - [sym_block] = STATE(2077), - [sym__identifier] = STATE(48), - [sym_identifier] = STATE(48), - [sym_special_identifier] = STATE(48), - [sym_boolean] = STATE(2077), - [sym_nil] = STATE(2077), - [sym__atom] = STATE(2077), - [sym_quoted_atom] = STATE(2077), - [sym__quoted_i_double] = STATE(1259), - [sym__quoted_i_single] = STATE(1258), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(2077), - [sym_charlist] = STATE(2077), - [sym_sigil] = STATE(2077), - [sym_list] = STATE(2077), - [sym_tuple] = STATE(2077), - [sym_bitstring] = STATE(2077), - [sym_map] = STATE(2077), - [sym_unary_operator] = STATE(2077), - [sym_binary_operator] = STATE(2077), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(2077), - [sym_call] = STATE(2077), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(2077), - [sym_anonymous_function] = STATE(2077), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(527), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(2371), - [sym_integer] = ACTIONS(2371), - [sym_float] = ACTIONS(2371), - [sym_char] = ACTIONS(2371), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(2371), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(531), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_BANG] = ACTIONS(537), - [anon_sym_CARET] = ACTIONS(537), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), - [anon_sym_not] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(539), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(541), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), - }, - [780] = { - [sym__expression] = STATE(3303), - [sym_block] = STATE(3303), - [sym__identifier] = STATE(57), - [sym_identifier] = STATE(57), - [sym_special_identifier] = STATE(57), - [sym_boolean] = STATE(3303), - [sym_nil] = STATE(3303), - [sym__atom] = STATE(3303), - [sym_quoted_atom] = STATE(3303), - [sym__quoted_i_double] = STATE(3146), - [sym__quoted_i_single] = STATE(3147), - [sym__quoted_i_heredoc_single] = STATE(3147), - [sym__quoted_i_heredoc_double] = STATE(3146), - [sym_string] = STATE(3303), - [sym_charlist] = STATE(3303), - [sym_sigil] = STATE(3303), - [sym_list] = STATE(3303), - [sym_tuple] = STATE(3303), - [sym_bitstring] = STATE(3303), - [sym_map] = STATE(3303), - [sym_unary_operator] = STATE(3303), - [sym_binary_operator] = STATE(3303), - [sym_operator_identifier] = STATE(5049), - [sym_dot] = STATE(3303), - [sym_call] = STATE(3303), - [sym__call_without_parentheses] = STATE(3175), - [sym__call_with_parentheses] = STATE(3177), - [sym__local_call_without_parentheses] = STATE(3178), - [sym__local_call_with_parentheses] = STATE(2550), - [sym__local_call_just_do_block] = STATE(3183), - [sym__remote_call_without_parentheses] = STATE(3200), - [sym__remote_call_with_parentheses] = STATE(2583), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(2582), - [sym__anonymous_dot] = STATE(4866), - [sym__double_call] = STATE(3202), - [sym_access_call] = STATE(3303), - [sym_anonymous_function] = STATE(3303), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(15), - [sym_unused_identifier] = ACTIONS(17), - [anon_sym___MODULE__] = ACTIONS(19), - [anon_sym___DIR__] = ACTIONS(19), - [anon_sym___ENV__] = ACTIONS(19), - [anon_sym___CALLER__] = ACTIONS(19), - [anon_sym___STACKTRACE__] = ACTIONS(19), - [sym_alias] = ACTIONS(2373), - [sym_integer] = ACTIONS(2373), - [sym_float] = ACTIONS(2373), - [sym_char] = ACTIONS(2373), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_nil] = ACTIONS(25), - [sym_atom] = ACTIONS(2373), - [anon_sym_DQUOTE] = ACTIONS(27), - [anon_sym_SQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(41), - [anon_sym_LT_LT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(45), - [anon_sym_AMP] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(49), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_CARET] = ACTIONS(49), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), - [anon_sym_not] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(51), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(53), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(55), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(59), - }, - [781] = { - [sym__expression] = STATE(2080), - [sym_block] = STATE(2080), - [sym__identifier] = STATE(48), - [sym_identifier] = STATE(48), - [sym_special_identifier] = STATE(48), - [sym_boolean] = STATE(2080), - [sym_nil] = STATE(2080), - [sym__atom] = STATE(2080), - [sym_quoted_atom] = STATE(2080), - [sym__quoted_i_double] = STATE(1259), - [sym__quoted_i_single] = STATE(1258), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(2080), - [sym_charlist] = STATE(2080), - [sym_sigil] = STATE(2080), - [sym_list] = STATE(2080), - [sym_tuple] = STATE(2080), - [sym_bitstring] = STATE(2080), - [sym_map] = STATE(2080), - [sym_unary_operator] = STATE(2080), - [sym_binary_operator] = STATE(2080), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(2080), - [sym_call] = STATE(2080), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(2080), - [sym_anonymous_function] = STATE(2080), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(527), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(2375), - [sym_integer] = ACTIONS(2375), - [sym_float] = ACTIONS(2375), - [sym_char] = ACTIONS(2375), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(2375), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(531), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_BANG] = ACTIONS(537), - [anon_sym_CARET] = ACTIONS(537), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), - [anon_sym_not] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(539), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(541), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), - }, - [782] = { - [sym__expression] = STATE(2086), - [sym_block] = STATE(2086), - [sym__identifier] = STATE(48), - [sym_identifier] = STATE(48), - [sym_special_identifier] = STATE(48), - [sym_boolean] = STATE(2086), - [sym_nil] = STATE(2086), - [sym__atom] = STATE(2086), - [sym_quoted_atom] = STATE(2086), - [sym__quoted_i_double] = STATE(1259), - [sym__quoted_i_single] = STATE(1258), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(2086), - [sym_charlist] = STATE(2086), - [sym_sigil] = STATE(2086), - [sym_list] = STATE(2086), - [sym_tuple] = STATE(2086), - [sym_bitstring] = STATE(2086), - [sym_map] = STATE(2086), - [sym_unary_operator] = STATE(2086), - [sym_binary_operator] = STATE(2086), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(2086), - [sym_call] = STATE(2086), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(2086), - [sym_anonymous_function] = STATE(2086), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(527), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(2377), - [sym_integer] = ACTIONS(2377), - [sym_float] = ACTIONS(2377), - [sym_char] = ACTIONS(2377), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(2377), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(531), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_BANG] = ACTIONS(537), - [anon_sym_CARET] = ACTIONS(537), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), - [anon_sym_not] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(539), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(541), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), - }, - [783] = { - [sym__expression] = STATE(1915), - [sym_block] = STATE(1915), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(1915), - [sym_nil] = STATE(1915), - [sym__atom] = STATE(1915), - [sym_quoted_atom] = STATE(1915), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(1915), - [sym_charlist] = STATE(1915), - [sym_sigil] = STATE(1915), - [sym_list] = STATE(1915), - [sym_tuple] = STATE(1915), - [sym_bitstring] = STATE(1915), - [sym_map] = STATE(1915), - [sym_unary_operator] = STATE(1915), - [sym_binary_operator] = STATE(1915), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(1915), - [sym_call] = STATE(1915), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(1915), - [sym_anonymous_function] = STATE(1915), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(944), - [anon_sym___MODULE__] = ACTIONS(71), - [anon_sym___DIR__] = ACTIONS(71), - [anon_sym___ENV__] = ACTIONS(71), - [anon_sym___CALLER__] = ACTIONS(71), - [anon_sym___STACKTRACE__] = ACTIONS(71), - [sym_alias] = ACTIONS(2379), - [sym_integer] = ACTIONS(2379), - [sym_float] = ACTIONS(2379), - [sym_char] = ACTIONS(2379), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(2379), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(972), - [anon_sym_CARET] = ACTIONS(972), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), - [anon_sym_not] = ACTIONS(972), - [anon_sym_AT] = ACTIONS(974), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(980), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [784] = { - [sym__expression] = STATE(3287), - [sym_block] = STATE(3287), - [sym__identifier] = STATE(57), - [sym_identifier] = STATE(57), - [sym_special_identifier] = STATE(57), - [sym_boolean] = STATE(3287), - [sym_nil] = STATE(3287), - [sym__atom] = STATE(3287), - [sym_quoted_atom] = STATE(3287), - [sym__quoted_i_double] = STATE(3146), - [sym__quoted_i_single] = STATE(3147), - [sym__quoted_i_heredoc_single] = STATE(3147), - [sym__quoted_i_heredoc_double] = STATE(3146), - [sym_string] = STATE(3287), - [sym_charlist] = STATE(3287), - [sym_sigil] = STATE(3287), - [sym_list] = STATE(3287), - [sym_tuple] = STATE(3287), - [sym_bitstring] = STATE(3287), - [sym_map] = STATE(3287), - [sym_unary_operator] = STATE(3287), - [sym_binary_operator] = STATE(3287), - [sym_operator_identifier] = STATE(5049), - [sym_dot] = STATE(3287), - [sym_call] = STATE(3287), - [sym__call_without_parentheses] = STATE(3175), - [sym__call_with_parentheses] = STATE(3177), - [sym__local_call_without_parentheses] = STATE(3178), - [sym__local_call_with_parentheses] = STATE(2550), - [sym__local_call_just_do_block] = STATE(3183), - [sym__remote_call_without_parentheses] = STATE(3200), - [sym__remote_call_with_parentheses] = STATE(2583), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(2582), - [sym__anonymous_dot] = STATE(4866), - [sym__double_call] = STATE(3202), - [sym_access_call] = STATE(3287), - [sym_anonymous_function] = STATE(3287), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(15), - [sym_unused_identifier] = ACTIONS(17), - [anon_sym___MODULE__] = ACTIONS(19), - [anon_sym___DIR__] = ACTIONS(19), - [anon_sym___ENV__] = ACTIONS(19), - [anon_sym___CALLER__] = ACTIONS(19), - [anon_sym___STACKTRACE__] = ACTIONS(19), - [sym_alias] = ACTIONS(2381), - [sym_integer] = ACTIONS(2381), - [sym_float] = ACTIONS(2381), - [sym_char] = ACTIONS(2381), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_nil] = ACTIONS(25), - [sym_atom] = ACTIONS(2381), - [anon_sym_DQUOTE] = ACTIONS(27), - [anon_sym_SQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(41), - [anon_sym_LT_LT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(45), - [anon_sym_AMP] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(49), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_CARET] = ACTIONS(49), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), - [anon_sym_not] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(51), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(53), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(55), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(59), - }, - [785] = { - [sym__expression] = STATE(3497), - [sym_block] = STATE(3497), - [sym__identifier] = STATE(72), - [sym_identifier] = STATE(72), - [sym_special_identifier] = STATE(72), - [sym_boolean] = STATE(3497), - [sym_nil] = STATE(3497), - [sym__atom] = STATE(3497), - [sym_quoted_atom] = STATE(3497), - [sym__quoted_i_double] = STATE(3516), - [sym__quoted_i_single] = STATE(3518), - [sym__quoted_i_heredoc_single] = STATE(3518), - [sym__quoted_i_heredoc_double] = STATE(3516), - [sym_string] = STATE(3497), - [sym_charlist] = STATE(3497), - [sym_sigil] = STATE(3497), - [sym_list] = STATE(3497), - [sym_tuple] = STATE(3497), - [sym_bitstring] = STATE(3497), - [sym_map] = STATE(3497), - [sym_unary_operator] = STATE(3497), - [sym_binary_operator] = STATE(3497), - [sym_operator_identifier] = STATE(4972), - [sym_dot] = STATE(3497), - [sym_call] = STATE(3497), - [sym__call_without_parentheses] = STATE(3517), - [sym__call_with_parentheses] = STATE(3515), - [sym__local_call_without_parentheses] = STATE(3511), - [sym__local_call_with_parentheses] = STATE(3073), - [sym__local_call_just_do_block] = STATE(3510), - [sym__remote_call_without_parentheses] = STATE(3514), - [sym__remote_call_with_parentheses] = STATE(3088), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(3095), - [sym__anonymous_dot] = STATE(4928), - [sym__double_call] = STATE(3499), - [sym_access_call] = STATE(3497), - [sym_anonymous_function] = STATE(3497), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1123), - [aux_sym_identifier_token1] = ACTIONS(1125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1125), - [sym_unused_identifier] = ACTIONS(1127), - [anon_sym___MODULE__] = ACTIONS(1129), - [anon_sym___DIR__] = ACTIONS(1129), - [anon_sym___ENV__] = ACTIONS(1129), - [anon_sym___CALLER__] = ACTIONS(1129), - [anon_sym___STACKTRACE__] = ACTIONS(1129), - [sym_alias] = ACTIONS(1319), - [sym_integer] = ACTIONS(1319), - [sym_float] = ACTIONS(1319), - [sym_char] = ACTIONS(1319), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_nil] = ACTIONS(1135), - [sym_atom] = ACTIONS(1319), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(1147), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1149), - [anon_sym_LT_LT] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1161), - [anon_sym_not] = ACTIONS(1161), - [anon_sym_AT] = ACTIONS(1163), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1165), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1167), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1169), - }, - [786] = { - [sym__expression] = STATE(2054), - [sym_block] = STATE(2054), - [sym__identifier] = STATE(48), - [sym_identifier] = STATE(48), - [sym_special_identifier] = STATE(48), - [sym_boolean] = STATE(2054), - [sym_nil] = STATE(2054), - [sym__atom] = STATE(2054), - [sym_quoted_atom] = STATE(2054), - [sym__quoted_i_double] = STATE(1259), - [sym__quoted_i_single] = STATE(1258), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(2054), - [sym_charlist] = STATE(2054), - [sym_sigil] = STATE(2054), - [sym_list] = STATE(2054), - [sym_tuple] = STATE(2054), - [sym_bitstring] = STATE(2054), - [sym_map] = STATE(2054), - [sym_unary_operator] = STATE(2054), - [sym_binary_operator] = STATE(2054), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(2054), - [sym_call] = STATE(2054), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(2054), - [sym_anonymous_function] = STATE(2054), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(527), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(2383), - [sym_integer] = ACTIONS(2383), - [sym_float] = ACTIONS(2383), - [sym_char] = ACTIONS(2383), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(2383), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(531), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_BANG] = ACTIONS(537), - [anon_sym_CARET] = ACTIONS(537), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), - [anon_sym_not] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(539), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(541), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), - }, - [787] = { - [sym__expression] = STATE(1234), - [sym_block] = STATE(1234), - [sym__identifier] = STATE(48), - [sym_identifier] = STATE(48), - [sym_special_identifier] = STATE(48), - [sym_boolean] = STATE(1234), - [sym_nil] = STATE(1234), - [sym__atom] = STATE(1234), - [sym_quoted_atom] = STATE(1234), - [sym__quoted_i_double] = STATE(1259), - [sym__quoted_i_single] = STATE(1258), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(1234), - [sym_charlist] = STATE(1234), - [sym_sigil] = STATE(1234), - [sym_list] = STATE(1234), - [sym_tuple] = STATE(1234), - [sym_bitstring] = STATE(1234), - [sym_map] = STATE(1234), - [sym_unary_operator] = STATE(1234), - [sym_binary_operator] = STATE(1234), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(1234), - [sym_call] = STATE(1234), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(1234), - [sym_anonymous_function] = STATE(1234), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(527), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(2385), - [sym_integer] = ACTIONS(2385), - [sym_float] = ACTIONS(2385), - [sym_char] = ACTIONS(2385), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(2385), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(531), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_BANG] = ACTIONS(537), - [anon_sym_CARET] = ACTIONS(537), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), - [anon_sym_not] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(539), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(541), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), - }, - [788] = { - [sym__expression] = STATE(2109), - [sym_block] = STATE(2109), - [sym__identifier] = STATE(48), - [sym_identifier] = STATE(48), - [sym_special_identifier] = STATE(48), - [sym_boolean] = STATE(2109), - [sym_nil] = STATE(2109), - [sym__atom] = STATE(2109), - [sym_quoted_atom] = STATE(2109), - [sym__quoted_i_double] = STATE(1259), - [sym__quoted_i_single] = STATE(1258), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(2109), - [sym_charlist] = STATE(2109), - [sym_sigil] = STATE(2109), - [sym_list] = STATE(2109), - [sym_tuple] = STATE(2109), - [sym_bitstring] = STATE(2109), - [sym_map] = STATE(2109), - [sym_unary_operator] = STATE(2109), - [sym_binary_operator] = STATE(2109), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(2109), - [sym_call] = STATE(2109), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(2109), - [sym_anonymous_function] = STATE(2109), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(527), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(2387), - [sym_integer] = ACTIONS(2387), - [sym_float] = ACTIONS(2387), - [sym_char] = ACTIONS(2387), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(2387), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(531), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_BANG] = ACTIONS(537), - [anon_sym_CARET] = ACTIONS(537), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), - [anon_sym_not] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(539), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(541), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), - }, - [789] = { - [sym__expression] = STATE(3544), - [sym_block] = STATE(3544), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3544), - [sym_nil] = STATE(3544), - [sym__atom] = STATE(3544), - [sym_quoted_atom] = STATE(3544), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3544), - [sym_charlist] = STATE(3544), - [sym_sigil] = STATE(3544), - [sym_list] = STATE(3544), - [sym_tuple] = STATE(3544), - [sym_bitstring] = STATE(3544), - [sym_map] = STATE(3544), - [sym_unary_operator] = STATE(3544), - [sym_binary_operator] = STATE(3544), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3544), - [sym_call] = STATE(3544), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3544), - [sym_anonymous_function] = STATE(3544), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2389), - [sym_integer] = ACTIONS(2389), - [sym_float] = ACTIONS(2389), - [sym_char] = ACTIONS(2389), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2389), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [790] = { - [sym__expression] = STATE(1549), - [sym_block] = STATE(1549), - [sym__identifier] = STATE(14), - [sym_identifier] = STATE(14), - [sym_special_identifier] = STATE(14), - [sym_boolean] = STATE(1549), - [sym_nil] = STATE(1549), - [sym__atom] = STATE(1549), - [sym_quoted_atom] = STATE(1549), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(1549), - [sym_charlist] = STATE(1549), - [sym_sigil] = STATE(1549), - [sym_list] = STATE(1549), - [sym_tuple] = STATE(1549), - [sym_bitstring] = STATE(1549), - [sym_map] = STATE(1549), - [sym_unary_operator] = STATE(1549), - [sym_binary_operator] = STATE(1549), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(1549), - [sym_call] = STATE(1549), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(1549), - [sym_anonymous_function] = STATE(1549), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(197), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), - [sym_alias] = ACTIONS(2391), - [sym_integer] = ACTIONS(2391), - [sym_float] = ACTIONS(2391), - [sym_char] = ACTIONS(2391), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(2391), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(222), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(230), - [anon_sym_PLUS] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_CARET] = ACTIONS(235), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(235), - [anon_sym_not] = ACTIONS(235), - [anon_sym_AT] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(243), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [791] = { - [sym__expression] = STATE(1462), - [sym_block] = STATE(1462), - [sym__identifier] = STATE(14), - [sym_identifier] = STATE(14), - [sym_special_identifier] = STATE(14), - [sym_boolean] = STATE(1462), - [sym_nil] = STATE(1462), - [sym__atom] = STATE(1462), - [sym_quoted_atom] = STATE(1462), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(1462), - [sym_charlist] = STATE(1462), - [sym_sigil] = STATE(1462), - [sym_list] = STATE(1462), - [sym_tuple] = STATE(1462), - [sym_bitstring] = STATE(1462), - [sym_map] = STATE(1462), - [sym_unary_operator] = STATE(1462), - [sym_binary_operator] = STATE(1462), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(1462), - [sym_call] = STATE(1462), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(1462), - [sym_anonymous_function] = STATE(1462), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(197), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), - [sym_alias] = ACTIONS(1387), - [sym_integer] = ACTIONS(1387), - [sym_float] = ACTIONS(1387), - [sym_char] = ACTIONS(1387), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1387), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(222), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(230), - [anon_sym_PLUS] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_CARET] = ACTIONS(235), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(235), - [anon_sym_not] = ACTIONS(235), - [anon_sym_AT] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(243), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [792] = { - [sym__expression] = STATE(1435), - [sym_block] = STATE(1435), - [sym__identifier] = STATE(14), - [sym_identifier] = STATE(14), - [sym_special_identifier] = STATE(14), - [sym_boolean] = STATE(1435), - [sym_nil] = STATE(1435), - [sym__atom] = STATE(1435), - [sym_quoted_atom] = STATE(1435), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(1435), - [sym_charlist] = STATE(1435), - [sym_sigil] = STATE(1435), - [sym_list] = STATE(1435), - [sym_tuple] = STATE(1435), - [sym_bitstring] = STATE(1435), - [sym_map] = STATE(1435), - [sym_unary_operator] = STATE(1435), - [sym_binary_operator] = STATE(1435), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(1435), - [sym_call] = STATE(1435), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(1435), - [sym_anonymous_function] = STATE(1435), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(197), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), - [sym_alias] = ACTIONS(2393), - [sym_integer] = ACTIONS(2393), - [sym_float] = ACTIONS(2393), - [sym_char] = ACTIONS(2393), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(2393), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(222), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(230), - [anon_sym_PLUS] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_CARET] = ACTIONS(235), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(235), - [anon_sym_not] = ACTIONS(235), - [anon_sym_AT] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(243), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [793] = { - [sym__expression] = STATE(1547), - [sym_block] = STATE(1547), - [sym__identifier] = STATE(14), - [sym_identifier] = STATE(14), - [sym_special_identifier] = STATE(14), - [sym_boolean] = STATE(1547), - [sym_nil] = STATE(1547), - [sym__atom] = STATE(1547), - [sym_quoted_atom] = STATE(1547), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(1547), - [sym_charlist] = STATE(1547), - [sym_sigil] = STATE(1547), - [sym_list] = STATE(1547), - [sym_tuple] = STATE(1547), - [sym_bitstring] = STATE(1547), - [sym_map] = STATE(1547), - [sym_unary_operator] = STATE(1547), - [sym_binary_operator] = STATE(1547), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(1547), - [sym_call] = STATE(1547), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(1547), - [sym_anonymous_function] = STATE(1547), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(197), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), - [sym_alias] = ACTIONS(2395), - [sym_integer] = ACTIONS(2395), - [sym_float] = ACTIONS(2395), - [sym_char] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(2395), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(222), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(230), - [anon_sym_PLUS] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_CARET] = ACTIONS(235), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(235), - [anon_sym_not] = ACTIONS(235), - [anon_sym_AT] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(243), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [794] = { - [sym__expression] = STATE(1320), - [sym_block] = STATE(1320), - [sym__identifier] = STATE(18), - [sym_identifier] = STATE(18), - [sym_special_identifier] = STATE(18), - [sym_boolean] = STATE(1320), - [sym_nil] = STATE(1320), - [sym__atom] = STATE(1320), - [sym_quoted_atom] = STATE(1320), - [sym__quoted_i_double] = STATE(1259), - [sym__quoted_i_single] = STATE(1258), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(1320), - [sym_charlist] = STATE(1320), - [sym_sigil] = STATE(1320), - [sym_list] = STATE(1320), - [sym_tuple] = STATE(1320), - [sym_bitstring] = STATE(1320), - [sym_map] = STATE(1320), - [sym_unary_operator] = STATE(1320), - [sym_binary_operator] = STATE(1320), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(1320), - [sym_call] = STATE(1320), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(1320), - [sym_anonymous_function] = STATE(1320), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(256), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), - [sym_alias] = ACTIONS(2397), - [sym_integer] = ACTIONS(2397), - [sym_float] = ACTIONS(2397), - [sym_char] = ACTIONS(2397), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(2397), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(286), - [anon_sym_not] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(294), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), - }, - [795] = { - [sym__expression] = STATE(1243), - [sym_block] = STATE(1243), - [sym__identifier] = STATE(48), - [sym_identifier] = STATE(48), - [sym_special_identifier] = STATE(48), - [sym_boolean] = STATE(1243), - [sym_nil] = STATE(1243), - [sym__atom] = STATE(1243), - [sym_quoted_atom] = STATE(1243), - [sym__quoted_i_double] = STATE(1259), - [sym__quoted_i_single] = STATE(1258), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(1243), - [sym_charlist] = STATE(1243), - [sym_sigil] = STATE(1243), - [sym_list] = STATE(1243), - [sym_tuple] = STATE(1243), - [sym_bitstring] = STATE(1243), - [sym_map] = STATE(1243), - [sym_unary_operator] = STATE(1243), - [sym_binary_operator] = STATE(1243), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(1243), - [sym_call] = STATE(1243), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(1243), - [sym_anonymous_function] = STATE(1243), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(527), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(2399), - [sym_integer] = ACTIONS(2399), - [sym_float] = ACTIONS(2399), - [sym_char] = ACTIONS(2399), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(2399), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(531), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_BANG] = ACTIONS(537), - [anon_sym_CARET] = ACTIONS(537), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), - [anon_sym_not] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(539), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(541), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), - }, - [796] = { - [sym__expression] = STATE(2120), - [sym_block] = STATE(2120), - [sym__identifier] = STATE(48), - [sym_identifier] = STATE(48), - [sym_special_identifier] = STATE(48), - [sym_boolean] = STATE(2120), - [sym_nil] = STATE(2120), - [sym__atom] = STATE(2120), - [sym_quoted_atom] = STATE(2120), - [sym__quoted_i_double] = STATE(1259), - [sym__quoted_i_single] = STATE(1258), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(2120), - [sym_charlist] = STATE(2120), - [sym_sigil] = STATE(2120), - [sym_list] = STATE(2120), - [sym_tuple] = STATE(2120), - [sym_bitstring] = STATE(2120), - [sym_map] = STATE(2120), - [sym_unary_operator] = STATE(2120), - [sym_binary_operator] = STATE(2120), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(2120), - [sym_call] = STATE(2120), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(2120), - [sym_anonymous_function] = STATE(2120), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(527), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(2401), - [sym_integer] = ACTIONS(2401), - [sym_float] = ACTIONS(2401), - [sym_char] = ACTIONS(2401), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(2401), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(531), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_BANG] = ACTIONS(537), - [anon_sym_CARET] = ACTIONS(537), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), - [anon_sym_not] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(539), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(541), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), - }, - [797] = { - [sym__expression] = STATE(2108), - [sym_block] = STATE(2108), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(2108), - [sym_nil] = STATE(2108), - [sym__atom] = STATE(2108), - [sym_quoted_atom] = STATE(2108), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2108), - [sym_charlist] = STATE(2108), - [sym_sigil] = STATE(2108), - [sym_list] = STATE(2108), - [sym_tuple] = STATE(2108), - [sym_bitstring] = STATE(2108), - [sym_map] = STATE(2108), - [sym_unary_operator] = STATE(2108), - [sym_binary_operator] = STATE(2108), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2108), - [sym_call] = STATE(2108), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(2108), - [sym_anonymous_function] = STATE(2108), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(2639), + [sym_anonymous_function] = STATE(2639), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), [aux_sym_identifier_token1] = ACTIONS(67), @@ -126669,84 +114557,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(982), }, - [798] = { - [sym__expression] = STATE(1387), - [sym_block] = STATE(1387), - [sym__identifier] = STATE(14), - [sym_identifier] = STATE(14), - [sym_special_identifier] = STATE(14), - [sym_boolean] = STATE(1387), - [sym_nil] = STATE(1387), - [sym__atom] = STATE(1387), - [sym_quoted_atom] = STATE(1387), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(1387), - [sym_charlist] = STATE(1387), - [sym_sigil] = STATE(1387), - [sym_list] = STATE(1387), - [sym_tuple] = STATE(1387), - [sym_bitstring] = STATE(1387), - [sym_map] = STATE(1387), - [sym_unary_operator] = STATE(1387), - [sym_binary_operator] = STATE(1387), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(1387), - [sym_call] = STATE(1387), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(1387), - [sym_anonymous_function] = STATE(1387), + [696] = { + [sym__expression] = STATE(4041), + [sym_block] = STATE(4041), + [sym__identifier] = STATE(66), + [sym_identifier] = STATE(66), + [sym_special_identifier] = STATE(66), + [sym_boolean] = STATE(4041), + [sym_nil] = STATE(4041), + [sym__atom] = STATE(4041), + [sym_quoted_atom] = STATE(4041), + [sym__quoted_i_double] = STATE(4034), + [sym__quoted_i_single] = STATE(4021), + [sym__quoted_i_heredoc_single] = STATE(4077), + [sym__quoted_i_heredoc_double] = STATE(4083), + [sym_string] = STATE(4041), + [sym_charlist] = STATE(4041), + [sym_sigil] = STATE(4041), + [sym_list] = STATE(4041), + [sym_tuple] = STATE(4041), + [sym_bitstring] = STATE(4041), + [sym_map] = STATE(4041), + [sym_unary_operator] = STATE(4041), + [sym_binary_operator] = STATE(4041), + [sym_operator_identifier] = STATE(5580), + [sym_dot] = STATE(4041), + [sym_call] = STATE(4041), + [sym__call_without_parentheses] = STATE(4089), + [sym__call_with_parentheses] = STATE(4092), + [sym__local_call_without_parentheses] = STATE(4097), + [sym__local_call_with_parentheses] = STATE(3372), + [sym__local_call_just_do_block] = STATE(4098), + [sym__remote_call_without_parentheses] = STATE(4105), + [sym__remote_call_with_parentheses] = STATE(3374), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3375), + [sym__anonymous_dot] = STATE(5531), + [sym__double_call] = STATE(4106), + [sym_access_call] = STATE(4041), + [sym_anonymous_function] = STATE(4041), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(197), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), - [sym_alias] = ACTIONS(1791), - [sym_integer] = ACTIONS(1791), - [sym_float] = ACTIONS(1791), - [sym_char] = ACTIONS(1791), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1791), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LPAREN] = ACTIONS(1133), + [aux_sym_identifier_token1] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1135), + [sym_unused_identifier] = ACTIONS(1137), + [anon_sym___MODULE__] = ACTIONS(1139), + [anon_sym___DIR__] = ACTIONS(1139), + [anon_sym___ENV__] = ACTIONS(1139), + [anon_sym___CALLER__] = ACTIONS(1139), + [anon_sym___STACKTRACE__] = ACTIONS(1139), + [sym_alias] = ACTIONS(1319), + [sym_integer] = ACTIONS(1319), + [sym_float] = ACTIONS(1319), + [sym_char] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [anon_sym_nil] = ACTIONS(1145), + [sym_atom] = ACTIONS(1319), + [anon_sym_DQUOTE] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1151), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1157), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(222), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(230), - [anon_sym_PLUS] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_CARET] = ACTIONS(235), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(235), - [anon_sym_not] = ACTIONS(235), - [anon_sym_AT] = ACTIONS(237), + [anon_sym_TILDE] = ACTIONS(1159), + [anon_sym_LT_LT] = ACTIONS(1163), + [anon_sym_PERCENT] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_AT] = ACTIONS(1173), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -126786,92 +114674,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), + [anon_sym_fn] = ACTIONS(1175), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(243), + [sym__before_unary_op] = ACTIONS(1177), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), + [sym__quoted_atom_start] = ACTIONS(1179), }, - [799] = { - [sym__expression] = STATE(3476), - [sym_block] = STATE(3476), - [sym__identifier] = STATE(72), - [sym_identifier] = STATE(72), - [sym_special_identifier] = STATE(72), - [sym_boolean] = STATE(3476), - [sym_nil] = STATE(3476), - [sym__atom] = STATE(3476), - [sym_quoted_atom] = STATE(3476), - [sym__quoted_i_double] = STATE(3516), - [sym__quoted_i_single] = STATE(3518), - [sym__quoted_i_heredoc_single] = STATE(3518), - [sym__quoted_i_heredoc_double] = STATE(3516), - [sym_string] = STATE(3476), - [sym_charlist] = STATE(3476), - [sym_sigil] = STATE(3476), - [sym_list] = STATE(3476), - [sym_tuple] = STATE(3476), - [sym_bitstring] = STATE(3476), - [sym_map] = STATE(3476), - [sym_unary_operator] = STATE(3476), - [sym_binary_operator] = STATE(3476), - [sym_operator_identifier] = STATE(4972), - [sym_dot] = STATE(3476), - [sym_call] = STATE(3476), - [sym__call_without_parentheses] = STATE(3517), - [sym__call_with_parentheses] = STATE(3515), - [sym__local_call_without_parentheses] = STATE(3511), - [sym__local_call_with_parentheses] = STATE(3073), - [sym__local_call_just_do_block] = STATE(3510), - [sym__remote_call_without_parentheses] = STATE(3514), - [sym__remote_call_with_parentheses] = STATE(3088), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(3095), - [sym__anonymous_dot] = STATE(4928), - [sym__double_call] = STATE(3499), - [sym_access_call] = STATE(3476), - [sym_anonymous_function] = STATE(3476), + [697] = { + [sym__expression] = STATE(3959), + [sym_block] = STATE(3959), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3959), + [sym_nil] = STATE(3959), + [sym__atom] = STATE(3959), + [sym_quoted_atom] = STATE(3959), + [sym__quoted_i_double] = STATE(3664), + [sym__quoted_i_single] = STATE(3697), + [sym__quoted_i_heredoc_single] = STATE(3698), + [sym__quoted_i_heredoc_double] = STATE(3702), + [sym_string] = STATE(3959), + [sym_charlist] = STATE(3959), + [sym_sigil] = STATE(3959), + [sym_list] = STATE(3959), + [sym_tuple] = STATE(3959), + [sym_bitstring] = STATE(3959), + [sym_map] = STATE(3959), + [sym_unary_operator] = STATE(3959), + [sym_binary_operator] = STATE(3959), + [sym_operator_identifier] = STATE(5655), + [sym_dot] = STATE(3959), + [sym_call] = STATE(3959), + [sym__call_without_parentheses] = STATE(3705), + [sym__call_with_parentheses] = STATE(3725), + [sym__local_call_without_parentheses] = STATE(3765), + [sym__local_call_with_parentheses] = STATE(2681), + [sym__local_call_just_do_block] = STATE(3808), + [sym__remote_call_without_parentheses] = STATE(3810), + [sym__remote_call_with_parentheses] = STATE(2682), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2683), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(3811), + [sym_access_call] = STATE(3959), + [sym_anonymous_function] = STATE(3959), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1123), - [aux_sym_identifier_token1] = ACTIONS(1125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1125), - [sym_unused_identifier] = ACTIONS(1127), - [anon_sym___MODULE__] = ACTIONS(1129), - [anon_sym___DIR__] = ACTIONS(1129), - [anon_sym___ENV__] = ACTIONS(1129), - [anon_sym___CALLER__] = ACTIONS(1129), - [anon_sym___STACKTRACE__] = ACTIONS(1129), - [sym_alias] = ACTIONS(2403), - [sym_integer] = ACTIONS(2403), - [sym_float] = ACTIONS(2403), - [sym_char] = ACTIONS(2403), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_nil] = ACTIONS(1135), - [sym_atom] = ACTIONS(2403), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), + [sym_alias] = ACTIONS(2235), + [sym_integer] = ACTIONS(2235), + [sym_float] = ACTIONS(2235), + [sym_char] = ACTIONS(2235), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), + [sym_atom] = ACTIONS(2235), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1149), - [anon_sym_LT_LT] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1161), - [anon_sym_not] = ACTIONS(1161), - [anon_sym_AT] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -126911,92 +114799,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1165), + [anon_sym_fn] = ACTIONS(53), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1167), + [sym__before_unary_op] = ACTIONS(55), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1169), + [sym__quoted_atom_start] = ACTIONS(59), }, - [800] = { - [sym__expression] = STATE(3152), - [sym_block] = STATE(3152), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3152), - [sym_nil] = STATE(3152), - [sym__atom] = STATE(3152), - [sym_quoted_atom] = STATE(3152), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3152), - [sym_charlist] = STATE(3152), - [sym_sigil] = STATE(3152), - [sym_list] = STATE(3152), - [sym_tuple] = STATE(3152), - [sym_bitstring] = STATE(3152), - [sym_map] = STATE(3152), - [sym_unary_operator] = STATE(3152), - [sym_binary_operator] = STATE(3152), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3152), - [sym_call] = STATE(3152), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3152), - [sym_anonymous_function] = STATE(3152), + [698] = { + [sym__expression] = STATE(3963), + [sym_block] = STATE(3963), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3963), + [sym_nil] = STATE(3963), + [sym__atom] = STATE(3963), + [sym_quoted_atom] = STATE(3963), + [sym__quoted_i_double] = STATE(3664), + [sym__quoted_i_single] = STATE(3697), + [sym__quoted_i_heredoc_single] = STATE(3698), + [sym__quoted_i_heredoc_double] = STATE(3702), + [sym_string] = STATE(3963), + [sym_charlist] = STATE(3963), + [sym_sigil] = STATE(3963), + [sym_list] = STATE(3963), + [sym_tuple] = STATE(3963), + [sym_bitstring] = STATE(3963), + [sym_map] = STATE(3963), + [sym_unary_operator] = STATE(3963), + [sym_binary_operator] = STATE(3963), + [sym_operator_identifier] = STATE(5655), + [sym_dot] = STATE(3963), + [sym_call] = STATE(3963), + [sym__call_without_parentheses] = STATE(3705), + [sym__call_with_parentheses] = STATE(3725), + [sym__local_call_without_parentheses] = STATE(3765), + [sym__local_call_with_parentheses] = STATE(2681), + [sym__local_call_just_do_block] = STATE(3808), + [sym__remote_call_without_parentheses] = STATE(3810), + [sym__remote_call_with_parentheses] = STATE(2682), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2683), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(3811), + [sym_access_call] = STATE(3963), + [sym_anonymous_function] = STATE(3963), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(2405), - [sym_integer] = ACTIONS(2405), - [sym_float] = ACTIONS(2405), - [sym_char] = ACTIONS(2405), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(2405), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), + [sym_alias] = ACTIONS(2237), + [sym_integer] = ACTIONS(2237), + [sym_float] = ACTIONS(2237), + [sym_char] = ACTIONS(2237), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), + [sym_atom] = ACTIONS(2237), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -127036,92 +114924,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(53), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), + [sym__before_unary_op] = ACTIONS(55), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), + [sym__quoted_atom_start] = ACTIONS(59), }, - [801] = { - [sym__expression] = STATE(3475), - [sym_block] = STATE(3475), - [sym__identifier] = STATE(72), - [sym_identifier] = STATE(72), - [sym_special_identifier] = STATE(72), - [sym_boolean] = STATE(3475), - [sym_nil] = STATE(3475), - [sym__atom] = STATE(3475), - [sym_quoted_atom] = STATE(3475), - [sym__quoted_i_double] = STATE(3516), - [sym__quoted_i_single] = STATE(3518), - [sym__quoted_i_heredoc_single] = STATE(3518), - [sym__quoted_i_heredoc_double] = STATE(3516), - [sym_string] = STATE(3475), - [sym_charlist] = STATE(3475), - [sym_sigil] = STATE(3475), - [sym_list] = STATE(3475), - [sym_tuple] = STATE(3475), - [sym_bitstring] = STATE(3475), - [sym_map] = STATE(3475), - [sym_unary_operator] = STATE(3475), - [sym_binary_operator] = STATE(3475), - [sym_operator_identifier] = STATE(4972), - [sym_dot] = STATE(3475), - [sym_call] = STATE(3475), - [sym__call_without_parentheses] = STATE(3517), - [sym__call_with_parentheses] = STATE(3515), - [sym__local_call_without_parentheses] = STATE(3511), - [sym__local_call_with_parentheses] = STATE(3073), - [sym__local_call_just_do_block] = STATE(3510), - [sym__remote_call_without_parentheses] = STATE(3514), - [sym__remote_call_with_parentheses] = STATE(3088), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(3095), - [sym__anonymous_dot] = STATE(4928), - [sym__double_call] = STATE(3499), - [sym_access_call] = STATE(3475), - [sym_anonymous_function] = STATE(3475), + [699] = { + [sym__expression] = STATE(3962), + [sym_block] = STATE(3962), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3962), + [sym_nil] = STATE(3962), + [sym__atom] = STATE(3962), + [sym_quoted_atom] = STATE(3962), + [sym__quoted_i_double] = STATE(3664), + [sym__quoted_i_single] = STATE(3697), + [sym__quoted_i_heredoc_single] = STATE(3698), + [sym__quoted_i_heredoc_double] = STATE(3702), + [sym_string] = STATE(3962), + [sym_charlist] = STATE(3962), + [sym_sigil] = STATE(3962), + [sym_list] = STATE(3962), + [sym_tuple] = STATE(3962), + [sym_bitstring] = STATE(3962), + [sym_map] = STATE(3962), + [sym_unary_operator] = STATE(3962), + [sym_binary_operator] = STATE(3962), + [sym_operator_identifier] = STATE(5655), + [sym_dot] = STATE(3962), + [sym_call] = STATE(3962), + [sym__call_without_parentheses] = STATE(3705), + [sym__call_with_parentheses] = STATE(3725), + [sym__local_call_without_parentheses] = STATE(3765), + [sym__local_call_with_parentheses] = STATE(2681), + [sym__local_call_just_do_block] = STATE(3808), + [sym__remote_call_without_parentheses] = STATE(3810), + [sym__remote_call_with_parentheses] = STATE(2682), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2683), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(3811), + [sym_access_call] = STATE(3962), + [sym_anonymous_function] = STATE(3962), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1123), - [aux_sym_identifier_token1] = ACTIONS(1125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1125), - [sym_unused_identifier] = ACTIONS(1127), - [anon_sym___MODULE__] = ACTIONS(1129), - [anon_sym___DIR__] = ACTIONS(1129), - [anon_sym___ENV__] = ACTIONS(1129), - [anon_sym___CALLER__] = ACTIONS(1129), - [anon_sym___STACKTRACE__] = ACTIONS(1129), - [sym_alias] = ACTIONS(2407), - [sym_integer] = ACTIONS(2407), - [sym_float] = ACTIONS(2407), - [sym_char] = ACTIONS(2407), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_nil] = ACTIONS(1135), - [sym_atom] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), + [sym_alias] = ACTIONS(2239), + [sym_integer] = ACTIONS(2239), + [sym_float] = ACTIONS(2239), + [sym_char] = ACTIONS(2239), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), + [sym_atom] = ACTIONS(2239), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1149), - [anon_sym_LT_LT] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1161), - [anon_sym_not] = ACTIONS(1161), - [anon_sym_AT] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -127161,71 +115049,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1165), + [anon_sym_fn] = ACTIONS(53), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1167), + [sym__before_unary_op] = ACTIONS(55), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1169), + [sym__quoted_atom_start] = ACTIONS(59), }, - [802] = { - [sym__expression] = STATE(3520), - [sym_block] = STATE(3520), - [sym__identifier] = STATE(95), - [sym_identifier] = STATE(95), - [sym_special_identifier] = STATE(95), - [sym_boolean] = STATE(3520), - [sym_nil] = STATE(3520), - [sym__atom] = STATE(3520), - [sym_quoted_atom] = STATE(3520), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3520), - [sym_charlist] = STATE(3520), - [sym_sigil] = STATE(3520), - [sym_list] = STATE(3520), - [sym_tuple] = STATE(3520), - [sym_bitstring] = STATE(3520), - [sym_map] = STATE(3520), - [sym_unary_operator] = STATE(3520), - [sym_binary_operator] = STATE(3520), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3520), - [sym_call] = STATE(3520), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(65), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3520), - [sym_anonymous_function] = STATE(3520), + [700] = { + [sym__expression] = STATE(3961), + [sym_block] = STATE(3961), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3961), + [sym_nil] = STATE(3961), + [sym__atom] = STATE(3961), + [sym_quoted_atom] = STATE(3961), + [sym__quoted_i_double] = STATE(3664), + [sym__quoted_i_single] = STATE(3697), + [sym__quoted_i_heredoc_single] = STATE(3698), + [sym__quoted_i_heredoc_double] = STATE(3702), + [sym_string] = STATE(3961), + [sym_charlist] = STATE(3961), + [sym_sigil] = STATE(3961), + [sym_list] = STATE(3961), + [sym_tuple] = STATE(3961), + [sym_bitstring] = STATE(3961), + [sym_map] = STATE(3961), + [sym_unary_operator] = STATE(3961), + [sym_binary_operator] = STATE(3961), + [sym_operator_identifier] = STATE(5655), + [sym_dot] = STATE(3961), + [sym_call] = STATE(3961), + [sym__call_without_parentheses] = STATE(3705), + [sym__call_with_parentheses] = STATE(3725), + [sym__local_call_without_parentheses] = STATE(3765), + [sym__local_call_with_parentheses] = STATE(2681), + [sym__local_call_just_do_block] = STATE(3808), + [sym__remote_call_without_parentheses] = STATE(3810), + [sym__remote_call_with_parentheses] = STATE(2682), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2683), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(3811), + [sym_access_call] = STATE(3961), + [sym_anonymous_function] = STATE(3961), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), + [sym_alias] = ACTIONS(2241), + [sym_integer] = ACTIONS(2241), + [sym_float] = ACTIONS(2241), + [sym_char] = ACTIONS(2241), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), + [sym_atom] = ACTIONS(2241), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(55), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(59), + }, + [701] = { + [sym__expression] = STATE(3174), + [sym_block] = STATE(3174), + [sym__identifier] = STATE(93), + [sym_identifier] = STATE(93), + [sym_special_identifier] = STATE(93), + [sym_boolean] = STATE(3174), + [sym_nil] = STATE(3174), + [sym__atom] = STATE(3174), + [sym_quoted_atom] = STATE(3174), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3174), + [sym_charlist] = STATE(3174), + [sym_sigil] = STATE(3174), + [sym_list] = STATE(3174), + [sym_tuple] = STATE(3174), + [sym_bitstring] = STATE(3174), + [sym_map] = STATE(3174), + [sym_unary_operator] = STATE(3174), + [sym_binary_operator] = STATE(3174), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3174), + [sym_call] = STATE(3174), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(72), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3174), + [sym_anonymous_function] = STATE(3174), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), [aux_sym_identifier_token1] = ACTIONS(826), [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1509), + [sym_unused_identifier] = ACTIONS(1499), [anon_sym___MODULE__] = ACTIONS(830), [anon_sym___DIR__] = ACTIONS(830), [anon_sym___ENV__] = ACTIONS(830), [anon_sym___CALLER__] = ACTIONS(830), [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2409), - [sym_integer] = ACTIONS(2409), - [sym_float] = ACTIONS(2409), - [sym_char] = ACTIONS(2409), + [sym_alias] = ACTIONS(2243), + [sym_integer] = ACTIONS(2243), + [sym_float] = ACTIONS(2243), + [sym_char] = ACTIONS(2243), [anon_sym_true] = ACTIONS(1073), [anon_sym_false] = ACTIONS(1073), [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2409), + [sym_atom] = ACTIONS(2243), [anon_sym_DQUOTE] = ACTIONS(1077), [anon_sym_SQUOTE] = ACTIONS(1079), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), @@ -127235,18 +115248,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1062), [anon_sym_TILDE] = ACTIONS(1091), [anon_sym_LT_LT] = ACTIONS(1095), [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1517), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1517), - [anon_sym_not] = ACTIONS(1517), - [anon_sym_AT] = ACTIONS(1519), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1507), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AT] = ACTIONS(1509), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -127290,24 +115303,5149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1521), + [sym__before_unary_op] = ACTIONS(1511), [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(1109), }, - [803] = { + [702] = { + [sym__expression] = STATE(3173), + [sym_block] = STATE(3173), + [sym__identifier] = STATE(93), + [sym_identifier] = STATE(93), + [sym_special_identifier] = STATE(93), + [sym_boolean] = STATE(3173), + [sym_nil] = STATE(3173), + [sym__atom] = STATE(3173), + [sym_quoted_atom] = STATE(3173), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3173), + [sym_charlist] = STATE(3173), + [sym_sigil] = STATE(3173), + [sym_list] = STATE(3173), + [sym_tuple] = STATE(3173), + [sym_bitstring] = STATE(3173), + [sym_map] = STATE(3173), + [sym_unary_operator] = STATE(3173), + [sym_binary_operator] = STATE(3173), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3173), + [sym_call] = STATE(3173), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(72), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3173), + [sym_anonymous_function] = STATE(3173), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1499), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2245), + [sym_integer] = ACTIONS(2245), + [sym_float] = ACTIONS(2245), + [sym_char] = ACTIONS(2245), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1507), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AT] = ACTIONS(1509), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1511), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [703] = { + [sym__expression] = STATE(4153), + [sym_block] = STATE(4153), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(4153), + [sym_nil] = STATE(4153), + [sym__atom] = STATE(4153), + [sym_quoted_atom] = STATE(4153), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4153), + [sym_charlist] = STATE(4153), + [sym_sigil] = STATE(4153), + [sym_list] = STATE(4153), + [sym_tuple] = STATE(4153), + [sym_bitstring] = STATE(4153), + [sym_map] = STATE(4153), + [sym_unary_operator] = STATE(4153), + [sym_binary_operator] = STATE(4153), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4153), + [sym_call] = STATE(4153), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4153), + [sym_anonymous_function] = STATE(4153), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2247), + [sym_integer] = ACTIONS(2247), + [sym_float] = ACTIONS(2247), + [sym_char] = ACTIONS(2247), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [704] = { + [sym__expression] = STATE(3158), + [sym_block] = STATE(3158), + [sym__identifier] = STATE(93), + [sym_identifier] = STATE(93), + [sym_special_identifier] = STATE(93), + [sym_boolean] = STATE(3158), + [sym_nil] = STATE(3158), + [sym__atom] = STATE(3158), + [sym_quoted_atom] = STATE(3158), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3158), + [sym_charlist] = STATE(3158), + [sym_sigil] = STATE(3158), + [sym_list] = STATE(3158), + [sym_tuple] = STATE(3158), + [sym_bitstring] = STATE(3158), + [sym_map] = STATE(3158), + [sym_unary_operator] = STATE(3158), + [sym_binary_operator] = STATE(3158), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3158), + [sym_call] = STATE(3158), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(72), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3158), + [sym_anonymous_function] = STATE(3158), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1499), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2249), + [sym_integer] = ACTIONS(2249), + [sym_float] = ACTIONS(2249), + [sym_char] = ACTIONS(2249), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(2249), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1507), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AT] = ACTIONS(1509), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1511), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [705] = { + [sym__expression] = STATE(3157), + [sym_block] = STATE(3157), + [sym__identifier] = STATE(93), + [sym_identifier] = STATE(93), + [sym_special_identifier] = STATE(93), + [sym_boolean] = STATE(3157), + [sym_nil] = STATE(3157), + [sym__atom] = STATE(3157), + [sym_quoted_atom] = STATE(3157), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3157), + [sym_charlist] = STATE(3157), + [sym_sigil] = STATE(3157), + [sym_list] = STATE(3157), + [sym_tuple] = STATE(3157), + [sym_bitstring] = STATE(3157), + [sym_map] = STATE(3157), + [sym_unary_operator] = STATE(3157), + [sym_binary_operator] = STATE(3157), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3157), + [sym_call] = STATE(3157), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(72), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3157), + [sym_anonymous_function] = STATE(3157), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1499), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2251), + [sym_integer] = ACTIONS(2251), + [sym_float] = ACTIONS(2251), + [sym_char] = ACTIONS(2251), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(2251), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1507), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AT] = ACTIONS(1509), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1511), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [706] = { + [sym__expression] = STATE(1824), + [sym_block] = STATE(1824), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(1824), + [sym_nil] = STATE(1824), + [sym__atom] = STATE(1824), + [sym_quoted_atom] = STATE(1824), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(1824), + [sym_charlist] = STATE(1824), + [sym_sigil] = STATE(1824), + [sym_list] = STATE(1824), + [sym_tuple] = STATE(1824), + [sym_bitstring] = STATE(1824), + [sym_map] = STATE(1824), + [sym_unary_operator] = STATE(1824), + [sym_binary_operator] = STATE(1824), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(1824), + [sym_call] = STATE(1824), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(1824), + [sym_anonymous_function] = STATE(1824), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(1771), + [sym_integer] = ACTIONS(1771), + [sym_float] = ACTIONS(1771), + [sym_char] = ACTIONS(1771), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [707] = { + [sym__expression] = STATE(2189), + [sym_block] = STATE(2189), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2189), + [sym_nil] = STATE(2189), + [sym__atom] = STATE(2189), + [sym_quoted_atom] = STATE(2189), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2189), + [sym_charlist] = STATE(2189), + [sym_sigil] = STATE(2189), + [sym_list] = STATE(2189), + [sym_tuple] = STATE(2189), + [sym_bitstring] = STATE(2189), + [sym_map] = STATE(2189), + [sym_unary_operator] = STATE(2189), + [sym_binary_operator] = STATE(2189), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2189), + [sym_call] = STATE(2189), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(2189), + [sym_anonymous_function] = STATE(2189), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(2253), + [sym_integer] = ACTIONS(2253), + [sym_float] = ACTIONS(2253), + [sym_char] = ACTIONS(2253), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2253), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [708] = { + [sym__expression] = STATE(4099), + [sym_block] = STATE(4099), + [sym__identifier] = STATE(93), + [sym_identifier] = STATE(93), + [sym_special_identifier] = STATE(93), + [sym_boolean] = STATE(4099), + [sym_nil] = STATE(4099), + [sym__atom] = STATE(4099), + [sym_quoted_atom] = STATE(4099), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4099), + [sym_charlist] = STATE(4099), + [sym_sigil] = STATE(4099), + [sym_list] = STATE(4099), + [sym_tuple] = STATE(4099), + [sym_bitstring] = STATE(4099), + [sym_map] = STATE(4099), + [sym_unary_operator] = STATE(4099), + [sym_binary_operator] = STATE(4099), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4099), + [sym_call] = STATE(4099), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(72), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4099), + [sym_anonymous_function] = STATE(4099), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1499), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2255), + [sym_integer] = ACTIONS(2255), + [sym_float] = ACTIONS(2255), + [sym_char] = ACTIONS(2255), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(2255), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1507), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AT] = ACTIONS(1509), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1511), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [709] = { + [sym__expression] = STATE(1424), + [sym_block] = STATE(1424), + [sym__identifier] = STATE(18), + [sym_identifier] = STATE(18), + [sym_special_identifier] = STATE(18), + [sym_boolean] = STATE(1424), + [sym_nil] = STATE(1424), + [sym__atom] = STATE(1424), + [sym_quoted_atom] = STATE(1424), + [sym__quoted_i_double] = STATE(1250), + [sym__quoted_i_single] = STATE(1249), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(1424), + [sym_charlist] = STATE(1424), + [sym_sigil] = STATE(1424), + [sym_list] = STATE(1424), + [sym_tuple] = STATE(1424), + [sym_bitstring] = STATE(1424), + [sym_map] = STATE(1424), + [sym_unary_operator] = STATE(1424), + [sym_binary_operator] = STATE(1424), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(1424), + [sym_call] = STATE(1424), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(1424), + [sym_anonymous_function] = STATE(1424), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(1427), + [sym_integer] = ACTIONS(1427), + [sym_float] = ACTIONS(1427), + [sym_char] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(1427), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [710] = { + [sym__expression] = STATE(4093), + [sym_block] = STATE(4093), + [sym__identifier] = STATE(93), + [sym_identifier] = STATE(93), + [sym_special_identifier] = STATE(93), + [sym_boolean] = STATE(4093), + [sym_nil] = STATE(4093), + [sym__atom] = STATE(4093), + [sym_quoted_atom] = STATE(4093), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4093), + [sym_charlist] = STATE(4093), + [sym_sigil] = STATE(4093), + [sym_list] = STATE(4093), + [sym_tuple] = STATE(4093), + [sym_bitstring] = STATE(4093), + [sym_map] = STATE(4093), + [sym_unary_operator] = STATE(4093), + [sym_binary_operator] = STATE(4093), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4093), + [sym_call] = STATE(4093), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(72), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4093), + [sym_anonymous_function] = STATE(4093), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1499), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2257), + [sym_integer] = ACTIONS(2257), + [sym_float] = ACTIONS(2257), + [sym_char] = ACTIONS(2257), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(2257), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1507), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AT] = ACTIONS(1509), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1511), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [711] = { + [sym__expression] = STATE(4087), + [sym_block] = STATE(4087), + [sym__identifier] = STATE(93), + [sym_identifier] = STATE(93), + [sym_special_identifier] = STATE(93), + [sym_boolean] = STATE(4087), + [sym_nil] = STATE(4087), + [sym__atom] = STATE(4087), + [sym_quoted_atom] = STATE(4087), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4087), + [sym_charlist] = STATE(4087), + [sym_sigil] = STATE(4087), + [sym_list] = STATE(4087), + [sym_tuple] = STATE(4087), + [sym_bitstring] = STATE(4087), + [sym_map] = STATE(4087), + [sym_unary_operator] = STATE(4087), + [sym_binary_operator] = STATE(4087), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4087), + [sym_call] = STATE(4087), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(72), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4087), + [sym_anonymous_function] = STATE(4087), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1499), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2259), + [sym_integer] = ACTIONS(2259), + [sym_float] = ACTIONS(2259), + [sym_char] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(2259), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1507), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AT] = ACTIONS(1509), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1511), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [712] = { + [sym__expression] = STATE(4086), + [sym_block] = STATE(4086), + [sym__identifier] = STATE(93), + [sym_identifier] = STATE(93), + [sym_special_identifier] = STATE(93), + [sym_boolean] = STATE(4086), + [sym_nil] = STATE(4086), + [sym__atom] = STATE(4086), + [sym_quoted_atom] = STATE(4086), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4086), + [sym_charlist] = STATE(4086), + [sym_sigil] = STATE(4086), + [sym_list] = STATE(4086), + [sym_tuple] = STATE(4086), + [sym_bitstring] = STATE(4086), + [sym_map] = STATE(4086), + [sym_unary_operator] = STATE(4086), + [sym_binary_operator] = STATE(4086), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4086), + [sym_call] = STATE(4086), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(72), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4086), + [sym_anonymous_function] = STATE(4086), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1499), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2261), + [sym_integer] = ACTIONS(2261), + [sym_float] = ACTIONS(2261), + [sym_char] = ACTIONS(2261), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(2261), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1507), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AT] = ACTIONS(1509), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1511), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [713] = { + [sym__expression] = STATE(4085), + [sym_block] = STATE(4085), + [sym__identifier] = STATE(93), + [sym_identifier] = STATE(93), + [sym_special_identifier] = STATE(93), + [sym_boolean] = STATE(4085), + [sym_nil] = STATE(4085), + [sym__atom] = STATE(4085), + [sym_quoted_atom] = STATE(4085), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4085), + [sym_charlist] = STATE(4085), + [sym_sigil] = STATE(4085), + [sym_list] = STATE(4085), + [sym_tuple] = STATE(4085), + [sym_bitstring] = STATE(4085), + [sym_map] = STATE(4085), + [sym_unary_operator] = STATE(4085), + [sym_binary_operator] = STATE(4085), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4085), + [sym_call] = STATE(4085), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(72), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4085), + [sym_anonymous_function] = STATE(4085), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1499), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2263), + [sym_integer] = ACTIONS(2263), + [sym_float] = ACTIONS(2263), + [sym_char] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(2263), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1507), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AT] = ACTIONS(1509), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1511), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [714] = { + [sym__expression] = STATE(4082), + [sym_block] = STATE(4082), + [sym__identifier] = STATE(93), + [sym_identifier] = STATE(93), + [sym_special_identifier] = STATE(93), + [sym_boolean] = STATE(4082), + [sym_nil] = STATE(4082), + [sym__atom] = STATE(4082), + [sym_quoted_atom] = STATE(4082), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4082), + [sym_charlist] = STATE(4082), + [sym_sigil] = STATE(4082), + [sym_list] = STATE(4082), + [sym_tuple] = STATE(4082), + [sym_bitstring] = STATE(4082), + [sym_map] = STATE(4082), + [sym_unary_operator] = STATE(4082), + [sym_binary_operator] = STATE(4082), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4082), + [sym_call] = STATE(4082), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(72), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4082), + [sym_anonymous_function] = STATE(4082), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1499), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2265), + [sym_integer] = ACTIONS(2265), + [sym_float] = ACTIONS(2265), + [sym_char] = ACTIONS(2265), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(2265), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1507), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AT] = ACTIONS(1509), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1511), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [715] = { + [sym__expression] = STATE(4002), + [sym_block] = STATE(4002), + [sym__identifier] = STATE(93), + [sym_identifier] = STATE(93), + [sym_special_identifier] = STATE(93), + [sym_boolean] = STATE(4002), + [sym_nil] = STATE(4002), + [sym__atom] = STATE(4002), + [sym_quoted_atom] = STATE(4002), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4002), + [sym_charlist] = STATE(4002), + [sym_sigil] = STATE(4002), + [sym_list] = STATE(4002), + [sym_tuple] = STATE(4002), + [sym_bitstring] = STATE(4002), + [sym_map] = STATE(4002), + [sym_unary_operator] = STATE(4002), + [sym_binary_operator] = STATE(4002), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4002), + [sym_call] = STATE(4002), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(72), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4002), + [sym_anonymous_function] = STATE(4002), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1499), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2267), + [sym_integer] = ACTIONS(2267), + [sym_float] = ACTIONS(2267), + [sym_char] = ACTIONS(2267), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(2267), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1507), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AT] = ACTIONS(1509), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1511), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [716] = { + [sym__expression] = STATE(4079), + [sym_block] = STATE(4079), + [sym__identifier] = STATE(93), + [sym_identifier] = STATE(93), + [sym_special_identifier] = STATE(93), + [sym_boolean] = STATE(4079), + [sym_nil] = STATE(4079), + [sym__atom] = STATE(4079), + [sym_quoted_atom] = STATE(4079), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4079), + [sym_charlist] = STATE(4079), + [sym_sigil] = STATE(4079), + [sym_list] = STATE(4079), + [sym_tuple] = STATE(4079), + [sym_bitstring] = STATE(4079), + [sym_map] = STATE(4079), + [sym_unary_operator] = STATE(4079), + [sym_binary_operator] = STATE(4079), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4079), + [sym_call] = STATE(4079), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(72), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4079), + [sym_anonymous_function] = STATE(4079), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1499), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2269), + [sym_integer] = ACTIONS(2269), + [sym_float] = ACTIONS(2269), + [sym_char] = ACTIONS(2269), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(2269), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1507), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AT] = ACTIONS(1509), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1511), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [717] = { + [sym__expression] = STATE(4078), + [sym_block] = STATE(4078), + [sym__identifier] = STATE(93), + [sym_identifier] = STATE(93), + [sym_special_identifier] = STATE(93), + [sym_boolean] = STATE(4078), + [sym_nil] = STATE(4078), + [sym__atom] = STATE(4078), + [sym_quoted_atom] = STATE(4078), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4078), + [sym_charlist] = STATE(4078), + [sym_sigil] = STATE(4078), + [sym_list] = STATE(4078), + [sym_tuple] = STATE(4078), + [sym_bitstring] = STATE(4078), + [sym_map] = STATE(4078), + [sym_unary_operator] = STATE(4078), + [sym_binary_operator] = STATE(4078), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4078), + [sym_call] = STATE(4078), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(72), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4078), + [sym_anonymous_function] = STATE(4078), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1499), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2271), + [sym_integer] = ACTIONS(2271), + [sym_float] = ACTIONS(2271), + [sym_char] = ACTIONS(2271), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(2271), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1507), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AT] = ACTIONS(1509), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1511), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [718] = { + [sym__expression] = STATE(2674), + [sym_block] = STATE(2674), + [sym__identifier] = STATE(56), + [sym_identifier] = STATE(56), + [sym_special_identifier] = STATE(56), + [sym_boolean] = STATE(2674), + [sym_nil] = STATE(2674), + [sym__atom] = STATE(2674), + [sym_quoted_atom] = STATE(2674), + [sym__quoted_i_double] = STATE(2913), + [sym__quoted_i_single] = STATE(2912), + [sym__quoted_i_heredoc_single] = STATE(2910), + [sym__quoted_i_heredoc_double] = STATE(2805), + [sym_string] = STATE(2674), + [sym_charlist] = STATE(2674), + [sym_sigil] = STATE(2674), + [sym_list] = STATE(2674), + [sym_tuple] = STATE(2674), + [sym_bitstring] = STATE(2674), + [sym_map] = STATE(2674), + [sym_unary_operator] = STATE(2674), + [sym_binary_operator] = STATE(2674), + [sym_operator_identifier] = STATE(5636), + [sym_dot] = STATE(2674), + [sym_call] = STATE(2674), + [sym__call_without_parentheses] = STATE(2883), + [sym__call_with_parentheses] = STATE(2876), + [sym__local_call_without_parentheses] = STATE(2870), + [sym__local_call_with_parentheses] = STATE(2037), + [sym__local_call_just_do_block] = STATE(2853), + [sym__remote_call_without_parentheses] = STATE(2846), + [sym__remote_call_with_parentheses] = STATE(2038), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2051), + [sym__anonymous_dot] = STATE(5534), + [sym__double_call] = STATE(2836), + [sym_access_call] = STATE(2674), + [sym_anonymous_function] = STATE(2674), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(2273), + [sym_integer] = ACTIONS(2273), + [sym_float] = ACTIONS(2273), + [sym_char] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(2273), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [719] = { + [sym__expression] = STATE(2675), + [sym_block] = STATE(2675), + [sym__identifier] = STATE(56), + [sym_identifier] = STATE(56), + [sym_special_identifier] = STATE(56), + [sym_boolean] = STATE(2675), + [sym_nil] = STATE(2675), + [sym__atom] = STATE(2675), + [sym_quoted_atom] = STATE(2675), + [sym__quoted_i_double] = STATE(2913), + [sym__quoted_i_single] = STATE(2912), + [sym__quoted_i_heredoc_single] = STATE(2910), + [sym__quoted_i_heredoc_double] = STATE(2805), + [sym_string] = STATE(2675), + [sym_charlist] = STATE(2675), + [sym_sigil] = STATE(2675), + [sym_list] = STATE(2675), + [sym_tuple] = STATE(2675), + [sym_bitstring] = STATE(2675), + [sym_map] = STATE(2675), + [sym_unary_operator] = STATE(2675), + [sym_binary_operator] = STATE(2675), + [sym_operator_identifier] = STATE(5636), + [sym_dot] = STATE(2675), + [sym_call] = STATE(2675), + [sym__call_without_parentheses] = STATE(2883), + [sym__call_with_parentheses] = STATE(2876), + [sym__local_call_without_parentheses] = STATE(2870), + [sym__local_call_with_parentheses] = STATE(2037), + [sym__local_call_just_do_block] = STATE(2853), + [sym__remote_call_without_parentheses] = STATE(2846), + [sym__remote_call_with_parentheses] = STATE(2038), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2051), + [sym__anonymous_dot] = STATE(5534), + [sym__double_call] = STATE(2836), + [sym_access_call] = STATE(2675), + [sym_anonymous_function] = STATE(2675), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(2275), + [sym_integer] = ACTIONS(2275), + [sym_float] = ACTIONS(2275), + [sym_char] = ACTIONS(2275), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(2275), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [720] = { + [sym__expression] = STATE(4075), + [sym_block] = STATE(4075), + [sym__identifier] = STATE(93), + [sym_identifier] = STATE(93), + [sym_special_identifier] = STATE(93), + [sym_boolean] = STATE(4075), + [sym_nil] = STATE(4075), + [sym__atom] = STATE(4075), + [sym_quoted_atom] = STATE(4075), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4075), + [sym_charlist] = STATE(4075), + [sym_sigil] = STATE(4075), + [sym_list] = STATE(4075), + [sym_tuple] = STATE(4075), + [sym_bitstring] = STATE(4075), + [sym_map] = STATE(4075), + [sym_unary_operator] = STATE(4075), + [sym_binary_operator] = STATE(4075), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4075), + [sym_call] = STATE(4075), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(72), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4075), + [sym_anonymous_function] = STATE(4075), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1499), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2277), + [sym_integer] = ACTIONS(2277), + [sym_float] = ACTIONS(2277), + [sym_char] = ACTIONS(2277), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(2277), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1507), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AT] = ACTIONS(1509), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1511), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [721] = { + [sym__expression] = STATE(1791), + [sym_block] = STATE(1791), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(1791), + [sym_nil] = STATE(1791), + [sym__atom] = STATE(1791), + [sym_quoted_atom] = STATE(1791), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(1791), + [sym_charlist] = STATE(1791), + [sym_sigil] = STATE(1791), + [sym_list] = STATE(1791), + [sym_tuple] = STATE(1791), + [sym_bitstring] = STATE(1791), + [sym_map] = STATE(1791), + [sym_unary_operator] = STATE(1791), + [sym_binary_operator] = STATE(1791), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(1791), + [sym_call] = STATE(1791), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(1791), + [sym_anonymous_function] = STATE(1791), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(1767), + [sym_integer] = ACTIONS(1767), + [sym_float] = ACTIONS(1767), + [sym_char] = ACTIONS(1767), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1767), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [722] = { + [sym__expression] = STATE(2188), + [sym_block] = STATE(2188), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2188), + [sym_nil] = STATE(2188), + [sym__atom] = STATE(2188), + [sym_quoted_atom] = STATE(2188), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2188), + [sym_charlist] = STATE(2188), + [sym_sigil] = STATE(2188), + [sym_list] = STATE(2188), + [sym_tuple] = STATE(2188), + [sym_bitstring] = STATE(2188), + [sym_map] = STATE(2188), + [sym_unary_operator] = STATE(2188), + [sym_binary_operator] = STATE(2188), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2188), + [sym_call] = STATE(2188), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(2188), + [sym_anonymous_function] = STATE(2188), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(2279), + [sym_integer] = ACTIONS(2279), + [sym_float] = ACTIONS(2279), + [sym_char] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2279), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [723] = { + [sym__expression] = STATE(4074), + [sym_block] = STATE(4074), + [sym__identifier] = STATE(93), + [sym_identifier] = STATE(93), + [sym_special_identifier] = STATE(93), + [sym_boolean] = STATE(4074), + [sym_nil] = STATE(4074), + [sym__atom] = STATE(4074), + [sym_quoted_atom] = STATE(4074), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4074), + [sym_charlist] = STATE(4074), + [sym_sigil] = STATE(4074), + [sym_list] = STATE(4074), + [sym_tuple] = STATE(4074), + [sym_bitstring] = STATE(4074), + [sym_map] = STATE(4074), + [sym_unary_operator] = STATE(4074), + [sym_binary_operator] = STATE(4074), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4074), + [sym_call] = STATE(4074), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(72), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4074), + [sym_anonymous_function] = STATE(4074), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1499), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2281), + [sym_integer] = ACTIONS(2281), + [sym_float] = ACTIONS(2281), + [sym_char] = ACTIONS(2281), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(2281), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1507), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AT] = ACTIONS(1509), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1511), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [724] = { + [sym__expression] = STATE(4069), + [sym_block] = STATE(4069), + [sym__identifier] = STATE(93), + [sym_identifier] = STATE(93), + [sym_special_identifier] = STATE(93), + [sym_boolean] = STATE(4069), + [sym_nil] = STATE(4069), + [sym__atom] = STATE(4069), + [sym_quoted_atom] = STATE(4069), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4069), + [sym_charlist] = STATE(4069), + [sym_sigil] = STATE(4069), + [sym_list] = STATE(4069), + [sym_tuple] = STATE(4069), + [sym_bitstring] = STATE(4069), + [sym_map] = STATE(4069), + [sym_unary_operator] = STATE(4069), + [sym_binary_operator] = STATE(4069), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4069), + [sym_call] = STATE(4069), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(72), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4069), + [sym_anonymous_function] = STATE(4069), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1499), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2283), + [sym_integer] = ACTIONS(2283), + [sym_float] = ACTIONS(2283), + [sym_char] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(2283), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1507), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AT] = ACTIONS(1509), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1511), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [725] = { + [sym__expression] = STATE(4061), + [sym_block] = STATE(4061), + [sym__identifier] = STATE(93), + [sym_identifier] = STATE(93), + [sym_special_identifier] = STATE(93), + [sym_boolean] = STATE(4061), + [sym_nil] = STATE(4061), + [sym__atom] = STATE(4061), + [sym_quoted_atom] = STATE(4061), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4061), + [sym_charlist] = STATE(4061), + [sym_sigil] = STATE(4061), + [sym_list] = STATE(4061), + [sym_tuple] = STATE(4061), + [sym_bitstring] = STATE(4061), + [sym_map] = STATE(4061), + [sym_unary_operator] = STATE(4061), + [sym_binary_operator] = STATE(4061), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4061), + [sym_call] = STATE(4061), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(72), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4061), + [sym_anonymous_function] = STATE(4061), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1499), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2285), + [sym_integer] = ACTIONS(2285), + [sym_float] = ACTIONS(2285), + [sym_char] = ACTIONS(2285), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(2285), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1507), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AT] = ACTIONS(1509), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1511), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [726] = { + [sym__expression] = STATE(2711), + [sym_block] = STATE(2711), + [sym__identifier] = STATE(41), + [sym_identifier] = STATE(41), + [sym_special_identifier] = STATE(41), + [sym_boolean] = STATE(2711), + [sym_nil] = STATE(2711), + [sym__atom] = STATE(2711), + [sym_quoted_atom] = STATE(2711), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(2711), + [sym_charlist] = STATE(2711), + [sym_sigil] = STATE(2711), + [sym_list] = STATE(2711), + [sym_tuple] = STATE(2711), + [sym_bitstring] = STATE(2711), + [sym_map] = STATE(2711), + [sym_unary_operator] = STATE(2711), + [sym_binary_operator] = STATE(2711), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(2711), + [sym_call] = STATE(2711), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(2711), + [sym_anonymous_function] = STATE(2711), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(2287), + [sym_integer] = ACTIONS(2287), + [sym_float] = ACTIONS(2287), + [sym_char] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2287), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(453), + [anon_sym_not] = ACTIONS(453), + [anon_sym_AT] = ACTIONS(455), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(457), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [727] = { + [sym__expression] = STATE(2999), + [sym_block] = STATE(2999), + [sym__identifier] = STATE(41), + [sym_identifier] = STATE(41), + [sym_special_identifier] = STATE(41), + [sym_boolean] = STATE(2999), + [sym_nil] = STATE(2999), + [sym__atom] = STATE(2999), + [sym_quoted_atom] = STATE(2999), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(2999), + [sym_charlist] = STATE(2999), + [sym_sigil] = STATE(2999), + [sym_list] = STATE(2999), + [sym_tuple] = STATE(2999), + [sym_bitstring] = STATE(2999), + [sym_map] = STATE(2999), + [sym_unary_operator] = STATE(2999), + [sym_binary_operator] = STATE(2999), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(2999), + [sym_call] = STATE(2999), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(2999), + [sym_anonymous_function] = STATE(2999), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(2289), + [sym_integer] = ACTIONS(2289), + [sym_float] = ACTIONS(2289), + [sym_char] = ACTIONS(2289), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2289), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(453), + [anon_sym_not] = ACTIONS(453), + [anon_sym_AT] = ACTIONS(455), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(457), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [728] = { + [sym__expression] = STATE(3000), + [sym_block] = STATE(3000), + [sym__identifier] = STATE(41), + [sym_identifier] = STATE(41), + [sym_special_identifier] = STATE(41), + [sym_boolean] = STATE(3000), + [sym_nil] = STATE(3000), + [sym__atom] = STATE(3000), + [sym_quoted_atom] = STATE(3000), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(3000), + [sym_charlist] = STATE(3000), + [sym_sigil] = STATE(3000), + [sym_list] = STATE(3000), + [sym_tuple] = STATE(3000), + [sym_bitstring] = STATE(3000), + [sym_map] = STATE(3000), + [sym_unary_operator] = STATE(3000), + [sym_binary_operator] = STATE(3000), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(3000), + [sym_call] = STATE(3000), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(3000), + [sym_anonymous_function] = STATE(3000), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(2291), + [sym_integer] = ACTIONS(2291), + [sym_float] = ACTIONS(2291), + [sym_char] = ACTIONS(2291), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2291), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(453), + [anon_sym_not] = ACTIONS(453), + [anon_sym_AT] = ACTIONS(455), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(457), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [729] = { + [sym__expression] = STATE(3001), + [sym_block] = STATE(3001), + [sym__identifier] = STATE(41), + [sym_identifier] = STATE(41), + [sym_special_identifier] = STATE(41), + [sym_boolean] = STATE(3001), + [sym_nil] = STATE(3001), + [sym__atom] = STATE(3001), + [sym_quoted_atom] = STATE(3001), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(3001), + [sym_charlist] = STATE(3001), + [sym_sigil] = STATE(3001), + [sym_list] = STATE(3001), + [sym_tuple] = STATE(3001), + [sym_bitstring] = STATE(3001), + [sym_map] = STATE(3001), + [sym_unary_operator] = STATE(3001), + [sym_binary_operator] = STATE(3001), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(3001), + [sym_call] = STATE(3001), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(3001), + [sym_anonymous_function] = STATE(3001), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(2293), + [sym_integer] = ACTIONS(2293), + [sym_float] = ACTIONS(2293), + [sym_char] = ACTIONS(2293), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2293), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(453), + [anon_sym_not] = ACTIONS(453), + [anon_sym_AT] = ACTIONS(455), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(457), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [730] = { + [sym__expression] = STATE(3002), + [sym_block] = STATE(3002), + [sym__identifier] = STATE(41), + [sym_identifier] = STATE(41), + [sym_special_identifier] = STATE(41), + [sym_boolean] = STATE(3002), + [sym_nil] = STATE(3002), + [sym__atom] = STATE(3002), + [sym_quoted_atom] = STATE(3002), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(3002), + [sym_charlist] = STATE(3002), + [sym_sigil] = STATE(3002), + [sym_list] = STATE(3002), + [sym_tuple] = STATE(3002), + [sym_bitstring] = STATE(3002), + [sym_map] = STATE(3002), + [sym_unary_operator] = STATE(3002), + [sym_binary_operator] = STATE(3002), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(3002), + [sym_call] = STATE(3002), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(3002), + [sym_anonymous_function] = STATE(3002), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(2295), + [sym_integer] = ACTIONS(2295), + [sym_float] = ACTIONS(2295), + [sym_char] = ACTIONS(2295), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2295), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(453), + [anon_sym_not] = ACTIONS(453), + [anon_sym_AT] = ACTIONS(455), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(457), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [731] = { + [sym__expression] = STATE(4058), + [sym_block] = STATE(4058), + [sym__identifier] = STATE(93), + [sym_identifier] = STATE(93), + [sym_special_identifier] = STATE(93), + [sym_boolean] = STATE(4058), + [sym_nil] = STATE(4058), + [sym__atom] = STATE(4058), + [sym_quoted_atom] = STATE(4058), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4058), + [sym_charlist] = STATE(4058), + [sym_sigil] = STATE(4058), + [sym_list] = STATE(4058), + [sym_tuple] = STATE(4058), + [sym_bitstring] = STATE(4058), + [sym_map] = STATE(4058), + [sym_unary_operator] = STATE(4058), + [sym_binary_operator] = STATE(4058), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4058), + [sym_call] = STATE(4058), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(72), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4058), + [sym_anonymous_function] = STATE(4058), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1499), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2297), + [sym_integer] = ACTIONS(2297), + [sym_float] = ACTIONS(2297), + [sym_char] = ACTIONS(2297), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(2297), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1507), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AT] = ACTIONS(1509), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1511), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [732] = { + [sym__expression] = STATE(4057), + [sym_block] = STATE(4057), + [sym__identifier] = STATE(93), + [sym_identifier] = STATE(93), + [sym_special_identifier] = STATE(93), + [sym_boolean] = STATE(4057), + [sym_nil] = STATE(4057), + [sym__atom] = STATE(4057), + [sym_quoted_atom] = STATE(4057), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4057), + [sym_charlist] = STATE(4057), + [sym_sigil] = STATE(4057), + [sym_list] = STATE(4057), + [sym_tuple] = STATE(4057), + [sym_bitstring] = STATE(4057), + [sym_map] = STATE(4057), + [sym_unary_operator] = STATE(4057), + [sym_binary_operator] = STATE(4057), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4057), + [sym_call] = STATE(4057), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(72), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4057), + [sym_anonymous_function] = STATE(4057), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1499), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2299), + [sym_integer] = ACTIONS(2299), + [sym_float] = ACTIONS(2299), + [sym_char] = ACTIONS(2299), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(2299), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1507), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AT] = ACTIONS(1509), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1511), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [733] = { + [sym__expression] = STATE(3083), + [sym_block] = STATE(3083), + [sym__identifier] = STATE(93), + [sym_identifier] = STATE(93), + [sym_special_identifier] = STATE(93), + [sym_boolean] = STATE(3083), + [sym_nil] = STATE(3083), + [sym__atom] = STATE(3083), + [sym_quoted_atom] = STATE(3083), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3083), + [sym_charlist] = STATE(3083), + [sym_sigil] = STATE(3083), + [sym_list] = STATE(3083), + [sym_tuple] = STATE(3083), + [sym_bitstring] = STATE(3083), + [sym_map] = STATE(3083), + [sym_unary_operator] = STATE(3083), + [sym_binary_operator] = STATE(3083), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3083), + [sym_call] = STATE(3083), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(72), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3083), + [sym_anonymous_function] = STATE(3083), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1499), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2301), + [sym_integer] = ACTIONS(2301), + [sym_float] = ACTIONS(2301), + [sym_char] = ACTIONS(2301), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(2301), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1507), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AT] = ACTIONS(1509), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1511), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [734] = { + [sym__expression] = STATE(2633), + [sym_block] = STATE(2633), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2633), + [sym_nil] = STATE(2633), + [sym__atom] = STATE(2633), + [sym_quoted_atom] = STATE(2633), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2633), + [sym_charlist] = STATE(2633), + [sym_sigil] = STATE(2633), + [sym_list] = STATE(2633), + [sym_tuple] = STATE(2633), + [sym_bitstring] = STATE(2633), + [sym_map] = STATE(2633), + [sym_unary_operator] = STATE(2633), + [sym_binary_operator] = STATE(2633), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2633), + [sym_call] = STATE(2633), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(2633), + [sym_anonymous_function] = STATE(2633), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(1325), + [sym_integer] = ACTIONS(1325), + [sym_float] = ACTIONS(1325), + [sym_char] = ACTIONS(1325), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1325), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [735] = { + [sym__expression] = STATE(2192), + [sym_block] = STATE(2192), + [sym__identifier] = STATE(70), + [sym_identifier] = STATE(70), + [sym_special_identifier] = STATE(70), + [sym_boolean] = STATE(2192), + [sym_nil] = STATE(2192), + [sym__atom] = STATE(2192), + [sym_quoted_atom] = STATE(2192), + [sym__quoted_i_double] = STATE(2196), + [sym__quoted_i_single] = STATE(2197), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(2192), + [sym_charlist] = STATE(2192), + [sym_sigil] = STATE(2192), + [sym_list] = STATE(2192), + [sym_tuple] = STATE(2192), + [sym_bitstring] = STATE(2192), + [sym_map] = STATE(2192), + [sym_unary_operator] = STATE(2192), + [sym_binary_operator] = STATE(2192), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(2192), + [sym_call] = STATE(2192), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(2192), + [sym_anonymous_function] = STATE(2192), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(1895), + [sym_integer] = ACTIONS(1895), + [sym_float] = ACTIONS(1895), + [sym_char] = ACTIONS(1895), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(1895), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(678), + [anon_sym_CARET] = ACTIONS(678), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(678), + [anon_sym_not] = ACTIONS(678), + [anon_sym_AT] = ACTIONS(680), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(406), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(682), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(412), + }, + [736] = { + [sym__expression] = STATE(2186), + [sym_block] = STATE(2186), + [sym__identifier] = STATE(70), + [sym_identifier] = STATE(70), + [sym_special_identifier] = STATE(70), + [sym_boolean] = STATE(2186), + [sym_nil] = STATE(2186), + [sym__atom] = STATE(2186), + [sym_quoted_atom] = STATE(2186), + [sym__quoted_i_double] = STATE(2196), + [sym__quoted_i_single] = STATE(2197), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(2186), + [sym_charlist] = STATE(2186), + [sym_sigil] = STATE(2186), + [sym_list] = STATE(2186), + [sym_tuple] = STATE(2186), + [sym_bitstring] = STATE(2186), + [sym_map] = STATE(2186), + [sym_unary_operator] = STATE(2186), + [sym_binary_operator] = STATE(2186), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(2186), + [sym_call] = STATE(2186), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(2186), + [sym_anonymous_function] = STATE(2186), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(1897), + [sym_integer] = ACTIONS(1897), + [sym_float] = ACTIONS(1897), + [sym_char] = ACTIONS(1897), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(1897), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(678), + [anon_sym_CARET] = ACTIONS(678), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(678), + [anon_sym_not] = ACTIONS(678), + [anon_sym_AT] = ACTIONS(680), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(406), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(682), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(412), + }, + [737] = { + [sym__expression] = STATE(2150), + [sym_block] = STATE(2150), + [sym__identifier] = STATE(70), + [sym_identifier] = STATE(70), + [sym_special_identifier] = STATE(70), + [sym_boolean] = STATE(2150), + [sym_nil] = STATE(2150), + [sym__atom] = STATE(2150), + [sym_quoted_atom] = STATE(2150), + [sym__quoted_i_double] = STATE(2196), + [sym__quoted_i_single] = STATE(2197), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(2150), + [sym_charlist] = STATE(2150), + [sym_sigil] = STATE(2150), + [sym_list] = STATE(2150), + [sym_tuple] = STATE(2150), + [sym_bitstring] = STATE(2150), + [sym_map] = STATE(2150), + [sym_unary_operator] = STATE(2150), + [sym_binary_operator] = STATE(2150), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(2150), + [sym_call] = STATE(2150), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(2150), + [sym_anonymous_function] = STATE(2150), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(1903), + [sym_integer] = ACTIONS(1903), + [sym_float] = ACTIONS(1903), + [sym_char] = ACTIONS(1903), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(1903), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(678), + [anon_sym_CARET] = ACTIONS(678), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(678), + [anon_sym_not] = ACTIONS(678), + [anon_sym_AT] = ACTIONS(680), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(406), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(682), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(412), + }, + [738] = { + [sym__expression] = STATE(2149), + [sym_block] = STATE(2149), + [sym__identifier] = STATE(70), + [sym_identifier] = STATE(70), + [sym_special_identifier] = STATE(70), + [sym_boolean] = STATE(2149), + [sym_nil] = STATE(2149), + [sym__atom] = STATE(2149), + [sym_quoted_atom] = STATE(2149), + [sym__quoted_i_double] = STATE(2196), + [sym__quoted_i_single] = STATE(2197), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(2149), + [sym_charlist] = STATE(2149), + [sym_sigil] = STATE(2149), + [sym_list] = STATE(2149), + [sym_tuple] = STATE(2149), + [sym_bitstring] = STATE(2149), + [sym_map] = STATE(2149), + [sym_unary_operator] = STATE(2149), + [sym_binary_operator] = STATE(2149), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(2149), + [sym_call] = STATE(2149), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(2149), + [sym_anonymous_function] = STATE(2149), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(1905), + [sym_integer] = ACTIONS(1905), + [sym_float] = ACTIONS(1905), + [sym_char] = ACTIONS(1905), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(1905), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(678), + [anon_sym_CARET] = ACTIONS(678), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(678), + [anon_sym_not] = ACTIONS(678), + [anon_sym_AT] = ACTIONS(680), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(406), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(682), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(412), + }, + [739] = { + [sym__expression] = STATE(3455), + [sym_block] = STATE(3455), + [sym__identifier] = STATE(70), + [sym_identifier] = STATE(70), + [sym_special_identifier] = STATE(70), + [sym_boolean] = STATE(3455), + [sym_nil] = STATE(3455), + [sym__atom] = STATE(3455), + [sym_quoted_atom] = STATE(3455), + [sym__quoted_i_double] = STATE(2196), + [sym__quoted_i_single] = STATE(2197), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(3455), + [sym_charlist] = STATE(3455), + [sym_sigil] = STATE(3455), + [sym_list] = STATE(3455), + [sym_tuple] = STATE(3455), + [sym_bitstring] = STATE(3455), + [sym_map] = STATE(3455), + [sym_unary_operator] = STATE(3455), + [sym_binary_operator] = STATE(3455), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(3455), + [sym_call] = STATE(3455), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(3455), + [sym_anonymous_function] = STATE(3455), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(2303), + [sym_integer] = ACTIONS(2303), + [sym_float] = ACTIONS(2303), + [sym_char] = ACTIONS(2303), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(2303), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(678), + [anon_sym_CARET] = ACTIONS(678), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(678), + [anon_sym_not] = ACTIONS(678), + [anon_sym_AT] = ACTIONS(680), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(406), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(682), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(412), + }, + [740] = { + [sym__expression] = STATE(3454), + [sym_block] = STATE(3454), + [sym__identifier] = STATE(70), + [sym_identifier] = STATE(70), + [sym_special_identifier] = STATE(70), + [sym_boolean] = STATE(3454), + [sym_nil] = STATE(3454), + [sym__atom] = STATE(3454), + [sym_quoted_atom] = STATE(3454), + [sym__quoted_i_double] = STATE(2196), + [sym__quoted_i_single] = STATE(2197), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(3454), + [sym_charlist] = STATE(3454), + [sym_sigil] = STATE(3454), + [sym_list] = STATE(3454), + [sym_tuple] = STATE(3454), + [sym_bitstring] = STATE(3454), + [sym_map] = STATE(3454), + [sym_unary_operator] = STATE(3454), + [sym_binary_operator] = STATE(3454), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(3454), + [sym_call] = STATE(3454), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(3454), + [sym_anonymous_function] = STATE(3454), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(2305), + [sym_integer] = ACTIONS(2305), + [sym_float] = ACTIONS(2305), + [sym_char] = ACTIONS(2305), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(2305), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(678), + [anon_sym_CARET] = ACTIONS(678), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(678), + [anon_sym_not] = ACTIONS(678), + [anon_sym_AT] = ACTIONS(680), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(406), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(682), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(412), + }, + [741] = { + [sym__expression] = STATE(3452), + [sym_block] = STATE(3452), + [sym__identifier] = STATE(70), + [sym_identifier] = STATE(70), + [sym_special_identifier] = STATE(70), + [sym_boolean] = STATE(3452), + [sym_nil] = STATE(3452), + [sym__atom] = STATE(3452), + [sym_quoted_atom] = STATE(3452), + [sym__quoted_i_double] = STATE(2196), + [sym__quoted_i_single] = STATE(2197), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(3452), + [sym_charlist] = STATE(3452), + [sym_sigil] = STATE(3452), + [sym_list] = STATE(3452), + [sym_tuple] = STATE(3452), + [sym_bitstring] = STATE(3452), + [sym_map] = STATE(3452), + [sym_unary_operator] = STATE(3452), + [sym_binary_operator] = STATE(3452), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(3452), + [sym_call] = STATE(3452), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(3452), + [sym_anonymous_function] = STATE(3452), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(2307), + [sym_integer] = ACTIONS(2307), + [sym_float] = ACTIONS(2307), + [sym_char] = ACTIONS(2307), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(678), + [anon_sym_CARET] = ACTIONS(678), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(678), + [anon_sym_not] = ACTIONS(678), + [anon_sym_AT] = ACTIONS(680), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(406), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(682), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(412), + }, + [742] = { + [sym__expression] = STATE(3450), + [sym_block] = STATE(3450), + [sym__identifier] = STATE(70), + [sym_identifier] = STATE(70), + [sym_special_identifier] = STATE(70), + [sym_boolean] = STATE(3450), + [sym_nil] = STATE(3450), + [sym__atom] = STATE(3450), + [sym_quoted_atom] = STATE(3450), + [sym__quoted_i_double] = STATE(2196), + [sym__quoted_i_single] = STATE(2197), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(3450), + [sym_charlist] = STATE(3450), + [sym_sigil] = STATE(3450), + [sym_list] = STATE(3450), + [sym_tuple] = STATE(3450), + [sym_bitstring] = STATE(3450), + [sym_map] = STATE(3450), + [sym_unary_operator] = STATE(3450), + [sym_binary_operator] = STATE(3450), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(3450), + [sym_call] = STATE(3450), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(3450), + [sym_anonymous_function] = STATE(3450), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(2309), + [sym_integer] = ACTIONS(2309), + [sym_float] = ACTIONS(2309), + [sym_char] = ACTIONS(2309), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(2309), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(678), + [anon_sym_CARET] = ACTIONS(678), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(678), + [anon_sym_not] = ACTIONS(678), + [anon_sym_AT] = ACTIONS(680), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(406), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(682), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(412), + }, + [743] = { [sym__expression] = STATE(3446), [sym_block] = STATE(3446), - [sym__identifier] = STATE(72), - [sym_identifier] = STATE(72), - [sym_special_identifier] = STATE(72), + [sym__identifier] = STATE(70), + [sym_identifier] = STATE(70), + [sym_special_identifier] = STATE(70), [sym_boolean] = STATE(3446), [sym_nil] = STATE(3446), [sym__atom] = STATE(3446), [sym_quoted_atom] = STATE(3446), - [sym__quoted_i_double] = STATE(3516), - [sym__quoted_i_single] = STATE(3518), - [sym__quoted_i_heredoc_single] = STATE(3518), - [sym__quoted_i_heredoc_double] = STATE(3516), + [sym__quoted_i_double] = STATE(2196), + [sym__quoted_i_single] = STATE(2197), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), [sym_string] = STATE(3446), [sym_charlist] = STATE(3446), [sym_sigil] = STATE(3446), @@ -127317,61 +120455,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_map] = STATE(3446), [sym_unary_operator] = STATE(3446), [sym_binary_operator] = STATE(3446), - [sym_operator_identifier] = STATE(4972), + [sym_operator_identifier] = STATE(5620), [sym_dot] = STATE(3446), [sym_call] = STATE(3446), - [sym__call_without_parentheses] = STATE(3517), - [sym__call_with_parentheses] = STATE(3515), - [sym__local_call_without_parentheses] = STATE(3511), - [sym__local_call_with_parentheses] = STATE(3073), - [sym__local_call_just_do_block] = STATE(3510), - [sym__remote_call_without_parentheses] = STATE(3514), - [sym__remote_call_with_parentheses] = STATE(3088), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(3095), - [sym__anonymous_dot] = STATE(4928), - [sym__double_call] = STATE(3499), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), [sym_access_call] = STATE(3446), [sym_anonymous_function] = STATE(3446), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1123), - [aux_sym_identifier_token1] = ACTIONS(1125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1125), - [sym_unused_identifier] = ACTIONS(1127), - [anon_sym___MODULE__] = ACTIONS(1129), - [anon_sym___DIR__] = ACTIONS(1129), - [anon_sym___ENV__] = ACTIONS(1129), - [anon_sym___CALLER__] = ACTIONS(1129), - [anon_sym___STACKTRACE__] = ACTIONS(1129), - [sym_alias] = ACTIONS(2411), - [sym_integer] = ACTIONS(2411), - [sym_float] = ACTIONS(2411), - [sym_char] = ACTIONS(2411), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_nil] = ACTIONS(1135), - [sym_atom] = ACTIONS(2411), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(2311), + [sym_integer] = ACTIONS(2311), + [sym_float] = ACTIONS(2311), + [sym_char] = ACTIONS(2311), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(2311), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1149), - [anon_sym_LT_LT] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1161), - [anon_sym_not] = ACTIONS(1161), - [anon_sym_AT] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(678), + [anon_sym_CARET] = ACTIONS(678), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(678), + [anon_sym_not] = ACTIONS(678), + [anon_sym_AT] = ACTIONS(680), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -127411,92 +120549,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1165), + [anon_sym_fn] = ACTIONS(406), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1167), + [sym__before_unary_op] = ACTIONS(682), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1169), + [sym__quoted_atom_start] = ACTIONS(412), }, - [804] = { - [sym__expression] = STATE(3445), - [sym_block] = STATE(3445), - [sym__identifier] = STATE(72), - [sym_identifier] = STATE(72), - [sym_special_identifier] = STATE(72), - [sym_boolean] = STATE(3445), - [sym_nil] = STATE(3445), - [sym__atom] = STATE(3445), - [sym_quoted_atom] = STATE(3445), - [sym__quoted_i_double] = STATE(3516), - [sym__quoted_i_single] = STATE(3518), - [sym__quoted_i_heredoc_single] = STATE(3518), - [sym__quoted_i_heredoc_double] = STATE(3516), - [sym_string] = STATE(3445), - [sym_charlist] = STATE(3445), - [sym_sigil] = STATE(3445), - [sym_list] = STATE(3445), - [sym_tuple] = STATE(3445), - [sym_bitstring] = STATE(3445), - [sym_map] = STATE(3445), - [sym_unary_operator] = STATE(3445), - [sym_binary_operator] = STATE(3445), - [sym_operator_identifier] = STATE(4972), - [sym_dot] = STATE(3445), - [sym_call] = STATE(3445), - [sym__call_without_parentheses] = STATE(3517), - [sym__call_with_parentheses] = STATE(3515), - [sym__local_call_without_parentheses] = STATE(3511), - [sym__local_call_with_parentheses] = STATE(3073), - [sym__local_call_just_do_block] = STATE(3510), - [sym__remote_call_without_parentheses] = STATE(3514), - [sym__remote_call_with_parentheses] = STATE(3088), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(3095), - [sym__anonymous_dot] = STATE(4928), - [sym__double_call] = STATE(3499), - [sym_access_call] = STATE(3445), - [sym_anonymous_function] = STATE(3445), + [744] = { + [sym__expression] = STATE(3444), + [sym_block] = STATE(3444), + [sym__identifier] = STATE(70), + [sym_identifier] = STATE(70), + [sym_special_identifier] = STATE(70), + [sym_boolean] = STATE(3444), + [sym_nil] = STATE(3444), + [sym__atom] = STATE(3444), + [sym_quoted_atom] = STATE(3444), + [sym__quoted_i_double] = STATE(2196), + [sym__quoted_i_single] = STATE(2197), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(3444), + [sym_charlist] = STATE(3444), + [sym_sigil] = STATE(3444), + [sym_list] = STATE(3444), + [sym_tuple] = STATE(3444), + [sym_bitstring] = STATE(3444), + [sym_map] = STATE(3444), + [sym_unary_operator] = STATE(3444), + [sym_binary_operator] = STATE(3444), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(3444), + [sym_call] = STATE(3444), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(3444), + [sym_anonymous_function] = STATE(3444), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1123), - [aux_sym_identifier_token1] = ACTIONS(1125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1125), - [sym_unused_identifier] = ACTIONS(1127), - [anon_sym___MODULE__] = ACTIONS(1129), - [anon_sym___DIR__] = ACTIONS(1129), - [anon_sym___ENV__] = ACTIONS(1129), - [anon_sym___CALLER__] = ACTIONS(1129), - [anon_sym___STACKTRACE__] = ACTIONS(1129), - [sym_alias] = ACTIONS(2413), - [sym_integer] = ACTIONS(2413), - [sym_float] = ACTIONS(2413), - [sym_char] = ACTIONS(2413), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_nil] = ACTIONS(1135), - [sym_atom] = ACTIONS(2413), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(2313), + [sym_integer] = ACTIONS(2313), + [sym_float] = ACTIONS(2313), + [sym_char] = ACTIONS(2313), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(2313), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1149), - [anon_sym_LT_LT] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1161), - [anon_sym_not] = ACTIONS(1161), - [anon_sym_AT] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(678), + [anon_sym_CARET] = ACTIONS(678), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(678), + [anon_sym_not] = ACTIONS(678), + [anon_sym_AT] = ACTIONS(680), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -127536,28 +120674,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1165), + [anon_sym_fn] = ACTIONS(406), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1167), + [sym__before_unary_op] = ACTIONS(682), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1169), + [sym__quoted_atom_start] = ACTIONS(412), }, - [805] = { + [745] = { [sym__expression] = STATE(3443), [sym_block] = STATE(3443), - [sym__identifier] = STATE(72), - [sym_identifier] = STATE(72), - [sym_special_identifier] = STATE(72), + [sym__identifier] = STATE(70), + [sym_identifier] = STATE(70), + [sym_special_identifier] = STATE(70), [sym_boolean] = STATE(3443), [sym_nil] = STATE(3443), [sym__atom] = STATE(3443), [sym_quoted_atom] = STATE(3443), - [sym__quoted_i_double] = STATE(3516), - [sym__quoted_i_single] = STATE(3518), - [sym__quoted_i_heredoc_single] = STATE(3518), - [sym__quoted_i_heredoc_double] = STATE(3516), + [sym__quoted_i_double] = STATE(2196), + [sym__quoted_i_single] = STATE(2197), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), [sym_string] = STATE(3443), [sym_charlist] = STATE(3443), [sym_sigil] = STATE(3443), @@ -127567,61 +120705,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_map] = STATE(3443), [sym_unary_operator] = STATE(3443), [sym_binary_operator] = STATE(3443), - [sym_operator_identifier] = STATE(4972), + [sym_operator_identifier] = STATE(5620), [sym_dot] = STATE(3443), [sym_call] = STATE(3443), - [sym__call_without_parentheses] = STATE(3517), - [sym__call_with_parentheses] = STATE(3515), - [sym__local_call_without_parentheses] = STATE(3511), - [sym__local_call_with_parentheses] = STATE(3073), - [sym__local_call_just_do_block] = STATE(3510), - [sym__remote_call_without_parentheses] = STATE(3514), - [sym__remote_call_with_parentheses] = STATE(3088), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(3095), - [sym__anonymous_dot] = STATE(4928), - [sym__double_call] = STATE(3499), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), [sym_access_call] = STATE(3443), [sym_anonymous_function] = STATE(3443), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1123), - [aux_sym_identifier_token1] = ACTIONS(1125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1125), - [sym_unused_identifier] = ACTIONS(1127), - [anon_sym___MODULE__] = ACTIONS(1129), - [anon_sym___DIR__] = ACTIONS(1129), - [anon_sym___ENV__] = ACTIONS(1129), - [anon_sym___CALLER__] = ACTIONS(1129), - [anon_sym___STACKTRACE__] = ACTIONS(1129), - [sym_alias] = ACTIONS(2415), - [sym_integer] = ACTIONS(2415), - [sym_float] = ACTIONS(2415), - [sym_char] = ACTIONS(2415), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_nil] = ACTIONS(1135), - [sym_atom] = ACTIONS(2415), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(2315), + [sym_integer] = ACTIONS(2315), + [sym_float] = ACTIONS(2315), + [sym_char] = ACTIONS(2315), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(2315), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1149), - [anon_sym_LT_LT] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1161), - [anon_sym_not] = ACTIONS(1161), - [anon_sym_AT] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(678), + [anon_sym_CARET] = ACTIONS(678), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(678), + [anon_sym_not] = ACTIONS(678), + [anon_sym_AT] = ACTIONS(680), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -127661,28 +120799,903 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1165), + [anon_sym_fn] = ACTIONS(406), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1167), + [sym__before_unary_op] = ACTIONS(682), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1169), + [sym__quoted_atom_start] = ACTIONS(412), }, - [806] = { + [746] = { + [sym__expression] = STATE(4046), + [sym_block] = STATE(4046), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(4046), + [sym_nil] = STATE(4046), + [sym__atom] = STATE(4046), + [sym_quoted_atom] = STATE(4046), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(4046), + [sym_charlist] = STATE(4046), + [sym_sigil] = STATE(4046), + [sym_list] = STATE(4046), + [sym_tuple] = STATE(4046), + [sym_bitstring] = STATE(4046), + [sym_map] = STATE(4046), + [sym_unary_operator] = STATE(4046), + [sym_binary_operator] = STATE(4046), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(4046), + [sym_call] = STATE(4046), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(4046), + [sym_anonymous_function] = STATE(4046), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1529), + [sym_integer] = ACTIONS(1529), + [sym_float] = ACTIONS(1529), + [sym_char] = ACTIONS(1529), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1529), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [747] = { + [sym__expression] = STATE(3442), + [sym_block] = STATE(3442), + [sym__identifier] = STATE(70), + [sym_identifier] = STATE(70), + [sym_special_identifier] = STATE(70), + [sym_boolean] = STATE(3442), + [sym_nil] = STATE(3442), + [sym__atom] = STATE(3442), + [sym_quoted_atom] = STATE(3442), + [sym__quoted_i_double] = STATE(2196), + [sym__quoted_i_single] = STATE(2197), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(3442), + [sym_charlist] = STATE(3442), + [sym_sigil] = STATE(3442), + [sym_list] = STATE(3442), + [sym_tuple] = STATE(3442), + [sym_bitstring] = STATE(3442), + [sym_map] = STATE(3442), + [sym_unary_operator] = STATE(3442), + [sym_binary_operator] = STATE(3442), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(3442), + [sym_call] = STATE(3442), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(3442), + [sym_anonymous_function] = STATE(3442), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(2317), + [sym_integer] = ACTIONS(2317), + [sym_float] = ACTIONS(2317), + [sym_char] = ACTIONS(2317), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(2317), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(678), + [anon_sym_CARET] = ACTIONS(678), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(678), + [anon_sym_not] = ACTIONS(678), + [anon_sym_AT] = ACTIONS(680), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(406), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(682), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(412), + }, + [748] = { + [sym__expression] = STATE(3441), + [sym_block] = STATE(3441), + [sym__identifier] = STATE(70), + [sym_identifier] = STATE(70), + [sym_special_identifier] = STATE(70), + [sym_boolean] = STATE(3441), + [sym_nil] = STATE(3441), + [sym__atom] = STATE(3441), + [sym_quoted_atom] = STATE(3441), + [sym__quoted_i_double] = STATE(2196), + [sym__quoted_i_single] = STATE(2197), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(3441), + [sym_charlist] = STATE(3441), + [sym_sigil] = STATE(3441), + [sym_list] = STATE(3441), + [sym_tuple] = STATE(3441), + [sym_bitstring] = STATE(3441), + [sym_map] = STATE(3441), + [sym_unary_operator] = STATE(3441), + [sym_binary_operator] = STATE(3441), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(3441), + [sym_call] = STATE(3441), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(3441), + [sym_anonymous_function] = STATE(3441), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(2319), + [sym_integer] = ACTIONS(2319), + [sym_float] = ACTIONS(2319), + [sym_char] = ACTIONS(2319), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(678), + [anon_sym_CARET] = ACTIONS(678), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(678), + [anon_sym_not] = ACTIONS(678), + [anon_sym_AT] = ACTIONS(680), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(406), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(682), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(412), + }, + [749] = { + [sym__expression] = STATE(3440), + [sym_block] = STATE(3440), + [sym__identifier] = STATE(70), + [sym_identifier] = STATE(70), + [sym_special_identifier] = STATE(70), + [sym_boolean] = STATE(3440), + [sym_nil] = STATE(3440), + [sym__atom] = STATE(3440), + [sym_quoted_atom] = STATE(3440), + [sym__quoted_i_double] = STATE(2196), + [sym__quoted_i_single] = STATE(2197), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(3440), + [sym_charlist] = STATE(3440), + [sym_sigil] = STATE(3440), + [sym_list] = STATE(3440), + [sym_tuple] = STATE(3440), + [sym_bitstring] = STATE(3440), + [sym_map] = STATE(3440), + [sym_unary_operator] = STATE(3440), + [sym_binary_operator] = STATE(3440), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(3440), + [sym_call] = STATE(3440), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(3440), + [sym_anonymous_function] = STATE(3440), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(2321), + [sym_integer] = ACTIONS(2321), + [sym_float] = ACTIONS(2321), + [sym_char] = ACTIONS(2321), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(2321), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(678), + [anon_sym_CARET] = ACTIONS(678), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(678), + [anon_sym_not] = ACTIONS(678), + [anon_sym_AT] = ACTIONS(680), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(406), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(682), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(412), + }, + [750] = { + [sym__expression] = STATE(3439), + [sym_block] = STATE(3439), + [sym__identifier] = STATE(70), + [sym_identifier] = STATE(70), + [sym_special_identifier] = STATE(70), + [sym_boolean] = STATE(3439), + [sym_nil] = STATE(3439), + [sym__atom] = STATE(3439), + [sym_quoted_atom] = STATE(3439), + [sym__quoted_i_double] = STATE(2196), + [sym__quoted_i_single] = STATE(2197), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(3439), + [sym_charlist] = STATE(3439), + [sym_sigil] = STATE(3439), + [sym_list] = STATE(3439), + [sym_tuple] = STATE(3439), + [sym_bitstring] = STATE(3439), + [sym_map] = STATE(3439), + [sym_unary_operator] = STATE(3439), + [sym_binary_operator] = STATE(3439), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(3439), + [sym_call] = STATE(3439), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(3439), + [sym_anonymous_function] = STATE(3439), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(2323), + [sym_integer] = ACTIONS(2323), + [sym_float] = ACTIONS(2323), + [sym_char] = ACTIONS(2323), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(2323), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(678), + [anon_sym_CARET] = ACTIONS(678), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(678), + [anon_sym_not] = ACTIONS(678), + [anon_sym_AT] = ACTIONS(680), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(406), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(682), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(412), + }, + [751] = { + [sym__expression] = STATE(3438), + [sym_block] = STATE(3438), + [sym__identifier] = STATE(70), + [sym_identifier] = STATE(70), + [sym_special_identifier] = STATE(70), + [sym_boolean] = STATE(3438), + [sym_nil] = STATE(3438), + [sym__atom] = STATE(3438), + [sym_quoted_atom] = STATE(3438), + [sym__quoted_i_double] = STATE(2196), + [sym__quoted_i_single] = STATE(2197), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(3438), + [sym_charlist] = STATE(3438), + [sym_sigil] = STATE(3438), + [sym_list] = STATE(3438), + [sym_tuple] = STATE(3438), + [sym_bitstring] = STATE(3438), + [sym_map] = STATE(3438), + [sym_unary_operator] = STATE(3438), + [sym_binary_operator] = STATE(3438), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(3438), + [sym_call] = STATE(3438), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(3438), + [sym_anonymous_function] = STATE(3438), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(2325), + [sym_integer] = ACTIONS(2325), + [sym_float] = ACTIONS(2325), + [sym_char] = ACTIONS(2325), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(2325), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(678), + [anon_sym_CARET] = ACTIONS(678), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(678), + [anon_sym_not] = ACTIONS(678), + [anon_sym_AT] = ACTIONS(680), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(406), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(682), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(412), + }, + [752] = { + [sym__expression] = STATE(3003), + [sym_block] = STATE(3003), + [sym__identifier] = STATE(41), + [sym_identifier] = STATE(41), + [sym_special_identifier] = STATE(41), + [sym_boolean] = STATE(3003), + [sym_nil] = STATE(3003), + [sym__atom] = STATE(3003), + [sym_quoted_atom] = STATE(3003), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(3003), + [sym_charlist] = STATE(3003), + [sym_sigil] = STATE(3003), + [sym_list] = STATE(3003), + [sym_tuple] = STATE(3003), + [sym_bitstring] = STATE(3003), + [sym_map] = STATE(3003), + [sym_unary_operator] = STATE(3003), + [sym_binary_operator] = STATE(3003), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(3003), + [sym_call] = STATE(3003), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(3003), + [sym_anonymous_function] = STATE(3003), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(2327), + [sym_integer] = ACTIONS(2327), + [sym_float] = ACTIONS(2327), + [sym_char] = ACTIONS(2327), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(453), + [anon_sym_not] = ACTIONS(453), + [anon_sym_AT] = ACTIONS(455), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(457), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [753] = { [sym__expression] = STATE(3437), [sym_block] = STATE(3437), - [sym__identifier] = STATE(72), - [sym_identifier] = STATE(72), - [sym_special_identifier] = STATE(72), + [sym__identifier] = STATE(70), + [sym_identifier] = STATE(70), + [sym_special_identifier] = STATE(70), [sym_boolean] = STATE(3437), [sym_nil] = STATE(3437), [sym__atom] = STATE(3437), [sym_quoted_atom] = STATE(3437), - [sym__quoted_i_double] = STATE(3516), - [sym__quoted_i_single] = STATE(3518), - [sym__quoted_i_heredoc_single] = STATE(3518), - [sym__quoted_i_heredoc_double] = STATE(3516), + [sym__quoted_i_double] = STATE(2196), + [sym__quoted_i_single] = STATE(2197), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), [sym_string] = STATE(3437), [sym_charlist] = STATE(3437), [sym_sigil] = STATE(3437), @@ -127692,61 +121705,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_map] = STATE(3437), [sym_unary_operator] = STATE(3437), [sym_binary_operator] = STATE(3437), - [sym_operator_identifier] = STATE(4972), + [sym_operator_identifier] = STATE(5620), [sym_dot] = STATE(3437), [sym_call] = STATE(3437), - [sym__call_without_parentheses] = STATE(3517), - [sym__call_with_parentheses] = STATE(3515), - [sym__local_call_without_parentheses] = STATE(3511), - [sym__local_call_with_parentheses] = STATE(3073), - [sym__local_call_just_do_block] = STATE(3510), - [sym__remote_call_without_parentheses] = STATE(3514), - [sym__remote_call_with_parentheses] = STATE(3088), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(3095), - [sym__anonymous_dot] = STATE(4928), - [sym__double_call] = STATE(3499), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), [sym_access_call] = STATE(3437), [sym_anonymous_function] = STATE(3437), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1123), - [aux_sym_identifier_token1] = ACTIONS(1125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1125), - [sym_unused_identifier] = ACTIONS(1127), - [anon_sym___MODULE__] = ACTIONS(1129), - [anon_sym___DIR__] = ACTIONS(1129), - [anon_sym___ENV__] = ACTIONS(1129), - [anon_sym___CALLER__] = ACTIONS(1129), - [anon_sym___STACKTRACE__] = ACTIONS(1129), - [sym_alias] = ACTIONS(2417), - [sym_integer] = ACTIONS(2417), - [sym_float] = ACTIONS(2417), - [sym_char] = ACTIONS(2417), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_nil] = ACTIONS(1135), - [sym_atom] = ACTIONS(2417), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(2329), + [sym_integer] = ACTIONS(2329), + [sym_float] = ACTIONS(2329), + [sym_char] = ACTIONS(2329), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(2329), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1149), - [anon_sym_LT_LT] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1161), - [anon_sym_not] = ACTIONS(1161), - [anon_sym_AT] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(678), + [anon_sym_CARET] = ACTIONS(678), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(678), + [anon_sym_not] = ACTIONS(678), + [anon_sym_AT] = ACTIONS(680), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -127786,92 +121799,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1165), + [anon_sym_fn] = ACTIONS(406), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1167), + [sym__before_unary_op] = ACTIONS(682), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1169), + [sym__quoted_atom_start] = ACTIONS(412), }, - [807] = { - [sym__expression] = STATE(3185), - [sym_block] = STATE(3185), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3185), - [sym_nil] = STATE(3185), - [sym__atom] = STATE(3185), - [sym_quoted_atom] = STATE(3185), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3185), - [sym_charlist] = STATE(3185), - [sym_sigil] = STATE(3185), - [sym_list] = STATE(3185), - [sym_tuple] = STATE(3185), - [sym_bitstring] = STATE(3185), - [sym_map] = STATE(3185), - [sym_unary_operator] = STATE(3185), - [sym_binary_operator] = STATE(3185), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3185), - [sym_call] = STATE(3185), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3185), - [sym_anonymous_function] = STATE(3185), + [754] = { + [sym__expression] = STATE(3434), + [sym_block] = STATE(3434), + [sym__identifier] = STATE(70), + [sym_identifier] = STATE(70), + [sym_special_identifier] = STATE(70), + [sym_boolean] = STATE(3434), + [sym_nil] = STATE(3434), + [sym__atom] = STATE(3434), + [sym_quoted_atom] = STATE(3434), + [sym__quoted_i_double] = STATE(2196), + [sym__quoted_i_single] = STATE(2197), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(3434), + [sym_charlist] = STATE(3434), + [sym_sigil] = STATE(3434), + [sym_list] = STATE(3434), + [sym_tuple] = STATE(3434), + [sym_bitstring] = STATE(3434), + [sym_map] = STATE(3434), + [sym_unary_operator] = STATE(3434), + [sym_binary_operator] = STATE(3434), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(3434), + [sym_call] = STATE(3434), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(3434), + [sym_anonymous_function] = STATE(3434), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(2419), - [sym_integer] = ACTIONS(2419), - [sym_float] = ACTIONS(2419), - [sym_char] = ACTIONS(2419), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(2419), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(2331), + [sym_integer] = ACTIONS(2331), + [sym_float] = ACTIONS(2331), + [sym_char] = ACTIONS(2331), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(2331), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(678), + [anon_sym_CARET] = ACTIONS(678), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(678), + [anon_sym_not] = ACTIONS(678), + [anon_sym_AT] = ACTIONS(680), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -127911,1028 +121924,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(406), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), + [sym__before_unary_op] = ACTIONS(682), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), + [sym__quoted_atom_start] = ACTIONS(412), }, - [808] = { - [sym__expression] = STATE(3186), - [sym_block] = STATE(3186), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3186), - [sym_nil] = STATE(3186), - [sym__atom] = STATE(3186), - [sym_quoted_atom] = STATE(3186), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3186), - [sym_charlist] = STATE(3186), - [sym_sigil] = STATE(3186), - [sym_list] = STATE(3186), - [sym_tuple] = STATE(3186), - [sym_bitstring] = STATE(3186), - [sym_map] = STATE(3186), - [sym_unary_operator] = STATE(3186), - [sym_binary_operator] = STATE(3186), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3186), - [sym_call] = STATE(3186), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3186), - [sym_anonymous_function] = STATE(3186), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(2421), - [sym_integer] = ACTIONS(2421), - [sym_float] = ACTIONS(2421), - [sym_char] = ACTIONS(2421), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(2421), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [809] = { - [sym__expression] = STATE(3187), - [sym_block] = STATE(3187), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3187), - [sym_nil] = STATE(3187), - [sym__atom] = STATE(3187), - [sym_quoted_atom] = STATE(3187), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3187), - [sym_charlist] = STATE(3187), - [sym_sigil] = STATE(3187), - [sym_list] = STATE(3187), - [sym_tuple] = STATE(3187), - [sym_bitstring] = STATE(3187), - [sym_map] = STATE(3187), - [sym_unary_operator] = STATE(3187), - [sym_binary_operator] = STATE(3187), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3187), - [sym_call] = STATE(3187), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3187), - [sym_anonymous_function] = STATE(3187), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(2423), - [sym_integer] = ACTIONS(2423), - [sym_float] = ACTIONS(2423), - [sym_char] = ACTIONS(2423), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(2423), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [810] = { - [sym__expression] = STATE(3188), - [sym_block] = STATE(3188), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3188), - [sym_nil] = STATE(3188), - [sym__atom] = STATE(3188), - [sym_quoted_atom] = STATE(3188), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3188), - [sym_charlist] = STATE(3188), - [sym_sigil] = STATE(3188), - [sym_list] = STATE(3188), - [sym_tuple] = STATE(3188), - [sym_bitstring] = STATE(3188), - [sym_map] = STATE(3188), - [sym_unary_operator] = STATE(3188), - [sym_binary_operator] = STATE(3188), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3188), - [sym_call] = STATE(3188), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3188), - [sym_anonymous_function] = STATE(3188), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(2425), - [sym_integer] = ACTIONS(2425), - [sym_float] = ACTIONS(2425), - [sym_char] = ACTIONS(2425), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(2425), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [811] = { - [sym__expression] = STATE(3189), - [sym_block] = STATE(3189), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3189), - [sym_nil] = STATE(3189), - [sym__atom] = STATE(3189), - [sym_quoted_atom] = STATE(3189), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3189), - [sym_charlist] = STATE(3189), - [sym_sigil] = STATE(3189), - [sym_list] = STATE(3189), - [sym_tuple] = STATE(3189), - [sym_bitstring] = STATE(3189), - [sym_map] = STATE(3189), - [sym_unary_operator] = STATE(3189), - [sym_binary_operator] = STATE(3189), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3189), - [sym_call] = STATE(3189), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3189), - [sym_anonymous_function] = STATE(3189), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(2427), - [sym_integer] = ACTIONS(2427), - [sym_float] = ACTIONS(2427), - [sym_char] = ACTIONS(2427), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(2427), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [812] = { - [sym__expression] = STATE(3190), - [sym_block] = STATE(3190), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3190), - [sym_nil] = STATE(3190), - [sym__atom] = STATE(3190), - [sym_quoted_atom] = STATE(3190), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3190), - [sym_charlist] = STATE(3190), - [sym_sigil] = STATE(3190), - [sym_list] = STATE(3190), - [sym_tuple] = STATE(3190), - [sym_bitstring] = STATE(3190), - [sym_map] = STATE(3190), - [sym_unary_operator] = STATE(3190), - [sym_binary_operator] = STATE(3190), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3190), - [sym_call] = STATE(3190), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3190), - [sym_anonymous_function] = STATE(3190), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(2429), - [sym_integer] = ACTIONS(2429), - [sym_float] = ACTIONS(2429), - [sym_char] = ACTIONS(2429), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(2429), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [813] = { - [sym__expression] = STATE(3191), - [sym_block] = STATE(3191), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3191), - [sym_nil] = STATE(3191), - [sym__atom] = STATE(3191), - [sym_quoted_atom] = STATE(3191), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3191), - [sym_charlist] = STATE(3191), - [sym_sigil] = STATE(3191), - [sym_list] = STATE(3191), - [sym_tuple] = STATE(3191), - [sym_bitstring] = STATE(3191), - [sym_map] = STATE(3191), - [sym_unary_operator] = STATE(3191), - [sym_binary_operator] = STATE(3191), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3191), - [sym_call] = STATE(3191), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3191), - [sym_anonymous_function] = STATE(3191), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(2431), - [sym_integer] = ACTIONS(2431), - [sym_float] = ACTIONS(2431), - [sym_char] = ACTIONS(2431), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(2431), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [814] = { - [sym__expression] = STATE(3192), - [sym_block] = STATE(3192), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3192), - [sym_nil] = STATE(3192), - [sym__atom] = STATE(3192), - [sym_quoted_atom] = STATE(3192), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3192), - [sym_charlist] = STATE(3192), - [sym_sigil] = STATE(3192), - [sym_list] = STATE(3192), - [sym_tuple] = STATE(3192), - [sym_bitstring] = STATE(3192), - [sym_map] = STATE(3192), - [sym_unary_operator] = STATE(3192), - [sym_binary_operator] = STATE(3192), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3192), - [sym_call] = STATE(3192), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3192), - [sym_anonymous_function] = STATE(3192), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(2433), - [sym_integer] = ACTIONS(2433), - [sym_float] = ACTIONS(2433), - [sym_char] = ACTIONS(2433), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(2433), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [815] = { - [sym__expression] = STATE(3193), - [sym_block] = STATE(3193), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3193), - [sym_nil] = STATE(3193), - [sym__atom] = STATE(3193), - [sym_quoted_atom] = STATE(3193), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3193), - [sym_charlist] = STATE(3193), - [sym_sigil] = STATE(3193), - [sym_list] = STATE(3193), - [sym_tuple] = STATE(3193), - [sym_bitstring] = STATE(3193), - [sym_map] = STATE(3193), - [sym_unary_operator] = STATE(3193), - [sym_binary_operator] = STATE(3193), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3193), - [sym_call] = STATE(3193), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3193), - [sym_anonymous_function] = STATE(3193), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(2435), - [sym_integer] = ACTIONS(2435), - [sym_float] = ACTIONS(2435), - [sym_char] = ACTIONS(2435), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(2435), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [816] = { + [755] = { [sym__expression] = STATE(3433), [sym_block] = STATE(3433), - [sym__identifier] = STATE(72), - [sym_identifier] = STATE(72), - [sym_special_identifier] = STATE(72), + [sym__identifier] = STATE(70), + [sym_identifier] = STATE(70), + [sym_special_identifier] = STATE(70), [sym_boolean] = STATE(3433), [sym_nil] = STATE(3433), [sym__atom] = STATE(3433), [sym_quoted_atom] = STATE(3433), - [sym__quoted_i_double] = STATE(3516), - [sym__quoted_i_single] = STATE(3518), - [sym__quoted_i_heredoc_single] = STATE(3518), - [sym__quoted_i_heredoc_double] = STATE(3516), + [sym__quoted_i_double] = STATE(2196), + [sym__quoted_i_single] = STATE(2197), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), [sym_string] = STATE(3433), [sym_charlist] = STATE(3433), [sym_sigil] = STATE(3433), @@ -128942,61 +121955,7311 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_map] = STATE(3433), [sym_unary_operator] = STATE(3433), [sym_binary_operator] = STATE(3433), - [sym_operator_identifier] = STATE(4972), + [sym_operator_identifier] = STATE(5620), [sym_dot] = STATE(3433), [sym_call] = STATE(3433), - [sym__call_without_parentheses] = STATE(3517), - [sym__call_with_parentheses] = STATE(3515), - [sym__local_call_without_parentheses] = STATE(3511), - [sym__local_call_with_parentheses] = STATE(3073), - [sym__local_call_just_do_block] = STATE(3510), - [sym__remote_call_without_parentheses] = STATE(3514), - [sym__remote_call_with_parentheses] = STATE(3088), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(3095), - [sym__anonymous_dot] = STATE(4928), - [sym__double_call] = STATE(3499), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), [sym_access_call] = STATE(3433), [sym_anonymous_function] = STATE(3433), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1123), - [aux_sym_identifier_token1] = ACTIONS(1125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1125), - [sym_unused_identifier] = ACTIONS(1127), - [anon_sym___MODULE__] = ACTIONS(1129), - [anon_sym___DIR__] = ACTIONS(1129), - [anon_sym___ENV__] = ACTIONS(1129), - [anon_sym___CALLER__] = ACTIONS(1129), - [anon_sym___STACKTRACE__] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(2333), + [sym_integer] = ACTIONS(2333), + [sym_float] = ACTIONS(2333), + [sym_char] = ACTIONS(2333), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(2333), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(678), + [anon_sym_CARET] = ACTIONS(678), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(678), + [anon_sym_not] = ACTIONS(678), + [anon_sym_AT] = ACTIONS(680), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(406), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(682), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(412), + }, + [756] = { + [sym__expression] = STATE(2090), + [sym_block] = STATE(2090), + [sym__identifier] = STATE(70), + [sym_identifier] = STATE(70), + [sym_special_identifier] = STATE(70), + [sym_boolean] = STATE(2090), + [sym_nil] = STATE(2090), + [sym__atom] = STATE(2090), + [sym_quoted_atom] = STATE(2090), + [sym__quoted_i_double] = STATE(2196), + [sym__quoted_i_single] = STATE(2197), + [sym__quoted_i_heredoc_single] = STATE(2198), + [sym__quoted_i_heredoc_double] = STATE(2199), + [sym_string] = STATE(2090), + [sym_charlist] = STATE(2090), + [sym_sigil] = STATE(2090), + [sym_list] = STATE(2090), + [sym_tuple] = STATE(2090), + [sym_bitstring] = STATE(2090), + [sym_map] = STATE(2090), + [sym_unary_operator] = STATE(2090), + [sym_binary_operator] = STATE(2090), + [sym_operator_identifier] = STATE(5620), + [sym_dot] = STATE(2090), + [sym_call] = STATE(2090), + [sym__call_without_parentheses] = STATE(2200), + [sym__call_with_parentheses] = STATE(2201), + [sym__local_call_without_parentheses] = STATE(2202), + [sym__local_call_with_parentheses] = STATE(1553), + [sym__local_call_just_do_block] = STATE(2204), + [sym__remote_call_without_parentheses] = STATE(2205), + [sym__remote_call_with_parentheses] = STATE(1555), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1556), + [sym__anonymous_dot] = STATE(5468), + [sym__double_call] = STATE(2209), + [sym_access_call] = STATE(2090), + [sym_anonymous_function] = STATE(2090), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(363), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(1941), + [sym_integer] = ACTIONS(1941), + [sym_float] = ACTIONS(1941), + [sym_char] = ACTIONS(1941), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [sym_atom] = ACTIONS(1941), + [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(678), + [anon_sym_CARET] = ACTIONS(678), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(678), + [anon_sym_not] = ACTIONS(678), + [anon_sym_AT] = ACTIONS(680), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(406), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(682), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(412), + }, + [757] = { + [sym__expression] = STATE(2695), + [sym_block] = STATE(2695), + [sym__identifier] = STATE(56), + [sym_identifier] = STATE(56), + [sym_special_identifier] = STATE(56), + [sym_boolean] = STATE(2695), + [sym_nil] = STATE(2695), + [sym__atom] = STATE(2695), + [sym_quoted_atom] = STATE(2695), + [sym__quoted_i_double] = STATE(2913), + [sym__quoted_i_single] = STATE(2912), + [sym__quoted_i_heredoc_single] = STATE(2910), + [sym__quoted_i_heredoc_double] = STATE(2805), + [sym_string] = STATE(2695), + [sym_charlist] = STATE(2695), + [sym_sigil] = STATE(2695), + [sym_list] = STATE(2695), + [sym_tuple] = STATE(2695), + [sym_bitstring] = STATE(2695), + [sym_map] = STATE(2695), + [sym_unary_operator] = STATE(2695), + [sym_binary_operator] = STATE(2695), + [sym_operator_identifier] = STATE(5636), + [sym_dot] = STATE(2695), + [sym_call] = STATE(2695), + [sym__call_without_parentheses] = STATE(2883), + [sym__call_with_parentheses] = STATE(2876), + [sym__local_call_without_parentheses] = STATE(2870), + [sym__local_call_with_parentheses] = STATE(2037), + [sym__local_call_just_do_block] = STATE(2853), + [sym__remote_call_without_parentheses] = STATE(2846), + [sym__remote_call_with_parentheses] = STATE(2038), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2051), + [sym__anonymous_dot] = STATE(5534), + [sym__double_call] = STATE(2836), + [sym_access_call] = STATE(2695), + [sym_anonymous_function] = STATE(2695), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(2335), + [sym_integer] = ACTIONS(2335), + [sym_float] = ACTIONS(2335), + [sym_char] = ACTIONS(2335), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(2335), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [758] = { + [sym__expression] = STATE(2696), + [sym_block] = STATE(2696), + [sym__identifier] = STATE(56), + [sym_identifier] = STATE(56), + [sym_special_identifier] = STATE(56), + [sym_boolean] = STATE(2696), + [sym_nil] = STATE(2696), + [sym__atom] = STATE(2696), + [sym_quoted_atom] = STATE(2696), + [sym__quoted_i_double] = STATE(2913), + [sym__quoted_i_single] = STATE(2912), + [sym__quoted_i_heredoc_single] = STATE(2910), + [sym__quoted_i_heredoc_double] = STATE(2805), + [sym_string] = STATE(2696), + [sym_charlist] = STATE(2696), + [sym_sigil] = STATE(2696), + [sym_list] = STATE(2696), + [sym_tuple] = STATE(2696), + [sym_bitstring] = STATE(2696), + [sym_map] = STATE(2696), + [sym_unary_operator] = STATE(2696), + [sym_binary_operator] = STATE(2696), + [sym_operator_identifier] = STATE(5636), + [sym_dot] = STATE(2696), + [sym_call] = STATE(2696), + [sym__call_without_parentheses] = STATE(2883), + [sym__call_with_parentheses] = STATE(2876), + [sym__local_call_without_parentheses] = STATE(2870), + [sym__local_call_with_parentheses] = STATE(2037), + [sym__local_call_just_do_block] = STATE(2853), + [sym__remote_call_without_parentheses] = STATE(2846), + [sym__remote_call_with_parentheses] = STATE(2038), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2051), + [sym__anonymous_dot] = STATE(5534), + [sym__double_call] = STATE(2836), + [sym_access_call] = STATE(2696), + [sym_anonymous_function] = STATE(2696), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(2337), + [sym_integer] = ACTIONS(2337), + [sym_float] = ACTIONS(2337), + [sym_char] = ACTIONS(2337), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(2337), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [759] = { + [sym__expression] = STATE(4051), + [sym_block] = STATE(4051), + [sym__identifier] = STATE(66), + [sym_identifier] = STATE(66), + [sym_special_identifier] = STATE(66), + [sym_boolean] = STATE(4051), + [sym_nil] = STATE(4051), + [sym__atom] = STATE(4051), + [sym_quoted_atom] = STATE(4051), + [sym__quoted_i_double] = STATE(4034), + [sym__quoted_i_single] = STATE(4021), + [sym__quoted_i_heredoc_single] = STATE(4077), + [sym__quoted_i_heredoc_double] = STATE(4083), + [sym_string] = STATE(4051), + [sym_charlist] = STATE(4051), + [sym_sigil] = STATE(4051), + [sym_list] = STATE(4051), + [sym_tuple] = STATE(4051), + [sym_bitstring] = STATE(4051), + [sym_map] = STATE(4051), + [sym_unary_operator] = STATE(4051), + [sym_binary_operator] = STATE(4051), + [sym_operator_identifier] = STATE(5580), + [sym_dot] = STATE(4051), + [sym_call] = STATE(4051), + [sym__call_without_parentheses] = STATE(4089), + [sym__call_with_parentheses] = STATE(4092), + [sym__local_call_without_parentheses] = STATE(4097), + [sym__local_call_with_parentheses] = STATE(3372), + [sym__local_call_just_do_block] = STATE(4098), + [sym__remote_call_without_parentheses] = STATE(4105), + [sym__remote_call_with_parentheses] = STATE(3374), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3375), + [sym__anonymous_dot] = STATE(5531), + [sym__double_call] = STATE(4106), + [sym_access_call] = STATE(4051), + [sym_anonymous_function] = STATE(4051), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1133), + [aux_sym_identifier_token1] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1135), + [sym_unused_identifier] = ACTIONS(1137), + [anon_sym___MODULE__] = ACTIONS(1139), + [anon_sym___DIR__] = ACTIONS(1139), + [anon_sym___ENV__] = ACTIONS(1139), + [anon_sym___CALLER__] = ACTIONS(1139), + [anon_sym___STACKTRACE__] = ACTIONS(1139), + [sym_alias] = ACTIONS(2339), + [sym_integer] = ACTIONS(2339), + [sym_float] = ACTIONS(2339), + [sym_char] = ACTIONS(2339), + [anon_sym_true] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [anon_sym_nil] = ACTIONS(1145), + [sym_atom] = ACTIONS(2339), + [anon_sym_DQUOTE] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1151), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1157), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1159), + [anon_sym_LT_LT] = ACTIONS(1163), + [anon_sym_PERCENT] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_AT] = ACTIONS(1173), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1175), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1177), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1179), + }, + [760] = { + [sym__expression] = STATE(3020), + [sym_block] = STATE(3020), + [sym__identifier] = STATE(41), + [sym_identifier] = STATE(41), + [sym_special_identifier] = STATE(41), + [sym_boolean] = STATE(3020), + [sym_nil] = STATE(3020), + [sym__atom] = STATE(3020), + [sym_quoted_atom] = STATE(3020), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(3020), + [sym_charlist] = STATE(3020), + [sym_sigil] = STATE(3020), + [sym_list] = STATE(3020), + [sym_tuple] = STATE(3020), + [sym_bitstring] = STATE(3020), + [sym_map] = STATE(3020), + [sym_unary_operator] = STATE(3020), + [sym_binary_operator] = STATE(3020), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(3020), + [sym_call] = STATE(3020), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(3020), + [sym_anonymous_function] = STATE(3020), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(2341), + [sym_integer] = ACTIONS(2341), + [sym_float] = ACTIONS(2341), + [sym_char] = ACTIONS(2341), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(453), + [anon_sym_not] = ACTIONS(453), + [anon_sym_AT] = ACTIONS(455), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(457), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [761] = { + [sym__expression] = STATE(3021), + [sym_block] = STATE(3021), + [sym__identifier] = STATE(41), + [sym_identifier] = STATE(41), + [sym_special_identifier] = STATE(41), + [sym_boolean] = STATE(3021), + [sym_nil] = STATE(3021), + [sym__atom] = STATE(3021), + [sym_quoted_atom] = STATE(3021), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(3021), + [sym_charlist] = STATE(3021), + [sym_sigil] = STATE(3021), + [sym_list] = STATE(3021), + [sym_tuple] = STATE(3021), + [sym_bitstring] = STATE(3021), + [sym_map] = STATE(3021), + [sym_unary_operator] = STATE(3021), + [sym_binary_operator] = STATE(3021), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(3021), + [sym_call] = STATE(3021), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(3021), + [sym_anonymous_function] = STATE(3021), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(2343), + [sym_integer] = ACTIONS(2343), + [sym_float] = ACTIONS(2343), + [sym_char] = ACTIONS(2343), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2343), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(453), + [anon_sym_not] = ACTIONS(453), + [anon_sym_AT] = ACTIONS(455), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(457), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [762] = { + [sym__expression] = STATE(3029), + [sym_block] = STATE(3029), + [sym__identifier] = STATE(41), + [sym_identifier] = STATE(41), + [sym_special_identifier] = STATE(41), + [sym_boolean] = STATE(3029), + [sym_nil] = STATE(3029), + [sym__atom] = STATE(3029), + [sym_quoted_atom] = STATE(3029), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(3029), + [sym_charlist] = STATE(3029), + [sym_sigil] = STATE(3029), + [sym_list] = STATE(3029), + [sym_tuple] = STATE(3029), + [sym_bitstring] = STATE(3029), + [sym_map] = STATE(3029), + [sym_unary_operator] = STATE(3029), + [sym_binary_operator] = STATE(3029), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(3029), + [sym_call] = STATE(3029), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(3029), + [sym_anonymous_function] = STATE(3029), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(2345), + [sym_integer] = ACTIONS(2345), + [sym_float] = ACTIONS(2345), + [sym_char] = ACTIONS(2345), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2345), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(453), + [anon_sym_not] = ACTIONS(453), + [anon_sym_AT] = ACTIONS(455), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(457), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [763] = { + [sym__expression] = STATE(3030), + [sym_block] = STATE(3030), + [sym__identifier] = STATE(41), + [sym_identifier] = STATE(41), + [sym_special_identifier] = STATE(41), + [sym_boolean] = STATE(3030), + [sym_nil] = STATE(3030), + [sym__atom] = STATE(3030), + [sym_quoted_atom] = STATE(3030), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(3030), + [sym_charlist] = STATE(3030), + [sym_sigil] = STATE(3030), + [sym_list] = STATE(3030), + [sym_tuple] = STATE(3030), + [sym_bitstring] = STATE(3030), + [sym_map] = STATE(3030), + [sym_unary_operator] = STATE(3030), + [sym_binary_operator] = STATE(3030), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(3030), + [sym_call] = STATE(3030), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(3030), + [sym_anonymous_function] = STATE(3030), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(2347), + [sym_integer] = ACTIONS(2347), + [sym_float] = ACTIONS(2347), + [sym_char] = ACTIONS(2347), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2347), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(453), + [anon_sym_not] = ACTIONS(453), + [anon_sym_AT] = ACTIONS(455), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(457), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [764] = { + [sym__expression] = STATE(3031), + [sym_block] = STATE(3031), + [sym__identifier] = STATE(41), + [sym_identifier] = STATE(41), + [sym_special_identifier] = STATE(41), + [sym_boolean] = STATE(3031), + [sym_nil] = STATE(3031), + [sym__atom] = STATE(3031), + [sym_quoted_atom] = STATE(3031), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(3031), + [sym_charlist] = STATE(3031), + [sym_sigil] = STATE(3031), + [sym_list] = STATE(3031), + [sym_tuple] = STATE(3031), + [sym_bitstring] = STATE(3031), + [sym_map] = STATE(3031), + [sym_unary_operator] = STATE(3031), + [sym_binary_operator] = STATE(3031), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(3031), + [sym_call] = STATE(3031), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(3031), + [sym_anonymous_function] = STATE(3031), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(2349), + [sym_integer] = ACTIONS(2349), + [sym_float] = ACTIONS(2349), + [sym_char] = ACTIONS(2349), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2349), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(453), + [anon_sym_not] = ACTIONS(453), + [anon_sym_AT] = ACTIONS(455), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(457), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [765] = { + [sym__expression] = STATE(1524), + [sym_block] = STATE(1524), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(1524), + [sym_nil] = STATE(1524), + [sym__atom] = STATE(1524), + [sym_quoted_atom] = STATE(1524), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(1524), + [sym_charlist] = STATE(1524), + [sym_sigil] = STATE(1524), + [sym_list] = STATE(1524), + [sym_tuple] = STATE(1524), + [sym_bitstring] = STATE(1524), + [sym_map] = STATE(1524), + [sym_unary_operator] = STATE(1524), + [sym_binary_operator] = STATE(1524), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(1524), + [sym_call] = STATE(1524), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(1524), + [sym_anonymous_function] = STATE(1524), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(2351), + [sym_integer] = ACTIONS(2351), + [sym_float] = ACTIONS(2351), + [sym_char] = ACTIONS(2351), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2351), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [766] = { + [sym__expression] = STATE(3033), + [sym_block] = STATE(3033), + [sym__identifier] = STATE(41), + [sym_identifier] = STATE(41), + [sym_special_identifier] = STATE(41), + [sym_boolean] = STATE(3033), + [sym_nil] = STATE(3033), + [sym__atom] = STATE(3033), + [sym_quoted_atom] = STATE(3033), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(3033), + [sym_charlist] = STATE(3033), + [sym_sigil] = STATE(3033), + [sym_list] = STATE(3033), + [sym_tuple] = STATE(3033), + [sym_bitstring] = STATE(3033), + [sym_map] = STATE(3033), + [sym_unary_operator] = STATE(3033), + [sym_binary_operator] = STATE(3033), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(3033), + [sym_call] = STATE(3033), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(3033), + [sym_anonymous_function] = STATE(3033), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(2353), + [sym_integer] = ACTIONS(2353), + [sym_float] = ACTIONS(2353), + [sym_char] = ACTIONS(2353), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2353), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(453), + [anon_sym_not] = ACTIONS(453), + [anon_sym_AT] = ACTIONS(455), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(457), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [767] = { + [sym__expression] = STATE(3034), + [sym_block] = STATE(3034), + [sym__identifier] = STATE(41), + [sym_identifier] = STATE(41), + [sym_special_identifier] = STATE(41), + [sym_boolean] = STATE(3034), + [sym_nil] = STATE(3034), + [sym__atom] = STATE(3034), + [sym_quoted_atom] = STATE(3034), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(3034), + [sym_charlist] = STATE(3034), + [sym_sigil] = STATE(3034), + [sym_list] = STATE(3034), + [sym_tuple] = STATE(3034), + [sym_bitstring] = STATE(3034), + [sym_map] = STATE(3034), + [sym_unary_operator] = STATE(3034), + [sym_binary_operator] = STATE(3034), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(3034), + [sym_call] = STATE(3034), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(3034), + [sym_anonymous_function] = STATE(3034), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(2355), + [sym_integer] = ACTIONS(2355), + [sym_float] = ACTIONS(2355), + [sym_char] = ACTIONS(2355), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2355), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(453), + [anon_sym_not] = ACTIONS(453), + [anon_sym_AT] = ACTIONS(455), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(457), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [768] = { + [sym__expression] = STATE(3035), + [sym_block] = STATE(3035), + [sym__identifier] = STATE(41), + [sym_identifier] = STATE(41), + [sym_special_identifier] = STATE(41), + [sym_boolean] = STATE(3035), + [sym_nil] = STATE(3035), + [sym__atom] = STATE(3035), + [sym_quoted_atom] = STATE(3035), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(3035), + [sym_charlist] = STATE(3035), + [sym_sigil] = STATE(3035), + [sym_list] = STATE(3035), + [sym_tuple] = STATE(3035), + [sym_bitstring] = STATE(3035), + [sym_map] = STATE(3035), + [sym_unary_operator] = STATE(3035), + [sym_binary_operator] = STATE(3035), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(3035), + [sym_call] = STATE(3035), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(3035), + [sym_anonymous_function] = STATE(3035), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(2357), + [sym_integer] = ACTIONS(2357), + [sym_float] = ACTIONS(2357), + [sym_char] = ACTIONS(2357), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2357), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(453), + [anon_sym_not] = ACTIONS(453), + [anon_sym_AT] = ACTIONS(455), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(457), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [769] = { + [sym__expression] = STATE(2945), + [sym_block] = STATE(2945), + [sym__identifier] = STATE(56), + [sym_identifier] = STATE(56), + [sym_special_identifier] = STATE(56), + [sym_boolean] = STATE(2945), + [sym_nil] = STATE(2945), + [sym__atom] = STATE(2945), + [sym_quoted_atom] = STATE(2945), + [sym__quoted_i_double] = STATE(2913), + [sym__quoted_i_single] = STATE(2912), + [sym__quoted_i_heredoc_single] = STATE(2910), + [sym__quoted_i_heredoc_double] = STATE(2805), + [sym_string] = STATE(2945), + [sym_charlist] = STATE(2945), + [sym_sigil] = STATE(2945), + [sym_list] = STATE(2945), + [sym_tuple] = STATE(2945), + [sym_bitstring] = STATE(2945), + [sym_map] = STATE(2945), + [sym_unary_operator] = STATE(2945), + [sym_binary_operator] = STATE(2945), + [sym_operator_identifier] = STATE(5636), + [sym_dot] = STATE(2945), + [sym_call] = STATE(2945), + [sym__call_without_parentheses] = STATE(2883), + [sym__call_with_parentheses] = STATE(2876), + [sym__local_call_without_parentheses] = STATE(2870), + [sym__local_call_with_parentheses] = STATE(2037), + [sym__local_call_just_do_block] = STATE(2853), + [sym__remote_call_without_parentheses] = STATE(2846), + [sym__remote_call_with_parentheses] = STATE(2038), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2051), + [sym__anonymous_dot] = STATE(5534), + [sym__double_call] = STATE(2836), + [sym_access_call] = STATE(2945), + [sym_anonymous_function] = STATE(2945), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(2359), + [sym_integer] = ACTIONS(2359), + [sym_float] = ACTIONS(2359), + [sym_char] = ACTIONS(2359), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(2359), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [770] = { + [sym__expression] = STATE(3037), + [sym_block] = STATE(3037), + [sym__identifier] = STATE(41), + [sym_identifier] = STATE(41), + [sym_special_identifier] = STATE(41), + [sym_boolean] = STATE(3037), + [sym_nil] = STATE(3037), + [sym__atom] = STATE(3037), + [sym_quoted_atom] = STATE(3037), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(3037), + [sym_charlist] = STATE(3037), + [sym_sigil] = STATE(3037), + [sym_list] = STATE(3037), + [sym_tuple] = STATE(3037), + [sym_bitstring] = STATE(3037), + [sym_map] = STATE(3037), + [sym_unary_operator] = STATE(3037), + [sym_binary_operator] = STATE(3037), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(3037), + [sym_call] = STATE(3037), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(3037), + [sym_anonymous_function] = STATE(3037), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(2361), + [sym_integer] = ACTIONS(2361), + [sym_float] = ACTIONS(2361), + [sym_char] = ACTIONS(2361), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2361), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(453), + [anon_sym_not] = ACTIONS(453), + [anon_sym_AT] = ACTIONS(455), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(457), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [771] = { + [sym__expression] = STATE(3038), + [sym_block] = STATE(3038), + [sym__identifier] = STATE(41), + [sym_identifier] = STATE(41), + [sym_special_identifier] = STATE(41), + [sym_boolean] = STATE(3038), + [sym_nil] = STATE(3038), + [sym__atom] = STATE(3038), + [sym_quoted_atom] = STATE(3038), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(3038), + [sym_charlist] = STATE(3038), + [sym_sigil] = STATE(3038), + [sym_list] = STATE(3038), + [sym_tuple] = STATE(3038), + [sym_bitstring] = STATE(3038), + [sym_map] = STATE(3038), + [sym_unary_operator] = STATE(3038), + [sym_binary_operator] = STATE(3038), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(3038), + [sym_call] = STATE(3038), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(3038), + [sym_anonymous_function] = STATE(3038), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(2363), + [sym_integer] = ACTIONS(2363), + [sym_float] = ACTIONS(2363), + [sym_char] = ACTIONS(2363), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2363), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(453), + [anon_sym_not] = ACTIONS(453), + [anon_sym_AT] = ACTIONS(455), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(457), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [772] = { + [sym__expression] = STATE(4138), + [sym_block] = STATE(4138), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(4138), + [sym_nil] = STATE(4138), + [sym__atom] = STATE(4138), + [sym_quoted_atom] = STATE(4138), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4138), + [sym_charlist] = STATE(4138), + [sym_sigil] = STATE(4138), + [sym_list] = STATE(4138), + [sym_tuple] = STATE(4138), + [sym_bitstring] = STATE(4138), + [sym_map] = STATE(4138), + [sym_unary_operator] = STATE(4138), + [sym_binary_operator] = STATE(4138), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4138), + [sym_call] = STATE(4138), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4138), + [sym_anonymous_function] = STATE(4138), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2365), + [sym_integer] = ACTIONS(2365), + [sym_float] = ACTIONS(2365), + [sym_char] = ACTIONS(2365), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(2365), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [773] = { + [sym__expression] = STATE(2719), + [sym_block] = STATE(2719), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(2719), + [sym_nil] = STATE(2719), + [sym__atom] = STATE(2719), + [sym_quoted_atom] = STATE(2719), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2719), + [sym_charlist] = STATE(2719), + [sym_sigil] = STATE(2719), + [sym_list] = STATE(2719), + [sym_tuple] = STATE(2719), + [sym_bitstring] = STATE(2719), + [sym_map] = STATE(2719), + [sym_unary_operator] = STATE(2719), + [sym_binary_operator] = STATE(2719), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2719), + [sym_call] = STATE(2719), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(2719), + [sym_anonymous_function] = STATE(2719), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(2367), + [sym_integer] = ACTIONS(2367), + [sym_float] = ACTIONS(2367), + [sym_char] = ACTIONS(2367), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2367), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1363), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [774] = { + [sym__expression] = STATE(1446), + [sym_block] = STATE(1446), + [sym__identifier] = STATE(41), + [sym_identifier] = STATE(41), + [sym_special_identifier] = STATE(41), + [sym_boolean] = STATE(1446), + [sym_nil] = STATE(1446), + [sym__atom] = STATE(1446), + [sym_quoted_atom] = STATE(1446), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(1446), + [sym_charlist] = STATE(1446), + [sym_sigil] = STATE(1446), + [sym_list] = STATE(1446), + [sym_tuple] = STATE(1446), + [sym_bitstring] = STATE(1446), + [sym_map] = STATE(1446), + [sym_unary_operator] = STATE(1446), + [sym_binary_operator] = STATE(1446), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(1446), + [sym_call] = STATE(1446), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(1446), + [sym_anonymous_function] = STATE(1446), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(2369), + [sym_integer] = ACTIONS(2369), + [sym_float] = ACTIONS(2369), + [sym_char] = ACTIONS(2369), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2369), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(453), + [anon_sym_not] = ACTIONS(453), + [anon_sym_AT] = ACTIONS(455), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(457), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [775] = { + [sym__expression] = STATE(2712), + [sym_block] = STATE(2712), + [sym__identifier] = STATE(41), + [sym_identifier] = STATE(41), + [sym_special_identifier] = STATE(41), + [sym_boolean] = STATE(2712), + [sym_nil] = STATE(2712), + [sym__atom] = STATE(2712), + [sym_quoted_atom] = STATE(2712), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(2712), + [sym_charlist] = STATE(2712), + [sym_sigil] = STATE(2712), + [sym_list] = STATE(2712), + [sym_tuple] = STATE(2712), + [sym_bitstring] = STATE(2712), + [sym_map] = STATE(2712), + [sym_unary_operator] = STATE(2712), + [sym_binary_operator] = STATE(2712), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(2712), + [sym_call] = STATE(2712), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(2712), + [sym_anonymous_function] = STATE(2712), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(2371), + [sym_integer] = ACTIONS(2371), + [sym_float] = ACTIONS(2371), + [sym_char] = ACTIONS(2371), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2371), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(453), + [anon_sym_not] = ACTIONS(453), + [anon_sym_AT] = ACTIONS(455), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(457), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [776] = { + [sym__expression] = STATE(4142), + [sym_block] = STATE(4142), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(4142), + [sym_nil] = STATE(4142), + [sym__atom] = STATE(4142), + [sym_quoted_atom] = STATE(4142), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4142), + [sym_charlist] = STATE(4142), + [sym_sigil] = STATE(4142), + [sym_list] = STATE(4142), + [sym_tuple] = STATE(4142), + [sym_bitstring] = STATE(4142), + [sym_map] = STATE(4142), + [sym_unary_operator] = STATE(4142), + [sym_binary_operator] = STATE(4142), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4142), + [sym_call] = STATE(4142), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4142), + [sym_anonymous_function] = STATE(4142), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2373), + [sym_integer] = ACTIONS(2373), + [sym_float] = ACTIONS(2373), + [sym_char] = ACTIONS(2373), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(2373), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [777] = { + [sym__expression] = STATE(3067), + [sym_block] = STATE(3067), + [sym__identifier] = STATE(51), + [sym_identifier] = STATE(51), + [sym_special_identifier] = STATE(51), + [sym_boolean] = STATE(3067), + [sym_nil] = STATE(3067), + [sym__atom] = STATE(3067), + [sym_quoted_atom] = STATE(3067), + [sym__quoted_i_double] = STATE(2738), + [sym__quoted_i_single] = STATE(2766), + [sym__quoted_i_heredoc_single] = STATE(2751), + [sym__quoted_i_heredoc_double] = STATE(2852), + [sym_string] = STATE(3067), + [sym_charlist] = STATE(3067), + [sym_sigil] = STATE(3067), + [sym_list] = STATE(3067), + [sym_tuple] = STATE(3067), + [sym_bitstring] = STATE(3067), + [sym_map] = STATE(3067), + [sym_unary_operator] = STATE(3067), + [sym_binary_operator] = STATE(3067), + [sym_operator_identifier] = STATE(5596), + [sym_dot] = STATE(3067), + [sym_call] = STATE(3067), + [sym__call_without_parentheses] = STATE(2764), + [sym__call_with_parentheses] = STATE(2765), + [sym__local_call_without_parentheses] = STATE(2767), + [sym__local_call_with_parentheses] = STATE(2120), + [sym__local_call_just_do_block] = STATE(2833), + [sym__remote_call_without_parentheses] = STATE(2843), + [sym__remote_call_with_parentheses] = STATE(2108), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2107), + [sym__anonymous_dot] = STATE(5500), + [sym__double_call] = STATE(2844), + [sym_access_call] = STATE(3067), + [sym_anonymous_function] = STATE(3067), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(1345), + [sym_integer] = ACTIONS(1345), + [sym_float] = ACTIONS(1345), + [sym_char] = ACTIONS(1345), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(1345), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(541), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(545), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(547), + }, + [778] = { + [sym__expression] = STATE(2946), + [sym_block] = STATE(2946), + [sym__identifier] = STATE(56), + [sym_identifier] = STATE(56), + [sym_special_identifier] = STATE(56), + [sym_boolean] = STATE(2946), + [sym_nil] = STATE(2946), + [sym__atom] = STATE(2946), + [sym_quoted_atom] = STATE(2946), + [sym__quoted_i_double] = STATE(2913), + [sym__quoted_i_single] = STATE(2912), + [sym__quoted_i_heredoc_single] = STATE(2910), + [sym__quoted_i_heredoc_double] = STATE(2805), + [sym_string] = STATE(2946), + [sym_charlist] = STATE(2946), + [sym_sigil] = STATE(2946), + [sym_list] = STATE(2946), + [sym_tuple] = STATE(2946), + [sym_bitstring] = STATE(2946), + [sym_map] = STATE(2946), + [sym_unary_operator] = STATE(2946), + [sym_binary_operator] = STATE(2946), + [sym_operator_identifier] = STATE(5636), + [sym_dot] = STATE(2946), + [sym_call] = STATE(2946), + [sym__call_without_parentheses] = STATE(2883), + [sym__call_with_parentheses] = STATE(2876), + [sym__local_call_without_parentheses] = STATE(2870), + [sym__local_call_with_parentheses] = STATE(2037), + [sym__local_call_just_do_block] = STATE(2853), + [sym__remote_call_without_parentheses] = STATE(2846), + [sym__remote_call_with_parentheses] = STATE(2038), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2051), + [sym__anonymous_dot] = STATE(5534), + [sym__double_call] = STATE(2836), + [sym_access_call] = STATE(2946), + [sym_anonymous_function] = STATE(2946), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(2375), + [sym_integer] = ACTIONS(2375), + [sym_float] = ACTIONS(2375), + [sym_char] = ACTIONS(2375), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(2375), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [779] = { + [sym__expression] = STATE(2949), + [sym_block] = STATE(2949), + [sym__identifier] = STATE(56), + [sym_identifier] = STATE(56), + [sym_special_identifier] = STATE(56), + [sym_boolean] = STATE(2949), + [sym_nil] = STATE(2949), + [sym__atom] = STATE(2949), + [sym_quoted_atom] = STATE(2949), + [sym__quoted_i_double] = STATE(2913), + [sym__quoted_i_single] = STATE(2912), + [sym__quoted_i_heredoc_single] = STATE(2910), + [sym__quoted_i_heredoc_double] = STATE(2805), + [sym_string] = STATE(2949), + [sym_charlist] = STATE(2949), + [sym_sigil] = STATE(2949), + [sym_list] = STATE(2949), + [sym_tuple] = STATE(2949), + [sym_bitstring] = STATE(2949), + [sym_map] = STATE(2949), + [sym_unary_operator] = STATE(2949), + [sym_binary_operator] = STATE(2949), + [sym_operator_identifier] = STATE(5636), + [sym_dot] = STATE(2949), + [sym_call] = STATE(2949), + [sym__call_without_parentheses] = STATE(2883), + [sym__call_with_parentheses] = STATE(2876), + [sym__local_call_without_parentheses] = STATE(2870), + [sym__local_call_with_parentheses] = STATE(2037), + [sym__local_call_just_do_block] = STATE(2853), + [sym__remote_call_without_parentheses] = STATE(2846), + [sym__remote_call_with_parentheses] = STATE(2038), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2051), + [sym__anonymous_dot] = STATE(5534), + [sym__double_call] = STATE(2836), + [sym_access_call] = STATE(2949), + [sym_anonymous_function] = STATE(2949), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(2377), + [sym_integer] = ACTIONS(2377), + [sym_float] = ACTIONS(2377), + [sym_char] = ACTIONS(2377), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(2377), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [780] = { + [sym__expression] = STATE(2886), + [sym_block] = STATE(2886), + [sym__identifier] = STATE(51), + [sym_identifier] = STATE(51), + [sym_special_identifier] = STATE(51), + [sym_boolean] = STATE(2886), + [sym_nil] = STATE(2886), + [sym__atom] = STATE(2886), + [sym_quoted_atom] = STATE(2886), + [sym__quoted_i_double] = STATE(2738), + [sym__quoted_i_single] = STATE(2766), + [sym__quoted_i_heredoc_single] = STATE(2751), + [sym__quoted_i_heredoc_double] = STATE(2852), + [sym_string] = STATE(2886), + [sym_charlist] = STATE(2886), + [sym_sigil] = STATE(2886), + [sym_list] = STATE(2886), + [sym_tuple] = STATE(2886), + [sym_bitstring] = STATE(2886), + [sym_map] = STATE(2886), + [sym_unary_operator] = STATE(2886), + [sym_binary_operator] = STATE(2886), + [sym_operator_identifier] = STATE(5596), + [sym_dot] = STATE(2886), + [sym_call] = STATE(2886), + [sym__call_without_parentheses] = STATE(2764), + [sym__call_with_parentheses] = STATE(2765), + [sym__local_call_without_parentheses] = STATE(2767), + [sym__local_call_with_parentheses] = STATE(2120), + [sym__local_call_just_do_block] = STATE(2833), + [sym__remote_call_without_parentheses] = STATE(2843), + [sym__remote_call_with_parentheses] = STATE(2108), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2107), + [sym__anonymous_dot] = STATE(5500), + [sym__double_call] = STATE(2844), + [sym_access_call] = STATE(2886), + [sym_anonymous_function] = STATE(2886), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(2379), + [sym_integer] = ACTIONS(2379), + [sym_float] = ACTIONS(2379), + [sym_char] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(2379), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(541), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(545), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(547), + }, + [781] = { + [sym__expression] = STATE(4140), + [sym_block] = STATE(4140), + [sym__identifier] = STATE(64), + [sym_identifier] = STATE(64), + [sym_special_identifier] = STATE(64), + [sym_boolean] = STATE(4140), + [sym_nil] = STATE(4140), + [sym__atom] = STATE(4140), + [sym_quoted_atom] = STATE(4140), + [sym__quoted_i_double] = STATE(3871), + [sym__quoted_i_single] = STATE(3876), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(4140), + [sym_charlist] = STATE(4140), + [sym_sigil] = STATE(4140), + [sym_list] = STATE(4140), + [sym_tuple] = STATE(4140), + [sym_bitstring] = STATE(4140), + [sym_map] = STATE(4140), + [sym_unary_operator] = STATE(4140), + [sym_binary_operator] = STATE(4140), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(4140), + [sym_call] = STATE(4140), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), + [sym__remote_dot] = STATE(55), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(4140), + [sym_anonymous_function] = STATE(4140), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1413), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2381), + [sym_integer] = ACTIONS(2381), + [sym_float] = ACTIONS(2381), + [sym_char] = ACTIONS(2381), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(2381), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [782] = { + [sym__expression] = STATE(4144), + [sym_block] = STATE(4144), + [sym__identifier] = STATE(64), + [sym_identifier] = STATE(64), + [sym_special_identifier] = STATE(64), + [sym_boolean] = STATE(4144), + [sym_nil] = STATE(4144), + [sym__atom] = STATE(4144), + [sym_quoted_atom] = STATE(4144), + [sym__quoted_i_double] = STATE(3871), + [sym__quoted_i_single] = STATE(3876), + [sym__quoted_i_heredoc_single] = STATE(3875), + [sym__quoted_i_heredoc_double] = STATE(3772), + [sym_string] = STATE(4144), + [sym_charlist] = STATE(4144), + [sym_sigil] = STATE(4144), + [sym_list] = STATE(4144), + [sym_tuple] = STATE(4144), + [sym_bitstring] = STATE(4144), + [sym_map] = STATE(4144), + [sym_unary_operator] = STATE(4144), + [sym_binary_operator] = STATE(4144), + [sym_operator_identifier] = STATE(5588), + [sym_dot] = STATE(4144), + [sym_call] = STATE(4144), + [sym__call_without_parentheses] = STATE(3870), + [sym__call_with_parentheses] = STATE(3846), + [sym__local_call_without_parentheses] = STATE(3844), + [sym__local_call_with_parentheses] = STATE(2763), + [sym__local_call_just_do_block] = STATE(3843), + [sym__remote_call_without_parentheses] = STATE(3842), + [sym__remote_call_with_parentheses] = STATE(2762), + [sym__remote_dot] = STATE(55), + [sym__anonymous_call] = STATE(2839), + [sym__anonymous_dot] = STATE(5459), + [sym__double_call] = STATE(3841), + [sym_access_call] = STATE(4144), + [sym_anonymous_function] = STATE(4144), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1413), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2383), + [sym_integer] = ACTIONS(2383), + [sym_float] = ACTIONS(2383), + [sym_char] = ACTIONS(2383), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(2383), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [783] = { + [sym__expression] = STATE(2950), + [sym_block] = STATE(2950), + [sym__identifier] = STATE(56), + [sym_identifier] = STATE(56), + [sym_special_identifier] = STATE(56), + [sym_boolean] = STATE(2950), + [sym_nil] = STATE(2950), + [sym__atom] = STATE(2950), + [sym_quoted_atom] = STATE(2950), + [sym__quoted_i_double] = STATE(2913), + [sym__quoted_i_single] = STATE(2912), + [sym__quoted_i_heredoc_single] = STATE(2910), + [sym__quoted_i_heredoc_double] = STATE(2805), + [sym_string] = STATE(2950), + [sym_charlist] = STATE(2950), + [sym_sigil] = STATE(2950), + [sym_list] = STATE(2950), + [sym_tuple] = STATE(2950), + [sym_bitstring] = STATE(2950), + [sym_map] = STATE(2950), + [sym_unary_operator] = STATE(2950), + [sym_binary_operator] = STATE(2950), + [sym_operator_identifier] = STATE(5636), + [sym_dot] = STATE(2950), + [sym_call] = STATE(2950), + [sym__call_without_parentheses] = STATE(2883), + [sym__call_with_parentheses] = STATE(2876), + [sym__local_call_without_parentheses] = STATE(2870), + [sym__local_call_with_parentheses] = STATE(2037), + [sym__local_call_just_do_block] = STATE(2853), + [sym__remote_call_without_parentheses] = STATE(2846), + [sym__remote_call_with_parentheses] = STATE(2038), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2051), + [sym__anonymous_dot] = STATE(5534), + [sym__double_call] = STATE(2836), + [sym_access_call] = STATE(2950), + [sym_anonymous_function] = STATE(2950), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(2385), + [sym_integer] = ACTIONS(2385), + [sym_float] = ACTIONS(2385), + [sym_char] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(2385), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [784] = { + [sym__expression] = STATE(2951), + [sym_block] = STATE(2951), + [sym__identifier] = STATE(56), + [sym_identifier] = STATE(56), + [sym_special_identifier] = STATE(56), + [sym_boolean] = STATE(2951), + [sym_nil] = STATE(2951), + [sym__atom] = STATE(2951), + [sym_quoted_atom] = STATE(2951), + [sym__quoted_i_double] = STATE(2913), + [sym__quoted_i_single] = STATE(2912), + [sym__quoted_i_heredoc_single] = STATE(2910), + [sym__quoted_i_heredoc_double] = STATE(2805), + [sym_string] = STATE(2951), + [sym_charlist] = STATE(2951), + [sym_sigil] = STATE(2951), + [sym_list] = STATE(2951), + [sym_tuple] = STATE(2951), + [sym_bitstring] = STATE(2951), + [sym_map] = STATE(2951), + [sym_unary_operator] = STATE(2951), + [sym_binary_operator] = STATE(2951), + [sym_operator_identifier] = STATE(5636), + [sym_dot] = STATE(2951), + [sym_call] = STATE(2951), + [sym__call_without_parentheses] = STATE(2883), + [sym__call_with_parentheses] = STATE(2876), + [sym__local_call_without_parentheses] = STATE(2870), + [sym__local_call_with_parentheses] = STATE(2037), + [sym__local_call_just_do_block] = STATE(2853), + [sym__remote_call_without_parentheses] = STATE(2846), + [sym__remote_call_with_parentheses] = STATE(2038), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2051), + [sym__anonymous_dot] = STATE(5534), + [sym__double_call] = STATE(2836), + [sym_access_call] = STATE(2951), + [sym_anonymous_function] = STATE(2951), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(2387), + [sym_integer] = ACTIONS(2387), + [sym_float] = ACTIONS(2387), + [sym_char] = ACTIONS(2387), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(2387), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [785] = { + [sym__expression] = STATE(2954), + [sym_block] = STATE(2954), + [sym__identifier] = STATE(56), + [sym_identifier] = STATE(56), + [sym_special_identifier] = STATE(56), + [sym_boolean] = STATE(2954), + [sym_nil] = STATE(2954), + [sym__atom] = STATE(2954), + [sym_quoted_atom] = STATE(2954), + [sym__quoted_i_double] = STATE(2913), + [sym__quoted_i_single] = STATE(2912), + [sym__quoted_i_heredoc_single] = STATE(2910), + [sym__quoted_i_heredoc_double] = STATE(2805), + [sym_string] = STATE(2954), + [sym_charlist] = STATE(2954), + [sym_sigil] = STATE(2954), + [sym_list] = STATE(2954), + [sym_tuple] = STATE(2954), + [sym_bitstring] = STATE(2954), + [sym_map] = STATE(2954), + [sym_unary_operator] = STATE(2954), + [sym_binary_operator] = STATE(2954), + [sym_operator_identifier] = STATE(5636), + [sym_dot] = STATE(2954), + [sym_call] = STATE(2954), + [sym__call_without_parentheses] = STATE(2883), + [sym__call_with_parentheses] = STATE(2876), + [sym__local_call_without_parentheses] = STATE(2870), + [sym__local_call_with_parentheses] = STATE(2037), + [sym__local_call_just_do_block] = STATE(2853), + [sym__remote_call_without_parentheses] = STATE(2846), + [sym__remote_call_with_parentheses] = STATE(2038), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2051), + [sym__anonymous_dot] = STATE(5534), + [sym__double_call] = STATE(2836), + [sym_access_call] = STATE(2954), + [sym_anonymous_function] = STATE(2954), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(2389), + [sym_integer] = ACTIONS(2389), + [sym_float] = ACTIONS(2389), + [sym_char] = ACTIONS(2389), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(2389), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [786] = { + [sym__expression] = STATE(2955), + [sym_block] = STATE(2955), + [sym__identifier] = STATE(56), + [sym_identifier] = STATE(56), + [sym_special_identifier] = STATE(56), + [sym_boolean] = STATE(2955), + [sym_nil] = STATE(2955), + [sym__atom] = STATE(2955), + [sym_quoted_atom] = STATE(2955), + [sym__quoted_i_double] = STATE(2913), + [sym__quoted_i_single] = STATE(2912), + [sym__quoted_i_heredoc_single] = STATE(2910), + [sym__quoted_i_heredoc_double] = STATE(2805), + [sym_string] = STATE(2955), + [sym_charlist] = STATE(2955), + [sym_sigil] = STATE(2955), + [sym_list] = STATE(2955), + [sym_tuple] = STATE(2955), + [sym_bitstring] = STATE(2955), + [sym_map] = STATE(2955), + [sym_unary_operator] = STATE(2955), + [sym_binary_operator] = STATE(2955), + [sym_operator_identifier] = STATE(5636), + [sym_dot] = STATE(2955), + [sym_call] = STATE(2955), + [sym__call_without_parentheses] = STATE(2883), + [sym__call_with_parentheses] = STATE(2876), + [sym__local_call_without_parentheses] = STATE(2870), + [sym__local_call_with_parentheses] = STATE(2037), + [sym__local_call_just_do_block] = STATE(2853), + [sym__remote_call_without_parentheses] = STATE(2846), + [sym__remote_call_with_parentheses] = STATE(2038), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2051), + [sym__anonymous_dot] = STATE(5534), + [sym__double_call] = STATE(2836), + [sym_access_call] = STATE(2955), + [sym_anonymous_function] = STATE(2955), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(2391), + [sym_integer] = ACTIONS(2391), + [sym_float] = ACTIONS(2391), + [sym_char] = ACTIONS(2391), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(2391), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [787] = { + [sym__expression] = STATE(2956), + [sym_block] = STATE(2956), + [sym__identifier] = STATE(56), + [sym_identifier] = STATE(56), + [sym_special_identifier] = STATE(56), + [sym_boolean] = STATE(2956), + [sym_nil] = STATE(2956), + [sym__atom] = STATE(2956), + [sym_quoted_atom] = STATE(2956), + [sym__quoted_i_double] = STATE(2913), + [sym__quoted_i_single] = STATE(2912), + [sym__quoted_i_heredoc_single] = STATE(2910), + [sym__quoted_i_heredoc_double] = STATE(2805), + [sym_string] = STATE(2956), + [sym_charlist] = STATE(2956), + [sym_sigil] = STATE(2956), + [sym_list] = STATE(2956), + [sym_tuple] = STATE(2956), + [sym_bitstring] = STATE(2956), + [sym_map] = STATE(2956), + [sym_unary_operator] = STATE(2956), + [sym_binary_operator] = STATE(2956), + [sym_operator_identifier] = STATE(5636), + [sym_dot] = STATE(2956), + [sym_call] = STATE(2956), + [sym__call_without_parentheses] = STATE(2883), + [sym__call_with_parentheses] = STATE(2876), + [sym__local_call_without_parentheses] = STATE(2870), + [sym__local_call_with_parentheses] = STATE(2037), + [sym__local_call_just_do_block] = STATE(2853), + [sym__remote_call_without_parentheses] = STATE(2846), + [sym__remote_call_with_parentheses] = STATE(2038), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2051), + [sym__anonymous_dot] = STATE(5534), + [sym__double_call] = STATE(2836), + [sym_access_call] = STATE(2956), + [sym_anonymous_function] = STATE(2956), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(2393), + [sym_integer] = ACTIONS(2393), + [sym_float] = ACTIONS(2393), + [sym_char] = ACTIONS(2393), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(2393), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [788] = { + [sym__expression] = STATE(2957), + [sym_block] = STATE(2957), + [sym__identifier] = STATE(56), + [sym_identifier] = STATE(56), + [sym_special_identifier] = STATE(56), + [sym_boolean] = STATE(2957), + [sym_nil] = STATE(2957), + [sym__atom] = STATE(2957), + [sym_quoted_atom] = STATE(2957), + [sym__quoted_i_double] = STATE(2913), + [sym__quoted_i_single] = STATE(2912), + [sym__quoted_i_heredoc_single] = STATE(2910), + [sym__quoted_i_heredoc_double] = STATE(2805), + [sym_string] = STATE(2957), + [sym_charlist] = STATE(2957), + [sym_sigil] = STATE(2957), + [sym_list] = STATE(2957), + [sym_tuple] = STATE(2957), + [sym_bitstring] = STATE(2957), + [sym_map] = STATE(2957), + [sym_unary_operator] = STATE(2957), + [sym_binary_operator] = STATE(2957), + [sym_operator_identifier] = STATE(5636), + [sym_dot] = STATE(2957), + [sym_call] = STATE(2957), + [sym__call_without_parentheses] = STATE(2883), + [sym__call_with_parentheses] = STATE(2876), + [sym__local_call_without_parentheses] = STATE(2870), + [sym__local_call_with_parentheses] = STATE(2037), + [sym__local_call_just_do_block] = STATE(2853), + [sym__remote_call_without_parentheses] = STATE(2846), + [sym__remote_call_with_parentheses] = STATE(2038), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2051), + [sym__anonymous_dot] = STATE(5534), + [sym__double_call] = STATE(2836), + [sym_access_call] = STATE(2957), + [sym_anonymous_function] = STATE(2957), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(2395), + [sym_integer] = ACTIONS(2395), + [sym_float] = ACTIONS(2395), + [sym_char] = ACTIONS(2395), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(2395), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [789] = { + [sym__expression] = STATE(2958), + [sym_block] = STATE(2958), + [sym__identifier] = STATE(56), + [sym_identifier] = STATE(56), + [sym_special_identifier] = STATE(56), + [sym_boolean] = STATE(2958), + [sym_nil] = STATE(2958), + [sym__atom] = STATE(2958), + [sym_quoted_atom] = STATE(2958), + [sym__quoted_i_double] = STATE(2913), + [sym__quoted_i_single] = STATE(2912), + [sym__quoted_i_heredoc_single] = STATE(2910), + [sym__quoted_i_heredoc_double] = STATE(2805), + [sym_string] = STATE(2958), + [sym_charlist] = STATE(2958), + [sym_sigil] = STATE(2958), + [sym_list] = STATE(2958), + [sym_tuple] = STATE(2958), + [sym_bitstring] = STATE(2958), + [sym_map] = STATE(2958), + [sym_unary_operator] = STATE(2958), + [sym_binary_operator] = STATE(2958), + [sym_operator_identifier] = STATE(5636), + [sym_dot] = STATE(2958), + [sym_call] = STATE(2958), + [sym__call_without_parentheses] = STATE(2883), + [sym__call_with_parentheses] = STATE(2876), + [sym__local_call_without_parentheses] = STATE(2870), + [sym__local_call_with_parentheses] = STATE(2037), + [sym__local_call_just_do_block] = STATE(2853), + [sym__remote_call_without_parentheses] = STATE(2846), + [sym__remote_call_with_parentheses] = STATE(2038), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2051), + [sym__anonymous_dot] = STATE(5534), + [sym__double_call] = STATE(2836), + [sym_access_call] = STATE(2958), + [sym_anonymous_function] = STATE(2958), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(2397), + [sym_integer] = ACTIONS(2397), + [sym_float] = ACTIONS(2397), + [sym_char] = ACTIONS(2397), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [790] = { + [sym__expression] = STATE(2959), + [sym_block] = STATE(2959), + [sym__identifier] = STATE(56), + [sym_identifier] = STATE(56), + [sym_special_identifier] = STATE(56), + [sym_boolean] = STATE(2959), + [sym_nil] = STATE(2959), + [sym__atom] = STATE(2959), + [sym_quoted_atom] = STATE(2959), + [sym__quoted_i_double] = STATE(2913), + [sym__quoted_i_single] = STATE(2912), + [sym__quoted_i_heredoc_single] = STATE(2910), + [sym__quoted_i_heredoc_double] = STATE(2805), + [sym_string] = STATE(2959), + [sym_charlist] = STATE(2959), + [sym_sigil] = STATE(2959), + [sym_list] = STATE(2959), + [sym_tuple] = STATE(2959), + [sym_bitstring] = STATE(2959), + [sym_map] = STATE(2959), + [sym_unary_operator] = STATE(2959), + [sym_binary_operator] = STATE(2959), + [sym_operator_identifier] = STATE(5636), + [sym_dot] = STATE(2959), + [sym_call] = STATE(2959), + [sym__call_without_parentheses] = STATE(2883), + [sym__call_with_parentheses] = STATE(2876), + [sym__local_call_without_parentheses] = STATE(2870), + [sym__local_call_with_parentheses] = STATE(2037), + [sym__local_call_just_do_block] = STATE(2853), + [sym__remote_call_without_parentheses] = STATE(2846), + [sym__remote_call_with_parentheses] = STATE(2038), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2051), + [sym__anonymous_dot] = STATE(5534), + [sym__double_call] = STATE(2836), + [sym_access_call] = STATE(2959), + [sym_anonymous_function] = STATE(2959), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(2399), + [sym_integer] = ACTIONS(2399), + [sym_float] = ACTIONS(2399), + [sym_char] = ACTIONS(2399), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(2399), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [791] = { + [sym__expression] = STATE(3174), + [sym_block] = STATE(3174), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3174), + [sym_nil] = STATE(3174), + [sym__atom] = STATE(3174), + [sym_quoted_atom] = STATE(3174), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3174), + [sym_charlist] = STATE(3174), + [sym_sigil] = STATE(3174), + [sym_list] = STATE(3174), + [sym_tuple] = STATE(3174), + [sym_bitstring] = STATE(3174), + [sym_map] = STATE(3174), + [sym_unary_operator] = STATE(3174), + [sym_binary_operator] = STATE(3174), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3174), + [sym_call] = STATE(3174), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3174), + [sym_anonymous_function] = STATE(3174), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2243), + [sym_integer] = ACTIONS(2243), + [sym_float] = ACTIONS(2243), + [sym_char] = ACTIONS(2243), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(2243), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [792] = { + [sym__expression] = STATE(3173), + [sym_block] = STATE(3173), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3173), + [sym_nil] = STATE(3173), + [sym__atom] = STATE(3173), + [sym_quoted_atom] = STATE(3173), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3173), + [sym_charlist] = STATE(3173), + [sym_sigil] = STATE(3173), + [sym_list] = STATE(3173), + [sym_tuple] = STATE(3173), + [sym_bitstring] = STATE(3173), + [sym_map] = STATE(3173), + [sym_unary_operator] = STATE(3173), + [sym_binary_operator] = STATE(3173), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3173), + [sym_call] = STATE(3173), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3173), + [sym_anonymous_function] = STATE(3173), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2245), + [sym_integer] = ACTIONS(2245), + [sym_float] = ACTIONS(2245), + [sym_char] = ACTIONS(2245), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [793] = { + [sym__expression] = STATE(2960), + [sym_block] = STATE(2960), + [sym__identifier] = STATE(56), + [sym_identifier] = STATE(56), + [sym_special_identifier] = STATE(56), + [sym_boolean] = STATE(2960), + [sym_nil] = STATE(2960), + [sym__atom] = STATE(2960), + [sym_quoted_atom] = STATE(2960), + [sym__quoted_i_double] = STATE(2913), + [sym__quoted_i_single] = STATE(2912), + [sym__quoted_i_heredoc_single] = STATE(2910), + [sym__quoted_i_heredoc_double] = STATE(2805), + [sym_string] = STATE(2960), + [sym_charlist] = STATE(2960), + [sym_sigil] = STATE(2960), + [sym_list] = STATE(2960), + [sym_tuple] = STATE(2960), + [sym_bitstring] = STATE(2960), + [sym_map] = STATE(2960), + [sym_unary_operator] = STATE(2960), + [sym_binary_operator] = STATE(2960), + [sym_operator_identifier] = STATE(5636), + [sym_dot] = STATE(2960), + [sym_call] = STATE(2960), + [sym__call_without_parentheses] = STATE(2883), + [sym__call_with_parentheses] = STATE(2876), + [sym__local_call_without_parentheses] = STATE(2870), + [sym__local_call_with_parentheses] = STATE(2037), + [sym__local_call_just_do_block] = STATE(2853), + [sym__remote_call_without_parentheses] = STATE(2846), + [sym__remote_call_with_parentheses] = STATE(2038), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2051), + [sym__anonymous_dot] = STATE(5534), + [sym__double_call] = STATE(2836), + [sym_access_call] = STATE(2960), + [sym_anonymous_function] = STATE(2960), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(2401), + [sym_integer] = ACTIONS(2401), + [sym_float] = ACTIONS(2401), + [sym_char] = ACTIONS(2401), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(2401), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [794] = { + [sym__expression] = STATE(2961), + [sym_block] = STATE(2961), + [sym__identifier] = STATE(56), + [sym_identifier] = STATE(56), + [sym_special_identifier] = STATE(56), + [sym_boolean] = STATE(2961), + [sym_nil] = STATE(2961), + [sym__atom] = STATE(2961), + [sym_quoted_atom] = STATE(2961), + [sym__quoted_i_double] = STATE(2913), + [sym__quoted_i_single] = STATE(2912), + [sym__quoted_i_heredoc_single] = STATE(2910), + [sym__quoted_i_heredoc_double] = STATE(2805), + [sym_string] = STATE(2961), + [sym_charlist] = STATE(2961), + [sym_sigil] = STATE(2961), + [sym_list] = STATE(2961), + [sym_tuple] = STATE(2961), + [sym_bitstring] = STATE(2961), + [sym_map] = STATE(2961), + [sym_unary_operator] = STATE(2961), + [sym_binary_operator] = STATE(2961), + [sym_operator_identifier] = STATE(5636), + [sym_dot] = STATE(2961), + [sym_call] = STATE(2961), + [sym__call_without_parentheses] = STATE(2883), + [sym__call_with_parentheses] = STATE(2876), + [sym__local_call_without_parentheses] = STATE(2870), + [sym__local_call_with_parentheses] = STATE(2037), + [sym__local_call_just_do_block] = STATE(2853), + [sym__remote_call_without_parentheses] = STATE(2846), + [sym__remote_call_with_parentheses] = STATE(2038), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2051), + [sym__anonymous_dot] = STATE(5534), + [sym__double_call] = STATE(2836), + [sym_access_call] = STATE(2961), + [sym_anonymous_function] = STATE(2961), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(2403), + [sym_integer] = ACTIONS(2403), + [sym_float] = ACTIONS(2403), + [sym_char] = ACTIONS(2403), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(2403), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [795] = { + [sym__expression] = STATE(2962), + [sym_block] = STATE(2962), + [sym__identifier] = STATE(56), + [sym_identifier] = STATE(56), + [sym_special_identifier] = STATE(56), + [sym_boolean] = STATE(2962), + [sym_nil] = STATE(2962), + [sym__atom] = STATE(2962), + [sym_quoted_atom] = STATE(2962), + [sym__quoted_i_double] = STATE(2913), + [sym__quoted_i_single] = STATE(2912), + [sym__quoted_i_heredoc_single] = STATE(2910), + [sym__quoted_i_heredoc_double] = STATE(2805), + [sym_string] = STATE(2962), + [sym_charlist] = STATE(2962), + [sym_sigil] = STATE(2962), + [sym_list] = STATE(2962), + [sym_tuple] = STATE(2962), + [sym_bitstring] = STATE(2962), + [sym_map] = STATE(2962), + [sym_unary_operator] = STATE(2962), + [sym_binary_operator] = STATE(2962), + [sym_operator_identifier] = STATE(5636), + [sym_dot] = STATE(2962), + [sym_call] = STATE(2962), + [sym__call_without_parentheses] = STATE(2883), + [sym__call_with_parentheses] = STATE(2876), + [sym__local_call_without_parentheses] = STATE(2870), + [sym__local_call_with_parentheses] = STATE(2037), + [sym__local_call_just_do_block] = STATE(2853), + [sym__remote_call_without_parentheses] = STATE(2846), + [sym__remote_call_with_parentheses] = STATE(2038), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2051), + [sym__anonymous_dot] = STATE(5534), + [sym__double_call] = STATE(2836), + [sym_access_call] = STATE(2962), + [sym_anonymous_function] = STATE(2962), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(2405), + [sym_integer] = ACTIONS(2405), + [sym_float] = ACTIONS(2405), + [sym_char] = ACTIONS(2405), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(2405), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [796] = { + [sym__expression] = STATE(2963), + [sym_block] = STATE(2963), + [sym__identifier] = STATE(56), + [sym_identifier] = STATE(56), + [sym_special_identifier] = STATE(56), + [sym_boolean] = STATE(2963), + [sym_nil] = STATE(2963), + [sym__atom] = STATE(2963), + [sym_quoted_atom] = STATE(2963), + [sym__quoted_i_double] = STATE(2913), + [sym__quoted_i_single] = STATE(2912), + [sym__quoted_i_heredoc_single] = STATE(2910), + [sym__quoted_i_heredoc_double] = STATE(2805), + [sym_string] = STATE(2963), + [sym_charlist] = STATE(2963), + [sym_sigil] = STATE(2963), + [sym_list] = STATE(2963), + [sym_tuple] = STATE(2963), + [sym_bitstring] = STATE(2963), + [sym_map] = STATE(2963), + [sym_unary_operator] = STATE(2963), + [sym_binary_operator] = STATE(2963), + [sym_operator_identifier] = STATE(5636), + [sym_dot] = STATE(2963), + [sym_call] = STATE(2963), + [sym__call_without_parentheses] = STATE(2883), + [sym__call_with_parentheses] = STATE(2876), + [sym__local_call_without_parentheses] = STATE(2870), + [sym__local_call_with_parentheses] = STATE(2037), + [sym__local_call_just_do_block] = STATE(2853), + [sym__remote_call_without_parentheses] = STATE(2846), + [sym__remote_call_with_parentheses] = STATE(2038), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2051), + [sym__anonymous_dot] = STATE(5534), + [sym__double_call] = STATE(2836), + [sym_access_call] = STATE(2963), + [sym_anonymous_function] = STATE(2963), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(2407), + [sym_integer] = ACTIONS(2407), + [sym_float] = ACTIONS(2407), + [sym_char] = ACTIONS(2407), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [797] = { + [sym__expression] = STATE(1506), + [sym_block] = STATE(1506), + [sym__identifier] = STATE(41), + [sym_identifier] = STATE(41), + [sym_special_identifier] = STATE(41), + [sym_boolean] = STATE(1506), + [sym_nil] = STATE(1506), + [sym__atom] = STATE(1506), + [sym_quoted_atom] = STATE(1506), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(1506), + [sym_charlist] = STATE(1506), + [sym_sigil] = STATE(1506), + [sym_list] = STATE(1506), + [sym_tuple] = STATE(1506), + [sym_bitstring] = STATE(1506), + [sym_map] = STATE(1506), + [sym_unary_operator] = STATE(1506), + [sym_binary_operator] = STATE(1506), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(1506), + [sym_call] = STATE(1506), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(1506), + [sym_anonymous_function] = STATE(1506), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(2409), + [sym_integer] = ACTIONS(2409), + [sym_float] = ACTIONS(2409), + [sym_char] = ACTIONS(2409), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2409), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(453), + [anon_sym_not] = ACTIONS(453), + [anon_sym_AT] = ACTIONS(455), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(457), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [798] = { + [sym__expression] = STATE(2713), + [sym_block] = STATE(2713), + [sym__identifier] = STATE(41), + [sym_identifier] = STATE(41), + [sym_special_identifier] = STATE(41), + [sym_boolean] = STATE(2713), + [sym_nil] = STATE(2713), + [sym__atom] = STATE(2713), + [sym_quoted_atom] = STATE(2713), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(2713), + [sym_charlist] = STATE(2713), + [sym_sigil] = STATE(2713), + [sym_list] = STATE(2713), + [sym_tuple] = STATE(2713), + [sym_bitstring] = STATE(2713), + [sym_map] = STATE(2713), + [sym_unary_operator] = STATE(2713), + [sym_binary_operator] = STATE(2713), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(2713), + [sym_call] = STATE(2713), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(2713), + [sym_anonymous_function] = STATE(2713), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(2411), + [sym_integer] = ACTIONS(2411), + [sym_float] = ACTIONS(2411), + [sym_char] = ACTIONS(2411), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2411), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(453), + [anon_sym_not] = ACTIONS(453), + [anon_sym_AT] = ACTIONS(455), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(457), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [799] = { + [sym__expression] = STATE(2808), + [sym_block] = STATE(2808), + [sym__identifier] = STATE(41), + [sym_identifier] = STATE(41), + [sym_special_identifier] = STATE(41), + [sym_boolean] = STATE(2808), + [sym_nil] = STATE(2808), + [sym__atom] = STATE(2808), + [sym_quoted_atom] = STATE(2808), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(2808), + [sym_charlist] = STATE(2808), + [sym_sigil] = STATE(2808), + [sym_list] = STATE(2808), + [sym_tuple] = STATE(2808), + [sym_bitstring] = STATE(2808), + [sym_map] = STATE(2808), + [sym_unary_operator] = STATE(2808), + [sym_binary_operator] = STATE(2808), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(2808), + [sym_call] = STATE(2808), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(2808), + [sym_anonymous_function] = STATE(2808), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(2413), + [sym_integer] = ACTIONS(2413), + [sym_float] = ACTIONS(2413), + [sym_char] = ACTIONS(2413), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2413), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(453), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(453), + [anon_sym_not] = ACTIONS(453), + [anon_sym_AT] = ACTIONS(455), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(457), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [800] = { + [sym__expression] = STATE(4030), + [sym_block] = STATE(4030), + [sym__identifier] = STATE(66), + [sym_identifier] = STATE(66), + [sym_special_identifier] = STATE(66), + [sym_boolean] = STATE(4030), + [sym_nil] = STATE(4030), + [sym__atom] = STATE(4030), + [sym_quoted_atom] = STATE(4030), + [sym__quoted_i_double] = STATE(4034), + [sym__quoted_i_single] = STATE(4021), + [sym__quoted_i_heredoc_single] = STATE(4077), + [sym__quoted_i_heredoc_double] = STATE(4083), + [sym_string] = STATE(4030), + [sym_charlist] = STATE(4030), + [sym_sigil] = STATE(4030), + [sym_list] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_bitstring] = STATE(4030), + [sym_map] = STATE(4030), + [sym_unary_operator] = STATE(4030), + [sym_binary_operator] = STATE(4030), + [sym_operator_identifier] = STATE(5580), + [sym_dot] = STATE(4030), + [sym_call] = STATE(4030), + [sym__call_without_parentheses] = STATE(4089), + [sym__call_with_parentheses] = STATE(4092), + [sym__local_call_without_parentheses] = STATE(4097), + [sym__local_call_with_parentheses] = STATE(3372), + [sym__local_call_just_do_block] = STATE(4098), + [sym__remote_call_without_parentheses] = STATE(4105), + [sym__remote_call_with_parentheses] = STATE(3374), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3375), + [sym__anonymous_dot] = STATE(5531), + [sym__double_call] = STATE(4106), + [sym_access_call] = STATE(4030), + [sym_anonymous_function] = STATE(4030), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1133), + [aux_sym_identifier_token1] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1135), + [sym_unused_identifier] = ACTIONS(1137), + [anon_sym___MODULE__] = ACTIONS(1139), + [anon_sym___DIR__] = ACTIONS(1139), + [anon_sym___ENV__] = ACTIONS(1139), + [anon_sym___CALLER__] = ACTIONS(1139), + [anon_sym___STACKTRACE__] = ACTIONS(1139), + [sym_alias] = ACTIONS(2415), + [sym_integer] = ACTIONS(2415), + [sym_float] = ACTIONS(2415), + [sym_char] = ACTIONS(2415), + [anon_sym_true] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [anon_sym_nil] = ACTIONS(1145), + [sym_atom] = ACTIONS(2415), + [anon_sym_DQUOTE] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1151), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1157), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1159), + [anon_sym_LT_LT] = ACTIONS(1163), + [anon_sym_PERCENT] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_AT] = ACTIONS(1173), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1175), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1177), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1179), + }, + [801] = { + [sym__expression] = STATE(4033), + [sym_block] = STATE(4033), + [sym__identifier] = STATE(66), + [sym_identifier] = STATE(66), + [sym_special_identifier] = STATE(66), + [sym_boolean] = STATE(4033), + [sym_nil] = STATE(4033), + [sym__atom] = STATE(4033), + [sym_quoted_atom] = STATE(4033), + [sym__quoted_i_double] = STATE(4034), + [sym__quoted_i_single] = STATE(4021), + [sym__quoted_i_heredoc_single] = STATE(4077), + [sym__quoted_i_heredoc_double] = STATE(4083), + [sym_string] = STATE(4033), + [sym_charlist] = STATE(4033), + [sym_sigil] = STATE(4033), + [sym_list] = STATE(4033), + [sym_tuple] = STATE(4033), + [sym_bitstring] = STATE(4033), + [sym_map] = STATE(4033), + [sym_unary_operator] = STATE(4033), + [sym_binary_operator] = STATE(4033), + [sym_operator_identifier] = STATE(5580), + [sym_dot] = STATE(4033), + [sym_call] = STATE(4033), + [sym__call_without_parentheses] = STATE(4089), + [sym__call_with_parentheses] = STATE(4092), + [sym__local_call_without_parentheses] = STATE(4097), + [sym__local_call_with_parentheses] = STATE(3372), + [sym__local_call_just_do_block] = STATE(4098), + [sym__remote_call_without_parentheses] = STATE(4105), + [sym__remote_call_with_parentheses] = STATE(3374), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3375), + [sym__anonymous_dot] = STATE(5531), + [sym__double_call] = STATE(4106), + [sym_access_call] = STATE(4033), + [sym_anonymous_function] = STATE(4033), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1133), + [aux_sym_identifier_token1] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1135), + [sym_unused_identifier] = ACTIONS(1137), + [anon_sym___MODULE__] = ACTIONS(1139), + [anon_sym___DIR__] = ACTIONS(1139), + [anon_sym___ENV__] = ACTIONS(1139), + [anon_sym___CALLER__] = ACTIONS(1139), + [anon_sym___STACKTRACE__] = ACTIONS(1139), + [sym_alias] = ACTIONS(2417), + [sym_integer] = ACTIONS(2417), + [sym_float] = ACTIONS(2417), + [sym_char] = ACTIONS(2417), + [anon_sym_true] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [anon_sym_nil] = ACTIONS(1145), + [sym_atom] = ACTIONS(2417), + [anon_sym_DQUOTE] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1151), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1157), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1159), + [anon_sym_LT_LT] = ACTIONS(1163), + [anon_sym_PERCENT] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_AT] = ACTIONS(1173), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1175), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1177), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1179), + }, + [802] = { + [sym__expression] = STATE(2964), + [sym_block] = STATE(2964), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(2964), + [sym_nil] = STATE(2964), + [sym__atom] = STATE(2964), + [sym_quoted_atom] = STATE(2964), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(2964), + [sym_charlist] = STATE(2964), + [sym_sigil] = STATE(2964), + [sym_list] = STATE(2964), + [sym_tuple] = STATE(2964), + [sym_bitstring] = STATE(2964), + [sym_map] = STATE(2964), + [sym_unary_operator] = STATE(2964), + [sym_binary_operator] = STATE(2964), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(2964), + [sym_call] = STATE(2964), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(2964), + [sym_anonymous_function] = STATE(2964), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(482), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), + [sym_alias] = ACTIONS(2419), + [sym_integer] = ACTIONS(2419), + [sym_float] = ACTIONS(2419), + [sym_char] = ACTIONS(2419), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2419), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(486), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(495), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_CARET] = ACTIONS(495), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(495), + [anon_sym_not] = ACTIONS(495), + [anon_sym_AT] = ACTIONS(497), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(499), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [803] = { + [sym__expression] = STATE(3119), + [sym_block] = STATE(3119), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(3119), + [sym_nil] = STATE(3119), + [sym__atom] = STATE(3119), + [sym_quoted_atom] = STATE(3119), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(3119), + [sym_charlist] = STATE(3119), + [sym_sigil] = STATE(3119), + [sym_list] = STATE(3119), + [sym_tuple] = STATE(3119), + [sym_bitstring] = STATE(3119), + [sym_map] = STATE(3119), + [sym_unary_operator] = STATE(3119), + [sym_binary_operator] = STATE(3119), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(3119), + [sym_call] = STATE(3119), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(3119), + [sym_anonymous_function] = STATE(3119), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(482), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), + [sym_alias] = ACTIONS(2421), + [sym_integer] = ACTIONS(2421), + [sym_float] = ACTIONS(2421), + [sym_char] = ACTIONS(2421), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2421), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(486), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(495), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_CARET] = ACTIONS(495), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(495), + [anon_sym_not] = ACTIONS(495), + [anon_sym_AT] = ACTIONS(497), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(499), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [804] = { + [sym__expression] = STATE(3120), + [sym_block] = STATE(3120), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(3120), + [sym_nil] = STATE(3120), + [sym__atom] = STATE(3120), + [sym_quoted_atom] = STATE(3120), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(3120), + [sym_charlist] = STATE(3120), + [sym_sigil] = STATE(3120), + [sym_list] = STATE(3120), + [sym_tuple] = STATE(3120), + [sym_bitstring] = STATE(3120), + [sym_map] = STATE(3120), + [sym_unary_operator] = STATE(3120), + [sym_binary_operator] = STATE(3120), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(3120), + [sym_call] = STATE(3120), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(3120), + [sym_anonymous_function] = STATE(3120), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(482), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), + [sym_alias] = ACTIONS(2423), + [sym_integer] = ACTIONS(2423), + [sym_float] = ACTIONS(2423), + [sym_char] = ACTIONS(2423), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2423), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(486), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(495), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_CARET] = ACTIONS(495), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(495), + [anon_sym_not] = ACTIONS(495), + [anon_sym_AT] = ACTIONS(497), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(499), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [805] = { + [sym__expression] = STATE(4038), + [sym_block] = STATE(4038), + [sym__identifier] = STATE(66), + [sym_identifier] = STATE(66), + [sym_special_identifier] = STATE(66), + [sym_boolean] = STATE(4038), + [sym_nil] = STATE(4038), + [sym__atom] = STATE(4038), + [sym_quoted_atom] = STATE(4038), + [sym__quoted_i_double] = STATE(4034), + [sym__quoted_i_single] = STATE(4021), + [sym__quoted_i_heredoc_single] = STATE(4077), + [sym__quoted_i_heredoc_double] = STATE(4083), + [sym_string] = STATE(4038), + [sym_charlist] = STATE(4038), + [sym_sigil] = STATE(4038), + [sym_list] = STATE(4038), + [sym_tuple] = STATE(4038), + [sym_bitstring] = STATE(4038), + [sym_map] = STATE(4038), + [sym_unary_operator] = STATE(4038), + [sym_binary_operator] = STATE(4038), + [sym_operator_identifier] = STATE(5580), + [sym_dot] = STATE(4038), + [sym_call] = STATE(4038), + [sym__call_without_parentheses] = STATE(4089), + [sym__call_with_parentheses] = STATE(4092), + [sym__local_call_without_parentheses] = STATE(4097), + [sym__local_call_with_parentheses] = STATE(3372), + [sym__local_call_just_do_block] = STATE(4098), + [sym__remote_call_without_parentheses] = STATE(4105), + [sym__remote_call_with_parentheses] = STATE(3374), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3375), + [sym__anonymous_dot] = STATE(5531), + [sym__double_call] = STATE(4106), + [sym_access_call] = STATE(4038), + [sym_anonymous_function] = STATE(4038), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1133), + [aux_sym_identifier_token1] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1135), + [sym_unused_identifier] = ACTIONS(1137), + [anon_sym___MODULE__] = ACTIONS(1139), + [anon_sym___DIR__] = ACTIONS(1139), + [anon_sym___ENV__] = ACTIONS(1139), + [anon_sym___CALLER__] = ACTIONS(1139), + [anon_sym___STACKTRACE__] = ACTIONS(1139), + [sym_alias] = ACTIONS(2425), + [sym_integer] = ACTIONS(2425), + [sym_float] = ACTIONS(2425), + [sym_char] = ACTIONS(2425), + [anon_sym_true] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [anon_sym_nil] = ACTIONS(1145), + [sym_atom] = ACTIONS(2425), + [anon_sym_DQUOTE] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1151), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1157), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1159), + [anon_sym_LT_LT] = ACTIONS(1163), + [anon_sym_PERCENT] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_AT] = ACTIONS(1173), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1175), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1177), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1179), + }, + [806] = { + [sym__expression] = STATE(3121), + [sym_block] = STATE(3121), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(3121), + [sym_nil] = STATE(3121), + [sym__atom] = STATE(3121), + [sym_quoted_atom] = STATE(3121), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(3121), + [sym_charlist] = STATE(3121), + [sym_sigil] = STATE(3121), + [sym_list] = STATE(3121), + [sym_tuple] = STATE(3121), + [sym_bitstring] = STATE(3121), + [sym_map] = STATE(3121), + [sym_unary_operator] = STATE(3121), + [sym_binary_operator] = STATE(3121), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(3121), + [sym_call] = STATE(3121), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(3121), + [sym_anonymous_function] = STATE(3121), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(482), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), + [sym_alias] = ACTIONS(2427), + [sym_integer] = ACTIONS(2427), + [sym_float] = ACTIONS(2427), + [sym_char] = ACTIONS(2427), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2427), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(486), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(495), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_CARET] = ACTIONS(495), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(495), + [anon_sym_not] = ACTIONS(495), + [anon_sym_AT] = ACTIONS(497), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(499), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [807] = { + [sym__expression] = STATE(3122), + [sym_block] = STATE(3122), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(3122), + [sym_nil] = STATE(3122), + [sym__atom] = STATE(3122), + [sym_quoted_atom] = STATE(3122), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(3122), + [sym_charlist] = STATE(3122), + [sym_sigil] = STATE(3122), + [sym_list] = STATE(3122), + [sym_tuple] = STATE(3122), + [sym_bitstring] = STATE(3122), + [sym_map] = STATE(3122), + [sym_unary_operator] = STATE(3122), + [sym_binary_operator] = STATE(3122), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(3122), + [sym_call] = STATE(3122), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(3122), + [sym_anonymous_function] = STATE(3122), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(482), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), + [sym_alias] = ACTIONS(2429), + [sym_integer] = ACTIONS(2429), + [sym_float] = ACTIONS(2429), + [sym_char] = ACTIONS(2429), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2429), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(486), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(495), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_CARET] = ACTIONS(495), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(495), + [anon_sym_not] = ACTIONS(495), + [anon_sym_AT] = ACTIONS(497), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(499), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [808] = { + [sym__expression] = STATE(4039), + [sym_block] = STATE(4039), + [sym__identifier] = STATE(66), + [sym_identifier] = STATE(66), + [sym_special_identifier] = STATE(66), + [sym_boolean] = STATE(4039), + [sym_nil] = STATE(4039), + [sym__atom] = STATE(4039), + [sym_quoted_atom] = STATE(4039), + [sym__quoted_i_double] = STATE(4034), + [sym__quoted_i_single] = STATE(4021), + [sym__quoted_i_heredoc_single] = STATE(4077), + [sym__quoted_i_heredoc_double] = STATE(4083), + [sym_string] = STATE(4039), + [sym_charlist] = STATE(4039), + [sym_sigil] = STATE(4039), + [sym_list] = STATE(4039), + [sym_tuple] = STATE(4039), + [sym_bitstring] = STATE(4039), + [sym_map] = STATE(4039), + [sym_unary_operator] = STATE(4039), + [sym_binary_operator] = STATE(4039), + [sym_operator_identifier] = STATE(5580), + [sym_dot] = STATE(4039), + [sym_call] = STATE(4039), + [sym__call_without_parentheses] = STATE(4089), + [sym__call_with_parentheses] = STATE(4092), + [sym__local_call_without_parentheses] = STATE(4097), + [sym__local_call_with_parentheses] = STATE(3372), + [sym__local_call_just_do_block] = STATE(4098), + [sym__remote_call_without_parentheses] = STATE(4105), + [sym__remote_call_with_parentheses] = STATE(3374), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3375), + [sym__anonymous_dot] = STATE(5531), + [sym__double_call] = STATE(4106), + [sym_access_call] = STATE(4039), + [sym_anonymous_function] = STATE(4039), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1133), + [aux_sym_identifier_token1] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1135), + [sym_unused_identifier] = ACTIONS(1137), + [anon_sym___MODULE__] = ACTIONS(1139), + [anon_sym___DIR__] = ACTIONS(1139), + [anon_sym___ENV__] = ACTIONS(1139), + [anon_sym___CALLER__] = ACTIONS(1139), + [anon_sym___STACKTRACE__] = ACTIONS(1139), + [sym_alias] = ACTIONS(2431), + [sym_integer] = ACTIONS(2431), + [sym_float] = ACTIONS(2431), + [sym_char] = ACTIONS(2431), + [anon_sym_true] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [anon_sym_nil] = ACTIONS(1145), + [sym_atom] = ACTIONS(2431), + [anon_sym_DQUOTE] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1151), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1157), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1159), + [anon_sym_LT_LT] = ACTIONS(1163), + [anon_sym_PERCENT] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_AT] = ACTIONS(1173), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1175), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1177), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1179), + }, + [809] = { + [sym__expression] = STATE(1554), + [sym_block] = STATE(1554), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1554), + [sym_nil] = STATE(1554), + [sym__atom] = STATE(1554), + [sym_quoted_atom] = STATE(1554), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(1554), + [sym_charlist] = STATE(1554), + [sym_sigil] = STATE(1554), + [sym_list] = STATE(1554), + [sym_tuple] = STATE(1554), + [sym_bitstring] = STATE(1554), + [sym_map] = STATE(1554), + [sym_unary_operator] = STATE(1554), + [sym_binary_operator] = STATE(1554), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(1554), + [sym_call] = STATE(1554), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(1554), + [sym_anonymous_function] = STATE(1554), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2433), + [sym_integer] = ACTIONS(2433), + [sym_float] = ACTIONS(2433), + [sym_char] = ACTIONS(2433), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2433), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [810] = { + [sym__expression] = STATE(3158), + [sym_block] = STATE(3158), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3158), + [sym_nil] = STATE(3158), + [sym__atom] = STATE(3158), + [sym_quoted_atom] = STATE(3158), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3158), + [sym_charlist] = STATE(3158), + [sym_sigil] = STATE(3158), + [sym_list] = STATE(3158), + [sym_tuple] = STATE(3158), + [sym_bitstring] = STATE(3158), + [sym_map] = STATE(3158), + [sym_unary_operator] = STATE(3158), + [sym_binary_operator] = STATE(3158), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3158), + [sym_call] = STATE(3158), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3158), + [sym_anonymous_function] = STATE(3158), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2249), + [sym_integer] = ACTIONS(2249), + [sym_float] = ACTIONS(2249), + [sym_char] = ACTIONS(2249), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(2249), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [811] = { + [sym__expression] = STATE(3157), + [sym_block] = STATE(3157), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3157), + [sym_nil] = STATE(3157), + [sym__atom] = STATE(3157), + [sym_quoted_atom] = STATE(3157), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3157), + [sym_charlist] = STATE(3157), + [sym_sigil] = STATE(3157), + [sym_list] = STATE(3157), + [sym_tuple] = STATE(3157), + [sym_bitstring] = STATE(3157), + [sym_map] = STATE(3157), + [sym_unary_operator] = STATE(3157), + [sym_binary_operator] = STATE(3157), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3157), + [sym_call] = STATE(3157), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3157), + [sym_anonymous_function] = STATE(3157), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2251), + [sym_integer] = ACTIONS(2251), + [sym_float] = ACTIONS(2251), + [sym_char] = ACTIONS(2251), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(2251), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [812] = { + [sym__expression] = STATE(3126), + [sym_block] = STATE(3126), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(3126), + [sym_nil] = STATE(3126), + [sym__atom] = STATE(3126), + [sym_quoted_atom] = STATE(3126), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(3126), + [sym_charlist] = STATE(3126), + [sym_sigil] = STATE(3126), + [sym_list] = STATE(3126), + [sym_tuple] = STATE(3126), + [sym_bitstring] = STATE(3126), + [sym_map] = STATE(3126), + [sym_unary_operator] = STATE(3126), + [sym_binary_operator] = STATE(3126), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(3126), + [sym_call] = STATE(3126), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(3126), + [sym_anonymous_function] = STATE(3126), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(482), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), + [sym_alias] = ACTIONS(2435), + [sym_integer] = ACTIONS(2435), + [sym_float] = ACTIONS(2435), + [sym_char] = ACTIONS(2435), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2435), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(486), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(495), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_CARET] = ACTIONS(495), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(495), + [anon_sym_not] = ACTIONS(495), + [anon_sym_AT] = ACTIONS(497), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(499), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [813] = { + [sym__expression] = STATE(3129), + [sym_block] = STATE(3129), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(3129), + [sym_nil] = STATE(3129), + [sym__atom] = STATE(3129), + [sym_quoted_atom] = STATE(3129), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(3129), + [sym_charlist] = STATE(3129), + [sym_sigil] = STATE(3129), + [sym_list] = STATE(3129), + [sym_tuple] = STATE(3129), + [sym_bitstring] = STATE(3129), + [sym_map] = STATE(3129), + [sym_unary_operator] = STATE(3129), + [sym_binary_operator] = STATE(3129), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(3129), + [sym_call] = STATE(3129), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(3129), + [sym_anonymous_function] = STATE(3129), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(482), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), [sym_alias] = ACTIONS(2437), [sym_integer] = ACTIONS(2437), [sym_float] = ACTIONS(2437), [sym_char] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_nil] = ACTIONS(1135), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), [sym_atom] = ACTIONS(2437), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(1147), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1149), - [anon_sym_LT_LT] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1161), - [anon_sym_not] = ACTIONS(1161), - [anon_sym_AT] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(486), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(495), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_CARET] = ACTIONS(495), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(495), + [anon_sym_not] = ACTIONS(495), + [anon_sym_AT] = ACTIONS(497), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -129036,92 +129299,217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1165), + [anon_sym_fn] = ACTIONS(291), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1167), + [sym__before_unary_op] = ACTIONS(499), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1169), + [sym__quoted_atom_start] = ACTIONS(300), }, - [817] = { - [sym__expression] = STATE(3423), - [sym_block] = STATE(3423), - [sym__identifier] = STATE(72), - [sym_identifier] = STATE(72), - [sym_special_identifier] = STATE(72), - [sym_boolean] = STATE(3423), - [sym_nil] = STATE(3423), - [sym__atom] = STATE(3423), - [sym_quoted_atom] = STATE(3423), - [sym__quoted_i_double] = STATE(3516), - [sym__quoted_i_single] = STATE(3518), - [sym__quoted_i_heredoc_single] = STATE(3518), - [sym__quoted_i_heredoc_double] = STATE(3516), - [sym_string] = STATE(3423), - [sym_charlist] = STATE(3423), - [sym_sigil] = STATE(3423), - [sym_list] = STATE(3423), - [sym_tuple] = STATE(3423), - [sym_bitstring] = STATE(3423), - [sym_map] = STATE(3423), - [sym_unary_operator] = STATE(3423), - [sym_binary_operator] = STATE(3423), - [sym_operator_identifier] = STATE(4972), - [sym_dot] = STATE(3423), - [sym_call] = STATE(3423), - [sym__call_without_parentheses] = STATE(3517), - [sym__call_with_parentheses] = STATE(3515), - [sym__local_call_without_parentheses] = STATE(3511), - [sym__local_call_with_parentheses] = STATE(3073), - [sym__local_call_just_do_block] = STATE(3510), - [sym__remote_call_without_parentheses] = STATE(3514), - [sym__remote_call_with_parentheses] = STATE(3088), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(3095), - [sym__anonymous_dot] = STATE(4928), - [sym__double_call] = STATE(3499), - [sym_access_call] = STATE(3423), - [sym_anonymous_function] = STATE(3423), + [814] = { + [sym__expression] = STATE(1506), + [sym_block] = STATE(1506), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1506), + [sym_nil] = STATE(1506), + [sym__atom] = STATE(1506), + [sym_quoted_atom] = STATE(1506), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(1506), + [sym_charlist] = STATE(1506), + [sym_sigil] = STATE(1506), + [sym_list] = STATE(1506), + [sym_tuple] = STATE(1506), + [sym_bitstring] = STATE(1506), + [sym_map] = STATE(1506), + [sym_unary_operator] = STATE(1506), + [sym_binary_operator] = STATE(1506), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(1506), + [sym_call] = STATE(1506), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(1506), + [sym_anonymous_function] = STATE(1506), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1123), - [aux_sym_identifier_token1] = ACTIONS(1125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1125), - [sym_unused_identifier] = ACTIONS(1127), - [anon_sym___MODULE__] = ACTIONS(1129), - [anon_sym___DIR__] = ACTIONS(1129), - [anon_sym___ENV__] = ACTIONS(1129), - [anon_sym___CALLER__] = ACTIONS(1129), - [anon_sym___STACKTRACE__] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2409), + [sym_integer] = ACTIONS(2409), + [sym_float] = ACTIONS(2409), + [sym_char] = ACTIONS(2409), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2409), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [815] = { + [sym__expression] = STATE(4040), + [sym_block] = STATE(4040), + [sym__identifier] = STATE(66), + [sym_identifier] = STATE(66), + [sym_special_identifier] = STATE(66), + [sym_boolean] = STATE(4040), + [sym_nil] = STATE(4040), + [sym__atom] = STATE(4040), + [sym_quoted_atom] = STATE(4040), + [sym__quoted_i_double] = STATE(4034), + [sym__quoted_i_single] = STATE(4021), + [sym__quoted_i_heredoc_single] = STATE(4077), + [sym__quoted_i_heredoc_double] = STATE(4083), + [sym_string] = STATE(4040), + [sym_charlist] = STATE(4040), + [sym_sigil] = STATE(4040), + [sym_list] = STATE(4040), + [sym_tuple] = STATE(4040), + [sym_bitstring] = STATE(4040), + [sym_map] = STATE(4040), + [sym_unary_operator] = STATE(4040), + [sym_binary_operator] = STATE(4040), + [sym_operator_identifier] = STATE(5580), + [sym_dot] = STATE(4040), + [sym_call] = STATE(4040), + [sym__call_without_parentheses] = STATE(4089), + [sym__call_with_parentheses] = STATE(4092), + [sym__local_call_without_parentheses] = STATE(4097), + [sym__local_call_with_parentheses] = STATE(3372), + [sym__local_call_just_do_block] = STATE(4098), + [sym__remote_call_without_parentheses] = STATE(4105), + [sym__remote_call_with_parentheses] = STATE(3374), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3375), + [sym__anonymous_dot] = STATE(5531), + [sym__double_call] = STATE(4106), + [sym_access_call] = STATE(4040), + [sym_anonymous_function] = STATE(4040), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1133), + [aux_sym_identifier_token1] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1135), + [sym_unused_identifier] = ACTIONS(1137), + [anon_sym___MODULE__] = ACTIONS(1139), + [anon_sym___DIR__] = ACTIONS(1139), + [anon_sym___ENV__] = ACTIONS(1139), + [anon_sym___CALLER__] = ACTIONS(1139), + [anon_sym___STACKTRACE__] = ACTIONS(1139), [sym_alias] = ACTIONS(2439), [sym_integer] = ACTIONS(2439), [sym_float] = ACTIONS(2439), [sym_char] = ACTIONS(2439), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_nil] = ACTIONS(1135), + [anon_sym_true] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [anon_sym_nil] = ACTIONS(1145), [sym_atom] = ACTIONS(2439), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(1147), + [anon_sym_DQUOTE] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1151), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1157), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1149), - [anon_sym_LT_LT] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1161), - [anon_sym_not] = ACTIONS(1161), - [anon_sym_AT] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1159), + [anon_sym_LT_LT] = ACTIONS(1163), + [anon_sym_PERCENT] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_AT] = ACTIONS(1173), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -129161,92 +129549,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1165), + [anon_sym_fn] = ACTIONS(1175), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1167), + [sym__before_unary_op] = ACTIONS(1177), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1169), + [sym__quoted_atom_start] = ACTIONS(1179), }, - [818] = { - [sym__expression] = STATE(3464), - [sym_block] = STATE(3464), - [sym__identifier] = STATE(72), - [sym_identifier] = STATE(72), - [sym_special_identifier] = STATE(72), - [sym_boolean] = STATE(3464), - [sym_nil] = STATE(3464), - [sym__atom] = STATE(3464), - [sym_quoted_atom] = STATE(3464), - [sym__quoted_i_double] = STATE(3516), - [sym__quoted_i_single] = STATE(3518), - [sym__quoted_i_heredoc_single] = STATE(3518), - [sym__quoted_i_heredoc_double] = STATE(3516), - [sym_string] = STATE(3464), - [sym_charlist] = STATE(3464), - [sym_sigil] = STATE(3464), - [sym_list] = STATE(3464), - [sym_tuple] = STATE(3464), - [sym_bitstring] = STATE(3464), - [sym_map] = STATE(3464), - [sym_unary_operator] = STATE(3464), - [sym_binary_operator] = STATE(3464), - [sym_operator_identifier] = STATE(4972), - [sym_dot] = STATE(3464), - [sym_call] = STATE(3464), - [sym__call_without_parentheses] = STATE(3517), - [sym__call_with_parentheses] = STATE(3515), - [sym__local_call_without_parentheses] = STATE(3511), - [sym__local_call_with_parentheses] = STATE(3073), - [sym__local_call_just_do_block] = STATE(3510), - [sym__remote_call_without_parentheses] = STATE(3514), - [sym__remote_call_with_parentheses] = STATE(3088), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(3095), - [sym__anonymous_dot] = STATE(4928), - [sym__double_call] = STATE(3499), - [sym_access_call] = STATE(3464), - [sym_anonymous_function] = STATE(3464), + [816] = { + [sym__expression] = STATE(4042), + [sym_block] = STATE(4042), + [sym__identifier] = STATE(66), + [sym_identifier] = STATE(66), + [sym_special_identifier] = STATE(66), + [sym_boolean] = STATE(4042), + [sym_nil] = STATE(4042), + [sym__atom] = STATE(4042), + [sym_quoted_atom] = STATE(4042), + [sym__quoted_i_double] = STATE(4034), + [sym__quoted_i_single] = STATE(4021), + [sym__quoted_i_heredoc_single] = STATE(4077), + [sym__quoted_i_heredoc_double] = STATE(4083), + [sym_string] = STATE(4042), + [sym_charlist] = STATE(4042), + [sym_sigil] = STATE(4042), + [sym_list] = STATE(4042), + [sym_tuple] = STATE(4042), + [sym_bitstring] = STATE(4042), + [sym_map] = STATE(4042), + [sym_unary_operator] = STATE(4042), + [sym_binary_operator] = STATE(4042), + [sym_operator_identifier] = STATE(5580), + [sym_dot] = STATE(4042), + [sym_call] = STATE(4042), + [sym__call_without_parentheses] = STATE(4089), + [sym__call_with_parentheses] = STATE(4092), + [sym__local_call_without_parentheses] = STATE(4097), + [sym__local_call_with_parentheses] = STATE(3372), + [sym__local_call_just_do_block] = STATE(4098), + [sym__remote_call_without_parentheses] = STATE(4105), + [sym__remote_call_with_parentheses] = STATE(3374), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3375), + [sym__anonymous_dot] = STATE(5531), + [sym__double_call] = STATE(4106), + [sym_access_call] = STATE(4042), + [sym_anonymous_function] = STATE(4042), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1123), - [aux_sym_identifier_token1] = ACTIONS(1125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1125), - [sym_unused_identifier] = ACTIONS(1127), - [anon_sym___MODULE__] = ACTIONS(1129), - [anon_sym___DIR__] = ACTIONS(1129), - [anon_sym___ENV__] = ACTIONS(1129), - [anon_sym___CALLER__] = ACTIONS(1129), - [anon_sym___STACKTRACE__] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(1133), + [aux_sym_identifier_token1] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1135), + [sym_unused_identifier] = ACTIONS(1137), + [anon_sym___MODULE__] = ACTIONS(1139), + [anon_sym___DIR__] = ACTIONS(1139), + [anon_sym___ENV__] = ACTIONS(1139), + [anon_sym___CALLER__] = ACTIONS(1139), + [anon_sym___STACKTRACE__] = ACTIONS(1139), [sym_alias] = ACTIONS(2441), [sym_integer] = ACTIONS(2441), [sym_float] = ACTIONS(2441), [sym_char] = ACTIONS(2441), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_nil] = ACTIONS(1135), + [anon_sym_true] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [anon_sym_nil] = ACTIONS(1145), [sym_atom] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(1147), + [anon_sym_DQUOTE] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1151), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1157), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1149), - [anon_sym_LT_LT] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1161), - [anon_sym_not] = ACTIONS(1161), - [anon_sym_AT] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1159), + [anon_sym_LT_LT] = ACTIONS(1163), + [anon_sym_PERCENT] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_AT] = ACTIONS(1173), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -129286,92 +129674,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1165), + [anon_sym_fn] = ACTIONS(1175), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1167), + [sym__before_unary_op] = ACTIONS(1177), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1169), + [sym__quoted_atom_start] = ACTIONS(1179), }, - [819] = { - [sym__expression] = STATE(3468), - [sym_block] = STATE(3468), - [sym__identifier] = STATE(72), - [sym_identifier] = STATE(72), - [sym_special_identifier] = STATE(72), - [sym_boolean] = STATE(3468), - [sym_nil] = STATE(3468), - [sym__atom] = STATE(3468), - [sym_quoted_atom] = STATE(3468), - [sym__quoted_i_double] = STATE(3516), - [sym__quoted_i_single] = STATE(3518), - [sym__quoted_i_heredoc_single] = STATE(3518), - [sym__quoted_i_heredoc_double] = STATE(3516), - [sym_string] = STATE(3468), - [sym_charlist] = STATE(3468), - [sym_sigil] = STATE(3468), - [sym_list] = STATE(3468), - [sym_tuple] = STATE(3468), - [sym_bitstring] = STATE(3468), - [sym_map] = STATE(3468), - [sym_unary_operator] = STATE(3468), - [sym_binary_operator] = STATE(3468), - [sym_operator_identifier] = STATE(4972), - [sym_dot] = STATE(3468), - [sym_call] = STATE(3468), - [sym__call_without_parentheses] = STATE(3517), - [sym__call_with_parentheses] = STATE(3515), - [sym__local_call_without_parentheses] = STATE(3511), - [sym__local_call_with_parentheses] = STATE(3073), - [sym__local_call_just_do_block] = STATE(3510), - [sym__remote_call_without_parentheses] = STATE(3514), - [sym__remote_call_with_parentheses] = STATE(3088), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(3095), - [sym__anonymous_dot] = STATE(4928), - [sym__double_call] = STATE(3499), - [sym_access_call] = STATE(3468), - [sym_anonymous_function] = STATE(3468), + [817] = { + [sym__expression] = STATE(1535), + [sym_block] = STATE(1535), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1535), + [sym_nil] = STATE(1535), + [sym__atom] = STATE(1535), + [sym_quoted_atom] = STATE(1535), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(1535), + [sym_charlist] = STATE(1535), + [sym_sigil] = STATE(1535), + [sym_list] = STATE(1535), + [sym_tuple] = STATE(1535), + [sym_bitstring] = STATE(1535), + [sym_map] = STATE(1535), + [sym_unary_operator] = STATE(1535), + [sym_binary_operator] = STATE(1535), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(1535), + [sym_call] = STATE(1535), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(1535), + [sym_anonymous_function] = STATE(1535), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1123), - [aux_sym_identifier_token1] = ACTIONS(1125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1125), - [sym_unused_identifier] = ACTIONS(1127), - [anon_sym___MODULE__] = ACTIONS(1129), - [anon_sym___DIR__] = ACTIONS(1129), - [anon_sym___ENV__] = ACTIONS(1129), - [anon_sym___CALLER__] = ACTIONS(1129), - [anon_sym___STACKTRACE__] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), [sym_alias] = ACTIONS(2443), [sym_integer] = ACTIONS(2443), [sym_float] = ACTIONS(2443), [sym_char] = ACTIONS(2443), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_nil] = ACTIONS(1135), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), [sym_atom] = ACTIONS(2443), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(1147), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1149), - [anon_sym_LT_LT] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1161), - [anon_sym_not] = ACTIONS(1161), - [anon_sym_AT] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -129411,92 +129799,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1165), + [anon_sym_fn] = ACTIONS(291), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1167), + [sym__before_unary_op] = ACTIONS(295), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1169), + [sym__quoted_atom_start] = ACTIONS(300), }, - [820] = { - [sym__expression] = STATE(1495), - [sym_block] = STATE(1495), - [sym__identifier] = STATE(14), - [sym_identifier] = STATE(14), - [sym_special_identifier] = STATE(14), - [sym_boolean] = STATE(1495), - [sym_nil] = STATE(1495), - [sym__atom] = STATE(1495), - [sym_quoted_atom] = STATE(1495), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(1495), - [sym_charlist] = STATE(1495), - [sym_sigil] = STATE(1495), - [sym_list] = STATE(1495), - [sym_tuple] = STATE(1495), - [sym_bitstring] = STATE(1495), - [sym_map] = STATE(1495), - [sym_unary_operator] = STATE(1495), - [sym_binary_operator] = STATE(1495), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(1495), - [sym_call] = STATE(1495), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(1495), - [sym_anonymous_function] = STATE(1495), + [818] = { + [sym__expression] = STATE(3130), + [sym_block] = STATE(3130), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(3130), + [sym_nil] = STATE(3130), + [sym__atom] = STATE(3130), + [sym_quoted_atom] = STATE(3130), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(3130), + [sym_charlist] = STATE(3130), + [sym_sigil] = STATE(3130), + [sym_list] = STATE(3130), + [sym_tuple] = STATE(3130), + [sym_bitstring] = STATE(3130), + [sym_map] = STATE(3130), + [sym_unary_operator] = STATE(3130), + [sym_binary_operator] = STATE(3130), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(3130), + [sym_call] = STATE(3130), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(3130), + [sym_anonymous_function] = STATE(3130), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(197), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(482), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), [sym_alias] = ACTIONS(2445), [sym_integer] = ACTIONS(2445), [sym_float] = ACTIONS(2445), [sym_char] = ACTIONS(2445), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), [sym_atom] = ACTIONS(2445), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(222), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(230), - [anon_sym_PLUS] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_CARET] = ACTIONS(235), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(235), - [anon_sym_not] = ACTIONS(235), - [anon_sym_AT] = ACTIONS(237), + [anon_sym_TILDE] = ACTIONS(486), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(495), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_CARET] = ACTIONS(495), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(495), + [anon_sym_not] = ACTIONS(495), + [anon_sym_AT] = ACTIONS(497), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -129536,92 +129924,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), + [anon_sym_fn] = ACTIONS(291), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(243), + [sym__before_unary_op] = ACTIONS(499), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), + [sym__quoted_atom_start] = ACTIONS(300), }, - [821] = { - [sym__expression] = STATE(3473), - [sym_block] = STATE(3473), - [sym__identifier] = STATE(72), - [sym_identifier] = STATE(72), - [sym_special_identifier] = STATE(72), - [sym_boolean] = STATE(3473), - [sym_nil] = STATE(3473), - [sym__atom] = STATE(3473), - [sym_quoted_atom] = STATE(3473), - [sym__quoted_i_double] = STATE(3516), - [sym__quoted_i_single] = STATE(3518), - [sym__quoted_i_heredoc_single] = STATE(3518), - [sym__quoted_i_heredoc_double] = STATE(3516), - [sym_string] = STATE(3473), - [sym_charlist] = STATE(3473), - [sym_sigil] = STATE(3473), - [sym_list] = STATE(3473), - [sym_tuple] = STATE(3473), - [sym_bitstring] = STATE(3473), - [sym_map] = STATE(3473), - [sym_unary_operator] = STATE(3473), - [sym_binary_operator] = STATE(3473), - [sym_operator_identifier] = STATE(4972), - [sym_dot] = STATE(3473), - [sym_call] = STATE(3473), - [sym__call_without_parentheses] = STATE(3517), - [sym__call_with_parentheses] = STATE(3515), - [sym__local_call_without_parentheses] = STATE(3511), - [sym__local_call_with_parentheses] = STATE(3073), - [sym__local_call_just_do_block] = STATE(3510), - [sym__remote_call_without_parentheses] = STATE(3514), - [sym__remote_call_with_parentheses] = STATE(3088), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(3095), - [sym__anonymous_dot] = STATE(4928), - [sym__double_call] = STATE(3499), - [sym_access_call] = STATE(3473), - [sym_anonymous_function] = STATE(3473), + [819] = { + [sym__expression] = STATE(3131), + [sym_block] = STATE(3131), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(3131), + [sym_nil] = STATE(3131), + [sym__atom] = STATE(3131), + [sym_quoted_atom] = STATE(3131), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(3131), + [sym_charlist] = STATE(3131), + [sym_sigil] = STATE(3131), + [sym_list] = STATE(3131), + [sym_tuple] = STATE(3131), + [sym_bitstring] = STATE(3131), + [sym_map] = STATE(3131), + [sym_unary_operator] = STATE(3131), + [sym_binary_operator] = STATE(3131), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(3131), + [sym_call] = STATE(3131), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(3131), + [sym_anonymous_function] = STATE(3131), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1123), - [aux_sym_identifier_token1] = ACTIONS(1125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1125), - [sym_unused_identifier] = ACTIONS(1127), - [anon_sym___MODULE__] = ACTIONS(1129), - [anon_sym___DIR__] = ACTIONS(1129), - [anon_sym___ENV__] = ACTIONS(1129), - [anon_sym___CALLER__] = ACTIONS(1129), - [anon_sym___STACKTRACE__] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(482), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), [sym_alias] = ACTIONS(2447), [sym_integer] = ACTIONS(2447), [sym_float] = ACTIONS(2447), [sym_char] = ACTIONS(2447), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_nil] = ACTIONS(1135), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), [sym_atom] = ACTIONS(2447), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(1147), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1149), - [anon_sym_LT_LT] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1161), - [anon_sym_not] = ACTIONS(1161), - [anon_sym_AT] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(486), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(495), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_CARET] = ACTIONS(495), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(495), + [anon_sym_not] = ACTIONS(495), + [anon_sym_AT] = ACTIONS(497), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -129661,92 +130049,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1165), + [anon_sym_fn] = ACTIONS(291), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1167), + [sym__before_unary_op] = ACTIONS(499), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1169), + [sym__quoted_atom_start] = ACTIONS(300), }, - [822] = { - [sym__expression] = STATE(3488), - [sym_block] = STATE(3488), - [sym__identifier] = STATE(72), - [sym_identifier] = STATE(72), - [sym_special_identifier] = STATE(72), - [sym_boolean] = STATE(3488), - [sym_nil] = STATE(3488), - [sym__atom] = STATE(3488), - [sym_quoted_atom] = STATE(3488), - [sym__quoted_i_double] = STATE(3516), - [sym__quoted_i_single] = STATE(3518), - [sym__quoted_i_heredoc_single] = STATE(3518), - [sym__quoted_i_heredoc_double] = STATE(3516), - [sym_string] = STATE(3488), - [sym_charlist] = STATE(3488), - [sym_sigil] = STATE(3488), - [sym_list] = STATE(3488), - [sym_tuple] = STATE(3488), - [sym_bitstring] = STATE(3488), - [sym_map] = STATE(3488), - [sym_unary_operator] = STATE(3488), - [sym_binary_operator] = STATE(3488), - [sym_operator_identifier] = STATE(4972), - [sym_dot] = STATE(3488), - [sym_call] = STATE(3488), - [sym__call_without_parentheses] = STATE(3517), - [sym__call_with_parentheses] = STATE(3515), - [sym__local_call_without_parentheses] = STATE(3511), - [sym__local_call_with_parentheses] = STATE(3073), - [sym__local_call_just_do_block] = STATE(3510), - [sym__remote_call_without_parentheses] = STATE(3514), - [sym__remote_call_with_parentheses] = STATE(3088), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(3095), - [sym__anonymous_dot] = STATE(4928), - [sym__double_call] = STATE(3499), - [sym_access_call] = STATE(3488), - [sym_anonymous_function] = STATE(3488), + [820] = { + [sym__expression] = STATE(3132), + [sym_block] = STATE(3132), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(3132), + [sym_nil] = STATE(3132), + [sym__atom] = STATE(3132), + [sym_quoted_atom] = STATE(3132), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(3132), + [sym_charlist] = STATE(3132), + [sym_sigil] = STATE(3132), + [sym_list] = STATE(3132), + [sym_tuple] = STATE(3132), + [sym_bitstring] = STATE(3132), + [sym_map] = STATE(3132), + [sym_unary_operator] = STATE(3132), + [sym_binary_operator] = STATE(3132), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(3132), + [sym_call] = STATE(3132), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(3132), + [sym_anonymous_function] = STATE(3132), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1123), - [aux_sym_identifier_token1] = ACTIONS(1125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1125), - [sym_unused_identifier] = ACTIONS(1127), - [anon_sym___MODULE__] = ACTIONS(1129), - [anon_sym___DIR__] = ACTIONS(1129), - [anon_sym___ENV__] = ACTIONS(1129), - [anon_sym___CALLER__] = ACTIONS(1129), - [anon_sym___STACKTRACE__] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(482), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), [sym_alias] = ACTIONS(2449), [sym_integer] = ACTIONS(2449), [sym_float] = ACTIONS(2449), [sym_char] = ACTIONS(2449), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_nil] = ACTIONS(1135), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), [sym_atom] = ACTIONS(2449), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(1147), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1149), - [anon_sym_LT_LT] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1161), - [anon_sym_not] = ACTIONS(1161), - [anon_sym_AT] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(486), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(495), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_CARET] = ACTIONS(495), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(495), + [anon_sym_not] = ACTIONS(495), + [anon_sym_AT] = ACTIONS(497), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -129786,92 +130174,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1165), + [anon_sym_fn] = ACTIONS(291), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1167), + [sym__before_unary_op] = ACTIONS(499), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1169), + [sym__quoted_atom_start] = ACTIONS(300), }, - [823] = { - [sym__expression] = STATE(3522), - [sym_block] = STATE(3522), - [sym__identifier] = STATE(72), - [sym_identifier] = STATE(72), - [sym_special_identifier] = STATE(72), - [sym_boolean] = STATE(3522), - [sym_nil] = STATE(3522), - [sym__atom] = STATE(3522), - [sym_quoted_atom] = STATE(3522), - [sym__quoted_i_double] = STATE(3516), - [sym__quoted_i_single] = STATE(3518), - [sym__quoted_i_heredoc_single] = STATE(3518), - [sym__quoted_i_heredoc_double] = STATE(3516), - [sym_string] = STATE(3522), - [sym_charlist] = STATE(3522), - [sym_sigil] = STATE(3522), - [sym_list] = STATE(3522), - [sym_tuple] = STATE(3522), - [sym_bitstring] = STATE(3522), - [sym_map] = STATE(3522), - [sym_unary_operator] = STATE(3522), - [sym_binary_operator] = STATE(3522), - [sym_operator_identifier] = STATE(4972), - [sym_dot] = STATE(3522), - [sym_call] = STATE(3522), - [sym__call_without_parentheses] = STATE(3517), - [sym__call_with_parentheses] = STATE(3515), - [sym__local_call_without_parentheses] = STATE(3511), - [sym__local_call_with_parentheses] = STATE(3073), - [sym__local_call_just_do_block] = STATE(3510), - [sym__remote_call_without_parentheses] = STATE(3514), - [sym__remote_call_with_parentheses] = STATE(3088), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(3095), - [sym__anonymous_dot] = STATE(4928), - [sym__double_call] = STATE(3499), - [sym_access_call] = STATE(3522), - [sym_anonymous_function] = STATE(3522), + [821] = { + [sym__expression] = STATE(3133), + [sym_block] = STATE(3133), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(3133), + [sym_nil] = STATE(3133), + [sym__atom] = STATE(3133), + [sym_quoted_atom] = STATE(3133), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(3133), + [sym_charlist] = STATE(3133), + [sym_sigil] = STATE(3133), + [sym_list] = STATE(3133), + [sym_tuple] = STATE(3133), + [sym_bitstring] = STATE(3133), + [sym_map] = STATE(3133), + [sym_unary_operator] = STATE(3133), + [sym_binary_operator] = STATE(3133), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(3133), + [sym_call] = STATE(3133), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(3133), + [sym_anonymous_function] = STATE(3133), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1123), - [aux_sym_identifier_token1] = ACTIONS(1125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1125), - [sym_unused_identifier] = ACTIONS(1127), - [anon_sym___MODULE__] = ACTIONS(1129), - [anon_sym___DIR__] = ACTIONS(1129), - [anon_sym___ENV__] = ACTIONS(1129), - [anon_sym___CALLER__] = ACTIONS(1129), - [anon_sym___STACKTRACE__] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(482), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), [sym_alias] = ACTIONS(2451), [sym_integer] = ACTIONS(2451), [sym_float] = ACTIONS(2451), [sym_char] = ACTIONS(2451), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_nil] = ACTIONS(1135), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), [sym_atom] = ACTIONS(2451), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(1147), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1149), - [anon_sym_LT_LT] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1161), - [anon_sym_not] = ACTIONS(1161), - [anon_sym_AT] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(486), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(495), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_CARET] = ACTIONS(495), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(495), + [anon_sym_not] = ACTIONS(495), + [anon_sym_AT] = ACTIONS(497), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -129911,92 +130299,217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1165), + [anon_sym_fn] = ACTIONS(291), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1167), + [sym__before_unary_op] = ACTIONS(499), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1169), + [sym__quoted_atom_start] = ACTIONS(300), }, - [824] = { - [sym__expression] = STATE(1550), - [sym_block] = STATE(1550), - [sym__identifier] = STATE(14), - [sym_identifier] = STATE(14), - [sym_special_identifier] = STATE(14), - [sym_boolean] = STATE(1550), - [sym_nil] = STATE(1550), - [sym__atom] = STATE(1550), - [sym_quoted_atom] = STATE(1550), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(1550), - [sym_charlist] = STATE(1550), - [sym_sigil] = STATE(1550), - [sym_list] = STATE(1550), - [sym_tuple] = STATE(1550), - [sym_bitstring] = STATE(1550), - [sym_map] = STATE(1550), - [sym_unary_operator] = STATE(1550), - [sym_binary_operator] = STATE(1550), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(1550), - [sym_call] = STATE(1550), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), + [822] = { + [sym__expression] = STATE(1520), + [sym_block] = STATE(1520), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1520), + [sym_nil] = STATE(1520), + [sym__atom] = STATE(1520), + [sym_quoted_atom] = STATE(1520), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(1520), + [sym_charlist] = STATE(1520), + [sym_sigil] = STATE(1520), + [sym_list] = STATE(1520), + [sym_tuple] = STATE(1520), + [sym_bitstring] = STATE(1520), + [sym_map] = STATE(1520), + [sym_unary_operator] = STATE(1520), + [sym_binary_operator] = STATE(1520), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(1520), + [sym_call] = STATE(1520), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(1550), - [sym_anonymous_function] = STATE(1550), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(1520), + [sym_anonymous_function] = STATE(1520), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_LPAREN] = ACTIONS(249), [aux_sym_identifier_token1] = ACTIONS(195), [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(197), + [sym_unused_identifier] = ACTIONS(251), [anon_sym___MODULE__] = ACTIONS(199), [anon_sym___DIR__] = ACTIONS(199), [anon_sym___ENV__] = ACTIONS(199), [anon_sym___CALLER__] = ACTIONS(199), [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(1459), + [sym_integer] = ACTIONS(1459), + [sym_float] = ACTIONS(1459), + [sym_char] = ACTIONS(1459), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1459), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [823] = { + [sym__expression] = STATE(3135), + [sym_block] = STATE(3135), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(3135), + [sym_nil] = STATE(3135), + [sym__atom] = STATE(3135), + [sym_quoted_atom] = STATE(3135), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(3135), + [sym_charlist] = STATE(3135), + [sym_sigil] = STATE(3135), + [sym_list] = STATE(3135), + [sym_tuple] = STATE(3135), + [sym_bitstring] = STATE(3135), + [sym_map] = STATE(3135), + [sym_unary_operator] = STATE(3135), + [sym_binary_operator] = STATE(3135), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(3135), + [sym_call] = STATE(3135), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(3135), + [sym_anonymous_function] = STATE(3135), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(482), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), [sym_alias] = ACTIONS(2453), [sym_integer] = ACTIONS(2453), [sym_float] = ACTIONS(2453), [sym_char] = ACTIONS(2453), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), [sym_atom] = ACTIONS(2453), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(222), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(230), - [anon_sym_PLUS] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_CARET] = ACTIONS(235), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(235), - [anon_sym_not] = ACTIONS(235), - [anon_sym_AT] = ACTIONS(237), + [anon_sym_TILDE] = ACTIONS(486), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(495), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_CARET] = ACTIONS(495), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(495), + [anon_sym_not] = ACTIONS(495), + [anon_sym_AT] = ACTIONS(497), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -130036,92 +130549,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), + [anon_sym_fn] = ACTIONS(291), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(243), + [sym__before_unary_op] = ACTIONS(499), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), + [sym__quoted_atom_start] = ACTIONS(300), }, - [825] = { - [sym__expression] = STATE(3194), - [sym_block] = STATE(3194), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3194), - [sym_nil] = STATE(3194), - [sym__atom] = STATE(3194), - [sym_quoted_atom] = STATE(3194), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3194), - [sym_charlist] = STATE(3194), - [sym_sigil] = STATE(3194), - [sym_list] = STATE(3194), - [sym_tuple] = STATE(3194), - [sym_bitstring] = STATE(3194), - [sym_map] = STATE(3194), - [sym_unary_operator] = STATE(3194), - [sym_binary_operator] = STATE(3194), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3194), - [sym_call] = STATE(3194), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [824] = { + [sym__expression] = STATE(3136), + [sym_block] = STATE(3136), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(3136), + [sym_nil] = STATE(3136), + [sym__atom] = STATE(3136), + [sym_quoted_atom] = STATE(3136), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(3136), + [sym_charlist] = STATE(3136), + [sym_sigil] = STATE(3136), + [sym_list] = STATE(3136), + [sym_tuple] = STATE(3136), + [sym_bitstring] = STATE(3136), + [sym_map] = STATE(3136), + [sym_unary_operator] = STATE(3136), + [sym_binary_operator] = STATE(3136), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(3136), + [sym_call] = STATE(3136), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3194), - [sym_anonymous_function] = STATE(3194), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(3136), + [sym_anonymous_function] = STATE(3136), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(482), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), [sym_alias] = ACTIONS(2455), [sym_integer] = ACTIONS(2455), [sym_float] = ACTIONS(2455), [sym_char] = ACTIONS(2455), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), [sym_atom] = ACTIONS(2455), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), + [anon_sym_TILDE] = ACTIONS(486), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(495), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_CARET] = ACTIONS(495), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(495), + [anon_sym_not] = ACTIONS(495), + [anon_sym_AT] = ACTIONS(497), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -130161,92 +130674,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(291), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), + [sym__before_unary_op] = ACTIONS(499), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), + [sym__quoted_atom_start] = ACTIONS(300), }, - [826] = { - [sym__expression] = STATE(3195), - [sym_block] = STATE(3195), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3195), - [sym_nil] = STATE(3195), - [sym__atom] = STATE(3195), - [sym_quoted_atom] = STATE(3195), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3195), - [sym_charlist] = STATE(3195), - [sym_sigil] = STATE(3195), - [sym_list] = STATE(3195), - [sym_tuple] = STATE(3195), - [sym_bitstring] = STATE(3195), - [sym_map] = STATE(3195), - [sym_unary_operator] = STATE(3195), - [sym_binary_operator] = STATE(3195), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3195), - [sym_call] = STATE(3195), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [825] = { + [sym__expression] = STATE(3137), + [sym_block] = STATE(3137), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(3137), + [sym_nil] = STATE(3137), + [sym__atom] = STATE(3137), + [sym_quoted_atom] = STATE(3137), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(3137), + [sym_charlist] = STATE(3137), + [sym_sigil] = STATE(3137), + [sym_list] = STATE(3137), + [sym_tuple] = STATE(3137), + [sym_bitstring] = STATE(3137), + [sym_map] = STATE(3137), + [sym_unary_operator] = STATE(3137), + [sym_binary_operator] = STATE(3137), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(3137), + [sym_call] = STATE(3137), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3195), - [sym_anonymous_function] = STATE(3195), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(3137), + [sym_anonymous_function] = STATE(3137), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(482), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), [sym_alias] = ACTIONS(2457), [sym_integer] = ACTIONS(2457), [sym_float] = ACTIONS(2457), [sym_char] = ACTIONS(2457), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), [sym_atom] = ACTIONS(2457), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), + [anon_sym_TILDE] = ACTIONS(486), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(495), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_CARET] = ACTIONS(495), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(495), + [anon_sym_not] = ACTIONS(495), + [anon_sym_AT] = ACTIONS(497), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -130286,92 +130799,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(291), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), + [sym__before_unary_op] = ACTIONS(499), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), + [sym__quoted_atom_start] = ACTIONS(300), }, - [827] = { - [sym__expression] = STATE(1913), - [sym_block] = STATE(1913), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(1913), - [sym_nil] = STATE(1913), - [sym__atom] = STATE(1913), - [sym_quoted_atom] = STATE(1913), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(1913), - [sym_charlist] = STATE(1913), - [sym_sigil] = STATE(1913), - [sym_list] = STATE(1913), - [sym_tuple] = STATE(1913), - [sym_bitstring] = STATE(1913), - [sym_map] = STATE(1913), - [sym_unary_operator] = STATE(1913), - [sym_binary_operator] = STATE(1913), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(1913), - [sym_call] = STATE(1913), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(1913), - [sym_anonymous_function] = STATE(1913), + [826] = { + [sym__expression] = STATE(1425), + [sym_block] = STATE(1425), + [sym__identifier] = STATE(18), + [sym_identifier] = STATE(18), + [sym_special_identifier] = STATE(18), + [sym_boolean] = STATE(1425), + [sym_nil] = STATE(1425), + [sym__atom] = STATE(1425), + [sym_quoted_atom] = STATE(1425), + [sym__quoted_i_double] = STATE(1250), + [sym__quoted_i_single] = STATE(1249), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(1425), + [sym_charlist] = STATE(1425), + [sym_sigil] = STATE(1425), + [sym_list] = STATE(1425), + [sym_tuple] = STATE(1425), + [sym_bitstring] = STATE(1425), + [sym_map] = STATE(1425), + [sym_unary_operator] = STATE(1425), + [sym_binary_operator] = STATE(1425), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(1425), + [sym_call] = STATE(1425), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(1425), + [sym_anonymous_function] = STATE(1425), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(944), - [anon_sym___MODULE__] = ACTIONS(71), - [anon_sym___DIR__] = ACTIONS(71), - [anon_sym___ENV__] = ACTIONS(71), - [anon_sym___CALLER__] = ACTIONS(71), - [anon_sym___STACKTRACE__] = ACTIONS(71), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), [sym_alias] = ACTIONS(2459), [sym_integer] = ACTIONS(2459), [sym_float] = ACTIONS(2459), [sym_char] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), [sym_atom] = ACTIONS(2459), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(972), - [anon_sym_CARET] = ACTIONS(972), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), - [anon_sym_not] = ACTIONS(972), - [anon_sym_AT] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -130411,92 +130924,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(235), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(980), + [sym__before_unary_op] = ACTIONS(241), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), + [sym__quoted_atom_start] = ACTIONS(243), }, - [828] = { - [sym__expression] = STATE(3197), - [sym_block] = STATE(3197), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3197), - [sym_nil] = STATE(3197), - [sym__atom] = STATE(3197), - [sym_quoted_atom] = STATE(3197), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3197), - [sym_charlist] = STATE(3197), - [sym_sigil] = STATE(3197), - [sym_list] = STATE(3197), - [sym_tuple] = STATE(3197), - [sym_bitstring] = STATE(3197), - [sym_map] = STATE(3197), - [sym_unary_operator] = STATE(3197), - [sym_binary_operator] = STATE(3197), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3197), - [sym_call] = STATE(3197), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3197), - [sym_anonymous_function] = STATE(3197), + [827] = { + [sym__expression] = STATE(4043), + [sym_block] = STATE(4043), + [sym__identifier] = STATE(66), + [sym_identifier] = STATE(66), + [sym_special_identifier] = STATE(66), + [sym_boolean] = STATE(4043), + [sym_nil] = STATE(4043), + [sym__atom] = STATE(4043), + [sym_quoted_atom] = STATE(4043), + [sym__quoted_i_double] = STATE(4034), + [sym__quoted_i_single] = STATE(4021), + [sym__quoted_i_heredoc_single] = STATE(4077), + [sym__quoted_i_heredoc_double] = STATE(4083), + [sym_string] = STATE(4043), + [sym_charlist] = STATE(4043), + [sym_sigil] = STATE(4043), + [sym_list] = STATE(4043), + [sym_tuple] = STATE(4043), + [sym_bitstring] = STATE(4043), + [sym_map] = STATE(4043), + [sym_unary_operator] = STATE(4043), + [sym_binary_operator] = STATE(4043), + [sym_operator_identifier] = STATE(5580), + [sym_dot] = STATE(4043), + [sym_call] = STATE(4043), + [sym__call_without_parentheses] = STATE(4089), + [sym__call_with_parentheses] = STATE(4092), + [sym__local_call_without_parentheses] = STATE(4097), + [sym__local_call_with_parentheses] = STATE(3372), + [sym__local_call_just_do_block] = STATE(4098), + [sym__remote_call_without_parentheses] = STATE(4105), + [sym__remote_call_with_parentheses] = STATE(3374), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3375), + [sym__anonymous_dot] = STATE(5531), + [sym__double_call] = STATE(4106), + [sym_access_call] = STATE(4043), + [sym_anonymous_function] = STATE(4043), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), + [anon_sym_LPAREN] = ACTIONS(1133), + [aux_sym_identifier_token1] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1135), + [sym_unused_identifier] = ACTIONS(1137), + [anon_sym___MODULE__] = ACTIONS(1139), + [anon_sym___DIR__] = ACTIONS(1139), + [anon_sym___ENV__] = ACTIONS(1139), + [anon_sym___CALLER__] = ACTIONS(1139), + [anon_sym___STACKTRACE__] = ACTIONS(1139), [sym_alias] = ACTIONS(2461), [sym_integer] = ACTIONS(2461), [sym_float] = ACTIONS(2461), [sym_char] = ACTIONS(2461), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), + [anon_sym_true] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [anon_sym_nil] = ACTIONS(1145), [sym_atom] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1151), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1157), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), + [anon_sym_TILDE] = ACTIONS(1159), + [anon_sym_LT_LT] = ACTIONS(1163), + [anon_sym_PERCENT] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_AT] = ACTIONS(1173), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -130536,92 +131049,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(1175), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), + [sym__before_unary_op] = ACTIONS(1177), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), + [sym__quoted_atom_start] = ACTIONS(1179), }, - [829] = { - [sym__expression] = STATE(3198), - [sym_block] = STATE(3198), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3198), - [sym_nil] = STATE(3198), - [sym__atom] = STATE(3198), - [sym_quoted_atom] = STATE(3198), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3198), - [sym_charlist] = STATE(3198), - [sym_sigil] = STATE(3198), - [sym_list] = STATE(3198), - [sym_tuple] = STATE(3198), - [sym_bitstring] = STATE(3198), - [sym_map] = STATE(3198), - [sym_unary_operator] = STATE(3198), - [sym_binary_operator] = STATE(3198), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3198), - [sym_call] = STATE(3198), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [828] = { + [sym__expression] = STATE(3139), + [sym_block] = STATE(3139), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(3139), + [sym_nil] = STATE(3139), + [sym__atom] = STATE(3139), + [sym_quoted_atom] = STATE(3139), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(3139), + [sym_charlist] = STATE(3139), + [sym_sigil] = STATE(3139), + [sym_list] = STATE(3139), + [sym_tuple] = STATE(3139), + [sym_bitstring] = STATE(3139), + [sym_map] = STATE(3139), + [sym_unary_operator] = STATE(3139), + [sym_binary_operator] = STATE(3139), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(3139), + [sym_call] = STATE(3139), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3198), - [sym_anonymous_function] = STATE(3198), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(3139), + [sym_anonymous_function] = STATE(3139), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(482), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), [sym_alias] = ACTIONS(2463), [sym_integer] = ACTIONS(2463), [sym_float] = ACTIONS(2463), [sym_char] = ACTIONS(2463), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), [sym_atom] = ACTIONS(2463), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), + [anon_sym_TILDE] = ACTIONS(486), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(495), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_CARET] = ACTIONS(495), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(495), + [anon_sym_not] = ACTIONS(495), + [anon_sym_AT] = ACTIONS(497), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -130661,92 +131174,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(291), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), + [sym__before_unary_op] = ACTIONS(499), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), + [sym__quoted_atom_start] = ACTIONS(300), }, - [830] = { - [sym__expression] = STATE(3201), - [sym_block] = STATE(3201), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3201), - [sym_nil] = STATE(3201), - [sym__atom] = STATE(3201), - [sym_quoted_atom] = STATE(3201), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3201), - [sym_charlist] = STATE(3201), - [sym_sigil] = STATE(3201), - [sym_list] = STATE(3201), - [sym_tuple] = STATE(3201), - [sym_bitstring] = STATE(3201), - [sym_map] = STATE(3201), - [sym_unary_operator] = STATE(3201), - [sym_binary_operator] = STATE(3201), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3201), - [sym_call] = STATE(3201), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), + [829] = { + [sym__expression] = STATE(3140), + [sym_block] = STATE(3140), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(3140), + [sym_nil] = STATE(3140), + [sym__atom] = STATE(3140), + [sym_quoted_atom] = STATE(3140), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(3140), + [sym_charlist] = STATE(3140), + [sym_sigil] = STATE(3140), + [sym_list] = STATE(3140), + [sym_tuple] = STATE(3140), + [sym_bitstring] = STATE(3140), + [sym_map] = STATE(3140), + [sym_unary_operator] = STATE(3140), + [sym_binary_operator] = STATE(3140), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(3140), + [sym_call] = STATE(3140), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3201), - [sym_anonymous_function] = STATE(3201), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(3140), + [sym_anonymous_function] = STATE(3140), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(482), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), [sym_alias] = ACTIONS(2465), [sym_integer] = ACTIONS(2465), [sym_float] = ACTIONS(2465), [sym_char] = ACTIONS(2465), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), [sym_atom] = ACTIONS(2465), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), + [anon_sym_TILDE] = ACTIONS(486), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(495), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_CARET] = ACTIONS(495), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(495), + [anon_sym_not] = ACTIONS(495), + [anon_sym_AT] = ACTIONS(497), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -130786,92 +131299,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(291), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), + [sym__before_unary_op] = ACTIONS(499), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), + [sym__quoted_atom_start] = ACTIONS(300), }, - [831] = { - [sym__expression] = STATE(3525), - [sym_block] = STATE(3525), - [sym__identifier] = STATE(72), - [sym_identifier] = STATE(72), - [sym_special_identifier] = STATE(72), - [sym_boolean] = STATE(3525), - [sym_nil] = STATE(3525), - [sym__atom] = STATE(3525), - [sym_quoted_atom] = STATE(3525), - [sym__quoted_i_double] = STATE(3516), - [sym__quoted_i_single] = STATE(3518), - [sym__quoted_i_heredoc_single] = STATE(3518), - [sym__quoted_i_heredoc_double] = STATE(3516), - [sym_string] = STATE(3525), - [sym_charlist] = STATE(3525), - [sym_sigil] = STATE(3525), - [sym_list] = STATE(3525), - [sym_tuple] = STATE(3525), - [sym_bitstring] = STATE(3525), - [sym_map] = STATE(3525), - [sym_unary_operator] = STATE(3525), - [sym_binary_operator] = STATE(3525), - [sym_operator_identifier] = STATE(4972), - [sym_dot] = STATE(3525), - [sym_call] = STATE(3525), - [sym__call_without_parentheses] = STATE(3517), - [sym__call_with_parentheses] = STATE(3515), - [sym__local_call_without_parentheses] = STATE(3511), - [sym__local_call_with_parentheses] = STATE(3073), - [sym__local_call_just_do_block] = STATE(3510), - [sym__remote_call_without_parentheses] = STATE(3514), - [sym__remote_call_with_parentheses] = STATE(3088), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(3095), - [sym__anonymous_dot] = STATE(4928), - [sym__double_call] = STATE(3499), - [sym_access_call] = STATE(3525), - [sym_anonymous_function] = STATE(3525), + [830] = { + [sym__expression] = STATE(4044), + [sym_block] = STATE(4044), + [sym__identifier] = STATE(66), + [sym_identifier] = STATE(66), + [sym_special_identifier] = STATE(66), + [sym_boolean] = STATE(4044), + [sym_nil] = STATE(4044), + [sym__atom] = STATE(4044), + [sym_quoted_atom] = STATE(4044), + [sym__quoted_i_double] = STATE(4034), + [sym__quoted_i_single] = STATE(4021), + [sym__quoted_i_heredoc_single] = STATE(4077), + [sym__quoted_i_heredoc_double] = STATE(4083), + [sym_string] = STATE(4044), + [sym_charlist] = STATE(4044), + [sym_sigil] = STATE(4044), + [sym_list] = STATE(4044), + [sym_tuple] = STATE(4044), + [sym_bitstring] = STATE(4044), + [sym_map] = STATE(4044), + [sym_unary_operator] = STATE(4044), + [sym_binary_operator] = STATE(4044), + [sym_operator_identifier] = STATE(5580), + [sym_dot] = STATE(4044), + [sym_call] = STATE(4044), + [sym__call_without_parentheses] = STATE(4089), + [sym__call_with_parentheses] = STATE(4092), + [sym__local_call_without_parentheses] = STATE(4097), + [sym__local_call_with_parentheses] = STATE(3372), + [sym__local_call_just_do_block] = STATE(4098), + [sym__remote_call_without_parentheses] = STATE(4105), + [sym__remote_call_with_parentheses] = STATE(3374), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3375), + [sym__anonymous_dot] = STATE(5531), + [sym__double_call] = STATE(4106), + [sym_access_call] = STATE(4044), + [sym_anonymous_function] = STATE(4044), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1123), - [aux_sym_identifier_token1] = ACTIONS(1125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1125), - [sym_unused_identifier] = ACTIONS(1127), - [anon_sym___MODULE__] = ACTIONS(1129), - [anon_sym___DIR__] = ACTIONS(1129), - [anon_sym___ENV__] = ACTIONS(1129), - [anon_sym___CALLER__] = ACTIONS(1129), - [anon_sym___STACKTRACE__] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(1133), + [aux_sym_identifier_token1] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1135), + [sym_unused_identifier] = ACTIONS(1137), + [anon_sym___MODULE__] = ACTIONS(1139), + [anon_sym___DIR__] = ACTIONS(1139), + [anon_sym___ENV__] = ACTIONS(1139), + [anon_sym___CALLER__] = ACTIONS(1139), + [anon_sym___STACKTRACE__] = ACTIONS(1139), [sym_alias] = ACTIONS(2467), [sym_integer] = ACTIONS(2467), [sym_float] = ACTIONS(2467), [sym_char] = ACTIONS(2467), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_nil] = ACTIONS(1135), + [anon_sym_true] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [anon_sym_nil] = ACTIONS(1145), [sym_atom] = ACTIONS(2467), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(1147), + [anon_sym_DQUOTE] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1151), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1157), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1149), - [anon_sym_LT_LT] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1161), - [anon_sym_not] = ACTIONS(1161), - [anon_sym_AT] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1159), + [anon_sym_LT_LT] = ACTIONS(1163), + [anon_sym_PERCENT] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_AT] = ACTIONS(1173), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -130911,92 +131424,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1165), + [anon_sym_fn] = ACTIONS(1175), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1167), + [sym__before_unary_op] = ACTIONS(1177), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1169), + [sym__quoted_atom_start] = ACTIONS(1179), }, - [832] = { - [sym__expression] = STATE(3151), - [sym_block] = STATE(3151), - [sym__identifier] = STATE(54), - [sym_identifier] = STATE(54), - [sym_special_identifier] = STATE(54), - [sym_boolean] = STATE(3151), - [sym_nil] = STATE(3151), - [sym__atom] = STATE(3151), - [sym_quoted_atom] = STATE(3151), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3151), - [sym_charlist] = STATE(3151), - [sym_sigil] = STATE(3151), - [sym_list] = STATE(3151), - [sym_tuple] = STATE(3151), - [sym_bitstring] = STATE(3151), - [sym_map] = STATE(3151), - [sym_unary_operator] = STATE(3151), - [sym_binary_operator] = STATE(3151), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3151), - [sym_call] = STATE(3151), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3151), - [sym_anonymous_function] = STATE(3151), + [831] = { + [sym__expression] = STATE(4056), + [sym_block] = STATE(4056), + [sym__identifier] = STATE(66), + [sym_identifier] = STATE(66), + [sym_special_identifier] = STATE(66), + [sym_boolean] = STATE(4056), + [sym_nil] = STATE(4056), + [sym__atom] = STATE(4056), + [sym_quoted_atom] = STATE(4056), + [sym__quoted_i_double] = STATE(4034), + [sym__quoted_i_single] = STATE(4021), + [sym__quoted_i_heredoc_single] = STATE(4077), + [sym__quoted_i_heredoc_double] = STATE(4083), + [sym_string] = STATE(4056), + [sym_charlist] = STATE(4056), + [sym_sigil] = STATE(4056), + [sym_list] = STATE(4056), + [sym_tuple] = STATE(4056), + [sym_bitstring] = STATE(4056), + [sym_map] = STATE(4056), + [sym_unary_operator] = STATE(4056), + [sym_binary_operator] = STATE(4056), + [sym_operator_identifier] = STATE(5580), + [sym_dot] = STATE(4056), + [sym_call] = STATE(4056), + [sym__call_without_parentheses] = STATE(4089), + [sym__call_with_parentheses] = STATE(4092), + [sym__local_call_without_parentheses] = STATE(4097), + [sym__local_call_with_parentheses] = STATE(3372), + [sym__local_call_just_do_block] = STATE(4098), + [sym__remote_call_without_parentheses] = STATE(4105), + [sym__remote_call_with_parentheses] = STATE(3374), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3375), + [sym__anonymous_dot] = STATE(5531), + [sym__double_call] = STATE(4106), + [sym_access_call] = STATE(4056), + [sym_anonymous_function] = STATE(4056), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(1427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1427), - [sym_unused_identifier] = ACTIONS(1429), - [anon_sym___MODULE__] = ACTIONS(1431), - [anon_sym___DIR__] = ACTIONS(1431), - [anon_sym___ENV__] = ACTIONS(1431), - [anon_sym___CALLER__] = ACTIONS(1431), - [anon_sym___STACKTRACE__] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1133), + [aux_sym_identifier_token1] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1135), + [sym_unused_identifier] = ACTIONS(1137), + [anon_sym___MODULE__] = ACTIONS(1139), + [anon_sym___DIR__] = ACTIONS(1139), + [anon_sym___ENV__] = ACTIONS(1139), + [anon_sym___CALLER__] = ACTIONS(1139), + [anon_sym___STACKTRACE__] = ACTIONS(1139), [sym_alias] = ACTIONS(2469), [sym_integer] = ACTIONS(2469), [sym_float] = ACTIONS(2469), [sym_char] = ACTIONS(2469), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), + [anon_sym_true] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [anon_sym_nil] = ACTIONS(1145), [sym_atom] = ACTIONS(2469), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1151), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1157), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_CARET] = ACTIONS(1441), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1441), - [anon_sym_not] = ACTIONS(1441), - [anon_sym_AT] = ACTIONS(1443), + [anon_sym_TILDE] = ACTIONS(1159), + [anon_sym_LT_LT] = ACTIONS(1163), + [anon_sym_PERCENT] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_AT] = ACTIONS(1173), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -131036,92 +131549,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(1175), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1445), + [sym__before_unary_op] = ACTIONS(1177), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), + [sym__quoted_atom_start] = ACTIONS(1179), }, - [833] = { - [sym__expression] = STATE(3207), - [sym_block] = STATE(3207), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3207), - [sym_nil] = STATE(3207), - [sym__atom] = STATE(3207), - [sym_quoted_atom] = STATE(3207), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3207), - [sym_charlist] = STATE(3207), - [sym_sigil] = STATE(3207), - [sym_list] = STATE(3207), - [sym_tuple] = STATE(3207), - [sym_bitstring] = STATE(3207), - [sym_map] = STATE(3207), - [sym_unary_operator] = STATE(3207), - [sym_binary_operator] = STATE(3207), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3207), - [sym_call] = STATE(3207), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3207), - [sym_anonymous_function] = STATE(3207), + [832] = { + [sym__expression] = STATE(3269), + [sym_block] = STATE(3269), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3269), + [sym_nil] = STATE(3269), + [sym__atom] = STATE(3269), + [sym_quoted_atom] = STATE(3269), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3269), + [sym_charlist] = STATE(3269), + [sym_sigil] = STATE(3269), + [sym_list] = STATE(3269), + [sym_tuple] = STATE(3269), + [sym_bitstring] = STATE(3269), + [sym_map] = STATE(3269), + [sym_unary_operator] = STATE(3269), + [sym_binary_operator] = STATE(3269), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3269), + [sym_call] = STATE(3269), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3269), + [sym_anonymous_function] = STATE(3269), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), [sym_alias] = ACTIONS(2471), [sym_integer] = ACTIONS(2471), [sym_float] = ACTIONS(2471), [sym_char] = ACTIONS(2471), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), [sym_atom] = ACTIONS(2471), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -131161,92 +131674,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(1105), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), + [sym__before_unary_op] = ACTIONS(1107), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), + [sym__quoted_atom_start] = ACTIONS(1109), }, - [834] = { - [sym__expression] = STATE(3208), - [sym_block] = STATE(3208), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3208), - [sym_nil] = STATE(3208), - [sym__atom] = STATE(3208), - [sym_quoted_atom] = STATE(3208), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3208), - [sym_charlist] = STATE(3208), - [sym_sigil] = STATE(3208), - [sym_list] = STATE(3208), - [sym_tuple] = STATE(3208), - [sym_bitstring] = STATE(3208), - [sym_map] = STATE(3208), - [sym_unary_operator] = STATE(3208), - [sym_binary_operator] = STATE(3208), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3208), - [sym_call] = STATE(3208), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3208), - [sym_anonymous_function] = STATE(3208), + [833] = { + [sym__expression] = STATE(3270), + [sym_block] = STATE(3270), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3270), + [sym_nil] = STATE(3270), + [sym__atom] = STATE(3270), + [sym_quoted_atom] = STATE(3270), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3270), + [sym_charlist] = STATE(3270), + [sym_sigil] = STATE(3270), + [sym_list] = STATE(3270), + [sym_tuple] = STATE(3270), + [sym_bitstring] = STATE(3270), + [sym_map] = STATE(3270), + [sym_unary_operator] = STATE(3270), + [sym_binary_operator] = STATE(3270), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3270), + [sym_call] = STATE(3270), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3270), + [sym_anonymous_function] = STATE(3270), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), [sym_alias] = ACTIONS(2473), [sym_integer] = ACTIONS(2473), [sym_float] = ACTIONS(2473), [sym_char] = ACTIONS(2473), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), [sym_atom] = ACTIONS(2473), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -131286,92 +131799,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(1105), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), + [sym__before_unary_op] = ACTIONS(1107), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), + [sym__quoted_atom_start] = ACTIONS(1109), }, - [835] = { - [sym__expression] = STATE(3519), - [sym_block] = STATE(3519), - [sym__identifier] = STATE(72), - [sym_identifier] = STATE(72), - [sym_special_identifier] = STATE(72), - [sym_boolean] = STATE(3519), - [sym_nil] = STATE(3519), - [sym__atom] = STATE(3519), - [sym_quoted_atom] = STATE(3519), - [sym__quoted_i_double] = STATE(3516), - [sym__quoted_i_single] = STATE(3518), - [sym__quoted_i_heredoc_single] = STATE(3518), - [sym__quoted_i_heredoc_double] = STATE(3516), - [sym_string] = STATE(3519), - [sym_charlist] = STATE(3519), - [sym_sigil] = STATE(3519), - [sym_list] = STATE(3519), - [sym_tuple] = STATE(3519), - [sym_bitstring] = STATE(3519), - [sym_map] = STATE(3519), - [sym_unary_operator] = STATE(3519), - [sym_binary_operator] = STATE(3519), - [sym_operator_identifier] = STATE(4972), - [sym_dot] = STATE(3519), - [sym_call] = STATE(3519), - [sym__call_without_parentheses] = STATE(3517), - [sym__call_with_parentheses] = STATE(3515), - [sym__local_call_without_parentheses] = STATE(3511), - [sym__local_call_with_parentheses] = STATE(3073), - [sym__local_call_just_do_block] = STATE(3510), - [sym__remote_call_without_parentheses] = STATE(3514), - [sym__remote_call_with_parentheses] = STATE(3088), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(3095), - [sym__anonymous_dot] = STATE(4928), - [sym__double_call] = STATE(3499), - [sym_access_call] = STATE(3519), - [sym_anonymous_function] = STATE(3519), + [834] = { + [sym__expression] = STATE(3671), + [sym_block] = STATE(3671), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_boolean] = STATE(3671), + [sym_nil] = STATE(3671), + [sym__atom] = STATE(3671), + [sym_quoted_atom] = STATE(3671), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(3671), + [sym_charlist] = STATE(3671), + [sym_sigil] = STATE(3671), + [sym_list] = STATE(3671), + [sym_tuple] = STATE(3671), + [sym_bitstring] = STATE(3671), + [sym_map] = STATE(3671), + [sym_unary_operator] = STATE(3671), + [sym_binary_operator] = STATE(3671), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(3671), + [sym_call] = STATE(3671), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(3671), + [sym_anonymous_function] = STATE(3671), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1123), - [aux_sym_identifier_token1] = ACTIONS(1125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1125), - [sym_unused_identifier] = ACTIONS(1127), - [anon_sym___MODULE__] = ACTIONS(1129), - [anon_sym___DIR__] = ACTIONS(1129), - [anon_sym___ENV__] = ACTIONS(1129), - [anon_sym___CALLER__] = ACTIONS(1129), - [anon_sym___STACKTRACE__] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1349), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), [sym_alias] = ACTIONS(2475), [sym_integer] = ACTIONS(2475), [sym_float] = ACTIONS(2475), [sym_char] = ACTIONS(2475), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_nil] = ACTIONS(1135), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), [sym_atom] = ACTIONS(2475), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(1147), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1149), - [anon_sym_LT_LT] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1161), - [anon_sym_not] = ACTIONS(1161), - [anon_sym_AT] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1359), + [anon_sym_not] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1361), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -131411,92 +131924,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1165), + [anon_sym_fn] = ACTIONS(978), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1167), + [sym__before_unary_op] = ACTIONS(1363), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1169), + [sym__quoted_atom_start] = ACTIONS(982), }, - [836] = { - [sym__expression] = STATE(1463), - [sym_block] = STATE(1463), - [sym__identifier] = STATE(14), - [sym_identifier] = STATE(14), - [sym_special_identifier] = STATE(14), - [sym_boolean] = STATE(1463), - [sym_nil] = STATE(1463), - [sym__atom] = STATE(1463), - [sym_quoted_atom] = STATE(1463), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(1463), - [sym_charlist] = STATE(1463), - [sym_sigil] = STATE(1463), - [sym_list] = STATE(1463), - [sym_tuple] = STATE(1463), - [sym_bitstring] = STATE(1463), - [sym_map] = STATE(1463), - [sym_unary_operator] = STATE(1463), - [sym_binary_operator] = STATE(1463), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(1463), - [sym_call] = STATE(1463), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(1463), - [sym_anonymous_function] = STATE(1463), + [835] = { + [sym__expression] = STATE(3272), + [sym_block] = STATE(3272), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3272), + [sym_nil] = STATE(3272), + [sym__atom] = STATE(3272), + [sym_quoted_atom] = STATE(3272), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3272), + [sym_charlist] = STATE(3272), + [sym_sigil] = STATE(3272), + [sym_list] = STATE(3272), + [sym_tuple] = STATE(3272), + [sym_bitstring] = STATE(3272), + [sym_map] = STATE(3272), + [sym_unary_operator] = STATE(3272), + [sym_binary_operator] = STATE(3272), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3272), + [sym_call] = STATE(3272), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3272), + [sym_anonymous_function] = STATE(3272), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(197), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), [sym_alias] = ACTIONS(2477), [sym_integer] = ACTIONS(2477), [sym_float] = ACTIONS(2477), [sym_char] = ACTIONS(2477), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), [sym_atom] = ACTIONS(2477), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(222), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(230), - [anon_sym_PLUS] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_CARET] = ACTIONS(235), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(235), - [anon_sym_not] = ACTIONS(235), - [anon_sym_AT] = ACTIONS(237), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -131536,217 +132049,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), + [anon_sym_fn] = ACTIONS(1105), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(243), + [sym__before_unary_op] = ACTIONS(1107), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), + [sym__quoted_atom_start] = ACTIONS(1109), }, - [837] = { - [sym__expression] = STATE(1624), - [sym_block] = STATE(1624), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(1624), - [sym_nil] = STATE(1624), - [sym__atom] = STATE(1624), - [sym_quoted_atom] = STATE(1624), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(1624), - [sym_charlist] = STATE(1624), - [sym_sigil] = STATE(1624), - [sym_list] = STATE(1624), - [sym_tuple] = STATE(1624), - [sym_bitstring] = STATE(1624), - [sym_map] = STATE(1624), - [sym_unary_operator] = STATE(1624), - [sym_binary_operator] = STATE(1624), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(1624), - [sym_call] = STATE(1624), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(1624), - [sym_anonymous_function] = STATE(1624), + [836] = { + [sym__expression] = STATE(3273), + [sym_block] = STATE(3273), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3273), + [sym_nil] = STATE(3273), + [sym__atom] = STATE(3273), + [sym_quoted_atom] = STATE(3273), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3273), + [sym_charlist] = STATE(3273), + [sym_sigil] = STATE(3273), + [sym_list] = STATE(3273), + [sym_tuple] = STATE(3273), + [sym_bitstring] = STATE(3273), + [sym_map] = STATE(3273), + [sym_unary_operator] = STATE(3273), + [sym_binary_operator] = STATE(3273), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3273), + [sym_call] = STATE(3273), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3273), + [sym_anonymous_function] = STATE(3273), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(2107), - [sym_integer] = ACTIONS(2107), - [sym_float] = ACTIONS(2107), - [sym_char] = ACTIONS(2107), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(2107), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [838] = { - [sym__expression] = STATE(1516), - [sym_block] = STATE(1516), - [sym__identifier] = STATE(14), - [sym_identifier] = STATE(14), - [sym_special_identifier] = STATE(14), - [sym_boolean] = STATE(1516), - [sym_nil] = STATE(1516), - [sym__atom] = STATE(1516), - [sym_quoted_atom] = STATE(1516), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(1516), - [sym_charlist] = STATE(1516), - [sym_sigil] = STATE(1516), - [sym_list] = STATE(1516), - [sym_tuple] = STATE(1516), - [sym_bitstring] = STATE(1516), - [sym_map] = STATE(1516), - [sym_unary_operator] = STATE(1516), - [sym_binary_operator] = STATE(1516), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(1516), - [sym_call] = STATE(1516), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(1516), - [sym_anonymous_function] = STATE(1516), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(197), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), [sym_alias] = ACTIONS(2479), [sym_integer] = ACTIONS(2479), [sym_float] = ACTIONS(2479), [sym_char] = ACTIONS(2479), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), [sym_atom] = ACTIONS(2479), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(222), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(230), - [anon_sym_PLUS] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_CARET] = ACTIONS(235), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(235), - [anon_sym_not] = ACTIONS(235), - [anon_sym_AT] = ACTIONS(237), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -131786,92 +132174,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), + [anon_sym_fn] = ACTIONS(1105), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(243), + [sym__before_unary_op] = ACTIONS(1107), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), + [sym__quoted_atom_start] = ACTIONS(1109), }, - [839] = { - [sym__expression] = STATE(3210), - [sym_block] = STATE(3210), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3210), - [sym_nil] = STATE(3210), - [sym__atom] = STATE(3210), - [sym_quoted_atom] = STATE(3210), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3210), - [sym_charlist] = STATE(3210), - [sym_sigil] = STATE(3210), - [sym_list] = STATE(3210), - [sym_tuple] = STATE(3210), - [sym_bitstring] = STATE(3210), - [sym_map] = STATE(3210), - [sym_unary_operator] = STATE(3210), - [sym_binary_operator] = STATE(3210), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3210), - [sym_call] = STATE(3210), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3210), - [sym_anonymous_function] = STATE(3210), + [837] = { + [sym__expression] = STATE(3333), + [sym_block] = STATE(3333), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3333), + [sym_nil] = STATE(3333), + [sym__atom] = STATE(3333), + [sym_quoted_atom] = STATE(3333), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3333), + [sym_charlist] = STATE(3333), + [sym_sigil] = STATE(3333), + [sym_list] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_bitstring] = STATE(3333), + [sym_map] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_binary_operator] = STATE(3333), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3333), + [sym_call] = STATE(3333), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3333), + [sym_anonymous_function] = STATE(3333), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), [sym_alias] = ACTIONS(2481), [sym_integer] = ACTIONS(2481), [sym_float] = ACTIONS(2481), [sym_char] = ACTIONS(2481), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), [sym_atom] = ACTIONS(2481), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -131911,92 +132299,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(1105), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), + [sym__before_unary_op] = ACTIONS(1107), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), + [sym__quoted_atom_start] = ACTIONS(1109), }, - [840] = { - [sym__expression] = STATE(1739), - [sym_block] = STATE(1739), - [sym__identifier] = STATE(25), - [sym_identifier] = STATE(25), - [sym_special_identifier] = STATE(25), - [sym_boolean] = STATE(1739), - [sym_nil] = STATE(1739), - [sym__atom] = STATE(1739), - [sym_quoted_atom] = STATE(1739), - [sym__quoted_i_double] = STATE(1551), - [sym__quoted_i_single] = STATE(1552), - [sym__quoted_i_heredoc_single] = STATE(1552), - [sym__quoted_i_heredoc_double] = STATE(1551), - [sym_string] = STATE(1739), - [sym_charlist] = STATE(1739), - [sym_sigil] = STATE(1739), - [sym_list] = STATE(1739), - [sym_tuple] = STATE(1739), - [sym_bitstring] = STATE(1739), - [sym_map] = STATE(1739), - [sym_unary_operator] = STATE(1739), - [sym_binary_operator] = STATE(1739), - [sym_operator_identifier] = STATE(4949), - [sym_dot] = STATE(1739), - [sym_call] = STATE(1739), - [sym__call_without_parentheses] = STATE(1564), - [sym__call_with_parentheses] = STATE(1587), - [sym__local_call_without_parentheses] = STATE(1581), - [sym__local_call_with_parentheses] = STATE(1260), - [sym__local_call_just_do_block] = STATE(1536), - [sym__remote_call_without_parentheses] = STATE(1534), - [sym__remote_call_with_parentheses] = STATE(1264), - [sym__remote_dot] = STATE(17), - [sym__anonymous_call] = STATE(1263), - [sym__anonymous_dot] = STATE(4880), - [sym__double_call] = STATE(1533), - [sym_access_call] = STATE(1739), - [sym_anonymous_function] = STATE(1739), + [838] = { + [sym__expression] = STATE(4012), + [sym_block] = STATE(4012), + [sym__identifier] = STATE(66), + [sym_identifier] = STATE(66), + [sym_special_identifier] = STATE(66), + [sym_boolean] = STATE(4012), + [sym_nil] = STATE(4012), + [sym__atom] = STATE(4012), + [sym_quoted_atom] = STATE(4012), + [sym__quoted_i_double] = STATE(4034), + [sym__quoted_i_single] = STATE(4021), + [sym__quoted_i_heredoc_single] = STATE(4077), + [sym__quoted_i_heredoc_double] = STATE(4083), + [sym_string] = STATE(4012), + [sym_charlist] = STATE(4012), + [sym_sigil] = STATE(4012), + [sym_list] = STATE(4012), + [sym_tuple] = STATE(4012), + [sym_bitstring] = STATE(4012), + [sym_map] = STATE(4012), + [sym_unary_operator] = STATE(4012), + [sym_binary_operator] = STATE(4012), + [sym_operator_identifier] = STATE(5580), + [sym_dot] = STATE(4012), + [sym_call] = STATE(4012), + [sym__call_without_parentheses] = STATE(4089), + [sym__call_with_parentheses] = STATE(4092), + [sym__local_call_without_parentheses] = STATE(4097), + [sym__local_call_with_parentheses] = STATE(3372), + [sym__local_call_just_do_block] = STATE(4098), + [sym__remote_call_without_parentheses] = STATE(4105), + [sym__remote_call_with_parentheses] = STATE(3374), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3375), + [sym__anonymous_dot] = STATE(5531), + [sym__double_call] = STATE(4106), + [sym_access_call] = STATE(4012), + [sym_anonymous_function] = STATE(4012), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1479), - [aux_sym_identifier_token1] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(69), - [anon_sym___MODULE__] = ACTIONS(71), - [anon_sym___DIR__] = ACTIONS(71), - [anon_sym___ENV__] = ACTIONS(71), - [anon_sym___CALLER__] = ACTIONS(71), - [anon_sym___STACKTRACE__] = ACTIONS(71), + [anon_sym_LPAREN] = ACTIONS(1133), + [aux_sym_identifier_token1] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1135), + [sym_unused_identifier] = ACTIONS(1137), + [anon_sym___MODULE__] = ACTIONS(1139), + [anon_sym___DIR__] = ACTIONS(1139), + [anon_sym___ENV__] = ACTIONS(1139), + [anon_sym___CALLER__] = ACTIONS(1139), + [anon_sym___STACKTRACE__] = ACTIONS(1139), [sym_alias] = ACTIONS(2483), [sym_integer] = ACTIONS(2483), [sym_float] = ACTIONS(2483), [sym_char] = ACTIONS(2483), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), + [anon_sym_true] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [anon_sym_nil] = ACTIONS(1145), [sym_atom] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1151), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1157), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(91), - [anon_sym_LT_LT] = ACTIONS(95), - [anon_sym_PERCENT] = ACTIONS(97), - [anon_sym_AMP] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), - [anon_sym_BANG] = ACTIONS(101), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), - [anon_sym_not] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(1159), + [anon_sym_LT_LT] = ACTIONS(1163), + [anon_sym_PERCENT] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_AT] = ACTIONS(1173), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -132036,92 +132424,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(1175), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(119), + [sym__before_unary_op] = ACTIONS(1177), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(121), + [sym__quoted_atom_start] = ACTIONS(1179), }, - [841] = { - [sym__expression] = STATE(1371), - [sym_block] = STATE(1371), - [sym__identifier] = STATE(18), - [sym_identifier] = STATE(18), - [sym_special_identifier] = STATE(18), - [sym_boolean] = STATE(1371), - [sym_nil] = STATE(1371), - [sym__atom] = STATE(1371), - [sym_quoted_atom] = STATE(1371), - [sym__quoted_i_double] = STATE(1259), - [sym__quoted_i_single] = STATE(1258), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(1371), - [sym_charlist] = STATE(1371), - [sym_sigil] = STATE(1371), - [sym_list] = STATE(1371), - [sym_tuple] = STATE(1371), - [sym_bitstring] = STATE(1371), - [sym_map] = STATE(1371), - [sym_unary_operator] = STATE(1371), - [sym_binary_operator] = STATE(1371), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(1371), - [sym_call] = STATE(1371), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(1371), - [sym_anonymous_function] = STATE(1371), + [839] = { + [sym__expression] = STATE(3199), + [sym_block] = STATE(3199), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3199), + [sym_nil] = STATE(3199), + [sym__atom] = STATE(3199), + [sym_quoted_atom] = STATE(3199), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3199), + [sym_charlist] = STATE(3199), + [sym_sigil] = STATE(3199), + [sym_list] = STATE(3199), + [sym_tuple] = STATE(3199), + [sym_bitstring] = STATE(3199), + [sym_map] = STATE(3199), + [sym_unary_operator] = STATE(3199), + [sym_binary_operator] = STATE(3199), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3199), + [sym_call] = STATE(3199), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3199), + [sym_anonymous_function] = STATE(3199), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(256), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), [sym_alias] = ACTIONS(2485), [sym_integer] = ACTIONS(2485), [sym_float] = ACTIONS(2485), [sym_char] = ACTIONS(2485), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), [sym_atom] = ACTIONS(2485), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(286), - [anon_sym_not] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -132161,92 +132549,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), + [anon_sym_fn] = ACTIONS(1105), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(294), + [sym__before_unary_op] = ACTIONS(1107), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), + [sym__quoted_atom_start] = ACTIONS(1109), }, - [842] = { - [sym__expression] = STATE(1924), - [sym_block] = STATE(1924), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(1924), - [sym_nil] = STATE(1924), - [sym__atom] = STATE(1924), - [sym_quoted_atom] = STATE(1924), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(1924), - [sym_charlist] = STATE(1924), - [sym_sigil] = STATE(1924), - [sym_list] = STATE(1924), - [sym_tuple] = STATE(1924), - [sym_bitstring] = STATE(1924), - [sym_map] = STATE(1924), - [sym_unary_operator] = STATE(1924), - [sym_binary_operator] = STATE(1924), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(1924), - [sym_call] = STATE(1924), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(1924), - [sym_anonymous_function] = STATE(1924), + [840] = { + [sym__expression] = STATE(3276), + [sym_block] = STATE(3276), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3276), + [sym_nil] = STATE(3276), + [sym__atom] = STATE(3276), + [sym_quoted_atom] = STATE(3276), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3276), + [sym_charlist] = STATE(3276), + [sym_sigil] = STATE(3276), + [sym_list] = STATE(3276), + [sym_tuple] = STATE(3276), + [sym_bitstring] = STATE(3276), + [sym_map] = STATE(3276), + [sym_unary_operator] = STATE(3276), + [sym_binary_operator] = STATE(3276), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3276), + [sym_call] = STATE(3276), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3276), + [sym_anonymous_function] = STATE(3276), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(944), - [anon_sym___MODULE__] = ACTIONS(71), - [anon_sym___DIR__] = ACTIONS(71), - [anon_sym___ENV__] = ACTIONS(71), - [anon_sym___CALLER__] = ACTIONS(71), - [anon_sym___STACKTRACE__] = ACTIONS(71), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), [sym_alias] = ACTIONS(2487), [sym_integer] = ACTIONS(2487), [sym_float] = ACTIONS(2487), [sym_char] = ACTIONS(2487), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), [sym_atom] = ACTIONS(2487), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(972), - [anon_sym_CARET] = ACTIONS(972), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), - [anon_sym_not] = ACTIONS(972), - [anon_sym_AT] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -132286,53 +132674,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(1105), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(980), + [sym__before_unary_op] = ACTIONS(1107), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), + [sym__quoted_atom_start] = ACTIONS(1109), }, - [843] = { - [sym__expression] = STATE(3537), - [sym_block] = STATE(3537), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3537), - [sym_nil] = STATE(3537), - [sym__atom] = STATE(3537), - [sym_quoted_atom] = STATE(3537), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3537), - [sym_charlist] = STATE(3537), - [sym_sigil] = STATE(3537), - [sym_list] = STATE(3537), - [sym_tuple] = STATE(3537), - [sym_bitstring] = STATE(3537), - [sym_map] = STATE(3537), - [sym_unary_operator] = STATE(3537), - [sym_binary_operator] = STATE(3537), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3537), - [sym_call] = STATE(3537), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3537), - [sym_anonymous_function] = STATE(3537), + [841] = { + [sym__expression] = STATE(3279), + [sym_block] = STATE(3279), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3279), + [sym_nil] = STATE(3279), + [sym__atom] = STATE(3279), + [sym_quoted_atom] = STATE(3279), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3279), + [sym_charlist] = STATE(3279), + [sym_sigil] = STATE(3279), + [sym_list] = STATE(3279), + [sym_tuple] = STATE(3279), + [sym_bitstring] = STATE(3279), + [sym_map] = STATE(3279), + [sym_unary_operator] = STATE(3279), + [sym_binary_operator] = STATE(3279), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3279), + [sym_call] = STATE(3279), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3279), + [sym_anonymous_function] = STATE(3279), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), [aux_sym_identifier_token1] = ACTIONS(826), @@ -132419,209 +132807,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(1109), }, - [844] = { - [sym__expression] = STATE(1641), - [sym_block] = STATE(1641), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(1641), - [sym_nil] = STATE(1641), - [sym__atom] = STATE(1641), - [sym_quoted_atom] = STATE(1641), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(1641), - [sym_charlist] = STATE(1641), - [sym_sigil] = STATE(1641), - [sym_list] = STATE(1641), - [sym_tuple] = STATE(1641), - [sym_bitstring] = STATE(1641), - [sym_map] = STATE(1641), - [sym_unary_operator] = STATE(1641), - [sym_binary_operator] = STATE(1641), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(1641), - [sym_call] = STATE(1641), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(1641), - [sym_anonymous_function] = STATE(1641), + [842] = { + [sym__expression] = STATE(3280), + [sym_block] = STATE(3280), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3280), + [sym_nil] = STATE(3280), + [sym__atom] = STATE(3280), + [sym_quoted_atom] = STATE(3280), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3280), + [sym_charlist] = STATE(3280), + [sym_sigil] = STATE(3280), + [sym_list] = STATE(3280), + [sym_tuple] = STATE(3280), + [sym_bitstring] = STATE(3280), + [sym_map] = STATE(3280), + [sym_unary_operator] = STATE(3280), + [sym_binary_operator] = STATE(3280), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3280), + [sym_call] = STATE(3280), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3280), + [sym_anonymous_function] = STATE(3280), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), - [sym_alias] = ACTIONS(2121), - [sym_integer] = ACTIONS(2121), - [sym_float] = ACTIONS(2121), - [sym_char] = ACTIONS(2121), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(2121), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [845] = { - [sym__expression] = STATE(3182), - [sym_block] = STATE(3182), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(3182), - [sym_nil] = STATE(3182), - [sym__atom] = STATE(3182), - [sym_quoted_atom] = STATE(3182), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3182), - [sym_charlist] = STATE(3182), - [sym_sigil] = STATE(3182), - [sym_list] = STATE(3182), - [sym_tuple] = STATE(3182), - [sym_bitstring] = STATE(3182), - [sym_map] = STATE(3182), - [sym_unary_operator] = STATE(3182), - [sym_binary_operator] = STATE(3182), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3182), - [sym_call] = STATE(3182), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3182), - [sym_anonymous_function] = STATE(3182), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), [sym_alias] = ACTIONS(2491), [sym_integer] = ACTIONS(2491), [sym_float] = ACTIONS(2491), [sym_char] = ACTIONS(2491), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), [sym_atom] = ACTIONS(2491), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -132661,53 +132924,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(1105), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), + [sym__before_unary_op] = ACTIONS(1107), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), + [sym__quoted_atom_start] = ACTIONS(1109), }, - [846] = { - [sym__expression] = STATE(3530), - [sym_block] = STATE(3530), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3530), - [sym_nil] = STATE(3530), - [sym__atom] = STATE(3530), - [sym_quoted_atom] = STATE(3530), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3530), - [sym_charlist] = STATE(3530), - [sym_sigil] = STATE(3530), - [sym_list] = STATE(3530), - [sym_tuple] = STATE(3530), - [sym_bitstring] = STATE(3530), - [sym_map] = STATE(3530), - [sym_unary_operator] = STATE(3530), - [sym_binary_operator] = STATE(3530), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3530), - [sym_call] = STATE(3530), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3530), - [sym_anonymous_function] = STATE(3530), + [843] = { + [sym__expression] = STATE(3281), + [sym_block] = STATE(3281), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3281), + [sym_nil] = STATE(3281), + [sym__atom] = STATE(3281), + [sym_quoted_atom] = STATE(3281), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3281), + [sym_charlist] = STATE(3281), + [sym_sigil] = STATE(3281), + [sym_list] = STATE(3281), + [sym_tuple] = STATE(3281), + [sym_bitstring] = STATE(3281), + [sym_map] = STATE(3281), + [sym_unary_operator] = STATE(3281), + [sym_binary_operator] = STATE(3281), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3281), + [sym_call] = STATE(3281), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3281), + [sym_anonymous_function] = STATE(3281), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1067), [aux_sym_identifier_token1] = ACTIONS(826), @@ -132794,84 +133057,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(1109), }, - [847] = { - [sym__expression] = STATE(1329), - [sym_block] = STATE(1329), - [sym__identifier] = STATE(18), - [sym_identifier] = STATE(18), - [sym_special_identifier] = STATE(18), - [sym_boolean] = STATE(1329), - [sym_nil] = STATE(1329), - [sym__atom] = STATE(1329), - [sym_quoted_atom] = STATE(1329), - [sym__quoted_i_double] = STATE(1259), - [sym__quoted_i_single] = STATE(1258), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(1329), - [sym_charlist] = STATE(1329), - [sym_sigil] = STATE(1329), - [sym_list] = STATE(1329), - [sym_tuple] = STATE(1329), - [sym_bitstring] = STATE(1329), - [sym_map] = STATE(1329), - [sym_unary_operator] = STATE(1329), - [sym_binary_operator] = STATE(1329), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(1329), - [sym_call] = STATE(1329), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(1329), - [sym_anonymous_function] = STATE(1329), + [844] = { + [sym__expression] = STATE(3282), + [sym_block] = STATE(3282), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3282), + [sym_nil] = STATE(3282), + [sym__atom] = STATE(3282), + [sym_quoted_atom] = STATE(3282), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3282), + [sym_charlist] = STATE(3282), + [sym_sigil] = STATE(3282), + [sym_list] = STATE(3282), + [sym_tuple] = STATE(3282), + [sym_bitstring] = STATE(3282), + [sym_map] = STATE(3282), + [sym_unary_operator] = STATE(3282), + [sym_binary_operator] = STATE(3282), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3282), + [sym_call] = STATE(3282), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3282), + [sym_anonymous_function] = STATE(3282), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(256), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), [sym_alias] = ACTIONS(2495), [sym_integer] = ACTIONS(2495), [sym_float] = ACTIONS(2495), [sym_char] = ACTIONS(2495), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), [sym_atom] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(286), - [anon_sym_not] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -132911,92 +133174,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), + [anon_sym_fn] = ACTIONS(1105), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(294), + [sym__before_unary_op] = ACTIONS(1107), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), + [sym__quoted_atom_start] = ACTIONS(1109), }, - [848] = { - [sym__expression] = STATE(1333), - [sym_block] = STATE(1333), - [sym__identifier] = STATE(18), - [sym_identifier] = STATE(18), - [sym_special_identifier] = STATE(18), - [sym_boolean] = STATE(1333), - [sym_nil] = STATE(1333), - [sym__atom] = STATE(1333), - [sym_quoted_atom] = STATE(1333), - [sym__quoted_i_double] = STATE(1259), - [sym__quoted_i_single] = STATE(1258), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(1333), - [sym_charlist] = STATE(1333), - [sym_sigil] = STATE(1333), - [sym_list] = STATE(1333), - [sym_tuple] = STATE(1333), - [sym_bitstring] = STATE(1333), - [sym_map] = STATE(1333), - [sym_unary_operator] = STATE(1333), - [sym_binary_operator] = STATE(1333), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(1333), - [sym_call] = STATE(1333), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(1333), - [sym_anonymous_function] = STATE(1333), + [845] = { + [sym__expression] = STATE(3283), + [sym_block] = STATE(3283), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3283), + [sym_nil] = STATE(3283), + [sym__atom] = STATE(3283), + [sym_quoted_atom] = STATE(3283), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3283), + [sym_charlist] = STATE(3283), + [sym_sigil] = STATE(3283), + [sym_list] = STATE(3283), + [sym_tuple] = STATE(3283), + [sym_bitstring] = STATE(3283), + [sym_map] = STATE(3283), + [sym_unary_operator] = STATE(3283), + [sym_binary_operator] = STATE(3283), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3283), + [sym_call] = STATE(3283), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3283), + [sym_anonymous_function] = STATE(3283), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(256), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), [sym_alias] = ACTIONS(2497), [sym_integer] = ACTIONS(2497), [sym_float] = ACTIONS(2497), [sym_char] = ACTIONS(2497), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), [sym_atom] = ACTIONS(2497), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(286), - [anon_sym_not] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -133036,92 +133299,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), + [anon_sym_fn] = ACTIONS(1105), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(294), + [sym__before_unary_op] = ACTIONS(1107), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), + [sym__quoted_atom_start] = ACTIONS(1109), }, - [849] = { - [sym__expression] = STATE(1336), - [sym_block] = STATE(1336), - [sym__identifier] = STATE(18), - [sym_identifier] = STATE(18), - [sym_special_identifier] = STATE(18), - [sym_boolean] = STATE(1336), - [sym_nil] = STATE(1336), - [sym__atom] = STATE(1336), - [sym_quoted_atom] = STATE(1336), - [sym__quoted_i_double] = STATE(1259), - [sym__quoted_i_single] = STATE(1258), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(1336), - [sym_charlist] = STATE(1336), - [sym_sigil] = STATE(1336), - [sym_list] = STATE(1336), - [sym_tuple] = STATE(1336), - [sym_bitstring] = STATE(1336), - [sym_map] = STATE(1336), - [sym_unary_operator] = STATE(1336), - [sym_binary_operator] = STATE(1336), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(1336), - [sym_call] = STATE(1336), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(1336), - [sym_anonymous_function] = STATE(1336), + [846] = { + [sym__expression] = STATE(3284), + [sym_block] = STATE(3284), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3284), + [sym_nil] = STATE(3284), + [sym__atom] = STATE(3284), + [sym_quoted_atom] = STATE(3284), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3284), + [sym_charlist] = STATE(3284), + [sym_sigil] = STATE(3284), + [sym_list] = STATE(3284), + [sym_tuple] = STATE(3284), + [sym_bitstring] = STATE(3284), + [sym_map] = STATE(3284), + [sym_unary_operator] = STATE(3284), + [sym_binary_operator] = STATE(3284), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3284), + [sym_call] = STATE(3284), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3284), + [sym_anonymous_function] = STATE(3284), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(256), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), [sym_alias] = ACTIONS(2499), [sym_integer] = ACTIONS(2499), [sym_float] = ACTIONS(2499), [sym_char] = ACTIONS(2499), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), [sym_atom] = ACTIONS(2499), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(286), - [anon_sym_not] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -133161,92 +133424,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), + [anon_sym_fn] = ACTIONS(1105), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(294), + [sym__before_unary_op] = ACTIONS(1107), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), + [sym__quoted_atom_start] = ACTIONS(1109), }, - [850] = { - [sym__expression] = STATE(1340), - [sym_block] = STATE(1340), - [sym__identifier] = STATE(18), - [sym_identifier] = STATE(18), - [sym_special_identifier] = STATE(18), - [sym_boolean] = STATE(1340), - [sym_nil] = STATE(1340), - [sym__atom] = STATE(1340), - [sym_quoted_atom] = STATE(1340), - [sym__quoted_i_double] = STATE(1259), - [sym__quoted_i_single] = STATE(1258), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(1340), - [sym_charlist] = STATE(1340), - [sym_sigil] = STATE(1340), - [sym_list] = STATE(1340), - [sym_tuple] = STATE(1340), - [sym_bitstring] = STATE(1340), - [sym_map] = STATE(1340), - [sym_unary_operator] = STATE(1340), - [sym_binary_operator] = STATE(1340), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(1340), - [sym_call] = STATE(1340), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(1340), - [sym_anonymous_function] = STATE(1340), + [847] = { + [sym__expression] = STATE(3285), + [sym_block] = STATE(3285), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3285), + [sym_nil] = STATE(3285), + [sym__atom] = STATE(3285), + [sym_quoted_atom] = STATE(3285), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3285), + [sym_charlist] = STATE(3285), + [sym_sigil] = STATE(3285), + [sym_list] = STATE(3285), + [sym_tuple] = STATE(3285), + [sym_bitstring] = STATE(3285), + [sym_map] = STATE(3285), + [sym_unary_operator] = STATE(3285), + [sym_binary_operator] = STATE(3285), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3285), + [sym_call] = STATE(3285), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3285), + [sym_anonymous_function] = STATE(3285), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(256), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), [sym_alias] = ACTIONS(2501), [sym_integer] = ACTIONS(2501), [sym_float] = ACTIONS(2501), [sym_char] = ACTIONS(2501), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), [sym_atom] = ACTIONS(2501), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(286), - [anon_sym_not] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -133286,217 +133549,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), + [anon_sym_fn] = ACTIONS(1105), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(294), + [sym__before_unary_op] = ACTIONS(1107), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), + [sym__quoted_atom_start] = ACTIONS(1109), }, - [851] = { - [sym__expression] = STATE(2113), - [sym_block] = STATE(2113), - [sym__identifier] = STATE(34), - [sym_identifier] = STATE(34), - [sym_special_identifier] = STATE(34), - [sym_boolean] = STATE(2113), - [sym_nil] = STATE(2113), - [sym__atom] = STATE(2113), - [sym_quoted_atom] = STATE(2113), - [sym__quoted_i_double] = STATE(1866), - [sym__quoted_i_single] = STATE(1867), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(2113), - [sym_charlist] = STATE(2113), - [sym_sigil] = STATE(2113), - [sym_list] = STATE(2113), - [sym_tuple] = STATE(2113), - [sym_bitstring] = STATE(2113), - [sym_map] = STATE(2113), - [sym_unary_operator] = STATE(2113), - [sym_binary_operator] = STATE(2113), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(2113), - [sym_call] = STATE(2113), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), + [848] = { + [sym__expression] = STATE(3287), + [sym_block] = STATE(3287), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3287), + [sym_nil] = STATE(3287), + [sym__atom] = STATE(3287), + [sym_quoted_atom] = STATE(3287), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3287), + [sym_charlist] = STATE(3287), + [sym_sigil] = STATE(3287), + [sym_list] = STATE(3287), + [sym_tuple] = STATE(3287), + [sym_bitstring] = STATE(3287), + [sym_map] = STATE(3287), + [sym_unary_operator] = STATE(3287), + [sym_binary_operator] = STATE(3287), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3287), + [sym_call] = STATE(3287), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), [sym__remote_dot] = STATE(36), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(2113), - [sym_anonymous_function] = STATE(2113), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3287), + [sym_anonymous_function] = STATE(3287), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(361), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(1451), - [sym_integer] = ACTIONS(1451), - [sym_float] = ACTIONS(1451), - [sym_char] = ACTIONS(1451), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), - [sym_atom] = ACTIONS(1451), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(396), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(396), - [anon_sym_not] = ACTIONS(396), - [anon_sym_AT] = ACTIONS(398), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(404), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), - }, - [852] = { - [sym__expression] = STATE(1341), - [sym_block] = STATE(1341), - [sym__identifier] = STATE(18), - [sym_identifier] = STATE(18), - [sym_special_identifier] = STATE(18), - [sym_boolean] = STATE(1341), - [sym_nil] = STATE(1341), - [sym__atom] = STATE(1341), - [sym_quoted_atom] = STATE(1341), - [sym__quoted_i_double] = STATE(1259), - [sym__quoted_i_single] = STATE(1258), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(1341), - [sym_charlist] = STATE(1341), - [sym_sigil] = STATE(1341), - [sym_list] = STATE(1341), - [sym_tuple] = STATE(1341), - [sym_bitstring] = STATE(1341), - [sym_map] = STATE(1341), - [sym_unary_operator] = STATE(1341), - [sym_binary_operator] = STATE(1341), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(1341), - [sym_call] = STATE(1341), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(1341), - [sym_anonymous_function] = STATE(1341), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(256), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), [sym_alias] = ACTIONS(2503), [sym_integer] = ACTIONS(2503), [sym_float] = ACTIONS(2503), [sym_char] = ACTIONS(2503), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), [sym_atom] = ACTIONS(2503), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(286), - [anon_sym_not] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -133536,92 +133674,342 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), + [anon_sym_fn] = ACTIONS(1105), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(294), + [sym__before_unary_op] = ACTIONS(1107), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), + [sym__quoted_atom_start] = ACTIONS(1109), }, - [853] = { - [sym__expression] = STATE(1343), - [sym_block] = STATE(1343), - [sym__identifier] = STATE(18), - [sym_identifier] = STATE(18), - [sym_special_identifier] = STATE(18), - [sym_boolean] = STATE(1343), - [sym_nil] = STATE(1343), - [sym__atom] = STATE(1343), - [sym_quoted_atom] = STATE(1343), - [sym__quoted_i_double] = STATE(1259), - [sym__quoted_i_single] = STATE(1258), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(1343), - [sym_charlist] = STATE(1343), - [sym_sigil] = STATE(1343), - [sym_list] = STATE(1343), - [sym_tuple] = STATE(1343), - [sym_bitstring] = STATE(1343), - [sym_map] = STATE(1343), - [sym_unary_operator] = STATE(1343), - [sym_binary_operator] = STATE(1343), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(1343), - [sym_call] = STATE(1343), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(1343), - [sym_anonymous_function] = STATE(1343), + [849] = { + [sym__expression] = STATE(3083), + [sym_block] = STATE(3083), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(3083), + [sym_nil] = STATE(3083), + [sym__atom] = STATE(3083), + [sym_quoted_atom] = STATE(3083), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(3083), + [sym_charlist] = STATE(3083), + [sym_sigil] = STATE(3083), + [sym_list] = STATE(3083), + [sym_tuple] = STATE(3083), + [sym_bitstring] = STATE(3083), + [sym_map] = STATE(3083), + [sym_unary_operator] = STATE(3083), + [sym_binary_operator] = STATE(3083), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(3083), + [sym_call] = STATE(3083), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(3083), + [sym_anonymous_function] = STATE(3083), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(256), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2301), + [sym_integer] = ACTIONS(2301), + [sym_float] = ACTIONS(2301), + [sym_char] = ACTIONS(2301), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(2301), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [850] = { + [sym__expression] = STATE(1446), + [sym_block] = STATE(1446), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(1446), + [sym_nil] = STATE(1446), + [sym__atom] = STATE(1446), + [sym_quoted_atom] = STATE(1446), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(1446), + [sym_charlist] = STATE(1446), + [sym_sigil] = STATE(1446), + [sym_list] = STATE(1446), + [sym_tuple] = STATE(1446), + [sym_bitstring] = STATE(1446), + [sym_map] = STATE(1446), + [sym_unary_operator] = STATE(1446), + [sym_binary_operator] = STATE(1446), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(1446), + [sym_call] = STATE(1446), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(1446), + [sym_anonymous_function] = STATE(1446), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(482), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), + [sym_alias] = ACTIONS(2369), + [sym_integer] = ACTIONS(2369), + [sym_float] = ACTIONS(2369), + [sym_char] = ACTIONS(2369), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2369), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(486), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(495), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_CARET] = ACTIONS(495), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(495), + [anon_sym_not] = ACTIONS(495), + [anon_sym_AT] = ACTIONS(497), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(499), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [851] = { + [sym__expression] = STATE(2911), + [sym_block] = STATE(2911), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(2911), + [sym_nil] = STATE(2911), + [sym__atom] = STATE(2911), + [sym_quoted_atom] = STATE(2911), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(2911), + [sym_charlist] = STATE(2911), + [sym_sigil] = STATE(2911), + [sym_list] = STATE(2911), + [sym_tuple] = STATE(2911), + [sym_bitstring] = STATE(2911), + [sym_map] = STATE(2911), + [sym_unary_operator] = STATE(2911), + [sym_binary_operator] = STATE(2911), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(2911), + [sym_call] = STATE(2911), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(2911), + [sym_anonymous_function] = STATE(2911), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(482), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), [sym_alias] = ACTIONS(2505), [sym_integer] = ACTIONS(2505), [sym_float] = ACTIONS(2505), [sym_char] = ACTIONS(2505), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), [sym_atom] = ACTIONS(2505), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(286), - [anon_sym_not] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), + [anon_sym_TILDE] = ACTIONS(486), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(495), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_CARET] = ACTIONS(495), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(495), + [anon_sym_not] = ACTIONS(495), + [anon_sym_AT] = ACTIONS(497), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -133661,92 +134049,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), + [anon_sym_fn] = ACTIONS(291), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(294), + [sym__before_unary_op] = ACTIONS(499), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), + [sym__quoted_atom_start] = ACTIONS(300), }, - [854] = { - [sym__expression] = STATE(1344), - [sym_block] = STATE(1344), - [sym__identifier] = STATE(18), - [sym_identifier] = STATE(18), - [sym_special_identifier] = STATE(18), - [sym_boolean] = STATE(1344), - [sym_nil] = STATE(1344), - [sym__atom] = STATE(1344), - [sym_quoted_atom] = STATE(1344), - [sym__quoted_i_double] = STATE(1259), - [sym__quoted_i_single] = STATE(1258), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(1344), - [sym_charlist] = STATE(1344), - [sym_sigil] = STATE(1344), - [sym_list] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_bitstring] = STATE(1344), - [sym_map] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_binary_operator] = STATE(1344), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(1344), - [sym_call] = STATE(1344), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(1344), - [sym_anonymous_function] = STATE(1344), + [852] = { + [sym__expression] = STATE(4059), + [sym_block] = STATE(4059), + [sym__identifier] = STATE(66), + [sym_identifier] = STATE(66), + [sym_special_identifier] = STATE(66), + [sym_boolean] = STATE(4059), + [sym_nil] = STATE(4059), + [sym__atom] = STATE(4059), + [sym_quoted_atom] = STATE(4059), + [sym__quoted_i_double] = STATE(4034), + [sym__quoted_i_single] = STATE(4021), + [sym__quoted_i_heredoc_single] = STATE(4077), + [sym__quoted_i_heredoc_double] = STATE(4083), + [sym_string] = STATE(4059), + [sym_charlist] = STATE(4059), + [sym_sigil] = STATE(4059), + [sym_list] = STATE(4059), + [sym_tuple] = STATE(4059), + [sym_bitstring] = STATE(4059), + [sym_map] = STATE(4059), + [sym_unary_operator] = STATE(4059), + [sym_binary_operator] = STATE(4059), + [sym_operator_identifier] = STATE(5580), + [sym_dot] = STATE(4059), + [sym_call] = STATE(4059), + [sym__call_without_parentheses] = STATE(4089), + [sym__call_with_parentheses] = STATE(4092), + [sym__local_call_without_parentheses] = STATE(4097), + [sym__local_call_with_parentheses] = STATE(3372), + [sym__local_call_just_do_block] = STATE(4098), + [sym__remote_call_without_parentheses] = STATE(4105), + [sym__remote_call_with_parentheses] = STATE(3374), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3375), + [sym__anonymous_dot] = STATE(5531), + [sym__double_call] = STATE(4106), + [sym_access_call] = STATE(4059), + [sym_anonymous_function] = STATE(4059), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(256), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(1133), + [aux_sym_identifier_token1] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1135), + [sym_unused_identifier] = ACTIONS(1137), + [anon_sym___MODULE__] = ACTIONS(1139), + [anon_sym___DIR__] = ACTIONS(1139), + [anon_sym___ENV__] = ACTIONS(1139), + [anon_sym___CALLER__] = ACTIONS(1139), + [anon_sym___STACKTRACE__] = ACTIONS(1139), [sym_alias] = ACTIONS(2507), [sym_integer] = ACTIONS(2507), [sym_float] = ACTIONS(2507), [sym_char] = ACTIONS(2507), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), + [anon_sym_true] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [anon_sym_nil] = ACTIONS(1145), [sym_atom] = ACTIONS(2507), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_DQUOTE] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1151), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1157), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(286), - [anon_sym_not] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), + [anon_sym_TILDE] = ACTIONS(1159), + [anon_sym_LT_LT] = ACTIONS(1163), + [anon_sym_PERCENT] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_AT] = ACTIONS(1173), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -133786,92 +134174,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), + [anon_sym_fn] = ACTIONS(1175), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(294), + [sym__before_unary_op] = ACTIONS(1177), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), + [sym__quoted_atom_start] = ACTIONS(1179), }, - [855] = { - [sym__expression] = STATE(1345), - [sym_block] = STATE(1345), - [sym__identifier] = STATE(18), - [sym_identifier] = STATE(18), - [sym_special_identifier] = STATE(18), - [sym_boolean] = STATE(1345), - [sym_nil] = STATE(1345), - [sym__atom] = STATE(1345), - [sym_quoted_atom] = STATE(1345), - [sym__quoted_i_double] = STATE(1259), - [sym__quoted_i_single] = STATE(1258), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(1345), - [sym_charlist] = STATE(1345), - [sym_sigil] = STATE(1345), - [sym_list] = STATE(1345), - [sym_tuple] = STATE(1345), - [sym_bitstring] = STATE(1345), - [sym_map] = STATE(1345), - [sym_unary_operator] = STATE(1345), - [sym_binary_operator] = STATE(1345), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(1345), - [sym_call] = STATE(1345), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(1345), - [sym_anonymous_function] = STATE(1345), + [853] = { + [sym__expression] = STATE(4132), + [sym_block] = STATE(4132), + [sym__identifier] = STATE(93), + [sym_identifier] = STATE(93), + [sym_special_identifier] = STATE(93), + [sym_boolean] = STATE(4132), + [sym_nil] = STATE(4132), + [sym__atom] = STATE(4132), + [sym_quoted_atom] = STATE(4132), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4132), + [sym_charlist] = STATE(4132), + [sym_sigil] = STATE(4132), + [sym_list] = STATE(4132), + [sym_tuple] = STATE(4132), + [sym_bitstring] = STATE(4132), + [sym_map] = STATE(4132), + [sym_unary_operator] = STATE(4132), + [sym_binary_operator] = STATE(4132), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4132), + [sym_call] = STATE(4132), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(72), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4132), + [sym_anonymous_function] = STATE(4132), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(256), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1499), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), [sym_alias] = ACTIONS(2509), [sym_integer] = ACTIONS(2509), [sym_float] = ACTIONS(2509), [sym_char] = ACTIONS(2509), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), [sym_atom] = ACTIONS(2509), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(286), - [anon_sym_not] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1507), + [anon_sym_not] = ACTIONS(1507), + [anon_sym_AT] = ACTIONS(1509), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -133911,217 +134299,217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), + [anon_sym_fn] = ACTIONS(1105), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(294), + [sym__before_unary_op] = ACTIONS(1511), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), + [sym__quoted_atom_start] = ACTIONS(1109), }, - [856] = { - [sym__expression] = STATE(1346), - [sym_block] = STATE(1346), - [sym__identifier] = STATE(18), - [sym_identifier] = STATE(18), - [sym_special_identifier] = STATE(18), - [sym_boolean] = STATE(1346), - [sym_nil] = STATE(1346), - [sym__atom] = STATE(1346), - [sym_quoted_atom] = STATE(1346), - [sym__quoted_i_double] = STATE(1259), - [sym__quoted_i_single] = STATE(1258), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(1346), - [sym_charlist] = STATE(1346), - [sym_sigil] = STATE(1346), - [sym_list] = STATE(1346), - [sym_tuple] = STATE(1346), - [sym_bitstring] = STATE(1346), - [sym_map] = STATE(1346), - [sym_unary_operator] = STATE(1346), - [sym_binary_operator] = STATE(1346), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(1346), - [sym_call] = STATE(1346), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(1346), - [sym_anonymous_function] = STATE(1346), + [854] = { + [sym__expression] = STATE(4064), + [sym_block] = STATE(4064), + [sym__identifier] = STATE(66), + [sym_identifier] = STATE(66), + [sym_special_identifier] = STATE(66), + [sym_boolean] = STATE(4064), + [sym_nil] = STATE(4064), + [sym__atom] = STATE(4064), + [sym_quoted_atom] = STATE(4064), + [sym__quoted_i_double] = STATE(4034), + [sym__quoted_i_single] = STATE(4021), + [sym__quoted_i_heredoc_single] = STATE(4077), + [sym__quoted_i_heredoc_double] = STATE(4083), + [sym_string] = STATE(4064), + [sym_charlist] = STATE(4064), + [sym_sigil] = STATE(4064), + [sym_list] = STATE(4064), + [sym_tuple] = STATE(4064), + [sym_bitstring] = STATE(4064), + [sym_map] = STATE(4064), + [sym_unary_operator] = STATE(4064), + [sym_binary_operator] = STATE(4064), + [sym_operator_identifier] = STATE(5580), + [sym_dot] = STATE(4064), + [sym_call] = STATE(4064), + [sym__call_without_parentheses] = STATE(4089), + [sym__call_with_parentheses] = STATE(4092), + [sym__local_call_without_parentheses] = STATE(4097), + [sym__local_call_with_parentheses] = STATE(3372), + [sym__local_call_just_do_block] = STATE(4098), + [sym__remote_call_without_parentheses] = STATE(4105), + [sym__remote_call_with_parentheses] = STATE(3374), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3375), + [sym__anonymous_dot] = STATE(5531), + [sym__double_call] = STATE(4106), + [sym_access_call] = STATE(4064), + [sym_anonymous_function] = STATE(4064), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), + [anon_sym_LPAREN] = ACTIONS(1133), + [aux_sym_identifier_token1] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1135), + [sym_unused_identifier] = ACTIONS(1137), + [anon_sym___MODULE__] = ACTIONS(1139), + [anon_sym___DIR__] = ACTIONS(1139), + [anon_sym___ENV__] = ACTIONS(1139), + [anon_sym___CALLER__] = ACTIONS(1139), + [anon_sym___STACKTRACE__] = ACTIONS(1139), + [sym_alias] = ACTIONS(2511), + [sym_integer] = ACTIONS(2511), + [sym_float] = ACTIONS(2511), + [sym_char] = ACTIONS(2511), + [anon_sym_true] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [anon_sym_nil] = ACTIONS(1145), + [sym_atom] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1151), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1157), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1159), + [anon_sym_LT_LT] = ACTIONS(1163), + [anon_sym_PERCENT] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_AT] = ACTIONS(1173), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1175), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1177), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1179), + }, + [855] = { + [sym__expression] = STATE(1577), + [sym_block] = STATE(1577), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1577), + [sym_nil] = STATE(1577), + [sym__atom] = STATE(1577), + [sym_quoted_atom] = STATE(1577), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(1577), + [sym_charlist] = STATE(1577), + [sym_sigil] = STATE(1577), + [sym_list] = STATE(1577), + [sym_tuple] = STATE(1577), + [sym_bitstring] = STATE(1577), + [sym_map] = STATE(1577), + [sym_unary_operator] = STATE(1577), + [sym_binary_operator] = STATE(1577), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(1577), + [sym_call] = STATE(1577), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(1577), + [sym_anonymous_function] = STATE(1577), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), [aux_sym_identifier_token1] = ACTIONS(195), [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(256), + [sym_unused_identifier] = ACTIONS(251), [anon_sym___MODULE__] = ACTIONS(199), [anon_sym___DIR__] = ACTIONS(199), [anon_sym___ENV__] = ACTIONS(199), [anon_sym___CALLER__] = ACTIONS(199), [anon_sym___STACKTRACE__] = ACTIONS(199), - [sym_alias] = ACTIONS(2511), - [sym_integer] = ACTIONS(2511), - [sym_float] = ACTIONS(2511), - [sym_char] = ACTIONS(2511), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(2511), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(286), - [anon_sym_not] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(294), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), - }, - [857] = { - [sym__expression] = STATE(3466), - [sym_block] = STATE(3466), - [sym__identifier] = STATE(72), - [sym_identifier] = STATE(72), - [sym_special_identifier] = STATE(72), - [sym_boolean] = STATE(3466), - [sym_nil] = STATE(3466), - [sym__atom] = STATE(3466), - [sym_quoted_atom] = STATE(3466), - [sym__quoted_i_double] = STATE(3516), - [sym__quoted_i_single] = STATE(3518), - [sym__quoted_i_heredoc_single] = STATE(3518), - [sym__quoted_i_heredoc_double] = STATE(3516), - [sym_string] = STATE(3466), - [sym_charlist] = STATE(3466), - [sym_sigil] = STATE(3466), - [sym_list] = STATE(3466), - [sym_tuple] = STATE(3466), - [sym_bitstring] = STATE(3466), - [sym_map] = STATE(3466), - [sym_unary_operator] = STATE(3466), - [sym_binary_operator] = STATE(3466), - [sym_operator_identifier] = STATE(4972), - [sym_dot] = STATE(3466), - [sym_call] = STATE(3466), - [sym__call_without_parentheses] = STATE(3517), - [sym__call_with_parentheses] = STATE(3515), - [sym__local_call_without_parentheses] = STATE(3511), - [sym__local_call_with_parentheses] = STATE(3073), - [sym__local_call_just_do_block] = STATE(3510), - [sym__remote_call_without_parentheses] = STATE(3514), - [sym__remote_call_with_parentheses] = STATE(3088), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(3095), - [sym__anonymous_dot] = STATE(4928), - [sym__double_call] = STATE(3499), - [sym_access_call] = STATE(3466), - [sym_anonymous_function] = STATE(3466), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1123), - [aux_sym_identifier_token1] = ACTIONS(1125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1125), - [sym_unused_identifier] = ACTIONS(1127), - [anon_sym___MODULE__] = ACTIONS(1129), - [anon_sym___DIR__] = ACTIONS(1129), - [anon_sym___ENV__] = ACTIONS(1129), - [anon_sym___CALLER__] = ACTIONS(1129), - [anon_sym___STACKTRACE__] = ACTIONS(1129), [sym_alias] = ACTIONS(2513), [sym_integer] = ACTIONS(2513), [sym_float] = ACTIONS(2513), [sym_char] = ACTIONS(2513), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_nil] = ACTIONS(1135), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), [sym_atom] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(1147), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1149), - [anon_sym_LT_LT] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1161), - [anon_sym_not] = ACTIONS(1161), - [anon_sym_AT] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -134161,92 +134549,217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1165), + [anon_sym_fn] = ACTIONS(291), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1167), + [sym__before_unary_op] = ACTIONS(295), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1169), + [sym__quoted_atom_start] = ACTIONS(300), }, - [858] = { - [sym__expression] = STATE(3465), - [sym_block] = STATE(3465), - [sym__identifier] = STATE(72), - [sym_identifier] = STATE(72), - [sym_special_identifier] = STATE(72), - [sym_boolean] = STATE(3465), - [sym_nil] = STATE(3465), - [sym__atom] = STATE(3465), - [sym_quoted_atom] = STATE(3465), - [sym__quoted_i_double] = STATE(3516), - [sym__quoted_i_single] = STATE(3518), - [sym__quoted_i_heredoc_single] = STATE(3518), - [sym__quoted_i_heredoc_double] = STATE(3516), - [sym_string] = STATE(3465), - [sym_charlist] = STATE(3465), - [sym_sigil] = STATE(3465), - [sym_list] = STATE(3465), - [sym_tuple] = STATE(3465), - [sym_bitstring] = STATE(3465), - [sym_map] = STATE(3465), - [sym_unary_operator] = STATE(3465), - [sym_binary_operator] = STATE(3465), - [sym_operator_identifier] = STATE(4972), - [sym_dot] = STATE(3465), - [sym_call] = STATE(3465), - [sym__call_without_parentheses] = STATE(3517), - [sym__call_with_parentheses] = STATE(3515), - [sym__local_call_without_parentheses] = STATE(3511), - [sym__local_call_with_parentheses] = STATE(3073), - [sym__local_call_just_do_block] = STATE(3510), - [sym__remote_call_without_parentheses] = STATE(3514), - [sym__remote_call_with_parentheses] = STATE(3088), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(3095), - [sym__anonymous_dot] = STATE(4928), - [sym__double_call] = STATE(3499), - [sym_access_call] = STATE(3465), - [sym_anonymous_function] = STATE(3465), + [856] = { + [sym__expression] = STATE(1506), + [sym_block] = STATE(1506), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(1506), + [sym_nil] = STATE(1506), + [sym__atom] = STATE(1506), + [sym_quoted_atom] = STATE(1506), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(1506), + [sym_charlist] = STATE(1506), + [sym_sigil] = STATE(1506), + [sym_list] = STATE(1506), + [sym_tuple] = STATE(1506), + [sym_bitstring] = STATE(1506), + [sym_map] = STATE(1506), + [sym_unary_operator] = STATE(1506), + [sym_binary_operator] = STATE(1506), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(1506), + [sym_call] = STATE(1506), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(1506), + [sym_anonymous_function] = STATE(1506), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1123), - [aux_sym_identifier_token1] = ACTIONS(1125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1125), - [sym_unused_identifier] = ACTIONS(1127), - [anon_sym___MODULE__] = ACTIONS(1129), - [anon_sym___DIR__] = ACTIONS(1129), - [anon_sym___ENV__] = ACTIONS(1129), - [anon_sym___CALLER__] = ACTIONS(1129), - [anon_sym___STACKTRACE__] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(482), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), + [sym_alias] = ACTIONS(2409), + [sym_integer] = ACTIONS(2409), + [sym_float] = ACTIONS(2409), + [sym_char] = ACTIONS(2409), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2409), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(486), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(495), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_CARET] = ACTIONS(495), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(495), + [anon_sym_not] = ACTIONS(495), + [anon_sym_AT] = ACTIONS(497), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(499), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [857] = { + [sym__expression] = STATE(4066), + [sym_block] = STATE(4066), + [sym__identifier] = STATE(66), + [sym_identifier] = STATE(66), + [sym_special_identifier] = STATE(66), + [sym_boolean] = STATE(4066), + [sym_nil] = STATE(4066), + [sym__atom] = STATE(4066), + [sym_quoted_atom] = STATE(4066), + [sym__quoted_i_double] = STATE(4034), + [sym__quoted_i_single] = STATE(4021), + [sym__quoted_i_heredoc_single] = STATE(4077), + [sym__quoted_i_heredoc_double] = STATE(4083), + [sym_string] = STATE(4066), + [sym_charlist] = STATE(4066), + [sym_sigil] = STATE(4066), + [sym_list] = STATE(4066), + [sym_tuple] = STATE(4066), + [sym_bitstring] = STATE(4066), + [sym_map] = STATE(4066), + [sym_unary_operator] = STATE(4066), + [sym_binary_operator] = STATE(4066), + [sym_operator_identifier] = STATE(5580), + [sym_dot] = STATE(4066), + [sym_call] = STATE(4066), + [sym__call_without_parentheses] = STATE(4089), + [sym__call_with_parentheses] = STATE(4092), + [sym__local_call_without_parentheses] = STATE(4097), + [sym__local_call_with_parentheses] = STATE(3372), + [sym__local_call_just_do_block] = STATE(4098), + [sym__remote_call_without_parentheses] = STATE(4105), + [sym__remote_call_with_parentheses] = STATE(3374), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3375), + [sym__anonymous_dot] = STATE(5531), + [sym__double_call] = STATE(4106), + [sym_access_call] = STATE(4066), + [sym_anonymous_function] = STATE(4066), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1133), + [aux_sym_identifier_token1] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1135), + [sym_unused_identifier] = ACTIONS(1137), + [anon_sym___MODULE__] = ACTIONS(1139), + [anon_sym___DIR__] = ACTIONS(1139), + [anon_sym___ENV__] = ACTIONS(1139), + [anon_sym___CALLER__] = ACTIONS(1139), + [anon_sym___STACKTRACE__] = ACTIONS(1139), [sym_alias] = ACTIONS(2515), [sym_integer] = ACTIONS(2515), [sym_float] = ACTIONS(2515), [sym_char] = ACTIONS(2515), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_nil] = ACTIONS(1135), + [anon_sym_true] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [anon_sym_nil] = ACTIONS(1145), [sym_atom] = ACTIONS(2515), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(1147), + [anon_sym_DQUOTE] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1151), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1157), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1149), - [anon_sym_LT_LT] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1161), - [anon_sym_not] = ACTIONS(1161), - [anon_sym_AT] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1159), + [anon_sym_LT_LT] = ACTIONS(1163), + [anon_sym_PERCENT] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_AT] = ACTIONS(1173), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -134286,71 +134799,3071 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1165), + [anon_sym_fn] = ACTIONS(1175), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1167), + [sym__before_unary_op] = ACTIONS(1177), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1169), + [sym__quoted_atom_start] = ACTIONS(1179), }, - [859] = { - [sym__expression] = STATE(2433), - [sym_block] = STATE(2433), - [sym__identifier] = STATE(58), - [sym_identifier] = STATE(58), - [sym_special_identifier] = STATE(58), - [sym_boolean] = STATE(2433), - [sym_nil] = STATE(2433), - [sym__atom] = STATE(2433), - [sym_quoted_atom] = STATE(2433), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2433), - [sym_charlist] = STATE(2433), - [sym_sigil] = STATE(2433), - [sym_list] = STATE(2433), - [sym_tuple] = STATE(2433), - [sym_bitstring] = STATE(2433), - [sym_map] = STATE(2433), - [sym_unary_operator] = STATE(2433), - [sym_binary_operator] = STATE(2433), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2433), - [sym_call] = STATE(2433), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(2433), - [sym_anonymous_function] = STATE(2433), + [858] = { + [sym__expression] = STATE(4091), + [sym_block] = STATE(4091), + [sym__identifier] = STATE(66), + [sym_identifier] = STATE(66), + [sym_special_identifier] = STATE(66), + [sym_boolean] = STATE(4091), + [sym_nil] = STATE(4091), + [sym__atom] = STATE(4091), + [sym_quoted_atom] = STATE(4091), + [sym__quoted_i_double] = STATE(4034), + [sym__quoted_i_single] = STATE(4021), + [sym__quoted_i_heredoc_single] = STATE(4077), + [sym__quoted_i_heredoc_double] = STATE(4083), + [sym_string] = STATE(4091), + [sym_charlist] = STATE(4091), + [sym_sigil] = STATE(4091), + [sym_list] = STATE(4091), + [sym_tuple] = STATE(4091), + [sym_bitstring] = STATE(4091), + [sym_map] = STATE(4091), + [sym_unary_operator] = STATE(4091), + [sym_binary_operator] = STATE(4091), + [sym_operator_identifier] = STATE(5580), + [sym_dot] = STATE(4091), + [sym_call] = STATE(4091), + [sym__call_without_parentheses] = STATE(4089), + [sym__call_with_parentheses] = STATE(4092), + [sym__local_call_without_parentheses] = STATE(4097), + [sym__local_call_with_parentheses] = STATE(3372), + [sym__local_call_just_do_block] = STATE(4098), + [sym__remote_call_without_parentheses] = STATE(4105), + [sym__remote_call_with_parentheses] = STATE(3374), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3375), + [sym__anonymous_dot] = STATE(5531), + [sym__double_call] = STATE(4106), + [sym_access_call] = STATE(4091), + [sym_anonymous_function] = STATE(4091), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(704), - [sym_unused_identifier] = ACTIONS(1413), - [anon_sym___MODULE__] = ACTIONS(708), - [anon_sym___DIR__] = ACTIONS(708), - [anon_sym___ENV__] = ACTIONS(708), - [anon_sym___CALLER__] = ACTIONS(708), - [anon_sym___STACKTRACE__] = ACTIONS(708), + [anon_sym_LPAREN] = ACTIONS(1133), + [aux_sym_identifier_token1] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1135), + [sym_unused_identifier] = ACTIONS(1137), + [anon_sym___MODULE__] = ACTIONS(1139), + [anon_sym___DIR__] = ACTIONS(1139), + [anon_sym___ENV__] = ACTIONS(1139), + [anon_sym___CALLER__] = ACTIONS(1139), + [anon_sym___STACKTRACE__] = ACTIONS(1139), [sym_alias] = ACTIONS(2517), [sym_integer] = ACTIONS(2517), [sym_float] = ACTIONS(2517), [sym_char] = ACTIONS(2517), + [anon_sym_true] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [anon_sym_nil] = ACTIONS(1145), + [sym_atom] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1151), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1157), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1159), + [anon_sym_LT_LT] = ACTIONS(1163), + [anon_sym_PERCENT] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_AT] = ACTIONS(1173), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1175), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1177), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1179), + }, + [859] = { + [sym__expression] = STATE(1446), + [sym_block] = STATE(1446), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1446), + [sym_nil] = STATE(1446), + [sym__atom] = STATE(1446), + [sym_quoted_atom] = STATE(1446), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(1446), + [sym_charlist] = STATE(1446), + [sym_sigil] = STATE(1446), + [sym_list] = STATE(1446), + [sym_tuple] = STATE(1446), + [sym_bitstring] = STATE(1446), + [sym_map] = STATE(1446), + [sym_unary_operator] = STATE(1446), + [sym_binary_operator] = STATE(1446), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(1446), + [sym_call] = STATE(1446), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(1446), + [sym_anonymous_function] = STATE(1446), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2369), + [sym_integer] = ACTIONS(2369), + [sym_float] = ACTIONS(2369), + [sym_char] = ACTIONS(2369), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2369), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [860] = { + [sym__expression] = STATE(4095), + [sym_block] = STATE(4095), + [sym__identifier] = STATE(66), + [sym_identifier] = STATE(66), + [sym_special_identifier] = STATE(66), + [sym_boolean] = STATE(4095), + [sym_nil] = STATE(4095), + [sym__atom] = STATE(4095), + [sym_quoted_atom] = STATE(4095), + [sym__quoted_i_double] = STATE(4034), + [sym__quoted_i_single] = STATE(4021), + [sym__quoted_i_heredoc_single] = STATE(4077), + [sym__quoted_i_heredoc_double] = STATE(4083), + [sym_string] = STATE(4095), + [sym_charlist] = STATE(4095), + [sym_sigil] = STATE(4095), + [sym_list] = STATE(4095), + [sym_tuple] = STATE(4095), + [sym_bitstring] = STATE(4095), + [sym_map] = STATE(4095), + [sym_unary_operator] = STATE(4095), + [sym_binary_operator] = STATE(4095), + [sym_operator_identifier] = STATE(5580), + [sym_dot] = STATE(4095), + [sym_call] = STATE(4095), + [sym__call_without_parentheses] = STATE(4089), + [sym__call_with_parentheses] = STATE(4092), + [sym__local_call_without_parentheses] = STATE(4097), + [sym__local_call_with_parentheses] = STATE(3372), + [sym__local_call_just_do_block] = STATE(4098), + [sym__remote_call_without_parentheses] = STATE(4105), + [sym__remote_call_with_parentheses] = STATE(3374), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3375), + [sym__anonymous_dot] = STATE(5531), + [sym__double_call] = STATE(4106), + [sym_access_call] = STATE(4095), + [sym_anonymous_function] = STATE(4095), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1133), + [aux_sym_identifier_token1] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1135), + [sym_unused_identifier] = ACTIONS(1137), + [anon_sym___MODULE__] = ACTIONS(1139), + [anon_sym___DIR__] = ACTIONS(1139), + [anon_sym___ENV__] = ACTIONS(1139), + [anon_sym___CALLER__] = ACTIONS(1139), + [anon_sym___STACKTRACE__] = ACTIONS(1139), + [sym_alias] = ACTIONS(2519), + [sym_integer] = ACTIONS(2519), + [sym_float] = ACTIONS(2519), + [sym_char] = ACTIONS(2519), + [anon_sym_true] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [anon_sym_nil] = ACTIONS(1145), + [sym_atom] = ACTIONS(2519), + [anon_sym_DQUOTE] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1151), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1157), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1159), + [anon_sym_LT_LT] = ACTIONS(1163), + [anon_sym_PERCENT] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_AT] = ACTIONS(1173), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1175), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1177), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1179), + }, + [861] = { + [sym__expression] = STATE(2637), + [sym_block] = STATE(2637), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2637), + [sym_nil] = STATE(2637), + [sym__atom] = STATE(2637), + [sym_quoted_atom] = STATE(2637), + [sym__quoted_i_double] = STATE(1250), + [sym__quoted_i_single] = STATE(1249), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(2637), + [sym_charlist] = STATE(2637), + [sym_sigil] = STATE(2637), + [sym_list] = STATE(2637), + [sym_tuple] = STATE(2637), + [sym_bitstring] = STATE(2637), + [sym_map] = STATE(2637), + [sym_unary_operator] = STATE(2637), + [sym_binary_operator] = STATE(2637), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(2637), + [sym_call] = STATE(2637), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(2637), + [sym_anonymous_function] = STATE(2637), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(461), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), + [sym_alias] = ACTIONS(1335), + [sym_integer] = ACTIONS(1335), + [sym_float] = ACTIONS(1335), + [sym_char] = ACTIONS(1335), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(1335), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(476), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_CARET] = ACTIONS(476), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(476), + [anon_sym_not] = ACTIONS(476), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(480), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [862] = { + [sym__expression] = STATE(1623), + [sym_block] = STATE(1623), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1623), + [sym_nil] = STATE(1623), + [sym__atom] = STATE(1623), + [sym_quoted_atom] = STATE(1623), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(1623), + [sym_charlist] = STATE(1623), + [sym_sigil] = STATE(1623), + [sym_list] = STATE(1623), + [sym_tuple] = STATE(1623), + [sym_bitstring] = STATE(1623), + [sym_map] = STATE(1623), + [sym_unary_operator] = STATE(1623), + [sym_binary_operator] = STATE(1623), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(1623), + [sym_call] = STATE(1623), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(1623), + [sym_anonymous_function] = STATE(1623), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2521), + [sym_integer] = ACTIONS(2521), + [sym_float] = ACTIONS(2521), + [sym_char] = ACTIONS(2521), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2521), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [863] = { + [sym__expression] = STATE(1697), + [sym_block] = STATE(1697), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1697), + [sym_nil] = STATE(1697), + [sym__atom] = STATE(1697), + [sym_quoted_atom] = STATE(1697), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(1697), + [sym_charlist] = STATE(1697), + [sym_sigil] = STATE(1697), + [sym_list] = STATE(1697), + [sym_tuple] = STATE(1697), + [sym_bitstring] = STATE(1697), + [sym_map] = STATE(1697), + [sym_unary_operator] = STATE(1697), + [sym_binary_operator] = STATE(1697), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(1697), + [sym_call] = STATE(1697), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(1697), + [sym_anonymous_function] = STATE(1697), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2523), + [sym_integer] = ACTIONS(2523), + [sym_float] = ACTIONS(2523), + [sym_char] = ACTIONS(2523), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2523), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [864] = { + [sym__expression] = STATE(2748), + [sym_block] = STATE(2748), + [sym__identifier] = STATE(56), + [sym_identifier] = STATE(56), + [sym_special_identifier] = STATE(56), + [sym_boolean] = STATE(2748), + [sym_nil] = STATE(2748), + [sym__atom] = STATE(2748), + [sym_quoted_atom] = STATE(2748), + [sym__quoted_i_double] = STATE(2913), + [sym__quoted_i_single] = STATE(2912), + [sym__quoted_i_heredoc_single] = STATE(2910), + [sym__quoted_i_heredoc_double] = STATE(2805), + [sym_string] = STATE(2748), + [sym_charlist] = STATE(2748), + [sym_sigil] = STATE(2748), + [sym_list] = STATE(2748), + [sym_tuple] = STATE(2748), + [sym_bitstring] = STATE(2748), + [sym_map] = STATE(2748), + [sym_unary_operator] = STATE(2748), + [sym_binary_operator] = STATE(2748), + [sym_operator_identifier] = STATE(5636), + [sym_dot] = STATE(2748), + [sym_call] = STATE(2748), + [sym__call_without_parentheses] = STATE(2883), + [sym__call_with_parentheses] = STATE(2876), + [sym__local_call_without_parentheses] = STATE(2870), + [sym__local_call_with_parentheses] = STATE(2037), + [sym__local_call_just_do_block] = STATE(2853), + [sym__remote_call_without_parentheses] = STATE(2846), + [sym__remote_call_with_parentheses] = STATE(2038), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2051), + [sym__anonymous_dot] = STATE(5534), + [sym__double_call] = STATE(2836), + [sym_access_call] = STATE(2748), + [sym_anonymous_function] = STATE(2748), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(2525), + [sym_integer] = ACTIONS(2525), + [sym_float] = ACTIONS(2525), + [sym_char] = ACTIONS(2525), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(2525), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [865] = { + [sym__expression] = STATE(4136), + [sym_block] = STATE(4136), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(4136), + [sym_nil] = STATE(4136), + [sym__atom] = STATE(4136), + [sym_quoted_atom] = STATE(4136), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4136), + [sym_charlist] = STATE(4136), + [sym_sigil] = STATE(4136), + [sym_list] = STATE(4136), + [sym_tuple] = STATE(4136), + [sym_bitstring] = STATE(4136), + [sym_map] = STATE(4136), + [sym_unary_operator] = STATE(4136), + [sym_binary_operator] = STATE(4136), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4136), + [sym_call] = STATE(4136), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4136), + [sym_anonymous_function] = STATE(4136), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2527), + [sym_integer] = ACTIONS(2527), + [sym_float] = ACTIONS(2527), + [sym_char] = ACTIONS(2527), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(2527), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [866] = { + [sym__expression] = STATE(1678), + [sym_block] = STATE(1678), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1678), + [sym_nil] = STATE(1678), + [sym__atom] = STATE(1678), + [sym_quoted_atom] = STATE(1678), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(1678), + [sym_charlist] = STATE(1678), + [sym_sigil] = STATE(1678), + [sym_list] = STATE(1678), + [sym_tuple] = STATE(1678), + [sym_bitstring] = STATE(1678), + [sym_map] = STATE(1678), + [sym_unary_operator] = STATE(1678), + [sym_binary_operator] = STATE(1678), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(1678), + [sym_call] = STATE(1678), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(1678), + [sym_anonymous_function] = STATE(1678), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2529), + [sym_integer] = ACTIONS(2529), + [sym_float] = ACTIONS(2529), + [sym_char] = ACTIONS(2529), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [867] = { + [sym__expression] = STATE(4081), + [sym_block] = STATE(4081), + [sym__identifier] = STATE(66), + [sym_identifier] = STATE(66), + [sym_special_identifier] = STATE(66), + [sym_boolean] = STATE(4081), + [sym_nil] = STATE(4081), + [sym__atom] = STATE(4081), + [sym_quoted_atom] = STATE(4081), + [sym__quoted_i_double] = STATE(4034), + [sym__quoted_i_single] = STATE(4021), + [sym__quoted_i_heredoc_single] = STATE(4077), + [sym__quoted_i_heredoc_double] = STATE(4083), + [sym_string] = STATE(4081), + [sym_charlist] = STATE(4081), + [sym_sigil] = STATE(4081), + [sym_list] = STATE(4081), + [sym_tuple] = STATE(4081), + [sym_bitstring] = STATE(4081), + [sym_map] = STATE(4081), + [sym_unary_operator] = STATE(4081), + [sym_binary_operator] = STATE(4081), + [sym_operator_identifier] = STATE(5580), + [sym_dot] = STATE(4081), + [sym_call] = STATE(4081), + [sym__call_without_parentheses] = STATE(4089), + [sym__call_with_parentheses] = STATE(4092), + [sym__local_call_without_parentheses] = STATE(4097), + [sym__local_call_with_parentheses] = STATE(3372), + [sym__local_call_just_do_block] = STATE(4098), + [sym__remote_call_without_parentheses] = STATE(4105), + [sym__remote_call_with_parentheses] = STATE(3374), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3375), + [sym__anonymous_dot] = STATE(5531), + [sym__double_call] = STATE(4106), + [sym_access_call] = STATE(4081), + [sym_anonymous_function] = STATE(4081), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1133), + [aux_sym_identifier_token1] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1135), + [sym_unused_identifier] = ACTIONS(1137), + [anon_sym___MODULE__] = ACTIONS(1139), + [anon_sym___DIR__] = ACTIONS(1139), + [anon_sym___ENV__] = ACTIONS(1139), + [anon_sym___CALLER__] = ACTIONS(1139), + [anon_sym___STACKTRACE__] = ACTIONS(1139), + [sym_alias] = ACTIONS(2531), + [sym_integer] = ACTIONS(2531), + [sym_float] = ACTIONS(2531), + [sym_char] = ACTIONS(2531), + [anon_sym_true] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [anon_sym_nil] = ACTIONS(1145), + [sym_atom] = ACTIONS(2531), + [anon_sym_DQUOTE] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1151), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1157), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1159), + [anon_sym_LT_LT] = ACTIONS(1163), + [anon_sym_PERCENT] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_AT] = ACTIONS(1173), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1175), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1177), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1179), + }, + [868] = { + [sym__expression] = STATE(4070), + [sym_block] = STATE(4070), + [sym__identifier] = STATE(66), + [sym_identifier] = STATE(66), + [sym_special_identifier] = STATE(66), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym__atom] = STATE(4070), + [sym_quoted_atom] = STATE(4070), + [sym__quoted_i_double] = STATE(4034), + [sym__quoted_i_single] = STATE(4021), + [sym__quoted_i_heredoc_single] = STATE(4077), + [sym__quoted_i_heredoc_double] = STATE(4083), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(5580), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym__call_without_parentheses] = STATE(4089), + [sym__call_with_parentheses] = STATE(4092), + [sym__local_call_without_parentheses] = STATE(4097), + [sym__local_call_with_parentheses] = STATE(3372), + [sym__local_call_just_do_block] = STATE(4098), + [sym__remote_call_without_parentheses] = STATE(4105), + [sym__remote_call_with_parentheses] = STATE(3374), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3375), + [sym__anonymous_dot] = STATE(5531), + [sym__double_call] = STATE(4106), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1133), + [aux_sym_identifier_token1] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1135), + [sym_unused_identifier] = ACTIONS(1137), + [anon_sym___MODULE__] = ACTIONS(1139), + [anon_sym___DIR__] = ACTIONS(1139), + [anon_sym___ENV__] = ACTIONS(1139), + [anon_sym___CALLER__] = ACTIONS(1139), + [anon_sym___STACKTRACE__] = ACTIONS(1139), + [sym_alias] = ACTIONS(2533), + [sym_integer] = ACTIONS(2533), + [sym_float] = ACTIONS(2533), + [sym_char] = ACTIONS(2533), + [anon_sym_true] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [anon_sym_nil] = ACTIONS(1145), + [sym_atom] = ACTIONS(2533), + [anon_sym_DQUOTE] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1151), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1157), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1159), + [anon_sym_LT_LT] = ACTIONS(1163), + [anon_sym_PERCENT] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_AT] = ACTIONS(1173), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1175), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1177), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1179), + }, + [869] = { + [sym__expression] = STATE(1654), + [sym_block] = STATE(1654), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1654), + [sym_nil] = STATE(1654), + [sym__atom] = STATE(1654), + [sym_quoted_atom] = STATE(1654), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(1654), + [sym_charlist] = STATE(1654), + [sym_sigil] = STATE(1654), + [sym_list] = STATE(1654), + [sym_tuple] = STATE(1654), + [sym_bitstring] = STATE(1654), + [sym_map] = STATE(1654), + [sym_unary_operator] = STATE(1654), + [sym_binary_operator] = STATE(1654), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(1654), + [sym_call] = STATE(1654), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(1654), + [sym_anonymous_function] = STATE(1654), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2535), + [sym_integer] = ACTIONS(2535), + [sym_float] = ACTIONS(2535), + [sym_char] = ACTIONS(2535), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2535), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [870] = { + [sym__expression] = STATE(1707), + [sym_block] = STATE(1707), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1707), + [sym_nil] = STATE(1707), + [sym__atom] = STATE(1707), + [sym_quoted_atom] = STATE(1707), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(1707), + [sym_charlist] = STATE(1707), + [sym_sigil] = STATE(1707), + [sym_list] = STATE(1707), + [sym_tuple] = STATE(1707), + [sym_bitstring] = STATE(1707), + [sym_map] = STATE(1707), + [sym_unary_operator] = STATE(1707), + [sym_binary_operator] = STATE(1707), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(1707), + [sym_call] = STATE(1707), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(1707), + [sym_anonymous_function] = STATE(1707), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2537), + [sym_integer] = ACTIONS(2537), + [sym_float] = ACTIONS(2537), + [sym_char] = ACTIONS(2537), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2537), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [871] = { + [sym__expression] = STATE(1527), + [sym_block] = STATE(1527), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1527), + [sym_nil] = STATE(1527), + [sym__atom] = STATE(1527), + [sym_quoted_atom] = STATE(1527), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(1527), + [sym_charlist] = STATE(1527), + [sym_sigil] = STATE(1527), + [sym_list] = STATE(1527), + [sym_tuple] = STATE(1527), + [sym_bitstring] = STATE(1527), + [sym_map] = STATE(1527), + [sym_unary_operator] = STATE(1527), + [sym_binary_operator] = STATE(1527), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(1527), + [sym_call] = STATE(1527), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(1527), + [sym_anonymous_function] = STATE(1527), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2539), + [sym_integer] = ACTIONS(2539), + [sym_float] = ACTIONS(2539), + [sym_char] = ACTIONS(2539), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2539), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [872] = { + [sym__expression] = STATE(1651), + [sym_block] = STATE(1651), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1651), + [sym_nil] = STATE(1651), + [sym__atom] = STATE(1651), + [sym_quoted_atom] = STATE(1651), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(1651), + [sym_charlist] = STATE(1651), + [sym_sigil] = STATE(1651), + [sym_list] = STATE(1651), + [sym_tuple] = STATE(1651), + [sym_bitstring] = STATE(1651), + [sym_map] = STATE(1651), + [sym_unary_operator] = STATE(1651), + [sym_binary_operator] = STATE(1651), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(1651), + [sym_call] = STATE(1651), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(1651), + [sym_anonymous_function] = STATE(1651), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2541), + [sym_integer] = ACTIONS(2541), + [sym_float] = ACTIONS(2541), + [sym_char] = ACTIONS(2541), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2541), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [873] = { + [sym__expression] = STATE(2667), + [sym_block] = STATE(2667), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2667), + [sym_nil] = STATE(2667), + [sym__atom] = STATE(2667), + [sym_quoted_atom] = STATE(2667), + [sym__quoted_i_double] = STATE(1250), + [sym__quoted_i_single] = STATE(1249), + [sym__quoted_i_heredoc_single] = STATE(1246), + [sym__quoted_i_heredoc_double] = STATE(1245), + [sym_string] = STATE(2667), + [sym_charlist] = STATE(2667), + [sym_sigil] = STATE(2667), + [sym_list] = STATE(2667), + [sym_tuple] = STATE(2667), + [sym_bitstring] = STATE(2667), + [sym_map] = STATE(2667), + [sym_unary_operator] = STATE(2667), + [sym_binary_operator] = STATE(2667), + [sym_operator_identifier] = STATE(5612), + [sym_dot] = STATE(2667), + [sym_call] = STATE(2667), + [sym__call_without_parentheses] = STATE(1244), + [sym__call_with_parentheses] = STATE(1243), + [sym__local_call_without_parentheses] = STATE(1242), + [sym__local_call_with_parentheses] = STATE(1084), + [sym__local_call_just_do_block] = STATE(1240), + [sym__remote_call_without_parentheses] = STATE(1239), + [sym__remote_call_with_parentheses] = STATE(1090), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1086), + [sym__anonymous_dot] = STATE(5507), + [sym__double_call] = STATE(1235), + [sym_access_call] = STATE(2667), + [sym_anonymous_function] = STATE(2667), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(461), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), + [sym_alias] = ACTIONS(2543), + [sym_integer] = ACTIONS(2543), + [sym_float] = ACTIONS(2543), + [sym_char] = ACTIONS(2543), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2543), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(476), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_CARET] = ACTIONS(476), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(476), + [anon_sym_not] = ACTIONS(476), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(480), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [874] = { + [sym__expression] = STATE(1619), + [sym_block] = STATE(1619), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1619), + [sym_nil] = STATE(1619), + [sym__atom] = STATE(1619), + [sym_quoted_atom] = STATE(1619), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(1619), + [sym_charlist] = STATE(1619), + [sym_sigil] = STATE(1619), + [sym_list] = STATE(1619), + [sym_tuple] = STATE(1619), + [sym_bitstring] = STATE(1619), + [sym_map] = STATE(1619), + [sym_unary_operator] = STATE(1619), + [sym_binary_operator] = STATE(1619), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(1619), + [sym_call] = STATE(1619), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(1619), + [sym_anonymous_function] = STATE(1619), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2545), + [sym_integer] = ACTIONS(2545), + [sym_float] = ACTIONS(2545), + [sym_char] = ACTIONS(2545), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2545), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [875] = { + [sym__expression] = STATE(1603), + [sym_block] = STATE(1603), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1603), + [sym_nil] = STATE(1603), + [sym__atom] = STATE(1603), + [sym_quoted_atom] = STATE(1603), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(1603), + [sym_charlist] = STATE(1603), + [sym_sigil] = STATE(1603), + [sym_list] = STATE(1603), + [sym_tuple] = STATE(1603), + [sym_bitstring] = STATE(1603), + [sym_map] = STATE(1603), + [sym_unary_operator] = STATE(1603), + [sym_binary_operator] = STATE(1603), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(1603), + [sym_call] = STATE(1603), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(1603), + [sym_anonymous_function] = STATE(1603), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2547), + [sym_integer] = ACTIONS(2547), + [sym_float] = ACTIONS(2547), + [sym_char] = ACTIONS(2547), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2547), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [876] = { + [sym__expression] = STATE(1597), + [sym_block] = STATE(1597), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1597), + [sym_nil] = STATE(1597), + [sym__atom] = STATE(1597), + [sym_quoted_atom] = STATE(1597), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(1597), + [sym_charlist] = STATE(1597), + [sym_sigil] = STATE(1597), + [sym_list] = STATE(1597), + [sym_tuple] = STATE(1597), + [sym_bitstring] = STATE(1597), + [sym_map] = STATE(1597), + [sym_unary_operator] = STATE(1597), + [sym_binary_operator] = STATE(1597), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(1597), + [sym_call] = STATE(1597), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(1597), + [sym_anonymous_function] = STATE(1597), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2549), + [sym_integer] = ACTIONS(2549), + [sym_float] = ACTIONS(2549), + [sym_char] = ACTIONS(2549), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2549), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [877] = { + [sym__expression] = STATE(1593), + [sym_block] = STATE(1593), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1593), + [sym_nil] = STATE(1593), + [sym__atom] = STATE(1593), + [sym_quoted_atom] = STATE(1593), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(1593), + [sym_charlist] = STATE(1593), + [sym_sigil] = STATE(1593), + [sym_list] = STATE(1593), + [sym_tuple] = STATE(1593), + [sym_bitstring] = STATE(1593), + [sym_map] = STATE(1593), + [sym_unary_operator] = STATE(1593), + [sym_binary_operator] = STATE(1593), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(1593), + [sym_call] = STATE(1593), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(1593), + [sym_anonymous_function] = STATE(1593), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2551), + [sym_integer] = ACTIONS(2551), + [sym_float] = ACTIONS(2551), + [sym_char] = ACTIONS(2551), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2551), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [878] = { + [sym__expression] = STATE(1545), + [sym_block] = STATE(1545), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1545), + [sym_nil] = STATE(1545), + [sym__atom] = STATE(1545), + [sym_quoted_atom] = STATE(1545), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(1545), + [sym_charlist] = STATE(1545), + [sym_sigil] = STATE(1545), + [sym_list] = STATE(1545), + [sym_tuple] = STATE(1545), + [sym_bitstring] = STATE(1545), + [sym_map] = STATE(1545), + [sym_unary_operator] = STATE(1545), + [sym_binary_operator] = STATE(1545), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(1545), + [sym_call] = STATE(1545), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(1545), + [sym_anonymous_function] = STATE(1545), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2553), + [sym_integer] = ACTIONS(2553), + [sym_float] = ACTIONS(2553), + [sym_char] = ACTIONS(2553), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2553), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [879] = { + [sym__expression] = STATE(4123), + [sym_block] = STATE(4123), + [sym__identifier] = STATE(66), + [sym_identifier] = STATE(66), + [sym_special_identifier] = STATE(66), + [sym_boolean] = STATE(4123), + [sym_nil] = STATE(4123), + [sym__atom] = STATE(4123), + [sym_quoted_atom] = STATE(4123), + [sym__quoted_i_double] = STATE(4034), + [sym__quoted_i_single] = STATE(4021), + [sym__quoted_i_heredoc_single] = STATE(4077), + [sym__quoted_i_heredoc_double] = STATE(4083), + [sym_string] = STATE(4123), + [sym_charlist] = STATE(4123), + [sym_sigil] = STATE(4123), + [sym_list] = STATE(4123), + [sym_tuple] = STATE(4123), + [sym_bitstring] = STATE(4123), + [sym_map] = STATE(4123), + [sym_unary_operator] = STATE(4123), + [sym_binary_operator] = STATE(4123), + [sym_operator_identifier] = STATE(5580), + [sym_dot] = STATE(4123), + [sym_call] = STATE(4123), + [sym__call_without_parentheses] = STATE(4089), + [sym__call_with_parentheses] = STATE(4092), + [sym__local_call_without_parentheses] = STATE(4097), + [sym__local_call_with_parentheses] = STATE(3372), + [sym__local_call_just_do_block] = STATE(4098), + [sym__remote_call_without_parentheses] = STATE(4105), + [sym__remote_call_with_parentheses] = STATE(3374), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3375), + [sym__anonymous_dot] = STATE(5531), + [sym__double_call] = STATE(4106), + [sym_access_call] = STATE(4123), + [sym_anonymous_function] = STATE(4123), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1133), + [aux_sym_identifier_token1] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1135), + [sym_unused_identifier] = ACTIONS(1137), + [anon_sym___MODULE__] = ACTIONS(1139), + [anon_sym___DIR__] = ACTIONS(1139), + [anon_sym___ENV__] = ACTIONS(1139), + [anon_sym___CALLER__] = ACTIONS(1139), + [anon_sym___STACKTRACE__] = ACTIONS(1139), + [sym_alias] = ACTIONS(2555), + [sym_integer] = ACTIONS(2555), + [sym_float] = ACTIONS(2555), + [sym_char] = ACTIONS(2555), + [anon_sym_true] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [anon_sym_nil] = ACTIONS(1145), + [sym_atom] = ACTIONS(2555), + [anon_sym_DQUOTE] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1151), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1157), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1159), + [anon_sym_LT_LT] = ACTIONS(1163), + [anon_sym_PERCENT] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_AT] = ACTIONS(1173), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1175), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1177), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1179), + }, + [880] = { + [sym__expression] = STATE(4120), + [sym_block] = STATE(4120), + [sym__identifier] = STATE(66), + [sym_identifier] = STATE(66), + [sym_special_identifier] = STATE(66), + [sym_boolean] = STATE(4120), + [sym_nil] = STATE(4120), + [sym__atom] = STATE(4120), + [sym_quoted_atom] = STATE(4120), + [sym__quoted_i_double] = STATE(4034), + [sym__quoted_i_single] = STATE(4021), + [sym__quoted_i_heredoc_single] = STATE(4077), + [sym__quoted_i_heredoc_double] = STATE(4083), + [sym_string] = STATE(4120), + [sym_charlist] = STATE(4120), + [sym_sigil] = STATE(4120), + [sym_list] = STATE(4120), + [sym_tuple] = STATE(4120), + [sym_bitstring] = STATE(4120), + [sym_map] = STATE(4120), + [sym_unary_operator] = STATE(4120), + [sym_binary_operator] = STATE(4120), + [sym_operator_identifier] = STATE(5580), + [sym_dot] = STATE(4120), + [sym_call] = STATE(4120), + [sym__call_without_parentheses] = STATE(4089), + [sym__call_with_parentheses] = STATE(4092), + [sym__local_call_without_parentheses] = STATE(4097), + [sym__local_call_with_parentheses] = STATE(3372), + [sym__local_call_just_do_block] = STATE(4098), + [sym__remote_call_without_parentheses] = STATE(4105), + [sym__remote_call_with_parentheses] = STATE(3374), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3375), + [sym__anonymous_dot] = STATE(5531), + [sym__double_call] = STATE(4106), + [sym_access_call] = STATE(4120), + [sym_anonymous_function] = STATE(4120), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1133), + [aux_sym_identifier_token1] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1135), + [sym_unused_identifier] = ACTIONS(1137), + [anon_sym___MODULE__] = ACTIONS(1139), + [anon_sym___DIR__] = ACTIONS(1139), + [anon_sym___ENV__] = ACTIONS(1139), + [anon_sym___CALLER__] = ACTIONS(1139), + [anon_sym___STACKTRACE__] = ACTIONS(1139), + [sym_alias] = ACTIONS(2557), + [sym_integer] = ACTIONS(2557), + [sym_float] = ACTIONS(2557), + [sym_char] = ACTIONS(2557), + [anon_sym_true] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [anon_sym_nil] = ACTIONS(1145), + [sym_atom] = ACTIONS(2557), + [anon_sym_DQUOTE] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1151), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1157), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1159), + [anon_sym_LT_LT] = ACTIONS(1163), + [anon_sym_PERCENT] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1171), + [anon_sym_not] = ACTIONS(1171), + [anon_sym_AT] = ACTIONS(1173), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1175), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1177), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1179), + }, + [881] = { + [sym__expression] = STATE(4150), + [sym_block] = STATE(4150), + [sym__identifier] = STATE(48), + [sym_identifier] = STATE(48), + [sym_special_identifier] = STATE(48), + [sym_boolean] = STATE(4150), + [sym_nil] = STATE(4150), + [sym__atom] = STATE(4150), + [sym_quoted_atom] = STATE(4150), + [sym__quoted_i_double] = STATE(2743), + [sym__quoted_i_single] = STATE(2744), + [sym__quoted_i_heredoc_single] = STATE(3103), + [sym__quoted_i_heredoc_double] = STATE(3104), + [sym_string] = STATE(4150), + [sym_charlist] = STATE(4150), + [sym_sigil] = STATE(4150), + [sym_list] = STATE(4150), + [sym_tuple] = STATE(4150), + [sym_bitstring] = STATE(4150), + [sym_map] = STATE(4150), + [sym_unary_operator] = STATE(4150), + [sym_binary_operator] = STATE(4150), + [sym_operator_identifier] = STATE(5560), + [sym_dot] = STATE(4150), + [sym_call] = STATE(4150), + [sym__call_without_parentheses] = STATE(3105), + [sym__call_with_parentheses] = STATE(3109), + [sym__local_call_without_parentheses] = STATE(3110), + [sym__local_call_with_parentheses] = STATE(2113), + [sym__local_call_just_do_block] = STATE(3194), + [sym__remote_call_without_parentheses] = STATE(3191), + [sym__remote_call_with_parentheses] = STATE(2112), + [sym__remote_dot] = STATE(36), + [sym__anonymous_call] = STATE(2111), + [sym__anonymous_dot] = STATE(5517), + [sym__double_call] = STATE(3188), + [sym_access_call] = STATE(4150), + [sym_anonymous_function] = STATE(4150), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1069), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2559), + [sym_integer] = ACTIONS(2559), + [sym_float] = ACTIONS(2559), + [sym_char] = ACTIONS(2559), + [anon_sym_true] = ACTIONS(1073), + [anon_sym_false] = ACTIONS(1073), + [anon_sym_nil] = ACTIONS(1075), + [sym_atom] = ACTIONS(2559), + [anon_sym_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [882] = { + [sym__expression] = STATE(2121), + [sym_block] = STATE(2121), + [sym__identifier] = STATE(21), + [sym_identifier] = STATE(21), + [sym_special_identifier] = STATE(21), + [sym_boolean] = STATE(2121), + [sym_nil] = STATE(2121), + [sym__atom] = STATE(2121), + [sym_quoted_atom] = STATE(2121), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(2121), + [sym_charlist] = STATE(2121), + [sym_sigil] = STATE(2121), + [sym_list] = STATE(2121), + [sym_tuple] = STATE(2121), + [sym_bitstring] = STATE(2121), + [sym_map] = STATE(2121), + [sym_unary_operator] = STATE(2121), + [sym_binary_operator] = STATE(2121), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(2121), + [sym_call] = STATE(2121), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(2121), + [sym_anonymous_function] = STATE(2121), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(2561), + [sym_integer] = ACTIONS(2561), + [sym_float] = ACTIONS(2561), + [sym_char] = ACTIONS(2561), [anon_sym_true] = ACTIONS(948), [anon_sym_false] = ACTIONS(948), [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(2517), + [sym_atom] = ACTIONS(2561), [anon_sym_DQUOTE] = ACTIONS(952), [anon_sym_SQUOTE] = ACTIONS(954), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), @@ -134361,17 +137874,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1417), + [anon_sym_TILDE] = ACTIONS(964), [anon_sym_LT_LT] = ACTIONS(966), [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -134415,88 +137928,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1425), + [sym__before_unary_op] = ACTIONS(980), [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(982), }, - [860] = { - [sym__expression] = STATE(1347), - [sym_block] = STATE(1347), - [sym__identifier] = STATE(18), - [sym_identifier] = STATE(18), - [sym_special_identifier] = STATE(18), - [sym_boolean] = STATE(1347), - [sym_nil] = STATE(1347), - [sym__atom] = STATE(1347), - [sym_quoted_atom] = STATE(1347), - [sym__quoted_i_double] = STATE(1259), - [sym__quoted_i_single] = STATE(1258), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(1347), - [sym_charlist] = STATE(1347), - [sym_sigil] = STATE(1347), - [sym_list] = STATE(1347), - [sym_tuple] = STATE(1347), - [sym_bitstring] = STATE(1347), - [sym_map] = STATE(1347), - [sym_unary_operator] = STATE(1347), - [sym_binary_operator] = STATE(1347), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(1347), - [sym_call] = STATE(1347), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(1347), - [sym_anonymous_function] = STATE(1347), + [883] = { + [sym__expression] = STATE(1863), + [sym_block] = STATE(1863), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1863), + [sym_nil] = STATE(1863), + [sym__atom] = STATE(1863), + [sym_quoted_atom] = STATE(1863), + [sym__quoted_i_double] = STATE(1540), + [sym__quoted_i_single] = STATE(1541), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1863), + [sym_charlist] = STATE(1863), + [sym_sigil] = STATE(1863), + [sym_list] = STATE(1863), + [sym_tuple] = STATE(1863), + [sym_bitstring] = STATE(1863), + [sym_map] = STATE(1863), + [sym_unary_operator] = STATE(1863), + [sym_binary_operator] = STATE(1863), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1863), + [sym_call] = STATE(1863), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1863), + [sym_anonymous_function] = STATE(1863), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(256), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), - [sym_alias] = ACTIONS(2519), - [sym_integer] = ACTIONS(2519), - [sym_float] = ACTIONS(2519), - [sym_char] = ACTIONS(2519), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(2519), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(1337), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(2563), + [sym_integer] = ACTIONS(2563), + [sym_float] = ACTIONS(2563), + [sym_char] = ACTIONS(2563), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(2563), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(286), - [anon_sym_not] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -134536,813 +138049,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), + [anon_sym_fn] = ACTIONS(115), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(294), + [sym__before_unary_op] = ACTIONS(119), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), + [sym__quoted_atom_start] = ACTIONS(121), }, - [861] = { - [sym__expression] = STATE(2629), - [sym_block] = STATE(2629), - [sym__identifier] = STATE(45), - [sym_identifier] = STATE(45), - [sym_special_identifier] = STATE(45), - [sym_boolean] = STATE(2629), - [sym_nil] = STATE(2629), - [sym__atom] = STATE(2629), - [sym_quoted_atom] = STATE(2629), - [sym__quoted_i_double] = STATE(2714), - [sym__quoted_i_single] = STATE(2713), - [sym__quoted_i_heredoc_single] = STATE(2713), - [sym__quoted_i_heredoc_double] = STATE(2714), - [sym_string] = STATE(2629), - [sym_charlist] = STATE(2629), - [sym_sigil] = STATE(2629), - [sym_list] = STATE(2629), - [sym_tuple] = STATE(2629), - [sym_bitstring] = STATE(2629), - [sym_map] = STATE(2629), - [sym_unary_operator] = STATE(2629), - [sym_binary_operator] = STATE(2629), - [sym_operator_identifier] = STATE(4988), - [sym_dot] = STATE(2629), - [sym_call] = STATE(2629), - [sym__call_without_parentheses] = STATE(2712), - [sym__call_with_parentheses] = STATE(2711), - [sym__local_call_without_parentheses] = STATE(2710), - [sym__local_call_with_parentheses] = STATE(1879), - [sym__local_call_just_do_block] = STATE(2709), - [sym__remote_call_without_parentheses] = STATE(2708), - [sym__remote_call_with_parentheses] = STATE(1859), - [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1919), - [sym__anonymous_dot] = STATE(4871), - [sym__double_call] = STATE(2707), - [sym_access_call] = STATE(2629), - [sym_anonymous_function] = STATE(2629), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(479), - [aux_sym_identifier_token1] = ACTIONS(481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(481), - [sym_unused_identifier] = ACTIONS(483), - [anon_sym___MODULE__] = ACTIONS(485), - [anon_sym___DIR__] = ACTIONS(485), - [anon_sym___ENV__] = ACTIONS(485), - [anon_sym___CALLER__] = ACTIONS(485), - [anon_sym___STACKTRACE__] = ACTIONS(485), - [sym_alias] = ACTIONS(2521), - [sym_integer] = ACTIONS(2521), - [sym_float] = ACTIONS(2521), - [sym_char] = ACTIONS(2521), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_nil] = ACTIONS(491), - [sym_atom] = ACTIONS(2521), - [anon_sym_DQUOTE] = ACTIONS(493), - [anon_sym_SQUOTE] = ACTIONS(495), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(497), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(499), - [anon_sym_LBRACE] = ACTIONS(501), - [anon_sym_LBRACK] = ACTIONS(503), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(505), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(515), - [anon_sym_CARET] = ACTIONS(515), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(515), - [anon_sym_not] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(517), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(519), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(523), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(525), - }, - [862] = { - [sym__expression] = STATE(2630), - [sym_block] = STATE(2630), - [sym__identifier] = STATE(45), - [sym_identifier] = STATE(45), - [sym_special_identifier] = STATE(45), - [sym_boolean] = STATE(2630), - [sym_nil] = STATE(2630), - [sym__atom] = STATE(2630), - [sym_quoted_atom] = STATE(2630), - [sym__quoted_i_double] = STATE(2714), - [sym__quoted_i_single] = STATE(2713), - [sym__quoted_i_heredoc_single] = STATE(2713), - [sym__quoted_i_heredoc_double] = STATE(2714), - [sym_string] = STATE(2630), - [sym_charlist] = STATE(2630), - [sym_sigil] = STATE(2630), - [sym_list] = STATE(2630), - [sym_tuple] = STATE(2630), - [sym_bitstring] = STATE(2630), - [sym_map] = STATE(2630), - [sym_unary_operator] = STATE(2630), - [sym_binary_operator] = STATE(2630), - [sym_operator_identifier] = STATE(4988), - [sym_dot] = STATE(2630), - [sym_call] = STATE(2630), - [sym__call_without_parentheses] = STATE(2712), - [sym__call_with_parentheses] = STATE(2711), - [sym__local_call_without_parentheses] = STATE(2710), - [sym__local_call_with_parentheses] = STATE(1879), - [sym__local_call_just_do_block] = STATE(2709), - [sym__remote_call_without_parentheses] = STATE(2708), - [sym__remote_call_with_parentheses] = STATE(1859), - [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1919), - [sym__anonymous_dot] = STATE(4871), - [sym__double_call] = STATE(2707), - [sym_access_call] = STATE(2630), - [sym_anonymous_function] = STATE(2630), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(479), - [aux_sym_identifier_token1] = ACTIONS(481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(481), - [sym_unused_identifier] = ACTIONS(483), - [anon_sym___MODULE__] = ACTIONS(485), - [anon_sym___DIR__] = ACTIONS(485), - [anon_sym___ENV__] = ACTIONS(485), - [anon_sym___CALLER__] = ACTIONS(485), - [anon_sym___STACKTRACE__] = ACTIONS(485), - [sym_alias] = ACTIONS(2523), - [sym_integer] = ACTIONS(2523), - [sym_float] = ACTIONS(2523), - [sym_char] = ACTIONS(2523), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_nil] = ACTIONS(491), - [sym_atom] = ACTIONS(2523), - [anon_sym_DQUOTE] = ACTIONS(493), - [anon_sym_SQUOTE] = ACTIONS(495), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(497), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(499), - [anon_sym_LBRACE] = ACTIONS(501), - [anon_sym_LBRACK] = ACTIONS(503), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(505), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(515), - [anon_sym_CARET] = ACTIONS(515), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(515), - [anon_sym_not] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(517), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(519), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(523), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(525), - }, - [863] = { - [sym__expression] = STATE(2631), - [sym_block] = STATE(2631), - [sym__identifier] = STATE(45), - [sym_identifier] = STATE(45), - [sym_special_identifier] = STATE(45), - [sym_boolean] = STATE(2631), - [sym_nil] = STATE(2631), - [sym__atom] = STATE(2631), - [sym_quoted_atom] = STATE(2631), - [sym__quoted_i_double] = STATE(2714), - [sym__quoted_i_single] = STATE(2713), - [sym__quoted_i_heredoc_single] = STATE(2713), - [sym__quoted_i_heredoc_double] = STATE(2714), - [sym_string] = STATE(2631), - [sym_charlist] = STATE(2631), - [sym_sigil] = STATE(2631), - [sym_list] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_bitstring] = STATE(2631), - [sym_map] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_binary_operator] = STATE(2631), - [sym_operator_identifier] = STATE(4988), - [sym_dot] = STATE(2631), - [sym_call] = STATE(2631), - [sym__call_without_parentheses] = STATE(2712), - [sym__call_with_parentheses] = STATE(2711), - [sym__local_call_without_parentheses] = STATE(2710), - [sym__local_call_with_parentheses] = STATE(1879), - [sym__local_call_just_do_block] = STATE(2709), - [sym__remote_call_without_parentheses] = STATE(2708), - [sym__remote_call_with_parentheses] = STATE(1859), - [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1919), - [sym__anonymous_dot] = STATE(4871), - [sym__double_call] = STATE(2707), - [sym_access_call] = STATE(2631), - [sym_anonymous_function] = STATE(2631), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(479), - [aux_sym_identifier_token1] = ACTIONS(481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(481), - [sym_unused_identifier] = ACTIONS(483), - [anon_sym___MODULE__] = ACTIONS(485), - [anon_sym___DIR__] = ACTIONS(485), - [anon_sym___ENV__] = ACTIONS(485), - [anon_sym___CALLER__] = ACTIONS(485), - [anon_sym___STACKTRACE__] = ACTIONS(485), - [sym_alias] = ACTIONS(2525), - [sym_integer] = ACTIONS(2525), - [sym_float] = ACTIONS(2525), - [sym_char] = ACTIONS(2525), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_nil] = ACTIONS(491), - [sym_atom] = ACTIONS(2525), - [anon_sym_DQUOTE] = ACTIONS(493), - [anon_sym_SQUOTE] = ACTIONS(495), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(497), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(499), - [anon_sym_LBRACE] = ACTIONS(501), - [anon_sym_LBRACK] = ACTIONS(503), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(505), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(515), - [anon_sym_CARET] = ACTIONS(515), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(515), - [anon_sym_not] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(517), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(519), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(523), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(525), - }, - [864] = { - [sym__expression] = STATE(2632), - [sym_block] = STATE(2632), - [sym__identifier] = STATE(45), - [sym_identifier] = STATE(45), - [sym_special_identifier] = STATE(45), - [sym_boolean] = STATE(2632), - [sym_nil] = STATE(2632), - [sym__atom] = STATE(2632), - [sym_quoted_atom] = STATE(2632), - [sym__quoted_i_double] = STATE(2714), - [sym__quoted_i_single] = STATE(2713), - [sym__quoted_i_heredoc_single] = STATE(2713), - [sym__quoted_i_heredoc_double] = STATE(2714), - [sym_string] = STATE(2632), - [sym_charlist] = STATE(2632), - [sym_sigil] = STATE(2632), - [sym_list] = STATE(2632), - [sym_tuple] = STATE(2632), - [sym_bitstring] = STATE(2632), - [sym_map] = STATE(2632), - [sym_unary_operator] = STATE(2632), - [sym_binary_operator] = STATE(2632), - [sym_operator_identifier] = STATE(4988), - [sym_dot] = STATE(2632), - [sym_call] = STATE(2632), - [sym__call_without_parentheses] = STATE(2712), - [sym__call_with_parentheses] = STATE(2711), - [sym__local_call_without_parentheses] = STATE(2710), - [sym__local_call_with_parentheses] = STATE(1879), - [sym__local_call_just_do_block] = STATE(2709), - [sym__remote_call_without_parentheses] = STATE(2708), - [sym__remote_call_with_parentheses] = STATE(1859), - [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1919), - [sym__anonymous_dot] = STATE(4871), - [sym__double_call] = STATE(2707), - [sym_access_call] = STATE(2632), - [sym_anonymous_function] = STATE(2632), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(479), - [aux_sym_identifier_token1] = ACTIONS(481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(481), - [sym_unused_identifier] = ACTIONS(483), - [anon_sym___MODULE__] = ACTIONS(485), - [anon_sym___DIR__] = ACTIONS(485), - [anon_sym___ENV__] = ACTIONS(485), - [anon_sym___CALLER__] = ACTIONS(485), - [anon_sym___STACKTRACE__] = ACTIONS(485), - [sym_alias] = ACTIONS(2527), - [sym_integer] = ACTIONS(2527), - [sym_float] = ACTIONS(2527), - [sym_char] = ACTIONS(2527), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_nil] = ACTIONS(491), - [sym_atom] = ACTIONS(2527), - [anon_sym_DQUOTE] = ACTIONS(493), - [anon_sym_SQUOTE] = ACTIONS(495), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(497), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(499), - [anon_sym_LBRACE] = ACTIONS(501), - [anon_sym_LBRACK] = ACTIONS(503), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(505), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(515), - [anon_sym_CARET] = ACTIONS(515), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(515), - [anon_sym_not] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(517), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(519), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(523), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(525), - }, - [865] = { - [sym__expression] = STATE(2600), - [sym_block] = STATE(2600), - [sym__identifier] = STATE(45), - [sym_identifier] = STATE(45), - [sym_special_identifier] = STATE(45), - [sym_boolean] = STATE(2600), - [sym_nil] = STATE(2600), - [sym__atom] = STATE(2600), - [sym_quoted_atom] = STATE(2600), - [sym__quoted_i_double] = STATE(2714), - [sym__quoted_i_single] = STATE(2713), - [sym__quoted_i_heredoc_single] = STATE(2713), - [sym__quoted_i_heredoc_double] = STATE(2714), - [sym_string] = STATE(2600), - [sym_charlist] = STATE(2600), - [sym_sigil] = STATE(2600), - [sym_list] = STATE(2600), - [sym_tuple] = STATE(2600), - [sym_bitstring] = STATE(2600), - [sym_map] = STATE(2600), - [sym_unary_operator] = STATE(2600), - [sym_binary_operator] = STATE(2600), - [sym_operator_identifier] = STATE(4988), - [sym_dot] = STATE(2600), - [sym_call] = STATE(2600), - [sym__call_without_parentheses] = STATE(2712), - [sym__call_with_parentheses] = STATE(2711), - [sym__local_call_without_parentheses] = STATE(2710), - [sym__local_call_with_parentheses] = STATE(1879), - [sym__local_call_just_do_block] = STATE(2709), - [sym__remote_call_without_parentheses] = STATE(2708), - [sym__remote_call_with_parentheses] = STATE(1859), - [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1919), - [sym__anonymous_dot] = STATE(4871), - [sym__double_call] = STATE(2707), - [sym_access_call] = STATE(2600), - [sym_anonymous_function] = STATE(2600), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(479), - [aux_sym_identifier_token1] = ACTIONS(481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(481), - [sym_unused_identifier] = ACTIONS(483), - [anon_sym___MODULE__] = ACTIONS(485), - [anon_sym___DIR__] = ACTIONS(485), - [anon_sym___ENV__] = ACTIONS(485), - [anon_sym___CALLER__] = ACTIONS(485), - [anon_sym___STACKTRACE__] = ACTIONS(485), - [sym_alias] = ACTIONS(2529), - [sym_integer] = ACTIONS(2529), - [sym_float] = ACTIONS(2529), - [sym_char] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_nil] = ACTIONS(491), - [sym_atom] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(493), - [anon_sym_SQUOTE] = ACTIONS(495), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(497), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(499), - [anon_sym_LBRACE] = ACTIONS(501), - [anon_sym_LBRACK] = ACTIONS(503), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(505), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(515), - [anon_sym_CARET] = ACTIONS(515), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(515), - [anon_sym_not] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(517), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(519), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(523), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(525), - }, - [866] = { - [sym__expression] = STATE(2634), - [sym_block] = STATE(2634), - [sym__identifier] = STATE(45), - [sym_identifier] = STATE(45), - [sym_special_identifier] = STATE(45), - [sym_boolean] = STATE(2634), - [sym_nil] = STATE(2634), - [sym__atom] = STATE(2634), - [sym_quoted_atom] = STATE(2634), - [sym__quoted_i_double] = STATE(2714), - [sym__quoted_i_single] = STATE(2713), - [sym__quoted_i_heredoc_single] = STATE(2713), - [sym__quoted_i_heredoc_double] = STATE(2714), - [sym_string] = STATE(2634), - [sym_charlist] = STATE(2634), - [sym_sigil] = STATE(2634), - [sym_list] = STATE(2634), - [sym_tuple] = STATE(2634), - [sym_bitstring] = STATE(2634), - [sym_map] = STATE(2634), - [sym_unary_operator] = STATE(2634), - [sym_binary_operator] = STATE(2634), - [sym_operator_identifier] = STATE(4988), - [sym_dot] = STATE(2634), - [sym_call] = STATE(2634), - [sym__call_without_parentheses] = STATE(2712), - [sym__call_with_parentheses] = STATE(2711), - [sym__local_call_without_parentheses] = STATE(2710), - [sym__local_call_with_parentheses] = STATE(1879), - [sym__local_call_just_do_block] = STATE(2709), - [sym__remote_call_without_parentheses] = STATE(2708), - [sym__remote_call_with_parentheses] = STATE(1859), - [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1919), - [sym__anonymous_dot] = STATE(4871), - [sym__double_call] = STATE(2707), - [sym_access_call] = STATE(2634), - [sym_anonymous_function] = STATE(2634), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(479), - [aux_sym_identifier_token1] = ACTIONS(481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(481), - [sym_unused_identifier] = ACTIONS(483), - [anon_sym___MODULE__] = ACTIONS(485), - [anon_sym___DIR__] = ACTIONS(485), - [anon_sym___ENV__] = ACTIONS(485), - [anon_sym___CALLER__] = ACTIONS(485), - [anon_sym___STACKTRACE__] = ACTIONS(485), - [sym_alias] = ACTIONS(2531), - [sym_integer] = ACTIONS(2531), - [sym_float] = ACTIONS(2531), - [sym_char] = ACTIONS(2531), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_nil] = ACTIONS(491), - [sym_atom] = ACTIONS(2531), - [anon_sym_DQUOTE] = ACTIONS(493), - [anon_sym_SQUOTE] = ACTIONS(495), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(497), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(499), - [anon_sym_LBRACE] = ACTIONS(501), - [anon_sym_LBRACK] = ACTIONS(503), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(505), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(515), - [anon_sym_CARET] = ACTIONS(515), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(515), - [anon_sym_not] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(517), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(519), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(523), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(525), - }, - [867] = { - [sym__expression] = STATE(3463), - [sym_block] = STATE(3463), - [sym__identifier] = STATE(54), - [sym_identifier] = STATE(54), - [sym_special_identifier] = STATE(54), - [sym_boolean] = STATE(3463), - [sym_nil] = STATE(3463), - [sym__atom] = STATE(3463), - [sym_quoted_atom] = STATE(3463), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(3463), - [sym_charlist] = STATE(3463), - [sym_sigil] = STATE(3463), - [sym_list] = STATE(3463), - [sym_tuple] = STATE(3463), - [sym_bitstring] = STATE(3463), - [sym_map] = STATE(3463), - [sym_unary_operator] = STATE(3463), - [sym_binary_operator] = STATE(3463), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(3463), - [sym_call] = STATE(3463), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(3463), - [sym_anonymous_function] = STATE(3463), + [884] = { + [sym__expression] = STATE(4094), + [sym_block] = STATE(4094), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(4094), + [sym_nil] = STATE(4094), + [sym__atom] = STATE(4094), + [sym_quoted_atom] = STATE(4094), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(4094), + [sym_charlist] = STATE(4094), + [sym_sigil] = STATE(4094), + [sym_list] = STATE(4094), + [sym_tuple] = STATE(4094), + [sym_bitstring] = STATE(4094), + [sym_map] = STATE(4094), + [sym_unary_operator] = STATE(4094), + [sym_binary_operator] = STATE(4094), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(4094), + [sym_call] = STATE(4094), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(4094), + [sym_anonymous_function] = STATE(4094), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(1427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1427), - [sym_unused_identifier] = ACTIONS(1429), - [anon_sym___MODULE__] = ACTIONS(1431), - [anon_sym___DIR__] = ACTIONS(1431), - [anon_sym___ENV__] = ACTIONS(1431), - [anon_sym___CALLER__] = ACTIONS(1431), - [anon_sym___STACKTRACE__] = ACTIONS(1431), + [aux_sym_identifier_token1] = ACTIONS(1437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1437), + [sym_unused_identifier] = ACTIONS(1439), + [anon_sym___MODULE__] = ACTIONS(1441), + [anon_sym___DIR__] = ACTIONS(1441), + [anon_sym___ENV__] = ACTIONS(1441), + [anon_sym___CALLER__] = ACTIONS(1441), + [anon_sym___STACKTRACE__] = ACTIONS(1441), [sym_alias] = ACTIONS(1531), [sym_integer] = ACTIONS(1531), [sym_float] = ACTIONS(1531), @@ -135361,17 +138124,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1435), + [anon_sym_TILDE] = ACTIONS(1445), [anon_sym_LT_LT] = ACTIONS(966), [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_CARET] = ACTIONS(1441), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1441), - [anon_sym_not] = ACTIONS(1441), - [anon_sym_AT] = ACTIONS(1443), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1451), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), + [anon_sym_not] = ACTIONS(1451), + [anon_sym_AT] = ACTIONS(1453), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -135415,2213 +138178,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1445), + [sym__before_unary_op] = ACTIONS(1455), [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(982), }, - [868] = { - [sym__expression] = STATE(2635), - [sym_block] = STATE(2635), - [sym__identifier] = STATE(45), - [sym_identifier] = STATE(45), - [sym_special_identifier] = STATE(45), - [sym_boolean] = STATE(2635), - [sym_nil] = STATE(2635), - [sym__atom] = STATE(2635), - [sym_quoted_atom] = STATE(2635), - [sym__quoted_i_double] = STATE(2714), - [sym__quoted_i_single] = STATE(2713), - [sym__quoted_i_heredoc_single] = STATE(2713), - [sym__quoted_i_heredoc_double] = STATE(2714), - [sym_string] = STATE(2635), - [sym_charlist] = STATE(2635), - [sym_sigil] = STATE(2635), - [sym_list] = STATE(2635), - [sym_tuple] = STATE(2635), - [sym_bitstring] = STATE(2635), - [sym_map] = STATE(2635), - [sym_unary_operator] = STATE(2635), - [sym_binary_operator] = STATE(2635), - [sym_operator_identifier] = STATE(4988), - [sym_dot] = STATE(2635), - [sym_call] = STATE(2635), - [sym__call_without_parentheses] = STATE(2712), - [sym__call_with_parentheses] = STATE(2711), - [sym__local_call_without_parentheses] = STATE(2710), - [sym__local_call_with_parentheses] = STATE(1879), - [sym__local_call_just_do_block] = STATE(2709), - [sym__remote_call_without_parentheses] = STATE(2708), - [sym__remote_call_with_parentheses] = STATE(1859), - [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1919), - [sym__anonymous_dot] = STATE(4871), - [sym__double_call] = STATE(2707), - [sym_access_call] = STATE(2635), - [sym_anonymous_function] = STATE(2635), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(479), - [aux_sym_identifier_token1] = ACTIONS(481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(481), - [sym_unused_identifier] = ACTIONS(483), - [anon_sym___MODULE__] = ACTIONS(485), - [anon_sym___DIR__] = ACTIONS(485), - [anon_sym___ENV__] = ACTIONS(485), - [anon_sym___CALLER__] = ACTIONS(485), - [anon_sym___STACKTRACE__] = ACTIONS(485), - [sym_alias] = ACTIONS(2533), - [sym_integer] = ACTIONS(2533), - [sym_float] = ACTIONS(2533), - [sym_char] = ACTIONS(2533), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_nil] = ACTIONS(491), - [sym_atom] = ACTIONS(2533), - [anon_sym_DQUOTE] = ACTIONS(493), - [anon_sym_SQUOTE] = ACTIONS(495), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(497), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(499), - [anon_sym_LBRACE] = ACTIONS(501), - [anon_sym_LBRACK] = ACTIONS(503), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(505), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(515), - [anon_sym_CARET] = ACTIONS(515), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(515), - [anon_sym_not] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(517), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(519), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(523), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(525), - }, - [869] = { - [sym__expression] = STATE(2636), - [sym_block] = STATE(2636), - [sym__identifier] = STATE(45), - [sym_identifier] = STATE(45), - [sym_special_identifier] = STATE(45), - [sym_boolean] = STATE(2636), - [sym_nil] = STATE(2636), - [sym__atom] = STATE(2636), - [sym_quoted_atom] = STATE(2636), - [sym__quoted_i_double] = STATE(2714), - [sym__quoted_i_single] = STATE(2713), - [sym__quoted_i_heredoc_single] = STATE(2713), - [sym__quoted_i_heredoc_double] = STATE(2714), - [sym_string] = STATE(2636), - [sym_charlist] = STATE(2636), - [sym_sigil] = STATE(2636), - [sym_list] = STATE(2636), - [sym_tuple] = STATE(2636), - [sym_bitstring] = STATE(2636), - [sym_map] = STATE(2636), - [sym_unary_operator] = STATE(2636), - [sym_binary_operator] = STATE(2636), - [sym_operator_identifier] = STATE(4988), - [sym_dot] = STATE(2636), - [sym_call] = STATE(2636), - [sym__call_without_parentheses] = STATE(2712), - [sym__call_with_parentheses] = STATE(2711), - [sym__local_call_without_parentheses] = STATE(2710), - [sym__local_call_with_parentheses] = STATE(1879), - [sym__local_call_just_do_block] = STATE(2709), - [sym__remote_call_without_parentheses] = STATE(2708), - [sym__remote_call_with_parentheses] = STATE(1859), - [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1919), - [sym__anonymous_dot] = STATE(4871), - [sym__double_call] = STATE(2707), - [sym_access_call] = STATE(2636), - [sym_anonymous_function] = STATE(2636), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(479), - [aux_sym_identifier_token1] = ACTIONS(481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(481), - [sym_unused_identifier] = ACTIONS(483), - [anon_sym___MODULE__] = ACTIONS(485), - [anon_sym___DIR__] = ACTIONS(485), - [anon_sym___ENV__] = ACTIONS(485), - [anon_sym___CALLER__] = ACTIONS(485), - [anon_sym___STACKTRACE__] = ACTIONS(485), - [sym_alias] = ACTIONS(2535), - [sym_integer] = ACTIONS(2535), - [sym_float] = ACTIONS(2535), - [sym_char] = ACTIONS(2535), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_nil] = ACTIONS(491), - [sym_atom] = ACTIONS(2535), - [anon_sym_DQUOTE] = ACTIONS(493), - [anon_sym_SQUOTE] = ACTIONS(495), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(497), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(499), - [anon_sym_LBRACE] = ACTIONS(501), - [anon_sym_LBRACK] = ACTIONS(503), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(505), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(515), - [anon_sym_CARET] = ACTIONS(515), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(515), - [anon_sym_not] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(517), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(519), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(523), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(525), - }, - [870] = { - [sym__expression] = STATE(2637), - [sym_block] = STATE(2637), - [sym__identifier] = STATE(45), - [sym_identifier] = STATE(45), - [sym_special_identifier] = STATE(45), - [sym_boolean] = STATE(2637), - [sym_nil] = STATE(2637), - [sym__atom] = STATE(2637), - [sym_quoted_atom] = STATE(2637), - [sym__quoted_i_double] = STATE(2714), - [sym__quoted_i_single] = STATE(2713), - [sym__quoted_i_heredoc_single] = STATE(2713), - [sym__quoted_i_heredoc_double] = STATE(2714), - [sym_string] = STATE(2637), - [sym_charlist] = STATE(2637), - [sym_sigil] = STATE(2637), - [sym_list] = STATE(2637), - [sym_tuple] = STATE(2637), - [sym_bitstring] = STATE(2637), - [sym_map] = STATE(2637), - [sym_unary_operator] = STATE(2637), - [sym_binary_operator] = STATE(2637), - [sym_operator_identifier] = STATE(4988), - [sym_dot] = STATE(2637), - [sym_call] = STATE(2637), - [sym__call_without_parentheses] = STATE(2712), - [sym__call_with_parentheses] = STATE(2711), - [sym__local_call_without_parentheses] = STATE(2710), - [sym__local_call_with_parentheses] = STATE(1879), - [sym__local_call_just_do_block] = STATE(2709), - [sym__remote_call_without_parentheses] = STATE(2708), - [sym__remote_call_with_parentheses] = STATE(1859), - [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1919), - [sym__anonymous_dot] = STATE(4871), - [sym__double_call] = STATE(2707), - [sym_access_call] = STATE(2637), - [sym_anonymous_function] = STATE(2637), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(479), - [aux_sym_identifier_token1] = ACTIONS(481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(481), - [sym_unused_identifier] = ACTIONS(483), - [anon_sym___MODULE__] = ACTIONS(485), - [anon_sym___DIR__] = ACTIONS(485), - [anon_sym___ENV__] = ACTIONS(485), - [anon_sym___CALLER__] = ACTIONS(485), - [anon_sym___STACKTRACE__] = ACTIONS(485), - [sym_alias] = ACTIONS(2537), - [sym_integer] = ACTIONS(2537), - [sym_float] = ACTIONS(2537), - [sym_char] = ACTIONS(2537), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_nil] = ACTIONS(491), - [sym_atom] = ACTIONS(2537), - [anon_sym_DQUOTE] = ACTIONS(493), - [anon_sym_SQUOTE] = ACTIONS(495), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(497), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(499), - [anon_sym_LBRACE] = ACTIONS(501), - [anon_sym_LBRACK] = ACTIONS(503), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(505), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(515), - [anon_sym_CARET] = ACTIONS(515), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(515), - [anon_sym_not] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(517), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(519), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(523), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(525), - }, - [871] = { - [sym__expression] = STATE(2638), - [sym_block] = STATE(2638), - [sym__identifier] = STATE(45), - [sym_identifier] = STATE(45), - [sym_special_identifier] = STATE(45), - [sym_boolean] = STATE(2638), - [sym_nil] = STATE(2638), - [sym__atom] = STATE(2638), - [sym_quoted_atom] = STATE(2638), - [sym__quoted_i_double] = STATE(2714), - [sym__quoted_i_single] = STATE(2713), - [sym__quoted_i_heredoc_single] = STATE(2713), - [sym__quoted_i_heredoc_double] = STATE(2714), - [sym_string] = STATE(2638), - [sym_charlist] = STATE(2638), - [sym_sigil] = STATE(2638), - [sym_list] = STATE(2638), - [sym_tuple] = STATE(2638), - [sym_bitstring] = STATE(2638), - [sym_map] = STATE(2638), - [sym_unary_operator] = STATE(2638), - [sym_binary_operator] = STATE(2638), - [sym_operator_identifier] = STATE(4988), - [sym_dot] = STATE(2638), - [sym_call] = STATE(2638), - [sym__call_without_parentheses] = STATE(2712), - [sym__call_with_parentheses] = STATE(2711), - [sym__local_call_without_parentheses] = STATE(2710), - [sym__local_call_with_parentheses] = STATE(1879), - [sym__local_call_just_do_block] = STATE(2709), - [sym__remote_call_without_parentheses] = STATE(2708), - [sym__remote_call_with_parentheses] = STATE(1859), - [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1919), - [sym__anonymous_dot] = STATE(4871), - [sym__double_call] = STATE(2707), - [sym_access_call] = STATE(2638), - [sym_anonymous_function] = STATE(2638), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(479), - [aux_sym_identifier_token1] = ACTIONS(481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(481), - [sym_unused_identifier] = ACTIONS(483), - [anon_sym___MODULE__] = ACTIONS(485), - [anon_sym___DIR__] = ACTIONS(485), - [anon_sym___ENV__] = ACTIONS(485), - [anon_sym___CALLER__] = ACTIONS(485), - [anon_sym___STACKTRACE__] = ACTIONS(485), - [sym_alias] = ACTIONS(2539), - [sym_integer] = ACTIONS(2539), - [sym_float] = ACTIONS(2539), - [sym_char] = ACTIONS(2539), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_nil] = ACTIONS(491), - [sym_atom] = ACTIONS(2539), - [anon_sym_DQUOTE] = ACTIONS(493), - [anon_sym_SQUOTE] = ACTIONS(495), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(497), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(499), - [anon_sym_LBRACE] = ACTIONS(501), - [anon_sym_LBRACK] = ACTIONS(503), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(505), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(515), - [anon_sym_CARET] = ACTIONS(515), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(515), - [anon_sym_not] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(517), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(519), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(523), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(525), - }, - [872] = { - [sym__expression] = STATE(2639), - [sym_block] = STATE(2639), - [sym__identifier] = STATE(45), - [sym_identifier] = STATE(45), - [sym_special_identifier] = STATE(45), - [sym_boolean] = STATE(2639), - [sym_nil] = STATE(2639), - [sym__atom] = STATE(2639), - [sym_quoted_atom] = STATE(2639), - [sym__quoted_i_double] = STATE(2714), - [sym__quoted_i_single] = STATE(2713), - [sym__quoted_i_heredoc_single] = STATE(2713), - [sym__quoted_i_heredoc_double] = STATE(2714), - [sym_string] = STATE(2639), - [sym_charlist] = STATE(2639), - [sym_sigil] = STATE(2639), - [sym_list] = STATE(2639), - [sym_tuple] = STATE(2639), - [sym_bitstring] = STATE(2639), - [sym_map] = STATE(2639), - [sym_unary_operator] = STATE(2639), - [sym_binary_operator] = STATE(2639), - [sym_operator_identifier] = STATE(4988), - [sym_dot] = STATE(2639), - [sym_call] = STATE(2639), - [sym__call_without_parentheses] = STATE(2712), - [sym__call_with_parentheses] = STATE(2711), - [sym__local_call_without_parentheses] = STATE(2710), - [sym__local_call_with_parentheses] = STATE(1879), - [sym__local_call_just_do_block] = STATE(2709), - [sym__remote_call_without_parentheses] = STATE(2708), - [sym__remote_call_with_parentheses] = STATE(1859), - [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1919), - [sym__anonymous_dot] = STATE(4871), - [sym__double_call] = STATE(2707), - [sym_access_call] = STATE(2639), - [sym_anonymous_function] = STATE(2639), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(479), - [aux_sym_identifier_token1] = ACTIONS(481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(481), - [sym_unused_identifier] = ACTIONS(483), - [anon_sym___MODULE__] = ACTIONS(485), - [anon_sym___DIR__] = ACTIONS(485), - [anon_sym___ENV__] = ACTIONS(485), - [anon_sym___CALLER__] = ACTIONS(485), - [anon_sym___STACKTRACE__] = ACTIONS(485), - [sym_alias] = ACTIONS(2541), - [sym_integer] = ACTIONS(2541), - [sym_float] = ACTIONS(2541), - [sym_char] = ACTIONS(2541), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_nil] = ACTIONS(491), - [sym_atom] = ACTIONS(2541), - [anon_sym_DQUOTE] = ACTIONS(493), - [anon_sym_SQUOTE] = ACTIONS(495), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(497), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(499), - [anon_sym_LBRACE] = ACTIONS(501), - [anon_sym_LBRACK] = ACTIONS(503), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(505), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(515), - [anon_sym_CARET] = ACTIONS(515), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(515), - [anon_sym_not] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(517), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(519), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(523), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(525), - }, - [873] = { - [sym__expression] = STATE(3551), - [sym_block] = STATE(3551), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3551), - [sym_nil] = STATE(3551), - [sym__atom] = STATE(3551), - [sym_quoted_atom] = STATE(3551), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3551), - [sym_charlist] = STATE(3551), - [sym_sigil] = STATE(3551), - [sym_list] = STATE(3551), - [sym_tuple] = STATE(3551), - [sym_bitstring] = STATE(3551), - [sym_map] = STATE(3551), - [sym_unary_operator] = STATE(3551), - [sym_binary_operator] = STATE(3551), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3551), - [sym_call] = STATE(3551), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3551), - [sym_anonymous_function] = STATE(3551), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2543), - [sym_integer] = ACTIONS(2543), - [sym_float] = ACTIONS(2543), - [sym_char] = ACTIONS(2543), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2543), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [874] = { - [sym__expression] = STATE(1912), - [sym_block] = STATE(1912), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(1912), - [sym_nil] = STATE(1912), - [sym__atom] = STATE(1912), - [sym_quoted_atom] = STATE(1912), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(1912), - [sym_charlist] = STATE(1912), - [sym_sigil] = STATE(1912), - [sym_list] = STATE(1912), - [sym_tuple] = STATE(1912), - [sym_bitstring] = STATE(1912), - [sym_map] = STATE(1912), - [sym_unary_operator] = STATE(1912), - [sym_binary_operator] = STATE(1912), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(1912), - [sym_call] = STATE(1912), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(1912), - [sym_anonymous_function] = STATE(1912), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(944), - [anon_sym___MODULE__] = ACTIONS(71), - [anon_sym___DIR__] = ACTIONS(71), - [anon_sym___ENV__] = ACTIONS(71), - [anon_sym___CALLER__] = ACTIONS(71), - [anon_sym___STACKTRACE__] = ACTIONS(71), - [sym_alias] = ACTIONS(2545), - [sym_integer] = ACTIONS(2545), - [sym_float] = ACTIONS(2545), - [sym_char] = ACTIONS(2545), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(2545), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(972), - [anon_sym_CARET] = ACTIONS(972), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), - [anon_sym_not] = ACTIONS(972), - [anon_sym_AT] = ACTIONS(974), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(980), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [875] = { - [sym__expression] = STATE(2642), - [sym_block] = STATE(2642), - [sym__identifier] = STATE(45), - [sym_identifier] = STATE(45), - [sym_special_identifier] = STATE(45), - [sym_boolean] = STATE(2642), - [sym_nil] = STATE(2642), - [sym__atom] = STATE(2642), - [sym_quoted_atom] = STATE(2642), - [sym__quoted_i_double] = STATE(2714), - [sym__quoted_i_single] = STATE(2713), - [sym__quoted_i_heredoc_single] = STATE(2713), - [sym__quoted_i_heredoc_double] = STATE(2714), - [sym_string] = STATE(2642), - [sym_charlist] = STATE(2642), - [sym_sigil] = STATE(2642), - [sym_list] = STATE(2642), - [sym_tuple] = STATE(2642), - [sym_bitstring] = STATE(2642), - [sym_map] = STATE(2642), - [sym_unary_operator] = STATE(2642), - [sym_binary_operator] = STATE(2642), - [sym_operator_identifier] = STATE(4988), - [sym_dot] = STATE(2642), - [sym_call] = STATE(2642), - [sym__call_without_parentheses] = STATE(2712), - [sym__call_with_parentheses] = STATE(2711), - [sym__local_call_without_parentheses] = STATE(2710), - [sym__local_call_with_parentheses] = STATE(1879), - [sym__local_call_just_do_block] = STATE(2709), - [sym__remote_call_without_parentheses] = STATE(2708), - [sym__remote_call_with_parentheses] = STATE(1859), - [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1919), - [sym__anonymous_dot] = STATE(4871), - [sym__double_call] = STATE(2707), - [sym_access_call] = STATE(2642), - [sym_anonymous_function] = STATE(2642), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(479), - [aux_sym_identifier_token1] = ACTIONS(481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(481), - [sym_unused_identifier] = ACTIONS(483), - [anon_sym___MODULE__] = ACTIONS(485), - [anon_sym___DIR__] = ACTIONS(485), - [anon_sym___ENV__] = ACTIONS(485), - [anon_sym___CALLER__] = ACTIONS(485), - [anon_sym___STACKTRACE__] = ACTIONS(485), - [sym_alias] = ACTIONS(2547), - [sym_integer] = ACTIONS(2547), - [sym_float] = ACTIONS(2547), - [sym_char] = ACTIONS(2547), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_nil] = ACTIONS(491), - [sym_atom] = ACTIONS(2547), - [anon_sym_DQUOTE] = ACTIONS(493), - [anon_sym_SQUOTE] = ACTIONS(495), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(497), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(499), - [anon_sym_LBRACE] = ACTIONS(501), - [anon_sym_LBRACK] = ACTIONS(503), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(505), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(515), - [anon_sym_CARET] = ACTIONS(515), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(515), - [anon_sym_not] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(517), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(519), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(523), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(525), - }, - [876] = { - [sym__expression] = STATE(2633), - [sym_block] = STATE(2633), - [sym__identifier] = STATE(45), - [sym_identifier] = STATE(45), - [sym_special_identifier] = STATE(45), - [sym_boolean] = STATE(2633), - [sym_nil] = STATE(2633), - [sym__atom] = STATE(2633), - [sym_quoted_atom] = STATE(2633), - [sym__quoted_i_double] = STATE(2714), - [sym__quoted_i_single] = STATE(2713), - [sym__quoted_i_heredoc_single] = STATE(2713), - [sym__quoted_i_heredoc_double] = STATE(2714), - [sym_string] = STATE(2633), - [sym_charlist] = STATE(2633), - [sym_sigil] = STATE(2633), - [sym_list] = STATE(2633), - [sym_tuple] = STATE(2633), - [sym_bitstring] = STATE(2633), - [sym_map] = STATE(2633), - [sym_unary_operator] = STATE(2633), - [sym_binary_operator] = STATE(2633), - [sym_operator_identifier] = STATE(4988), - [sym_dot] = STATE(2633), - [sym_call] = STATE(2633), - [sym__call_without_parentheses] = STATE(2712), - [sym__call_with_parentheses] = STATE(2711), - [sym__local_call_without_parentheses] = STATE(2710), - [sym__local_call_with_parentheses] = STATE(1879), - [sym__local_call_just_do_block] = STATE(2709), - [sym__remote_call_without_parentheses] = STATE(2708), - [sym__remote_call_with_parentheses] = STATE(1859), - [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1919), - [sym__anonymous_dot] = STATE(4871), - [sym__double_call] = STATE(2707), - [sym_access_call] = STATE(2633), - [sym_anonymous_function] = STATE(2633), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(479), - [aux_sym_identifier_token1] = ACTIONS(481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(481), - [sym_unused_identifier] = ACTIONS(483), - [anon_sym___MODULE__] = ACTIONS(485), - [anon_sym___DIR__] = ACTIONS(485), - [anon_sym___ENV__] = ACTIONS(485), - [anon_sym___CALLER__] = ACTIONS(485), - [anon_sym___STACKTRACE__] = ACTIONS(485), - [sym_alias] = ACTIONS(2549), - [sym_integer] = ACTIONS(2549), - [sym_float] = ACTIONS(2549), - [sym_char] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_nil] = ACTIONS(491), - [sym_atom] = ACTIONS(2549), - [anon_sym_DQUOTE] = ACTIONS(493), - [anon_sym_SQUOTE] = ACTIONS(495), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(497), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(499), - [anon_sym_LBRACE] = ACTIONS(501), - [anon_sym_LBRACK] = ACTIONS(503), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(505), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(515), - [anon_sym_CARET] = ACTIONS(515), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(515), - [anon_sym_not] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(517), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(519), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(523), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(525), - }, - [877] = { - [sym__expression] = STATE(2644), - [sym_block] = STATE(2644), - [sym__identifier] = STATE(45), - [sym_identifier] = STATE(45), - [sym_special_identifier] = STATE(45), - [sym_boolean] = STATE(2644), - [sym_nil] = STATE(2644), - [sym__atom] = STATE(2644), - [sym_quoted_atom] = STATE(2644), - [sym__quoted_i_double] = STATE(2714), - [sym__quoted_i_single] = STATE(2713), - [sym__quoted_i_heredoc_single] = STATE(2713), - [sym__quoted_i_heredoc_double] = STATE(2714), - [sym_string] = STATE(2644), - [sym_charlist] = STATE(2644), - [sym_sigil] = STATE(2644), - [sym_list] = STATE(2644), - [sym_tuple] = STATE(2644), - [sym_bitstring] = STATE(2644), - [sym_map] = STATE(2644), - [sym_unary_operator] = STATE(2644), - [sym_binary_operator] = STATE(2644), - [sym_operator_identifier] = STATE(4988), - [sym_dot] = STATE(2644), - [sym_call] = STATE(2644), - [sym__call_without_parentheses] = STATE(2712), - [sym__call_with_parentheses] = STATE(2711), - [sym__local_call_without_parentheses] = STATE(2710), - [sym__local_call_with_parentheses] = STATE(1879), - [sym__local_call_just_do_block] = STATE(2709), - [sym__remote_call_without_parentheses] = STATE(2708), - [sym__remote_call_with_parentheses] = STATE(1859), - [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1919), - [sym__anonymous_dot] = STATE(4871), - [sym__double_call] = STATE(2707), - [sym_access_call] = STATE(2644), - [sym_anonymous_function] = STATE(2644), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(479), - [aux_sym_identifier_token1] = ACTIONS(481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(481), - [sym_unused_identifier] = ACTIONS(483), - [anon_sym___MODULE__] = ACTIONS(485), - [anon_sym___DIR__] = ACTIONS(485), - [anon_sym___ENV__] = ACTIONS(485), - [anon_sym___CALLER__] = ACTIONS(485), - [anon_sym___STACKTRACE__] = ACTIONS(485), - [sym_alias] = ACTIONS(2551), - [sym_integer] = ACTIONS(2551), - [sym_float] = ACTIONS(2551), - [sym_char] = ACTIONS(2551), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_nil] = ACTIONS(491), - [sym_atom] = ACTIONS(2551), - [anon_sym_DQUOTE] = ACTIONS(493), - [anon_sym_SQUOTE] = ACTIONS(495), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(497), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(499), - [anon_sym_LBRACE] = ACTIONS(501), - [anon_sym_LBRACK] = ACTIONS(503), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(505), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(515), - [anon_sym_CARET] = ACTIONS(515), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(515), - [anon_sym_not] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(517), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(519), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(523), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(525), - }, - [878] = { - [sym__expression] = STATE(1432), - [sym_block] = STATE(1432), - [sym__identifier] = STATE(14), - [sym_identifier] = STATE(14), - [sym_special_identifier] = STATE(14), - [sym_boolean] = STATE(1432), - [sym_nil] = STATE(1432), - [sym__atom] = STATE(1432), - [sym_quoted_atom] = STATE(1432), - [sym__quoted_i_double] = STATE(1389), - [sym__quoted_i_single] = STATE(1390), - [sym__quoted_i_heredoc_single] = STATE(1390), - [sym__quoted_i_heredoc_double] = STATE(1389), - [sym_string] = STATE(1432), - [sym_charlist] = STATE(1432), - [sym_sigil] = STATE(1432), - [sym_list] = STATE(1432), - [sym_tuple] = STATE(1432), - [sym_bitstring] = STATE(1432), - [sym_map] = STATE(1432), - [sym_unary_operator] = STATE(1432), - [sym_binary_operator] = STATE(1432), - [sym_operator_identifier] = STATE(5035), - [sym_dot] = STATE(1432), - [sym_call] = STATE(1432), - [sym__call_without_parentheses] = STATE(1391), - [sym__call_with_parentheses] = STATE(1414), - [sym__local_call_without_parentheses] = STATE(1415), - [sym__local_call_with_parentheses] = STATE(1106), - [sym__local_call_just_do_block] = STATE(1417), - [sym__remote_call_without_parentheses] = STATE(1418), - [sym__remote_call_with_parentheses] = STATE(1105), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1104), - [sym__anonymous_dot] = STATE(4849), - [sym__double_call] = STATE(1423), - [sym_access_call] = STATE(1432), - [sym_anonymous_function] = STATE(1432), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(193), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(197), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), - [sym_alias] = ACTIONS(1795), - [sym_integer] = ACTIONS(1795), - [sym_float] = ACTIONS(1795), - [sym_char] = ACTIONS(1795), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1795), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(222), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(230), - [anon_sym_PLUS] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_CARET] = ACTIONS(235), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(235), - [anon_sym_not] = ACTIONS(235), - [anon_sym_AT] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(239), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(243), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(248), - }, - [879] = { - [sym__expression] = STATE(1942), - [sym_block] = STATE(1942), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(1942), - [sym_nil] = STATE(1942), - [sym__atom] = STATE(1942), - [sym_quoted_atom] = STATE(1942), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(1942), - [sym_charlist] = STATE(1942), - [sym_sigil] = STATE(1942), - [sym_list] = STATE(1942), - [sym_tuple] = STATE(1942), - [sym_bitstring] = STATE(1942), - [sym_map] = STATE(1942), - [sym_unary_operator] = STATE(1942), - [sym_binary_operator] = STATE(1942), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(1942), - [sym_call] = STATE(1942), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(1942), - [sym_anonymous_function] = STATE(1942), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(944), - [anon_sym___MODULE__] = ACTIONS(71), - [anon_sym___DIR__] = ACTIONS(71), - [anon_sym___ENV__] = ACTIONS(71), - [anon_sym___CALLER__] = ACTIONS(71), - [anon_sym___STACKTRACE__] = ACTIONS(71), - [sym_alias] = ACTIONS(2553), - [sym_integer] = ACTIONS(2553), - [sym_float] = ACTIONS(2553), - [sym_char] = ACTIONS(2553), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(2553), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(972), - [anon_sym_CARET] = ACTIONS(972), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), - [anon_sym_not] = ACTIONS(972), - [anon_sym_AT] = ACTIONS(974), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(980), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [880] = { - [sym__expression] = STATE(2647), - [sym_block] = STATE(2647), - [sym__identifier] = STATE(45), - [sym_identifier] = STATE(45), - [sym_special_identifier] = STATE(45), - [sym_boolean] = STATE(2647), - [sym_nil] = STATE(2647), - [sym__atom] = STATE(2647), - [sym_quoted_atom] = STATE(2647), - [sym__quoted_i_double] = STATE(2714), - [sym__quoted_i_single] = STATE(2713), - [sym__quoted_i_heredoc_single] = STATE(2713), - [sym__quoted_i_heredoc_double] = STATE(2714), - [sym_string] = STATE(2647), - [sym_charlist] = STATE(2647), - [sym_sigil] = STATE(2647), - [sym_list] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_bitstring] = STATE(2647), - [sym_map] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_binary_operator] = STATE(2647), - [sym_operator_identifier] = STATE(4988), - [sym_dot] = STATE(2647), - [sym_call] = STATE(2647), - [sym__call_without_parentheses] = STATE(2712), - [sym__call_with_parentheses] = STATE(2711), - [sym__local_call_without_parentheses] = STATE(2710), - [sym__local_call_with_parentheses] = STATE(1879), - [sym__local_call_just_do_block] = STATE(2709), - [sym__remote_call_without_parentheses] = STATE(2708), - [sym__remote_call_with_parentheses] = STATE(1859), - [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1919), - [sym__anonymous_dot] = STATE(4871), - [sym__double_call] = STATE(2707), - [sym_access_call] = STATE(2647), - [sym_anonymous_function] = STATE(2647), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(479), - [aux_sym_identifier_token1] = ACTIONS(481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(481), - [sym_unused_identifier] = ACTIONS(483), - [anon_sym___MODULE__] = ACTIONS(485), - [anon_sym___DIR__] = ACTIONS(485), - [anon_sym___ENV__] = ACTIONS(485), - [anon_sym___CALLER__] = ACTIONS(485), - [anon_sym___STACKTRACE__] = ACTIONS(485), - [sym_alias] = ACTIONS(2555), - [sym_integer] = ACTIONS(2555), - [sym_float] = ACTIONS(2555), - [sym_char] = ACTIONS(2555), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_nil] = ACTIONS(491), - [sym_atom] = ACTIONS(2555), - [anon_sym_DQUOTE] = ACTIONS(493), - [anon_sym_SQUOTE] = ACTIONS(495), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(497), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(499), - [anon_sym_LBRACE] = ACTIONS(501), - [anon_sym_LBRACK] = ACTIONS(503), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(505), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(515), - [anon_sym_CARET] = ACTIONS(515), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(515), - [anon_sym_not] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(517), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(519), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(523), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(525), - }, - [881] = { - [sym__expression] = STATE(2648), - [sym_block] = STATE(2648), - [sym__identifier] = STATE(45), - [sym_identifier] = STATE(45), - [sym_special_identifier] = STATE(45), - [sym_boolean] = STATE(2648), - [sym_nil] = STATE(2648), - [sym__atom] = STATE(2648), - [sym_quoted_atom] = STATE(2648), - [sym__quoted_i_double] = STATE(2714), - [sym__quoted_i_single] = STATE(2713), - [sym__quoted_i_heredoc_single] = STATE(2713), - [sym__quoted_i_heredoc_double] = STATE(2714), - [sym_string] = STATE(2648), - [sym_charlist] = STATE(2648), - [sym_sigil] = STATE(2648), - [sym_list] = STATE(2648), - [sym_tuple] = STATE(2648), - [sym_bitstring] = STATE(2648), - [sym_map] = STATE(2648), - [sym_unary_operator] = STATE(2648), - [sym_binary_operator] = STATE(2648), - [sym_operator_identifier] = STATE(4988), - [sym_dot] = STATE(2648), - [sym_call] = STATE(2648), - [sym__call_without_parentheses] = STATE(2712), - [sym__call_with_parentheses] = STATE(2711), - [sym__local_call_without_parentheses] = STATE(2710), - [sym__local_call_with_parentheses] = STATE(1879), - [sym__local_call_just_do_block] = STATE(2709), - [sym__remote_call_without_parentheses] = STATE(2708), - [sym__remote_call_with_parentheses] = STATE(1859), - [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1919), - [sym__anonymous_dot] = STATE(4871), - [sym__double_call] = STATE(2707), - [sym_access_call] = STATE(2648), - [sym_anonymous_function] = STATE(2648), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(479), - [aux_sym_identifier_token1] = ACTIONS(481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(481), - [sym_unused_identifier] = ACTIONS(483), - [anon_sym___MODULE__] = ACTIONS(485), - [anon_sym___DIR__] = ACTIONS(485), - [anon_sym___ENV__] = ACTIONS(485), - [anon_sym___CALLER__] = ACTIONS(485), - [anon_sym___STACKTRACE__] = ACTIONS(485), - [sym_alias] = ACTIONS(2557), - [sym_integer] = ACTIONS(2557), - [sym_float] = ACTIONS(2557), - [sym_char] = ACTIONS(2557), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_nil] = ACTIONS(491), - [sym_atom] = ACTIONS(2557), - [anon_sym_DQUOTE] = ACTIONS(493), - [anon_sym_SQUOTE] = ACTIONS(495), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(497), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(499), - [anon_sym_LBRACE] = ACTIONS(501), - [anon_sym_LBRACK] = ACTIONS(503), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(505), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(515), - [anon_sym_CARET] = ACTIONS(515), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(515), - [anon_sym_not] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(517), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(519), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(523), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(525), - }, - [882] = { - [sym__expression] = STATE(1349), - [sym_block] = STATE(1349), - [sym__identifier] = STATE(18), - [sym_identifier] = STATE(18), - [sym_special_identifier] = STATE(18), - [sym_boolean] = STATE(1349), - [sym_nil] = STATE(1349), - [sym__atom] = STATE(1349), - [sym_quoted_atom] = STATE(1349), - [sym__quoted_i_double] = STATE(1259), - [sym__quoted_i_single] = STATE(1258), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(1349), - [sym_charlist] = STATE(1349), - [sym_sigil] = STATE(1349), - [sym_list] = STATE(1349), - [sym_tuple] = STATE(1349), - [sym_bitstring] = STATE(1349), - [sym_map] = STATE(1349), - [sym_unary_operator] = STATE(1349), - [sym_binary_operator] = STATE(1349), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(1349), - [sym_call] = STATE(1349), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(1349), - [sym_anonymous_function] = STATE(1349), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(256), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), - [sym_alias] = ACTIONS(2559), - [sym_integer] = ACTIONS(2559), - [sym_float] = ACTIONS(2559), - [sym_char] = ACTIONS(2559), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(2559), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(286), - [anon_sym_not] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(294), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), - }, - [883] = { - [sym__expression] = STATE(3543), - [sym_block] = STATE(3543), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(3543), - [sym_nil] = STATE(3543), - [sym__atom] = STATE(3543), - [sym_quoted_atom] = STATE(3543), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(3543), - [sym_charlist] = STATE(3543), - [sym_sigil] = STATE(3543), - [sym_list] = STATE(3543), - [sym_tuple] = STATE(3543), - [sym_bitstring] = STATE(3543), - [sym_map] = STATE(3543), - [sym_unary_operator] = STATE(3543), - [sym_binary_operator] = STATE(3543), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(3543), - [sym_call] = STATE(3543), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(3543), - [sym_anonymous_function] = STATE(3543), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2561), - [sym_integer] = ACTIONS(2561), - [sym_float] = ACTIONS(2561), - [sym_char] = ACTIONS(2561), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), - }, - [884] = { - [sym__expression] = STATE(2660), - [sym_block] = STATE(2660), - [sym__identifier] = STATE(45), - [sym_identifier] = STATE(45), - [sym_special_identifier] = STATE(45), - [sym_boolean] = STATE(2660), - [sym_nil] = STATE(2660), - [sym__atom] = STATE(2660), - [sym_quoted_atom] = STATE(2660), - [sym__quoted_i_double] = STATE(2714), - [sym__quoted_i_single] = STATE(2713), - [sym__quoted_i_heredoc_single] = STATE(2713), - [sym__quoted_i_heredoc_double] = STATE(2714), - [sym_string] = STATE(2660), - [sym_charlist] = STATE(2660), - [sym_sigil] = STATE(2660), - [sym_list] = STATE(2660), - [sym_tuple] = STATE(2660), - [sym_bitstring] = STATE(2660), - [sym_map] = STATE(2660), - [sym_unary_operator] = STATE(2660), - [sym_binary_operator] = STATE(2660), - [sym_operator_identifier] = STATE(4988), - [sym_dot] = STATE(2660), - [sym_call] = STATE(2660), - [sym__call_without_parentheses] = STATE(2712), - [sym__call_with_parentheses] = STATE(2711), - [sym__local_call_without_parentheses] = STATE(2710), - [sym__local_call_with_parentheses] = STATE(1879), - [sym__local_call_just_do_block] = STATE(2709), - [sym__remote_call_without_parentheses] = STATE(2708), - [sym__remote_call_with_parentheses] = STATE(1859), - [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1919), - [sym__anonymous_dot] = STATE(4871), - [sym__double_call] = STATE(2707), - [sym_access_call] = STATE(2660), - [sym_anonymous_function] = STATE(2660), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(479), - [aux_sym_identifier_token1] = ACTIONS(481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(481), - [sym_unused_identifier] = ACTIONS(483), - [anon_sym___MODULE__] = ACTIONS(485), - [anon_sym___DIR__] = ACTIONS(485), - [anon_sym___ENV__] = ACTIONS(485), - [anon_sym___CALLER__] = ACTIONS(485), - [anon_sym___STACKTRACE__] = ACTIONS(485), - [sym_alias] = ACTIONS(2563), - [sym_integer] = ACTIONS(2563), - [sym_float] = ACTIONS(2563), - [sym_char] = ACTIONS(2563), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_nil] = ACTIONS(491), - [sym_atom] = ACTIONS(2563), - [anon_sym_DQUOTE] = ACTIONS(493), - [anon_sym_SQUOTE] = ACTIONS(495), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(497), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(499), - [anon_sym_LBRACE] = ACTIONS(501), - [anon_sym_LBRACK] = ACTIONS(503), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(505), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(515), - [anon_sym_CARET] = ACTIONS(515), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(515), - [anon_sym_not] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(517), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(519), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(523), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(525), - }, [885] = { - [sym__expression] = STATE(2661), - [sym_block] = STATE(2661), - [sym__identifier] = STATE(45), - [sym_identifier] = STATE(45), - [sym_special_identifier] = STATE(45), - [sym_boolean] = STATE(2661), - [sym_nil] = STATE(2661), - [sym__atom] = STATE(2661), - [sym_quoted_atom] = STATE(2661), - [sym__quoted_i_double] = STATE(2714), - [sym__quoted_i_single] = STATE(2713), - [sym__quoted_i_heredoc_single] = STATE(2713), - [sym__quoted_i_heredoc_double] = STATE(2714), - [sym_string] = STATE(2661), - [sym_charlist] = STATE(2661), - [sym_sigil] = STATE(2661), - [sym_list] = STATE(2661), - [sym_tuple] = STATE(2661), - [sym_bitstring] = STATE(2661), - [sym_map] = STATE(2661), - [sym_unary_operator] = STATE(2661), - [sym_binary_operator] = STATE(2661), - [sym_operator_identifier] = STATE(4988), - [sym_dot] = STATE(2661), - [sym_call] = STATE(2661), - [sym__call_without_parentheses] = STATE(2712), - [sym__call_with_parentheses] = STATE(2711), - [sym__local_call_without_parentheses] = STATE(2710), - [sym__local_call_with_parentheses] = STATE(1879), - [sym__local_call_just_do_block] = STATE(2709), - [sym__remote_call_without_parentheses] = STATE(2708), - [sym__remote_call_with_parentheses] = STATE(1859), - [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1919), - [sym__anonymous_dot] = STATE(4871), - [sym__double_call] = STATE(2707), - [sym_access_call] = STATE(2661), - [sym_anonymous_function] = STATE(2661), + [sym__expression] = STATE(1726), + [sym_block] = STATE(1726), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1726), + [sym_nil] = STATE(1726), + [sym__atom] = STATE(1726), + [sym_quoted_atom] = STATE(1726), + [sym__quoted_i_double] = STATE(1540), + [sym__quoted_i_single] = STATE(1541), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1726), + [sym_charlist] = STATE(1726), + [sym_sigil] = STATE(1726), + [sym_list] = STATE(1726), + [sym_tuple] = STATE(1726), + [sym_bitstring] = STATE(1726), + [sym_map] = STATE(1726), + [sym_unary_operator] = STATE(1726), + [sym_binary_operator] = STATE(1726), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1726), + [sym_call] = STATE(1726), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1726), + [sym_anonymous_function] = STATE(1726), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(479), - [aux_sym_identifier_token1] = ACTIONS(481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(481), - [sym_unused_identifier] = ACTIONS(483), - [anon_sym___MODULE__] = ACTIONS(485), - [anon_sym___DIR__] = ACTIONS(485), - [anon_sym___ENV__] = ACTIONS(485), - [anon_sym___CALLER__] = ACTIONS(485), - [anon_sym___STACKTRACE__] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(1337), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), [sym_alias] = ACTIONS(2565), [sym_integer] = ACTIONS(2565), [sym_float] = ACTIONS(2565), [sym_char] = ACTIONS(2565), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_nil] = ACTIONS(491), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), [sym_atom] = ACTIONS(2565), - [anon_sym_DQUOTE] = ACTIONS(493), - [anon_sym_SQUOTE] = ACTIONS(495), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(497), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(499), - [anon_sym_LBRACE] = ACTIONS(501), - [anon_sym_LBRACK] = ACTIONS(503), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(505), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(515), - [anon_sym_CARET] = ACTIONS(515), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(515), - [anon_sym_not] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -137661,71 +138299,321 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(519), + [anon_sym_fn] = ACTIONS(115), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(523), + [sym__before_unary_op] = ACTIONS(119), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(525), + [sym__quoted_atom_start] = ACTIONS(121), }, [886] = { - [sym__expression] = STATE(1828), - [sym_block] = STATE(1828), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(1828), - [sym_nil] = STATE(1828), - [sym__atom] = STATE(1828), - [sym_quoted_atom] = STATE(1828), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(1828), - [sym_charlist] = STATE(1828), - [sym_sigil] = STATE(1828), - [sym_list] = STATE(1828), - [sym_tuple] = STATE(1828), - [sym_bitstring] = STATE(1828), - [sym_map] = STATE(1828), - [sym_unary_operator] = STATE(1828), - [sym_binary_operator] = STATE(1828), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(1828), - [sym_call] = STATE(1828), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(1828), - [sym_anonymous_function] = STATE(1828), + [sym__expression] = STATE(1642), + [sym_block] = STATE(1642), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1642), + [sym_nil] = STATE(1642), + [sym__atom] = STATE(1642), + [sym_quoted_atom] = STATE(1642), + [sym__quoted_i_double] = STATE(1540), + [sym__quoted_i_single] = STATE(1541), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1642), + [sym_charlist] = STATE(1642), + [sym_sigil] = STATE(1642), + [sym_list] = STATE(1642), + [sym_tuple] = STATE(1642), + [sym_bitstring] = STATE(1642), + [sym_map] = STATE(1642), + [sym_unary_operator] = STATE(1642), + [sym_binary_operator] = STATE(1642), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1642), + [sym_call] = STATE(1642), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1642), + [sym_anonymous_function] = STATE(1642), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(1337), [aux_sym_identifier_token1] = ACTIONS(67), [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(944), + [sym_unused_identifier] = ACTIONS(69), [anon_sym___MODULE__] = ACTIONS(71), [anon_sym___DIR__] = ACTIONS(71), [anon_sym___ENV__] = ACTIONS(71), [anon_sym___CALLER__] = ACTIONS(71), [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(1931), + [sym_integer] = ACTIONS(1931), + [sym_float] = ACTIONS(1931), + [sym_char] = ACTIONS(1931), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1931), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [887] = { + [sym__expression] = STATE(1521), + [sym_block] = STATE(1521), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1521), + [sym_nil] = STATE(1521), + [sym__atom] = STATE(1521), + [sym_quoted_atom] = STATE(1521), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(1521), + [sym_charlist] = STATE(1521), + [sym_sigil] = STATE(1521), + [sym_list] = STATE(1521), + [sym_tuple] = STATE(1521), + [sym_bitstring] = STATE(1521), + [sym_map] = STATE(1521), + [sym_unary_operator] = STATE(1521), + [sym_binary_operator] = STATE(1521), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(1521), + [sym_call] = STATE(1521), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(1521), + [sym_anonymous_function] = STATE(1521), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), [sym_alias] = ACTIONS(2567), [sym_integer] = ACTIONS(2567), [sym_float] = ACTIONS(2567), [sym_char] = ACTIONS(2567), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2567), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [888] = { + [sym__expression] = STATE(3669), + [sym_block] = STATE(3669), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(3669), + [sym_nil] = STATE(3669), + [sym__atom] = STATE(3669), + [sym_quoted_atom] = STATE(3669), + [sym__quoted_i_double] = STATE(1939), + [sym__quoted_i_single] = STATE(1942), + [sym__quoted_i_heredoc_single] = STATE(1759), + [sym__quoted_i_heredoc_double] = STATE(1760), + [sym_string] = STATE(3669), + [sym_charlist] = STATE(3669), + [sym_sigil] = STATE(3669), + [sym_list] = STATE(3669), + [sym_tuple] = STATE(3669), + [sym_bitstring] = STATE(3669), + [sym_map] = STATE(3669), + [sym_unary_operator] = STATE(3669), + [sym_binary_operator] = STATE(3669), + [sym_operator_identifier] = STATE(5604), + [sym_dot] = STATE(3669), + [sym_call] = STATE(3669), + [sym__call_without_parentheses] = STATE(1761), + [sym__call_with_parentheses] = STATE(1762), + [sym__local_call_without_parentheses] = STATE(1763), + [sym__local_call_with_parentheses] = STATE(1333), + [sym__local_call_just_do_block] = STATE(1765), + [sym__remote_call_without_parentheses] = STATE(1766), + [sym__remote_call_with_parentheses] = STATE(1334), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(1335), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(1770), + [sym_access_call] = STATE(3669), + [sym_anonymous_function] = STATE(3669), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1437), + [sym_unused_identifier] = ACTIONS(1439), + [anon_sym___MODULE__] = ACTIONS(1441), + [anon_sym___DIR__] = ACTIONS(1441), + [anon_sym___ENV__] = ACTIONS(1441), + [anon_sym___CALLER__] = ACTIONS(1441), + [anon_sym___STACKTRACE__] = ACTIONS(1441), + [sym_alias] = ACTIONS(2569), + [sym_integer] = ACTIONS(2569), + [sym_float] = ACTIONS(2569), + [sym_char] = ACTIONS(2569), [anon_sym_true] = ACTIONS(948), [anon_sym_false] = ACTIONS(948), [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(2567), + [sym_atom] = ACTIONS(2569), [anon_sym_DQUOTE] = ACTIONS(952), [anon_sym_SQUOTE] = ACTIONS(954), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), @@ -137736,17 +138624,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_TILDE] = ACTIONS(1445), [anon_sym_LT_LT] = ACTIONS(966), [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(972), - [anon_sym_CARET] = ACTIONS(972), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), - [anon_sym_not] = ACTIONS(972), - [anon_sym_AT] = ACTIONS(974), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1451), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), + [anon_sym_not] = ACTIONS(1451), + [anon_sym_AT] = ACTIONS(1453), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -137790,179 +138678,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(980), + [sym__before_unary_op] = ACTIONS(1455), [sym__not_in] = ACTIONS(57), [sym__quoted_atom_start] = ACTIONS(982), }, - [887] = { - [sym__expression] = STATE(1350), - [sym_block] = STATE(1350), - [sym__identifier] = STATE(18), - [sym_identifier] = STATE(18), - [sym_special_identifier] = STATE(18), - [sym_boolean] = STATE(1350), - [sym_nil] = STATE(1350), - [sym__atom] = STATE(1350), - [sym_quoted_atom] = STATE(1350), - [sym__quoted_i_double] = STATE(1259), - [sym__quoted_i_single] = STATE(1258), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(1350), - [sym_charlist] = STATE(1350), - [sym_sigil] = STATE(1350), - [sym_list] = STATE(1350), - [sym_tuple] = STATE(1350), - [sym_bitstring] = STATE(1350), - [sym_map] = STATE(1350), - [sym_unary_operator] = STATE(1350), - [sym_binary_operator] = STATE(1350), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(1350), - [sym_call] = STATE(1350), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(1350), - [sym_anonymous_function] = STATE(1350), + [889] = { + [sym__expression] = STATE(1725), + [sym_block] = STATE(1725), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1725), + [sym_nil] = STATE(1725), + [sym__atom] = STATE(1725), + [sym_quoted_atom] = STATE(1725), + [sym__quoted_i_double] = STATE(1540), + [sym__quoted_i_single] = STATE(1541), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1725), + [sym_charlist] = STATE(1725), + [sym_sigil] = STATE(1725), + [sym_list] = STATE(1725), + [sym_tuple] = STATE(1725), + [sym_bitstring] = STATE(1725), + [sym_map] = STATE(1725), + [sym_unary_operator] = STATE(1725), + [sym_binary_operator] = STATE(1725), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1725), + [sym_call] = STATE(1725), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1725), + [sym_anonymous_function] = STATE(1725), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(256), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), - [sym_alias] = ACTIONS(2569), - [sym_integer] = ACTIONS(2569), - [sym_float] = ACTIONS(2569), - [sym_char] = ACTIONS(2569), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(2569), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(286), - [anon_sym_not] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(294), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), - }, - [888] = { - [sym__expression] = STATE(1904), - [sym_block] = STATE(1904), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(1904), - [sym_nil] = STATE(1904), - [sym__atom] = STATE(1904), - [sym_quoted_atom] = STATE(1904), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(1904), - [sym_charlist] = STATE(1904), - [sym_sigil] = STATE(1904), - [sym_list] = STATE(1904), - [sym_tuple] = STATE(1904), - [sym_bitstring] = STATE(1904), - [sym_map] = STATE(1904), - [sym_unary_operator] = STATE(1904), - [sym_binary_operator] = STATE(1904), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(1904), - [sym_call] = STATE(1904), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(1904), - [sym_anonymous_function] = STATE(1904), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(1337), [aux_sym_identifier_token1] = ACTIONS(67), [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(944), + [sym_unused_identifier] = ACTIONS(69), [anon_sym___MODULE__] = ACTIONS(71), [anon_sym___DIR__] = ACTIONS(71), [anon_sym___ENV__] = ACTIONS(71), @@ -137972,31 +138735,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(2571), [sym_float] = ACTIONS(2571), [sym_char] = ACTIONS(2571), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), [sym_atom] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(972), - [anon_sym_CARET] = ACTIONS(972), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), - [anon_sym_not] = ACTIONS(972), - [anon_sym_AT] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -138036,58 +138799,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(115), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(980), + [sym__before_unary_op] = ACTIONS(119), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), + [sym__quoted_atom_start] = ACTIONS(121), }, - [889] = { - [sym__expression] = STATE(1903), - [sym_block] = STATE(1903), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(1903), - [sym_nil] = STATE(1903), - [sym__atom] = STATE(1903), - [sym_quoted_atom] = STATE(1903), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(1903), - [sym_charlist] = STATE(1903), - [sym_sigil] = STATE(1903), - [sym_list] = STATE(1903), - [sym_tuple] = STATE(1903), - [sym_bitstring] = STATE(1903), - [sym_map] = STATE(1903), - [sym_unary_operator] = STATE(1903), - [sym_binary_operator] = STATE(1903), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(1903), - [sym_call] = STATE(1903), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(1903), - [sym_anonymous_function] = STATE(1903), + [890] = { + [sym__expression] = STATE(1669), + [sym_block] = STATE(1669), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1669), + [sym_nil] = STATE(1669), + [sym__atom] = STATE(1669), + [sym_quoted_atom] = STATE(1669), + [sym__quoted_i_double] = STATE(1540), + [sym__quoted_i_single] = STATE(1541), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1669), + [sym_charlist] = STATE(1669), + [sym_sigil] = STATE(1669), + [sym_list] = STATE(1669), + [sym_tuple] = STATE(1669), + [sym_bitstring] = STATE(1669), + [sym_map] = STATE(1669), + [sym_unary_operator] = STATE(1669), + [sym_binary_operator] = STATE(1669), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1669), + [sym_call] = STATE(1669), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1669), + [sym_anonymous_function] = STATE(1669), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(1337), [aux_sym_identifier_token1] = ACTIONS(67), [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(944), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(1969), + [sym_integer] = ACTIONS(1969), + [sym_float] = ACTIONS(1969), + [sym_char] = ACTIONS(1969), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1969), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [891] = { + [sym__expression] = STATE(1915), + [sym_block] = STATE(1915), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1915), + [sym_nil] = STATE(1915), + [sym__atom] = STATE(1915), + [sym_quoted_atom] = STATE(1915), + [sym__quoted_i_double] = STATE(1540), + [sym__quoted_i_single] = STATE(1541), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1915), + [sym_charlist] = STATE(1915), + [sym_sigil] = STATE(1915), + [sym_list] = STATE(1915), + [sym_tuple] = STATE(1915), + [sym_bitstring] = STATE(1915), + [sym_map] = STATE(1915), + [sym_unary_operator] = STATE(1915), + [sym_binary_operator] = STATE(1915), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1915), + [sym_call] = STATE(1915), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1915), + [sym_anonymous_function] = STATE(1915), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1337), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), [anon_sym___MODULE__] = ACTIONS(71), [anon_sym___DIR__] = ACTIONS(71), [anon_sym___ENV__] = ACTIONS(71), @@ -138097,31 +138985,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(2573), [sym_float] = ACTIONS(2573), [sym_char] = ACTIONS(2573), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), [sym_atom] = ACTIONS(2573), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(972), - [anon_sym_CARET] = ACTIONS(972), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), - [anon_sym_not] = ACTIONS(972), - [anon_sym_AT] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -138161,92 +139049,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(115), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(980), + [sym__before_unary_op] = ACTIONS(119), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), + [sym__quoted_atom_start] = ACTIONS(121), }, - [890] = { - [sym__expression] = STATE(2677), - [sym_block] = STATE(2677), - [sym__identifier] = STATE(45), - [sym_identifier] = STATE(45), - [sym_special_identifier] = STATE(45), - [sym_boolean] = STATE(2677), - [sym_nil] = STATE(2677), - [sym__atom] = STATE(2677), - [sym_quoted_atom] = STATE(2677), - [sym__quoted_i_double] = STATE(2714), - [sym__quoted_i_single] = STATE(2713), - [sym__quoted_i_heredoc_single] = STATE(2713), - [sym__quoted_i_heredoc_double] = STATE(2714), - [sym_string] = STATE(2677), - [sym_charlist] = STATE(2677), - [sym_sigil] = STATE(2677), - [sym_list] = STATE(2677), - [sym_tuple] = STATE(2677), - [sym_bitstring] = STATE(2677), - [sym_map] = STATE(2677), - [sym_unary_operator] = STATE(2677), - [sym_binary_operator] = STATE(2677), - [sym_operator_identifier] = STATE(4988), - [sym_dot] = STATE(2677), - [sym_call] = STATE(2677), - [sym__call_without_parentheses] = STATE(2712), - [sym__call_with_parentheses] = STATE(2711), - [sym__local_call_without_parentheses] = STATE(2710), - [sym__local_call_with_parentheses] = STATE(1879), - [sym__local_call_just_do_block] = STATE(2709), - [sym__remote_call_without_parentheses] = STATE(2708), - [sym__remote_call_with_parentheses] = STATE(1859), - [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1919), - [sym__anonymous_dot] = STATE(4871), - [sym__double_call] = STATE(2707), - [sym_access_call] = STATE(2677), - [sym_anonymous_function] = STATE(2677), + [892] = { + [sym__expression] = STATE(1914), + [sym_block] = STATE(1914), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1914), + [sym_nil] = STATE(1914), + [sym__atom] = STATE(1914), + [sym_quoted_atom] = STATE(1914), + [sym__quoted_i_double] = STATE(1540), + [sym__quoted_i_single] = STATE(1541), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1914), + [sym_charlist] = STATE(1914), + [sym_sigil] = STATE(1914), + [sym_list] = STATE(1914), + [sym_tuple] = STATE(1914), + [sym_bitstring] = STATE(1914), + [sym_map] = STATE(1914), + [sym_unary_operator] = STATE(1914), + [sym_binary_operator] = STATE(1914), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1914), + [sym_call] = STATE(1914), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1914), + [sym_anonymous_function] = STATE(1914), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(479), - [aux_sym_identifier_token1] = ACTIONS(481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(481), - [sym_unused_identifier] = ACTIONS(483), - [anon_sym___MODULE__] = ACTIONS(485), - [anon_sym___DIR__] = ACTIONS(485), - [anon_sym___ENV__] = ACTIONS(485), - [anon_sym___CALLER__] = ACTIONS(485), - [anon_sym___STACKTRACE__] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(1337), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), [sym_alias] = ACTIONS(2575), [sym_integer] = ACTIONS(2575), [sym_float] = ACTIONS(2575), [sym_char] = ACTIONS(2575), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_nil] = ACTIONS(491), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), [sym_atom] = ACTIONS(2575), - [anon_sym_DQUOTE] = ACTIONS(493), - [anon_sym_SQUOTE] = ACTIONS(495), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(497), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(499), - [anon_sym_LBRACE] = ACTIONS(501), - [anon_sym_LBRACK] = ACTIONS(503), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(505), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(515), - [anon_sym_CARET] = ACTIONS(515), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(515), - [anon_sym_not] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -138286,92 +139174,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(519), + [anon_sym_fn] = ACTIONS(115), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(523), + [sym__before_unary_op] = ACTIONS(119), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(525), + [sym__quoted_atom_start] = ACTIONS(121), }, - [891] = { - [sym__expression] = STATE(2678), - [sym_block] = STATE(2678), - [sym__identifier] = STATE(45), - [sym_identifier] = STATE(45), - [sym_special_identifier] = STATE(45), - [sym_boolean] = STATE(2678), - [sym_nil] = STATE(2678), - [sym__atom] = STATE(2678), - [sym_quoted_atom] = STATE(2678), - [sym__quoted_i_double] = STATE(2714), - [sym__quoted_i_single] = STATE(2713), - [sym__quoted_i_heredoc_single] = STATE(2713), - [sym__quoted_i_heredoc_double] = STATE(2714), - [sym_string] = STATE(2678), - [sym_charlist] = STATE(2678), - [sym_sigil] = STATE(2678), - [sym_list] = STATE(2678), - [sym_tuple] = STATE(2678), - [sym_bitstring] = STATE(2678), - [sym_map] = STATE(2678), - [sym_unary_operator] = STATE(2678), - [sym_binary_operator] = STATE(2678), - [sym_operator_identifier] = STATE(4988), - [sym_dot] = STATE(2678), - [sym_call] = STATE(2678), - [sym__call_without_parentheses] = STATE(2712), - [sym__call_with_parentheses] = STATE(2711), - [sym__local_call_without_parentheses] = STATE(2710), - [sym__local_call_with_parentheses] = STATE(1879), - [sym__local_call_just_do_block] = STATE(2709), - [sym__remote_call_without_parentheses] = STATE(2708), - [sym__remote_call_with_parentheses] = STATE(1859), - [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1919), - [sym__anonymous_dot] = STATE(4871), - [sym__double_call] = STATE(2707), - [sym_access_call] = STATE(2678), - [sym_anonymous_function] = STATE(2678), + [893] = { + [sym__expression] = STATE(1533), + [sym_block] = STATE(1533), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1533), + [sym_nil] = STATE(1533), + [sym__atom] = STATE(1533), + [sym_quoted_atom] = STATE(1533), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(1533), + [sym_charlist] = STATE(1533), + [sym_sigil] = STATE(1533), + [sym_list] = STATE(1533), + [sym_tuple] = STATE(1533), + [sym_bitstring] = STATE(1533), + [sym_map] = STATE(1533), + [sym_unary_operator] = STATE(1533), + [sym_binary_operator] = STATE(1533), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(1533), + [sym_call] = STATE(1533), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(1533), + [sym_anonymous_function] = STATE(1533), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(479), - [aux_sym_identifier_token1] = ACTIONS(481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(481), - [sym_unused_identifier] = ACTIONS(483), - [anon_sym___MODULE__] = ACTIONS(485), - [anon_sym___DIR__] = ACTIONS(485), - [anon_sym___ENV__] = ACTIONS(485), - [anon_sym___CALLER__] = ACTIONS(485), - [anon_sym___STACKTRACE__] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), [sym_alias] = ACTIONS(2577), [sym_integer] = ACTIONS(2577), [sym_float] = ACTIONS(2577), [sym_char] = ACTIONS(2577), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_nil] = ACTIONS(491), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), [sym_atom] = ACTIONS(2577), - [anon_sym_DQUOTE] = ACTIONS(493), - [anon_sym_SQUOTE] = ACTIONS(495), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(497), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(499), - [anon_sym_LBRACE] = ACTIONS(501), - [anon_sym_LBRACK] = ACTIONS(503), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(505), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(515), - [anon_sym_CARET] = ACTIONS(515), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(515), - [anon_sym_not] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -138411,28 +139299,403 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(519), + [anon_sym_fn] = ACTIONS(291), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(523), + [sym__before_unary_op] = ACTIONS(295), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(525), + [sym__quoted_atom_start] = ACTIONS(300), }, - [892] = { + [894] = { + [sym__expression] = STATE(1532), + [sym_block] = STATE(1532), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1532), + [sym_nil] = STATE(1532), + [sym__atom] = STATE(1532), + [sym_quoted_atom] = STATE(1532), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(1532), + [sym_charlist] = STATE(1532), + [sym_sigil] = STATE(1532), + [sym_list] = STATE(1532), + [sym_tuple] = STATE(1532), + [sym_bitstring] = STATE(1532), + [sym_map] = STATE(1532), + [sym_unary_operator] = STATE(1532), + [sym_binary_operator] = STATE(1532), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(1532), + [sym_call] = STATE(1532), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(1532), + [sym_anonymous_function] = STATE(1532), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2579), + [sym_integer] = ACTIONS(2579), + [sym_float] = ACTIONS(2579), + [sym_char] = ACTIONS(2579), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2579), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [895] = { + [sym__expression] = STATE(1912), + [sym_block] = STATE(1912), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1912), + [sym_nil] = STATE(1912), + [sym__atom] = STATE(1912), + [sym_quoted_atom] = STATE(1912), + [sym__quoted_i_double] = STATE(1540), + [sym__quoted_i_single] = STATE(1541), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1912), + [sym_charlist] = STATE(1912), + [sym_sigil] = STATE(1912), + [sym_list] = STATE(1912), + [sym_tuple] = STATE(1912), + [sym_bitstring] = STATE(1912), + [sym_map] = STATE(1912), + [sym_unary_operator] = STATE(1912), + [sym_binary_operator] = STATE(1912), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1912), + [sym_call] = STATE(1912), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1912), + [sym_anonymous_function] = STATE(1912), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1337), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(2581), + [sym_integer] = ACTIONS(2581), + [sym_float] = ACTIONS(2581), + [sym_char] = ACTIONS(2581), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(2581), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [896] = { + [sym__expression] = STATE(1911), + [sym_block] = STATE(1911), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1911), + [sym_nil] = STATE(1911), + [sym__atom] = STATE(1911), + [sym_quoted_atom] = STATE(1911), + [sym__quoted_i_double] = STATE(1540), + [sym__quoted_i_single] = STATE(1541), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1911), + [sym_charlist] = STATE(1911), + [sym_sigil] = STATE(1911), + [sym_list] = STATE(1911), + [sym_tuple] = STATE(1911), + [sym_bitstring] = STATE(1911), + [sym_map] = STATE(1911), + [sym_unary_operator] = STATE(1911), + [sym_binary_operator] = STATE(1911), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1911), + [sym_call] = STATE(1911), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1911), + [sym_anonymous_function] = STATE(1911), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1337), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(2583), + [sym_integer] = ACTIONS(2583), + [sym_float] = ACTIONS(2583), + [sym_char] = ACTIONS(2583), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(2583), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [897] = { [sym__expression] = STATE(1900), [sym_block] = STATE(1900), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), [sym_boolean] = STATE(1900), [sym_nil] = STATE(1900), [sym__atom] = STATE(1900), [sym_quoted_atom] = STATE(1900), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), + [sym__quoted_i_double] = STATE(1540), + [sym__quoted_i_single] = STATE(1541), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), [sym_string] = STATE(1900), [sym_charlist] = STATE(1900), [sym_sigil] = STATE(1900), @@ -138442,61 +139705,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_map] = STATE(1900), [sym_unary_operator] = STATE(1900), [sym_binary_operator] = STATE(1900), - [sym_operator_identifier] = STATE(4957), + [sym_operator_identifier] = STATE(5577), [sym_dot] = STATE(1900), [sym_call] = STATE(1900), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), [sym_access_call] = STATE(1900), [sym_anonymous_function] = STATE(1900), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(1337), [aux_sym_identifier_token1] = ACTIONS(67), [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(944), + [sym_unused_identifier] = ACTIONS(69), [anon_sym___MODULE__] = ACTIONS(71), [anon_sym___DIR__] = ACTIONS(71), [anon_sym___ENV__] = ACTIONS(71), [anon_sym___CALLER__] = ACTIONS(71), [anon_sym___STACKTRACE__] = ACTIONS(71), - [sym_alias] = ACTIONS(2579), - [sym_integer] = ACTIONS(2579), - [sym_float] = ACTIONS(2579), - [sym_char] = ACTIONS(2579), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(2579), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), + [sym_alias] = ACTIONS(2585), + [sym_integer] = ACTIONS(2585), + [sym_float] = ACTIONS(2585), + [sym_char] = ACTIONS(2585), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(2585), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(972), - [anon_sym_CARET] = ACTIONS(972), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), - [anon_sym_not] = ACTIONS(972), - [anon_sym_AT] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -138536,467 +139799,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(115), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(980), + [sym__before_unary_op] = ACTIONS(119), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), + [sym__quoted_atom_start] = ACTIONS(121), }, - [893] = { - [sym__expression] = STATE(1351), - [sym_block] = STATE(1351), - [sym__identifier] = STATE(18), - [sym_identifier] = STATE(18), - [sym_special_identifier] = STATE(18), - [sym_boolean] = STATE(1351), - [sym_nil] = STATE(1351), - [sym__atom] = STATE(1351), - [sym_quoted_atom] = STATE(1351), - [sym__quoted_i_double] = STATE(1259), - [sym__quoted_i_single] = STATE(1258), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(1351), - [sym_charlist] = STATE(1351), - [sym_sigil] = STATE(1351), - [sym_list] = STATE(1351), - [sym_tuple] = STATE(1351), - [sym_bitstring] = STATE(1351), - [sym_map] = STATE(1351), - [sym_unary_operator] = STATE(1351), - [sym_binary_operator] = STATE(1351), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(1351), - [sym_call] = STATE(1351), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(1351), - [sym_anonymous_function] = STATE(1351), + [898] = { + [sym__expression] = STATE(1529), + [sym_block] = STATE(1529), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1529), + [sym_nil] = STATE(1529), + [sym__atom] = STATE(1529), + [sym_quoted_atom] = STATE(1529), + [sym__quoted_i_double] = STATE(1429), + [sym__quoted_i_single] = STATE(1470), + [sym__quoted_i_heredoc_single] = STATE(1471), + [sym__quoted_i_heredoc_double] = STATE(1472), + [sym_string] = STATE(1529), + [sym_charlist] = STATE(1529), + [sym_sigil] = STATE(1529), + [sym_list] = STATE(1529), + [sym_tuple] = STATE(1529), + [sym_bitstring] = STATE(1529), + [sym_map] = STATE(1529), + [sym_unary_operator] = STATE(1529), + [sym_binary_operator] = STATE(1529), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(1529), + [sym_call] = STATE(1529), + [sym__call_without_parentheses] = STATE(1473), + [sym__call_with_parentheses] = STATE(1474), + [sym__local_call_without_parentheses] = STATE(1475), + [sym__local_call_with_parentheses] = STATE(1119), + [sym__local_call_just_do_block] = STATE(1476), + [sym__remote_call_without_parentheses] = STATE(1478), + [sym__remote_call_with_parentheses] = STATE(1121), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1115), + [sym__anonymous_dot] = STATE(5467), + [sym__double_call] = STATE(1481), + [sym_access_call] = STATE(1529), + [sym_anonymous_function] = STATE(1529), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), + [anon_sym_LPAREN] = ACTIONS(249), [aux_sym_identifier_token1] = ACTIONS(195), [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(256), + [sym_unused_identifier] = ACTIONS(251), [anon_sym___MODULE__] = ACTIONS(199), [anon_sym___DIR__] = ACTIONS(199), [anon_sym___ENV__] = ACTIONS(199), [anon_sym___CALLER__] = ACTIONS(199), [anon_sym___STACKTRACE__] = ACTIONS(199), - [sym_alias] = ACTIONS(2581), - [sym_integer] = ACTIONS(2581), - [sym_float] = ACTIONS(2581), - [sym_char] = ACTIONS(2581), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(2581), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(286), - [anon_sym_not] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(294), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), - }, - [894] = { - [sym__expression] = STATE(3526), - [sym_block] = STATE(3526), - [sym__identifier] = STATE(64), - [sym_identifier] = STATE(64), - [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3526), - [sym_nil] = STATE(3526), - [sym__atom] = STATE(3526), - [sym_quoted_atom] = STATE(3526), - [sym__quoted_i_double] = STATE(3395), - [sym__quoted_i_single] = STATE(3394), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3526), - [sym_charlist] = STATE(3526), - [sym_sigil] = STATE(3526), - [sym_list] = STATE(3526), - [sym_tuple] = STATE(3526), - [sym_bitstring] = STATE(3526), - [sym_map] = STATE(3526), - [sym_unary_operator] = STATE(3526), - [sym_binary_operator] = STATE(3526), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3526), - [sym_call] = STATE(3526), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), - [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3526), - [sym_anonymous_function] = STATE(3526), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1361), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(828), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2583), - [sym_integer] = ACTIONS(2583), - [sym_float] = ACTIONS(2583), - [sym_char] = ACTIONS(2583), - [anon_sym_true] = ACTIONS(834), - [anon_sym_false] = ACTIONS(834), - [anon_sym_nil] = ACTIONS(836), - [sym_atom] = ACTIONS(2583), - [anon_sym_DQUOTE] = ACTIONS(838), - [anon_sym_SQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(850), - [anon_sym_LT_LT] = ACTIONS(852), - [anon_sym_PERCENT] = ACTIONS(854), - [anon_sym_AMP] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_BANG] = ACTIONS(858), - [anon_sym_CARET] = ACTIONS(858), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), - [anon_sym_not] = ACTIONS(858), - [anon_sym_AT] = ACTIONS(860), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(864), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(866), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(868), - }, - [895] = { - [sym__expression] = STATE(3531), - [sym_block] = STATE(3531), - [sym__identifier] = STATE(64), - [sym_identifier] = STATE(64), - [sym_special_identifier] = STATE(64), - [sym_boolean] = STATE(3531), - [sym_nil] = STATE(3531), - [sym__atom] = STATE(3531), - [sym_quoted_atom] = STATE(3531), - [sym__quoted_i_double] = STATE(3395), - [sym__quoted_i_single] = STATE(3394), - [sym__quoted_i_heredoc_single] = STATE(3394), - [sym__quoted_i_heredoc_double] = STATE(3395), - [sym_string] = STATE(3531), - [sym_charlist] = STATE(3531), - [sym_sigil] = STATE(3531), - [sym_list] = STATE(3531), - [sym_tuple] = STATE(3531), - [sym_bitstring] = STATE(3531), - [sym_map] = STATE(3531), - [sym_unary_operator] = STATE(3531), - [sym_binary_operator] = STATE(3531), - [sym_operator_identifier] = STATE(4980), - [sym_dot] = STATE(3531), - [sym_call] = STATE(3531), - [sym__call_without_parentheses] = STATE(3393), - [sym__call_with_parentheses] = STATE(3392), - [sym__local_call_without_parentheses] = STATE(3391), - [sym__local_call_with_parentheses] = STATE(2720), - [sym__local_call_just_do_block] = STATE(3390), - [sym__remote_call_without_parentheses] = STATE(3389), - [sym__remote_call_with_parentheses] = STATE(2760), - [sym__remote_dot] = STATE(55), - [sym__anonymous_call] = STATE(2759), - [sym__anonymous_dot] = STATE(4883), - [sym__double_call] = STATE(3388), - [sym_access_call] = STATE(3531), - [sym_anonymous_function] = STATE(3531), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1361), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(828), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), - [sym_alias] = ACTIONS(2585), - [sym_integer] = ACTIONS(2585), - [sym_float] = ACTIONS(2585), - [sym_char] = ACTIONS(2585), - [anon_sym_true] = ACTIONS(834), - [anon_sym_false] = ACTIONS(834), - [anon_sym_nil] = ACTIONS(836), - [sym_atom] = ACTIONS(2585), - [anon_sym_DQUOTE] = ACTIONS(838), - [anon_sym_SQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(850), - [anon_sym_LT_LT] = ACTIONS(852), - [anon_sym_PERCENT] = ACTIONS(854), - [anon_sym_AMP] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_BANG] = ACTIONS(858), - [anon_sym_CARET] = ACTIONS(858), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), - [anon_sym_not] = ACTIONS(858), - [anon_sym_AT] = ACTIONS(860), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(864), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(866), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(868), - }, - [896] = { - [sym__expression] = STATE(2817), - [sym_block] = STATE(2817), - [sym__identifier] = STATE(51), - [sym_identifier] = STATE(51), - [sym_special_identifier] = STATE(51), - [sym_boolean] = STATE(2817), - [sym_nil] = STATE(2817), - [sym__atom] = STATE(2817), - [sym_quoted_atom] = STATE(2817), - [sym__quoted_i_double] = STATE(2540), - [sym__quoted_i_single] = STATE(2541), - [sym__quoted_i_heredoc_single] = STATE(2541), - [sym__quoted_i_heredoc_double] = STATE(2540), - [sym_string] = STATE(2817), - [sym_charlist] = STATE(2817), - [sym_sigil] = STATE(2817), - [sym_list] = STATE(2817), - [sym_tuple] = STATE(2817), - [sym_bitstring] = STATE(2817), - [sym_map] = STATE(2817), - [sym_unary_operator] = STATE(2817), - [sym_binary_operator] = STATE(2817), - [sym_operator_identifier] = STATE(4934), - [sym_dot] = STATE(2817), - [sym_call] = STATE(2817), - [sym__call_without_parentheses] = STATE(2542), - [sym__call_with_parentheses] = STATE(2543), - [sym__local_call_without_parentheses] = STATE(2544), - [sym__local_call_with_parentheses] = STATE(1857), - [sym__local_call_just_do_block] = STATE(2545), - [sym__remote_call_without_parentheses] = STATE(2546), - [sym__remote_call_with_parentheses] = STATE(1853), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1831), - [sym__anonymous_dot] = STATE(4895), - [sym__double_call] = STATE(2547), - [sym_access_call] = STATE(2817), - [sym_anonymous_function] = STATE(2817), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1067), - [aux_sym_identifier_token1] = ACTIONS(826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(826), - [sym_unused_identifier] = ACTIONS(1069), - [anon_sym___MODULE__] = ACTIONS(830), - [anon_sym___DIR__] = ACTIONS(830), - [anon_sym___ENV__] = ACTIONS(830), - [anon_sym___CALLER__] = ACTIONS(830), - [anon_sym___STACKTRACE__] = ACTIONS(830), [sym_alias] = ACTIONS(2587), [sym_integer] = ACTIONS(2587), [sym_float] = ACTIONS(2587), [sym_char] = ACTIONS(2587), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), [sym_atom] = ACTIONS(2587), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1079), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_CARET] = ACTIONS(1101), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), - [anon_sym_not] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1103), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -139036,58 +139924,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1105), + [anon_sym_fn] = ACTIONS(291), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1107), + [sym__before_unary_op] = ACTIONS(295), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), + [sym__quoted_atom_start] = ACTIONS(300), }, - [897] = { - [sym__expression] = STATE(1885), - [sym_block] = STATE(1885), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(1885), - [sym_nil] = STATE(1885), - [sym__atom] = STATE(1885), - [sym_quoted_atom] = STATE(1885), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(1885), - [sym_charlist] = STATE(1885), - [sym_sigil] = STATE(1885), - [sym_list] = STATE(1885), - [sym_tuple] = STATE(1885), - [sym_bitstring] = STATE(1885), - [sym_map] = STATE(1885), - [sym_unary_operator] = STATE(1885), - [sym_binary_operator] = STATE(1885), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(1885), - [sym_call] = STATE(1885), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(1885), - [sym_anonymous_function] = STATE(1885), + [899] = { + [sym__expression] = STATE(1898), + [sym_block] = STATE(1898), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1898), + [sym_nil] = STATE(1898), + [sym__atom] = STATE(1898), + [sym_quoted_atom] = STATE(1898), + [sym__quoted_i_double] = STATE(1540), + [sym__quoted_i_single] = STATE(1541), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1898), + [sym_charlist] = STATE(1898), + [sym_sigil] = STATE(1898), + [sym_list] = STATE(1898), + [sym_tuple] = STATE(1898), + [sym_bitstring] = STATE(1898), + [sym_map] = STATE(1898), + [sym_unary_operator] = STATE(1898), + [sym_binary_operator] = STATE(1898), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1898), + [sym_call] = STATE(1898), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1898), + [sym_anonymous_function] = STATE(1898), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(1337), [aux_sym_identifier_token1] = ACTIONS(67), [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(944), + [sym_unused_identifier] = ACTIONS(69), [anon_sym___MODULE__] = ACTIONS(71), [anon_sym___DIR__] = ACTIONS(71), [anon_sym___ENV__] = ACTIONS(71), @@ -139097,31 +139985,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(2589), [sym_float] = ACTIONS(2589), [sym_char] = ACTIONS(2589), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), [sym_atom] = ACTIONS(2589), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(972), - [anon_sym_CARET] = ACTIONS(972), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), - [anon_sym_not] = ACTIONS(972), - [anon_sym_AT] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -139161,92 +140049,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(115), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(980), + [sym__before_unary_op] = ACTIONS(119), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), + [sym__quoted_atom_start] = ACTIONS(121), }, - [898] = { - [sym__expression] = STATE(1353), - [sym_block] = STATE(1353), - [sym__identifier] = STATE(18), - [sym_identifier] = STATE(18), - [sym_special_identifier] = STATE(18), - [sym_boolean] = STATE(1353), - [sym_nil] = STATE(1353), - [sym__atom] = STATE(1353), - [sym_quoted_atom] = STATE(1353), - [sym__quoted_i_double] = STATE(1259), - [sym__quoted_i_single] = STATE(1258), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(1353), - [sym_charlist] = STATE(1353), - [sym_sigil] = STATE(1353), - [sym_list] = STATE(1353), - [sym_tuple] = STATE(1353), - [sym_bitstring] = STATE(1353), - [sym_map] = STATE(1353), - [sym_unary_operator] = STATE(1353), - [sym_binary_operator] = STATE(1353), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(1353), - [sym_call] = STATE(1353), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(1353), - [sym_anonymous_function] = STATE(1353), + [900] = { + [sym__expression] = STATE(1897), + [sym_block] = STATE(1897), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1897), + [sym_nil] = STATE(1897), + [sym__atom] = STATE(1897), + [sym_quoted_atom] = STATE(1897), + [sym__quoted_i_double] = STATE(1540), + [sym__quoted_i_single] = STATE(1541), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1897), + [sym_charlist] = STATE(1897), + [sym_sigil] = STATE(1897), + [sym_list] = STATE(1897), + [sym_tuple] = STATE(1897), + [sym_bitstring] = STATE(1897), + [sym_map] = STATE(1897), + [sym_unary_operator] = STATE(1897), + [sym_binary_operator] = STATE(1897), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1897), + [sym_call] = STATE(1897), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1897), + [sym_anonymous_function] = STATE(1897), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(256), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(1337), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), [sym_alias] = ACTIONS(2591), [sym_integer] = ACTIONS(2591), [sym_float] = ACTIONS(2591), [sym_char] = ACTIONS(2591), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), [sym_atom] = ACTIONS(2591), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(286), - [anon_sym_not] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -139286,58 +140174,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), + [anon_sym_fn] = ACTIONS(115), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(294), + [sym__before_unary_op] = ACTIONS(119), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), + [sym__quoted_atom_start] = ACTIONS(121), }, - [899] = { - [sym__expression] = STATE(1880), - [sym_block] = STATE(1880), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(1880), - [sym_nil] = STATE(1880), - [sym__atom] = STATE(1880), - [sym_quoted_atom] = STATE(1880), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(1880), - [sym_charlist] = STATE(1880), - [sym_sigil] = STATE(1880), - [sym_list] = STATE(1880), - [sym_tuple] = STATE(1880), - [sym_bitstring] = STATE(1880), - [sym_map] = STATE(1880), - [sym_unary_operator] = STATE(1880), - [sym_binary_operator] = STATE(1880), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(1880), - [sym_call] = STATE(1880), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(1880), - [sym_anonymous_function] = STATE(1880), + [901] = { + [sym__expression] = STATE(1896), + [sym_block] = STATE(1896), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1896), + [sym_nil] = STATE(1896), + [sym__atom] = STATE(1896), + [sym_quoted_atom] = STATE(1896), + [sym__quoted_i_double] = STATE(1540), + [sym__quoted_i_single] = STATE(1541), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1896), + [sym_charlist] = STATE(1896), + [sym_sigil] = STATE(1896), + [sym_list] = STATE(1896), + [sym_tuple] = STATE(1896), + [sym_bitstring] = STATE(1896), + [sym_map] = STATE(1896), + [sym_unary_operator] = STATE(1896), + [sym_binary_operator] = STATE(1896), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1896), + [sym_call] = STATE(1896), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1896), + [sym_anonymous_function] = STATE(1896), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(1337), [aux_sym_identifier_token1] = ACTIONS(67), [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(944), + [sym_unused_identifier] = ACTIONS(69), [anon_sym___MODULE__] = ACTIONS(71), [anon_sym___DIR__] = ACTIONS(71), [anon_sym___ENV__] = ACTIONS(71), @@ -139347,31 +140235,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(2593), [sym_float] = ACTIONS(2593), [sym_char] = ACTIONS(2593), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), [sym_atom] = ACTIONS(2593), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(972), - [anon_sym_CARET] = ACTIONS(972), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), - [anon_sym_not] = ACTIONS(972), - [anon_sym_AT] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -139411,58 +140299,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(115), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(980), + [sym__before_unary_op] = ACTIONS(119), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), + [sym__quoted_atom_start] = ACTIONS(121), }, - [900] = { - [sym__expression] = STATE(1965), - [sym_block] = STATE(1965), - [sym__identifier] = STATE(22), - [sym_identifier] = STATE(22), - [sym_special_identifier] = STATE(22), - [sym_boolean] = STATE(1965), - [sym_nil] = STATE(1965), - [sym__atom] = STATE(1965), - [sym_quoted_atom] = STATE(1965), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(1965), - [sym_charlist] = STATE(1965), - [sym_sigil] = STATE(1965), - [sym_list] = STATE(1965), - [sym_tuple] = STATE(1965), - [sym_bitstring] = STATE(1965), - [sym_map] = STATE(1965), - [sym_unary_operator] = STATE(1965), - [sym_binary_operator] = STATE(1965), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(1965), - [sym_call] = STATE(1965), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(1965), - [sym_anonymous_function] = STATE(1965), + [902] = { + [sym__expression] = STATE(1895), + [sym_block] = STATE(1895), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1895), + [sym_nil] = STATE(1895), + [sym__atom] = STATE(1895), + [sym_quoted_atom] = STATE(1895), + [sym__quoted_i_double] = STATE(1540), + [sym__quoted_i_single] = STATE(1541), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1895), + [sym_charlist] = STATE(1895), + [sym_sigil] = STATE(1895), + [sym_list] = STATE(1895), + [sym_tuple] = STATE(1895), + [sym_bitstring] = STATE(1895), + [sym_map] = STATE(1895), + [sym_unary_operator] = STATE(1895), + [sym_binary_operator] = STATE(1895), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1895), + [sym_call] = STATE(1895), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1895), + [sym_anonymous_function] = STATE(1895), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(1337), [aux_sym_identifier_token1] = ACTIONS(67), [anon_sym_DOT_DOT_DOT] = ACTIONS(67), - [sym_unused_identifier] = ACTIONS(944), + [sym_unused_identifier] = ACTIONS(69), [anon_sym___MODULE__] = ACTIONS(71), [anon_sym___DIR__] = ACTIONS(71), [anon_sym___ENV__] = ACTIONS(71), @@ -139472,31 +140360,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(2595), [sym_float] = ACTIONS(2595), [sym_char] = ACTIONS(2595), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), [sym_atom] = ACTIONS(2595), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(972), - [anon_sym_CARET] = ACTIONS(972), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), - [anon_sym_not] = ACTIONS(972), - [anon_sym_AT] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -139536,92 +140424,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(115), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(980), + [sym__before_unary_op] = ACTIONS(119), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), + [sym__quoted_atom_start] = ACTIONS(121), }, - [901] = { - [sym__expression] = STATE(2255), - [sym_block] = STATE(2255), - [sym__identifier] = STATE(34), - [sym_identifier] = STATE(34), - [sym_special_identifier] = STATE(34), - [sym_boolean] = STATE(2255), - [sym_nil] = STATE(2255), - [sym__atom] = STATE(2255), - [sym_quoted_atom] = STATE(2255), - [sym__quoted_i_double] = STATE(1866), - [sym__quoted_i_single] = STATE(1867), - [sym__quoted_i_heredoc_single] = STATE(1867), - [sym__quoted_i_heredoc_double] = STATE(1866), - [sym_string] = STATE(2255), - [sym_charlist] = STATE(2255), - [sym_sigil] = STATE(2255), - [sym_list] = STATE(2255), - [sym_tuple] = STATE(2255), - [sym_bitstring] = STATE(2255), - [sym_map] = STATE(2255), - [sym_unary_operator] = STATE(2255), - [sym_binary_operator] = STATE(2255), - [sym_operator_identifier] = STATE(5012), - [sym_dot] = STATE(2255), - [sym_call] = STATE(2255), - [sym__call_without_parentheses] = STATE(1868), - [sym__call_with_parentheses] = STATE(1869), - [sym__local_call_without_parentheses] = STATE(1906), - [sym__local_call_with_parentheses] = STATE(1461), - [sym__local_call_just_do_block] = STATE(1872), - [sym__remote_call_without_parentheses] = STATE(1873), - [sym__remote_call_with_parentheses] = STATE(1460), - [sym__remote_dot] = STATE(36), - [sym__anonymous_call] = STATE(1459), - [sym__anonymous_dot] = STATE(4892), - [sym__double_call] = STATE(1877), - [sym_access_call] = STATE(2255), - [sym_anonymous_function] = STATE(2255), + [903] = { + [sym__expression] = STATE(1894), + [sym_block] = STATE(1894), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1894), + [sym_nil] = STATE(1894), + [sym__atom] = STATE(1894), + [sym_quoted_atom] = STATE(1894), + [sym__quoted_i_double] = STATE(1540), + [sym__quoted_i_single] = STATE(1541), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1894), + [sym_charlist] = STATE(1894), + [sym_sigil] = STATE(1894), + [sym_list] = STATE(1894), + [sym_tuple] = STATE(1894), + [sym_bitstring] = STATE(1894), + [sym_map] = STATE(1894), + [sym_unary_operator] = STATE(1894), + [sym_binary_operator] = STATE(1894), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1894), + [sym_call] = STATE(1894), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1894), + [sym_anonymous_function] = STATE(1894), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(357), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(361), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(1337), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), [sym_alias] = ACTIONS(2597), [sym_integer] = ACTIONS(2597), [sym_float] = ACTIONS(2597), [sym_char] = ACTIONS(2597), - [anon_sym_true] = ACTIONS(367), - [anon_sym_false] = ACTIONS(367), - [anon_sym_nil] = ACTIONS(369), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), [sym_atom] = ACTIONS(2597), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(396), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(396), - [anon_sym_not] = ACTIONS(396), - [anon_sym_AT] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -139661,92 +140549,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(400), + [anon_sym_fn] = ACTIONS(115), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(404), + [sym__before_unary_op] = ACTIONS(119), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(406), + [sym__quoted_atom_start] = ACTIONS(121), }, - [902] = { - [sym__expression] = STATE(1358), - [sym_block] = STATE(1358), - [sym__identifier] = STATE(18), - [sym_identifier] = STATE(18), - [sym_special_identifier] = STATE(18), - [sym_boolean] = STATE(1358), - [sym_nil] = STATE(1358), - [sym__atom] = STATE(1358), - [sym_quoted_atom] = STATE(1358), - [sym__quoted_i_double] = STATE(1259), - [sym__quoted_i_single] = STATE(1258), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(1358), - [sym_charlist] = STATE(1358), - [sym_sigil] = STATE(1358), - [sym_list] = STATE(1358), - [sym_tuple] = STATE(1358), - [sym_bitstring] = STATE(1358), - [sym_map] = STATE(1358), - [sym_unary_operator] = STATE(1358), - [sym_binary_operator] = STATE(1358), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(1358), - [sym_call] = STATE(1358), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(1358), - [sym_anonymous_function] = STATE(1358), + [904] = { + [sym__expression] = STATE(1893), + [sym_block] = STATE(1893), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1893), + [sym_nil] = STATE(1893), + [sym__atom] = STATE(1893), + [sym_quoted_atom] = STATE(1893), + [sym__quoted_i_double] = STATE(1540), + [sym__quoted_i_single] = STATE(1541), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1893), + [sym_charlist] = STATE(1893), + [sym_sigil] = STATE(1893), + [sym_list] = STATE(1893), + [sym_tuple] = STATE(1893), + [sym_bitstring] = STATE(1893), + [sym_map] = STATE(1893), + [sym_unary_operator] = STATE(1893), + [sym_binary_operator] = STATE(1893), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1893), + [sym_call] = STATE(1893), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1893), + [sym_anonymous_function] = STATE(1893), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(256), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(1337), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), [sym_alias] = ACTIONS(2599), [sym_integer] = ACTIONS(2599), [sym_float] = ACTIONS(2599), [sym_char] = ACTIONS(2599), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), [sym_atom] = ACTIONS(2599), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(286), - [anon_sym_not] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -139786,92 +140674,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), + [anon_sym_fn] = ACTIONS(115), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(294), + [sym__before_unary_op] = ACTIONS(119), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), + [sym__quoted_atom_start] = ACTIONS(121), }, - [903] = { - [sym__expression] = STATE(2731), - [sym_block] = STATE(2731), - [sym__identifier] = STATE(54), - [sym_identifier] = STATE(54), - [sym_special_identifier] = STATE(54), - [sym_boolean] = STATE(2731), - [sym_nil] = STATE(2731), - [sym__atom] = STATE(2731), - [sym_quoted_atom] = STATE(2731), - [sym__quoted_i_double] = STATE(1710), - [sym__quoted_i_single] = STATE(1709), - [sym__quoted_i_heredoc_single] = STATE(1709), - [sym__quoted_i_heredoc_double] = STATE(1710), - [sym_string] = STATE(2731), - [sym_charlist] = STATE(2731), - [sym_sigil] = STATE(2731), - [sym_list] = STATE(2731), - [sym_tuple] = STATE(2731), - [sym_bitstring] = STATE(2731), - [sym_map] = STATE(2731), - [sym_unary_operator] = STATE(2731), - [sym_binary_operator] = STATE(2731), - [sym_operator_identifier] = STATE(4957), - [sym_dot] = STATE(2731), - [sym_call] = STATE(2731), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1707), - [sym__local_call_without_parentheses] = STATE(1705), - [sym__local_call_with_parentheses] = STATE(1411), - [sym__local_call_just_do_block] = STATE(1702), - [sym__remote_call_without_parentheses] = STATE(1700), - [sym__remote_call_with_parentheses] = STATE(1410), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1409), - [sym__anonymous_dot] = STATE(4879), - [sym__double_call] = STATE(1693), - [sym_access_call] = STATE(2731), - [sym_anonymous_function] = STATE(2731), + [905] = { + [sym__expression] = STATE(1892), + [sym_block] = STATE(1892), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1892), + [sym_nil] = STATE(1892), + [sym__atom] = STATE(1892), + [sym_quoted_atom] = STATE(1892), + [sym__quoted_i_double] = STATE(1540), + [sym__quoted_i_single] = STATE(1541), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1892), + [sym_charlist] = STATE(1892), + [sym_sigil] = STATE(1892), + [sym_list] = STATE(1892), + [sym_tuple] = STATE(1892), + [sym_bitstring] = STATE(1892), + [sym_map] = STATE(1892), + [sym_unary_operator] = STATE(1892), + [sym_binary_operator] = STATE(1892), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1892), + [sym_call] = STATE(1892), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1892), + [sym_anonymous_function] = STATE(1892), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(942), - [aux_sym_identifier_token1] = ACTIONS(1427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1427), - [sym_unused_identifier] = ACTIONS(1429), - [anon_sym___MODULE__] = ACTIONS(1431), - [anon_sym___DIR__] = ACTIONS(1431), - [anon_sym___ENV__] = ACTIONS(1431), - [anon_sym___CALLER__] = ACTIONS(1431), - [anon_sym___STACKTRACE__] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1337), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), [sym_alias] = ACTIONS(2601), [sym_integer] = ACTIONS(2601), [sym_float] = ACTIONS(2601), [sym_char] = ACTIONS(2601), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), [sym_atom] = ACTIONS(2601), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_CARET] = ACTIONS(1441), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1441), - [anon_sym_not] = ACTIONS(1441), - [anon_sym_AT] = ACTIONS(1443), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -139911,92 +140799,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(115), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1445), + [sym__before_unary_op] = ACTIONS(119), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), + [sym__quoted_atom_start] = ACTIONS(121), }, - [904] = { - [sym__expression] = STATE(1385), - [sym_block] = STATE(1385), - [sym__identifier] = STATE(18), - [sym_identifier] = STATE(18), - [sym_special_identifier] = STATE(18), - [sym_boolean] = STATE(1385), - [sym_nil] = STATE(1385), - [sym__atom] = STATE(1385), - [sym_quoted_atom] = STATE(1385), - [sym__quoted_i_double] = STATE(1259), - [sym__quoted_i_single] = STATE(1258), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(1385), - [sym_charlist] = STATE(1385), - [sym_sigil] = STATE(1385), - [sym_list] = STATE(1385), - [sym_tuple] = STATE(1385), - [sym_bitstring] = STATE(1385), - [sym_map] = STATE(1385), - [sym_unary_operator] = STATE(1385), - [sym_binary_operator] = STATE(1385), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(1385), - [sym_call] = STATE(1385), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(1385), - [sym_anonymous_function] = STATE(1385), + [906] = { + [sym__expression] = STATE(1891), + [sym_block] = STATE(1891), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1891), + [sym_nil] = STATE(1891), + [sym__atom] = STATE(1891), + [sym_quoted_atom] = STATE(1891), + [sym__quoted_i_double] = STATE(1540), + [sym__quoted_i_single] = STATE(1541), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1891), + [sym_charlist] = STATE(1891), + [sym_sigil] = STATE(1891), + [sym_list] = STATE(1891), + [sym_tuple] = STATE(1891), + [sym_bitstring] = STATE(1891), + [sym_map] = STATE(1891), + [sym_unary_operator] = STATE(1891), + [sym_binary_operator] = STATE(1891), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1891), + [sym_call] = STATE(1891), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1891), + [sym_anonymous_function] = STATE(1891), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(256), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(1337), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), [sym_alias] = ACTIONS(2603), [sym_integer] = ACTIONS(2603), [sym_float] = ACTIONS(2603), [sym_char] = ACTIONS(2603), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), [sym_atom] = ACTIONS(2603), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(286), - [anon_sym_not] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -140036,217 +140924,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), + [anon_sym_fn] = ACTIONS(115), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(294), + [sym__before_unary_op] = ACTIONS(119), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), + [sym__quoted_atom_start] = ACTIONS(121), }, - [905] = { - [sym__expression] = STATE(1243), - [sym_block] = STATE(1243), - [sym__identifier] = STATE(18), - [sym_identifier] = STATE(18), - [sym_special_identifier] = STATE(18), - [sym_boolean] = STATE(1243), - [sym_nil] = STATE(1243), - [sym__atom] = STATE(1243), - [sym_quoted_atom] = STATE(1243), - [sym__quoted_i_double] = STATE(1259), - [sym__quoted_i_single] = STATE(1258), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(1243), - [sym_charlist] = STATE(1243), - [sym_sigil] = STATE(1243), - [sym_list] = STATE(1243), - [sym_tuple] = STATE(1243), - [sym_bitstring] = STATE(1243), - [sym_map] = STATE(1243), - [sym_unary_operator] = STATE(1243), - [sym_binary_operator] = STATE(1243), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(1243), - [sym_call] = STATE(1243), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(1243), - [sym_anonymous_function] = STATE(1243), + [907] = { + [sym__expression] = STATE(1886), + [sym_block] = STATE(1886), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1886), + [sym_nil] = STATE(1886), + [sym__atom] = STATE(1886), + [sym_quoted_atom] = STATE(1886), + [sym__quoted_i_double] = STATE(1540), + [sym__quoted_i_single] = STATE(1541), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1886), + [sym_charlist] = STATE(1886), + [sym_sigil] = STATE(1886), + [sym_list] = STATE(1886), + [sym_tuple] = STATE(1886), + [sym_bitstring] = STATE(1886), + [sym_map] = STATE(1886), + [sym_unary_operator] = STATE(1886), + [sym_binary_operator] = STATE(1886), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1886), + [sym_call] = STATE(1886), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1886), + [sym_anonymous_function] = STATE(1886), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(256), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), - [sym_alias] = ACTIONS(2399), - [sym_integer] = ACTIONS(2399), - [sym_float] = ACTIONS(2399), - [sym_char] = ACTIONS(2399), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(2399), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(286), - [anon_sym_not] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(294), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), - }, - [906] = { - [sym__expression] = STATE(3440), - [sym_block] = STATE(3440), - [sym__identifier] = STATE(72), - [sym_identifier] = STATE(72), - [sym_special_identifier] = STATE(72), - [sym_boolean] = STATE(3440), - [sym_nil] = STATE(3440), - [sym__atom] = STATE(3440), - [sym_quoted_atom] = STATE(3440), - [sym__quoted_i_double] = STATE(3516), - [sym__quoted_i_single] = STATE(3518), - [sym__quoted_i_heredoc_single] = STATE(3518), - [sym__quoted_i_heredoc_double] = STATE(3516), - [sym_string] = STATE(3440), - [sym_charlist] = STATE(3440), - [sym_sigil] = STATE(3440), - [sym_list] = STATE(3440), - [sym_tuple] = STATE(3440), - [sym_bitstring] = STATE(3440), - [sym_map] = STATE(3440), - [sym_unary_operator] = STATE(3440), - [sym_binary_operator] = STATE(3440), - [sym_operator_identifier] = STATE(4972), - [sym_dot] = STATE(3440), - [sym_call] = STATE(3440), - [sym__call_without_parentheses] = STATE(3517), - [sym__call_with_parentheses] = STATE(3515), - [sym__local_call_without_parentheses] = STATE(3511), - [sym__local_call_with_parentheses] = STATE(3073), - [sym__local_call_just_do_block] = STATE(3510), - [sym__remote_call_without_parentheses] = STATE(3514), - [sym__remote_call_with_parentheses] = STATE(3088), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(3095), - [sym__anonymous_dot] = STATE(4928), - [sym__double_call] = STATE(3499), - [sym_access_call] = STATE(3440), - [sym_anonymous_function] = STATE(3440), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1123), - [aux_sym_identifier_token1] = ACTIONS(1125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1125), - [sym_unused_identifier] = ACTIONS(1127), - [anon_sym___MODULE__] = ACTIONS(1129), - [anon_sym___DIR__] = ACTIONS(1129), - [anon_sym___ENV__] = ACTIONS(1129), - [anon_sym___CALLER__] = ACTIONS(1129), - [anon_sym___STACKTRACE__] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(1337), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), [sym_alias] = ACTIONS(2605), [sym_integer] = ACTIONS(2605), [sym_float] = ACTIONS(2605), [sym_char] = ACTIONS(2605), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_nil] = ACTIONS(1135), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), [sym_atom] = ACTIONS(2605), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(1147), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(1149), - [anon_sym_LT_LT] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1161), - [anon_sym_not] = ACTIONS(1161), - [anon_sym_AT] = ACTIONS(1163), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -140286,217 +141049,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1165), + [anon_sym_fn] = ACTIONS(115), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1167), + [sym__before_unary_op] = ACTIONS(119), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1169), + [sym__quoted_atom_start] = ACTIONS(121), }, - [907] = { - [sym__expression] = STATE(3428), - [sym_block] = STATE(3428), - [sym__identifier] = STATE(72), - [sym_identifier] = STATE(72), - [sym_special_identifier] = STATE(72), - [sym_boolean] = STATE(3428), - [sym_nil] = STATE(3428), - [sym__atom] = STATE(3428), - [sym_quoted_atom] = STATE(3428), - [sym__quoted_i_double] = STATE(3516), - [sym__quoted_i_single] = STATE(3518), - [sym__quoted_i_heredoc_single] = STATE(3518), - [sym__quoted_i_heredoc_double] = STATE(3516), - [sym_string] = STATE(3428), - [sym_charlist] = STATE(3428), - [sym_sigil] = STATE(3428), - [sym_list] = STATE(3428), - [sym_tuple] = STATE(3428), - [sym_bitstring] = STATE(3428), - [sym_map] = STATE(3428), - [sym_unary_operator] = STATE(3428), - [sym_binary_operator] = STATE(3428), - [sym_operator_identifier] = STATE(4972), - [sym_dot] = STATE(3428), - [sym_call] = STATE(3428), - [sym__call_without_parentheses] = STATE(3517), - [sym__call_with_parentheses] = STATE(3515), - [sym__local_call_without_parentheses] = STATE(3511), - [sym__local_call_with_parentheses] = STATE(3073), - [sym__local_call_just_do_block] = STATE(3510), - [sym__remote_call_without_parentheses] = STATE(3514), - [sym__remote_call_with_parentheses] = STATE(3088), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(3095), - [sym__anonymous_dot] = STATE(4928), - [sym__double_call] = STATE(3499), - [sym_access_call] = STATE(3428), - [sym_anonymous_function] = STATE(3428), + [908] = { + [sym__expression] = STATE(1882), + [sym_block] = STATE(1882), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1882), + [sym_nil] = STATE(1882), + [sym__atom] = STATE(1882), + [sym_quoted_atom] = STATE(1882), + [sym__quoted_i_double] = STATE(1540), + [sym__quoted_i_single] = STATE(1541), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1882), + [sym_charlist] = STATE(1882), + [sym_sigil] = STATE(1882), + [sym_list] = STATE(1882), + [sym_tuple] = STATE(1882), + [sym_bitstring] = STATE(1882), + [sym_map] = STATE(1882), + [sym_unary_operator] = STATE(1882), + [sym_binary_operator] = STATE(1882), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1882), + [sym_call] = STATE(1882), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1882), + [sym_anonymous_function] = STATE(1882), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1123), - [aux_sym_identifier_token1] = ACTIONS(1125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1125), - [sym_unused_identifier] = ACTIONS(1127), - [anon_sym___MODULE__] = ACTIONS(1129), - [anon_sym___DIR__] = ACTIONS(1129), - [anon_sym___ENV__] = ACTIONS(1129), - [anon_sym___CALLER__] = ACTIONS(1129), - [anon_sym___STACKTRACE__] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(1337), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), [sym_alias] = ACTIONS(2607), [sym_integer] = ACTIONS(2607), [sym_float] = ACTIONS(2607), [sym_char] = ACTIONS(2607), - [anon_sym_true] = ACTIONS(1133), - [anon_sym_false] = ACTIONS(1133), - [anon_sym_nil] = ACTIONS(1135), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), [sym_atom] = ACTIONS(2607), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(1147), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(1149), - [anon_sym_LT_LT] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1161), - [anon_sym_not] = ACTIONS(1161), - [anon_sym_AT] = ACTIONS(1163), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_CARET_CARET] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1165), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1167), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1169), - }, - [908] = { - [sym__expression] = STATE(1234), - [sym_block] = STATE(1234), - [sym__identifier] = STATE(18), - [sym_identifier] = STATE(18), - [sym_special_identifier] = STATE(18), - [sym_boolean] = STATE(1234), - [sym_nil] = STATE(1234), - [sym__atom] = STATE(1234), - [sym_quoted_atom] = STATE(1234), - [sym__quoted_i_double] = STATE(1259), - [sym__quoted_i_single] = STATE(1258), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(1234), - [sym_charlist] = STATE(1234), - [sym_sigil] = STATE(1234), - [sym_list] = STATE(1234), - [sym_tuple] = STATE(1234), - [sym_bitstring] = STATE(1234), - [sym_map] = STATE(1234), - [sym_unary_operator] = STATE(1234), - [sym_binary_operator] = STATE(1234), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(1234), - [sym_call] = STATE(1234), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(1234), - [sym_anonymous_function] = STATE(1234), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(256), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), - [sym_alias] = ACTIONS(2385), - [sym_integer] = ACTIONS(2385), - [sym_float] = ACTIONS(2385), - [sym_char] = ACTIONS(2385), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), - [sym_atom] = ACTIONS(2385), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(286), - [anon_sym_not] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -140536,92 +141174,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), + [anon_sym_fn] = ACTIONS(115), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(294), + [sym__before_unary_op] = ACTIONS(119), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), + [sym__quoted_atom_start] = ACTIONS(121), }, [909] = { - [sym__expression] = STATE(1373), - [sym_block] = STATE(1373), - [sym__identifier] = STATE(18), - [sym_identifier] = STATE(18), - [sym_special_identifier] = STATE(18), - [sym_boolean] = STATE(1373), - [sym_nil] = STATE(1373), - [sym__atom] = STATE(1373), - [sym_quoted_atom] = STATE(1373), - [sym__quoted_i_double] = STATE(1259), - [sym__quoted_i_single] = STATE(1258), - [sym__quoted_i_heredoc_single] = STATE(1258), - [sym__quoted_i_heredoc_double] = STATE(1259), - [sym_string] = STATE(1373), - [sym_charlist] = STATE(1373), - [sym_sigil] = STATE(1373), - [sym_list] = STATE(1373), - [sym_tuple] = STATE(1373), - [sym_bitstring] = STATE(1373), - [sym_map] = STATE(1373), - [sym_unary_operator] = STATE(1373), - [sym_binary_operator] = STATE(1373), - [sym_operator_identifier] = STATE(5004), - [sym_dot] = STATE(1373), - [sym_call] = STATE(1373), - [sym__call_without_parentheses] = STATE(1257), - [sym__call_with_parentheses] = STATE(1256), - [sym__local_call_without_parentheses] = STATE(1255), - [sym__local_call_with_parentheses] = STATE(1085), - [sym__local_call_just_do_block] = STATE(1254), - [sym__remote_call_without_parentheses] = STATE(1253), - [sym__remote_call_with_parentheses] = STATE(1084), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1083), - [sym__anonymous_dot] = STATE(4856), - [sym__double_call] = STATE(1252), - [sym_access_call] = STATE(1373), - [sym_anonymous_function] = STATE(1373), + [sym__expression] = STATE(1724), + [sym_block] = STATE(1724), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1724), + [sym_nil] = STATE(1724), + [sym__atom] = STATE(1724), + [sym_quoted_atom] = STATE(1724), + [sym__quoted_i_double] = STATE(1540), + [sym__quoted_i_single] = STATE(1541), + [sym__quoted_i_heredoc_single] = STATE(1587), + [sym__quoted_i_heredoc_double] = STATE(1588), + [sym_string] = STATE(1724), + [sym_charlist] = STATE(1724), + [sym_sigil] = STATE(1724), + [sym_list] = STATE(1724), + [sym_tuple] = STATE(1724), + [sym_bitstring] = STATE(1724), + [sym_map] = STATE(1724), + [sym_unary_operator] = STATE(1724), + [sym_binary_operator] = STATE(1724), + [sym_operator_identifier] = STATE(5577), + [sym_dot] = STATE(1724), + [sym_call] = STATE(1724), + [sym__call_without_parentheses] = STATE(1598), + [sym__call_with_parentheses] = STATE(1599), + [sym__local_call_without_parentheses] = STATE(1600), + [sym__local_call_with_parentheses] = STATE(1221), + [sym__local_call_just_do_block] = STATE(1602), + [sym__remote_call_without_parentheses] = STATE(1604), + [sym__remote_call_with_parentheses] = STATE(1229), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1234), + [sym__anonymous_dot] = STATE(5466), + [sym__double_call] = STATE(1611), + [sym_access_call] = STATE(1724), + [sym_anonymous_function] = STATE(1724), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(254), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(256), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(1337), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), [sym_alias] = ACTIONS(2609), [sym_integer] = ACTIONS(2609), [sym_float] = ACTIONS(2609), [sym_char] = ACTIONS(2609), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_nil] = ACTIONS(262), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), [sym_atom] = ACTIONS(2609), - [anon_sym_DQUOTE] = ACTIONS(264), - [anon_sym_SQUOTE] = ACTIONS(266), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), [anon_sym_LT] = ACTIONS(39), [anon_sym_GT] = ACTIONS(39), [anon_sym_PIPE] = ACTIONS(39), [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(280), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(286), - [anon_sym_not] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(288), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), [anon_sym_LT_DASH] = ACTIONS(39), [anon_sym_BSLASH_BSLASH] = ACTIONS(39), [anon_sym_when] = ACTIONS(39), @@ -140661,13 +141299,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(39), [anon_sym_DASH_GT] = ACTIONS(39), [anon_sym_DOT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(290), + [anon_sym_fn] = ACTIONS(115), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(294), + [sym__before_unary_op] = ACTIONS(119), [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(296), + [sym__quoted_atom_start] = ACTIONS(121), }, [910] = { [aux_sym__terminator_token1] = ACTIONS(2611), @@ -140874,108 +141512,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(2615), }, [912] = { - [aux_sym__terminator_token1] = ACTIONS(2611), - [anon_sym_SEMI] = ACTIONS(2613), - [anon_sym_LPAREN] = ACTIONS(2613), - [aux_sym_identifier_token1] = ACTIONS(2613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2613), - [sym_unused_identifier] = ACTIONS(2613), - [anon_sym___MODULE__] = ACTIONS(2613), - [anon_sym___DIR__] = ACTIONS(2613), - [anon_sym___ENV__] = ACTIONS(2613), - [anon_sym___CALLER__] = ACTIONS(2613), - [anon_sym___STACKTRACE__] = ACTIONS(2613), - [sym_alias] = ACTIONS(2613), - [sym_integer] = ACTIONS(2613), - [sym_float] = ACTIONS(2613), - [sym_char] = ACTIONS(2613), - [anon_sym_true] = ACTIONS(2613), - [anon_sym_false] = ACTIONS(2613), - [anon_sym_nil] = ACTIONS(2613), - [sym_atom] = ACTIONS(2613), - [anon_sym_DQUOTE] = ACTIONS(2613), - [anon_sym_SQUOTE] = ACTIONS(2613), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2613), - [anon_sym_LBRACE] = ACTIONS(2613), - [anon_sym_LBRACK] = ACTIONS(2613), - [anon_sym_LT] = ACTIONS(2613), - [anon_sym_GT] = ACTIONS(2613), - [anon_sym_PIPE] = ACTIONS(2613), - [anon_sym_SLASH] = ACTIONS(2613), - [anon_sym_TILDE] = ACTIONS(2613), - [anon_sym_COMMA] = ACTIONS(2613), - [sym_keyword] = ACTIONS(2613), - [anon_sym_LT_LT] = ACTIONS(2613), - [anon_sym_PERCENT] = ACTIONS(2613), - [anon_sym_AMP] = ACTIONS(2613), - [anon_sym_PLUS] = ACTIONS(2613), - [anon_sym_DASH] = ACTIONS(2613), - [anon_sym_BANG] = ACTIONS(2613), - [anon_sym_CARET] = ACTIONS(2613), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(2613), - [anon_sym_AT] = ACTIONS(2613), - [anon_sym_LT_DASH] = ACTIONS(2613), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2613), - [anon_sym_when] = ACTIONS(2613), - [anon_sym_COLON_COLON] = ACTIONS(2613), - [anon_sym_EQ_GT] = ACTIONS(2613), - [anon_sym_EQ] = ACTIONS(2613), - [anon_sym_PIPE_PIPE] = ACTIONS(2613), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2613), - [anon_sym_or] = ACTIONS(2613), - [anon_sym_AMP_AMP] = ACTIONS(2613), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2613), - [anon_sym_and] = ACTIONS(2613), - [anon_sym_EQ_EQ] = ACTIONS(2613), - [anon_sym_BANG_EQ] = ACTIONS(2613), - [anon_sym_EQ_TILDE] = ACTIONS(2613), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2613), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2613), - [anon_sym_LT_EQ] = ACTIONS(2613), - [anon_sym_GT_EQ] = ACTIONS(2613), - [anon_sym_PIPE_GT] = ACTIONS(2613), - [anon_sym_LT_LT_LT] = ACTIONS(2613), - [anon_sym_GT_GT_GT] = ACTIONS(2613), - [anon_sym_LT_LT_TILDE] = ACTIONS(2613), - [anon_sym_TILDE_GT_GT] = ACTIONS(2613), - [anon_sym_LT_TILDE] = ACTIONS(2613), - [anon_sym_TILDE_GT] = ACTIONS(2613), - [anon_sym_LT_TILDE_GT] = ACTIONS(2613), - [anon_sym_LT_PIPE_GT] = ACTIONS(2613), - [anon_sym_in] = ACTIONS(2613), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2613), - [anon_sym_SLASH_SLASH] = ACTIONS(2613), - [anon_sym_PLUS_PLUS] = ACTIONS(2613), - [anon_sym_DASH_DASH] = ACTIONS(2613), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2613), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2613), - [anon_sym_DOT_DOT] = ACTIONS(2613), - [anon_sym_LT_GT] = ACTIONS(2613), - [anon_sym_STAR] = ACTIONS(2613), - [anon_sym_STAR_STAR] = ACTIONS(2613), - [anon_sym_CARET_CARET] = ACTIONS(2613), - [anon_sym_DASH_GT] = ACTIONS(2613), - [anon_sym_DOT] = ACTIONS(2613), - [anon_sym_after] = ACTIONS(2613), - [anon_sym_catch] = ACTIONS(2613), - [anon_sym_do] = ACTIONS(2613), - [anon_sym_else] = ACTIONS(2613), - [anon_sym_end] = ACTIONS(2613), - [anon_sym_fn] = ACTIONS(2613), - [anon_sym_rescue] = ACTIONS(2613), - [anon_sym_LPAREN2] = ACTIONS(2611), - [anon_sym_LBRACK2] = ACTIONS(2611), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2611), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2611), - [sym__not_in] = ACTIONS(2611), - [sym__quoted_atom_start] = ACTIONS(2611), - }, - [913] = { [aux_sym__terminator_token1] = ACTIONS(2619), [anon_sym_SEMI] = ACTIONS(2621), [anon_sym_LPAREN] = ACTIONS(2621), @@ -141077,7 +141613,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2619), [sym__quoted_atom_start] = ACTIONS(2619), }, - [914] = { + [913] = { [aux_sym__terminator_token1] = ACTIONS(2623), [anon_sym_SEMI] = ACTIONS(2625), [anon_sym_LPAREN] = ACTIONS(2625), @@ -141179,7 +141715,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2623), [sym__quoted_atom_start] = ACTIONS(2623), }, - [915] = { + [914] = { [aux_sym__terminator_token1] = ACTIONS(2627), [anon_sym_SEMI] = ACTIONS(2629), [anon_sym_LPAREN] = ACTIONS(2629), @@ -141281,7 +141817,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2627), [sym__quoted_atom_start] = ACTIONS(2627), }, - [916] = { + [915] = { [aux_sym__terminator_token1] = ACTIONS(2631), [anon_sym_SEMI] = ACTIONS(2633), [anon_sym_LPAREN] = ACTIONS(2633), @@ -141383,109 +141919,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2631), [sym__quoted_atom_start] = ACTIONS(2631), }, - [917] = { - [aux_sym__terminator_token1] = ACTIONS(2615), - [anon_sym_SEMI] = ACTIONS(2617), - [anon_sym_LPAREN] = ACTIONS(2617), - [aux_sym_identifier_token1] = ACTIONS(2617), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2617), - [sym_unused_identifier] = ACTIONS(2617), - [anon_sym___MODULE__] = ACTIONS(2617), - [anon_sym___DIR__] = ACTIONS(2617), - [anon_sym___ENV__] = ACTIONS(2617), - [anon_sym___CALLER__] = ACTIONS(2617), - [anon_sym___STACKTRACE__] = ACTIONS(2617), - [sym_alias] = ACTIONS(2617), - [sym_integer] = ACTIONS(2617), - [sym_float] = ACTIONS(2617), - [sym_char] = ACTIONS(2617), - [anon_sym_true] = ACTIONS(2617), - [anon_sym_false] = ACTIONS(2617), - [anon_sym_nil] = ACTIONS(2617), - [sym_atom] = ACTIONS(2617), - [anon_sym_DQUOTE] = ACTIONS(2617), - [anon_sym_SQUOTE] = ACTIONS(2617), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2617), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2617), - [anon_sym_LBRACK] = ACTIONS(2617), - [anon_sym_LT] = ACTIONS(2617), - [anon_sym_GT] = ACTIONS(2617), - [anon_sym_PIPE] = ACTIONS(2617), - [anon_sym_SLASH] = ACTIONS(2617), - [anon_sym_TILDE] = ACTIONS(2617), - [anon_sym_COMMA] = ACTIONS(2617), - [sym_keyword] = ACTIONS(2617), - [anon_sym_LT_LT] = ACTIONS(2617), - [anon_sym_PERCENT] = ACTIONS(2617), - [anon_sym_AMP] = ACTIONS(2617), - [anon_sym_PLUS] = ACTIONS(2617), - [anon_sym_DASH] = ACTIONS(2617), - [anon_sym_BANG] = ACTIONS(2617), - [anon_sym_CARET] = ACTIONS(2617), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2617), - [anon_sym_not] = ACTIONS(2617), - [anon_sym_AT] = ACTIONS(2617), - [anon_sym_LT_DASH] = ACTIONS(2617), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2617), - [anon_sym_when] = ACTIONS(2617), - [anon_sym_COLON_COLON] = ACTIONS(2617), - [anon_sym_EQ_GT] = ACTIONS(2617), - [anon_sym_EQ] = ACTIONS(2617), - [anon_sym_PIPE_PIPE] = ACTIONS(2617), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2617), - [anon_sym_or] = ACTIONS(2617), - [anon_sym_AMP_AMP] = ACTIONS(2617), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2617), - [anon_sym_and] = ACTIONS(2617), - [anon_sym_EQ_EQ] = ACTIONS(2617), - [anon_sym_BANG_EQ] = ACTIONS(2617), - [anon_sym_EQ_TILDE] = ACTIONS(2617), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2617), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2617), - [anon_sym_LT_EQ] = ACTIONS(2617), - [anon_sym_GT_EQ] = ACTIONS(2617), - [anon_sym_PIPE_GT] = ACTIONS(2617), - [anon_sym_LT_LT_LT] = ACTIONS(2617), - [anon_sym_GT_GT_GT] = ACTIONS(2617), - [anon_sym_LT_LT_TILDE] = ACTIONS(2617), - [anon_sym_TILDE_GT_GT] = ACTIONS(2617), - [anon_sym_LT_TILDE] = ACTIONS(2617), - [anon_sym_TILDE_GT] = ACTIONS(2617), - [anon_sym_LT_TILDE_GT] = ACTIONS(2617), - [anon_sym_LT_PIPE_GT] = ACTIONS(2617), - [anon_sym_in] = ACTIONS(2617), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2617), - [anon_sym_SLASH_SLASH] = ACTIONS(2617), - [anon_sym_PLUS_PLUS] = ACTIONS(2617), - [anon_sym_DASH_DASH] = ACTIONS(2617), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2617), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2617), - [anon_sym_DOT_DOT] = ACTIONS(2617), - [anon_sym_LT_GT] = ACTIONS(2617), - [anon_sym_STAR] = ACTIONS(2617), - [anon_sym_STAR_STAR] = ACTIONS(2617), - [anon_sym_CARET_CARET] = ACTIONS(2617), - [anon_sym_DASH_GT] = ACTIONS(2617), - [anon_sym_DOT] = ACTIONS(2617), - [anon_sym_after] = ACTIONS(2617), - [anon_sym_catch] = ACTIONS(2617), - [anon_sym_do] = ACTIONS(2617), - [anon_sym_else] = ACTIONS(2617), - [anon_sym_end] = ACTIONS(2617), - [anon_sym_fn] = ACTIONS(2617), - [anon_sym_rescue] = ACTIONS(2617), - [anon_sym_LPAREN2] = ACTIONS(2615), - [anon_sym_LBRACK2] = ACTIONS(2615), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2615), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2615), - [sym__not_in] = ACTIONS(2615), - [sym__quoted_atom_start] = ACTIONS(2615), - }, - [918] = { + [916] = { [aux_sym__terminator_token1] = ACTIONS(2635), [anon_sym_SEMI] = ACTIONS(2637), [anon_sym_LPAREN] = ACTIONS(2637), @@ -141587,211 +142021,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2635), [sym__quoted_atom_start] = ACTIONS(2635), }, - [919] = { - [aux_sym__terminator_token1] = ACTIONS(2611), - [anon_sym_SEMI] = ACTIONS(2613), - [anon_sym_LPAREN] = ACTIONS(2613), - [aux_sym_identifier_token1] = ACTIONS(2613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2613), - [sym_unused_identifier] = ACTIONS(2613), - [anon_sym___MODULE__] = ACTIONS(2613), - [anon_sym___DIR__] = ACTIONS(2613), - [anon_sym___ENV__] = ACTIONS(2613), - [anon_sym___CALLER__] = ACTIONS(2613), - [anon_sym___STACKTRACE__] = ACTIONS(2613), - [sym_alias] = ACTIONS(2613), - [sym_integer] = ACTIONS(2613), - [sym_float] = ACTIONS(2613), - [sym_char] = ACTIONS(2613), - [anon_sym_true] = ACTIONS(2613), - [anon_sym_false] = ACTIONS(2613), - [anon_sym_nil] = ACTIONS(2613), - [sym_atom] = ACTIONS(2613), - [anon_sym_DQUOTE] = ACTIONS(2613), - [anon_sym_SQUOTE] = ACTIONS(2613), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2613), - [anon_sym_LBRACE] = ACTIONS(2613), - [anon_sym_LBRACK] = ACTIONS(2613), - [anon_sym_LT] = ACTIONS(2613), - [anon_sym_GT] = ACTIONS(2613), - [anon_sym_PIPE] = ACTIONS(2613), - [anon_sym_SLASH] = ACTIONS(2613), - [anon_sym_TILDE] = ACTIONS(2613), - [anon_sym_COMMA] = ACTIONS(2613), - [sym_keyword] = ACTIONS(2613), - [anon_sym_LT_LT] = ACTIONS(2613), - [anon_sym_PERCENT] = ACTIONS(2613), - [anon_sym_AMP] = ACTIONS(2613), - [anon_sym_PLUS] = ACTIONS(2613), - [anon_sym_DASH] = ACTIONS(2613), - [anon_sym_BANG] = ACTIONS(2613), - [anon_sym_CARET] = ACTIONS(2613), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(2613), - [anon_sym_AT] = ACTIONS(2613), - [anon_sym_LT_DASH] = ACTIONS(2613), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2613), - [anon_sym_when] = ACTIONS(2613), - [anon_sym_COLON_COLON] = ACTIONS(2613), - [anon_sym_EQ_GT] = ACTIONS(2613), - [anon_sym_EQ] = ACTIONS(2613), - [anon_sym_PIPE_PIPE] = ACTIONS(2613), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2613), - [anon_sym_or] = ACTIONS(2613), - [anon_sym_AMP_AMP] = ACTIONS(2613), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2613), - [anon_sym_and] = ACTIONS(2613), - [anon_sym_EQ_EQ] = ACTIONS(2613), - [anon_sym_BANG_EQ] = ACTIONS(2613), - [anon_sym_EQ_TILDE] = ACTIONS(2613), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2613), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2613), - [anon_sym_LT_EQ] = ACTIONS(2613), - [anon_sym_GT_EQ] = ACTIONS(2613), - [anon_sym_PIPE_GT] = ACTIONS(2613), - [anon_sym_LT_LT_LT] = ACTIONS(2613), - [anon_sym_GT_GT_GT] = ACTIONS(2613), - [anon_sym_LT_LT_TILDE] = ACTIONS(2613), - [anon_sym_TILDE_GT_GT] = ACTIONS(2613), - [anon_sym_LT_TILDE] = ACTIONS(2613), - [anon_sym_TILDE_GT] = ACTIONS(2613), - [anon_sym_LT_TILDE_GT] = ACTIONS(2613), - [anon_sym_LT_PIPE_GT] = ACTIONS(2613), - [anon_sym_in] = ACTIONS(2613), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2613), - [anon_sym_SLASH_SLASH] = ACTIONS(2613), - [anon_sym_PLUS_PLUS] = ACTIONS(2613), - [anon_sym_DASH_DASH] = ACTIONS(2613), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2613), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2613), - [anon_sym_DOT_DOT] = ACTIONS(2613), - [anon_sym_LT_GT] = ACTIONS(2613), - [anon_sym_STAR] = ACTIONS(2613), - [anon_sym_STAR_STAR] = ACTIONS(2613), - [anon_sym_CARET_CARET] = ACTIONS(2613), - [anon_sym_DASH_GT] = ACTIONS(2613), - [anon_sym_DOT] = ACTIONS(2613), - [anon_sym_after] = ACTIONS(2613), - [anon_sym_catch] = ACTIONS(2613), - [anon_sym_do] = ACTIONS(2613), - [anon_sym_else] = ACTIONS(2613), - [anon_sym_end] = ACTIONS(2613), - [anon_sym_fn] = ACTIONS(2613), - [anon_sym_rescue] = ACTIONS(2613), - [anon_sym_LPAREN2] = ACTIONS(2611), - [anon_sym_LBRACK2] = ACTIONS(2611), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2611), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2611), - [sym__not_in] = ACTIONS(2611), - [sym__quoted_atom_start] = ACTIONS(2611), - }, - [920] = { - [aux_sym__terminator_token1] = ACTIONS(2611), - [anon_sym_SEMI] = ACTIONS(2613), - [anon_sym_LPAREN] = ACTIONS(2613), - [aux_sym_identifier_token1] = ACTIONS(2613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2613), - [sym_unused_identifier] = ACTIONS(2613), - [anon_sym___MODULE__] = ACTIONS(2613), - [anon_sym___DIR__] = ACTIONS(2613), - [anon_sym___ENV__] = ACTIONS(2613), - [anon_sym___CALLER__] = ACTIONS(2613), - [anon_sym___STACKTRACE__] = ACTIONS(2613), - [sym_alias] = ACTIONS(2613), - [sym_integer] = ACTIONS(2613), - [sym_float] = ACTIONS(2613), - [sym_char] = ACTIONS(2613), - [anon_sym_true] = ACTIONS(2613), - [anon_sym_false] = ACTIONS(2613), - [anon_sym_nil] = ACTIONS(2613), - [sym_atom] = ACTIONS(2613), - [anon_sym_DQUOTE] = ACTIONS(2613), - [anon_sym_SQUOTE] = ACTIONS(2613), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2613), - [anon_sym_LBRACE] = ACTIONS(2613), - [anon_sym_LBRACK] = ACTIONS(2613), - [anon_sym_LT] = ACTIONS(2613), - [anon_sym_GT] = ACTIONS(2613), - [anon_sym_PIPE] = ACTIONS(2613), - [anon_sym_SLASH] = ACTIONS(2613), - [anon_sym_TILDE] = ACTIONS(2613), - [anon_sym_COMMA] = ACTIONS(2613), - [sym_keyword] = ACTIONS(2613), - [anon_sym_LT_LT] = ACTIONS(2613), - [anon_sym_PERCENT] = ACTIONS(2613), - [anon_sym_AMP] = ACTIONS(2613), - [anon_sym_PLUS] = ACTIONS(2613), - [anon_sym_DASH] = ACTIONS(2613), - [anon_sym_BANG] = ACTIONS(2613), - [anon_sym_CARET] = ACTIONS(2613), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(2613), - [anon_sym_AT] = ACTIONS(2613), - [anon_sym_LT_DASH] = ACTIONS(2613), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2613), - [anon_sym_when] = ACTIONS(2613), - [anon_sym_COLON_COLON] = ACTIONS(2613), - [anon_sym_EQ_GT] = ACTIONS(2613), - [anon_sym_EQ] = ACTIONS(2613), - [anon_sym_PIPE_PIPE] = ACTIONS(2613), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2613), - [anon_sym_or] = ACTIONS(2613), - [anon_sym_AMP_AMP] = ACTIONS(2613), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2613), - [anon_sym_and] = ACTIONS(2613), - [anon_sym_EQ_EQ] = ACTIONS(2613), - [anon_sym_BANG_EQ] = ACTIONS(2613), - [anon_sym_EQ_TILDE] = ACTIONS(2613), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2613), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2613), - [anon_sym_LT_EQ] = ACTIONS(2613), - [anon_sym_GT_EQ] = ACTIONS(2613), - [anon_sym_PIPE_GT] = ACTIONS(2613), - [anon_sym_LT_LT_LT] = ACTIONS(2613), - [anon_sym_GT_GT_GT] = ACTIONS(2613), - [anon_sym_LT_LT_TILDE] = ACTIONS(2613), - [anon_sym_TILDE_GT_GT] = ACTIONS(2613), - [anon_sym_LT_TILDE] = ACTIONS(2613), - [anon_sym_TILDE_GT] = ACTIONS(2613), - [anon_sym_LT_TILDE_GT] = ACTIONS(2613), - [anon_sym_LT_PIPE_GT] = ACTIONS(2613), - [anon_sym_in] = ACTIONS(2613), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2613), - [anon_sym_SLASH_SLASH] = ACTIONS(2613), - [anon_sym_PLUS_PLUS] = ACTIONS(2613), - [anon_sym_DASH_DASH] = ACTIONS(2613), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2613), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2613), - [anon_sym_DOT_DOT] = ACTIONS(2613), - [anon_sym_LT_GT] = ACTIONS(2613), - [anon_sym_STAR] = ACTIONS(2613), - [anon_sym_STAR_STAR] = ACTIONS(2613), - [anon_sym_CARET_CARET] = ACTIONS(2613), - [anon_sym_DASH_GT] = ACTIONS(2613), - [anon_sym_DOT] = ACTIONS(2613), - [anon_sym_after] = ACTIONS(2613), - [anon_sym_catch] = ACTIONS(2613), - [anon_sym_do] = ACTIONS(2613), - [anon_sym_else] = ACTIONS(2613), - [anon_sym_end] = ACTIONS(2613), - [anon_sym_fn] = ACTIONS(2613), - [anon_sym_rescue] = ACTIONS(2613), - [anon_sym_LPAREN2] = ACTIONS(2611), - [anon_sym_LBRACK2] = ACTIONS(2611), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2611), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2611), - [sym__not_in] = ACTIONS(2611), - [sym__quoted_atom_start] = ACTIONS(2611), - }, - [921] = { + [917] = { [aux_sym__terminator_token1] = ACTIONS(2639), [anon_sym_SEMI] = ACTIONS(2641), [anon_sym_LPAREN] = ACTIONS(2641), @@ -141893,6 +142123,414 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2639), [sym__quoted_atom_start] = ACTIONS(2639), }, + [918] = { + [aux_sym__terminator_token1] = ACTIONS(2643), + [anon_sym_SEMI] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(2645), + [aux_sym_identifier_token1] = ACTIONS(2645), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2645), + [sym_unused_identifier] = ACTIONS(2645), + [anon_sym___MODULE__] = ACTIONS(2645), + [anon_sym___DIR__] = ACTIONS(2645), + [anon_sym___ENV__] = ACTIONS(2645), + [anon_sym___CALLER__] = ACTIONS(2645), + [anon_sym___STACKTRACE__] = ACTIONS(2645), + [sym_alias] = ACTIONS(2645), + [sym_integer] = ACTIONS(2645), + [sym_float] = ACTIONS(2645), + [sym_char] = ACTIONS(2645), + [anon_sym_true] = ACTIONS(2645), + [anon_sym_false] = ACTIONS(2645), + [anon_sym_nil] = ACTIONS(2645), + [sym_atom] = ACTIONS(2645), + [anon_sym_DQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2645), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2645), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_LBRACK] = ACTIONS(2645), + [anon_sym_LT] = ACTIONS(2645), + [anon_sym_GT] = ACTIONS(2645), + [anon_sym_PIPE] = ACTIONS(2645), + [anon_sym_SLASH] = ACTIONS(2645), + [anon_sym_TILDE] = ACTIONS(2645), + [anon_sym_COMMA] = ACTIONS(2645), + [sym_keyword] = ACTIONS(2645), + [anon_sym_LT_LT] = ACTIONS(2645), + [anon_sym_PERCENT] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2645), + [anon_sym_PLUS] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2645), + [anon_sym_BANG] = ACTIONS(2645), + [anon_sym_CARET] = ACTIONS(2645), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2645), + [anon_sym_not] = ACTIONS(2645), + [anon_sym_AT] = ACTIONS(2645), + [anon_sym_LT_DASH] = ACTIONS(2645), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2645), + [anon_sym_when] = ACTIONS(2645), + [anon_sym_COLON_COLON] = ACTIONS(2645), + [anon_sym_EQ_GT] = ACTIONS(2645), + [anon_sym_EQ] = ACTIONS(2645), + [anon_sym_PIPE_PIPE] = ACTIONS(2645), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2645), + [anon_sym_or] = ACTIONS(2645), + [anon_sym_AMP_AMP] = ACTIONS(2645), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2645), + [anon_sym_and] = ACTIONS(2645), + [anon_sym_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ] = ACTIONS(2645), + [anon_sym_EQ_TILDE] = ACTIONS(2645), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2645), + [anon_sym_LT_EQ] = ACTIONS(2645), + [anon_sym_GT_EQ] = ACTIONS(2645), + [anon_sym_PIPE_GT] = ACTIONS(2645), + [anon_sym_LT_LT_LT] = ACTIONS(2645), + [anon_sym_GT_GT_GT] = ACTIONS(2645), + [anon_sym_LT_LT_TILDE] = ACTIONS(2645), + [anon_sym_TILDE_GT_GT] = ACTIONS(2645), + [anon_sym_LT_TILDE] = ACTIONS(2645), + [anon_sym_TILDE_GT] = ACTIONS(2645), + [anon_sym_LT_TILDE_GT] = ACTIONS(2645), + [anon_sym_LT_PIPE_GT] = ACTIONS(2645), + [anon_sym_in] = ACTIONS(2645), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2645), + [anon_sym_SLASH_SLASH] = ACTIONS(2645), + [anon_sym_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_DASH_DASH] = ACTIONS(2645), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2645), + [anon_sym_DOT_DOT] = ACTIONS(2645), + [anon_sym_LT_GT] = ACTIONS(2645), + [anon_sym_STAR] = ACTIONS(2645), + [anon_sym_STAR_STAR] = ACTIONS(2645), + [anon_sym_CARET_CARET] = ACTIONS(2645), + [anon_sym_DASH_GT] = ACTIONS(2645), + [anon_sym_DOT] = ACTIONS(2645), + [anon_sym_after] = ACTIONS(2645), + [anon_sym_catch] = ACTIONS(2645), + [anon_sym_do] = ACTIONS(2645), + [anon_sym_else] = ACTIONS(2645), + [anon_sym_end] = ACTIONS(2645), + [anon_sym_fn] = ACTIONS(2645), + [anon_sym_rescue] = ACTIONS(2645), + [anon_sym_LPAREN2] = ACTIONS(2643), + [anon_sym_LBRACK2] = ACTIONS(2643), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2643), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2643), + [sym__not_in] = ACTIONS(2643), + [sym__quoted_atom_start] = ACTIONS(2643), + }, + [919] = { + [aux_sym__terminator_token1] = ACTIONS(2635), + [anon_sym_SEMI] = ACTIONS(2637), + [anon_sym_LPAREN] = ACTIONS(2637), + [aux_sym_identifier_token1] = ACTIONS(2637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2637), + [sym_unused_identifier] = ACTIONS(2637), + [anon_sym___MODULE__] = ACTIONS(2637), + [anon_sym___DIR__] = ACTIONS(2637), + [anon_sym___ENV__] = ACTIONS(2637), + [anon_sym___CALLER__] = ACTIONS(2637), + [anon_sym___STACKTRACE__] = ACTIONS(2637), + [sym_alias] = ACTIONS(2637), + [sym_integer] = ACTIONS(2637), + [sym_float] = ACTIONS(2637), + [sym_char] = ACTIONS(2637), + [anon_sym_true] = ACTIONS(2637), + [anon_sym_false] = ACTIONS(2637), + [anon_sym_nil] = ACTIONS(2637), + [sym_atom] = ACTIONS(2637), + [anon_sym_DQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2637), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2637), + [anon_sym_LBRACE] = ACTIONS(2637), + [anon_sym_LBRACK] = ACTIONS(2637), + [anon_sym_LT] = ACTIONS(2637), + [anon_sym_GT] = ACTIONS(2637), + [anon_sym_PIPE] = ACTIONS(2637), + [anon_sym_SLASH] = ACTIONS(2637), + [anon_sym_TILDE] = ACTIONS(2637), + [anon_sym_COMMA] = ACTIONS(2637), + [sym_keyword] = ACTIONS(2637), + [anon_sym_LT_LT] = ACTIONS(2637), + [anon_sym_PERCENT] = ACTIONS(2637), + [anon_sym_AMP] = ACTIONS(2637), + [anon_sym_PLUS] = ACTIONS(2637), + [anon_sym_DASH] = ACTIONS(2637), + [anon_sym_BANG] = ACTIONS(2637), + [anon_sym_CARET] = ACTIONS(2637), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2637), + [anon_sym_not] = ACTIONS(2637), + [anon_sym_AT] = ACTIONS(2637), + [anon_sym_LT_DASH] = ACTIONS(2637), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2637), + [anon_sym_when] = ACTIONS(2637), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_EQ_GT] = ACTIONS(2637), + [anon_sym_EQ] = ACTIONS(2637), + [anon_sym_PIPE_PIPE] = ACTIONS(2637), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2637), + [anon_sym_or] = ACTIONS(2637), + [anon_sym_AMP_AMP] = ACTIONS(2637), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2637), + [anon_sym_and] = ACTIONS(2637), + [anon_sym_EQ_EQ] = ACTIONS(2637), + [anon_sym_BANG_EQ] = ACTIONS(2637), + [anon_sym_EQ_TILDE] = ACTIONS(2637), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2637), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2637), + [anon_sym_LT_EQ] = ACTIONS(2637), + [anon_sym_GT_EQ] = ACTIONS(2637), + [anon_sym_PIPE_GT] = ACTIONS(2637), + [anon_sym_LT_LT_LT] = ACTIONS(2637), + [anon_sym_GT_GT_GT] = ACTIONS(2637), + [anon_sym_LT_LT_TILDE] = ACTIONS(2637), + [anon_sym_TILDE_GT_GT] = ACTIONS(2637), + [anon_sym_LT_TILDE] = ACTIONS(2637), + [anon_sym_TILDE_GT] = ACTIONS(2637), + [anon_sym_LT_TILDE_GT] = ACTIONS(2637), + [anon_sym_LT_PIPE_GT] = ACTIONS(2637), + [anon_sym_in] = ACTIONS(2637), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2637), + [anon_sym_SLASH_SLASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_DASH_DASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2637), + [anon_sym_DOT_DOT] = ACTIONS(2637), + [anon_sym_LT_GT] = ACTIONS(2637), + [anon_sym_STAR] = ACTIONS(2637), + [anon_sym_STAR_STAR] = ACTIONS(2637), + [anon_sym_CARET_CARET] = ACTIONS(2637), + [anon_sym_DASH_GT] = ACTIONS(2637), + [anon_sym_DOT] = ACTIONS(2637), + [anon_sym_after] = ACTIONS(2637), + [anon_sym_catch] = ACTIONS(2637), + [anon_sym_do] = ACTIONS(2637), + [anon_sym_else] = ACTIONS(2637), + [anon_sym_end] = ACTIONS(2637), + [anon_sym_fn] = ACTIONS(2637), + [anon_sym_rescue] = ACTIONS(2637), + [anon_sym_LPAREN2] = ACTIONS(2635), + [anon_sym_LBRACK2] = ACTIONS(2635), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2635), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2635), + [sym__not_in] = ACTIONS(2635), + [sym__quoted_atom_start] = ACTIONS(2635), + }, + [920] = { + [aux_sym__terminator_token1] = ACTIONS(2647), + [anon_sym_SEMI] = ACTIONS(2649), + [anon_sym_LPAREN] = ACTIONS(2649), + [aux_sym_identifier_token1] = ACTIONS(2649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2649), + [sym_unused_identifier] = ACTIONS(2649), + [anon_sym___MODULE__] = ACTIONS(2649), + [anon_sym___DIR__] = ACTIONS(2649), + [anon_sym___ENV__] = ACTIONS(2649), + [anon_sym___CALLER__] = ACTIONS(2649), + [anon_sym___STACKTRACE__] = ACTIONS(2649), + [sym_alias] = ACTIONS(2649), + [sym_integer] = ACTIONS(2649), + [sym_float] = ACTIONS(2649), + [sym_char] = ACTIONS(2649), + [anon_sym_true] = ACTIONS(2649), + [anon_sym_false] = ACTIONS(2649), + [anon_sym_nil] = ACTIONS(2649), + [sym_atom] = ACTIONS(2649), + [anon_sym_DQUOTE] = ACTIONS(2649), + [anon_sym_SQUOTE] = ACTIONS(2649), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2649), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2649), + [anon_sym_LBRACK] = ACTIONS(2649), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_GT] = ACTIONS(2649), + [anon_sym_PIPE] = ACTIONS(2649), + [anon_sym_SLASH] = ACTIONS(2649), + [anon_sym_TILDE] = ACTIONS(2649), + [anon_sym_COMMA] = ACTIONS(2649), + [sym_keyword] = ACTIONS(2649), + [anon_sym_LT_LT] = ACTIONS(2649), + [anon_sym_PERCENT] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(2649), + [anon_sym_PLUS] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_BANG] = ACTIONS(2649), + [anon_sym_CARET] = ACTIONS(2649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2649), + [anon_sym_not] = ACTIONS(2649), + [anon_sym_AT] = ACTIONS(2649), + [anon_sym_LT_DASH] = ACTIONS(2649), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2649), + [anon_sym_when] = ACTIONS(2649), + [anon_sym_COLON_COLON] = ACTIONS(2649), + [anon_sym_EQ_GT] = ACTIONS(2649), + [anon_sym_EQ] = ACTIONS(2649), + [anon_sym_PIPE_PIPE] = ACTIONS(2649), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2649), + [anon_sym_or] = ACTIONS(2649), + [anon_sym_AMP_AMP] = ACTIONS(2649), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2649), + [anon_sym_and] = ACTIONS(2649), + [anon_sym_EQ_EQ] = ACTIONS(2649), + [anon_sym_BANG_EQ] = ACTIONS(2649), + [anon_sym_EQ_TILDE] = ACTIONS(2649), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2649), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2649), + [anon_sym_LT_EQ] = ACTIONS(2649), + [anon_sym_GT_EQ] = ACTIONS(2649), + [anon_sym_PIPE_GT] = ACTIONS(2649), + [anon_sym_LT_LT_LT] = ACTIONS(2649), + [anon_sym_GT_GT_GT] = ACTIONS(2649), + [anon_sym_LT_LT_TILDE] = ACTIONS(2649), + [anon_sym_TILDE_GT_GT] = ACTIONS(2649), + [anon_sym_LT_TILDE] = ACTIONS(2649), + [anon_sym_TILDE_GT] = ACTIONS(2649), + [anon_sym_LT_TILDE_GT] = ACTIONS(2649), + [anon_sym_LT_PIPE_GT] = ACTIONS(2649), + [anon_sym_in] = ACTIONS(2649), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2649), + [anon_sym_SLASH_SLASH] = ACTIONS(2649), + [anon_sym_PLUS_PLUS] = ACTIONS(2649), + [anon_sym_DASH_DASH] = ACTIONS(2649), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2649), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2649), + [anon_sym_DOT_DOT] = ACTIONS(2649), + [anon_sym_LT_GT] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2649), + [anon_sym_STAR_STAR] = ACTIONS(2649), + [anon_sym_CARET_CARET] = ACTIONS(2649), + [anon_sym_DASH_GT] = ACTIONS(2649), + [anon_sym_DOT] = ACTIONS(2649), + [anon_sym_after] = ACTIONS(2649), + [anon_sym_catch] = ACTIONS(2649), + [anon_sym_do] = ACTIONS(2649), + [anon_sym_else] = ACTIONS(2649), + [anon_sym_end] = ACTIONS(2649), + [anon_sym_fn] = ACTIONS(2649), + [anon_sym_rescue] = ACTIONS(2649), + [anon_sym_LPAREN2] = ACTIONS(2647), + [anon_sym_LBRACK2] = ACTIONS(2647), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2647), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2647), + [sym__not_in] = ACTIONS(2647), + [sym__quoted_atom_start] = ACTIONS(2647), + }, + [921] = { + [aux_sym__terminator_token1] = ACTIONS(2643), + [anon_sym_SEMI] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(2645), + [aux_sym_identifier_token1] = ACTIONS(2645), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2645), + [sym_unused_identifier] = ACTIONS(2645), + [anon_sym___MODULE__] = ACTIONS(2645), + [anon_sym___DIR__] = ACTIONS(2645), + [anon_sym___ENV__] = ACTIONS(2645), + [anon_sym___CALLER__] = ACTIONS(2645), + [anon_sym___STACKTRACE__] = ACTIONS(2645), + [sym_alias] = ACTIONS(2645), + [sym_integer] = ACTIONS(2645), + [sym_float] = ACTIONS(2645), + [sym_char] = ACTIONS(2645), + [anon_sym_true] = ACTIONS(2645), + [anon_sym_false] = ACTIONS(2645), + [anon_sym_nil] = ACTIONS(2645), + [sym_atom] = ACTIONS(2645), + [anon_sym_DQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2645), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2645), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_LBRACK] = ACTIONS(2645), + [anon_sym_LT] = ACTIONS(2645), + [anon_sym_GT] = ACTIONS(2645), + [anon_sym_PIPE] = ACTIONS(2645), + [anon_sym_SLASH] = ACTIONS(2645), + [anon_sym_TILDE] = ACTIONS(2645), + [anon_sym_COMMA] = ACTIONS(2645), + [sym_keyword] = ACTIONS(2645), + [anon_sym_LT_LT] = ACTIONS(2645), + [anon_sym_PERCENT] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2645), + [anon_sym_PLUS] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2645), + [anon_sym_BANG] = ACTIONS(2645), + [anon_sym_CARET] = ACTIONS(2645), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2645), + [anon_sym_not] = ACTIONS(2645), + [anon_sym_AT] = ACTIONS(2645), + [anon_sym_LT_DASH] = ACTIONS(2645), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2645), + [anon_sym_when] = ACTIONS(2645), + [anon_sym_COLON_COLON] = ACTIONS(2645), + [anon_sym_EQ_GT] = ACTIONS(2645), + [anon_sym_EQ] = ACTIONS(2645), + [anon_sym_PIPE_PIPE] = ACTIONS(2645), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2645), + [anon_sym_or] = ACTIONS(2645), + [anon_sym_AMP_AMP] = ACTIONS(2645), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2645), + [anon_sym_and] = ACTIONS(2645), + [anon_sym_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ] = ACTIONS(2645), + [anon_sym_EQ_TILDE] = ACTIONS(2645), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2645), + [anon_sym_LT_EQ] = ACTIONS(2645), + [anon_sym_GT_EQ] = ACTIONS(2645), + [anon_sym_PIPE_GT] = ACTIONS(2645), + [anon_sym_LT_LT_LT] = ACTIONS(2645), + [anon_sym_GT_GT_GT] = ACTIONS(2645), + [anon_sym_LT_LT_TILDE] = ACTIONS(2645), + [anon_sym_TILDE_GT_GT] = ACTIONS(2645), + [anon_sym_LT_TILDE] = ACTIONS(2645), + [anon_sym_TILDE_GT] = ACTIONS(2645), + [anon_sym_LT_TILDE_GT] = ACTIONS(2645), + [anon_sym_LT_PIPE_GT] = ACTIONS(2645), + [anon_sym_in] = ACTIONS(2645), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2645), + [anon_sym_SLASH_SLASH] = ACTIONS(2645), + [anon_sym_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_DASH_DASH] = ACTIONS(2645), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2645), + [anon_sym_DOT_DOT] = ACTIONS(2645), + [anon_sym_LT_GT] = ACTIONS(2645), + [anon_sym_STAR] = ACTIONS(2645), + [anon_sym_STAR_STAR] = ACTIONS(2645), + [anon_sym_CARET_CARET] = ACTIONS(2645), + [anon_sym_DASH_GT] = ACTIONS(2645), + [anon_sym_DOT] = ACTIONS(2645), + [anon_sym_after] = ACTIONS(2645), + [anon_sym_catch] = ACTIONS(2645), + [anon_sym_do] = ACTIONS(2645), + [anon_sym_else] = ACTIONS(2645), + [anon_sym_end] = ACTIONS(2645), + [anon_sym_fn] = ACTIONS(2645), + [anon_sym_rescue] = ACTIONS(2645), + [anon_sym_LPAREN2] = ACTIONS(2643), + [anon_sym_LBRACK2] = ACTIONS(2643), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2643), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2643), + [sym__not_in] = ACTIONS(2643), + [sym__quoted_atom_start] = ACTIONS(2643), + }, [922] = { [aux_sym__terminator_token1] = ACTIONS(2643), [anon_sym_SEMI] = ACTIONS(2645), @@ -141996,210 +142634,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(2643), }, [923] = { - [aux_sym__terminator_token1] = ACTIONS(2647), - [anon_sym_SEMI] = ACTIONS(2649), - [anon_sym_LPAREN] = ACTIONS(2649), - [aux_sym_identifier_token1] = ACTIONS(2649), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2649), - [sym_unused_identifier] = ACTIONS(2649), - [anon_sym___MODULE__] = ACTIONS(2649), - [anon_sym___DIR__] = ACTIONS(2649), - [anon_sym___ENV__] = ACTIONS(2649), - [anon_sym___CALLER__] = ACTIONS(2649), - [anon_sym___STACKTRACE__] = ACTIONS(2649), - [sym_alias] = ACTIONS(2649), - [sym_integer] = ACTIONS(2649), - [sym_float] = ACTIONS(2649), - [sym_char] = ACTIONS(2649), - [anon_sym_true] = ACTIONS(2649), - [anon_sym_false] = ACTIONS(2649), - [anon_sym_nil] = ACTIONS(2649), - [sym_atom] = ACTIONS(2649), - [anon_sym_DQUOTE] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2649), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2649), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2649), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_GT] = ACTIONS(2649), - [anon_sym_PIPE] = ACTIONS(2649), - [anon_sym_SLASH] = ACTIONS(2649), - [anon_sym_TILDE] = ACTIONS(2649), - [anon_sym_COMMA] = ACTIONS(2649), - [sym_keyword] = ACTIONS(2649), - [anon_sym_LT_LT] = ACTIONS(2649), - [anon_sym_PERCENT] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2649), - [anon_sym_PLUS] = ACTIONS(2649), - [anon_sym_DASH] = ACTIONS(2649), - [anon_sym_BANG] = ACTIONS(2649), - [anon_sym_CARET] = ACTIONS(2649), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2649), - [anon_sym_not] = ACTIONS(2649), - [anon_sym_AT] = ACTIONS(2649), - [anon_sym_LT_DASH] = ACTIONS(2649), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2649), - [anon_sym_when] = ACTIONS(2649), - [anon_sym_COLON_COLON] = ACTIONS(2649), - [anon_sym_EQ_GT] = ACTIONS(2649), - [anon_sym_EQ] = ACTIONS(2649), - [anon_sym_PIPE_PIPE] = ACTIONS(2649), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2649), - [anon_sym_or] = ACTIONS(2649), - [anon_sym_AMP_AMP] = ACTIONS(2649), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2649), - [anon_sym_and] = ACTIONS(2649), - [anon_sym_EQ_EQ] = ACTIONS(2649), - [anon_sym_BANG_EQ] = ACTIONS(2649), - [anon_sym_EQ_TILDE] = ACTIONS(2649), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2649), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2649), - [anon_sym_LT_EQ] = ACTIONS(2649), - [anon_sym_GT_EQ] = ACTIONS(2649), - [anon_sym_PIPE_GT] = ACTIONS(2649), - [anon_sym_LT_LT_LT] = ACTIONS(2649), - [anon_sym_GT_GT_GT] = ACTIONS(2649), - [anon_sym_LT_LT_TILDE] = ACTIONS(2649), - [anon_sym_TILDE_GT_GT] = ACTIONS(2649), - [anon_sym_LT_TILDE] = ACTIONS(2649), - [anon_sym_TILDE_GT] = ACTIONS(2649), - [anon_sym_LT_TILDE_GT] = ACTIONS(2649), - [anon_sym_LT_PIPE_GT] = ACTIONS(2649), - [anon_sym_in] = ACTIONS(2649), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2649), - [anon_sym_SLASH_SLASH] = ACTIONS(2649), - [anon_sym_PLUS_PLUS] = ACTIONS(2649), - [anon_sym_DASH_DASH] = ACTIONS(2649), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2649), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2649), - [anon_sym_DOT_DOT] = ACTIONS(2649), - [anon_sym_LT_GT] = ACTIONS(2649), - [anon_sym_STAR] = ACTIONS(2649), - [anon_sym_STAR_STAR] = ACTIONS(2649), - [anon_sym_CARET_CARET] = ACTIONS(2649), - [anon_sym_DASH_GT] = ACTIONS(2649), - [anon_sym_DOT] = ACTIONS(2649), - [anon_sym_after] = ACTIONS(2649), - [anon_sym_catch] = ACTIONS(2649), - [anon_sym_do] = ACTIONS(2649), - [anon_sym_else] = ACTIONS(2649), - [anon_sym_end] = ACTIONS(2649), - [anon_sym_fn] = ACTIONS(2649), - [anon_sym_rescue] = ACTIONS(2649), - [anon_sym_LPAREN2] = ACTIONS(2647), - [anon_sym_LBRACK2] = ACTIONS(2647), + [aux_sym__terminator_token1] = ACTIONS(2635), + [anon_sym_SEMI] = ACTIONS(2637), + [anon_sym_LPAREN] = ACTIONS(2637), + [aux_sym_identifier_token1] = ACTIONS(2637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2637), + [sym_unused_identifier] = ACTIONS(2637), + [anon_sym___MODULE__] = ACTIONS(2637), + [anon_sym___DIR__] = ACTIONS(2637), + [anon_sym___ENV__] = ACTIONS(2637), + [anon_sym___CALLER__] = ACTIONS(2637), + [anon_sym___STACKTRACE__] = ACTIONS(2637), + [sym_alias] = ACTIONS(2637), + [sym_integer] = ACTIONS(2637), + [sym_float] = ACTIONS(2637), + [sym_char] = ACTIONS(2637), + [anon_sym_true] = ACTIONS(2637), + [anon_sym_false] = ACTIONS(2637), + [anon_sym_nil] = ACTIONS(2637), + [sym_atom] = ACTIONS(2637), + [anon_sym_DQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2637), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2637), + [anon_sym_LBRACE] = ACTIONS(2637), + [anon_sym_LBRACK] = ACTIONS(2637), + [anon_sym_LT] = ACTIONS(2637), + [anon_sym_GT] = ACTIONS(2637), + [anon_sym_PIPE] = ACTIONS(2637), + [anon_sym_SLASH] = ACTIONS(2637), + [anon_sym_TILDE] = ACTIONS(2637), + [anon_sym_COMMA] = ACTIONS(2637), + [sym_keyword] = ACTIONS(2637), + [anon_sym_LT_LT] = ACTIONS(2637), + [anon_sym_PERCENT] = ACTIONS(2637), + [anon_sym_AMP] = ACTIONS(2637), + [anon_sym_PLUS] = ACTIONS(2637), + [anon_sym_DASH] = ACTIONS(2637), + [anon_sym_BANG] = ACTIONS(2637), + [anon_sym_CARET] = ACTIONS(2637), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2637), + [anon_sym_not] = ACTIONS(2637), + [anon_sym_AT] = ACTIONS(2637), + [anon_sym_LT_DASH] = ACTIONS(2637), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2637), + [anon_sym_when] = ACTIONS(2637), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_EQ_GT] = ACTIONS(2637), + [anon_sym_EQ] = ACTIONS(2637), + [anon_sym_PIPE_PIPE] = ACTIONS(2637), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2637), + [anon_sym_or] = ACTIONS(2637), + [anon_sym_AMP_AMP] = ACTIONS(2637), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2637), + [anon_sym_and] = ACTIONS(2637), + [anon_sym_EQ_EQ] = ACTIONS(2637), + [anon_sym_BANG_EQ] = ACTIONS(2637), + [anon_sym_EQ_TILDE] = ACTIONS(2637), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2637), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2637), + [anon_sym_LT_EQ] = ACTIONS(2637), + [anon_sym_GT_EQ] = ACTIONS(2637), + [anon_sym_PIPE_GT] = ACTIONS(2637), + [anon_sym_LT_LT_LT] = ACTIONS(2637), + [anon_sym_GT_GT_GT] = ACTIONS(2637), + [anon_sym_LT_LT_TILDE] = ACTIONS(2637), + [anon_sym_TILDE_GT_GT] = ACTIONS(2637), + [anon_sym_LT_TILDE] = ACTIONS(2637), + [anon_sym_TILDE_GT] = ACTIONS(2637), + [anon_sym_LT_TILDE_GT] = ACTIONS(2637), + [anon_sym_LT_PIPE_GT] = ACTIONS(2637), + [anon_sym_in] = ACTIONS(2637), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2637), + [anon_sym_SLASH_SLASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_DASH_DASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2637), + [anon_sym_DOT_DOT] = ACTIONS(2637), + [anon_sym_LT_GT] = ACTIONS(2637), + [anon_sym_STAR] = ACTIONS(2637), + [anon_sym_STAR_STAR] = ACTIONS(2637), + [anon_sym_CARET_CARET] = ACTIONS(2637), + [anon_sym_DASH_GT] = ACTIONS(2637), + [anon_sym_DOT] = ACTIONS(2637), + [anon_sym_after] = ACTIONS(2637), + [anon_sym_catch] = ACTIONS(2637), + [anon_sym_do] = ACTIONS(2637), + [anon_sym_else] = ACTIONS(2637), + [anon_sym_end] = ACTIONS(2637), + [anon_sym_fn] = ACTIONS(2637), + [anon_sym_rescue] = ACTIONS(2637), + [anon_sym_LPAREN2] = ACTIONS(2635), + [anon_sym_LBRACK2] = ACTIONS(2635), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2647), + [sym__newline_before_do] = ACTIONS(2635), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2647), - [sym__not_in] = ACTIONS(2647), - [sym__quoted_atom_start] = ACTIONS(2647), + [sym__before_unary_op] = ACTIONS(2635), + [sym__not_in] = ACTIONS(2635), + [sym__quoted_atom_start] = ACTIONS(2635), }, [924] = { - [aux_sym__terminator_token1] = ACTIONS(2615), - [anon_sym_SEMI] = ACTIONS(2617), - [anon_sym_LPAREN] = ACTIONS(2617), - [aux_sym_identifier_token1] = ACTIONS(2617), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2617), - [sym_unused_identifier] = ACTIONS(2617), - [anon_sym___MODULE__] = ACTIONS(2617), - [anon_sym___DIR__] = ACTIONS(2617), - [anon_sym___ENV__] = ACTIONS(2617), - [anon_sym___CALLER__] = ACTIONS(2617), - [anon_sym___STACKTRACE__] = ACTIONS(2617), - [sym_alias] = ACTIONS(2617), - [sym_integer] = ACTIONS(2617), - [sym_float] = ACTIONS(2617), - [sym_char] = ACTIONS(2617), - [anon_sym_true] = ACTIONS(2617), - [anon_sym_false] = ACTIONS(2617), - [anon_sym_nil] = ACTIONS(2617), - [sym_atom] = ACTIONS(2617), - [anon_sym_DQUOTE] = ACTIONS(2617), - [anon_sym_SQUOTE] = ACTIONS(2617), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2617), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2617), - [anon_sym_LBRACK] = ACTIONS(2617), - [anon_sym_LT] = ACTIONS(2617), - [anon_sym_GT] = ACTIONS(2617), - [anon_sym_PIPE] = ACTIONS(2617), - [anon_sym_SLASH] = ACTIONS(2617), - [anon_sym_TILDE] = ACTIONS(2617), - [anon_sym_COMMA] = ACTIONS(2617), - [sym_keyword] = ACTIONS(2617), - [anon_sym_LT_LT] = ACTIONS(2617), - [anon_sym_PERCENT] = ACTIONS(2617), - [anon_sym_AMP] = ACTIONS(2617), - [anon_sym_PLUS] = ACTIONS(2617), - [anon_sym_DASH] = ACTIONS(2617), - [anon_sym_BANG] = ACTIONS(2617), - [anon_sym_CARET] = ACTIONS(2617), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2617), - [anon_sym_not] = ACTIONS(2617), - [anon_sym_AT] = ACTIONS(2617), - [anon_sym_LT_DASH] = ACTIONS(2617), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2617), - [anon_sym_when] = ACTIONS(2617), - [anon_sym_COLON_COLON] = ACTIONS(2617), - [anon_sym_EQ_GT] = ACTIONS(2617), - [anon_sym_EQ] = ACTIONS(2617), - [anon_sym_PIPE_PIPE] = ACTIONS(2617), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2617), - [anon_sym_or] = ACTIONS(2617), - [anon_sym_AMP_AMP] = ACTIONS(2617), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2617), - [anon_sym_and] = ACTIONS(2617), - [anon_sym_EQ_EQ] = ACTIONS(2617), - [anon_sym_BANG_EQ] = ACTIONS(2617), - [anon_sym_EQ_TILDE] = ACTIONS(2617), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2617), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2617), - [anon_sym_LT_EQ] = ACTIONS(2617), - [anon_sym_GT_EQ] = ACTIONS(2617), - [anon_sym_PIPE_GT] = ACTIONS(2617), - [anon_sym_LT_LT_LT] = ACTIONS(2617), - [anon_sym_GT_GT_GT] = ACTIONS(2617), - [anon_sym_LT_LT_TILDE] = ACTIONS(2617), - [anon_sym_TILDE_GT_GT] = ACTIONS(2617), - [anon_sym_LT_TILDE] = ACTIONS(2617), - [anon_sym_TILDE_GT] = ACTIONS(2617), - [anon_sym_LT_TILDE_GT] = ACTIONS(2617), - [anon_sym_LT_PIPE_GT] = ACTIONS(2617), - [anon_sym_in] = ACTIONS(2617), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2617), - [anon_sym_SLASH_SLASH] = ACTIONS(2617), - [anon_sym_PLUS_PLUS] = ACTIONS(2617), - [anon_sym_DASH_DASH] = ACTIONS(2617), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2617), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2617), - [anon_sym_DOT_DOT] = ACTIONS(2617), - [anon_sym_LT_GT] = ACTIONS(2617), - [anon_sym_STAR] = ACTIONS(2617), - [anon_sym_STAR_STAR] = ACTIONS(2617), - [anon_sym_CARET_CARET] = ACTIONS(2617), - [anon_sym_DASH_GT] = ACTIONS(2617), - [anon_sym_DOT] = ACTIONS(2617), - [anon_sym_after] = ACTIONS(2617), - [anon_sym_catch] = ACTIONS(2617), - [anon_sym_do] = ACTIONS(2617), - [anon_sym_else] = ACTIONS(2617), - [anon_sym_end] = ACTIONS(2617), - [anon_sym_fn] = ACTIONS(2617), - [anon_sym_rescue] = ACTIONS(2617), - [anon_sym_LPAREN2] = ACTIONS(2615), - [anon_sym_LBRACK2] = ACTIONS(2615), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2615), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2615), - [sym__not_in] = ACTIONS(2615), - [sym__quoted_atom_start] = ACTIONS(2615), - }, - [925] = { [aux_sym__terminator_token1] = ACTIONS(2651), [anon_sym_SEMI] = ACTIONS(2653), [anon_sym_LPAREN] = ACTIONS(2653), @@ -142301,10 +142837,314 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2651), [sym__quoted_atom_start] = ACTIONS(2651), }, + [925] = { + [aux_sym__terminator_token1] = ACTIONS(2643), + [anon_sym_SEMI] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(2645), + [aux_sym_identifier_token1] = ACTIONS(2645), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2645), + [sym_unused_identifier] = ACTIONS(2645), + [anon_sym___MODULE__] = ACTIONS(2645), + [anon_sym___DIR__] = ACTIONS(2645), + [anon_sym___ENV__] = ACTIONS(2645), + [anon_sym___CALLER__] = ACTIONS(2645), + [anon_sym___STACKTRACE__] = ACTIONS(2645), + [sym_alias] = ACTIONS(2645), + [sym_integer] = ACTIONS(2645), + [sym_float] = ACTIONS(2645), + [sym_char] = ACTIONS(2645), + [anon_sym_true] = ACTIONS(2645), + [anon_sym_false] = ACTIONS(2645), + [anon_sym_nil] = ACTIONS(2645), + [sym_atom] = ACTIONS(2645), + [anon_sym_DQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2645), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2645), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_LBRACK] = ACTIONS(2645), + [anon_sym_LT] = ACTIONS(2645), + [anon_sym_GT] = ACTIONS(2645), + [anon_sym_PIPE] = ACTIONS(2645), + [anon_sym_SLASH] = ACTIONS(2645), + [anon_sym_TILDE] = ACTIONS(2645), + [anon_sym_COMMA] = ACTIONS(2645), + [sym_keyword] = ACTIONS(2645), + [anon_sym_LT_LT] = ACTIONS(2645), + [anon_sym_PERCENT] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2645), + [anon_sym_PLUS] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2645), + [anon_sym_BANG] = ACTIONS(2645), + [anon_sym_CARET] = ACTIONS(2645), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2645), + [anon_sym_not] = ACTIONS(2645), + [anon_sym_AT] = ACTIONS(2645), + [anon_sym_LT_DASH] = ACTIONS(2645), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2645), + [anon_sym_when] = ACTIONS(2645), + [anon_sym_COLON_COLON] = ACTIONS(2645), + [anon_sym_EQ_GT] = ACTIONS(2645), + [anon_sym_EQ] = ACTIONS(2645), + [anon_sym_PIPE_PIPE] = ACTIONS(2645), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2645), + [anon_sym_or] = ACTIONS(2645), + [anon_sym_AMP_AMP] = ACTIONS(2645), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2645), + [anon_sym_and] = ACTIONS(2645), + [anon_sym_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ] = ACTIONS(2645), + [anon_sym_EQ_TILDE] = ACTIONS(2645), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2645), + [anon_sym_LT_EQ] = ACTIONS(2645), + [anon_sym_GT_EQ] = ACTIONS(2645), + [anon_sym_PIPE_GT] = ACTIONS(2645), + [anon_sym_LT_LT_LT] = ACTIONS(2645), + [anon_sym_GT_GT_GT] = ACTIONS(2645), + [anon_sym_LT_LT_TILDE] = ACTIONS(2645), + [anon_sym_TILDE_GT_GT] = ACTIONS(2645), + [anon_sym_LT_TILDE] = ACTIONS(2645), + [anon_sym_TILDE_GT] = ACTIONS(2645), + [anon_sym_LT_TILDE_GT] = ACTIONS(2645), + [anon_sym_LT_PIPE_GT] = ACTIONS(2645), + [anon_sym_in] = ACTIONS(2645), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2645), + [anon_sym_SLASH_SLASH] = ACTIONS(2645), + [anon_sym_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_DASH_DASH] = ACTIONS(2645), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2645), + [anon_sym_DOT_DOT] = ACTIONS(2645), + [anon_sym_LT_GT] = ACTIONS(2645), + [anon_sym_STAR] = ACTIONS(2645), + [anon_sym_STAR_STAR] = ACTIONS(2645), + [anon_sym_CARET_CARET] = ACTIONS(2645), + [anon_sym_DASH_GT] = ACTIONS(2645), + [anon_sym_DOT] = ACTIONS(2645), + [anon_sym_after] = ACTIONS(2645), + [anon_sym_catch] = ACTIONS(2645), + [anon_sym_do] = ACTIONS(2645), + [anon_sym_else] = ACTIONS(2645), + [anon_sym_end] = ACTIONS(2645), + [anon_sym_fn] = ACTIONS(2645), + [anon_sym_rescue] = ACTIONS(2645), + [anon_sym_LPAREN2] = ACTIONS(2643), + [anon_sym_LBRACK2] = ACTIONS(2643), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2643), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2643), + [sym__not_in] = ACTIONS(2643), + [sym__quoted_atom_start] = ACTIONS(2643), + }, [926] = { - [aux_sym__terminator_token1] = ACTIONS(2651), - [anon_sym_SEMI] = ACTIONS(2653), + [aux_sym__terminator_token1] = ACTIONS(2615), + [anon_sym_SEMI] = ACTIONS(2617), + [anon_sym_LPAREN] = ACTIONS(2617), + [aux_sym_identifier_token1] = ACTIONS(2617), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2617), + [sym_unused_identifier] = ACTIONS(2617), + [anon_sym___MODULE__] = ACTIONS(2617), + [anon_sym___DIR__] = ACTIONS(2617), + [anon_sym___ENV__] = ACTIONS(2617), + [anon_sym___CALLER__] = ACTIONS(2617), + [anon_sym___STACKTRACE__] = ACTIONS(2617), + [sym_alias] = ACTIONS(2617), + [sym_integer] = ACTIONS(2617), + [sym_float] = ACTIONS(2617), + [sym_char] = ACTIONS(2617), + [anon_sym_true] = ACTIONS(2617), + [anon_sym_false] = ACTIONS(2617), + [anon_sym_nil] = ACTIONS(2617), + [sym_atom] = ACTIONS(2617), + [anon_sym_DQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_LBRACK] = ACTIONS(2617), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_GT] = ACTIONS(2617), + [anon_sym_PIPE] = ACTIONS(2617), + [anon_sym_SLASH] = ACTIONS(2617), + [anon_sym_TILDE] = ACTIONS(2617), + [anon_sym_COMMA] = ACTIONS(2617), + [sym_keyword] = ACTIONS(2617), + [anon_sym_LT_LT] = ACTIONS(2617), + [anon_sym_PERCENT] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2617), + [anon_sym_PLUS] = ACTIONS(2617), + [anon_sym_DASH] = ACTIONS(2617), + [anon_sym_BANG] = ACTIONS(2617), + [anon_sym_CARET] = ACTIONS(2617), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2617), + [anon_sym_not] = ACTIONS(2617), + [anon_sym_AT] = ACTIONS(2617), + [anon_sym_LT_DASH] = ACTIONS(2617), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2617), + [anon_sym_when] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_EQ_GT] = ACTIONS(2617), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2617), + [anon_sym_AMP_AMP] = ACTIONS(2617), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2617), + [anon_sym_and] = ACTIONS(2617), + [anon_sym_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_EQ_TILDE] = ACTIONS(2617), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2617), + [anon_sym_LT_EQ] = ACTIONS(2617), + [anon_sym_GT_EQ] = ACTIONS(2617), + [anon_sym_PIPE_GT] = ACTIONS(2617), + [anon_sym_LT_LT_LT] = ACTIONS(2617), + [anon_sym_GT_GT_GT] = ACTIONS(2617), + [anon_sym_LT_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_PIPE_GT] = ACTIONS(2617), + [anon_sym_in] = ACTIONS(2617), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2617), + [anon_sym_SLASH_SLASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2617), + [anon_sym_DOT_DOT] = ACTIONS(2617), + [anon_sym_LT_GT] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(2617), + [anon_sym_STAR_STAR] = ACTIONS(2617), + [anon_sym_CARET_CARET] = ACTIONS(2617), + [anon_sym_DASH_GT] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(2617), + [anon_sym_after] = ACTIONS(2617), + [anon_sym_catch] = ACTIONS(2617), + [anon_sym_do] = ACTIONS(2617), + [anon_sym_else] = ACTIONS(2617), + [anon_sym_end] = ACTIONS(2617), + [anon_sym_fn] = ACTIONS(2617), + [anon_sym_rescue] = ACTIONS(2617), + [anon_sym_LPAREN2] = ACTIONS(2615), + [anon_sym_LBRACK2] = ACTIONS(2615), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2615), + [sym__not_in] = ACTIONS(2615), + [sym__quoted_atom_start] = ACTIONS(2615), + }, + [927] = { + [aux_sym__terminator_token1] = ACTIONS(2619), + [anon_sym_SEMI] = ACTIONS(2621), + [anon_sym_LPAREN] = ACTIONS(2621), + [aux_sym_identifier_token1] = ACTIONS(2621), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2621), + [sym_unused_identifier] = ACTIONS(2621), + [anon_sym___MODULE__] = ACTIONS(2621), + [anon_sym___DIR__] = ACTIONS(2621), + [anon_sym___ENV__] = ACTIONS(2621), + [anon_sym___CALLER__] = ACTIONS(2621), + [anon_sym___STACKTRACE__] = ACTIONS(2621), + [sym_alias] = ACTIONS(2621), + [sym_integer] = ACTIONS(2621), + [sym_float] = ACTIONS(2621), + [sym_char] = ACTIONS(2621), + [anon_sym_true] = ACTIONS(2621), + [anon_sym_false] = ACTIONS(2621), + [anon_sym_nil] = ACTIONS(2621), + [sym_atom] = ACTIONS(2621), + [anon_sym_DQUOTE] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2621), + [anon_sym_LBRACK] = ACTIONS(2621), + [anon_sym_LT] = ACTIONS(2621), + [anon_sym_GT] = ACTIONS(2621), + [anon_sym_PIPE] = ACTIONS(2621), + [anon_sym_SLASH] = ACTIONS(2621), + [anon_sym_TILDE] = ACTIONS(2621), + [anon_sym_COMMA] = ACTIONS(2621), + [sym_keyword] = ACTIONS(2621), + [anon_sym_LT_LT] = ACTIONS(2621), + [anon_sym_PERCENT] = ACTIONS(2621), + [anon_sym_AMP] = ACTIONS(2621), + [anon_sym_PLUS] = ACTIONS(2621), + [anon_sym_DASH] = ACTIONS(2621), + [anon_sym_BANG] = ACTIONS(2621), + [anon_sym_CARET] = ACTIONS(2621), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2621), + [anon_sym_not] = ACTIONS(2621), + [anon_sym_AT] = ACTIONS(2621), + [anon_sym_LT_DASH] = ACTIONS(2621), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2621), + [anon_sym_when] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(2621), + [anon_sym_EQ_GT] = ACTIONS(2621), + [anon_sym_EQ] = ACTIONS(2621), + [anon_sym_PIPE_PIPE] = ACTIONS(2621), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2621), + [anon_sym_or] = ACTIONS(2621), + [anon_sym_AMP_AMP] = ACTIONS(2621), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2621), + [anon_sym_and] = ACTIONS(2621), + [anon_sym_EQ_EQ] = ACTIONS(2621), + [anon_sym_BANG_EQ] = ACTIONS(2621), + [anon_sym_EQ_TILDE] = ACTIONS(2621), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2621), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2621), + [anon_sym_LT_EQ] = ACTIONS(2621), + [anon_sym_GT_EQ] = ACTIONS(2621), + [anon_sym_PIPE_GT] = ACTIONS(2621), + [anon_sym_LT_LT_LT] = ACTIONS(2621), + [anon_sym_GT_GT_GT] = ACTIONS(2621), + [anon_sym_LT_LT_TILDE] = ACTIONS(2621), + [anon_sym_TILDE_GT_GT] = ACTIONS(2621), + [anon_sym_LT_TILDE] = ACTIONS(2621), + [anon_sym_TILDE_GT] = ACTIONS(2621), + [anon_sym_LT_TILDE_GT] = ACTIONS(2621), + [anon_sym_LT_PIPE_GT] = ACTIONS(2621), + [anon_sym_in] = ACTIONS(2621), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2621), + [anon_sym_SLASH_SLASH] = ACTIONS(2621), + [anon_sym_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_DASH_DASH] = ACTIONS(2621), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2621), + [anon_sym_DOT_DOT] = ACTIONS(2621), + [anon_sym_LT_GT] = ACTIONS(2621), + [anon_sym_STAR] = ACTIONS(2621), + [anon_sym_STAR_STAR] = ACTIONS(2621), + [anon_sym_CARET_CARET] = ACTIONS(2621), + [anon_sym_DASH_GT] = ACTIONS(2621), + [anon_sym_DOT] = ACTIONS(2621), + [anon_sym_after] = ACTIONS(2621), + [anon_sym_catch] = ACTIONS(2621), + [anon_sym_do] = ACTIONS(2621), + [anon_sym_else] = ACTIONS(2621), + [anon_sym_end] = ACTIONS(2621), + [anon_sym_fn] = ACTIONS(2621), + [anon_sym_rescue] = ACTIONS(2621), + [anon_sym_LPAREN2] = ACTIONS(2619), + [anon_sym_LBRACK2] = ACTIONS(2619), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2619), + [sym__not_in] = ACTIONS(2619), + [sym__quoted_atom_start] = ACTIONS(2619), + }, + [928] = { + [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(2653), + [anon_sym_RPAREN] = ACTIONS(2653), [aux_sym_identifier_token1] = ACTIONS(2653), [anon_sym_DOT_DOT_DOT] = ACTIONS(2653), [sym_unused_identifier] = ACTIONS(2653), @@ -142326,7 +143166,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2653), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), [anon_sym_LBRACE] = ACTIONS(2653), + [anon_sym_RBRACE] = ACTIONS(2653), [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_RBRACK] = ACTIONS(2653), [anon_sym_LT] = ACTIONS(2653), [anon_sym_GT] = ACTIONS(2653), [anon_sym_PIPE] = ACTIONS(2653), @@ -142386,619 +143228,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_CARET] = ACTIONS(2653), [anon_sym_DASH_GT] = ACTIONS(2653), [anon_sym_DOT] = ACTIONS(2653), - [anon_sym_after] = ACTIONS(2653), - [anon_sym_catch] = ACTIONS(2653), [anon_sym_do] = ACTIONS(2653), - [anon_sym_else] = ACTIONS(2653), - [anon_sym_end] = ACTIONS(2653), [anon_sym_fn] = ACTIONS(2653), - [anon_sym_rescue] = ACTIONS(2653), [anon_sym_LPAREN2] = ACTIONS(2651), [anon_sym_LBRACK2] = ACTIONS(2651), [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2651), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), [sym__before_unary_op] = ACTIONS(2651), [sym__not_in] = ACTIONS(2651), [sym__quoted_atom_start] = ACTIONS(2651), }, - [927] = { - [aux_sym__terminator_token1] = ACTIONS(2631), - [anon_sym_SEMI] = ACTIONS(2633), - [anon_sym_LPAREN] = ACTIONS(2633), - [aux_sym_identifier_token1] = ACTIONS(2633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2633), - [sym_unused_identifier] = ACTIONS(2633), - [anon_sym___MODULE__] = ACTIONS(2633), - [anon_sym___DIR__] = ACTIONS(2633), - [anon_sym___ENV__] = ACTIONS(2633), - [anon_sym___CALLER__] = ACTIONS(2633), - [anon_sym___STACKTRACE__] = ACTIONS(2633), - [sym_alias] = ACTIONS(2633), - [sym_integer] = ACTIONS(2633), - [sym_float] = ACTIONS(2633), - [sym_char] = ACTIONS(2633), - [anon_sym_true] = ACTIONS(2633), - [anon_sym_false] = ACTIONS(2633), - [anon_sym_nil] = ACTIONS(2633), - [sym_atom] = ACTIONS(2633), - [anon_sym_DQUOTE] = ACTIONS(2633), - [anon_sym_SQUOTE] = ACTIONS(2633), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2633), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2633), - [anon_sym_LBRACE] = ACTIONS(2633), - [anon_sym_LBRACK] = ACTIONS(2633), - [anon_sym_LT] = ACTIONS(2633), - [anon_sym_GT] = ACTIONS(2633), - [anon_sym_PIPE] = ACTIONS(2633), - [anon_sym_SLASH] = ACTIONS(2633), - [anon_sym_TILDE] = ACTIONS(2633), - [anon_sym_COMMA] = ACTIONS(2633), - [sym_keyword] = ACTIONS(2633), - [anon_sym_LT_LT] = ACTIONS(2633), - [anon_sym_PERCENT] = ACTIONS(2633), - [anon_sym_AMP] = ACTIONS(2633), - [anon_sym_PLUS] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2633), - [anon_sym_BANG] = ACTIONS(2633), - [anon_sym_CARET] = ACTIONS(2633), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2633), - [anon_sym_not] = ACTIONS(2633), - [anon_sym_AT] = ACTIONS(2633), - [anon_sym_LT_DASH] = ACTIONS(2633), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2633), - [anon_sym_when] = ACTIONS(2633), - [anon_sym_COLON_COLON] = ACTIONS(2633), - [anon_sym_EQ_GT] = ACTIONS(2633), - [anon_sym_EQ] = ACTIONS(2633), - [anon_sym_PIPE_PIPE] = ACTIONS(2633), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2633), - [anon_sym_or] = ACTIONS(2633), - [anon_sym_AMP_AMP] = ACTIONS(2633), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2633), - [anon_sym_and] = ACTIONS(2633), - [anon_sym_EQ_EQ] = ACTIONS(2633), - [anon_sym_BANG_EQ] = ACTIONS(2633), - [anon_sym_EQ_TILDE] = ACTIONS(2633), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2633), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2633), - [anon_sym_LT_EQ] = ACTIONS(2633), - [anon_sym_GT_EQ] = ACTIONS(2633), - [anon_sym_PIPE_GT] = ACTIONS(2633), - [anon_sym_LT_LT_LT] = ACTIONS(2633), - [anon_sym_GT_GT_GT] = ACTIONS(2633), - [anon_sym_LT_LT_TILDE] = ACTIONS(2633), - [anon_sym_TILDE_GT_GT] = ACTIONS(2633), - [anon_sym_LT_TILDE] = ACTIONS(2633), - [anon_sym_TILDE_GT] = ACTIONS(2633), - [anon_sym_LT_TILDE_GT] = ACTIONS(2633), - [anon_sym_LT_PIPE_GT] = ACTIONS(2633), - [anon_sym_in] = ACTIONS(2633), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2633), - [anon_sym_SLASH_SLASH] = ACTIONS(2633), - [anon_sym_PLUS_PLUS] = ACTIONS(2633), - [anon_sym_DASH_DASH] = ACTIONS(2633), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2633), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2633), - [anon_sym_DOT_DOT] = ACTIONS(2633), - [anon_sym_LT_GT] = ACTIONS(2633), - [anon_sym_STAR] = ACTIONS(2633), - [anon_sym_STAR_STAR] = ACTIONS(2633), - [anon_sym_CARET_CARET] = ACTIONS(2633), - [anon_sym_DASH_GT] = ACTIONS(2633), - [anon_sym_DOT] = ACTIONS(2633), - [anon_sym_after] = ACTIONS(2633), - [anon_sym_catch] = ACTIONS(2633), - [anon_sym_do] = ACTIONS(2633), - [anon_sym_else] = ACTIONS(2633), - [anon_sym_end] = ACTIONS(2633), - [anon_sym_fn] = ACTIONS(2633), - [anon_sym_rescue] = ACTIONS(2633), - [anon_sym_LPAREN2] = ACTIONS(2631), - [anon_sym_LBRACK2] = ACTIONS(2631), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2631), - [sym__not_in] = ACTIONS(2631), - [sym__quoted_atom_start] = ACTIONS(2631), - }, - [928] = { - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2617), - [anon_sym_RPAREN] = ACTIONS(2617), - [aux_sym_identifier_token1] = ACTIONS(2617), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2617), - [sym_unused_identifier] = ACTIONS(2617), - [anon_sym___MODULE__] = ACTIONS(2617), - [anon_sym___DIR__] = ACTIONS(2617), - [anon_sym___ENV__] = ACTIONS(2617), - [anon_sym___CALLER__] = ACTIONS(2617), - [anon_sym___STACKTRACE__] = ACTIONS(2617), - [sym_alias] = ACTIONS(2617), - [sym_integer] = ACTIONS(2617), - [sym_float] = ACTIONS(2617), - [sym_char] = ACTIONS(2617), - [anon_sym_true] = ACTIONS(2617), - [anon_sym_false] = ACTIONS(2617), - [anon_sym_nil] = ACTIONS(2617), - [sym_atom] = ACTIONS(2617), - [anon_sym_DQUOTE] = ACTIONS(2617), - [anon_sym_SQUOTE] = ACTIONS(2617), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2617), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2617), - [anon_sym_RBRACE] = ACTIONS(2617), - [anon_sym_LBRACK] = ACTIONS(2617), - [anon_sym_RBRACK] = ACTIONS(2617), - [anon_sym_LT] = ACTIONS(2617), - [anon_sym_GT] = ACTIONS(2617), - [anon_sym_PIPE] = ACTIONS(2617), - [anon_sym_SLASH] = ACTIONS(2617), - [anon_sym_TILDE] = ACTIONS(2617), - [anon_sym_COMMA] = ACTIONS(2617), - [sym_keyword] = ACTIONS(2617), - [anon_sym_LT_LT] = ACTIONS(2617), - [anon_sym_PERCENT] = ACTIONS(2617), - [anon_sym_AMP] = ACTIONS(2617), - [anon_sym_PLUS] = ACTIONS(2617), - [anon_sym_DASH] = ACTIONS(2617), - [anon_sym_BANG] = ACTIONS(2617), - [anon_sym_CARET] = ACTIONS(2617), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2617), - [anon_sym_not] = ACTIONS(2617), - [anon_sym_AT] = ACTIONS(2617), - [anon_sym_LT_DASH] = ACTIONS(2617), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2617), - [anon_sym_when] = ACTIONS(2617), - [anon_sym_COLON_COLON] = ACTIONS(2617), - [anon_sym_EQ_GT] = ACTIONS(2617), - [anon_sym_EQ] = ACTIONS(2617), - [anon_sym_PIPE_PIPE] = ACTIONS(2617), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2617), - [anon_sym_or] = ACTIONS(2617), - [anon_sym_AMP_AMP] = ACTIONS(2617), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2617), - [anon_sym_and] = ACTIONS(2617), - [anon_sym_EQ_EQ] = ACTIONS(2617), - [anon_sym_BANG_EQ] = ACTIONS(2617), - [anon_sym_EQ_TILDE] = ACTIONS(2617), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2617), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2617), - [anon_sym_LT_EQ] = ACTIONS(2617), - [anon_sym_GT_EQ] = ACTIONS(2617), - [anon_sym_PIPE_GT] = ACTIONS(2617), - [anon_sym_LT_LT_LT] = ACTIONS(2617), - [anon_sym_GT_GT_GT] = ACTIONS(2617), - [anon_sym_LT_LT_TILDE] = ACTIONS(2617), - [anon_sym_TILDE_GT_GT] = ACTIONS(2617), - [anon_sym_LT_TILDE] = ACTIONS(2617), - [anon_sym_TILDE_GT] = ACTIONS(2617), - [anon_sym_LT_TILDE_GT] = ACTIONS(2617), - [anon_sym_LT_PIPE_GT] = ACTIONS(2617), - [anon_sym_in] = ACTIONS(2617), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2617), - [anon_sym_SLASH_SLASH] = ACTIONS(2617), - [anon_sym_PLUS_PLUS] = ACTIONS(2617), - [anon_sym_DASH_DASH] = ACTIONS(2617), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2617), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2617), - [anon_sym_DOT_DOT] = ACTIONS(2617), - [anon_sym_LT_GT] = ACTIONS(2617), - [anon_sym_STAR] = ACTIONS(2617), - [anon_sym_STAR_STAR] = ACTIONS(2617), - [anon_sym_CARET_CARET] = ACTIONS(2617), - [anon_sym_DASH_GT] = ACTIONS(2617), - [anon_sym_DOT] = ACTIONS(2617), - [anon_sym_do] = ACTIONS(2617), - [anon_sym_fn] = ACTIONS(2617), - [anon_sym_LPAREN2] = ACTIONS(2615), - [anon_sym_LBRACK2] = ACTIONS(2615), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2615), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2615), - [sym__not_in] = ACTIONS(2615), - [sym__quoted_atom_start] = ACTIONS(2615), - }, [929] = { - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2633), - [anon_sym_RPAREN] = ACTIONS(2633), - [aux_sym_identifier_token1] = ACTIONS(2633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2633), - [sym_unused_identifier] = ACTIONS(2633), - [anon_sym___MODULE__] = ACTIONS(2633), - [anon_sym___DIR__] = ACTIONS(2633), - [anon_sym___ENV__] = ACTIONS(2633), - [anon_sym___CALLER__] = ACTIONS(2633), - [anon_sym___STACKTRACE__] = ACTIONS(2633), - [sym_alias] = ACTIONS(2633), - [sym_integer] = ACTIONS(2633), - [sym_float] = ACTIONS(2633), - [sym_char] = ACTIONS(2633), - [anon_sym_true] = ACTIONS(2633), - [anon_sym_false] = ACTIONS(2633), - [anon_sym_nil] = ACTIONS(2633), - [sym_atom] = ACTIONS(2633), - [anon_sym_DQUOTE] = ACTIONS(2633), - [anon_sym_SQUOTE] = ACTIONS(2633), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2633), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2633), - [anon_sym_LBRACE] = ACTIONS(2633), - [anon_sym_RBRACE] = ACTIONS(2633), - [anon_sym_LBRACK] = ACTIONS(2633), - [anon_sym_RBRACK] = ACTIONS(2633), - [anon_sym_LT] = ACTIONS(2633), - [anon_sym_GT] = ACTIONS(2633), - [anon_sym_PIPE] = ACTIONS(2633), - [anon_sym_SLASH] = ACTIONS(2633), - [anon_sym_TILDE] = ACTIONS(2633), - [anon_sym_COMMA] = ACTIONS(2633), - [sym_keyword] = ACTIONS(2633), - [anon_sym_LT_LT] = ACTIONS(2633), - [anon_sym_PERCENT] = ACTIONS(2633), - [anon_sym_AMP] = ACTIONS(2633), - [anon_sym_PLUS] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2633), - [anon_sym_BANG] = ACTIONS(2633), - [anon_sym_CARET] = ACTIONS(2633), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2633), - [anon_sym_not] = ACTIONS(2633), - [anon_sym_AT] = ACTIONS(2633), - [anon_sym_LT_DASH] = ACTIONS(2633), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2633), - [anon_sym_when] = ACTIONS(2633), - [anon_sym_COLON_COLON] = ACTIONS(2633), - [anon_sym_EQ_GT] = ACTIONS(2633), - [anon_sym_EQ] = ACTIONS(2633), - [anon_sym_PIPE_PIPE] = ACTIONS(2633), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2633), - [anon_sym_or] = ACTIONS(2633), - [anon_sym_AMP_AMP] = ACTIONS(2633), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2633), - [anon_sym_and] = ACTIONS(2633), - [anon_sym_EQ_EQ] = ACTIONS(2633), - [anon_sym_BANG_EQ] = ACTIONS(2633), - [anon_sym_EQ_TILDE] = ACTIONS(2633), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2633), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2633), - [anon_sym_LT_EQ] = ACTIONS(2633), - [anon_sym_GT_EQ] = ACTIONS(2633), - [anon_sym_PIPE_GT] = ACTIONS(2633), - [anon_sym_LT_LT_LT] = ACTIONS(2633), - [anon_sym_GT_GT_GT] = ACTIONS(2633), - [anon_sym_LT_LT_TILDE] = ACTIONS(2633), - [anon_sym_TILDE_GT_GT] = ACTIONS(2633), - [anon_sym_LT_TILDE] = ACTIONS(2633), - [anon_sym_TILDE_GT] = ACTIONS(2633), - [anon_sym_LT_TILDE_GT] = ACTIONS(2633), - [anon_sym_LT_PIPE_GT] = ACTIONS(2633), - [anon_sym_in] = ACTIONS(2633), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2633), - [anon_sym_SLASH_SLASH] = ACTIONS(2633), - [anon_sym_PLUS_PLUS] = ACTIONS(2633), - [anon_sym_DASH_DASH] = ACTIONS(2633), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2633), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2633), - [anon_sym_DOT_DOT] = ACTIONS(2633), - [anon_sym_LT_GT] = ACTIONS(2633), - [anon_sym_STAR] = ACTIONS(2633), - [anon_sym_STAR_STAR] = ACTIONS(2633), - [anon_sym_CARET_CARET] = ACTIONS(2633), - [anon_sym_DASH_GT] = ACTIONS(2633), - [anon_sym_DOT] = ACTIONS(2633), - [anon_sym_do] = ACTIONS(2633), - [anon_sym_fn] = ACTIONS(2633), - [anon_sym_LPAREN2] = ACTIONS(2631), - [anon_sym_LBRACK2] = ACTIONS(2631), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2631), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2631), - [sym__not_in] = ACTIONS(2631), - [sym__quoted_atom_start] = ACTIONS(2631), - }, - [930] = { - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2613), - [anon_sym_RPAREN] = ACTIONS(2613), - [aux_sym_identifier_token1] = ACTIONS(2613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2613), - [sym_unused_identifier] = ACTIONS(2613), - [anon_sym___MODULE__] = ACTIONS(2613), - [anon_sym___DIR__] = ACTIONS(2613), - [anon_sym___ENV__] = ACTIONS(2613), - [anon_sym___CALLER__] = ACTIONS(2613), - [anon_sym___STACKTRACE__] = ACTIONS(2613), - [sym_alias] = ACTIONS(2613), - [sym_integer] = ACTIONS(2613), - [sym_float] = ACTIONS(2613), - [sym_char] = ACTIONS(2613), - [anon_sym_true] = ACTIONS(2613), - [anon_sym_false] = ACTIONS(2613), - [anon_sym_nil] = ACTIONS(2613), - [sym_atom] = ACTIONS(2613), - [anon_sym_DQUOTE] = ACTIONS(2613), - [anon_sym_SQUOTE] = ACTIONS(2613), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2613), - [anon_sym_LBRACE] = ACTIONS(2613), - [anon_sym_RBRACE] = ACTIONS(2613), - [anon_sym_LBRACK] = ACTIONS(2613), - [anon_sym_RBRACK] = ACTIONS(2613), - [anon_sym_LT] = ACTIONS(2613), - [anon_sym_GT] = ACTIONS(2613), - [anon_sym_PIPE] = ACTIONS(2613), - [anon_sym_SLASH] = ACTIONS(2613), - [anon_sym_TILDE] = ACTIONS(2613), - [anon_sym_COMMA] = ACTIONS(2613), - [sym_keyword] = ACTIONS(2613), - [anon_sym_LT_LT] = ACTIONS(2613), - [anon_sym_PERCENT] = ACTIONS(2613), - [anon_sym_AMP] = ACTIONS(2613), - [anon_sym_PLUS] = ACTIONS(2613), - [anon_sym_DASH] = ACTIONS(2613), - [anon_sym_BANG] = ACTIONS(2613), - [anon_sym_CARET] = ACTIONS(2613), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(2613), - [anon_sym_AT] = ACTIONS(2613), - [anon_sym_LT_DASH] = ACTIONS(2613), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2613), - [anon_sym_when] = ACTIONS(2613), - [anon_sym_COLON_COLON] = ACTIONS(2613), - [anon_sym_EQ_GT] = ACTIONS(2613), - [anon_sym_EQ] = ACTIONS(2613), - [anon_sym_PIPE_PIPE] = ACTIONS(2613), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2613), - [anon_sym_or] = ACTIONS(2613), - [anon_sym_AMP_AMP] = ACTIONS(2613), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2613), - [anon_sym_and] = ACTIONS(2613), - [anon_sym_EQ_EQ] = ACTIONS(2613), - [anon_sym_BANG_EQ] = ACTIONS(2613), - [anon_sym_EQ_TILDE] = ACTIONS(2613), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2613), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2613), - [anon_sym_LT_EQ] = ACTIONS(2613), - [anon_sym_GT_EQ] = ACTIONS(2613), - [anon_sym_PIPE_GT] = ACTIONS(2613), - [anon_sym_LT_LT_LT] = ACTIONS(2613), - [anon_sym_GT_GT_GT] = ACTIONS(2613), - [anon_sym_LT_LT_TILDE] = ACTIONS(2613), - [anon_sym_TILDE_GT_GT] = ACTIONS(2613), - [anon_sym_LT_TILDE] = ACTIONS(2613), - [anon_sym_TILDE_GT] = ACTIONS(2613), - [anon_sym_LT_TILDE_GT] = ACTIONS(2613), - [anon_sym_LT_PIPE_GT] = ACTIONS(2613), - [anon_sym_in] = ACTIONS(2613), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2613), - [anon_sym_SLASH_SLASH] = ACTIONS(2613), - [anon_sym_PLUS_PLUS] = ACTIONS(2613), - [anon_sym_DASH_DASH] = ACTIONS(2613), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2613), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2613), - [anon_sym_DOT_DOT] = ACTIONS(2613), - [anon_sym_LT_GT] = ACTIONS(2613), - [anon_sym_STAR] = ACTIONS(2613), - [anon_sym_STAR_STAR] = ACTIONS(2613), - [anon_sym_CARET_CARET] = ACTIONS(2613), - [anon_sym_DASH_GT] = ACTIONS(2613), - [anon_sym_DOT] = ACTIONS(2613), - [anon_sym_do] = ACTIONS(2613), - [anon_sym_fn] = ACTIONS(2613), - [anon_sym_LPAREN2] = ACTIONS(2611), - [anon_sym_LBRACK2] = ACTIONS(2611), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2611), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2611), - [sym__not_in] = ACTIONS(2611), - [sym__quoted_atom_start] = ACTIONS(2611), - }, - [931] = { - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2617), - [anon_sym_RPAREN] = ACTIONS(2617), - [aux_sym_identifier_token1] = ACTIONS(2617), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2617), - [sym_unused_identifier] = ACTIONS(2617), - [anon_sym___MODULE__] = ACTIONS(2617), - [anon_sym___DIR__] = ACTIONS(2617), - [anon_sym___ENV__] = ACTIONS(2617), - [anon_sym___CALLER__] = ACTIONS(2617), - [anon_sym___STACKTRACE__] = ACTIONS(2617), - [sym_alias] = ACTIONS(2617), - [sym_integer] = ACTIONS(2617), - [sym_float] = ACTIONS(2617), - [sym_char] = ACTIONS(2617), - [anon_sym_true] = ACTIONS(2617), - [anon_sym_false] = ACTIONS(2617), - [anon_sym_nil] = ACTIONS(2617), - [sym_atom] = ACTIONS(2617), - [anon_sym_DQUOTE] = ACTIONS(2617), - [anon_sym_SQUOTE] = ACTIONS(2617), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2617), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2617), - [anon_sym_RBRACE] = ACTIONS(2617), - [anon_sym_LBRACK] = ACTIONS(2617), - [anon_sym_RBRACK] = ACTIONS(2617), - [anon_sym_LT] = ACTIONS(2617), - [anon_sym_GT] = ACTIONS(2617), - [anon_sym_PIPE] = ACTIONS(2617), - [anon_sym_SLASH] = ACTIONS(2617), - [anon_sym_TILDE] = ACTIONS(2617), - [anon_sym_COMMA] = ACTIONS(2617), - [sym_keyword] = ACTIONS(2617), - [anon_sym_LT_LT] = ACTIONS(2617), - [anon_sym_PERCENT] = ACTIONS(2617), - [anon_sym_AMP] = ACTIONS(2617), - [anon_sym_PLUS] = ACTIONS(2617), - [anon_sym_DASH] = ACTIONS(2617), - [anon_sym_BANG] = ACTIONS(2617), - [anon_sym_CARET] = ACTIONS(2617), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2617), - [anon_sym_not] = ACTIONS(2617), - [anon_sym_AT] = ACTIONS(2617), - [anon_sym_LT_DASH] = ACTIONS(2617), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2617), - [anon_sym_when] = ACTIONS(2617), - [anon_sym_COLON_COLON] = ACTIONS(2617), - [anon_sym_EQ_GT] = ACTIONS(2617), - [anon_sym_EQ] = ACTIONS(2617), - [anon_sym_PIPE_PIPE] = ACTIONS(2617), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2617), - [anon_sym_or] = ACTIONS(2617), - [anon_sym_AMP_AMP] = ACTIONS(2617), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2617), - [anon_sym_and] = ACTIONS(2617), - [anon_sym_EQ_EQ] = ACTIONS(2617), - [anon_sym_BANG_EQ] = ACTIONS(2617), - [anon_sym_EQ_TILDE] = ACTIONS(2617), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2617), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2617), - [anon_sym_LT_EQ] = ACTIONS(2617), - [anon_sym_GT_EQ] = ACTIONS(2617), - [anon_sym_PIPE_GT] = ACTIONS(2617), - [anon_sym_LT_LT_LT] = ACTIONS(2617), - [anon_sym_GT_GT_GT] = ACTIONS(2617), - [anon_sym_LT_LT_TILDE] = ACTIONS(2617), - [anon_sym_TILDE_GT_GT] = ACTIONS(2617), - [anon_sym_LT_TILDE] = ACTIONS(2617), - [anon_sym_TILDE_GT] = ACTIONS(2617), - [anon_sym_LT_TILDE_GT] = ACTIONS(2617), - [anon_sym_LT_PIPE_GT] = ACTIONS(2617), - [anon_sym_in] = ACTIONS(2617), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2617), - [anon_sym_SLASH_SLASH] = ACTIONS(2617), - [anon_sym_PLUS_PLUS] = ACTIONS(2617), - [anon_sym_DASH_DASH] = ACTIONS(2617), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2617), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2617), - [anon_sym_DOT_DOT] = ACTIONS(2617), - [anon_sym_LT_GT] = ACTIONS(2617), - [anon_sym_STAR] = ACTIONS(2617), - [anon_sym_STAR_STAR] = ACTIONS(2617), - [anon_sym_CARET_CARET] = ACTIONS(2617), - [anon_sym_DASH_GT] = ACTIONS(2617), - [anon_sym_DOT] = ACTIONS(2617), - [anon_sym_do] = ACTIONS(2617), - [anon_sym_fn] = ACTIONS(2617), - [anon_sym_LPAREN2] = ACTIONS(2615), - [anon_sym_LBRACK2] = ACTIONS(2615), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2615), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2615), - [sym__not_in] = ACTIONS(2615), - [sym__quoted_atom_start] = ACTIONS(2615), - }, - [932] = { - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2613), - [anon_sym_RPAREN] = ACTIONS(2613), - [aux_sym_identifier_token1] = ACTIONS(2613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2613), - [sym_unused_identifier] = ACTIONS(2613), - [anon_sym___MODULE__] = ACTIONS(2613), - [anon_sym___DIR__] = ACTIONS(2613), - [anon_sym___ENV__] = ACTIONS(2613), - [anon_sym___CALLER__] = ACTIONS(2613), - [anon_sym___STACKTRACE__] = ACTIONS(2613), - [sym_alias] = ACTIONS(2613), - [sym_integer] = ACTIONS(2613), - [sym_float] = ACTIONS(2613), - [sym_char] = ACTIONS(2613), - [anon_sym_true] = ACTIONS(2613), - [anon_sym_false] = ACTIONS(2613), - [anon_sym_nil] = ACTIONS(2613), - [sym_atom] = ACTIONS(2613), - [anon_sym_DQUOTE] = ACTIONS(2613), - [anon_sym_SQUOTE] = ACTIONS(2613), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2613), - [anon_sym_LBRACE] = ACTIONS(2613), - [anon_sym_RBRACE] = ACTIONS(2613), - [anon_sym_LBRACK] = ACTIONS(2613), - [anon_sym_RBRACK] = ACTIONS(2613), - [anon_sym_LT] = ACTIONS(2613), - [anon_sym_GT] = ACTIONS(2613), - [anon_sym_PIPE] = ACTIONS(2613), - [anon_sym_SLASH] = ACTIONS(2613), - [anon_sym_TILDE] = ACTIONS(2613), - [anon_sym_COMMA] = ACTIONS(2613), - [sym_keyword] = ACTIONS(2613), - [anon_sym_LT_LT] = ACTIONS(2613), - [anon_sym_PERCENT] = ACTIONS(2613), - [anon_sym_AMP] = ACTIONS(2613), - [anon_sym_PLUS] = ACTIONS(2613), - [anon_sym_DASH] = ACTIONS(2613), - [anon_sym_BANG] = ACTIONS(2613), - [anon_sym_CARET] = ACTIONS(2613), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(2613), - [anon_sym_AT] = ACTIONS(2613), - [anon_sym_LT_DASH] = ACTIONS(2613), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2613), - [anon_sym_when] = ACTIONS(2613), - [anon_sym_COLON_COLON] = ACTIONS(2613), - [anon_sym_EQ_GT] = ACTIONS(2613), - [anon_sym_EQ] = ACTIONS(2613), - [anon_sym_PIPE_PIPE] = ACTIONS(2613), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2613), - [anon_sym_or] = ACTIONS(2613), - [anon_sym_AMP_AMP] = ACTIONS(2613), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2613), - [anon_sym_and] = ACTIONS(2613), - [anon_sym_EQ_EQ] = ACTIONS(2613), - [anon_sym_BANG_EQ] = ACTIONS(2613), - [anon_sym_EQ_TILDE] = ACTIONS(2613), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2613), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2613), - [anon_sym_LT_EQ] = ACTIONS(2613), - [anon_sym_GT_EQ] = ACTIONS(2613), - [anon_sym_PIPE_GT] = ACTIONS(2613), - [anon_sym_LT_LT_LT] = ACTIONS(2613), - [anon_sym_GT_GT_GT] = ACTIONS(2613), - [anon_sym_LT_LT_TILDE] = ACTIONS(2613), - [anon_sym_TILDE_GT_GT] = ACTIONS(2613), - [anon_sym_LT_TILDE] = ACTIONS(2613), - [anon_sym_TILDE_GT] = ACTIONS(2613), - [anon_sym_LT_TILDE_GT] = ACTIONS(2613), - [anon_sym_LT_PIPE_GT] = ACTIONS(2613), - [anon_sym_in] = ACTIONS(2613), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2613), - [anon_sym_SLASH_SLASH] = ACTIONS(2613), - [anon_sym_PLUS_PLUS] = ACTIONS(2613), - [anon_sym_DASH_DASH] = ACTIONS(2613), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2613), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2613), - [anon_sym_DOT_DOT] = ACTIONS(2613), - [anon_sym_LT_GT] = ACTIONS(2613), - [anon_sym_STAR] = ACTIONS(2613), - [anon_sym_STAR_STAR] = ACTIONS(2613), - [anon_sym_CARET_CARET] = ACTIONS(2613), - [anon_sym_DASH_GT] = ACTIONS(2613), - [anon_sym_DOT] = ACTIONS(2613), - [anon_sym_do] = ACTIONS(2613), - [anon_sym_fn] = ACTIONS(2613), - [anon_sym_LPAREN2] = ACTIONS(2611), - [anon_sym_LBRACK2] = ACTIONS(2611), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2611), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2611), - [sym__not_in] = ACTIONS(2611), - [sym__quoted_atom_start] = ACTIONS(2611), - }, - [933] = { [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(2621), [anon_sym_RPAREN] = ACTIONS(2621), @@ -143097,203 +143339,599 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2619), [sym__quoted_atom_start] = ACTIONS(2619), }, - [934] = { + [930] = { [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2613), - [anon_sym_RPAREN] = ACTIONS(2613), - [aux_sym_identifier_token1] = ACTIONS(2613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2613), - [sym_unused_identifier] = ACTIONS(2613), - [anon_sym___MODULE__] = ACTIONS(2613), - [anon_sym___DIR__] = ACTIONS(2613), - [anon_sym___ENV__] = ACTIONS(2613), - [anon_sym___CALLER__] = ACTIONS(2613), - [anon_sym___STACKTRACE__] = ACTIONS(2613), - [sym_alias] = ACTIONS(2613), - [sym_integer] = ACTIONS(2613), - [sym_float] = ACTIONS(2613), - [sym_char] = ACTIONS(2613), - [anon_sym_true] = ACTIONS(2613), - [anon_sym_false] = ACTIONS(2613), - [anon_sym_nil] = ACTIONS(2613), - [sym_atom] = ACTIONS(2613), - [anon_sym_DQUOTE] = ACTIONS(2613), - [anon_sym_SQUOTE] = ACTIONS(2613), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2613), - [anon_sym_LBRACE] = ACTIONS(2613), - [anon_sym_RBRACE] = ACTIONS(2613), - [anon_sym_LBRACK] = ACTIONS(2613), - [anon_sym_RBRACK] = ACTIONS(2613), - [anon_sym_LT] = ACTIONS(2613), - [anon_sym_GT] = ACTIONS(2613), - [anon_sym_PIPE] = ACTIONS(2613), - [anon_sym_SLASH] = ACTIONS(2613), - [anon_sym_TILDE] = ACTIONS(2613), - [anon_sym_COMMA] = ACTIONS(2613), - [sym_keyword] = ACTIONS(2613), - [anon_sym_LT_LT] = ACTIONS(2613), - [anon_sym_PERCENT] = ACTIONS(2613), - [anon_sym_AMP] = ACTIONS(2613), - [anon_sym_PLUS] = ACTIONS(2613), - [anon_sym_DASH] = ACTIONS(2613), - [anon_sym_BANG] = ACTIONS(2613), - [anon_sym_CARET] = ACTIONS(2613), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(2613), - [anon_sym_AT] = ACTIONS(2613), - [anon_sym_LT_DASH] = ACTIONS(2613), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2613), - [anon_sym_when] = ACTIONS(2613), - [anon_sym_COLON_COLON] = ACTIONS(2613), - [anon_sym_EQ_GT] = ACTIONS(2613), - [anon_sym_EQ] = ACTIONS(2613), - [anon_sym_PIPE_PIPE] = ACTIONS(2613), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2613), - [anon_sym_or] = ACTIONS(2613), - [anon_sym_AMP_AMP] = ACTIONS(2613), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2613), - [anon_sym_and] = ACTIONS(2613), - [anon_sym_EQ_EQ] = ACTIONS(2613), - [anon_sym_BANG_EQ] = ACTIONS(2613), - [anon_sym_EQ_TILDE] = ACTIONS(2613), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2613), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2613), - [anon_sym_LT_EQ] = ACTIONS(2613), - [anon_sym_GT_EQ] = ACTIONS(2613), - [anon_sym_PIPE_GT] = ACTIONS(2613), - [anon_sym_LT_LT_LT] = ACTIONS(2613), - [anon_sym_GT_GT_GT] = ACTIONS(2613), - [anon_sym_LT_LT_TILDE] = ACTIONS(2613), - [anon_sym_TILDE_GT_GT] = ACTIONS(2613), - [anon_sym_LT_TILDE] = ACTIONS(2613), - [anon_sym_TILDE_GT] = ACTIONS(2613), - [anon_sym_LT_TILDE_GT] = ACTIONS(2613), - [anon_sym_LT_PIPE_GT] = ACTIONS(2613), - [anon_sym_in] = ACTIONS(2613), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2613), - [anon_sym_SLASH_SLASH] = ACTIONS(2613), - [anon_sym_PLUS_PLUS] = ACTIONS(2613), - [anon_sym_DASH_DASH] = ACTIONS(2613), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2613), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2613), - [anon_sym_DOT_DOT] = ACTIONS(2613), - [anon_sym_LT_GT] = ACTIONS(2613), - [anon_sym_STAR] = ACTIONS(2613), - [anon_sym_STAR_STAR] = ACTIONS(2613), - [anon_sym_CARET_CARET] = ACTIONS(2613), - [anon_sym_DASH_GT] = ACTIONS(2613), - [anon_sym_DOT] = ACTIONS(2613), - [anon_sym_do] = ACTIONS(2613), - [anon_sym_fn] = ACTIONS(2613), - [anon_sym_LPAREN2] = ACTIONS(2611), - [anon_sym_LBRACK2] = ACTIONS(2611), + [anon_sym_LPAREN] = ACTIONS(2633), + [anon_sym_RPAREN] = ACTIONS(2633), + [aux_sym_identifier_token1] = ACTIONS(2633), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2633), + [sym_unused_identifier] = ACTIONS(2633), + [anon_sym___MODULE__] = ACTIONS(2633), + [anon_sym___DIR__] = ACTIONS(2633), + [anon_sym___ENV__] = ACTIONS(2633), + [anon_sym___CALLER__] = ACTIONS(2633), + [anon_sym___STACKTRACE__] = ACTIONS(2633), + [sym_alias] = ACTIONS(2633), + [sym_integer] = ACTIONS(2633), + [sym_float] = ACTIONS(2633), + [sym_char] = ACTIONS(2633), + [anon_sym_true] = ACTIONS(2633), + [anon_sym_false] = ACTIONS(2633), + [anon_sym_nil] = ACTIONS(2633), + [sym_atom] = ACTIONS(2633), + [anon_sym_DQUOTE] = ACTIONS(2633), + [anon_sym_SQUOTE] = ACTIONS(2633), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2633), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2633), + [anon_sym_LBRACE] = ACTIONS(2633), + [anon_sym_RBRACE] = ACTIONS(2633), + [anon_sym_LBRACK] = ACTIONS(2633), + [anon_sym_RBRACK] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(2633), + [anon_sym_GT] = ACTIONS(2633), + [anon_sym_PIPE] = ACTIONS(2633), + [anon_sym_SLASH] = ACTIONS(2633), + [anon_sym_TILDE] = ACTIONS(2633), + [anon_sym_COMMA] = ACTIONS(2633), + [sym_keyword] = ACTIONS(2633), + [anon_sym_LT_LT] = ACTIONS(2633), + [anon_sym_PERCENT] = ACTIONS(2633), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_PLUS] = ACTIONS(2633), + [anon_sym_DASH] = ACTIONS(2633), + [anon_sym_BANG] = ACTIONS(2633), + [anon_sym_CARET] = ACTIONS(2633), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2633), + [anon_sym_not] = ACTIONS(2633), + [anon_sym_AT] = ACTIONS(2633), + [anon_sym_LT_DASH] = ACTIONS(2633), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2633), + [anon_sym_when] = ACTIONS(2633), + [anon_sym_COLON_COLON] = ACTIONS(2633), + [anon_sym_EQ_GT] = ACTIONS(2633), + [anon_sym_EQ] = ACTIONS(2633), + [anon_sym_PIPE_PIPE] = ACTIONS(2633), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2633), + [anon_sym_or] = ACTIONS(2633), + [anon_sym_AMP_AMP] = ACTIONS(2633), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2633), + [anon_sym_and] = ACTIONS(2633), + [anon_sym_EQ_EQ] = ACTIONS(2633), + [anon_sym_BANG_EQ] = ACTIONS(2633), + [anon_sym_EQ_TILDE] = ACTIONS(2633), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2633), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2633), + [anon_sym_LT_EQ] = ACTIONS(2633), + [anon_sym_GT_EQ] = ACTIONS(2633), + [anon_sym_PIPE_GT] = ACTIONS(2633), + [anon_sym_LT_LT_LT] = ACTIONS(2633), + [anon_sym_GT_GT_GT] = ACTIONS(2633), + [anon_sym_LT_LT_TILDE] = ACTIONS(2633), + [anon_sym_TILDE_GT_GT] = ACTIONS(2633), + [anon_sym_LT_TILDE] = ACTIONS(2633), + [anon_sym_TILDE_GT] = ACTIONS(2633), + [anon_sym_LT_TILDE_GT] = ACTIONS(2633), + [anon_sym_LT_PIPE_GT] = ACTIONS(2633), + [anon_sym_in] = ACTIONS(2633), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2633), + [anon_sym_SLASH_SLASH] = ACTIONS(2633), + [anon_sym_PLUS_PLUS] = ACTIONS(2633), + [anon_sym_DASH_DASH] = ACTIONS(2633), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2633), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2633), + [anon_sym_DOT_DOT] = ACTIONS(2633), + [anon_sym_LT_GT] = ACTIONS(2633), + [anon_sym_STAR] = ACTIONS(2633), + [anon_sym_STAR_STAR] = ACTIONS(2633), + [anon_sym_CARET_CARET] = ACTIONS(2633), + [anon_sym_DASH_GT] = ACTIONS(2633), + [anon_sym_DOT] = ACTIONS(2633), + [anon_sym_do] = ACTIONS(2633), + [anon_sym_fn] = ACTIONS(2633), + [anon_sym_LPAREN2] = ACTIONS(2631), + [anon_sym_LBRACK2] = ACTIONS(2631), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2611), + [sym__newline_before_do] = ACTIONS(2631), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2611), - [sym__not_in] = ACTIONS(2611), - [sym__quoted_atom_start] = ACTIONS(2611), + [sym__before_unary_op] = ACTIONS(2631), + [sym__not_in] = ACTIONS(2631), + [sym__quoted_atom_start] = ACTIONS(2631), + }, + [931] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2629), + [anon_sym_RPAREN] = ACTIONS(2629), + [aux_sym_identifier_token1] = ACTIONS(2629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2629), + [sym_unused_identifier] = ACTIONS(2629), + [anon_sym___MODULE__] = ACTIONS(2629), + [anon_sym___DIR__] = ACTIONS(2629), + [anon_sym___ENV__] = ACTIONS(2629), + [anon_sym___CALLER__] = ACTIONS(2629), + [anon_sym___STACKTRACE__] = ACTIONS(2629), + [sym_alias] = ACTIONS(2629), + [sym_integer] = ACTIONS(2629), + [sym_float] = ACTIONS(2629), + [sym_char] = ACTIONS(2629), + [anon_sym_true] = ACTIONS(2629), + [anon_sym_false] = ACTIONS(2629), + [anon_sym_nil] = ACTIONS(2629), + [sym_atom] = ACTIONS(2629), + [anon_sym_DQUOTE] = ACTIONS(2629), + [anon_sym_SQUOTE] = ACTIONS(2629), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2629), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2629), + [anon_sym_LBRACE] = ACTIONS(2629), + [anon_sym_RBRACE] = ACTIONS(2629), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_RBRACK] = ACTIONS(2629), + [anon_sym_LT] = ACTIONS(2629), + [anon_sym_GT] = ACTIONS(2629), + [anon_sym_PIPE] = ACTIONS(2629), + [anon_sym_SLASH] = ACTIONS(2629), + [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_COMMA] = ACTIONS(2629), + [sym_keyword] = ACTIONS(2629), + [anon_sym_LT_LT] = ACTIONS(2629), + [anon_sym_PERCENT] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2629), + [anon_sym_PLUS] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(2629), + [anon_sym_BANG] = ACTIONS(2629), + [anon_sym_CARET] = ACTIONS(2629), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2629), + [anon_sym_not] = ACTIONS(2629), + [anon_sym_AT] = ACTIONS(2629), + [anon_sym_LT_DASH] = ACTIONS(2629), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2629), + [anon_sym_when] = ACTIONS(2629), + [anon_sym_COLON_COLON] = ACTIONS(2629), + [anon_sym_EQ_GT] = ACTIONS(2629), + [anon_sym_EQ] = ACTIONS(2629), + [anon_sym_PIPE_PIPE] = ACTIONS(2629), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2629), + [anon_sym_or] = ACTIONS(2629), + [anon_sym_AMP_AMP] = ACTIONS(2629), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2629), + [anon_sym_and] = ACTIONS(2629), + [anon_sym_EQ_EQ] = ACTIONS(2629), + [anon_sym_BANG_EQ] = ACTIONS(2629), + [anon_sym_EQ_TILDE] = ACTIONS(2629), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2629), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2629), + [anon_sym_LT_EQ] = ACTIONS(2629), + [anon_sym_GT_EQ] = ACTIONS(2629), + [anon_sym_PIPE_GT] = ACTIONS(2629), + [anon_sym_LT_LT_LT] = ACTIONS(2629), + [anon_sym_GT_GT_GT] = ACTIONS(2629), + [anon_sym_LT_LT_TILDE] = ACTIONS(2629), + [anon_sym_TILDE_GT_GT] = ACTIONS(2629), + [anon_sym_LT_TILDE] = ACTIONS(2629), + [anon_sym_TILDE_GT] = ACTIONS(2629), + [anon_sym_LT_TILDE_GT] = ACTIONS(2629), + [anon_sym_LT_PIPE_GT] = ACTIONS(2629), + [anon_sym_in] = ACTIONS(2629), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2629), + [anon_sym_SLASH_SLASH] = ACTIONS(2629), + [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_DASH_DASH] = ACTIONS(2629), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2629), + [anon_sym_DOT_DOT] = ACTIONS(2629), + [anon_sym_LT_GT] = ACTIONS(2629), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_STAR_STAR] = ACTIONS(2629), + [anon_sym_CARET_CARET] = ACTIONS(2629), + [anon_sym_DASH_GT] = ACTIONS(2629), + [anon_sym_DOT] = ACTIONS(2629), + [anon_sym_do] = ACTIONS(2629), + [anon_sym_fn] = ACTIONS(2629), + [anon_sym_LPAREN2] = ACTIONS(2627), + [anon_sym_LBRACK2] = ACTIONS(2627), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2627), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2627), + [sym__not_in] = ACTIONS(2627), + [sym__quoted_atom_start] = ACTIONS(2627), + }, + [932] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2625), + [anon_sym_RPAREN] = ACTIONS(2625), + [aux_sym_identifier_token1] = ACTIONS(2625), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2625), + [sym_unused_identifier] = ACTIONS(2625), + [anon_sym___MODULE__] = ACTIONS(2625), + [anon_sym___DIR__] = ACTIONS(2625), + [anon_sym___ENV__] = ACTIONS(2625), + [anon_sym___CALLER__] = ACTIONS(2625), + [anon_sym___STACKTRACE__] = ACTIONS(2625), + [sym_alias] = ACTIONS(2625), + [sym_integer] = ACTIONS(2625), + [sym_float] = ACTIONS(2625), + [sym_char] = ACTIONS(2625), + [anon_sym_true] = ACTIONS(2625), + [anon_sym_false] = ACTIONS(2625), + [anon_sym_nil] = ACTIONS(2625), + [sym_atom] = ACTIONS(2625), + [anon_sym_DQUOTE] = ACTIONS(2625), + [anon_sym_SQUOTE] = ACTIONS(2625), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2625), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_RBRACE] = ACTIONS(2625), + [anon_sym_LBRACK] = ACTIONS(2625), + [anon_sym_RBRACK] = ACTIONS(2625), + [anon_sym_LT] = ACTIONS(2625), + [anon_sym_GT] = ACTIONS(2625), + [anon_sym_PIPE] = ACTIONS(2625), + [anon_sym_SLASH] = ACTIONS(2625), + [anon_sym_TILDE] = ACTIONS(2625), + [anon_sym_COMMA] = ACTIONS(2625), + [sym_keyword] = ACTIONS(2625), + [anon_sym_LT_LT] = ACTIONS(2625), + [anon_sym_PERCENT] = ACTIONS(2625), + [anon_sym_AMP] = ACTIONS(2625), + [anon_sym_PLUS] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(2625), + [anon_sym_BANG] = ACTIONS(2625), + [anon_sym_CARET] = ACTIONS(2625), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(2625), + [anon_sym_AT] = ACTIONS(2625), + [anon_sym_LT_DASH] = ACTIONS(2625), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2625), + [anon_sym_when] = ACTIONS(2625), + [anon_sym_COLON_COLON] = ACTIONS(2625), + [anon_sym_EQ_GT] = ACTIONS(2625), + [anon_sym_EQ] = ACTIONS(2625), + [anon_sym_PIPE_PIPE] = ACTIONS(2625), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2625), + [anon_sym_or] = ACTIONS(2625), + [anon_sym_AMP_AMP] = ACTIONS(2625), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2625), + [anon_sym_and] = ACTIONS(2625), + [anon_sym_EQ_EQ] = ACTIONS(2625), + [anon_sym_BANG_EQ] = ACTIONS(2625), + [anon_sym_EQ_TILDE] = ACTIONS(2625), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2625), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2625), + [anon_sym_LT_EQ] = ACTIONS(2625), + [anon_sym_GT_EQ] = ACTIONS(2625), + [anon_sym_PIPE_GT] = ACTIONS(2625), + [anon_sym_LT_LT_LT] = ACTIONS(2625), + [anon_sym_GT_GT_GT] = ACTIONS(2625), + [anon_sym_LT_LT_TILDE] = ACTIONS(2625), + [anon_sym_TILDE_GT_GT] = ACTIONS(2625), + [anon_sym_LT_TILDE] = ACTIONS(2625), + [anon_sym_TILDE_GT] = ACTIONS(2625), + [anon_sym_LT_TILDE_GT] = ACTIONS(2625), + [anon_sym_LT_PIPE_GT] = ACTIONS(2625), + [anon_sym_in] = ACTIONS(2625), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2625), + [anon_sym_SLASH_SLASH] = ACTIONS(2625), + [anon_sym_PLUS_PLUS] = ACTIONS(2625), + [anon_sym_DASH_DASH] = ACTIONS(2625), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2625), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2625), + [anon_sym_DOT_DOT] = ACTIONS(2625), + [anon_sym_LT_GT] = ACTIONS(2625), + [anon_sym_STAR] = ACTIONS(2625), + [anon_sym_STAR_STAR] = ACTIONS(2625), + [anon_sym_CARET_CARET] = ACTIONS(2625), + [anon_sym_DASH_GT] = ACTIONS(2625), + [anon_sym_DOT] = ACTIONS(2625), + [anon_sym_do] = ACTIONS(2625), + [anon_sym_fn] = ACTIONS(2625), + [anon_sym_LPAREN2] = ACTIONS(2623), + [anon_sym_LBRACK2] = ACTIONS(2623), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2623), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2623), + [sym__not_in] = ACTIONS(2623), + [sym__quoted_atom_start] = ACTIONS(2623), + }, + [933] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2641), + [anon_sym_RPAREN] = ACTIONS(2641), + [aux_sym_identifier_token1] = ACTIONS(2641), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2641), + [sym_unused_identifier] = ACTIONS(2641), + [anon_sym___MODULE__] = ACTIONS(2641), + [anon_sym___DIR__] = ACTIONS(2641), + [anon_sym___ENV__] = ACTIONS(2641), + [anon_sym___CALLER__] = ACTIONS(2641), + [anon_sym___STACKTRACE__] = ACTIONS(2641), + [sym_alias] = ACTIONS(2641), + [sym_integer] = ACTIONS(2641), + [sym_float] = ACTIONS(2641), + [sym_char] = ACTIONS(2641), + [anon_sym_true] = ACTIONS(2641), + [anon_sym_false] = ACTIONS(2641), + [anon_sym_nil] = ACTIONS(2641), + [sym_atom] = ACTIONS(2641), + [anon_sym_DQUOTE] = ACTIONS(2641), + [anon_sym_SQUOTE] = ACTIONS(2641), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2641), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2641), + [anon_sym_RBRACE] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2641), + [anon_sym_RBRACK] = ACTIONS(2641), + [anon_sym_LT] = ACTIONS(2641), + [anon_sym_GT] = ACTIONS(2641), + [anon_sym_PIPE] = ACTIONS(2641), + [anon_sym_SLASH] = ACTIONS(2641), + [anon_sym_TILDE] = ACTIONS(2641), + [anon_sym_COMMA] = ACTIONS(2641), + [sym_keyword] = ACTIONS(2641), + [anon_sym_LT_LT] = ACTIONS(2641), + [anon_sym_PERCENT] = ACTIONS(2641), + [anon_sym_AMP] = ACTIONS(2641), + [anon_sym_PLUS] = ACTIONS(2641), + [anon_sym_DASH] = ACTIONS(2641), + [anon_sym_BANG] = ACTIONS(2641), + [anon_sym_CARET] = ACTIONS(2641), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2641), + [anon_sym_not] = ACTIONS(2641), + [anon_sym_AT] = ACTIONS(2641), + [anon_sym_LT_DASH] = ACTIONS(2641), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2641), + [anon_sym_when] = ACTIONS(2641), + [anon_sym_COLON_COLON] = ACTIONS(2641), + [anon_sym_EQ_GT] = ACTIONS(2641), + [anon_sym_EQ] = ACTIONS(2641), + [anon_sym_PIPE_PIPE] = ACTIONS(2641), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2641), + [anon_sym_or] = ACTIONS(2641), + [anon_sym_AMP_AMP] = ACTIONS(2641), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2641), + [anon_sym_and] = ACTIONS(2641), + [anon_sym_EQ_EQ] = ACTIONS(2641), + [anon_sym_BANG_EQ] = ACTIONS(2641), + [anon_sym_EQ_TILDE] = ACTIONS(2641), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2641), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2641), + [anon_sym_LT_EQ] = ACTIONS(2641), + [anon_sym_GT_EQ] = ACTIONS(2641), + [anon_sym_PIPE_GT] = ACTIONS(2641), + [anon_sym_LT_LT_LT] = ACTIONS(2641), + [anon_sym_GT_GT_GT] = ACTIONS(2641), + [anon_sym_LT_LT_TILDE] = ACTIONS(2641), + [anon_sym_TILDE_GT_GT] = ACTIONS(2641), + [anon_sym_LT_TILDE] = ACTIONS(2641), + [anon_sym_TILDE_GT] = ACTIONS(2641), + [anon_sym_LT_TILDE_GT] = ACTIONS(2641), + [anon_sym_LT_PIPE_GT] = ACTIONS(2641), + [anon_sym_in] = ACTIONS(2641), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2641), + [anon_sym_SLASH_SLASH] = ACTIONS(2641), + [anon_sym_PLUS_PLUS] = ACTIONS(2641), + [anon_sym_DASH_DASH] = ACTIONS(2641), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2641), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2641), + [anon_sym_DOT_DOT] = ACTIONS(2641), + [anon_sym_LT_GT] = ACTIONS(2641), + [anon_sym_STAR] = ACTIONS(2641), + [anon_sym_STAR_STAR] = ACTIONS(2641), + [anon_sym_CARET_CARET] = ACTIONS(2641), + [anon_sym_DASH_GT] = ACTIONS(2641), + [anon_sym_DOT] = ACTIONS(2641), + [anon_sym_do] = ACTIONS(2641), + [anon_sym_fn] = ACTIONS(2641), + [anon_sym_LPAREN2] = ACTIONS(2639), + [anon_sym_LBRACK2] = ACTIONS(2639), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2639), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2639), + [sym__not_in] = ACTIONS(2639), + [sym__quoted_atom_start] = ACTIONS(2639), + }, + [934] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2637), + [anon_sym_RPAREN] = ACTIONS(2637), + [aux_sym_identifier_token1] = ACTIONS(2637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2637), + [sym_unused_identifier] = ACTIONS(2637), + [anon_sym___MODULE__] = ACTIONS(2637), + [anon_sym___DIR__] = ACTIONS(2637), + [anon_sym___ENV__] = ACTIONS(2637), + [anon_sym___CALLER__] = ACTIONS(2637), + [anon_sym___STACKTRACE__] = ACTIONS(2637), + [sym_alias] = ACTIONS(2637), + [sym_integer] = ACTIONS(2637), + [sym_float] = ACTIONS(2637), + [sym_char] = ACTIONS(2637), + [anon_sym_true] = ACTIONS(2637), + [anon_sym_false] = ACTIONS(2637), + [anon_sym_nil] = ACTIONS(2637), + [sym_atom] = ACTIONS(2637), + [anon_sym_DQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2637), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2637), + [anon_sym_LBRACE] = ACTIONS(2637), + [anon_sym_RBRACE] = ACTIONS(2637), + [anon_sym_LBRACK] = ACTIONS(2637), + [anon_sym_RBRACK] = ACTIONS(2637), + [anon_sym_LT] = ACTIONS(2637), + [anon_sym_GT] = ACTIONS(2637), + [anon_sym_PIPE] = ACTIONS(2637), + [anon_sym_SLASH] = ACTIONS(2637), + [anon_sym_TILDE] = ACTIONS(2637), + [anon_sym_COMMA] = ACTIONS(2637), + [sym_keyword] = ACTIONS(2637), + [anon_sym_LT_LT] = ACTIONS(2637), + [anon_sym_PERCENT] = ACTIONS(2637), + [anon_sym_AMP] = ACTIONS(2637), + [anon_sym_PLUS] = ACTIONS(2637), + [anon_sym_DASH] = ACTIONS(2637), + [anon_sym_BANG] = ACTIONS(2637), + [anon_sym_CARET] = ACTIONS(2637), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2637), + [anon_sym_not] = ACTIONS(2637), + [anon_sym_AT] = ACTIONS(2637), + [anon_sym_LT_DASH] = ACTIONS(2637), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2637), + [anon_sym_when] = ACTIONS(2637), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_EQ_GT] = ACTIONS(2637), + [anon_sym_EQ] = ACTIONS(2637), + [anon_sym_PIPE_PIPE] = ACTIONS(2637), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2637), + [anon_sym_or] = ACTIONS(2637), + [anon_sym_AMP_AMP] = ACTIONS(2637), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2637), + [anon_sym_and] = ACTIONS(2637), + [anon_sym_EQ_EQ] = ACTIONS(2637), + [anon_sym_BANG_EQ] = ACTIONS(2637), + [anon_sym_EQ_TILDE] = ACTIONS(2637), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2637), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2637), + [anon_sym_LT_EQ] = ACTIONS(2637), + [anon_sym_GT_EQ] = ACTIONS(2637), + [anon_sym_PIPE_GT] = ACTIONS(2637), + [anon_sym_LT_LT_LT] = ACTIONS(2637), + [anon_sym_GT_GT_GT] = ACTIONS(2637), + [anon_sym_LT_LT_TILDE] = ACTIONS(2637), + [anon_sym_TILDE_GT_GT] = ACTIONS(2637), + [anon_sym_LT_TILDE] = ACTIONS(2637), + [anon_sym_TILDE_GT] = ACTIONS(2637), + [anon_sym_LT_TILDE_GT] = ACTIONS(2637), + [anon_sym_LT_PIPE_GT] = ACTIONS(2637), + [anon_sym_in] = ACTIONS(2637), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2637), + [anon_sym_SLASH_SLASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_DASH_DASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2637), + [anon_sym_DOT_DOT] = ACTIONS(2637), + [anon_sym_LT_GT] = ACTIONS(2637), + [anon_sym_STAR] = ACTIONS(2637), + [anon_sym_STAR_STAR] = ACTIONS(2637), + [anon_sym_CARET_CARET] = ACTIONS(2637), + [anon_sym_DASH_GT] = ACTIONS(2637), + [anon_sym_DOT] = ACTIONS(2637), + [anon_sym_do] = ACTIONS(2637), + [anon_sym_fn] = ACTIONS(2637), + [anon_sym_LPAREN2] = ACTIONS(2635), + [anon_sym_LBRACK2] = ACTIONS(2635), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2635), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2635), + [sym__not_in] = ACTIONS(2635), + [sym__quoted_atom_start] = ACTIONS(2635), }, [935] = { [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2649), - [anon_sym_RPAREN] = ACTIONS(2649), - [aux_sym_identifier_token1] = ACTIONS(2649), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2649), - [sym_unused_identifier] = ACTIONS(2649), - [anon_sym___MODULE__] = ACTIONS(2649), - [anon_sym___DIR__] = ACTIONS(2649), - [anon_sym___ENV__] = ACTIONS(2649), - [anon_sym___CALLER__] = ACTIONS(2649), - [anon_sym___STACKTRACE__] = ACTIONS(2649), - [sym_alias] = ACTIONS(2649), - [sym_integer] = ACTIONS(2649), - [sym_float] = ACTIONS(2649), - [sym_char] = ACTIONS(2649), - [anon_sym_true] = ACTIONS(2649), - [anon_sym_false] = ACTIONS(2649), - [anon_sym_nil] = ACTIONS(2649), - [sym_atom] = ACTIONS(2649), - [anon_sym_DQUOTE] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2649), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2649), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2649), - [anon_sym_RBRACE] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2649), - [anon_sym_RBRACK] = ACTIONS(2649), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_GT] = ACTIONS(2649), - [anon_sym_PIPE] = ACTIONS(2649), - [anon_sym_SLASH] = ACTIONS(2649), - [anon_sym_TILDE] = ACTIONS(2649), - [anon_sym_COMMA] = ACTIONS(2649), - [sym_keyword] = ACTIONS(2649), - [anon_sym_LT_LT] = ACTIONS(2649), - [anon_sym_PERCENT] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2649), - [anon_sym_PLUS] = ACTIONS(2649), - [anon_sym_DASH] = ACTIONS(2649), - [anon_sym_BANG] = ACTIONS(2649), - [anon_sym_CARET] = ACTIONS(2649), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2649), - [anon_sym_not] = ACTIONS(2649), - [anon_sym_AT] = ACTIONS(2649), - [anon_sym_LT_DASH] = ACTIONS(2649), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2649), - [anon_sym_when] = ACTIONS(2649), - [anon_sym_COLON_COLON] = ACTIONS(2649), - [anon_sym_EQ_GT] = ACTIONS(2649), - [anon_sym_EQ] = ACTIONS(2649), - [anon_sym_PIPE_PIPE] = ACTIONS(2649), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2649), - [anon_sym_or] = ACTIONS(2649), - [anon_sym_AMP_AMP] = ACTIONS(2649), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2649), - [anon_sym_and] = ACTIONS(2649), - [anon_sym_EQ_EQ] = ACTIONS(2649), - [anon_sym_BANG_EQ] = ACTIONS(2649), - [anon_sym_EQ_TILDE] = ACTIONS(2649), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2649), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2649), - [anon_sym_LT_EQ] = ACTIONS(2649), - [anon_sym_GT_EQ] = ACTIONS(2649), - [anon_sym_PIPE_GT] = ACTIONS(2649), - [anon_sym_LT_LT_LT] = ACTIONS(2649), - [anon_sym_GT_GT_GT] = ACTIONS(2649), - [anon_sym_LT_LT_TILDE] = ACTIONS(2649), - [anon_sym_TILDE_GT_GT] = ACTIONS(2649), - [anon_sym_LT_TILDE] = ACTIONS(2649), - [anon_sym_TILDE_GT] = ACTIONS(2649), - [anon_sym_LT_TILDE_GT] = ACTIONS(2649), - [anon_sym_LT_PIPE_GT] = ACTIONS(2649), - [anon_sym_in] = ACTIONS(2649), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2649), - [anon_sym_SLASH_SLASH] = ACTIONS(2649), - [anon_sym_PLUS_PLUS] = ACTIONS(2649), - [anon_sym_DASH_DASH] = ACTIONS(2649), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2649), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2649), - [anon_sym_DOT_DOT] = ACTIONS(2649), - [anon_sym_LT_GT] = ACTIONS(2649), - [anon_sym_STAR] = ACTIONS(2649), - [anon_sym_STAR_STAR] = ACTIONS(2649), - [anon_sym_CARET_CARET] = ACTIONS(2649), - [anon_sym_DASH_GT] = ACTIONS(2649), - [anon_sym_DOT] = ACTIONS(2649), - [anon_sym_do] = ACTIONS(2649), - [anon_sym_fn] = ACTIONS(2649), - [anon_sym_LPAREN2] = ACTIONS(2647), - [anon_sym_LBRACK2] = ACTIONS(2647), + [anon_sym_LPAREN] = ACTIONS(2645), + [anon_sym_RPAREN] = ACTIONS(2645), + [aux_sym_identifier_token1] = ACTIONS(2645), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2645), + [sym_unused_identifier] = ACTIONS(2645), + [anon_sym___MODULE__] = ACTIONS(2645), + [anon_sym___DIR__] = ACTIONS(2645), + [anon_sym___ENV__] = ACTIONS(2645), + [anon_sym___CALLER__] = ACTIONS(2645), + [anon_sym___STACKTRACE__] = ACTIONS(2645), + [sym_alias] = ACTIONS(2645), + [sym_integer] = ACTIONS(2645), + [sym_float] = ACTIONS(2645), + [sym_char] = ACTIONS(2645), + [anon_sym_true] = ACTIONS(2645), + [anon_sym_false] = ACTIONS(2645), + [anon_sym_nil] = ACTIONS(2645), + [sym_atom] = ACTIONS(2645), + [anon_sym_DQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2645), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2645), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_RBRACE] = ACTIONS(2645), + [anon_sym_LBRACK] = ACTIONS(2645), + [anon_sym_RBRACK] = ACTIONS(2645), + [anon_sym_LT] = ACTIONS(2645), + [anon_sym_GT] = ACTIONS(2645), + [anon_sym_PIPE] = ACTIONS(2645), + [anon_sym_SLASH] = ACTIONS(2645), + [anon_sym_TILDE] = ACTIONS(2645), + [anon_sym_COMMA] = ACTIONS(2645), + [sym_keyword] = ACTIONS(2645), + [anon_sym_LT_LT] = ACTIONS(2645), + [anon_sym_PERCENT] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2645), + [anon_sym_PLUS] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2645), + [anon_sym_BANG] = ACTIONS(2645), + [anon_sym_CARET] = ACTIONS(2645), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2645), + [anon_sym_not] = ACTIONS(2645), + [anon_sym_AT] = ACTIONS(2645), + [anon_sym_LT_DASH] = ACTIONS(2645), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2645), + [anon_sym_when] = ACTIONS(2645), + [anon_sym_COLON_COLON] = ACTIONS(2645), + [anon_sym_EQ_GT] = ACTIONS(2645), + [anon_sym_EQ] = ACTIONS(2645), + [anon_sym_PIPE_PIPE] = ACTIONS(2645), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2645), + [anon_sym_or] = ACTIONS(2645), + [anon_sym_AMP_AMP] = ACTIONS(2645), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2645), + [anon_sym_and] = ACTIONS(2645), + [anon_sym_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ] = ACTIONS(2645), + [anon_sym_EQ_TILDE] = ACTIONS(2645), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2645), + [anon_sym_LT_EQ] = ACTIONS(2645), + [anon_sym_GT_EQ] = ACTIONS(2645), + [anon_sym_PIPE_GT] = ACTIONS(2645), + [anon_sym_LT_LT_LT] = ACTIONS(2645), + [anon_sym_GT_GT_GT] = ACTIONS(2645), + [anon_sym_LT_LT_TILDE] = ACTIONS(2645), + [anon_sym_TILDE_GT_GT] = ACTIONS(2645), + [anon_sym_LT_TILDE] = ACTIONS(2645), + [anon_sym_TILDE_GT] = ACTIONS(2645), + [anon_sym_LT_TILDE_GT] = ACTIONS(2645), + [anon_sym_LT_PIPE_GT] = ACTIONS(2645), + [anon_sym_in] = ACTIONS(2645), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2645), + [anon_sym_SLASH_SLASH] = ACTIONS(2645), + [anon_sym_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_DASH_DASH] = ACTIONS(2645), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2645), + [anon_sym_DOT_DOT] = ACTIONS(2645), + [anon_sym_LT_GT] = ACTIONS(2645), + [anon_sym_STAR] = ACTIONS(2645), + [anon_sym_STAR_STAR] = ACTIONS(2645), + [anon_sym_CARET_CARET] = ACTIONS(2645), + [anon_sym_DASH_GT] = ACTIONS(2645), + [anon_sym_DOT] = ACTIONS(2645), + [anon_sym_do] = ACTIONS(2645), + [anon_sym_fn] = ACTIONS(2645), + [anon_sym_LPAREN2] = ACTIONS(2643), + [anon_sym_LBRACK2] = ACTIONS(2643), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2647), + [sym__newline_before_do] = ACTIONS(2643), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2647), - [sym__not_in] = ACTIONS(2647), - [sym__quoted_atom_start] = ACTIONS(2647), + [sym__before_unary_op] = ACTIONS(2643), + [sym__not_in] = ACTIONS(2643), + [sym__quoted_atom_start] = ACTIONS(2643), }, [936] = { [aux_sym__terminator_token1] = ACTIONS(3), @@ -143396,201 +144034,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [937] = { [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2641), - [anon_sym_RPAREN] = ACTIONS(2641), - [aux_sym_identifier_token1] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2641), - [sym_unused_identifier] = ACTIONS(2641), - [anon_sym___MODULE__] = ACTIONS(2641), - [anon_sym___DIR__] = ACTIONS(2641), - [anon_sym___ENV__] = ACTIONS(2641), - [anon_sym___CALLER__] = ACTIONS(2641), - [anon_sym___STACKTRACE__] = ACTIONS(2641), - [sym_alias] = ACTIONS(2641), - [sym_integer] = ACTIONS(2641), - [sym_float] = ACTIONS(2641), - [sym_char] = ACTIONS(2641), - [anon_sym_true] = ACTIONS(2641), - [anon_sym_false] = ACTIONS(2641), - [anon_sym_nil] = ACTIONS(2641), - [sym_atom] = ACTIONS(2641), - [anon_sym_DQUOTE] = ACTIONS(2641), - [anon_sym_SQUOTE] = ACTIONS(2641), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2641), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2641), - [anon_sym_LBRACE] = ACTIONS(2641), - [anon_sym_RBRACE] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_RBRACK] = ACTIONS(2641), - [anon_sym_LT] = ACTIONS(2641), - [anon_sym_GT] = ACTIONS(2641), - [anon_sym_PIPE] = ACTIONS(2641), - [anon_sym_SLASH] = ACTIONS(2641), - [anon_sym_TILDE] = ACTIONS(2641), - [anon_sym_COMMA] = ACTIONS(2641), - [sym_keyword] = ACTIONS(2641), - [anon_sym_LT_LT] = ACTIONS(2641), - [anon_sym_PERCENT] = ACTIONS(2641), - [anon_sym_AMP] = ACTIONS(2641), - [anon_sym_PLUS] = ACTIONS(2641), - [anon_sym_DASH] = ACTIONS(2641), - [anon_sym_BANG] = ACTIONS(2641), - [anon_sym_CARET] = ACTIONS(2641), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2641), - [anon_sym_not] = ACTIONS(2641), - [anon_sym_AT] = ACTIONS(2641), - [anon_sym_LT_DASH] = ACTIONS(2641), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2641), - [anon_sym_when] = ACTIONS(2641), - [anon_sym_COLON_COLON] = ACTIONS(2641), - [anon_sym_EQ_GT] = ACTIONS(2641), - [anon_sym_EQ] = ACTIONS(2641), - [anon_sym_PIPE_PIPE] = ACTIONS(2641), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2641), - [anon_sym_or] = ACTIONS(2641), - [anon_sym_AMP_AMP] = ACTIONS(2641), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2641), - [anon_sym_and] = ACTIONS(2641), - [anon_sym_EQ_EQ] = ACTIONS(2641), - [anon_sym_BANG_EQ] = ACTIONS(2641), - [anon_sym_EQ_TILDE] = ACTIONS(2641), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2641), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2641), - [anon_sym_LT_EQ] = ACTIONS(2641), - [anon_sym_GT_EQ] = ACTIONS(2641), - [anon_sym_PIPE_GT] = ACTIONS(2641), - [anon_sym_LT_LT_LT] = ACTIONS(2641), - [anon_sym_GT_GT_GT] = ACTIONS(2641), - [anon_sym_LT_LT_TILDE] = ACTIONS(2641), - [anon_sym_TILDE_GT_GT] = ACTIONS(2641), - [anon_sym_LT_TILDE] = ACTIONS(2641), - [anon_sym_TILDE_GT] = ACTIONS(2641), - [anon_sym_LT_TILDE_GT] = ACTIONS(2641), - [anon_sym_LT_PIPE_GT] = ACTIONS(2641), - [anon_sym_in] = ACTIONS(2641), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2641), - [anon_sym_SLASH_SLASH] = ACTIONS(2641), - [anon_sym_PLUS_PLUS] = ACTIONS(2641), - [anon_sym_DASH_DASH] = ACTIONS(2641), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2641), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2641), - [anon_sym_DOT_DOT] = ACTIONS(2641), - [anon_sym_LT_GT] = ACTIONS(2641), - [anon_sym_STAR] = ACTIONS(2641), - [anon_sym_STAR_STAR] = ACTIONS(2641), - [anon_sym_CARET_CARET] = ACTIONS(2641), - [anon_sym_DASH_GT] = ACTIONS(2641), - [anon_sym_DOT] = ACTIONS(2641), - [anon_sym_do] = ACTIONS(2641), - [anon_sym_fn] = ACTIONS(2641), - [anon_sym_LPAREN2] = ACTIONS(2639), - [anon_sym_LBRACK2] = ACTIONS(2639), + [anon_sym_LPAREN] = ACTIONS(2645), + [anon_sym_RPAREN] = ACTIONS(2645), + [aux_sym_identifier_token1] = ACTIONS(2645), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2645), + [sym_unused_identifier] = ACTIONS(2645), + [anon_sym___MODULE__] = ACTIONS(2645), + [anon_sym___DIR__] = ACTIONS(2645), + [anon_sym___ENV__] = ACTIONS(2645), + [anon_sym___CALLER__] = ACTIONS(2645), + [anon_sym___STACKTRACE__] = ACTIONS(2645), + [sym_alias] = ACTIONS(2645), + [sym_integer] = ACTIONS(2645), + [sym_float] = ACTIONS(2645), + [sym_char] = ACTIONS(2645), + [anon_sym_true] = ACTIONS(2645), + [anon_sym_false] = ACTIONS(2645), + [anon_sym_nil] = ACTIONS(2645), + [sym_atom] = ACTIONS(2645), + [anon_sym_DQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2645), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2645), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_RBRACE] = ACTIONS(2645), + [anon_sym_LBRACK] = ACTIONS(2645), + [anon_sym_RBRACK] = ACTIONS(2645), + [anon_sym_LT] = ACTIONS(2645), + [anon_sym_GT] = ACTIONS(2645), + [anon_sym_PIPE] = ACTIONS(2645), + [anon_sym_SLASH] = ACTIONS(2645), + [anon_sym_TILDE] = ACTIONS(2645), + [anon_sym_COMMA] = ACTIONS(2645), + [sym_keyword] = ACTIONS(2645), + [anon_sym_LT_LT] = ACTIONS(2645), + [anon_sym_PERCENT] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2645), + [anon_sym_PLUS] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2645), + [anon_sym_BANG] = ACTIONS(2645), + [anon_sym_CARET] = ACTIONS(2645), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2645), + [anon_sym_not] = ACTIONS(2645), + [anon_sym_AT] = ACTIONS(2645), + [anon_sym_LT_DASH] = ACTIONS(2645), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2645), + [anon_sym_when] = ACTIONS(2645), + [anon_sym_COLON_COLON] = ACTIONS(2645), + [anon_sym_EQ_GT] = ACTIONS(2645), + [anon_sym_EQ] = ACTIONS(2645), + [anon_sym_PIPE_PIPE] = ACTIONS(2645), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2645), + [anon_sym_or] = ACTIONS(2645), + [anon_sym_AMP_AMP] = ACTIONS(2645), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2645), + [anon_sym_and] = ACTIONS(2645), + [anon_sym_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ] = ACTIONS(2645), + [anon_sym_EQ_TILDE] = ACTIONS(2645), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2645), + [anon_sym_LT_EQ] = ACTIONS(2645), + [anon_sym_GT_EQ] = ACTIONS(2645), + [anon_sym_PIPE_GT] = ACTIONS(2645), + [anon_sym_LT_LT_LT] = ACTIONS(2645), + [anon_sym_GT_GT_GT] = ACTIONS(2645), + [anon_sym_LT_LT_TILDE] = ACTIONS(2645), + [anon_sym_TILDE_GT_GT] = ACTIONS(2645), + [anon_sym_LT_TILDE] = ACTIONS(2645), + [anon_sym_TILDE_GT] = ACTIONS(2645), + [anon_sym_LT_TILDE_GT] = ACTIONS(2645), + [anon_sym_LT_PIPE_GT] = ACTIONS(2645), + [anon_sym_in] = ACTIONS(2645), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2645), + [anon_sym_SLASH_SLASH] = ACTIONS(2645), + [anon_sym_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_DASH_DASH] = ACTIONS(2645), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2645), + [anon_sym_DOT_DOT] = ACTIONS(2645), + [anon_sym_LT_GT] = ACTIONS(2645), + [anon_sym_STAR] = ACTIONS(2645), + [anon_sym_STAR_STAR] = ACTIONS(2645), + [anon_sym_CARET_CARET] = ACTIONS(2645), + [anon_sym_DASH_GT] = ACTIONS(2645), + [anon_sym_DOT] = ACTIONS(2645), + [anon_sym_do] = ACTIONS(2645), + [anon_sym_fn] = ACTIONS(2645), + [anon_sym_LPAREN2] = ACTIONS(2643), + [anon_sym_LBRACK2] = ACTIONS(2643), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2639), + [sym__newline_before_do] = ACTIONS(2643), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2639), - [sym__not_in] = ACTIONS(2639), - [sym__quoted_atom_start] = ACTIONS(2639), + [sym__before_unary_op] = ACTIONS(2643), + [sym__not_in] = ACTIONS(2643), + [sym__quoted_atom_start] = ACTIONS(2643), }, [938] = { [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2613), - [anon_sym_RPAREN] = ACTIONS(2613), - [aux_sym_identifier_token1] = ACTIONS(2613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2613), - [sym_unused_identifier] = ACTIONS(2613), - [anon_sym___MODULE__] = ACTIONS(2613), - [anon_sym___DIR__] = ACTIONS(2613), - [anon_sym___ENV__] = ACTIONS(2613), - [anon_sym___CALLER__] = ACTIONS(2613), - [anon_sym___STACKTRACE__] = ACTIONS(2613), - [sym_alias] = ACTIONS(2613), - [sym_integer] = ACTIONS(2613), - [sym_float] = ACTIONS(2613), - [sym_char] = ACTIONS(2613), - [anon_sym_true] = ACTIONS(2613), - [anon_sym_false] = ACTIONS(2613), - [anon_sym_nil] = ACTIONS(2613), - [sym_atom] = ACTIONS(2613), - [anon_sym_DQUOTE] = ACTIONS(2613), - [anon_sym_SQUOTE] = ACTIONS(2613), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2613), - [anon_sym_LBRACE] = ACTIONS(2613), - [anon_sym_RBRACE] = ACTIONS(2613), - [anon_sym_LBRACK] = ACTIONS(2613), - [anon_sym_RBRACK] = ACTIONS(2613), - [anon_sym_LT] = ACTIONS(2613), - [anon_sym_GT] = ACTIONS(2613), - [anon_sym_PIPE] = ACTIONS(2613), - [anon_sym_SLASH] = ACTIONS(2613), - [anon_sym_TILDE] = ACTIONS(2613), - [anon_sym_COMMA] = ACTIONS(2613), - [sym_keyword] = ACTIONS(2613), - [anon_sym_LT_LT] = ACTIONS(2613), - [anon_sym_PERCENT] = ACTIONS(2613), - [anon_sym_AMP] = ACTIONS(2613), - [anon_sym_PLUS] = ACTIONS(2613), - [anon_sym_DASH] = ACTIONS(2613), - [anon_sym_BANG] = ACTIONS(2613), - [anon_sym_CARET] = ACTIONS(2613), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(2613), - [anon_sym_AT] = ACTIONS(2613), - [anon_sym_LT_DASH] = ACTIONS(2613), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2613), - [anon_sym_when] = ACTIONS(2613), - [anon_sym_COLON_COLON] = ACTIONS(2613), - [anon_sym_EQ_GT] = ACTIONS(2613), - [anon_sym_EQ] = ACTIONS(2613), - [anon_sym_PIPE_PIPE] = ACTIONS(2613), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2613), - [anon_sym_or] = ACTIONS(2613), - [anon_sym_AMP_AMP] = ACTIONS(2613), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2613), - [anon_sym_and] = ACTIONS(2613), - [anon_sym_EQ_EQ] = ACTIONS(2613), - [anon_sym_BANG_EQ] = ACTIONS(2613), - [anon_sym_EQ_TILDE] = ACTIONS(2613), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2613), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2613), - [anon_sym_LT_EQ] = ACTIONS(2613), - [anon_sym_GT_EQ] = ACTIONS(2613), - [anon_sym_PIPE_GT] = ACTIONS(2613), - [anon_sym_LT_LT_LT] = ACTIONS(2613), - [anon_sym_GT_GT_GT] = ACTIONS(2613), - [anon_sym_LT_LT_TILDE] = ACTIONS(2613), - [anon_sym_TILDE_GT_GT] = ACTIONS(2613), - [anon_sym_LT_TILDE] = ACTIONS(2613), - [anon_sym_TILDE_GT] = ACTIONS(2613), - [anon_sym_LT_TILDE_GT] = ACTIONS(2613), - [anon_sym_LT_PIPE_GT] = ACTIONS(2613), - [anon_sym_in] = ACTIONS(2613), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2613), - [anon_sym_SLASH_SLASH] = ACTIONS(2613), - [anon_sym_PLUS_PLUS] = ACTIONS(2613), - [anon_sym_DASH_DASH] = ACTIONS(2613), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2613), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2613), - [anon_sym_DOT_DOT] = ACTIONS(2613), - [anon_sym_LT_GT] = ACTIONS(2613), - [anon_sym_STAR] = ACTIONS(2613), - [anon_sym_STAR_STAR] = ACTIONS(2613), - [anon_sym_CARET_CARET] = ACTIONS(2613), - [anon_sym_DASH_GT] = ACTIONS(2613), - [anon_sym_DOT] = ACTIONS(2613), - [anon_sym_do] = ACTIONS(2613), - [anon_sym_fn] = ACTIONS(2613), - [anon_sym_LPAREN2] = ACTIONS(2611), - [anon_sym_LBRACK2] = ACTIONS(2611), + [anon_sym_LPAREN] = ACTIONS(2645), + [anon_sym_RPAREN] = ACTIONS(2645), + [aux_sym_identifier_token1] = ACTIONS(2645), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2645), + [sym_unused_identifier] = ACTIONS(2645), + [anon_sym___MODULE__] = ACTIONS(2645), + [anon_sym___DIR__] = ACTIONS(2645), + [anon_sym___ENV__] = ACTIONS(2645), + [anon_sym___CALLER__] = ACTIONS(2645), + [anon_sym___STACKTRACE__] = ACTIONS(2645), + [sym_alias] = ACTIONS(2645), + [sym_integer] = ACTIONS(2645), + [sym_float] = ACTIONS(2645), + [sym_char] = ACTIONS(2645), + [anon_sym_true] = ACTIONS(2645), + [anon_sym_false] = ACTIONS(2645), + [anon_sym_nil] = ACTIONS(2645), + [sym_atom] = ACTIONS(2645), + [anon_sym_DQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2645), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2645), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_RBRACE] = ACTIONS(2645), + [anon_sym_LBRACK] = ACTIONS(2645), + [anon_sym_RBRACK] = ACTIONS(2645), + [anon_sym_LT] = ACTIONS(2645), + [anon_sym_GT] = ACTIONS(2645), + [anon_sym_PIPE] = ACTIONS(2645), + [anon_sym_SLASH] = ACTIONS(2645), + [anon_sym_TILDE] = ACTIONS(2645), + [anon_sym_COMMA] = ACTIONS(2645), + [sym_keyword] = ACTIONS(2645), + [anon_sym_LT_LT] = ACTIONS(2645), + [anon_sym_PERCENT] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2645), + [anon_sym_PLUS] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2645), + [anon_sym_BANG] = ACTIONS(2645), + [anon_sym_CARET] = ACTIONS(2645), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2645), + [anon_sym_not] = ACTIONS(2645), + [anon_sym_AT] = ACTIONS(2645), + [anon_sym_LT_DASH] = ACTIONS(2645), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2645), + [anon_sym_when] = ACTIONS(2645), + [anon_sym_COLON_COLON] = ACTIONS(2645), + [anon_sym_EQ_GT] = ACTIONS(2645), + [anon_sym_EQ] = ACTIONS(2645), + [anon_sym_PIPE_PIPE] = ACTIONS(2645), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2645), + [anon_sym_or] = ACTIONS(2645), + [anon_sym_AMP_AMP] = ACTIONS(2645), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2645), + [anon_sym_and] = ACTIONS(2645), + [anon_sym_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ] = ACTIONS(2645), + [anon_sym_EQ_TILDE] = ACTIONS(2645), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2645), + [anon_sym_LT_EQ] = ACTIONS(2645), + [anon_sym_GT_EQ] = ACTIONS(2645), + [anon_sym_PIPE_GT] = ACTIONS(2645), + [anon_sym_LT_LT_LT] = ACTIONS(2645), + [anon_sym_GT_GT_GT] = ACTIONS(2645), + [anon_sym_LT_LT_TILDE] = ACTIONS(2645), + [anon_sym_TILDE_GT_GT] = ACTIONS(2645), + [anon_sym_LT_TILDE] = ACTIONS(2645), + [anon_sym_TILDE_GT] = ACTIONS(2645), + [anon_sym_LT_TILDE_GT] = ACTIONS(2645), + [anon_sym_LT_PIPE_GT] = ACTIONS(2645), + [anon_sym_in] = ACTIONS(2645), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2645), + [anon_sym_SLASH_SLASH] = ACTIONS(2645), + [anon_sym_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_DASH_DASH] = ACTIONS(2645), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2645), + [anon_sym_DOT_DOT] = ACTIONS(2645), + [anon_sym_LT_GT] = ACTIONS(2645), + [anon_sym_STAR] = ACTIONS(2645), + [anon_sym_STAR_STAR] = ACTIONS(2645), + [anon_sym_CARET_CARET] = ACTIONS(2645), + [anon_sym_DASH_GT] = ACTIONS(2645), + [anon_sym_DOT] = ACTIONS(2645), + [anon_sym_do] = ACTIONS(2645), + [anon_sym_fn] = ACTIONS(2645), + [anon_sym_LPAREN2] = ACTIONS(2643), + [anon_sym_LBRACK2] = ACTIONS(2643), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2611), + [sym__newline_before_do] = ACTIONS(2643), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2611), - [sym__not_in] = ACTIONS(2611), - [sym__quoted_atom_start] = ACTIONS(2611), + [sym__before_unary_op] = ACTIONS(2643), + [sym__not_in] = ACTIONS(2643), + [sym__quoted_atom_start] = ACTIONS(2643), }, [939] = { [aux_sym__terminator_token1] = ACTIONS(3), @@ -143693,203 +144331,302 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [940] = { [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2625), - [anon_sym_RPAREN] = ACTIONS(2625), - [aux_sym_identifier_token1] = ACTIONS(2625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2625), - [sym_unused_identifier] = ACTIONS(2625), - [anon_sym___MODULE__] = ACTIONS(2625), - [anon_sym___DIR__] = ACTIONS(2625), - [anon_sym___ENV__] = ACTIONS(2625), - [anon_sym___CALLER__] = ACTIONS(2625), - [anon_sym___STACKTRACE__] = ACTIONS(2625), - [sym_alias] = ACTIONS(2625), - [sym_integer] = ACTIONS(2625), - [sym_float] = ACTIONS(2625), - [sym_char] = ACTIONS(2625), - [anon_sym_true] = ACTIONS(2625), - [anon_sym_false] = ACTIONS(2625), - [anon_sym_nil] = ACTIONS(2625), - [sym_atom] = ACTIONS(2625), - [anon_sym_DQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2625), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2625), - [anon_sym_LBRACE] = ACTIONS(2625), - [anon_sym_RBRACE] = ACTIONS(2625), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_RBRACK] = ACTIONS(2625), - [anon_sym_LT] = ACTIONS(2625), - [anon_sym_GT] = ACTIONS(2625), - [anon_sym_PIPE] = ACTIONS(2625), - [anon_sym_SLASH] = ACTIONS(2625), - [anon_sym_TILDE] = ACTIONS(2625), - [anon_sym_COMMA] = ACTIONS(2625), - [sym_keyword] = ACTIONS(2625), - [anon_sym_LT_LT] = ACTIONS(2625), - [anon_sym_PERCENT] = ACTIONS(2625), - [anon_sym_AMP] = ACTIONS(2625), - [anon_sym_PLUS] = ACTIONS(2625), - [anon_sym_DASH] = ACTIONS(2625), - [anon_sym_BANG] = ACTIONS(2625), - [anon_sym_CARET] = ACTIONS(2625), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2625), - [anon_sym_not] = ACTIONS(2625), - [anon_sym_AT] = ACTIONS(2625), - [anon_sym_LT_DASH] = ACTIONS(2625), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2625), - [anon_sym_when] = ACTIONS(2625), - [anon_sym_COLON_COLON] = ACTIONS(2625), - [anon_sym_EQ_GT] = ACTIONS(2625), - [anon_sym_EQ] = ACTIONS(2625), - [anon_sym_PIPE_PIPE] = ACTIONS(2625), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2625), - [anon_sym_or] = ACTIONS(2625), - [anon_sym_AMP_AMP] = ACTIONS(2625), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2625), - [anon_sym_and] = ACTIONS(2625), - [anon_sym_EQ_EQ] = ACTIONS(2625), - [anon_sym_BANG_EQ] = ACTIONS(2625), - [anon_sym_EQ_TILDE] = ACTIONS(2625), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2625), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2625), - [anon_sym_LT_EQ] = ACTIONS(2625), - [anon_sym_GT_EQ] = ACTIONS(2625), - [anon_sym_PIPE_GT] = ACTIONS(2625), - [anon_sym_LT_LT_LT] = ACTIONS(2625), - [anon_sym_GT_GT_GT] = ACTIONS(2625), - [anon_sym_LT_LT_TILDE] = ACTIONS(2625), - [anon_sym_TILDE_GT_GT] = ACTIONS(2625), - [anon_sym_LT_TILDE] = ACTIONS(2625), - [anon_sym_TILDE_GT] = ACTIONS(2625), - [anon_sym_LT_TILDE_GT] = ACTIONS(2625), - [anon_sym_LT_PIPE_GT] = ACTIONS(2625), - [anon_sym_in] = ACTIONS(2625), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2625), - [anon_sym_SLASH_SLASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_DASH_DASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2625), - [anon_sym_DOT_DOT] = ACTIONS(2625), - [anon_sym_LT_GT] = ACTIONS(2625), - [anon_sym_STAR] = ACTIONS(2625), - [anon_sym_STAR_STAR] = ACTIONS(2625), - [anon_sym_CARET_CARET] = ACTIONS(2625), - [anon_sym_DASH_GT] = ACTIONS(2625), - [anon_sym_DOT] = ACTIONS(2625), - [anon_sym_do] = ACTIONS(2625), - [anon_sym_fn] = ACTIONS(2625), - [anon_sym_LPAREN2] = ACTIONS(2623), - [anon_sym_LBRACK2] = ACTIONS(2623), + [anon_sym_LPAREN] = ACTIONS(2637), + [anon_sym_RPAREN] = ACTIONS(2637), + [aux_sym_identifier_token1] = ACTIONS(2637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2637), + [sym_unused_identifier] = ACTIONS(2637), + [anon_sym___MODULE__] = ACTIONS(2637), + [anon_sym___DIR__] = ACTIONS(2637), + [anon_sym___ENV__] = ACTIONS(2637), + [anon_sym___CALLER__] = ACTIONS(2637), + [anon_sym___STACKTRACE__] = ACTIONS(2637), + [sym_alias] = ACTIONS(2637), + [sym_integer] = ACTIONS(2637), + [sym_float] = ACTIONS(2637), + [sym_char] = ACTIONS(2637), + [anon_sym_true] = ACTIONS(2637), + [anon_sym_false] = ACTIONS(2637), + [anon_sym_nil] = ACTIONS(2637), + [sym_atom] = ACTIONS(2637), + [anon_sym_DQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2637), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2637), + [anon_sym_LBRACE] = ACTIONS(2637), + [anon_sym_RBRACE] = ACTIONS(2637), + [anon_sym_LBRACK] = ACTIONS(2637), + [anon_sym_RBRACK] = ACTIONS(2637), + [anon_sym_LT] = ACTIONS(2637), + [anon_sym_GT] = ACTIONS(2637), + [anon_sym_PIPE] = ACTIONS(2637), + [anon_sym_SLASH] = ACTIONS(2637), + [anon_sym_TILDE] = ACTIONS(2637), + [anon_sym_COMMA] = ACTIONS(2637), + [sym_keyword] = ACTIONS(2637), + [anon_sym_LT_LT] = ACTIONS(2637), + [anon_sym_PERCENT] = ACTIONS(2637), + [anon_sym_AMP] = ACTIONS(2637), + [anon_sym_PLUS] = ACTIONS(2637), + [anon_sym_DASH] = ACTIONS(2637), + [anon_sym_BANG] = ACTIONS(2637), + [anon_sym_CARET] = ACTIONS(2637), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2637), + [anon_sym_not] = ACTIONS(2637), + [anon_sym_AT] = ACTIONS(2637), + [anon_sym_LT_DASH] = ACTIONS(2637), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2637), + [anon_sym_when] = ACTIONS(2637), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_EQ_GT] = ACTIONS(2637), + [anon_sym_EQ] = ACTIONS(2637), + [anon_sym_PIPE_PIPE] = ACTIONS(2637), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2637), + [anon_sym_or] = ACTIONS(2637), + [anon_sym_AMP_AMP] = ACTIONS(2637), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2637), + [anon_sym_and] = ACTIONS(2637), + [anon_sym_EQ_EQ] = ACTIONS(2637), + [anon_sym_BANG_EQ] = ACTIONS(2637), + [anon_sym_EQ_TILDE] = ACTIONS(2637), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2637), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2637), + [anon_sym_LT_EQ] = ACTIONS(2637), + [anon_sym_GT_EQ] = ACTIONS(2637), + [anon_sym_PIPE_GT] = ACTIONS(2637), + [anon_sym_LT_LT_LT] = ACTIONS(2637), + [anon_sym_GT_GT_GT] = ACTIONS(2637), + [anon_sym_LT_LT_TILDE] = ACTIONS(2637), + [anon_sym_TILDE_GT_GT] = ACTIONS(2637), + [anon_sym_LT_TILDE] = ACTIONS(2637), + [anon_sym_TILDE_GT] = ACTIONS(2637), + [anon_sym_LT_TILDE_GT] = ACTIONS(2637), + [anon_sym_LT_PIPE_GT] = ACTIONS(2637), + [anon_sym_in] = ACTIONS(2637), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2637), + [anon_sym_SLASH_SLASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_DASH_DASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2637), + [anon_sym_DOT_DOT] = ACTIONS(2637), + [anon_sym_LT_GT] = ACTIONS(2637), + [anon_sym_STAR] = ACTIONS(2637), + [anon_sym_STAR_STAR] = ACTIONS(2637), + [anon_sym_CARET_CARET] = ACTIONS(2637), + [anon_sym_DASH_GT] = ACTIONS(2637), + [anon_sym_DOT] = ACTIONS(2637), + [anon_sym_do] = ACTIONS(2637), + [anon_sym_fn] = ACTIONS(2637), + [anon_sym_LPAREN2] = ACTIONS(2635), + [anon_sym_LBRACK2] = ACTIONS(2635), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2623), + [sym__newline_before_do] = ACTIONS(2635), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2623), - [sym__not_in] = ACTIONS(2623), - [sym__quoted_atom_start] = ACTIONS(2623), + [sym__before_unary_op] = ACTIONS(2635), + [sym__not_in] = ACTIONS(2635), + [sym__quoted_atom_start] = ACTIONS(2635), }, [941] = { [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2629), - [anon_sym_RPAREN] = ACTIONS(2629), - [aux_sym_identifier_token1] = ACTIONS(2629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2629), - [sym_unused_identifier] = ACTIONS(2629), - [anon_sym___MODULE__] = ACTIONS(2629), - [anon_sym___DIR__] = ACTIONS(2629), - [anon_sym___ENV__] = ACTIONS(2629), - [anon_sym___CALLER__] = ACTIONS(2629), - [anon_sym___STACKTRACE__] = ACTIONS(2629), - [sym_alias] = ACTIONS(2629), - [sym_integer] = ACTIONS(2629), - [sym_float] = ACTIONS(2629), - [sym_char] = ACTIONS(2629), - [anon_sym_true] = ACTIONS(2629), - [anon_sym_false] = ACTIONS(2629), - [anon_sym_nil] = ACTIONS(2629), - [sym_atom] = ACTIONS(2629), - [anon_sym_DQUOTE] = ACTIONS(2629), - [anon_sym_SQUOTE] = ACTIONS(2629), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2629), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(2629), - [anon_sym_RBRACE] = ACTIONS(2629), - [anon_sym_LBRACK] = ACTIONS(2629), - [anon_sym_RBRACK] = ACTIONS(2629), - [anon_sym_LT] = ACTIONS(2629), - [anon_sym_GT] = ACTIONS(2629), - [anon_sym_PIPE] = ACTIONS(2629), - [anon_sym_SLASH] = ACTIONS(2629), - [anon_sym_TILDE] = ACTIONS(2629), - [anon_sym_COMMA] = ACTIONS(2629), - [sym_keyword] = ACTIONS(2629), - [anon_sym_LT_LT] = ACTIONS(2629), - [anon_sym_PERCENT] = ACTIONS(2629), - [anon_sym_AMP] = ACTIONS(2629), - [anon_sym_PLUS] = ACTIONS(2629), - [anon_sym_DASH] = ACTIONS(2629), - [anon_sym_BANG] = ACTIONS(2629), - [anon_sym_CARET] = ACTIONS(2629), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2629), - [anon_sym_not] = ACTIONS(2629), - [anon_sym_AT] = ACTIONS(2629), - [anon_sym_LT_DASH] = ACTIONS(2629), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2629), - [anon_sym_when] = ACTIONS(2629), - [anon_sym_COLON_COLON] = ACTIONS(2629), - [anon_sym_EQ_GT] = ACTIONS(2629), - [anon_sym_EQ] = ACTIONS(2629), - [anon_sym_PIPE_PIPE] = ACTIONS(2629), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2629), - [anon_sym_or] = ACTIONS(2629), - [anon_sym_AMP_AMP] = ACTIONS(2629), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2629), - [anon_sym_and] = ACTIONS(2629), - [anon_sym_EQ_EQ] = ACTIONS(2629), - [anon_sym_BANG_EQ] = ACTIONS(2629), - [anon_sym_EQ_TILDE] = ACTIONS(2629), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2629), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2629), - [anon_sym_LT_EQ] = ACTIONS(2629), - [anon_sym_GT_EQ] = ACTIONS(2629), - [anon_sym_PIPE_GT] = ACTIONS(2629), - [anon_sym_LT_LT_LT] = ACTIONS(2629), - [anon_sym_GT_GT_GT] = ACTIONS(2629), - [anon_sym_LT_LT_TILDE] = ACTIONS(2629), - [anon_sym_TILDE_GT_GT] = ACTIONS(2629), - [anon_sym_LT_TILDE] = ACTIONS(2629), - [anon_sym_TILDE_GT] = ACTIONS(2629), - [anon_sym_LT_TILDE_GT] = ACTIONS(2629), - [anon_sym_LT_PIPE_GT] = ACTIONS(2629), - [anon_sym_in] = ACTIONS(2629), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2629), - [anon_sym_SLASH_SLASH] = ACTIONS(2629), - [anon_sym_PLUS_PLUS] = ACTIONS(2629), - [anon_sym_DASH_DASH] = ACTIONS(2629), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2629), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2629), - [anon_sym_DOT_DOT] = ACTIONS(2629), - [anon_sym_LT_GT] = ACTIONS(2629), - [anon_sym_STAR] = ACTIONS(2629), - [anon_sym_STAR_STAR] = ACTIONS(2629), - [anon_sym_CARET_CARET] = ACTIONS(2629), - [anon_sym_DASH_GT] = ACTIONS(2629), - [anon_sym_DOT] = ACTIONS(2629), - [anon_sym_do] = ACTIONS(2629), - [anon_sym_fn] = ACTIONS(2629), - [anon_sym_LPAREN2] = ACTIONS(2627), - [anon_sym_LBRACK2] = ACTIONS(2627), + [anon_sym_LPAREN] = ACTIONS(2613), + [anon_sym_RPAREN] = ACTIONS(2613), + [aux_sym_identifier_token1] = ACTIONS(2613), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2613), + [sym_unused_identifier] = ACTIONS(2613), + [anon_sym___MODULE__] = ACTIONS(2613), + [anon_sym___DIR__] = ACTIONS(2613), + [anon_sym___ENV__] = ACTIONS(2613), + [anon_sym___CALLER__] = ACTIONS(2613), + [anon_sym___STACKTRACE__] = ACTIONS(2613), + [sym_alias] = ACTIONS(2613), + [sym_integer] = ACTIONS(2613), + [sym_float] = ACTIONS(2613), + [sym_char] = ACTIONS(2613), + [anon_sym_true] = ACTIONS(2613), + [anon_sym_false] = ACTIONS(2613), + [anon_sym_nil] = ACTIONS(2613), + [sym_atom] = ACTIONS(2613), + [anon_sym_DQUOTE] = ACTIONS(2613), + [anon_sym_SQUOTE] = ACTIONS(2613), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2613), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2613), + [anon_sym_LBRACE] = ACTIONS(2613), + [anon_sym_RBRACE] = ACTIONS(2613), + [anon_sym_LBRACK] = ACTIONS(2613), + [anon_sym_RBRACK] = ACTIONS(2613), + [anon_sym_LT] = ACTIONS(2613), + [anon_sym_GT] = ACTIONS(2613), + [anon_sym_PIPE] = ACTIONS(2613), + [anon_sym_SLASH] = ACTIONS(2613), + [anon_sym_TILDE] = ACTIONS(2613), + [anon_sym_COMMA] = ACTIONS(2613), + [sym_keyword] = ACTIONS(2613), + [anon_sym_LT_LT] = ACTIONS(2613), + [anon_sym_PERCENT] = ACTIONS(2613), + [anon_sym_AMP] = ACTIONS(2613), + [anon_sym_PLUS] = ACTIONS(2613), + [anon_sym_DASH] = ACTIONS(2613), + [anon_sym_BANG] = ACTIONS(2613), + [anon_sym_CARET] = ACTIONS(2613), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2613), + [anon_sym_not] = ACTIONS(2613), + [anon_sym_AT] = ACTIONS(2613), + [anon_sym_LT_DASH] = ACTIONS(2613), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2613), + [anon_sym_when] = ACTIONS(2613), + [anon_sym_COLON_COLON] = ACTIONS(2613), + [anon_sym_EQ_GT] = ACTIONS(2613), + [anon_sym_EQ] = ACTIONS(2613), + [anon_sym_PIPE_PIPE] = ACTIONS(2613), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2613), + [anon_sym_or] = ACTIONS(2613), + [anon_sym_AMP_AMP] = ACTIONS(2613), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2613), + [anon_sym_and] = ACTIONS(2613), + [anon_sym_EQ_EQ] = ACTIONS(2613), + [anon_sym_BANG_EQ] = ACTIONS(2613), + [anon_sym_EQ_TILDE] = ACTIONS(2613), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2613), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2613), + [anon_sym_LT_EQ] = ACTIONS(2613), + [anon_sym_GT_EQ] = ACTIONS(2613), + [anon_sym_PIPE_GT] = ACTIONS(2613), + [anon_sym_LT_LT_LT] = ACTIONS(2613), + [anon_sym_GT_GT_GT] = ACTIONS(2613), + [anon_sym_LT_LT_TILDE] = ACTIONS(2613), + [anon_sym_TILDE_GT_GT] = ACTIONS(2613), + [anon_sym_LT_TILDE] = ACTIONS(2613), + [anon_sym_TILDE_GT] = ACTIONS(2613), + [anon_sym_LT_TILDE_GT] = ACTIONS(2613), + [anon_sym_LT_PIPE_GT] = ACTIONS(2613), + [anon_sym_in] = ACTIONS(2613), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2613), + [anon_sym_SLASH_SLASH] = ACTIONS(2613), + [anon_sym_PLUS_PLUS] = ACTIONS(2613), + [anon_sym_DASH_DASH] = ACTIONS(2613), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2613), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2613), + [anon_sym_DOT_DOT] = ACTIONS(2613), + [anon_sym_LT_GT] = ACTIONS(2613), + [anon_sym_STAR] = ACTIONS(2613), + [anon_sym_STAR_STAR] = ACTIONS(2613), + [anon_sym_CARET_CARET] = ACTIONS(2613), + [anon_sym_DASH_GT] = ACTIONS(2613), + [anon_sym_DOT] = ACTIONS(2613), + [anon_sym_do] = ACTIONS(2613), + [anon_sym_fn] = ACTIONS(2613), + [anon_sym_LPAREN2] = ACTIONS(2611), + [anon_sym_LBRACK2] = ACTIONS(2611), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2627), + [sym__newline_before_do] = ACTIONS(2611), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2627), - [sym__not_in] = ACTIONS(2627), - [sym__quoted_atom_start] = ACTIONS(2627), + [sym__before_unary_op] = ACTIONS(2611), + [sym__not_in] = ACTIONS(2611), + [sym__quoted_atom_start] = ACTIONS(2611), }, [942] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_RPAREN] = ACTIONS(2649), + [aux_sym_identifier_token1] = ACTIONS(2649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2649), + [sym_unused_identifier] = ACTIONS(2649), + [anon_sym___MODULE__] = ACTIONS(2649), + [anon_sym___DIR__] = ACTIONS(2649), + [anon_sym___ENV__] = ACTIONS(2649), + [anon_sym___CALLER__] = ACTIONS(2649), + [anon_sym___STACKTRACE__] = ACTIONS(2649), + [sym_alias] = ACTIONS(2649), + [sym_integer] = ACTIONS(2649), + [sym_float] = ACTIONS(2649), + [sym_char] = ACTIONS(2649), + [anon_sym_true] = ACTIONS(2649), + [anon_sym_false] = ACTIONS(2649), + [anon_sym_nil] = ACTIONS(2649), + [sym_atom] = ACTIONS(2649), + [anon_sym_DQUOTE] = ACTIONS(2649), + [anon_sym_SQUOTE] = ACTIONS(2649), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2649), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2649), + [anon_sym_RBRACE] = ACTIONS(2649), + [anon_sym_LBRACK] = ACTIONS(2649), + [anon_sym_RBRACK] = ACTIONS(2649), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_GT] = ACTIONS(2649), + [anon_sym_PIPE] = ACTIONS(2649), + [anon_sym_SLASH] = ACTIONS(2649), + [anon_sym_TILDE] = ACTIONS(2649), + [anon_sym_COMMA] = ACTIONS(2649), + [sym_keyword] = ACTIONS(2649), + [anon_sym_LT_LT] = ACTIONS(2649), + [anon_sym_PERCENT] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(2649), + [anon_sym_PLUS] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_BANG] = ACTIONS(2649), + [anon_sym_CARET] = ACTIONS(2649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2649), + [anon_sym_not] = ACTIONS(2649), + [anon_sym_AT] = ACTIONS(2649), + [anon_sym_LT_DASH] = ACTIONS(2649), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2649), + [anon_sym_when] = ACTIONS(2649), + [anon_sym_COLON_COLON] = ACTIONS(2649), + [anon_sym_EQ_GT] = ACTIONS(2649), + [anon_sym_EQ] = ACTIONS(2649), + [anon_sym_PIPE_PIPE] = ACTIONS(2649), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2649), + [anon_sym_or] = ACTIONS(2649), + [anon_sym_AMP_AMP] = ACTIONS(2649), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2649), + [anon_sym_and] = ACTIONS(2649), + [anon_sym_EQ_EQ] = ACTIONS(2649), + [anon_sym_BANG_EQ] = ACTIONS(2649), + [anon_sym_EQ_TILDE] = ACTIONS(2649), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2649), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2649), + [anon_sym_LT_EQ] = ACTIONS(2649), + [anon_sym_GT_EQ] = ACTIONS(2649), + [anon_sym_PIPE_GT] = ACTIONS(2649), + [anon_sym_LT_LT_LT] = ACTIONS(2649), + [anon_sym_GT_GT_GT] = ACTIONS(2649), + [anon_sym_LT_LT_TILDE] = ACTIONS(2649), + [anon_sym_TILDE_GT_GT] = ACTIONS(2649), + [anon_sym_LT_TILDE] = ACTIONS(2649), + [anon_sym_TILDE_GT] = ACTIONS(2649), + [anon_sym_LT_TILDE_GT] = ACTIONS(2649), + [anon_sym_LT_PIPE_GT] = ACTIONS(2649), + [anon_sym_in] = ACTIONS(2649), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2649), + [anon_sym_SLASH_SLASH] = ACTIONS(2649), + [anon_sym_PLUS_PLUS] = ACTIONS(2649), + [anon_sym_DASH_DASH] = ACTIONS(2649), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2649), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2649), + [anon_sym_DOT_DOT] = ACTIONS(2649), + [anon_sym_LT_GT] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2649), + [anon_sym_STAR_STAR] = ACTIONS(2649), + [anon_sym_CARET_CARET] = ACTIONS(2649), + [anon_sym_DASH_GT] = ACTIONS(2649), + [anon_sym_DOT] = ACTIONS(2649), + [anon_sym_do] = ACTIONS(2649), + [anon_sym_fn] = ACTIONS(2649), + [anon_sym_LPAREN2] = ACTIONS(2647), + [anon_sym_LBRACK2] = ACTIONS(2647), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2647), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2647), + [sym__not_in] = ACTIONS(2647), + [sym__quoted_atom_start] = ACTIONS(2647), + }, + [943] = { [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(2617), [anon_sym_RPAREN] = ACTIONS(2617), @@ -143988,204 +144725,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2615), [sym__quoted_atom_start] = ACTIONS(2615), }, - [943] = { - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2653), - [anon_sym_RPAREN] = ACTIONS(2653), - [aux_sym_identifier_token1] = ACTIONS(2653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2653), - [sym_unused_identifier] = ACTIONS(2653), - [anon_sym___MODULE__] = ACTIONS(2653), - [anon_sym___DIR__] = ACTIONS(2653), - [anon_sym___ENV__] = ACTIONS(2653), - [anon_sym___CALLER__] = ACTIONS(2653), - [anon_sym___STACKTRACE__] = ACTIONS(2653), - [sym_alias] = ACTIONS(2653), - [sym_integer] = ACTIONS(2653), - [sym_float] = ACTIONS(2653), - [sym_char] = ACTIONS(2653), - [anon_sym_true] = ACTIONS(2653), - [anon_sym_false] = ACTIONS(2653), - [anon_sym_nil] = ACTIONS(2653), - [sym_atom] = ACTIONS(2653), - [anon_sym_DQUOTE] = ACTIONS(2653), - [anon_sym_SQUOTE] = ACTIONS(2653), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2653), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2653), - [anon_sym_RBRACE] = ACTIONS(2653), - [anon_sym_LBRACK] = ACTIONS(2653), - [anon_sym_RBRACK] = ACTIONS(2653), - [anon_sym_LT] = ACTIONS(2653), - [anon_sym_GT] = ACTIONS(2653), - [anon_sym_PIPE] = ACTIONS(2653), - [anon_sym_SLASH] = ACTIONS(2653), - [anon_sym_TILDE] = ACTIONS(2653), - [anon_sym_COMMA] = ACTIONS(2653), - [sym_keyword] = ACTIONS(2653), - [anon_sym_LT_LT] = ACTIONS(2653), - [anon_sym_PERCENT] = ACTIONS(2653), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_PLUS] = ACTIONS(2653), - [anon_sym_DASH] = ACTIONS(2653), - [anon_sym_BANG] = ACTIONS(2653), - [anon_sym_CARET] = ACTIONS(2653), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2653), - [anon_sym_not] = ACTIONS(2653), - [anon_sym_AT] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2653), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2653), - [anon_sym_when] = ACTIONS(2653), - [anon_sym_COLON_COLON] = ACTIONS(2653), - [anon_sym_EQ_GT] = ACTIONS(2653), - [anon_sym_EQ] = ACTIONS(2653), - [anon_sym_PIPE_PIPE] = ACTIONS(2653), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2653), - [anon_sym_or] = ACTIONS(2653), - [anon_sym_AMP_AMP] = ACTIONS(2653), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2653), - [anon_sym_and] = ACTIONS(2653), - [anon_sym_EQ_EQ] = ACTIONS(2653), - [anon_sym_BANG_EQ] = ACTIONS(2653), - [anon_sym_EQ_TILDE] = ACTIONS(2653), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2653), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2653), - [anon_sym_LT_EQ] = ACTIONS(2653), - [anon_sym_GT_EQ] = ACTIONS(2653), - [anon_sym_PIPE_GT] = ACTIONS(2653), - [anon_sym_LT_LT_LT] = ACTIONS(2653), - [anon_sym_GT_GT_GT] = ACTIONS(2653), - [anon_sym_LT_LT_TILDE] = ACTIONS(2653), - [anon_sym_TILDE_GT_GT] = ACTIONS(2653), - [anon_sym_LT_TILDE] = ACTIONS(2653), - [anon_sym_TILDE_GT] = ACTIONS(2653), - [anon_sym_LT_TILDE_GT] = ACTIONS(2653), - [anon_sym_LT_PIPE_GT] = ACTIONS(2653), - [anon_sym_in] = ACTIONS(2653), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2653), - [anon_sym_SLASH_SLASH] = ACTIONS(2653), - [anon_sym_PLUS_PLUS] = ACTIONS(2653), - [anon_sym_DASH_DASH] = ACTIONS(2653), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2653), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2653), - [anon_sym_DOT_DOT] = ACTIONS(2653), - [anon_sym_LT_GT] = ACTIONS(2653), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_STAR_STAR] = ACTIONS(2653), - [anon_sym_CARET_CARET] = ACTIONS(2653), - [anon_sym_DASH_GT] = ACTIONS(2653), - [anon_sym_DOT] = ACTIONS(2653), - [anon_sym_do] = ACTIONS(2653), - [anon_sym_fn] = ACTIONS(2653), - [anon_sym_LPAREN2] = ACTIONS(2651), - [anon_sym_LBRACK2] = ACTIONS(2651), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2651), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2651), - [sym__not_in] = ACTIONS(2651), - [sym__quoted_atom_start] = ACTIONS(2651), - }, [944] = { - [aux_sym__terminator_token1] = ACTIONS(2623), - [anon_sym_SEMI] = ACTIONS(2625), - [anon_sym_LPAREN] = ACTIONS(2625), - [aux_sym_identifier_token1] = ACTIONS(2625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2625), - [sym_unused_identifier] = ACTIONS(2625), - [anon_sym___MODULE__] = ACTIONS(2625), - [anon_sym___DIR__] = ACTIONS(2625), - [anon_sym___ENV__] = ACTIONS(2625), - [anon_sym___CALLER__] = ACTIONS(2625), - [anon_sym___STACKTRACE__] = ACTIONS(2625), - [sym_alias] = ACTIONS(2625), - [sym_integer] = ACTIONS(2625), - [sym_float] = ACTIONS(2625), - [sym_char] = ACTIONS(2625), - [anon_sym_true] = ACTIONS(2625), - [anon_sym_false] = ACTIONS(2625), - [anon_sym_nil] = ACTIONS(2625), - [sym_atom] = ACTIONS(2625), - [anon_sym_DQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2625), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2625), - [anon_sym_LBRACE] = ACTIONS(2625), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_LT] = ACTIONS(2625), - [anon_sym_GT] = ACTIONS(2625), - [anon_sym_PIPE] = ACTIONS(2625), - [anon_sym_SLASH] = ACTIONS(2625), - [anon_sym_TILDE] = ACTIONS(2625), - [anon_sym_COMMA] = ACTIONS(2625), - [sym_keyword] = ACTIONS(2625), - [anon_sym_LT_LT] = ACTIONS(2625), - [anon_sym_PERCENT] = ACTIONS(2625), - [anon_sym_AMP] = ACTIONS(2625), - [anon_sym_PLUS] = ACTIONS(2625), - [anon_sym_DASH] = ACTIONS(2625), - [anon_sym_BANG] = ACTIONS(2625), - [anon_sym_CARET] = ACTIONS(2625), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2625), - [anon_sym_not] = ACTIONS(2625), - [anon_sym_AT] = ACTIONS(2625), - [anon_sym_LT_DASH] = ACTIONS(2625), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2625), - [anon_sym_when] = ACTIONS(2625), - [anon_sym_COLON_COLON] = ACTIONS(2625), - [anon_sym_EQ_GT] = ACTIONS(2625), - [anon_sym_EQ] = ACTIONS(2625), - [anon_sym_PIPE_PIPE] = ACTIONS(2625), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2625), - [anon_sym_or] = ACTIONS(2625), - [anon_sym_AMP_AMP] = ACTIONS(2625), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2625), - [anon_sym_and] = ACTIONS(2625), - [anon_sym_EQ_EQ] = ACTIONS(2625), - [anon_sym_BANG_EQ] = ACTIONS(2625), - [anon_sym_EQ_TILDE] = ACTIONS(2625), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2625), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2625), - [anon_sym_LT_EQ] = ACTIONS(2625), - [anon_sym_GT_EQ] = ACTIONS(2625), - [anon_sym_PIPE_GT] = ACTIONS(2625), - [anon_sym_LT_LT_LT] = ACTIONS(2625), - [anon_sym_GT_GT_GT] = ACTIONS(2625), - [anon_sym_LT_LT_TILDE] = ACTIONS(2625), - [anon_sym_TILDE_GT_GT] = ACTIONS(2625), - [anon_sym_LT_TILDE] = ACTIONS(2625), - [anon_sym_TILDE_GT] = ACTIONS(2625), - [anon_sym_LT_TILDE_GT] = ACTIONS(2625), - [anon_sym_LT_PIPE_GT] = ACTIONS(2625), - [anon_sym_in] = ACTIONS(2625), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2625), - [anon_sym_SLASH_SLASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_DASH_DASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2625), - [anon_sym_DOT_DOT] = ACTIONS(2625), - [anon_sym_LT_GT] = ACTIONS(2625), - [anon_sym_STAR] = ACTIONS(2625), - [anon_sym_STAR_STAR] = ACTIONS(2625), - [anon_sym_CARET_CARET] = ACTIONS(2625), - [anon_sym_DASH_GT] = ACTIONS(2625), - [anon_sym_DOT] = ACTIONS(2625), - [anon_sym_do] = ACTIONS(2625), - [anon_sym_end] = ACTIONS(2625), - [anon_sym_fn] = ACTIONS(2625), - [anon_sym_LPAREN2] = ACTIONS(2623), - [anon_sym_LBRACK2] = ACTIONS(2623), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2623), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2623), - [sym__not_in] = ACTIONS(2623), - [sym__quoted_atom_start] = ACTIONS(2623), - }, - [945] = { [aux_sym__terminator_token1] = ACTIONS(2643), [anon_sym_SEMI] = ACTIONS(2645), [anon_sym_LPAREN] = ACTIONS(2645), @@ -144283,1477 +144823,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2643), [sym__quoted_atom_start] = ACTIONS(2643), }, - [946] = { - [ts_builtin_sym_end] = ACTIONS(2619), - [aux_sym__terminator_token1] = ACTIONS(2619), - [anon_sym_SEMI] = ACTIONS(2621), - [anon_sym_LPAREN] = ACTIONS(2621), - [aux_sym_identifier_token1] = ACTIONS(2621), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2621), - [sym_unused_identifier] = ACTIONS(2621), - [anon_sym___MODULE__] = ACTIONS(2621), - [anon_sym___DIR__] = ACTIONS(2621), - [anon_sym___ENV__] = ACTIONS(2621), - [anon_sym___CALLER__] = ACTIONS(2621), - [anon_sym___STACKTRACE__] = ACTIONS(2621), - [sym_alias] = ACTIONS(2621), - [sym_integer] = ACTIONS(2621), - [sym_float] = ACTIONS(2621), - [sym_char] = ACTIONS(2621), - [anon_sym_true] = ACTIONS(2621), - [anon_sym_false] = ACTIONS(2621), - [anon_sym_nil] = ACTIONS(2621), - [sym_atom] = ACTIONS(2621), - [anon_sym_DQUOTE] = ACTIONS(2621), - [anon_sym_SQUOTE] = ACTIONS(2621), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2621), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), - [anon_sym_LBRACE] = ACTIONS(2621), - [anon_sym_LBRACK] = ACTIONS(2621), - [anon_sym_LT] = ACTIONS(2621), - [anon_sym_GT] = ACTIONS(2621), - [anon_sym_PIPE] = ACTIONS(2621), - [anon_sym_SLASH] = ACTIONS(2621), - [anon_sym_TILDE] = ACTIONS(2621), - [anon_sym_COMMA] = ACTIONS(2621), - [sym_keyword] = ACTIONS(2621), - [anon_sym_LT_LT] = ACTIONS(2621), - [anon_sym_PERCENT] = ACTIONS(2621), - [anon_sym_AMP] = ACTIONS(2621), - [anon_sym_PLUS] = ACTIONS(2621), - [anon_sym_DASH] = ACTIONS(2621), - [anon_sym_BANG] = ACTIONS(2621), - [anon_sym_CARET] = ACTIONS(2621), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2621), - [anon_sym_not] = ACTIONS(2621), - [anon_sym_AT] = ACTIONS(2621), - [anon_sym_LT_DASH] = ACTIONS(2621), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2621), - [anon_sym_when] = ACTIONS(2621), - [anon_sym_COLON_COLON] = ACTIONS(2621), - [anon_sym_EQ_GT] = ACTIONS(2621), - [anon_sym_EQ] = ACTIONS(2621), - [anon_sym_PIPE_PIPE] = ACTIONS(2621), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2621), - [anon_sym_or] = ACTIONS(2621), - [anon_sym_AMP_AMP] = ACTIONS(2621), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2621), - [anon_sym_and] = ACTIONS(2621), - [anon_sym_EQ_EQ] = ACTIONS(2621), - [anon_sym_BANG_EQ] = ACTIONS(2621), - [anon_sym_EQ_TILDE] = ACTIONS(2621), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2621), - [anon_sym_LT_EQ] = ACTIONS(2621), - [anon_sym_GT_EQ] = ACTIONS(2621), - [anon_sym_PIPE_GT] = ACTIONS(2621), - [anon_sym_LT_LT_LT] = ACTIONS(2621), - [anon_sym_GT_GT_GT] = ACTIONS(2621), - [anon_sym_LT_LT_TILDE] = ACTIONS(2621), - [anon_sym_TILDE_GT_GT] = ACTIONS(2621), - [anon_sym_LT_TILDE] = ACTIONS(2621), - [anon_sym_TILDE_GT] = ACTIONS(2621), - [anon_sym_LT_TILDE_GT] = ACTIONS(2621), - [anon_sym_LT_PIPE_GT] = ACTIONS(2621), - [anon_sym_in] = ACTIONS(2621), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2621), - [anon_sym_SLASH_SLASH] = ACTIONS(2621), - [anon_sym_PLUS_PLUS] = ACTIONS(2621), - [anon_sym_DASH_DASH] = ACTIONS(2621), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2621), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2621), - [anon_sym_DOT_DOT] = ACTIONS(2621), - [anon_sym_LT_GT] = ACTIONS(2621), - [anon_sym_STAR] = ACTIONS(2621), - [anon_sym_STAR_STAR] = ACTIONS(2621), - [anon_sym_CARET_CARET] = ACTIONS(2621), - [anon_sym_DASH_GT] = ACTIONS(2621), - [anon_sym_DOT] = ACTIONS(2621), - [anon_sym_do] = ACTIONS(2621), - [anon_sym_fn] = ACTIONS(2621), - [anon_sym_LPAREN2] = ACTIONS(2619), - [anon_sym_LBRACK2] = ACTIONS(2619), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2619), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2619), - [sym__not_in] = ACTIONS(2619), - [sym__quoted_atom_start] = ACTIONS(2619), - }, - [947] = { - [ts_builtin_sym_end] = ACTIONS(2623), - [aux_sym__terminator_token1] = ACTIONS(2623), - [anon_sym_SEMI] = ACTIONS(2625), - [anon_sym_LPAREN] = ACTIONS(2625), - [aux_sym_identifier_token1] = ACTIONS(2625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2625), - [sym_unused_identifier] = ACTIONS(2625), - [anon_sym___MODULE__] = ACTIONS(2625), - [anon_sym___DIR__] = ACTIONS(2625), - [anon_sym___ENV__] = ACTIONS(2625), - [anon_sym___CALLER__] = ACTIONS(2625), - [anon_sym___STACKTRACE__] = ACTIONS(2625), - [sym_alias] = ACTIONS(2625), - [sym_integer] = ACTIONS(2625), - [sym_float] = ACTIONS(2625), - [sym_char] = ACTIONS(2625), - [anon_sym_true] = ACTIONS(2625), - [anon_sym_false] = ACTIONS(2625), - [anon_sym_nil] = ACTIONS(2625), - [sym_atom] = ACTIONS(2625), - [anon_sym_DQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2625), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2625), - [anon_sym_LBRACE] = ACTIONS(2625), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_LT] = ACTIONS(2625), - [anon_sym_GT] = ACTIONS(2625), - [anon_sym_PIPE] = ACTIONS(2625), - [anon_sym_SLASH] = ACTIONS(2625), - [anon_sym_TILDE] = ACTIONS(2625), - [anon_sym_COMMA] = ACTIONS(2625), - [sym_keyword] = ACTIONS(2625), - [anon_sym_LT_LT] = ACTIONS(2625), - [anon_sym_PERCENT] = ACTIONS(2625), - [anon_sym_AMP] = ACTIONS(2625), - [anon_sym_PLUS] = ACTIONS(2625), - [anon_sym_DASH] = ACTIONS(2625), - [anon_sym_BANG] = ACTIONS(2625), - [anon_sym_CARET] = ACTIONS(2625), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2625), - [anon_sym_not] = ACTIONS(2625), - [anon_sym_AT] = ACTIONS(2625), - [anon_sym_LT_DASH] = ACTIONS(2625), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2625), - [anon_sym_when] = ACTIONS(2625), - [anon_sym_COLON_COLON] = ACTIONS(2625), - [anon_sym_EQ_GT] = ACTIONS(2625), - [anon_sym_EQ] = ACTIONS(2625), - [anon_sym_PIPE_PIPE] = ACTIONS(2625), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2625), - [anon_sym_or] = ACTIONS(2625), - [anon_sym_AMP_AMP] = ACTIONS(2625), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2625), - [anon_sym_and] = ACTIONS(2625), - [anon_sym_EQ_EQ] = ACTIONS(2625), - [anon_sym_BANG_EQ] = ACTIONS(2625), - [anon_sym_EQ_TILDE] = ACTIONS(2625), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2625), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2625), - [anon_sym_LT_EQ] = ACTIONS(2625), - [anon_sym_GT_EQ] = ACTIONS(2625), - [anon_sym_PIPE_GT] = ACTIONS(2625), - [anon_sym_LT_LT_LT] = ACTIONS(2625), - [anon_sym_GT_GT_GT] = ACTIONS(2625), - [anon_sym_LT_LT_TILDE] = ACTIONS(2625), - [anon_sym_TILDE_GT_GT] = ACTIONS(2625), - [anon_sym_LT_TILDE] = ACTIONS(2625), - [anon_sym_TILDE_GT] = ACTIONS(2625), - [anon_sym_LT_TILDE_GT] = ACTIONS(2625), - [anon_sym_LT_PIPE_GT] = ACTIONS(2625), - [anon_sym_in] = ACTIONS(2625), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2625), - [anon_sym_SLASH_SLASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_DASH_DASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2625), - [anon_sym_DOT_DOT] = ACTIONS(2625), - [anon_sym_LT_GT] = ACTIONS(2625), - [anon_sym_STAR] = ACTIONS(2625), - [anon_sym_STAR_STAR] = ACTIONS(2625), - [anon_sym_CARET_CARET] = ACTIONS(2625), - [anon_sym_DASH_GT] = ACTIONS(2625), - [anon_sym_DOT] = ACTIONS(2625), - [anon_sym_do] = ACTIONS(2625), - [anon_sym_fn] = ACTIONS(2625), - [anon_sym_LPAREN2] = ACTIONS(2623), - [anon_sym_LBRACK2] = ACTIONS(2623), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2623), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2623), - [sym__not_in] = ACTIONS(2623), - [sym__quoted_atom_start] = ACTIONS(2623), - }, - [948] = { - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2633), - [anon_sym_RPAREN] = ACTIONS(2633), - [aux_sym_identifier_token1] = ACTIONS(2633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2633), - [sym_unused_identifier] = ACTIONS(2633), - [anon_sym___MODULE__] = ACTIONS(2633), - [anon_sym___DIR__] = ACTIONS(2633), - [anon_sym___ENV__] = ACTIONS(2633), - [anon_sym___CALLER__] = ACTIONS(2633), - [anon_sym___STACKTRACE__] = ACTIONS(2633), - [sym_alias] = ACTIONS(2633), - [sym_integer] = ACTIONS(2633), - [sym_float] = ACTIONS(2633), - [sym_char] = ACTIONS(2633), - [anon_sym_true] = ACTIONS(2633), - [anon_sym_false] = ACTIONS(2633), - [anon_sym_nil] = ACTIONS(2633), - [sym_atom] = ACTIONS(2633), - [anon_sym_DQUOTE] = ACTIONS(2633), - [anon_sym_SQUOTE] = ACTIONS(2633), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2633), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2633), - [anon_sym_LBRACE] = ACTIONS(2633), - [anon_sym_RBRACE] = ACTIONS(2633), - [anon_sym_LBRACK] = ACTIONS(2633), - [anon_sym_RBRACK] = ACTIONS(2633), - [anon_sym_LT] = ACTIONS(2633), - [anon_sym_GT] = ACTIONS(2633), - [anon_sym_PIPE] = ACTIONS(2633), - [anon_sym_SLASH] = ACTIONS(2633), - [anon_sym_TILDE] = ACTIONS(2633), - [anon_sym_COMMA] = ACTIONS(2633), - [sym_keyword] = ACTIONS(2633), - [anon_sym_LT_LT] = ACTIONS(2633), - [anon_sym_PERCENT] = ACTIONS(2633), - [anon_sym_AMP] = ACTIONS(2633), - [anon_sym_PLUS] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2633), - [anon_sym_BANG] = ACTIONS(2633), - [anon_sym_CARET] = ACTIONS(2633), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2633), - [anon_sym_not] = ACTIONS(2633), - [anon_sym_AT] = ACTIONS(2633), - [anon_sym_LT_DASH] = ACTIONS(2633), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2633), - [anon_sym_when] = ACTIONS(2633), - [anon_sym_COLON_COLON] = ACTIONS(2633), - [anon_sym_EQ_GT] = ACTIONS(2633), - [anon_sym_EQ] = ACTIONS(2633), - [anon_sym_PIPE_PIPE] = ACTIONS(2633), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2633), - [anon_sym_or] = ACTIONS(2633), - [anon_sym_AMP_AMP] = ACTIONS(2633), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2633), - [anon_sym_and] = ACTIONS(2633), - [anon_sym_EQ_EQ] = ACTIONS(2633), - [anon_sym_BANG_EQ] = ACTIONS(2633), - [anon_sym_EQ_TILDE] = ACTIONS(2633), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2633), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2633), - [anon_sym_LT_EQ] = ACTIONS(2633), - [anon_sym_GT_EQ] = ACTIONS(2633), - [anon_sym_PIPE_GT] = ACTIONS(2633), - [anon_sym_LT_LT_LT] = ACTIONS(2633), - [anon_sym_GT_GT_GT] = ACTIONS(2633), - [anon_sym_LT_LT_TILDE] = ACTIONS(2633), - [anon_sym_TILDE_GT_GT] = ACTIONS(2633), - [anon_sym_LT_TILDE] = ACTIONS(2633), - [anon_sym_TILDE_GT] = ACTIONS(2633), - [anon_sym_LT_TILDE_GT] = ACTIONS(2633), - [anon_sym_LT_PIPE_GT] = ACTIONS(2633), - [anon_sym_in] = ACTIONS(2633), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2633), - [anon_sym_SLASH_SLASH] = ACTIONS(2633), - [anon_sym_PLUS_PLUS] = ACTIONS(2633), - [anon_sym_DASH_DASH] = ACTIONS(2633), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2633), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2633), - [anon_sym_DOT_DOT] = ACTIONS(2633), - [anon_sym_LT_GT] = ACTIONS(2633), - [anon_sym_STAR] = ACTIONS(2633), - [anon_sym_STAR_STAR] = ACTIONS(2633), - [anon_sym_CARET_CARET] = ACTIONS(2633), - [anon_sym_DASH_GT] = ACTIONS(2633), - [anon_sym_DOT] = ACTIONS(2633), - [anon_sym_do] = ACTIONS(2633), - [anon_sym_fn] = ACTIONS(2633), - [anon_sym_LPAREN2] = ACTIONS(2631), - [anon_sym_LBRACK2] = ACTIONS(2631), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2631), - [sym__not_in] = ACTIONS(2631), - [sym__quoted_atom_start] = ACTIONS(2631), - }, - [949] = { - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2653), - [anon_sym_RPAREN] = ACTIONS(2653), - [aux_sym_identifier_token1] = ACTIONS(2653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2653), - [sym_unused_identifier] = ACTIONS(2653), - [anon_sym___MODULE__] = ACTIONS(2653), - [anon_sym___DIR__] = ACTIONS(2653), - [anon_sym___ENV__] = ACTIONS(2653), - [anon_sym___CALLER__] = ACTIONS(2653), - [anon_sym___STACKTRACE__] = ACTIONS(2653), - [sym_alias] = ACTIONS(2653), - [sym_integer] = ACTIONS(2653), - [sym_float] = ACTIONS(2653), - [sym_char] = ACTIONS(2653), - [anon_sym_true] = ACTIONS(2653), - [anon_sym_false] = ACTIONS(2653), - [anon_sym_nil] = ACTIONS(2653), - [sym_atom] = ACTIONS(2653), - [anon_sym_DQUOTE] = ACTIONS(2653), - [anon_sym_SQUOTE] = ACTIONS(2653), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2653), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2653), - [anon_sym_RBRACE] = ACTIONS(2653), - [anon_sym_LBRACK] = ACTIONS(2653), - [anon_sym_RBRACK] = ACTIONS(2653), - [anon_sym_LT] = ACTIONS(2653), - [anon_sym_GT] = ACTIONS(2653), - [anon_sym_PIPE] = ACTIONS(2653), - [anon_sym_SLASH] = ACTIONS(2653), - [anon_sym_TILDE] = ACTIONS(2653), - [anon_sym_COMMA] = ACTIONS(2653), - [sym_keyword] = ACTIONS(2653), - [anon_sym_LT_LT] = ACTIONS(2653), - [anon_sym_PERCENT] = ACTIONS(2653), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_PLUS] = ACTIONS(2653), - [anon_sym_DASH] = ACTIONS(2653), - [anon_sym_BANG] = ACTIONS(2653), - [anon_sym_CARET] = ACTIONS(2653), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2653), - [anon_sym_not] = ACTIONS(2653), - [anon_sym_AT] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2653), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2653), - [anon_sym_when] = ACTIONS(2653), - [anon_sym_COLON_COLON] = ACTIONS(2653), - [anon_sym_EQ_GT] = ACTIONS(2653), - [anon_sym_EQ] = ACTIONS(2653), - [anon_sym_PIPE_PIPE] = ACTIONS(2653), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2653), - [anon_sym_or] = ACTIONS(2653), - [anon_sym_AMP_AMP] = ACTIONS(2653), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2653), - [anon_sym_and] = ACTIONS(2653), - [anon_sym_EQ_EQ] = ACTIONS(2653), - [anon_sym_BANG_EQ] = ACTIONS(2653), - [anon_sym_EQ_TILDE] = ACTIONS(2653), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2653), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2653), - [anon_sym_LT_EQ] = ACTIONS(2653), - [anon_sym_GT_EQ] = ACTIONS(2653), - [anon_sym_PIPE_GT] = ACTIONS(2653), - [anon_sym_LT_LT_LT] = ACTIONS(2653), - [anon_sym_GT_GT_GT] = ACTIONS(2653), - [anon_sym_LT_LT_TILDE] = ACTIONS(2653), - [anon_sym_TILDE_GT_GT] = ACTIONS(2653), - [anon_sym_LT_TILDE] = ACTIONS(2653), - [anon_sym_TILDE_GT] = ACTIONS(2653), - [anon_sym_LT_TILDE_GT] = ACTIONS(2653), - [anon_sym_LT_PIPE_GT] = ACTIONS(2653), - [anon_sym_in] = ACTIONS(2653), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2653), - [anon_sym_SLASH_SLASH] = ACTIONS(2653), - [anon_sym_PLUS_PLUS] = ACTIONS(2653), - [anon_sym_DASH_DASH] = ACTIONS(2653), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2653), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2653), - [anon_sym_DOT_DOT] = ACTIONS(2653), - [anon_sym_LT_GT] = ACTIONS(2653), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_STAR_STAR] = ACTIONS(2653), - [anon_sym_CARET_CARET] = ACTIONS(2653), - [anon_sym_DASH_GT] = ACTIONS(2653), - [anon_sym_DOT] = ACTIONS(2653), - [anon_sym_do] = ACTIONS(2653), - [anon_sym_fn] = ACTIONS(2653), - [anon_sym_LPAREN2] = ACTIONS(2651), - [anon_sym_LBRACK2] = ACTIONS(2651), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2651), - [sym__not_in] = ACTIONS(2651), - [sym__quoted_atom_start] = ACTIONS(2651), - }, - [950] = { - [ts_builtin_sym_end] = ACTIONS(2627), - [aux_sym__terminator_token1] = ACTIONS(2627), - [anon_sym_SEMI] = ACTIONS(2629), - [anon_sym_LPAREN] = ACTIONS(2629), - [aux_sym_identifier_token1] = ACTIONS(2629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2629), - [sym_unused_identifier] = ACTIONS(2629), - [anon_sym___MODULE__] = ACTIONS(2629), - [anon_sym___DIR__] = ACTIONS(2629), - [anon_sym___ENV__] = ACTIONS(2629), - [anon_sym___CALLER__] = ACTIONS(2629), - [anon_sym___STACKTRACE__] = ACTIONS(2629), - [sym_alias] = ACTIONS(2629), - [sym_integer] = ACTIONS(2629), - [sym_float] = ACTIONS(2629), - [sym_char] = ACTIONS(2629), - [anon_sym_true] = ACTIONS(2629), - [anon_sym_false] = ACTIONS(2629), - [anon_sym_nil] = ACTIONS(2629), - [sym_atom] = ACTIONS(2629), - [anon_sym_DQUOTE] = ACTIONS(2629), - [anon_sym_SQUOTE] = ACTIONS(2629), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2629), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(2629), - [anon_sym_LBRACK] = ACTIONS(2629), - [anon_sym_LT] = ACTIONS(2629), - [anon_sym_GT] = ACTIONS(2629), - [anon_sym_PIPE] = ACTIONS(2629), - [anon_sym_SLASH] = ACTIONS(2629), - [anon_sym_TILDE] = ACTIONS(2629), - [anon_sym_COMMA] = ACTIONS(2629), - [sym_keyword] = ACTIONS(2629), - [anon_sym_LT_LT] = ACTIONS(2629), - [anon_sym_PERCENT] = ACTIONS(2629), - [anon_sym_AMP] = ACTIONS(2629), - [anon_sym_PLUS] = ACTIONS(2629), - [anon_sym_DASH] = ACTIONS(2629), - [anon_sym_BANG] = ACTIONS(2629), - [anon_sym_CARET] = ACTIONS(2629), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2629), - [anon_sym_not] = ACTIONS(2629), - [anon_sym_AT] = ACTIONS(2629), - [anon_sym_LT_DASH] = ACTIONS(2629), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2629), - [anon_sym_when] = ACTIONS(2629), - [anon_sym_COLON_COLON] = ACTIONS(2629), - [anon_sym_EQ_GT] = ACTIONS(2629), - [anon_sym_EQ] = ACTIONS(2629), - [anon_sym_PIPE_PIPE] = ACTIONS(2629), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2629), - [anon_sym_or] = ACTIONS(2629), - [anon_sym_AMP_AMP] = ACTIONS(2629), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2629), - [anon_sym_and] = ACTIONS(2629), - [anon_sym_EQ_EQ] = ACTIONS(2629), - [anon_sym_BANG_EQ] = ACTIONS(2629), - [anon_sym_EQ_TILDE] = ACTIONS(2629), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2629), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2629), - [anon_sym_LT_EQ] = ACTIONS(2629), - [anon_sym_GT_EQ] = ACTIONS(2629), - [anon_sym_PIPE_GT] = ACTIONS(2629), - [anon_sym_LT_LT_LT] = ACTIONS(2629), - [anon_sym_GT_GT_GT] = ACTIONS(2629), - [anon_sym_LT_LT_TILDE] = ACTIONS(2629), - [anon_sym_TILDE_GT_GT] = ACTIONS(2629), - [anon_sym_LT_TILDE] = ACTIONS(2629), - [anon_sym_TILDE_GT] = ACTIONS(2629), - [anon_sym_LT_TILDE_GT] = ACTIONS(2629), - [anon_sym_LT_PIPE_GT] = ACTIONS(2629), - [anon_sym_in] = ACTIONS(2629), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2629), - [anon_sym_SLASH_SLASH] = ACTIONS(2629), - [anon_sym_PLUS_PLUS] = ACTIONS(2629), - [anon_sym_DASH_DASH] = ACTIONS(2629), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2629), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2629), - [anon_sym_DOT_DOT] = ACTIONS(2629), - [anon_sym_LT_GT] = ACTIONS(2629), - [anon_sym_STAR] = ACTIONS(2629), - [anon_sym_STAR_STAR] = ACTIONS(2629), - [anon_sym_CARET_CARET] = ACTIONS(2629), - [anon_sym_DASH_GT] = ACTIONS(2629), - [anon_sym_DOT] = ACTIONS(2629), - [anon_sym_do] = ACTIONS(2629), - [anon_sym_fn] = ACTIONS(2629), - [anon_sym_LPAREN2] = ACTIONS(2627), - [anon_sym_LBRACK2] = ACTIONS(2627), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2627), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2627), - [sym__not_in] = ACTIONS(2627), - [sym__quoted_atom_start] = ACTIONS(2627), - }, - [951] = { - [aux_sym__terminator_token1] = ACTIONS(2611), - [anon_sym_SEMI] = ACTIONS(2613), - [anon_sym_LPAREN] = ACTIONS(2613), - [anon_sym_RPAREN] = ACTIONS(2613), - [aux_sym_identifier_token1] = ACTIONS(2613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2613), - [sym_unused_identifier] = ACTIONS(2613), - [anon_sym___MODULE__] = ACTIONS(2613), - [anon_sym___DIR__] = ACTIONS(2613), - [anon_sym___ENV__] = ACTIONS(2613), - [anon_sym___CALLER__] = ACTIONS(2613), - [anon_sym___STACKTRACE__] = ACTIONS(2613), - [sym_alias] = ACTIONS(2613), - [sym_integer] = ACTIONS(2613), - [sym_float] = ACTIONS(2613), - [sym_char] = ACTIONS(2613), - [anon_sym_true] = ACTIONS(2613), - [anon_sym_false] = ACTIONS(2613), - [anon_sym_nil] = ACTIONS(2613), - [sym_atom] = ACTIONS(2613), - [anon_sym_DQUOTE] = ACTIONS(2613), - [anon_sym_SQUOTE] = ACTIONS(2613), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2613), - [anon_sym_LBRACE] = ACTIONS(2613), - [anon_sym_LBRACK] = ACTIONS(2613), - [anon_sym_LT] = ACTIONS(2613), - [anon_sym_GT] = ACTIONS(2613), - [anon_sym_PIPE] = ACTIONS(2613), - [anon_sym_SLASH] = ACTIONS(2613), - [anon_sym_TILDE] = ACTIONS(2613), - [anon_sym_COMMA] = ACTIONS(2613), - [sym_keyword] = ACTIONS(2613), - [anon_sym_LT_LT] = ACTIONS(2613), - [anon_sym_PERCENT] = ACTIONS(2613), - [anon_sym_AMP] = ACTIONS(2613), - [anon_sym_PLUS] = ACTIONS(2613), - [anon_sym_DASH] = ACTIONS(2613), - [anon_sym_BANG] = ACTIONS(2613), - [anon_sym_CARET] = ACTIONS(2613), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(2613), - [anon_sym_AT] = ACTIONS(2613), - [anon_sym_LT_DASH] = ACTIONS(2613), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2613), - [anon_sym_when] = ACTIONS(2613), - [anon_sym_COLON_COLON] = ACTIONS(2613), - [anon_sym_EQ_GT] = ACTIONS(2613), - [anon_sym_EQ] = ACTIONS(2613), - [anon_sym_PIPE_PIPE] = ACTIONS(2613), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2613), - [anon_sym_or] = ACTIONS(2613), - [anon_sym_AMP_AMP] = ACTIONS(2613), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2613), - [anon_sym_and] = ACTIONS(2613), - [anon_sym_EQ_EQ] = ACTIONS(2613), - [anon_sym_BANG_EQ] = ACTIONS(2613), - [anon_sym_EQ_TILDE] = ACTIONS(2613), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2613), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2613), - [anon_sym_LT_EQ] = ACTIONS(2613), - [anon_sym_GT_EQ] = ACTIONS(2613), - [anon_sym_PIPE_GT] = ACTIONS(2613), - [anon_sym_LT_LT_LT] = ACTIONS(2613), - [anon_sym_GT_GT_GT] = ACTIONS(2613), - [anon_sym_LT_LT_TILDE] = ACTIONS(2613), - [anon_sym_TILDE_GT_GT] = ACTIONS(2613), - [anon_sym_LT_TILDE] = ACTIONS(2613), - [anon_sym_TILDE_GT] = ACTIONS(2613), - [anon_sym_LT_TILDE_GT] = ACTIONS(2613), - [anon_sym_LT_PIPE_GT] = ACTIONS(2613), - [anon_sym_in] = ACTIONS(2613), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2613), - [anon_sym_SLASH_SLASH] = ACTIONS(2613), - [anon_sym_PLUS_PLUS] = ACTIONS(2613), - [anon_sym_DASH_DASH] = ACTIONS(2613), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2613), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2613), - [anon_sym_DOT_DOT] = ACTIONS(2613), - [anon_sym_LT_GT] = ACTIONS(2613), - [anon_sym_STAR] = ACTIONS(2613), - [anon_sym_STAR_STAR] = ACTIONS(2613), - [anon_sym_CARET_CARET] = ACTIONS(2613), - [anon_sym_DASH_GT] = ACTIONS(2613), - [anon_sym_DOT] = ACTIONS(2613), - [anon_sym_do] = ACTIONS(2613), - [anon_sym_fn] = ACTIONS(2613), - [anon_sym_LPAREN2] = ACTIONS(2611), - [anon_sym_LBRACK2] = ACTIONS(2611), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2611), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2611), - [sym__not_in] = ACTIONS(2611), - [sym__quoted_atom_start] = ACTIONS(2611), - }, - [952] = { - [ts_builtin_sym_end] = ACTIONS(2615), - [aux_sym__terminator_token1] = ACTIONS(2615), - [anon_sym_SEMI] = ACTIONS(2617), - [anon_sym_LPAREN] = ACTIONS(2617), - [aux_sym_identifier_token1] = ACTIONS(2617), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2617), - [sym_unused_identifier] = ACTIONS(2617), - [anon_sym___MODULE__] = ACTIONS(2617), - [anon_sym___DIR__] = ACTIONS(2617), - [anon_sym___ENV__] = ACTIONS(2617), - [anon_sym___CALLER__] = ACTIONS(2617), - [anon_sym___STACKTRACE__] = ACTIONS(2617), - [sym_alias] = ACTIONS(2617), - [sym_integer] = ACTIONS(2617), - [sym_float] = ACTIONS(2617), - [sym_char] = ACTIONS(2617), - [anon_sym_true] = ACTIONS(2617), - [anon_sym_false] = ACTIONS(2617), - [anon_sym_nil] = ACTIONS(2617), - [sym_atom] = ACTIONS(2617), - [anon_sym_DQUOTE] = ACTIONS(2617), - [anon_sym_SQUOTE] = ACTIONS(2617), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2617), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2617), - [anon_sym_LBRACK] = ACTIONS(2617), - [anon_sym_LT] = ACTIONS(2617), - [anon_sym_GT] = ACTIONS(2617), - [anon_sym_PIPE] = ACTIONS(2617), - [anon_sym_SLASH] = ACTIONS(2617), - [anon_sym_TILDE] = ACTIONS(2617), - [anon_sym_COMMA] = ACTIONS(2617), - [sym_keyword] = ACTIONS(2617), - [anon_sym_LT_LT] = ACTIONS(2617), - [anon_sym_PERCENT] = ACTIONS(2617), - [anon_sym_AMP] = ACTIONS(2617), - [anon_sym_PLUS] = ACTIONS(2617), - [anon_sym_DASH] = ACTIONS(2617), - [anon_sym_BANG] = ACTIONS(2617), - [anon_sym_CARET] = ACTIONS(2617), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2617), - [anon_sym_not] = ACTIONS(2617), - [anon_sym_AT] = ACTIONS(2617), - [anon_sym_LT_DASH] = ACTIONS(2617), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2617), - [anon_sym_when] = ACTIONS(2617), - [anon_sym_COLON_COLON] = ACTIONS(2617), - [anon_sym_EQ_GT] = ACTIONS(2617), - [anon_sym_EQ] = ACTIONS(2617), - [anon_sym_PIPE_PIPE] = ACTIONS(2617), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2617), - [anon_sym_or] = ACTIONS(2617), - [anon_sym_AMP_AMP] = ACTIONS(2617), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2617), - [anon_sym_and] = ACTIONS(2617), - [anon_sym_EQ_EQ] = ACTIONS(2617), - [anon_sym_BANG_EQ] = ACTIONS(2617), - [anon_sym_EQ_TILDE] = ACTIONS(2617), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2617), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2617), - [anon_sym_LT_EQ] = ACTIONS(2617), - [anon_sym_GT_EQ] = ACTIONS(2617), - [anon_sym_PIPE_GT] = ACTIONS(2617), - [anon_sym_LT_LT_LT] = ACTIONS(2617), - [anon_sym_GT_GT_GT] = ACTIONS(2617), - [anon_sym_LT_LT_TILDE] = ACTIONS(2617), - [anon_sym_TILDE_GT_GT] = ACTIONS(2617), - [anon_sym_LT_TILDE] = ACTIONS(2617), - [anon_sym_TILDE_GT] = ACTIONS(2617), - [anon_sym_LT_TILDE_GT] = ACTIONS(2617), - [anon_sym_LT_PIPE_GT] = ACTIONS(2617), - [anon_sym_in] = ACTIONS(2617), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2617), - [anon_sym_SLASH_SLASH] = ACTIONS(2617), - [anon_sym_PLUS_PLUS] = ACTIONS(2617), - [anon_sym_DASH_DASH] = ACTIONS(2617), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2617), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2617), - [anon_sym_DOT_DOT] = ACTIONS(2617), - [anon_sym_LT_GT] = ACTIONS(2617), - [anon_sym_STAR] = ACTIONS(2617), - [anon_sym_STAR_STAR] = ACTIONS(2617), - [anon_sym_CARET_CARET] = ACTIONS(2617), - [anon_sym_DASH_GT] = ACTIONS(2617), - [anon_sym_DOT] = ACTIONS(2617), - [anon_sym_do] = ACTIONS(2617), - [anon_sym_fn] = ACTIONS(2617), - [anon_sym_LPAREN2] = ACTIONS(2615), - [anon_sym_LBRACK2] = ACTIONS(2615), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2615), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2615), - [sym__not_in] = ACTIONS(2615), - [sym__quoted_atom_start] = ACTIONS(2615), - }, - [953] = { - [aux_sym__terminator_token1] = ACTIONS(2639), - [anon_sym_SEMI] = ACTIONS(2641), - [anon_sym_LPAREN] = ACTIONS(2641), - [anon_sym_RPAREN] = ACTIONS(2641), - [aux_sym_identifier_token1] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2641), - [sym_unused_identifier] = ACTIONS(2641), - [anon_sym___MODULE__] = ACTIONS(2641), - [anon_sym___DIR__] = ACTIONS(2641), - [anon_sym___ENV__] = ACTIONS(2641), - [anon_sym___CALLER__] = ACTIONS(2641), - [anon_sym___STACKTRACE__] = ACTIONS(2641), - [sym_alias] = ACTIONS(2641), - [sym_integer] = ACTIONS(2641), - [sym_float] = ACTIONS(2641), - [sym_char] = ACTIONS(2641), - [anon_sym_true] = ACTIONS(2641), - [anon_sym_false] = ACTIONS(2641), - [anon_sym_nil] = ACTIONS(2641), - [sym_atom] = ACTIONS(2641), - [anon_sym_DQUOTE] = ACTIONS(2641), - [anon_sym_SQUOTE] = ACTIONS(2641), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2641), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2641), - [anon_sym_LBRACE] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_LT] = ACTIONS(2641), - [anon_sym_GT] = ACTIONS(2641), - [anon_sym_PIPE] = ACTIONS(2641), - [anon_sym_SLASH] = ACTIONS(2641), - [anon_sym_TILDE] = ACTIONS(2641), - [anon_sym_COMMA] = ACTIONS(2641), - [sym_keyword] = ACTIONS(2641), - [anon_sym_LT_LT] = ACTIONS(2641), - [anon_sym_PERCENT] = ACTIONS(2641), - [anon_sym_AMP] = ACTIONS(2641), - [anon_sym_PLUS] = ACTIONS(2641), - [anon_sym_DASH] = ACTIONS(2641), - [anon_sym_BANG] = ACTIONS(2641), - [anon_sym_CARET] = ACTIONS(2641), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2641), - [anon_sym_not] = ACTIONS(2641), - [anon_sym_AT] = ACTIONS(2641), - [anon_sym_LT_DASH] = ACTIONS(2641), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2641), - [anon_sym_when] = ACTIONS(2641), - [anon_sym_COLON_COLON] = ACTIONS(2641), - [anon_sym_EQ_GT] = ACTIONS(2641), - [anon_sym_EQ] = ACTIONS(2641), - [anon_sym_PIPE_PIPE] = ACTIONS(2641), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2641), - [anon_sym_or] = ACTIONS(2641), - [anon_sym_AMP_AMP] = ACTIONS(2641), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2641), - [anon_sym_and] = ACTIONS(2641), - [anon_sym_EQ_EQ] = ACTIONS(2641), - [anon_sym_BANG_EQ] = ACTIONS(2641), - [anon_sym_EQ_TILDE] = ACTIONS(2641), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2641), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2641), - [anon_sym_LT_EQ] = ACTIONS(2641), - [anon_sym_GT_EQ] = ACTIONS(2641), - [anon_sym_PIPE_GT] = ACTIONS(2641), - [anon_sym_LT_LT_LT] = ACTIONS(2641), - [anon_sym_GT_GT_GT] = ACTIONS(2641), - [anon_sym_LT_LT_TILDE] = ACTIONS(2641), - [anon_sym_TILDE_GT_GT] = ACTIONS(2641), - [anon_sym_LT_TILDE] = ACTIONS(2641), - [anon_sym_TILDE_GT] = ACTIONS(2641), - [anon_sym_LT_TILDE_GT] = ACTIONS(2641), - [anon_sym_LT_PIPE_GT] = ACTIONS(2641), - [anon_sym_in] = ACTIONS(2641), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2641), - [anon_sym_SLASH_SLASH] = ACTIONS(2641), - [anon_sym_PLUS_PLUS] = ACTIONS(2641), - [anon_sym_DASH_DASH] = ACTIONS(2641), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2641), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2641), - [anon_sym_DOT_DOT] = ACTIONS(2641), - [anon_sym_LT_GT] = ACTIONS(2641), - [anon_sym_STAR] = ACTIONS(2641), - [anon_sym_STAR_STAR] = ACTIONS(2641), - [anon_sym_CARET_CARET] = ACTIONS(2641), - [anon_sym_DASH_GT] = ACTIONS(2641), - [anon_sym_DOT] = ACTIONS(2641), - [anon_sym_do] = ACTIONS(2641), - [anon_sym_fn] = ACTIONS(2641), - [anon_sym_LPAREN2] = ACTIONS(2639), - [anon_sym_LBRACK2] = ACTIONS(2639), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2639), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2639), - [sym__not_in] = ACTIONS(2639), - [sym__quoted_atom_start] = ACTIONS(2639), - }, - [954] = { - [ts_builtin_sym_end] = ACTIONS(2611), - [aux_sym__terminator_token1] = ACTIONS(2611), - [anon_sym_SEMI] = ACTIONS(2613), - [anon_sym_LPAREN] = ACTIONS(2613), - [aux_sym_identifier_token1] = ACTIONS(2613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2613), - [sym_unused_identifier] = ACTIONS(2613), - [anon_sym___MODULE__] = ACTIONS(2613), - [anon_sym___DIR__] = ACTIONS(2613), - [anon_sym___ENV__] = ACTIONS(2613), - [anon_sym___CALLER__] = ACTIONS(2613), - [anon_sym___STACKTRACE__] = ACTIONS(2613), - [sym_alias] = ACTIONS(2613), - [sym_integer] = ACTIONS(2613), - [sym_float] = ACTIONS(2613), - [sym_char] = ACTIONS(2613), - [anon_sym_true] = ACTIONS(2613), - [anon_sym_false] = ACTIONS(2613), - [anon_sym_nil] = ACTIONS(2613), - [sym_atom] = ACTIONS(2613), - [anon_sym_DQUOTE] = ACTIONS(2613), - [anon_sym_SQUOTE] = ACTIONS(2613), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2613), - [anon_sym_LBRACE] = ACTIONS(2613), - [anon_sym_LBRACK] = ACTIONS(2613), - [anon_sym_LT] = ACTIONS(2613), - [anon_sym_GT] = ACTIONS(2613), - [anon_sym_PIPE] = ACTIONS(2613), - [anon_sym_SLASH] = ACTIONS(2613), - [anon_sym_TILDE] = ACTIONS(2613), - [anon_sym_COMMA] = ACTIONS(2613), - [sym_keyword] = ACTIONS(2613), - [anon_sym_LT_LT] = ACTIONS(2613), - [anon_sym_PERCENT] = ACTIONS(2613), - [anon_sym_AMP] = ACTIONS(2613), - [anon_sym_PLUS] = ACTIONS(2613), - [anon_sym_DASH] = ACTIONS(2613), - [anon_sym_BANG] = ACTIONS(2613), - [anon_sym_CARET] = ACTIONS(2613), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(2613), - [anon_sym_AT] = ACTIONS(2613), - [anon_sym_LT_DASH] = ACTIONS(2613), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2613), - [anon_sym_when] = ACTIONS(2613), - [anon_sym_COLON_COLON] = ACTIONS(2613), - [anon_sym_EQ_GT] = ACTIONS(2613), - [anon_sym_EQ] = ACTIONS(2613), - [anon_sym_PIPE_PIPE] = ACTIONS(2613), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2613), - [anon_sym_or] = ACTIONS(2613), - [anon_sym_AMP_AMP] = ACTIONS(2613), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2613), - [anon_sym_and] = ACTIONS(2613), - [anon_sym_EQ_EQ] = ACTIONS(2613), - [anon_sym_BANG_EQ] = ACTIONS(2613), - [anon_sym_EQ_TILDE] = ACTIONS(2613), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2613), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2613), - [anon_sym_LT_EQ] = ACTIONS(2613), - [anon_sym_GT_EQ] = ACTIONS(2613), - [anon_sym_PIPE_GT] = ACTIONS(2613), - [anon_sym_LT_LT_LT] = ACTIONS(2613), - [anon_sym_GT_GT_GT] = ACTIONS(2613), - [anon_sym_LT_LT_TILDE] = ACTIONS(2613), - [anon_sym_TILDE_GT_GT] = ACTIONS(2613), - [anon_sym_LT_TILDE] = ACTIONS(2613), - [anon_sym_TILDE_GT] = ACTIONS(2613), - [anon_sym_LT_TILDE_GT] = ACTIONS(2613), - [anon_sym_LT_PIPE_GT] = ACTIONS(2613), - [anon_sym_in] = ACTIONS(2613), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2613), - [anon_sym_SLASH_SLASH] = ACTIONS(2613), - [anon_sym_PLUS_PLUS] = ACTIONS(2613), - [anon_sym_DASH_DASH] = ACTIONS(2613), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2613), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2613), - [anon_sym_DOT_DOT] = ACTIONS(2613), - [anon_sym_LT_GT] = ACTIONS(2613), - [anon_sym_STAR] = ACTIONS(2613), - [anon_sym_STAR_STAR] = ACTIONS(2613), - [anon_sym_CARET_CARET] = ACTIONS(2613), - [anon_sym_DASH_GT] = ACTIONS(2613), - [anon_sym_DOT] = ACTIONS(2613), - [anon_sym_do] = ACTIONS(2613), - [anon_sym_fn] = ACTIONS(2613), - [anon_sym_LPAREN2] = ACTIONS(2611), - [anon_sym_LBRACK2] = ACTIONS(2611), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2611), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2611), - [sym__not_in] = ACTIONS(2611), - [sym__quoted_atom_start] = ACTIONS(2611), - }, - [955] = { - [ts_builtin_sym_end] = ACTIONS(2615), - [aux_sym__terminator_token1] = ACTIONS(2615), - [anon_sym_SEMI] = ACTIONS(2617), - [anon_sym_LPAREN] = ACTIONS(2617), - [aux_sym_identifier_token1] = ACTIONS(2617), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2617), - [sym_unused_identifier] = ACTIONS(2617), - [anon_sym___MODULE__] = ACTIONS(2617), - [anon_sym___DIR__] = ACTIONS(2617), - [anon_sym___ENV__] = ACTIONS(2617), - [anon_sym___CALLER__] = ACTIONS(2617), - [anon_sym___STACKTRACE__] = ACTIONS(2617), - [sym_alias] = ACTIONS(2617), - [sym_integer] = ACTIONS(2617), - [sym_float] = ACTIONS(2617), - [sym_char] = ACTIONS(2617), - [anon_sym_true] = ACTIONS(2617), - [anon_sym_false] = ACTIONS(2617), - [anon_sym_nil] = ACTIONS(2617), - [sym_atom] = ACTIONS(2617), - [anon_sym_DQUOTE] = ACTIONS(2617), - [anon_sym_SQUOTE] = ACTIONS(2617), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2617), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2617), - [anon_sym_LBRACK] = ACTIONS(2617), - [anon_sym_LT] = ACTIONS(2617), - [anon_sym_GT] = ACTIONS(2617), - [anon_sym_PIPE] = ACTIONS(2617), - [anon_sym_SLASH] = ACTIONS(2617), - [anon_sym_TILDE] = ACTIONS(2617), - [anon_sym_COMMA] = ACTIONS(2617), - [sym_keyword] = ACTIONS(2617), - [anon_sym_LT_LT] = ACTIONS(2617), - [anon_sym_PERCENT] = ACTIONS(2617), - [anon_sym_AMP] = ACTIONS(2617), - [anon_sym_PLUS] = ACTIONS(2617), - [anon_sym_DASH] = ACTIONS(2617), - [anon_sym_BANG] = ACTIONS(2617), - [anon_sym_CARET] = ACTIONS(2617), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2617), - [anon_sym_not] = ACTIONS(2617), - [anon_sym_AT] = ACTIONS(2617), - [anon_sym_LT_DASH] = ACTIONS(2617), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2617), - [anon_sym_when] = ACTIONS(2617), - [anon_sym_COLON_COLON] = ACTIONS(2617), - [anon_sym_EQ_GT] = ACTIONS(2617), - [anon_sym_EQ] = ACTIONS(2617), - [anon_sym_PIPE_PIPE] = ACTIONS(2617), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2617), - [anon_sym_or] = ACTIONS(2617), - [anon_sym_AMP_AMP] = ACTIONS(2617), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2617), - [anon_sym_and] = ACTIONS(2617), - [anon_sym_EQ_EQ] = ACTIONS(2617), - [anon_sym_BANG_EQ] = ACTIONS(2617), - [anon_sym_EQ_TILDE] = ACTIONS(2617), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2617), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2617), - [anon_sym_LT_EQ] = ACTIONS(2617), - [anon_sym_GT_EQ] = ACTIONS(2617), - [anon_sym_PIPE_GT] = ACTIONS(2617), - [anon_sym_LT_LT_LT] = ACTIONS(2617), - [anon_sym_GT_GT_GT] = ACTIONS(2617), - [anon_sym_LT_LT_TILDE] = ACTIONS(2617), - [anon_sym_TILDE_GT_GT] = ACTIONS(2617), - [anon_sym_LT_TILDE] = ACTIONS(2617), - [anon_sym_TILDE_GT] = ACTIONS(2617), - [anon_sym_LT_TILDE_GT] = ACTIONS(2617), - [anon_sym_LT_PIPE_GT] = ACTIONS(2617), - [anon_sym_in] = ACTIONS(2617), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2617), - [anon_sym_SLASH_SLASH] = ACTIONS(2617), - [anon_sym_PLUS_PLUS] = ACTIONS(2617), - [anon_sym_DASH_DASH] = ACTIONS(2617), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2617), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2617), - [anon_sym_DOT_DOT] = ACTIONS(2617), - [anon_sym_LT_GT] = ACTIONS(2617), - [anon_sym_STAR] = ACTIONS(2617), - [anon_sym_STAR_STAR] = ACTIONS(2617), - [anon_sym_CARET_CARET] = ACTIONS(2617), - [anon_sym_DASH_GT] = ACTIONS(2617), - [anon_sym_DOT] = ACTIONS(2617), - [anon_sym_do] = ACTIONS(2617), - [anon_sym_fn] = ACTIONS(2617), - [anon_sym_LPAREN2] = ACTIONS(2615), - [anon_sym_LBRACK2] = ACTIONS(2615), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2615), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2615), - [sym__not_in] = ACTIONS(2615), - [sym__quoted_atom_start] = ACTIONS(2615), - }, - [956] = { - [ts_builtin_sym_end] = ACTIONS(2647), - [aux_sym__terminator_token1] = ACTIONS(2647), - [anon_sym_SEMI] = ACTIONS(2649), - [anon_sym_LPAREN] = ACTIONS(2649), - [aux_sym_identifier_token1] = ACTIONS(2649), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2649), - [sym_unused_identifier] = ACTIONS(2649), - [anon_sym___MODULE__] = ACTIONS(2649), - [anon_sym___DIR__] = ACTIONS(2649), - [anon_sym___ENV__] = ACTIONS(2649), - [anon_sym___CALLER__] = ACTIONS(2649), - [anon_sym___STACKTRACE__] = ACTIONS(2649), - [sym_alias] = ACTIONS(2649), - [sym_integer] = ACTIONS(2649), - [sym_float] = ACTIONS(2649), - [sym_char] = ACTIONS(2649), - [anon_sym_true] = ACTIONS(2649), - [anon_sym_false] = ACTIONS(2649), - [anon_sym_nil] = ACTIONS(2649), - [sym_atom] = ACTIONS(2649), - [anon_sym_DQUOTE] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2649), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2649), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2649), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_GT] = ACTIONS(2649), - [anon_sym_PIPE] = ACTIONS(2649), - [anon_sym_SLASH] = ACTIONS(2649), - [anon_sym_TILDE] = ACTIONS(2649), - [anon_sym_COMMA] = ACTIONS(2649), - [sym_keyword] = ACTIONS(2649), - [anon_sym_LT_LT] = ACTIONS(2649), - [anon_sym_PERCENT] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2649), - [anon_sym_PLUS] = ACTIONS(2649), - [anon_sym_DASH] = ACTIONS(2649), - [anon_sym_BANG] = ACTIONS(2649), - [anon_sym_CARET] = ACTIONS(2649), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2649), - [anon_sym_not] = ACTIONS(2649), - [anon_sym_AT] = ACTIONS(2649), - [anon_sym_LT_DASH] = ACTIONS(2649), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2649), - [anon_sym_when] = ACTIONS(2649), - [anon_sym_COLON_COLON] = ACTIONS(2649), - [anon_sym_EQ_GT] = ACTIONS(2649), - [anon_sym_EQ] = ACTIONS(2649), - [anon_sym_PIPE_PIPE] = ACTIONS(2649), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2649), - [anon_sym_or] = ACTIONS(2649), - [anon_sym_AMP_AMP] = ACTIONS(2649), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2649), - [anon_sym_and] = ACTIONS(2649), - [anon_sym_EQ_EQ] = ACTIONS(2649), - [anon_sym_BANG_EQ] = ACTIONS(2649), - [anon_sym_EQ_TILDE] = ACTIONS(2649), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2649), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2649), - [anon_sym_LT_EQ] = ACTIONS(2649), - [anon_sym_GT_EQ] = ACTIONS(2649), - [anon_sym_PIPE_GT] = ACTIONS(2649), - [anon_sym_LT_LT_LT] = ACTIONS(2649), - [anon_sym_GT_GT_GT] = ACTIONS(2649), - [anon_sym_LT_LT_TILDE] = ACTIONS(2649), - [anon_sym_TILDE_GT_GT] = ACTIONS(2649), - [anon_sym_LT_TILDE] = ACTIONS(2649), - [anon_sym_TILDE_GT] = ACTIONS(2649), - [anon_sym_LT_TILDE_GT] = ACTIONS(2649), - [anon_sym_LT_PIPE_GT] = ACTIONS(2649), - [anon_sym_in] = ACTIONS(2649), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2649), - [anon_sym_SLASH_SLASH] = ACTIONS(2649), - [anon_sym_PLUS_PLUS] = ACTIONS(2649), - [anon_sym_DASH_DASH] = ACTIONS(2649), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2649), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2649), - [anon_sym_DOT_DOT] = ACTIONS(2649), - [anon_sym_LT_GT] = ACTIONS(2649), - [anon_sym_STAR] = ACTIONS(2649), - [anon_sym_STAR_STAR] = ACTIONS(2649), - [anon_sym_CARET_CARET] = ACTIONS(2649), - [anon_sym_DASH_GT] = ACTIONS(2649), - [anon_sym_DOT] = ACTIONS(2649), - [anon_sym_do] = ACTIONS(2649), - [anon_sym_fn] = ACTIONS(2649), - [anon_sym_LPAREN2] = ACTIONS(2647), - [anon_sym_LBRACK2] = ACTIONS(2647), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2647), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2647), - [sym__not_in] = ACTIONS(2647), - [sym__quoted_atom_start] = ACTIONS(2647), - }, - [957] = { - [ts_builtin_sym_end] = ACTIONS(2611), - [aux_sym__terminator_token1] = ACTIONS(2611), - [anon_sym_SEMI] = ACTIONS(2613), - [anon_sym_LPAREN] = ACTIONS(2613), - [aux_sym_identifier_token1] = ACTIONS(2613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2613), - [sym_unused_identifier] = ACTIONS(2613), - [anon_sym___MODULE__] = ACTIONS(2613), - [anon_sym___DIR__] = ACTIONS(2613), - [anon_sym___ENV__] = ACTIONS(2613), - [anon_sym___CALLER__] = ACTIONS(2613), - [anon_sym___STACKTRACE__] = ACTIONS(2613), - [sym_alias] = ACTIONS(2613), - [sym_integer] = ACTIONS(2613), - [sym_float] = ACTIONS(2613), - [sym_char] = ACTIONS(2613), - [anon_sym_true] = ACTIONS(2613), - [anon_sym_false] = ACTIONS(2613), - [anon_sym_nil] = ACTIONS(2613), - [sym_atom] = ACTIONS(2613), - [anon_sym_DQUOTE] = ACTIONS(2613), - [anon_sym_SQUOTE] = ACTIONS(2613), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2613), - [anon_sym_LBRACE] = ACTIONS(2613), - [anon_sym_LBRACK] = ACTIONS(2613), - [anon_sym_LT] = ACTIONS(2613), - [anon_sym_GT] = ACTIONS(2613), - [anon_sym_PIPE] = ACTIONS(2613), - [anon_sym_SLASH] = ACTIONS(2613), - [anon_sym_TILDE] = ACTIONS(2613), - [anon_sym_COMMA] = ACTIONS(2613), - [sym_keyword] = ACTIONS(2613), - [anon_sym_LT_LT] = ACTIONS(2613), - [anon_sym_PERCENT] = ACTIONS(2613), - [anon_sym_AMP] = ACTIONS(2613), - [anon_sym_PLUS] = ACTIONS(2613), - [anon_sym_DASH] = ACTIONS(2613), - [anon_sym_BANG] = ACTIONS(2613), - [anon_sym_CARET] = ACTIONS(2613), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(2613), - [anon_sym_AT] = ACTIONS(2613), - [anon_sym_LT_DASH] = ACTIONS(2613), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2613), - [anon_sym_when] = ACTIONS(2613), - [anon_sym_COLON_COLON] = ACTIONS(2613), - [anon_sym_EQ_GT] = ACTIONS(2613), - [anon_sym_EQ] = ACTIONS(2613), - [anon_sym_PIPE_PIPE] = ACTIONS(2613), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2613), - [anon_sym_or] = ACTIONS(2613), - [anon_sym_AMP_AMP] = ACTIONS(2613), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2613), - [anon_sym_and] = ACTIONS(2613), - [anon_sym_EQ_EQ] = ACTIONS(2613), - [anon_sym_BANG_EQ] = ACTIONS(2613), - [anon_sym_EQ_TILDE] = ACTIONS(2613), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2613), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2613), - [anon_sym_LT_EQ] = ACTIONS(2613), - [anon_sym_GT_EQ] = ACTIONS(2613), - [anon_sym_PIPE_GT] = ACTIONS(2613), - [anon_sym_LT_LT_LT] = ACTIONS(2613), - [anon_sym_GT_GT_GT] = ACTIONS(2613), - [anon_sym_LT_LT_TILDE] = ACTIONS(2613), - [anon_sym_TILDE_GT_GT] = ACTIONS(2613), - [anon_sym_LT_TILDE] = ACTIONS(2613), - [anon_sym_TILDE_GT] = ACTIONS(2613), - [anon_sym_LT_TILDE_GT] = ACTIONS(2613), - [anon_sym_LT_PIPE_GT] = ACTIONS(2613), - [anon_sym_in] = ACTIONS(2613), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2613), - [anon_sym_SLASH_SLASH] = ACTIONS(2613), - [anon_sym_PLUS_PLUS] = ACTIONS(2613), - [anon_sym_DASH_DASH] = ACTIONS(2613), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2613), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2613), - [anon_sym_DOT_DOT] = ACTIONS(2613), - [anon_sym_LT_GT] = ACTIONS(2613), - [anon_sym_STAR] = ACTIONS(2613), - [anon_sym_STAR_STAR] = ACTIONS(2613), - [anon_sym_CARET_CARET] = ACTIONS(2613), - [anon_sym_DASH_GT] = ACTIONS(2613), - [anon_sym_DOT] = ACTIONS(2613), - [anon_sym_do] = ACTIONS(2613), - [anon_sym_fn] = ACTIONS(2613), - [anon_sym_LPAREN2] = ACTIONS(2611), - [anon_sym_LBRACK2] = ACTIONS(2611), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2611), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2611), - [sym__not_in] = ACTIONS(2611), - [sym__quoted_atom_start] = ACTIONS(2611), - }, - [958] = { - [aux_sym__terminator_token1] = ACTIONS(2635), - [anon_sym_SEMI] = ACTIONS(2637), - [anon_sym_LPAREN] = ACTIONS(2637), - [anon_sym_RPAREN] = ACTIONS(2637), - [aux_sym_identifier_token1] = ACTIONS(2637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2637), - [sym_unused_identifier] = ACTIONS(2637), - [anon_sym___MODULE__] = ACTIONS(2637), - [anon_sym___DIR__] = ACTIONS(2637), - [anon_sym___ENV__] = ACTIONS(2637), - [anon_sym___CALLER__] = ACTIONS(2637), - [anon_sym___STACKTRACE__] = ACTIONS(2637), - [sym_alias] = ACTIONS(2637), - [sym_integer] = ACTIONS(2637), - [sym_float] = ACTIONS(2637), - [sym_char] = ACTIONS(2637), - [anon_sym_true] = ACTIONS(2637), - [anon_sym_false] = ACTIONS(2637), - [anon_sym_nil] = ACTIONS(2637), - [sym_atom] = ACTIONS(2637), - [anon_sym_DQUOTE] = ACTIONS(2637), - [anon_sym_SQUOTE] = ACTIONS(2637), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2637), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2637), - [anon_sym_LBRACE] = ACTIONS(2637), - [anon_sym_LBRACK] = ACTIONS(2637), - [anon_sym_LT] = ACTIONS(2637), - [anon_sym_GT] = ACTIONS(2637), - [anon_sym_PIPE] = ACTIONS(2637), - [anon_sym_SLASH] = ACTIONS(2637), - [anon_sym_TILDE] = ACTIONS(2637), - [anon_sym_COMMA] = ACTIONS(2637), - [sym_keyword] = ACTIONS(2637), - [anon_sym_LT_LT] = ACTIONS(2637), - [anon_sym_PERCENT] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2637), - [anon_sym_PLUS] = ACTIONS(2637), - [anon_sym_DASH] = ACTIONS(2637), - [anon_sym_BANG] = ACTIONS(2637), - [anon_sym_CARET] = ACTIONS(2637), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2637), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AT] = ACTIONS(2637), - [anon_sym_LT_DASH] = ACTIONS(2637), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2637), - [anon_sym_when] = ACTIONS(2637), - [anon_sym_COLON_COLON] = ACTIONS(2637), - [anon_sym_EQ_GT] = ACTIONS(2637), - [anon_sym_EQ] = ACTIONS(2637), - [anon_sym_PIPE_PIPE] = ACTIONS(2637), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2637), - [anon_sym_or] = ACTIONS(2637), - [anon_sym_AMP_AMP] = ACTIONS(2637), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2637), - [anon_sym_and] = ACTIONS(2637), - [anon_sym_EQ_EQ] = ACTIONS(2637), - [anon_sym_BANG_EQ] = ACTIONS(2637), - [anon_sym_EQ_TILDE] = ACTIONS(2637), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2637), - [anon_sym_LT_EQ] = ACTIONS(2637), - [anon_sym_GT_EQ] = ACTIONS(2637), - [anon_sym_PIPE_GT] = ACTIONS(2637), - [anon_sym_LT_LT_LT] = ACTIONS(2637), - [anon_sym_GT_GT_GT] = ACTIONS(2637), - [anon_sym_LT_LT_TILDE] = ACTIONS(2637), - [anon_sym_TILDE_GT_GT] = ACTIONS(2637), - [anon_sym_LT_TILDE] = ACTIONS(2637), - [anon_sym_TILDE_GT] = ACTIONS(2637), - [anon_sym_LT_TILDE_GT] = ACTIONS(2637), - [anon_sym_LT_PIPE_GT] = ACTIONS(2637), - [anon_sym_in] = ACTIONS(2637), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2637), - [anon_sym_SLASH_SLASH] = ACTIONS(2637), - [anon_sym_PLUS_PLUS] = ACTIONS(2637), - [anon_sym_DASH_DASH] = ACTIONS(2637), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2637), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2637), - [anon_sym_DOT_DOT] = ACTIONS(2637), - [anon_sym_LT_GT] = ACTIONS(2637), - [anon_sym_STAR] = ACTIONS(2637), - [anon_sym_STAR_STAR] = ACTIONS(2637), - [anon_sym_CARET_CARET] = ACTIONS(2637), - [anon_sym_DASH_GT] = ACTIONS(2637), - [anon_sym_DOT] = ACTIONS(2637), - [anon_sym_do] = ACTIONS(2637), - [anon_sym_fn] = ACTIONS(2637), - [anon_sym_LPAREN2] = ACTIONS(2635), - [anon_sym_LBRACK2] = ACTIONS(2635), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2635), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2635), - [sym__not_in] = ACTIONS(2635), - [sym__quoted_atom_start] = ACTIONS(2635), - }, - [959] = { - [ts_builtin_sym_end] = ACTIONS(2611), - [aux_sym__terminator_token1] = ACTIONS(2611), - [anon_sym_SEMI] = ACTIONS(2613), - [anon_sym_LPAREN] = ACTIONS(2613), - [aux_sym_identifier_token1] = ACTIONS(2613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2613), - [sym_unused_identifier] = ACTIONS(2613), - [anon_sym___MODULE__] = ACTIONS(2613), - [anon_sym___DIR__] = ACTIONS(2613), - [anon_sym___ENV__] = ACTIONS(2613), - [anon_sym___CALLER__] = ACTIONS(2613), - [anon_sym___STACKTRACE__] = ACTIONS(2613), - [sym_alias] = ACTIONS(2613), - [sym_integer] = ACTIONS(2613), - [sym_float] = ACTIONS(2613), - [sym_char] = ACTIONS(2613), - [anon_sym_true] = ACTIONS(2613), - [anon_sym_false] = ACTIONS(2613), - [anon_sym_nil] = ACTIONS(2613), - [sym_atom] = ACTIONS(2613), - [anon_sym_DQUOTE] = ACTIONS(2613), - [anon_sym_SQUOTE] = ACTIONS(2613), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2613), - [anon_sym_LBRACE] = ACTIONS(2613), - [anon_sym_LBRACK] = ACTIONS(2613), - [anon_sym_LT] = ACTIONS(2613), - [anon_sym_GT] = ACTIONS(2613), - [anon_sym_PIPE] = ACTIONS(2613), - [anon_sym_SLASH] = ACTIONS(2613), - [anon_sym_TILDE] = ACTIONS(2613), - [anon_sym_COMMA] = ACTIONS(2613), - [sym_keyword] = ACTIONS(2613), - [anon_sym_LT_LT] = ACTIONS(2613), - [anon_sym_PERCENT] = ACTIONS(2613), - [anon_sym_AMP] = ACTIONS(2613), - [anon_sym_PLUS] = ACTIONS(2613), - [anon_sym_DASH] = ACTIONS(2613), - [anon_sym_BANG] = ACTIONS(2613), - [anon_sym_CARET] = ACTIONS(2613), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(2613), - [anon_sym_AT] = ACTIONS(2613), - [anon_sym_LT_DASH] = ACTIONS(2613), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2613), - [anon_sym_when] = ACTIONS(2613), - [anon_sym_COLON_COLON] = ACTIONS(2613), - [anon_sym_EQ_GT] = ACTIONS(2613), - [anon_sym_EQ] = ACTIONS(2613), - [anon_sym_PIPE_PIPE] = ACTIONS(2613), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2613), - [anon_sym_or] = ACTIONS(2613), - [anon_sym_AMP_AMP] = ACTIONS(2613), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2613), - [anon_sym_and] = ACTIONS(2613), - [anon_sym_EQ_EQ] = ACTIONS(2613), - [anon_sym_BANG_EQ] = ACTIONS(2613), - [anon_sym_EQ_TILDE] = ACTIONS(2613), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2613), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2613), - [anon_sym_LT_EQ] = ACTIONS(2613), - [anon_sym_GT_EQ] = ACTIONS(2613), - [anon_sym_PIPE_GT] = ACTIONS(2613), - [anon_sym_LT_LT_LT] = ACTIONS(2613), - [anon_sym_GT_GT_GT] = ACTIONS(2613), - [anon_sym_LT_LT_TILDE] = ACTIONS(2613), - [anon_sym_TILDE_GT_GT] = ACTIONS(2613), - [anon_sym_LT_TILDE] = ACTIONS(2613), - [anon_sym_TILDE_GT] = ACTIONS(2613), - [anon_sym_LT_TILDE_GT] = ACTIONS(2613), - [anon_sym_LT_PIPE_GT] = ACTIONS(2613), - [anon_sym_in] = ACTIONS(2613), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2613), - [anon_sym_SLASH_SLASH] = ACTIONS(2613), - [anon_sym_PLUS_PLUS] = ACTIONS(2613), - [anon_sym_DASH_DASH] = ACTIONS(2613), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2613), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2613), - [anon_sym_DOT_DOT] = ACTIONS(2613), - [anon_sym_LT_GT] = ACTIONS(2613), - [anon_sym_STAR] = ACTIONS(2613), - [anon_sym_STAR_STAR] = ACTIONS(2613), - [anon_sym_CARET_CARET] = ACTIONS(2613), - [anon_sym_DASH_GT] = ACTIONS(2613), - [anon_sym_DOT] = ACTIONS(2613), - [anon_sym_do] = ACTIONS(2613), - [anon_sym_fn] = ACTIONS(2613), - [anon_sym_LPAREN2] = ACTIONS(2611), - [anon_sym_LBRACK2] = ACTIONS(2611), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2611), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2611), - [sym__not_in] = ACTIONS(2611), - [sym__quoted_atom_start] = ACTIONS(2611), - }, - [960] = { - [aux_sym__terminator_token1] = ACTIONS(2631), - [anon_sym_SEMI] = ACTIONS(2633), - [anon_sym_LPAREN] = ACTIONS(2633), - [anon_sym_RPAREN] = ACTIONS(2633), - [aux_sym_identifier_token1] = ACTIONS(2633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2633), - [sym_unused_identifier] = ACTIONS(2633), - [anon_sym___MODULE__] = ACTIONS(2633), - [anon_sym___DIR__] = ACTIONS(2633), - [anon_sym___ENV__] = ACTIONS(2633), - [anon_sym___CALLER__] = ACTIONS(2633), - [anon_sym___STACKTRACE__] = ACTIONS(2633), - [sym_alias] = ACTIONS(2633), - [sym_integer] = ACTIONS(2633), - [sym_float] = ACTIONS(2633), - [sym_char] = ACTIONS(2633), - [anon_sym_true] = ACTIONS(2633), - [anon_sym_false] = ACTIONS(2633), - [anon_sym_nil] = ACTIONS(2633), - [sym_atom] = ACTIONS(2633), - [anon_sym_DQUOTE] = ACTIONS(2633), - [anon_sym_SQUOTE] = ACTIONS(2633), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2633), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2633), - [anon_sym_LBRACE] = ACTIONS(2633), - [anon_sym_LBRACK] = ACTIONS(2633), - [anon_sym_LT] = ACTIONS(2633), - [anon_sym_GT] = ACTIONS(2633), - [anon_sym_PIPE] = ACTIONS(2633), - [anon_sym_SLASH] = ACTIONS(2633), - [anon_sym_TILDE] = ACTIONS(2633), - [anon_sym_COMMA] = ACTIONS(2633), - [sym_keyword] = ACTIONS(2633), - [anon_sym_LT_LT] = ACTIONS(2633), - [anon_sym_PERCENT] = ACTIONS(2633), - [anon_sym_AMP] = ACTIONS(2633), - [anon_sym_PLUS] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2633), - [anon_sym_BANG] = ACTIONS(2633), - [anon_sym_CARET] = ACTIONS(2633), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2633), - [anon_sym_not] = ACTIONS(2633), - [anon_sym_AT] = ACTIONS(2633), - [anon_sym_LT_DASH] = ACTIONS(2633), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2633), - [anon_sym_when] = ACTIONS(2633), - [anon_sym_COLON_COLON] = ACTIONS(2633), - [anon_sym_EQ_GT] = ACTIONS(2633), - [anon_sym_EQ] = ACTIONS(2633), - [anon_sym_PIPE_PIPE] = ACTIONS(2633), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2633), - [anon_sym_or] = ACTIONS(2633), - [anon_sym_AMP_AMP] = ACTIONS(2633), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2633), - [anon_sym_and] = ACTIONS(2633), - [anon_sym_EQ_EQ] = ACTIONS(2633), - [anon_sym_BANG_EQ] = ACTIONS(2633), - [anon_sym_EQ_TILDE] = ACTIONS(2633), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2633), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2633), - [anon_sym_LT_EQ] = ACTIONS(2633), - [anon_sym_GT_EQ] = ACTIONS(2633), - [anon_sym_PIPE_GT] = ACTIONS(2633), - [anon_sym_LT_LT_LT] = ACTIONS(2633), - [anon_sym_GT_GT_GT] = ACTIONS(2633), - [anon_sym_LT_LT_TILDE] = ACTIONS(2633), - [anon_sym_TILDE_GT_GT] = ACTIONS(2633), - [anon_sym_LT_TILDE] = ACTIONS(2633), - [anon_sym_TILDE_GT] = ACTIONS(2633), - [anon_sym_LT_TILDE_GT] = ACTIONS(2633), - [anon_sym_LT_PIPE_GT] = ACTIONS(2633), - [anon_sym_in] = ACTIONS(2633), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2633), - [anon_sym_SLASH_SLASH] = ACTIONS(2633), - [anon_sym_PLUS_PLUS] = ACTIONS(2633), - [anon_sym_DASH_DASH] = ACTIONS(2633), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2633), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2633), - [anon_sym_DOT_DOT] = ACTIONS(2633), - [anon_sym_LT_GT] = ACTIONS(2633), - [anon_sym_STAR] = ACTIONS(2633), - [anon_sym_STAR_STAR] = ACTIONS(2633), - [anon_sym_CARET_CARET] = ACTIONS(2633), - [anon_sym_DASH_GT] = ACTIONS(2633), - [anon_sym_DOT] = ACTIONS(2633), - [anon_sym_do] = ACTIONS(2633), - [anon_sym_fn] = ACTIONS(2633), - [anon_sym_LPAREN2] = ACTIONS(2631), - [anon_sym_LBRACK2] = ACTIONS(2631), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2631), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2631), - [sym__not_in] = ACTIONS(2631), - [sym__quoted_atom_start] = ACTIONS(2631), - }, - [961] = { + [945] = { [aux_sym__terminator_token1] = ACTIONS(2651), [anon_sym_SEMI] = ACTIONS(2653), [anon_sym_LPAREN] = ACTIONS(2653), @@ -145851,7 +144921,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2651), [sym__quoted_atom_start] = ACTIONS(2651), }, - [962] = { + [946] = { + [aux_sym__terminator_token1] = ACTIONS(2635), + [anon_sym_SEMI] = ACTIONS(2637), + [anon_sym_LPAREN] = ACTIONS(2637), + [anon_sym_RPAREN] = ACTIONS(2637), + [aux_sym_identifier_token1] = ACTIONS(2637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2637), + [sym_unused_identifier] = ACTIONS(2637), + [anon_sym___MODULE__] = ACTIONS(2637), + [anon_sym___DIR__] = ACTIONS(2637), + [anon_sym___ENV__] = ACTIONS(2637), + [anon_sym___CALLER__] = ACTIONS(2637), + [anon_sym___STACKTRACE__] = ACTIONS(2637), + [sym_alias] = ACTIONS(2637), + [sym_integer] = ACTIONS(2637), + [sym_float] = ACTIONS(2637), + [sym_char] = ACTIONS(2637), + [anon_sym_true] = ACTIONS(2637), + [anon_sym_false] = ACTIONS(2637), + [anon_sym_nil] = ACTIONS(2637), + [sym_atom] = ACTIONS(2637), + [anon_sym_DQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2637), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2637), + [anon_sym_LBRACE] = ACTIONS(2637), + [anon_sym_LBRACK] = ACTIONS(2637), + [anon_sym_LT] = ACTIONS(2637), + [anon_sym_GT] = ACTIONS(2637), + [anon_sym_PIPE] = ACTIONS(2637), + [anon_sym_SLASH] = ACTIONS(2637), + [anon_sym_TILDE] = ACTIONS(2637), + [anon_sym_COMMA] = ACTIONS(2637), + [sym_keyword] = ACTIONS(2637), + [anon_sym_LT_LT] = ACTIONS(2637), + [anon_sym_PERCENT] = ACTIONS(2637), + [anon_sym_AMP] = ACTIONS(2637), + [anon_sym_PLUS] = ACTIONS(2637), + [anon_sym_DASH] = ACTIONS(2637), + [anon_sym_BANG] = ACTIONS(2637), + [anon_sym_CARET] = ACTIONS(2637), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2637), + [anon_sym_not] = ACTIONS(2637), + [anon_sym_AT] = ACTIONS(2637), + [anon_sym_LT_DASH] = ACTIONS(2637), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2637), + [anon_sym_when] = ACTIONS(2637), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_EQ_GT] = ACTIONS(2637), + [anon_sym_EQ] = ACTIONS(2637), + [anon_sym_PIPE_PIPE] = ACTIONS(2637), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2637), + [anon_sym_or] = ACTIONS(2637), + [anon_sym_AMP_AMP] = ACTIONS(2637), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2637), + [anon_sym_and] = ACTIONS(2637), + [anon_sym_EQ_EQ] = ACTIONS(2637), + [anon_sym_BANG_EQ] = ACTIONS(2637), + [anon_sym_EQ_TILDE] = ACTIONS(2637), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2637), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2637), + [anon_sym_LT_EQ] = ACTIONS(2637), + [anon_sym_GT_EQ] = ACTIONS(2637), + [anon_sym_PIPE_GT] = ACTIONS(2637), + [anon_sym_LT_LT_LT] = ACTIONS(2637), + [anon_sym_GT_GT_GT] = ACTIONS(2637), + [anon_sym_LT_LT_TILDE] = ACTIONS(2637), + [anon_sym_TILDE_GT_GT] = ACTIONS(2637), + [anon_sym_LT_TILDE] = ACTIONS(2637), + [anon_sym_TILDE_GT] = ACTIONS(2637), + [anon_sym_LT_TILDE_GT] = ACTIONS(2637), + [anon_sym_LT_PIPE_GT] = ACTIONS(2637), + [anon_sym_in] = ACTIONS(2637), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2637), + [anon_sym_SLASH_SLASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_DASH_DASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2637), + [anon_sym_DOT_DOT] = ACTIONS(2637), + [anon_sym_LT_GT] = ACTIONS(2637), + [anon_sym_STAR] = ACTIONS(2637), + [anon_sym_STAR_STAR] = ACTIONS(2637), + [anon_sym_CARET_CARET] = ACTIONS(2637), + [anon_sym_DASH_GT] = ACTIONS(2637), + [anon_sym_DOT] = ACTIONS(2637), + [anon_sym_do] = ACTIONS(2637), + [anon_sym_fn] = ACTIONS(2637), + [anon_sym_LPAREN2] = ACTIONS(2635), + [anon_sym_LBRACK2] = ACTIONS(2635), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2635), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2635), + [sym__not_in] = ACTIONS(2635), + [sym__quoted_atom_start] = ACTIONS(2635), + }, + [947] = { + [ts_builtin_sym_end] = ACTIONS(2635), + [aux_sym__terminator_token1] = ACTIONS(2635), + [anon_sym_SEMI] = ACTIONS(2637), + [anon_sym_LPAREN] = ACTIONS(2637), + [aux_sym_identifier_token1] = ACTIONS(2637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2637), + [sym_unused_identifier] = ACTIONS(2637), + [anon_sym___MODULE__] = ACTIONS(2637), + [anon_sym___DIR__] = ACTIONS(2637), + [anon_sym___ENV__] = ACTIONS(2637), + [anon_sym___CALLER__] = ACTIONS(2637), + [anon_sym___STACKTRACE__] = ACTIONS(2637), + [sym_alias] = ACTIONS(2637), + [sym_integer] = ACTIONS(2637), + [sym_float] = ACTIONS(2637), + [sym_char] = ACTIONS(2637), + [anon_sym_true] = ACTIONS(2637), + [anon_sym_false] = ACTIONS(2637), + [anon_sym_nil] = ACTIONS(2637), + [sym_atom] = ACTIONS(2637), + [anon_sym_DQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2637), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2637), + [anon_sym_LBRACE] = ACTIONS(2637), + [anon_sym_LBRACK] = ACTIONS(2637), + [anon_sym_LT] = ACTIONS(2637), + [anon_sym_GT] = ACTIONS(2637), + [anon_sym_PIPE] = ACTIONS(2637), + [anon_sym_SLASH] = ACTIONS(2637), + [anon_sym_TILDE] = ACTIONS(2637), + [anon_sym_COMMA] = ACTIONS(2637), + [sym_keyword] = ACTIONS(2637), + [anon_sym_LT_LT] = ACTIONS(2637), + [anon_sym_PERCENT] = ACTIONS(2637), + [anon_sym_AMP] = ACTIONS(2637), + [anon_sym_PLUS] = ACTIONS(2637), + [anon_sym_DASH] = ACTIONS(2637), + [anon_sym_BANG] = ACTIONS(2637), + [anon_sym_CARET] = ACTIONS(2637), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2637), + [anon_sym_not] = ACTIONS(2637), + [anon_sym_AT] = ACTIONS(2637), + [anon_sym_LT_DASH] = ACTIONS(2637), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2637), + [anon_sym_when] = ACTIONS(2637), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_EQ_GT] = ACTIONS(2637), + [anon_sym_EQ] = ACTIONS(2637), + [anon_sym_PIPE_PIPE] = ACTIONS(2637), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2637), + [anon_sym_or] = ACTIONS(2637), + [anon_sym_AMP_AMP] = ACTIONS(2637), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2637), + [anon_sym_and] = ACTIONS(2637), + [anon_sym_EQ_EQ] = ACTIONS(2637), + [anon_sym_BANG_EQ] = ACTIONS(2637), + [anon_sym_EQ_TILDE] = ACTIONS(2637), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2637), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2637), + [anon_sym_LT_EQ] = ACTIONS(2637), + [anon_sym_GT_EQ] = ACTIONS(2637), + [anon_sym_PIPE_GT] = ACTIONS(2637), + [anon_sym_LT_LT_LT] = ACTIONS(2637), + [anon_sym_GT_GT_GT] = ACTIONS(2637), + [anon_sym_LT_LT_TILDE] = ACTIONS(2637), + [anon_sym_TILDE_GT_GT] = ACTIONS(2637), + [anon_sym_LT_TILDE] = ACTIONS(2637), + [anon_sym_TILDE_GT] = ACTIONS(2637), + [anon_sym_LT_TILDE_GT] = ACTIONS(2637), + [anon_sym_LT_PIPE_GT] = ACTIONS(2637), + [anon_sym_in] = ACTIONS(2637), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2637), + [anon_sym_SLASH_SLASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_DASH_DASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2637), + [anon_sym_DOT_DOT] = ACTIONS(2637), + [anon_sym_LT_GT] = ACTIONS(2637), + [anon_sym_STAR] = ACTIONS(2637), + [anon_sym_STAR_STAR] = ACTIONS(2637), + [anon_sym_CARET_CARET] = ACTIONS(2637), + [anon_sym_DASH_GT] = ACTIONS(2637), + [anon_sym_DOT] = ACTIONS(2637), + [anon_sym_do] = ACTIONS(2637), + [anon_sym_fn] = ACTIONS(2637), + [anon_sym_LPAREN2] = ACTIONS(2635), + [anon_sym_LBRACK2] = ACTIONS(2635), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2635), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2635), + [sym__not_in] = ACTIONS(2635), + [sym__quoted_atom_start] = ACTIONS(2635), + }, + [948] = { [ts_builtin_sym_end] = ACTIONS(2643), [aux_sym__terminator_token1] = ACTIONS(2643), [anon_sym_SEMI] = ACTIONS(2645), @@ -145949,399 +145215,301 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2643), [sym__quoted_atom_start] = ACTIONS(2643), }, - [963] = { - [aux_sym__terminator_token1] = ACTIONS(2647), - [anon_sym_SEMI] = ACTIONS(2649), - [anon_sym_LPAREN] = ACTIONS(2649), - [anon_sym_RPAREN] = ACTIONS(2649), - [aux_sym_identifier_token1] = ACTIONS(2649), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2649), - [sym_unused_identifier] = ACTIONS(2649), - [anon_sym___MODULE__] = ACTIONS(2649), - [anon_sym___DIR__] = ACTIONS(2649), - [anon_sym___ENV__] = ACTIONS(2649), - [anon_sym___CALLER__] = ACTIONS(2649), - [anon_sym___STACKTRACE__] = ACTIONS(2649), - [sym_alias] = ACTIONS(2649), - [sym_integer] = ACTIONS(2649), - [sym_float] = ACTIONS(2649), - [sym_char] = ACTIONS(2649), - [anon_sym_true] = ACTIONS(2649), - [anon_sym_false] = ACTIONS(2649), - [anon_sym_nil] = ACTIONS(2649), - [sym_atom] = ACTIONS(2649), - [anon_sym_DQUOTE] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2649), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2649), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2649), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_GT] = ACTIONS(2649), - [anon_sym_PIPE] = ACTIONS(2649), - [anon_sym_SLASH] = ACTIONS(2649), - [anon_sym_TILDE] = ACTIONS(2649), - [anon_sym_COMMA] = ACTIONS(2649), - [sym_keyword] = ACTIONS(2649), - [anon_sym_LT_LT] = ACTIONS(2649), - [anon_sym_PERCENT] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2649), - [anon_sym_PLUS] = ACTIONS(2649), - [anon_sym_DASH] = ACTIONS(2649), - [anon_sym_BANG] = ACTIONS(2649), - [anon_sym_CARET] = ACTIONS(2649), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2649), - [anon_sym_not] = ACTIONS(2649), - [anon_sym_AT] = ACTIONS(2649), - [anon_sym_LT_DASH] = ACTIONS(2649), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2649), - [anon_sym_when] = ACTIONS(2649), - [anon_sym_COLON_COLON] = ACTIONS(2649), - [anon_sym_EQ_GT] = ACTIONS(2649), - [anon_sym_EQ] = ACTIONS(2649), - [anon_sym_PIPE_PIPE] = ACTIONS(2649), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2649), - [anon_sym_or] = ACTIONS(2649), - [anon_sym_AMP_AMP] = ACTIONS(2649), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2649), - [anon_sym_and] = ACTIONS(2649), - [anon_sym_EQ_EQ] = ACTIONS(2649), - [anon_sym_BANG_EQ] = ACTIONS(2649), - [anon_sym_EQ_TILDE] = ACTIONS(2649), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2649), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2649), - [anon_sym_LT_EQ] = ACTIONS(2649), - [anon_sym_GT_EQ] = ACTIONS(2649), - [anon_sym_PIPE_GT] = ACTIONS(2649), - [anon_sym_LT_LT_LT] = ACTIONS(2649), - [anon_sym_GT_GT_GT] = ACTIONS(2649), - [anon_sym_LT_LT_TILDE] = ACTIONS(2649), - [anon_sym_TILDE_GT_GT] = ACTIONS(2649), - [anon_sym_LT_TILDE] = ACTIONS(2649), - [anon_sym_TILDE_GT] = ACTIONS(2649), - [anon_sym_LT_TILDE_GT] = ACTIONS(2649), - [anon_sym_LT_PIPE_GT] = ACTIONS(2649), - [anon_sym_in] = ACTIONS(2649), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2649), - [anon_sym_SLASH_SLASH] = ACTIONS(2649), - [anon_sym_PLUS_PLUS] = ACTIONS(2649), - [anon_sym_DASH_DASH] = ACTIONS(2649), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2649), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2649), - [anon_sym_DOT_DOT] = ACTIONS(2649), - [anon_sym_LT_GT] = ACTIONS(2649), - [anon_sym_STAR] = ACTIONS(2649), - [anon_sym_STAR_STAR] = ACTIONS(2649), - [anon_sym_CARET_CARET] = ACTIONS(2649), - [anon_sym_DASH_GT] = ACTIONS(2649), - [anon_sym_DOT] = ACTIONS(2649), - [anon_sym_do] = ACTIONS(2649), - [anon_sym_fn] = ACTIONS(2649), - [anon_sym_LPAREN2] = ACTIONS(2647), - [anon_sym_LBRACK2] = ACTIONS(2647), + [949] = { + [ts_builtin_sym_end] = ACTIONS(2643), + [aux_sym__terminator_token1] = ACTIONS(2643), + [anon_sym_SEMI] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(2645), + [aux_sym_identifier_token1] = ACTIONS(2645), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2645), + [sym_unused_identifier] = ACTIONS(2645), + [anon_sym___MODULE__] = ACTIONS(2645), + [anon_sym___DIR__] = ACTIONS(2645), + [anon_sym___ENV__] = ACTIONS(2645), + [anon_sym___CALLER__] = ACTIONS(2645), + [anon_sym___STACKTRACE__] = ACTIONS(2645), + [sym_alias] = ACTIONS(2645), + [sym_integer] = ACTIONS(2645), + [sym_float] = ACTIONS(2645), + [sym_char] = ACTIONS(2645), + [anon_sym_true] = ACTIONS(2645), + [anon_sym_false] = ACTIONS(2645), + [anon_sym_nil] = ACTIONS(2645), + [sym_atom] = ACTIONS(2645), + [anon_sym_DQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2645), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2645), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_LBRACK] = ACTIONS(2645), + [anon_sym_LT] = ACTIONS(2645), + [anon_sym_GT] = ACTIONS(2645), + [anon_sym_PIPE] = ACTIONS(2645), + [anon_sym_SLASH] = ACTIONS(2645), + [anon_sym_TILDE] = ACTIONS(2645), + [anon_sym_COMMA] = ACTIONS(2645), + [sym_keyword] = ACTIONS(2645), + [anon_sym_LT_LT] = ACTIONS(2645), + [anon_sym_PERCENT] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2645), + [anon_sym_PLUS] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2645), + [anon_sym_BANG] = ACTIONS(2645), + [anon_sym_CARET] = ACTIONS(2645), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2645), + [anon_sym_not] = ACTIONS(2645), + [anon_sym_AT] = ACTIONS(2645), + [anon_sym_LT_DASH] = ACTIONS(2645), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2645), + [anon_sym_when] = ACTIONS(2645), + [anon_sym_COLON_COLON] = ACTIONS(2645), + [anon_sym_EQ_GT] = ACTIONS(2645), + [anon_sym_EQ] = ACTIONS(2645), + [anon_sym_PIPE_PIPE] = ACTIONS(2645), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2645), + [anon_sym_or] = ACTIONS(2645), + [anon_sym_AMP_AMP] = ACTIONS(2645), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2645), + [anon_sym_and] = ACTIONS(2645), + [anon_sym_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ] = ACTIONS(2645), + [anon_sym_EQ_TILDE] = ACTIONS(2645), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2645), + [anon_sym_LT_EQ] = ACTIONS(2645), + [anon_sym_GT_EQ] = ACTIONS(2645), + [anon_sym_PIPE_GT] = ACTIONS(2645), + [anon_sym_LT_LT_LT] = ACTIONS(2645), + [anon_sym_GT_GT_GT] = ACTIONS(2645), + [anon_sym_LT_LT_TILDE] = ACTIONS(2645), + [anon_sym_TILDE_GT_GT] = ACTIONS(2645), + [anon_sym_LT_TILDE] = ACTIONS(2645), + [anon_sym_TILDE_GT] = ACTIONS(2645), + [anon_sym_LT_TILDE_GT] = ACTIONS(2645), + [anon_sym_LT_PIPE_GT] = ACTIONS(2645), + [anon_sym_in] = ACTIONS(2645), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2645), + [anon_sym_SLASH_SLASH] = ACTIONS(2645), + [anon_sym_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_DASH_DASH] = ACTIONS(2645), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2645), + [anon_sym_DOT_DOT] = ACTIONS(2645), + [anon_sym_LT_GT] = ACTIONS(2645), + [anon_sym_STAR] = ACTIONS(2645), + [anon_sym_STAR_STAR] = ACTIONS(2645), + [anon_sym_CARET_CARET] = ACTIONS(2645), + [anon_sym_DASH_GT] = ACTIONS(2645), + [anon_sym_DOT] = ACTIONS(2645), + [anon_sym_do] = ACTIONS(2645), + [anon_sym_fn] = ACTIONS(2645), + [anon_sym_LPAREN2] = ACTIONS(2643), + [anon_sym_LBRACK2] = ACTIONS(2643), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2647), + [sym__newline_before_do] = ACTIONS(2643), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2647), - [sym__not_in] = ACTIONS(2647), - [sym__quoted_atom_start] = ACTIONS(2647), + [sym__before_unary_op] = ACTIONS(2643), + [sym__not_in] = ACTIONS(2643), + [sym__quoted_atom_start] = ACTIONS(2643), }, - [964] = { - [aux_sym__terminator_token1] = ACTIONS(2631), - [anon_sym_SEMI] = ACTIONS(2633), - [anon_sym_LPAREN] = ACTIONS(2633), - [aux_sym_identifier_token1] = ACTIONS(2633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2633), - [sym_unused_identifier] = ACTIONS(2633), - [anon_sym___MODULE__] = ACTIONS(2633), - [anon_sym___DIR__] = ACTIONS(2633), - [anon_sym___ENV__] = ACTIONS(2633), - [anon_sym___CALLER__] = ACTIONS(2633), - [anon_sym___STACKTRACE__] = ACTIONS(2633), - [sym_alias] = ACTIONS(2633), - [sym_integer] = ACTIONS(2633), - [sym_float] = ACTIONS(2633), - [sym_char] = ACTIONS(2633), - [anon_sym_true] = ACTIONS(2633), - [anon_sym_false] = ACTIONS(2633), - [anon_sym_nil] = ACTIONS(2633), - [sym_atom] = ACTIONS(2633), - [anon_sym_DQUOTE] = ACTIONS(2633), - [anon_sym_SQUOTE] = ACTIONS(2633), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2633), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2633), - [anon_sym_LBRACE] = ACTIONS(2633), - [anon_sym_LBRACK] = ACTIONS(2633), - [anon_sym_LT] = ACTIONS(2633), - [anon_sym_GT] = ACTIONS(2633), - [anon_sym_PIPE] = ACTIONS(2633), - [anon_sym_SLASH] = ACTIONS(2633), - [anon_sym_TILDE] = ACTIONS(2633), - [anon_sym_COMMA] = ACTIONS(2633), - [sym_keyword] = ACTIONS(2633), - [anon_sym_LT_LT] = ACTIONS(2633), - [anon_sym_PERCENT] = ACTIONS(2633), - [anon_sym_AMP] = ACTIONS(2633), - [anon_sym_PLUS] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2633), - [anon_sym_BANG] = ACTIONS(2633), - [anon_sym_CARET] = ACTIONS(2633), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2633), - [anon_sym_not] = ACTIONS(2633), - [anon_sym_AT] = ACTIONS(2633), - [anon_sym_LT_DASH] = ACTIONS(2633), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2633), - [anon_sym_when] = ACTIONS(2633), - [anon_sym_COLON_COLON] = ACTIONS(2633), - [anon_sym_EQ_GT] = ACTIONS(2633), - [anon_sym_EQ] = ACTIONS(2633), - [anon_sym_PIPE_PIPE] = ACTIONS(2633), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2633), - [anon_sym_or] = ACTIONS(2633), - [anon_sym_AMP_AMP] = ACTIONS(2633), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2633), - [anon_sym_and] = ACTIONS(2633), - [anon_sym_EQ_EQ] = ACTIONS(2633), - [anon_sym_BANG_EQ] = ACTIONS(2633), - [anon_sym_EQ_TILDE] = ACTIONS(2633), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2633), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2633), - [anon_sym_LT_EQ] = ACTIONS(2633), - [anon_sym_GT_EQ] = ACTIONS(2633), - [anon_sym_PIPE_GT] = ACTIONS(2633), - [anon_sym_LT_LT_LT] = ACTIONS(2633), - [anon_sym_GT_GT_GT] = ACTIONS(2633), - [anon_sym_LT_LT_TILDE] = ACTIONS(2633), - [anon_sym_TILDE_GT_GT] = ACTIONS(2633), - [anon_sym_LT_TILDE] = ACTIONS(2633), - [anon_sym_TILDE_GT] = ACTIONS(2633), - [anon_sym_LT_TILDE_GT] = ACTIONS(2633), - [anon_sym_LT_PIPE_GT] = ACTIONS(2633), - [anon_sym_in] = ACTIONS(2633), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2633), - [anon_sym_SLASH_SLASH] = ACTIONS(2633), - [anon_sym_PLUS_PLUS] = ACTIONS(2633), - [anon_sym_DASH_DASH] = ACTIONS(2633), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2633), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2633), - [anon_sym_DOT_DOT] = ACTIONS(2633), - [anon_sym_LT_GT] = ACTIONS(2633), - [anon_sym_STAR] = ACTIONS(2633), - [anon_sym_STAR_STAR] = ACTIONS(2633), - [anon_sym_CARET_CARET] = ACTIONS(2633), - [anon_sym_DASH_GT] = ACTIONS(2633), - [anon_sym_DOT] = ACTIONS(2633), - [anon_sym_do] = ACTIONS(2633), - [anon_sym_end] = ACTIONS(2633), - [anon_sym_fn] = ACTIONS(2633), - [anon_sym_LPAREN2] = ACTIONS(2631), - [anon_sym_LBRACK2] = ACTIONS(2631), + [950] = { + [ts_builtin_sym_end] = ACTIONS(2635), + [aux_sym__terminator_token1] = ACTIONS(2635), + [anon_sym_SEMI] = ACTIONS(2637), + [anon_sym_LPAREN] = ACTIONS(2637), + [aux_sym_identifier_token1] = ACTIONS(2637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2637), + [sym_unused_identifier] = ACTIONS(2637), + [anon_sym___MODULE__] = ACTIONS(2637), + [anon_sym___DIR__] = ACTIONS(2637), + [anon_sym___ENV__] = ACTIONS(2637), + [anon_sym___CALLER__] = ACTIONS(2637), + [anon_sym___STACKTRACE__] = ACTIONS(2637), + [sym_alias] = ACTIONS(2637), + [sym_integer] = ACTIONS(2637), + [sym_float] = ACTIONS(2637), + [sym_char] = ACTIONS(2637), + [anon_sym_true] = ACTIONS(2637), + [anon_sym_false] = ACTIONS(2637), + [anon_sym_nil] = ACTIONS(2637), + [sym_atom] = ACTIONS(2637), + [anon_sym_DQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2637), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2637), + [anon_sym_LBRACE] = ACTIONS(2637), + [anon_sym_LBRACK] = ACTIONS(2637), + [anon_sym_LT] = ACTIONS(2637), + [anon_sym_GT] = ACTIONS(2637), + [anon_sym_PIPE] = ACTIONS(2637), + [anon_sym_SLASH] = ACTIONS(2637), + [anon_sym_TILDE] = ACTIONS(2637), + [anon_sym_COMMA] = ACTIONS(2637), + [sym_keyword] = ACTIONS(2637), + [anon_sym_LT_LT] = ACTIONS(2637), + [anon_sym_PERCENT] = ACTIONS(2637), + [anon_sym_AMP] = ACTIONS(2637), + [anon_sym_PLUS] = ACTIONS(2637), + [anon_sym_DASH] = ACTIONS(2637), + [anon_sym_BANG] = ACTIONS(2637), + [anon_sym_CARET] = ACTIONS(2637), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2637), + [anon_sym_not] = ACTIONS(2637), + [anon_sym_AT] = ACTIONS(2637), + [anon_sym_LT_DASH] = ACTIONS(2637), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2637), + [anon_sym_when] = ACTIONS(2637), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_EQ_GT] = ACTIONS(2637), + [anon_sym_EQ] = ACTIONS(2637), + [anon_sym_PIPE_PIPE] = ACTIONS(2637), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2637), + [anon_sym_or] = ACTIONS(2637), + [anon_sym_AMP_AMP] = ACTIONS(2637), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2637), + [anon_sym_and] = ACTIONS(2637), + [anon_sym_EQ_EQ] = ACTIONS(2637), + [anon_sym_BANG_EQ] = ACTIONS(2637), + [anon_sym_EQ_TILDE] = ACTIONS(2637), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2637), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2637), + [anon_sym_LT_EQ] = ACTIONS(2637), + [anon_sym_GT_EQ] = ACTIONS(2637), + [anon_sym_PIPE_GT] = ACTIONS(2637), + [anon_sym_LT_LT_LT] = ACTIONS(2637), + [anon_sym_GT_GT_GT] = ACTIONS(2637), + [anon_sym_LT_LT_TILDE] = ACTIONS(2637), + [anon_sym_TILDE_GT_GT] = ACTIONS(2637), + [anon_sym_LT_TILDE] = ACTIONS(2637), + [anon_sym_TILDE_GT] = ACTIONS(2637), + [anon_sym_LT_TILDE_GT] = ACTIONS(2637), + [anon_sym_LT_PIPE_GT] = ACTIONS(2637), + [anon_sym_in] = ACTIONS(2637), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2637), + [anon_sym_SLASH_SLASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_DASH_DASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2637), + [anon_sym_DOT_DOT] = ACTIONS(2637), + [anon_sym_LT_GT] = ACTIONS(2637), + [anon_sym_STAR] = ACTIONS(2637), + [anon_sym_STAR_STAR] = ACTIONS(2637), + [anon_sym_CARET_CARET] = ACTIONS(2637), + [anon_sym_DASH_GT] = ACTIONS(2637), + [anon_sym_DOT] = ACTIONS(2637), + [anon_sym_do] = ACTIONS(2637), + [anon_sym_fn] = ACTIONS(2637), + [anon_sym_LPAREN2] = ACTIONS(2635), + [anon_sym_LBRACK2] = ACTIONS(2635), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2631), + [sym__newline_before_do] = ACTIONS(2635), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2631), - [sym__not_in] = ACTIONS(2631), - [sym__quoted_atom_start] = ACTIONS(2631), + [sym__before_unary_op] = ACTIONS(2635), + [sym__not_in] = ACTIONS(2635), + [sym__quoted_atom_start] = ACTIONS(2635), }, - [965] = { - [aux_sym__terminator_token1] = ACTIONS(2619), - [anon_sym_SEMI] = ACTIONS(2621), - [anon_sym_LPAREN] = ACTIONS(2621), - [anon_sym_RPAREN] = ACTIONS(2621), - [aux_sym_identifier_token1] = ACTIONS(2621), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2621), - [sym_unused_identifier] = ACTIONS(2621), - [anon_sym___MODULE__] = ACTIONS(2621), - [anon_sym___DIR__] = ACTIONS(2621), - [anon_sym___ENV__] = ACTIONS(2621), - [anon_sym___CALLER__] = ACTIONS(2621), - [anon_sym___STACKTRACE__] = ACTIONS(2621), - [sym_alias] = ACTIONS(2621), - [sym_integer] = ACTIONS(2621), - [sym_float] = ACTIONS(2621), - [sym_char] = ACTIONS(2621), - [anon_sym_true] = ACTIONS(2621), - [anon_sym_false] = ACTIONS(2621), - [anon_sym_nil] = ACTIONS(2621), - [sym_atom] = ACTIONS(2621), - [anon_sym_DQUOTE] = ACTIONS(2621), - [anon_sym_SQUOTE] = ACTIONS(2621), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2621), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), - [anon_sym_LBRACE] = ACTIONS(2621), - [anon_sym_LBRACK] = ACTIONS(2621), - [anon_sym_LT] = ACTIONS(2621), - [anon_sym_GT] = ACTIONS(2621), - [anon_sym_PIPE] = ACTIONS(2621), - [anon_sym_SLASH] = ACTIONS(2621), - [anon_sym_TILDE] = ACTIONS(2621), - [anon_sym_COMMA] = ACTIONS(2621), - [sym_keyword] = ACTIONS(2621), - [anon_sym_LT_LT] = ACTIONS(2621), - [anon_sym_PERCENT] = ACTIONS(2621), - [anon_sym_AMP] = ACTIONS(2621), - [anon_sym_PLUS] = ACTIONS(2621), - [anon_sym_DASH] = ACTIONS(2621), - [anon_sym_BANG] = ACTIONS(2621), - [anon_sym_CARET] = ACTIONS(2621), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2621), - [anon_sym_not] = ACTIONS(2621), - [anon_sym_AT] = ACTIONS(2621), - [anon_sym_LT_DASH] = ACTIONS(2621), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2621), - [anon_sym_when] = ACTIONS(2621), - [anon_sym_COLON_COLON] = ACTIONS(2621), - [anon_sym_EQ_GT] = ACTIONS(2621), - [anon_sym_EQ] = ACTIONS(2621), - [anon_sym_PIPE_PIPE] = ACTIONS(2621), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2621), - [anon_sym_or] = ACTIONS(2621), - [anon_sym_AMP_AMP] = ACTIONS(2621), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2621), - [anon_sym_and] = ACTIONS(2621), - [anon_sym_EQ_EQ] = ACTIONS(2621), - [anon_sym_BANG_EQ] = ACTIONS(2621), - [anon_sym_EQ_TILDE] = ACTIONS(2621), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2621), - [anon_sym_LT_EQ] = ACTIONS(2621), - [anon_sym_GT_EQ] = ACTIONS(2621), - [anon_sym_PIPE_GT] = ACTIONS(2621), - [anon_sym_LT_LT_LT] = ACTIONS(2621), - [anon_sym_GT_GT_GT] = ACTIONS(2621), - [anon_sym_LT_LT_TILDE] = ACTIONS(2621), - [anon_sym_TILDE_GT_GT] = ACTIONS(2621), - [anon_sym_LT_TILDE] = ACTIONS(2621), - [anon_sym_TILDE_GT] = ACTIONS(2621), - [anon_sym_LT_TILDE_GT] = ACTIONS(2621), - [anon_sym_LT_PIPE_GT] = ACTIONS(2621), - [anon_sym_in] = ACTIONS(2621), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2621), - [anon_sym_SLASH_SLASH] = ACTIONS(2621), - [anon_sym_PLUS_PLUS] = ACTIONS(2621), - [anon_sym_DASH_DASH] = ACTIONS(2621), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2621), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2621), - [anon_sym_DOT_DOT] = ACTIONS(2621), - [anon_sym_LT_GT] = ACTIONS(2621), - [anon_sym_STAR] = ACTIONS(2621), - [anon_sym_STAR_STAR] = ACTIONS(2621), - [anon_sym_CARET_CARET] = ACTIONS(2621), - [anon_sym_DASH_GT] = ACTIONS(2621), - [anon_sym_DOT] = ACTIONS(2621), - [anon_sym_do] = ACTIONS(2621), - [anon_sym_fn] = ACTIONS(2621), - [anon_sym_LPAREN2] = ACTIONS(2619), - [anon_sym_LBRACK2] = ACTIONS(2619), + [951] = { + [ts_builtin_sym_end] = ACTIONS(2643), + [aux_sym__terminator_token1] = ACTIONS(2643), + [anon_sym_SEMI] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(2645), + [aux_sym_identifier_token1] = ACTIONS(2645), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2645), + [sym_unused_identifier] = ACTIONS(2645), + [anon_sym___MODULE__] = ACTIONS(2645), + [anon_sym___DIR__] = ACTIONS(2645), + [anon_sym___ENV__] = ACTIONS(2645), + [anon_sym___CALLER__] = ACTIONS(2645), + [anon_sym___STACKTRACE__] = ACTIONS(2645), + [sym_alias] = ACTIONS(2645), + [sym_integer] = ACTIONS(2645), + [sym_float] = ACTIONS(2645), + [sym_char] = ACTIONS(2645), + [anon_sym_true] = ACTIONS(2645), + [anon_sym_false] = ACTIONS(2645), + [anon_sym_nil] = ACTIONS(2645), + [sym_atom] = ACTIONS(2645), + [anon_sym_DQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2645), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2645), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_LBRACK] = ACTIONS(2645), + [anon_sym_LT] = ACTIONS(2645), + [anon_sym_GT] = ACTIONS(2645), + [anon_sym_PIPE] = ACTIONS(2645), + [anon_sym_SLASH] = ACTIONS(2645), + [anon_sym_TILDE] = ACTIONS(2645), + [anon_sym_COMMA] = ACTIONS(2645), + [sym_keyword] = ACTIONS(2645), + [anon_sym_LT_LT] = ACTIONS(2645), + [anon_sym_PERCENT] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2645), + [anon_sym_PLUS] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2645), + [anon_sym_BANG] = ACTIONS(2645), + [anon_sym_CARET] = ACTIONS(2645), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2645), + [anon_sym_not] = ACTIONS(2645), + [anon_sym_AT] = ACTIONS(2645), + [anon_sym_LT_DASH] = ACTIONS(2645), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2645), + [anon_sym_when] = ACTIONS(2645), + [anon_sym_COLON_COLON] = ACTIONS(2645), + [anon_sym_EQ_GT] = ACTIONS(2645), + [anon_sym_EQ] = ACTIONS(2645), + [anon_sym_PIPE_PIPE] = ACTIONS(2645), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2645), + [anon_sym_or] = ACTIONS(2645), + [anon_sym_AMP_AMP] = ACTIONS(2645), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2645), + [anon_sym_and] = ACTIONS(2645), + [anon_sym_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ] = ACTIONS(2645), + [anon_sym_EQ_TILDE] = ACTIONS(2645), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2645), + [anon_sym_LT_EQ] = ACTIONS(2645), + [anon_sym_GT_EQ] = ACTIONS(2645), + [anon_sym_PIPE_GT] = ACTIONS(2645), + [anon_sym_LT_LT_LT] = ACTIONS(2645), + [anon_sym_GT_GT_GT] = ACTIONS(2645), + [anon_sym_LT_LT_TILDE] = ACTIONS(2645), + [anon_sym_TILDE_GT_GT] = ACTIONS(2645), + [anon_sym_LT_TILDE] = ACTIONS(2645), + [anon_sym_TILDE_GT] = ACTIONS(2645), + [anon_sym_LT_TILDE_GT] = ACTIONS(2645), + [anon_sym_LT_PIPE_GT] = ACTIONS(2645), + [anon_sym_in] = ACTIONS(2645), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2645), + [anon_sym_SLASH_SLASH] = ACTIONS(2645), + [anon_sym_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_DASH_DASH] = ACTIONS(2645), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2645), + [anon_sym_DOT_DOT] = ACTIONS(2645), + [anon_sym_LT_GT] = ACTIONS(2645), + [anon_sym_STAR] = ACTIONS(2645), + [anon_sym_STAR_STAR] = ACTIONS(2645), + [anon_sym_CARET_CARET] = ACTIONS(2645), + [anon_sym_DASH_GT] = ACTIONS(2645), + [anon_sym_DOT] = ACTIONS(2645), + [anon_sym_do] = ACTIONS(2645), + [anon_sym_fn] = ACTIONS(2645), + [anon_sym_LPAREN2] = ACTIONS(2643), + [anon_sym_LBRACK2] = ACTIONS(2643), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2619), + [sym__newline_before_do] = ACTIONS(2643), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2619), - [sym__not_in] = ACTIONS(2619), - [sym__quoted_atom_start] = ACTIONS(2619), + [sym__before_unary_op] = ACTIONS(2643), + [sym__not_in] = ACTIONS(2643), + [sym__quoted_atom_start] = ACTIONS(2643), }, - [966] = { - [aux_sym__terminator_token1] = ACTIONS(2619), - [anon_sym_SEMI] = ACTIONS(2621), - [anon_sym_LPAREN] = ACTIONS(2621), - [aux_sym_identifier_token1] = ACTIONS(2621), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2621), - [sym_unused_identifier] = ACTIONS(2621), - [anon_sym___MODULE__] = ACTIONS(2621), - [anon_sym___DIR__] = ACTIONS(2621), - [anon_sym___ENV__] = ACTIONS(2621), - [anon_sym___CALLER__] = ACTIONS(2621), - [anon_sym___STACKTRACE__] = ACTIONS(2621), - [sym_alias] = ACTIONS(2621), - [sym_integer] = ACTIONS(2621), - [sym_float] = ACTIONS(2621), - [sym_char] = ACTIONS(2621), - [anon_sym_true] = ACTIONS(2621), - [anon_sym_false] = ACTIONS(2621), - [anon_sym_nil] = ACTIONS(2621), - [sym_atom] = ACTIONS(2621), - [anon_sym_DQUOTE] = ACTIONS(2621), - [anon_sym_SQUOTE] = ACTIONS(2621), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2621), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), - [anon_sym_LBRACE] = ACTIONS(2621), - [anon_sym_LBRACK] = ACTIONS(2621), - [anon_sym_LT] = ACTIONS(2621), - [anon_sym_GT] = ACTIONS(2621), - [anon_sym_PIPE] = ACTIONS(2621), - [anon_sym_SLASH] = ACTIONS(2621), - [anon_sym_TILDE] = ACTIONS(2621), - [anon_sym_COMMA] = ACTIONS(2621), - [sym_keyword] = ACTIONS(2621), - [anon_sym_LT_LT] = ACTIONS(2621), - [anon_sym_PERCENT] = ACTIONS(2621), - [anon_sym_AMP] = ACTIONS(2621), - [anon_sym_PLUS] = ACTIONS(2621), - [anon_sym_DASH] = ACTIONS(2621), - [anon_sym_BANG] = ACTIONS(2621), - [anon_sym_CARET] = ACTIONS(2621), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2621), - [anon_sym_not] = ACTIONS(2621), - [anon_sym_AT] = ACTIONS(2621), - [anon_sym_LT_DASH] = ACTIONS(2621), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2621), - [anon_sym_when] = ACTIONS(2621), - [anon_sym_COLON_COLON] = ACTIONS(2621), - [anon_sym_EQ_GT] = ACTIONS(2621), - [anon_sym_EQ] = ACTIONS(2621), - [anon_sym_PIPE_PIPE] = ACTIONS(2621), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2621), - [anon_sym_or] = ACTIONS(2621), - [anon_sym_AMP_AMP] = ACTIONS(2621), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2621), - [anon_sym_and] = ACTIONS(2621), - [anon_sym_EQ_EQ] = ACTIONS(2621), - [anon_sym_BANG_EQ] = ACTIONS(2621), - [anon_sym_EQ_TILDE] = ACTIONS(2621), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2621), - [anon_sym_LT_EQ] = ACTIONS(2621), - [anon_sym_GT_EQ] = ACTIONS(2621), - [anon_sym_PIPE_GT] = ACTIONS(2621), - [anon_sym_LT_LT_LT] = ACTIONS(2621), - [anon_sym_GT_GT_GT] = ACTIONS(2621), - [anon_sym_LT_LT_TILDE] = ACTIONS(2621), - [anon_sym_TILDE_GT_GT] = ACTIONS(2621), - [anon_sym_LT_TILDE] = ACTIONS(2621), - [anon_sym_TILDE_GT] = ACTIONS(2621), - [anon_sym_LT_TILDE_GT] = ACTIONS(2621), - [anon_sym_LT_PIPE_GT] = ACTIONS(2621), - [anon_sym_in] = ACTIONS(2621), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2621), - [anon_sym_SLASH_SLASH] = ACTIONS(2621), - [anon_sym_PLUS_PLUS] = ACTIONS(2621), - [anon_sym_DASH_DASH] = ACTIONS(2621), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2621), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2621), - [anon_sym_DOT_DOT] = ACTIONS(2621), - [anon_sym_LT_GT] = ACTIONS(2621), - [anon_sym_STAR] = ACTIONS(2621), - [anon_sym_STAR_STAR] = ACTIONS(2621), - [anon_sym_CARET_CARET] = ACTIONS(2621), - [anon_sym_DASH_GT] = ACTIONS(2621), - [anon_sym_DOT] = ACTIONS(2621), - [anon_sym_do] = ACTIONS(2621), - [anon_sym_end] = ACTIONS(2621), - [anon_sym_fn] = ACTIONS(2621), - [anon_sym_LPAREN2] = ACTIONS(2619), - [anon_sym_LBRACK2] = ACTIONS(2619), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2619), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2619), - [sym__not_in] = ACTIONS(2619), - [sym__quoted_atom_start] = ACTIONS(2619), - }, - [967] = { + [952] = { [aux_sym__terminator_token1] = ACTIONS(2643), [anon_sym_SEMI] = ACTIONS(2645), [anon_sym_LPAREN] = ACTIONS(2645), @@ -146439,10 +145607,501 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2643), [sym__quoted_atom_start] = ACTIONS(2643), }, - [968] = { + [953] = { + [aux_sym__terminator_token1] = ACTIONS(2635), + [anon_sym_SEMI] = ACTIONS(2637), + [anon_sym_LPAREN] = ACTIONS(2637), + [anon_sym_RPAREN] = ACTIONS(2637), + [aux_sym_identifier_token1] = ACTIONS(2637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2637), + [sym_unused_identifier] = ACTIONS(2637), + [anon_sym___MODULE__] = ACTIONS(2637), + [anon_sym___DIR__] = ACTIONS(2637), + [anon_sym___ENV__] = ACTIONS(2637), + [anon_sym___CALLER__] = ACTIONS(2637), + [anon_sym___STACKTRACE__] = ACTIONS(2637), + [sym_alias] = ACTIONS(2637), + [sym_integer] = ACTIONS(2637), + [sym_float] = ACTIONS(2637), + [sym_char] = ACTIONS(2637), + [anon_sym_true] = ACTIONS(2637), + [anon_sym_false] = ACTIONS(2637), + [anon_sym_nil] = ACTIONS(2637), + [sym_atom] = ACTIONS(2637), + [anon_sym_DQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2637), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2637), + [anon_sym_LBRACE] = ACTIONS(2637), + [anon_sym_LBRACK] = ACTIONS(2637), + [anon_sym_LT] = ACTIONS(2637), + [anon_sym_GT] = ACTIONS(2637), + [anon_sym_PIPE] = ACTIONS(2637), + [anon_sym_SLASH] = ACTIONS(2637), + [anon_sym_TILDE] = ACTIONS(2637), + [anon_sym_COMMA] = ACTIONS(2637), + [sym_keyword] = ACTIONS(2637), + [anon_sym_LT_LT] = ACTIONS(2637), + [anon_sym_PERCENT] = ACTIONS(2637), + [anon_sym_AMP] = ACTIONS(2637), + [anon_sym_PLUS] = ACTIONS(2637), + [anon_sym_DASH] = ACTIONS(2637), + [anon_sym_BANG] = ACTIONS(2637), + [anon_sym_CARET] = ACTIONS(2637), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2637), + [anon_sym_not] = ACTIONS(2637), + [anon_sym_AT] = ACTIONS(2637), + [anon_sym_LT_DASH] = ACTIONS(2637), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2637), + [anon_sym_when] = ACTIONS(2637), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_EQ_GT] = ACTIONS(2637), + [anon_sym_EQ] = ACTIONS(2637), + [anon_sym_PIPE_PIPE] = ACTIONS(2637), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2637), + [anon_sym_or] = ACTIONS(2637), + [anon_sym_AMP_AMP] = ACTIONS(2637), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2637), + [anon_sym_and] = ACTIONS(2637), + [anon_sym_EQ_EQ] = ACTIONS(2637), + [anon_sym_BANG_EQ] = ACTIONS(2637), + [anon_sym_EQ_TILDE] = ACTIONS(2637), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2637), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2637), + [anon_sym_LT_EQ] = ACTIONS(2637), + [anon_sym_GT_EQ] = ACTIONS(2637), + [anon_sym_PIPE_GT] = ACTIONS(2637), + [anon_sym_LT_LT_LT] = ACTIONS(2637), + [anon_sym_GT_GT_GT] = ACTIONS(2637), + [anon_sym_LT_LT_TILDE] = ACTIONS(2637), + [anon_sym_TILDE_GT_GT] = ACTIONS(2637), + [anon_sym_LT_TILDE] = ACTIONS(2637), + [anon_sym_TILDE_GT] = ACTIONS(2637), + [anon_sym_LT_TILDE_GT] = ACTIONS(2637), + [anon_sym_LT_PIPE_GT] = ACTIONS(2637), + [anon_sym_in] = ACTIONS(2637), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2637), + [anon_sym_SLASH_SLASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_DASH_DASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2637), + [anon_sym_DOT_DOT] = ACTIONS(2637), + [anon_sym_LT_GT] = ACTIONS(2637), + [anon_sym_STAR] = ACTIONS(2637), + [anon_sym_STAR_STAR] = ACTIONS(2637), + [anon_sym_CARET_CARET] = ACTIONS(2637), + [anon_sym_DASH_GT] = ACTIONS(2637), + [anon_sym_DOT] = ACTIONS(2637), + [anon_sym_do] = ACTIONS(2637), + [anon_sym_fn] = ACTIONS(2637), + [anon_sym_LPAREN2] = ACTIONS(2635), + [anon_sym_LBRACK2] = ACTIONS(2635), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2635), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2635), + [sym__not_in] = ACTIONS(2635), + [sym__quoted_atom_start] = ACTIONS(2635), + }, + [954] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2617), + [anon_sym_RPAREN] = ACTIONS(2617), + [aux_sym_identifier_token1] = ACTIONS(2617), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2617), + [sym_unused_identifier] = ACTIONS(2617), + [anon_sym___MODULE__] = ACTIONS(2617), + [anon_sym___DIR__] = ACTIONS(2617), + [anon_sym___ENV__] = ACTIONS(2617), + [anon_sym___CALLER__] = ACTIONS(2617), + [anon_sym___STACKTRACE__] = ACTIONS(2617), + [sym_alias] = ACTIONS(2617), + [sym_integer] = ACTIONS(2617), + [sym_float] = ACTIONS(2617), + [sym_char] = ACTIONS(2617), + [anon_sym_true] = ACTIONS(2617), + [anon_sym_false] = ACTIONS(2617), + [anon_sym_nil] = ACTIONS(2617), + [sym_atom] = ACTIONS(2617), + [anon_sym_DQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_RBRACE] = ACTIONS(2617), + [anon_sym_LBRACK] = ACTIONS(2617), + [anon_sym_RBRACK] = ACTIONS(2617), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_GT] = ACTIONS(2617), + [anon_sym_PIPE] = ACTIONS(2617), + [anon_sym_SLASH] = ACTIONS(2617), + [anon_sym_TILDE] = ACTIONS(2617), + [anon_sym_COMMA] = ACTIONS(2617), + [sym_keyword] = ACTIONS(2617), + [anon_sym_LT_LT] = ACTIONS(2617), + [anon_sym_PERCENT] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2617), + [anon_sym_PLUS] = ACTIONS(2617), + [anon_sym_DASH] = ACTIONS(2617), + [anon_sym_BANG] = ACTIONS(2617), + [anon_sym_CARET] = ACTIONS(2617), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2617), + [anon_sym_not] = ACTIONS(2617), + [anon_sym_AT] = ACTIONS(2617), + [anon_sym_LT_DASH] = ACTIONS(2617), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2617), + [anon_sym_when] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_EQ_GT] = ACTIONS(2617), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2617), + [anon_sym_AMP_AMP] = ACTIONS(2617), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2617), + [anon_sym_and] = ACTIONS(2617), + [anon_sym_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_EQ_TILDE] = ACTIONS(2617), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2617), + [anon_sym_LT_EQ] = ACTIONS(2617), + [anon_sym_GT_EQ] = ACTIONS(2617), + [anon_sym_PIPE_GT] = ACTIONS(2617), + [anon_sym_LT_LT_LT] = ACTIONS(2617), + [anon_sym_GT_GT_GT] = ACTIONS(2617), + [anon_sym_LT_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_PIPE_GT] = ACTIONS(2617), + [anon_sym_in] = ACTIONS(2617), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2617), + [anon_sym_SLASH_SLASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2617), + [anon_sym_DOT_DOT] = ACTIONS(2617), + [anon_sym_LT_GT] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(2617), + [anon_sym_STAR_STAR] = ACTIONS(2617), + [anon_sym_CARET_CARET] = ACTIONS(2617), + [anon_sym_DASH_GT] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(2617), + [anon_sym_do] = ACTIONS(2617), + [anon_sym_fn] = ACTIONS(2617), + [anon_sym_LPAREN2] = ACTIONS(2615), + [anon_sym_LBRACK2] = ACTIONS(2615), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2615), + [sym__not_in] = ACTIONS(2615), + [sym__quoted_atom_start] = ACTIONS(2615), + }, + [955] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2621), + [anon_sym_RPAREN] = ACTIONS(2621), + [aux_sym_identifier_token1] = ACTIONS(2621), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2621), + [sym_unused_identifier] = ACTIONS(2621), + [anon_sym___MODULE__] = ACTIONS(2621), + [anon_sym___DIR__] = ACTIONS(2621), + [anon_sym___ENV__] = ACTIONS(2621), + [anon_sym___CALLER__] = ACTIONS(2621), + [anon_sym___STACKTRACE__] = ACTIONS(2621), + [sym_alias] = ACTIONS(2621), + [sym_integer] = ACTIONS(2621), + [sym_float] = ACTIONS(2621), + [sym_char] = ACTIONS(2621), + [anon_sym_true] = ACTIONS(2621), + [anon_sym_false] = ACTIONS(2621), + [anon_sym_nil] = ACTIONS(2621), + [sym_atom] = ACTIONS(2621), + [anon_sym_DQUOTE] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2621), + [anon_sym_RBRACE] = ACTIONS(2621), + [anon_sym_LBRACK] = ACTIONS(2621), + [anon_sym_RBRACK] = ACTIONS(2621), + [anon_sym_LT] = ACTIONS(2621), + [anon_sym_GT] = ACTIONS(2621), + [anon_sym_PIPE] = ACTIONS(2621), + [anon_sym_SLASH] = ACTIONS(2621), + [anon_sym_TILDE] = ACTIONS(2621), + [anon_sym_COMMA] = ACTIONS(2621), + [sym_keyword] = ACTIONS(2621), + [anon_sym_LT_LT] = ACTIONS(2621), + [anon_sym_PERCENT] = ACTIONS(2621), + [anon_sym_AMP] = ACTIONS(2621), + [anon_sym_PLUS] = ACTIONS(2621), + [anon_sym_DASH] = ACTIONS(2621), + [anon_sym_BANG] = ACTIONS(2621), + [anon_sym_CARET] = ACTIONS(2621), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2621), + [anon_sym_not] = ACTIONS(2621), + [anon_sym_AT] = ACTIONS(2621), + [anon_sym_LT_DASH] = ACTIONS(2621), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2621), + [anon_sym_when] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(2621), + [anon_sym_EQ_GT] = ACTIONS(2621), + [anon_sym_EQ] = ACTIONS(2621), + [anon_sym_PIPE_PIPE] = ACTIONS(2621), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2621), + [anon_sym_or] = ACTIONS(2621), + [anon_sym_AMP_AMP] = ACTIONS(2621), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2621), + [anon_sym_and] = ACTIONS(2621), + [anon_sym_EQ_EQ] = ACTIONS(2621), + [anon_sym_BANG_EQ] = ACTIONS(2621), + [anon_sym_EQ_TILDE] = ACTIONS(2621), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2621), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2621), + [anon_sym_LT_EQ] = ACTIONS(2621), + [anon_sym_GT_EQ] = ACTIONS(2621), + [anon_sym_PIPE_GT] = ACTIONS(2621), + [anon_sym_LT_LT_LT] = ACTIONS(2621), + [anon_sym_GT_GT_GT] = ACTIONS(2621), + [anon_sym_LT_LT_TILDE] = ACTIONS(2621), + [anon_sym_TILDE_GT_GT] = ACTIONS(2621), + [anon_sym_LT_TILDE] = ACTIONS(2621), + [anon_sym_TILDE_GT] = ACTIONS(2621), + [anon_sym_LT_TILDE_GT] = ACTIONS(2621), + [anon_sym_LT_PIPE_GT] = ACTIONS(2621), + [anon_sym_in] = ACTIONS(2621), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2621), + [anon_sym_SLASH_SLASH] = ACTIONS(2621), + [anon_sym_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_DASH_DASH] = ACTIONS(2621), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2621), + [anon_sym_DOT_DOT] = ACTIONS(2621), + [anon_sym_LT_GT] = ACTIONS(2621), + [anon_sym_STAR] = ACTIONS(2621), + [anon_sym_STAR_STAR] = ACTIONS(2621), + [anon_sym_CARET_CARET] = ACTIONS(2621), + [anon_sym_DASH_GT] = ACTIONS(2621), + [anon_sym_DOT] = ACTIONS(2621), + [anon_sym_do] = ACTIONS(2621), + [anon_sym_fn] = ACTIONS(2621), + [anon_sym_LPAREN2] = ACTIONS(2619), + [anon_sym_LBRACK2] = ACTIONS(2619), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2619), + [sym__not_in] = ACTIONS(2619), + [sym__quoted_atom_start] = ACTIONS(2619), + }, + [956] = { + [aux_sym__terminator_token1] = ACTIONS(2639), + [anon_sym_SEMI] = ACTIONS(2641), + [anon_sym_LPAREN] = ACTIONS(2641), + [anon_sym_RPAREN] = ACTIONS(2641), + [aux_sym_identifier_token1] = ACTIONS(2641), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2641), + [sym_unused_identifier] = ACTIONS(2641), + [anon_sym___MODULE__] = ACTIONS(2641), + [anon_sym___DIR__] = ACTIONS(2641), + [anon_sym___ENV__] = ACTIONS(2641), + [anon_sym___CALLER__] = ACTIONS(2641), + [anon_sym___STACKTRACE__] = ACTIONS(2641), + [sym_alias] = ACTIONS(2641), + [sym_integer] = ACTIONS(2641), + [sym_float] = ACTIONS(2641), + [sym_char] = ACTIONS(2641), + [anon_sym_true] = ACTIONS(2641), + [anon_sym_false] = ACTIONS(2641), + [anon_sym_nil] = ACTIONS(2641), + [sym_atom] = ACTIONS(2641), + [anon_sym_DQUOTE] = ACTIONS(2641), + [anon_sym_SQUOTE] = ACTIONS(2641), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2641), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2641), + [anon_sym_LT] = ACTIONS(2641), + [anon_sym_GT] = ACTIONS(2641), + [anon_sym_PIPE] = ACTIONS(2641), + [anon_sym_SLASH] = ACTIONS(2641), + [anon_sym_TILDE] = ACTIONS(2641), + [anon_sym_COMMA] = ACTIONS(2641), + [sym_keyword] = ACTIONS(2641), + [anon_sym_LT_LT] = ACTIONS(2641), + [anon_sym_PERCENT] = ACTIONS(2641), + [anon_sym_AMP] = ACTIONS(2641), + [anon_sym_PLUS] = ACTIONS(2641), + [anon_sym_DASH] = ACTIONS(2641), + [anon_sym_BANG] = ACTIONS(2641), + [anon_sym_CARET] = ACTIONS(2641), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2641), + [anon_sym_not] = ACTIONS(2641), + [anon_sym_AT] = ACTIONS(2641), + [anon_sym_LT_DASH] = ACTIONS(2641), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2641), + [anon_sym_when] = ACTIONS(2641), + [anon_sym_COLON_COLON] = ACTIONS(2641), + [anon_sym_EQ_GT] = ACTIONS(2641), + [anon_sym_EQ] = ACTIONS(2641), + [anon_sym_PIPE_PIPE] = ACTIONS(2641), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2641), + [anon_sym_or] = ACTIONS(2641), + [anon_sym_AMP_AMP] = ACTIONS(2641), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2641), + [anon_sym_and] = ACTIONS(2641), + [anon_sym_EQ_EQ] = ACTIONS(2641), + [anon_sym_BANG_EQ] = ACTIONS(2641), + [anon_sym_EQ_TILDE] = ACTIONS(2641), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2641), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2641), + [anon_sym_LT_EQ] = ACTIONS(2641), + [anon_sym_GT_EQ] = ACTIONS(2641), + [anon_sym_PIPE_GT] = ACTIONS(2641), + [anon_sym_LT_LT_LT] = ACTIONS(2641), + [anon_sym_GT_GT_GT] = ACTIONS(2641), + [anon_sym_LT_LT_TILDE] = ACTIONS(2641), + [anon_sym_TILDE_GT_GT] = ACTIONS(2641), + [anon_sym_LT_TILDE] = ACTIONS(2641), + [anon_sym_TILDE_GT] = ACTIONS(2641), + [anon_sym_LT_TILDE_GT] = ACTIONS(2641), + [anon_sym_LT_PIPE_GT] = ACTIONS(2641), + [anon_sym_in] = ACTIONS(2641), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2641), + [anon_sym_SLASH_SLASH] = ACTIONS(2641), + [anon_sym_PLUS_PLUS] = ACTIONS(2641), + [anon_sym_DASH_DASH] = ACTIONS(2641), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2641), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2641), + [anon_sym_DOT_DOT] = ACTIONS(2641), + [anon_sym_LT_GT] = ACTIONS(2641), + [anon_sym_STAR] = ACTIONS(2641), + [anon_sym_STAR_STAR] = ACTIONS(2641), + [anon_sym_CARET_CARET] = ACTIONS(2641), + [anon_sym_DASH_GT] = ACTIONS(2641), + [anon_sym_DOT] = ACTIONS(2641), + [anon_sym_do] = ACTIONS(2641), + [anon_sym_fn] = ACTIONS(2641), + [anon_sym_LPAREN2] = ACTIONS(2639), + [anon_sym_LBRACK2] = ACTIONS(2639), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2639), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2639), + [sym__not_in] = ACTIONS(2639), + [sym__quoted_atom_start] = ACTIONS(2639), + }, + [957] = { + [aux_sym__terminator_token1] = ACTIONS(2623), + [anon_sym_SEMI] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2625), + [anon_sym_RPAREN] = ACTIONS(2625), + [aux_sym_identifier_token1] = ACTIONS(2625), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2625), + [sym_unused_identifier] = ACTIONS(2625), + [anon_sym___MODULE__] = ACTIONS(2625), + [anon_sym___DIR__] = ACTIONS(2625), + [anon_sym___ENV__] = ACTIONS(2625), + [anon_sym___CALLER__] = ACTIONS(2625), + [anon_sym___STACKTRACE__] = ACTIONS(2625), + [sym_alias] = ACTIONS(2625), + [sym_integer] = ACTIONS(2625), + [sym_float] = ACTIONS(2625), + [sym_char] = ACTIONS(2625), + [anon_sym_true] = ACTIONS(2625), + [anon_sym_false] = ACTIONS(2625), + [anon_sym_nil] = ACTIONS(2625), + [sym_atom] = ACTIONS(2625), + [anon_sym_DQUOTE] = ACTIONS(2625), + [anon_sym_SQUOTE] = ACTIONS(2625), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2625), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_LBRACK] = ACTIONS(2625), + [anon_sym_LT] = ACTIONS(2625), + [anon_sym_GT] = ACTIONS(2625), + [anon_sym_PIPE] = ACTIONS(2625), + [anon_sym_SLASH] = ACTIONS(2625), + [anon_sym_TILDE] = ACTIONS(2625), + [anon_sym_COMMA] = ACTIONS(2625), + [sym_keyword] = ACTIONS(2625), + [anon_sym_LT_LT] = ACTIONS(2625), + [anon_sym_PERCENT] = ACTIONS(2625), + [anon_sym_AMP] = ACTIONS(2625), + [anon_sym_PLUS] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(2625), + [anon_sym_BANG] = ACTIONS(2625), + [anon_sym_CARET] = ACTIONS(2625), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(2625), + [anon_sym_AT] = ACTIONS(2625), + [anon_sym_LT_DASH] = ACTIONS(2625), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2625), + [anon_sym_when] = ACTIONS(2625), + [anon_sym_COLON_COLON] = ACTIONS(2625), + [anon_sym_EQ_GT] = ACTIONS(2625), + [anon_sym_EQ] = ACTIONS(2625), + [anon_sym_PIPE_PIPE] = ACTIONS(2625), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2625), + [anon_sym_or] = ACTIONS(2625), + [anon_sym_AMP_AMP] = ACTIONS(2625), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2625), + [anon_sym_and] = ACTIONS(2625), + [anon_sym_EQ_EQ] = ACTIONS(2625), + [anon_sym_BANG_EQ] = ACTIONS(2625), + [anon_sym_EQ_TILDE] = ACTIONS(2625), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2625), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2625), + [anon_sym_LT_EQ] = ACTIONS(2625), + [anon_sym_GT_EQ] = ACTIONS(2625), + [anon_sym_PIPE_GT] = ACTIONS(2625), + [anon_sym_LT_LT_LT] = ACTIONS(2625), + [anon_sym_GT_GT_GT] = ACTIONS(2625), + [anon_sym_LT_LT_TILDE] = ACTIONS(2625), + [anon_sym_TILDE_GT_GT] = ACTIONS(2625), + [anon_sym_LT_TILDE] = ACTIONS(2625), + [anon_sym_TILDE_GT] = ACTIONS(2625), + [anon_sym_LT_TILDE_GT] = ACTIONS(2625), + [anon_sym_LT_PIPE_GT] = ACTIONS(2625), + [anon_sym_in] = ACTIONS(2625), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2625), + [anon_sym_SLASH_SLASH] = ACTIONS(2625), + [anon_sym_PLUS_PLUS] = ACTIONS(2625), + [anon_sym_DASH_DASH] = ACTIONS(2625), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2625), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2625), + [anon_sym_DOT_DOT] = ACTIONS(2625), + [anon_sym_LT_GT] = ACTIONS(2625), + [anon_sym_STAR] = ACTIONS(2625), + [anon_sym_STAR_STAR] = ACTIONS(2625), + [anon_sym_CARET_CARET] = ACTIONS(2625), + [anon_sym_DASH_GT] = ACTIONS(2625), + [anon_sym_DOT] = ACTIONS(2625), + [anon_sym_do] = ACTIONS(2625), + [anon_sym_fn] = ACTIONS(2625), + [anon_sym_LPAREN2] = ACTIONS(2623), + [anon_sym_LBRACK2] = ACTIONS(2623), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2623), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2623), + [sym__not_in] = ACTIONS(2623), + [sym__quoted_atom_start] = ACTIONS(2623), + }, + [958] = { [aux_sym__terminator_token1] = ACTIONS(2627), [anon_sym_SEMI] = ACTIONS(2629), [anon_sym_LPAREN] = ACTIONS(2629), + [anon_sym_RPAREN] = ACTIONS(2629), [aux_sym_identifier_token1] = ACTIONS(2629), [anon_sym_DOT_DOT_DOT] = ACTIONS(2629), [sym_unused_identifier] = ACTIONS(2629), @@ -146525,7 +146184,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(2629), [anon_sym_DOT] = ACTIONS(2629), [anon_sym_do] = ACTIONS(2629), - [anon_sym_end] = ACTIONS(2629), [anon_sym_fn] = ACTIONS(2629), [anon_sym_LPAREN2] = ACTIONS(2627), [anon_sym_LBRACK2] = ACTIONS(2627), @@ -146537,6 +146195,986 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2627), [sym__quoted_atom_start] = ACTIONS(2627), }, + [959] = { + [ts_builtin_sym_end] = ACTIONS(2647), + [aux_sym__terminator_token1] = ACTIONS(2647), + [anon_sym_SEMI] = ACTIONS(2649), + [anon_sym_LPAREN] = ACTIONS(2649), + [aux_sym_identifier_token1] = ACTIONS(2649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2649), + [sym_unused_identifier] = ACTIONS(2649), + [anon_sym___MODULE__] = ACTIONS(2649), + [anon_sym___DIR__] = ACTIONS(2649), + [anon_sym___ENV__] = ACTIONS(2649), + [anon_sym___CALLER__] = ACTIONS(2649), + [anon_sym___STACKTRACE__] = ACTIONS(2649), + [sym_alias] = ACTIONS(2649), + [sym_integer] = ACTIONS(2649), + [sym_float] = ACTIONS(2649), + [sym_char] = ACTIONS(2649), + [anon_sym_true] = ACTIONS(2649), + [anon_sym_false] = ACTIONS(2649), + [anon_sym_nil] = ACTIONS(2649), + [sym_atom] = ACTIONS(2649), + [anon_sym_DQUOTE] = ACTIONS(2649), + [anon_sym_SQUOTE] = ACTIONS(2649), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2649), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2649), + [anon_sym_LBRACK] = ACTIONS(2649), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_GT] = ACTIONS(2649), + [anon_sym_PIPE] = ACTIONS(2649), + [anon_sym_SLASH] = ACTIONS(2649), + [anon_sym_TILDE] = ACTIONS(2649), + [anon_sym_COMMA] = ACTIONS(2649), + [sym_keyword] = ACTIONS(2649), + [anon_sym_LT_LT] = ACTIONS(2649), + [anon_sym_PERCENT] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(2649), + [anon_sym_PLUS] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_BANG] = ACTIONS(2649), + [anon_sym_CARET] = ACTIONS(2649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2649), + [anon_sym_not] = ACTIONS(2649), + [anon_sym_AT] = ACTIONS(2649), + [anon_sym_LT_DASH] = ACTIONS(2649), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2649), + [anon_sym_when] = ACTIONS(2649), + [anon_sym_COLON_COLON] = ACTIONS(2649), + [anon_sym_EQ_GT] = ACTIONS(2649), + [anon_sym_EQ] = ACTIONS(2649), + [anon_sym_PIPE_PIPE] = ACTIONS(2649), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2649), + [anon_sym_or] = ACTIONS(2649), + [anon_sym_AMP_AMP] = ACTIONS(2649), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2649), + [anon_sym_and] = ACTIONS(2649), + [anon_sym_EQ_EQ] = ACTIONS(2649), + [anon_sym_BANG_EQ] = ACTIONS(2649), + [anon_sym_EQ_TILDE] = ACTIONS(2649), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2649), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2649), + [anon_sym_LT_EQ] = ACTIONS(2649), + [anon_sym_GT_EQ] = ACTIONS(2649), + [anon_sym_PIPE_GT] = ACTIONS(2649), + [anon_sym_LT_LT_LT] = ACTIONS(2649), + [anon_sym_GT_GT_GT] = ACTIONS(2649), + [anon_sym_LT_LT_TILDE] = ACTIONS(2649), + [anon_sym_TILDE_GT_GT] = ACTIONS(2649), + [anon_sym_LT_TILDE] = ACTIONS(2649), + [anon_sym_TILDE_GT] = ACTIONS(2649), + [anon_sym_LT_TILDE_GT] = ACTIONS(2649), + [anon_sym_LT_PIPE_GT] = ACTIONS(2649), + [anon_sym_in] = ACTIONS(2649), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2649), + [anon_sym_SLASH_SLASH] = ACTIONS(2649), + [anon_sym_PLUS_PLUS] = ACTIONS(2649), + [anon_sym_DASH_DASH] = ACTIONS(2649), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2649), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2649), + [anon_sym_DOT_DOT] = ACTIONS(2649), + [anon_sym_LT_GT] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2649), + [anon_sym_STAR_STAR] = ACTIONS(2649), + [anon_sym_CARET_CARET] = ACTIONS(2649), + [anon_sym_DASH_GT] = ACTIONS(2649), + [anon_sym_DOT] = ACTIONS(2649), + [anon_sym_do] = ACTIONS(2649), + [anon_sym_fn] = ACTIONS(2649), + [anon_sym_LPAREN2] = ACTIONS(2647), + [anon_sym_LBRACK2] = ACTIONS(2647), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2647), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2647), + [sym__not_in] = ACTIONS(2647), + [sym__quoted_atom_start] = ACTIONS(2647), + }, + [960] = { + [ts_builtin_sym_end] = ACTIONS(2651), + [aux_sym__terminator_token1] = ACTIONS(2651), + [anon_sym_SEMI] = ACTIONS(2653), + [anon_sym_LPAREN] = ACTIONS(2653), + [aux_sym_identifier_token1] = ACTIONS(2653), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2653), + [sym_unused_identifier] = ACTIONS(2653), + [anon_sym___MODULE__] = ACTIONS(2653), + [anon_sym___DIR__] = ACTIONS(2653), + [anon_sym___ENV__] = ACTIONS(2653), + [anon_sym___CALLER__] = ACTIONS(2653), + [anon_sym___STACKTRACE__] = ACTIONS(2653), + [sym_alias] = ACTIONS(2653), + [sym_integer] = ACTIONS(2653), + [sym_float] = ACTIONS(2653), + [sym_char] = ACTIONS(2653), + [anon_sym_true] = ACTIONS(2653), + [anon_sym_false] = ACTIONS(2653), + [anon_sym_nil] = ACTIONS(2653), + [sym_atom] = ACTIONS(2653), + [anon_sym_DQUOTE] = ACTIONS(2653), + [anon_sym_SQUOTE] = ACTIONS(2653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2653), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), + [anon_sym_LBRACE] = ACTIONS(2653), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_LT] = ACTIONS(2653), + [anon_sym_GT] = ACTIONS(2653), + [anon_sym_PIPE] = ACTIONS(2653), + [anon_sym_SLASH] = ACTIONS(2653), + [anon_sym_TILDE] = ACTIONS(2653), + [anon_sym_COMMA] = ACTIONS(2653), + [sym_keyword] = ACTIONS(2653), + [anon_sym_LT_LT] = ACTIONS(2653), + [anon_sym_PERCENT] = ACTIONS(2653), + [anon_sym_AMP] = ACTIONS(2653), + [anon_sym_PLUS] = ACTIONS(2653), + [anon_sym_DASH] = ACTIONS(2653), + [anon_sym_BANG] = ACTIONS(2653), + [anon_sym_CARET] = ACTIONS(2653), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2653), + [anon_sym_not] = ACTIONS(2653), + [anon_sym_AT] = ACTIONS(2653), + [anon_sym_LT_DASH] = ACTIONS(2653), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2653), + [anon_sym_when] = ACTIONS(2653), + [anon_sym_COLON_COLON] = ACTIONS(2653), + [anon_sym_EQ_GT] = ACTIONS(2653), + [anon_sym_EQ] = ACTIONS(2653), + [anon_sym_PIPE_PIPE] = ACTIONS(2653), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2653), + [anon_sym_or] = ACTIONS(2653), + [anon_sym_AMP_AMP] = ACTIONS(2653), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2653), + [anon_sym_and] = ACTIONS(2653), + [anon_sym_EQ_EQ] = ACTIONS(2653), + [anon_sym_BANG_EQ] = ACTIONS(2653), + [anon_sym_EQ_TILDE] = ACTIONS(2653), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2653), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2653), + [anon_sym_LT_EQ] = ACTIONS(2653), + [anon_sym_GT_EQ] = ACTIONS(2653), + [anon_sym_PIPE_GT] = ACTIONS(2653), + [anon_sym_LT_LT_LT] = ACTIONS(2653), + [anon_sym_GT_GT_GT] = ACTIONS(2653), + [anon_sym_LT_LT_TILDE] = ACTIONS(2653), + [anon_sym_TILDE_GT_GT] = ACTIONS(2653), + [anon_sym_LT_TILDE] = ACTIONS(2653), + [anon_sym_TILDE_GT] = ACTIONS(2653), + [anon_sym_LT_TILDE_GT] = ACTIONS(2653), + [anon_sym_LT_PIPE_GT] = ACTIONS(2653), + [anon_sym_in] = ACTIONS(2653), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2653), + [anon_sym_SLASH_SLASH] = ACTIONS(2653), + [anon_sym_PLUS_PLUS] = ACTIONS(2653), + [anon_sym_DASH_DASH] = ACTIONS(2653), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2653), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2653), + [anon_sym_DOT_DOT] = ACTIONS(2653), + [anon_sym_LT_GT] = ACTIONS(2653), + [anon_sym_STAR] = ACTIONS(2653), + [anon_sym_STAR_STAR] = ACTIONS(2653), + [anon_sym_CARET_CARET] = ACTIONS(2653), + [anon_sym_DASH_GT] = ACTIONS(2653), + [anon_sym_DOT] = ACTIONS(2653), + [anon_sym_do] = ACTIONS(2653), + [anon_sym_fn] = ACTIONS(2653), + [anon_sym_LPAREN2] = ACTIONS(2651), + [anon_sym_LBRACK2] = ACTIONS(2651), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2651), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2651), + [sym__not_in] = ACTIONS(2651), + [sym__quoted_atom_start] = ACTIONS(2651), + }, + [961] = { + [ts_builtin_sym_end] = ACTIONS(2615), + [aux_sym__terminator_token1] = ACTIONS(2615), + [anon_sym_SEMI] = ACTIONS(2617), + [anon_sym_LPAREN] = ACTIONS(2617), + [aux_sym_identifier_token1] = ACTIONS(2617), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2617), + [sym_unused_identifier] = ACTIONS(2617), + [anon_sym___MODULE__] = ACTIONS(2617), + [anon_sym___DIR__] = ACTIONS(2617), + [anon_sym___ENV__] = ACTIONS(2617), + [anon_sym___CALLER__] = ACTIONS(2617), + [anon_sym___STACKTRACE__] = ACTIONS(2617), + [sym_alias] = ACTIONS(2617), + [sym_integer] = ACTIONS(2617), + [sym_float] = ACTIONS(2617), + [sym_char] = ACTIONS(2617), + [anon_sym_true] = ACTIONS(2617), + [anon_sym_false] = ACTIONS(2617), + [anon_sym_nil] = ACTIONS(2617), + [sym_atom] = ACTIONS(2617), + [anon_sym_DQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_LBRACK] = ACTIONS(2617), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_GT] = ACTIONS(2617), + [anon_sym_PIPE] = ACTIONS(2617), + [anon_sym_SLASH] = ACTIONS(2617), + [anon_sym_TILDE] = ACTIONS(2617), + [anon_sym_COMMA] = ACTIONS(2617), + [sym_keyword] = ACTIONS(2617), + [anon_sym_LT_LT] = ACTIONS(2617), + [anon_sym_PERCENT] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2617), + [anon_sym_PLUS] = ACTIONS(2617), + [anon_sym_DASH] = ACTIONS(2617), + [anon_sym_BANG] = ACTIONS(2617), + [anon_sym_CARET] = ACTIONS(2617), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2617), + [anon_sym_not] = ACTIONS(2617), + [anon_sym_AT] = ACTIONS(2617), + [anon_sym_LT_DASH] = ACTIONS(2617), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2617), + [anon_sym_when] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_EQ_GT] = ACTIONS(2617), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2617), + [anon_sym_AMP_AMP] = ACTIONS(2617), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2617), + [anon_sym_and] = ACTIONS(2617), + [anon_sym_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_EQ_TILDE] = ACTIONS(2617), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2617), + [anon_sym_LT_EQ] = ACTIONS(2617), + [anon_sym_GT_EQ] = ACTIONS(2617), + [anon_sym_PIPE_GT] = ACTIONS(2617), + [anon_sym_LT_LT_LT] = ACTIONS(2617), + [anon_sym_GT_GT_GT] = ACTIONS(2617), + [anon_sym_LT_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_PIPE_GT] = ACTIONS(2617), + [anon_sym_in] = ACTIONS(2617), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2617), + [anon_sym_SLASH_SLASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2617), + [anon_sym_DOT_DOT] = ACTIONS(2617), + [anon_sym_LT_GT] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(2617), + [anon_sym_STAR_STAR] = ACTIONS(2617), + [anon_sym_CARET_CARET] = ACTIONS(2617), + [anon_sym_DASH_GT] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(2617), + [anon_sym_do] = ACTIONS(2617), + [anon_sym_fn] = ACTIONS(2617), + [anon_sym_LPAREN2] = ACTIONS(2615), + [anon_sym_LBRACK2] = ACTIONS(2615), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2615), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2615), + [sym__not_in] = ACTIONS(2615), + [sym__quoted_atom_start] = ACTIONS(2615), + }, + [962] = { + [aux_sym__terminator_token1] = ACTIONS(2643), + [anon_sym_SEMI] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(2645), + [anon_sym_RPAREN] = ACTIONS(2645), + [aux_sym_identifier_token1] = ACTIONS(2645), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2645), + [sym_unused_identifier] = ACTIONS(2645), + [anon_sym___MODULE__] = ACTIONS(2645), + [anon_sym___DIR__] = ACTIONS(2645), + [anon_sym___ENV__] = ACTIONS(2645), + [anon_sym___CALLER__] = ACTIONS(2645), + [anon_sym___STACKTRACE__] = ACTIONS(2645), + [sym_alias] = ACTIONS(2645), + [sym_integer] = ACTIONS(2645), + [sym_float] = ACTIONS(2645), + [sym_char] = ACTIONS(2645), + [anon_sym_true] = ACTIONS(2645), + [anon_sym_false] = ACTIONS(2645), + [anon_sym_nil] = ACTIONS(2645), + [sym_atom] = ACTIONS(2645), + [anon_sym_DQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2645), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2645), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_LBRACK] = ACTIONS(2645), + [anon_sym_LT] = ACTIONS(2645), + [anon_sym_GT] = ACTIONS(2645), + [anon_sym_PIPE] = ACTIONS(2645), + [anon_sym_SLASH] = ACTIONS(2645), + [anon_sym_TILDE] = ACTIONS(2645), + [anon_sym_COMMA] = ACTIONS(2645), + [sym_keyword] = ACTIONS(2645), + [anon_sym_LT_LT] = ACTIONS(2645), + [anon_sym_PERCENT] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2645), + [anon_sym_PLUS] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2645), + [anon_sym_BANG] = ACTIONS(2645), + [anon_sym_CARET] = ACTIONS(2645), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2645), + [anon_sym_not] = ACTIONS(2645), + [anon_sym_AT] = ACTIONS(2645), + [anon_sym_LT_DASH] = ACTIONS(2645), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2645), + [anon_sym_when] = ACTIONS(2645), + [anon_sym_COLON_COLON] = ACTIONS(2645), + [anon_sym_EQ_GT] = ACTIONS(2645), + [anon_sym_EQ] = ACTIONS(2645), + [anon_sym_PIPE_PIPE] = ACTIONS(2645), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2645), + [anon_sym_or] = ACTIONS(2645), + [anon_sym_AMP_AMP] = ACTIONS(2645), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2645), + [anon_sym_and] = ACTIONS(2645), + [anon_sym_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ] = ACTIONS(2645), + [anon_sym_EQ_TILDE] = ACTIONS(2645), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2645), + [anon_sym_LT_EQ] = ACTIONS(2645), + [anon_sym_GT_EQ] = ACTIONS(2645), + [anon_sym_PIPE_GT] = ACTIONS(2645), + [anon_sym_LT_LT_LT] = ACTIONS(2645), + [anon_sym_GT_GT_GT] = ACTIONS(2645), + [anon_sym_LT_LT_TILDE] = ACTIONS(2645), + [anon_sym_TILDE_GT_GT] = ACTIONS(2645), + [anon_sym_LT_TILDE] = ACTIONS(2645), + [anon_sym_TILDE_GT] = ACTIONS(2645), + [anon_sym_LT_TILDE_GT] = ACTIONS(2645), + [anon_sym_LT_PIPE_GT] = ACTIONS(2645), + [anon_sym_in] = ACTIONS(2645), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2645), + [anon_sym_SLASH_SLASH] = ACTIONS(2645), + [anon_sym_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_DASH_DASH] = ACTIONS(2645), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2645), + [anon_sym_DOT_DOT] = ACTIONS(2645), + [anon_sym_LT_GT] = ACTIONS(2645), + [anon_sym_STAR] = ACTIONS(2645), + [anon_sym_STAR_STAR] = ACTIONS(2645), + [anon_sym_CARET_CARET] = ACTIONS(2645), + [anon_sym_DASH_GT] = ACTIONS(2645), + [anon_sym_DOT] = ACTIONS(2645), + [anon_sym_do] = ACTIONS(2645), + [anon_sym_fn] = ACTIONS(2645), + [anon_sym_LPAREN2] = ACTIONS(2643), + [anon_sym_LBRACK2] = ACTIONS(2643), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2643), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2643), + [sym__not_in] = ACTIONS(2643), + [sym__quoted_atom_start] = ACTIONS(2643), + }, + [963] = { + [ts_builtin_sym_end] = ACTIONS(2635), + [aux_sym__terminator_token1] = ACTIONS(2635), + [anon_sym_SEMI] = ACTIONS(2637), + [anon_sym_LPAREN] = ACTIONS(2637), + [aux_sym_identifier_token1] = ACTIONS(2637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2637), + [sym_unused_identifier] = ACTIONS(2637), + [anon_sym___MODULE__] = ACTIONS(2637), + [anon_sym___DIR__] = ACTIONS(2637), + [anon_sym___ENV__] = ACTIONS(2637), + [anon_sym___CALLER__] = ACTIONS(2637), + [anon_sym___STACKTRACE__] = ACTIONS(2637), + [sym_alias] = ACTIONS(2637), + [sym_integer] = ACTIONS(2637), + [sym_float] = ACTIONS(2637), + [sym_char] = ACTIONS(2637), + [anon_sym_true] = ACTIONS(2637), + [anon_sym_false] = ACTIONS(2637), + [anon_sym_nil] = ACTIONS(2637), + [sym_atom] = ACTIONS(2637), + [anon_sym_DQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2637), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2637), + [anon_sym_LBRACE] = ACTIONS(2637), + [anon_sym_LBRACK] = ACTIONS(2637), + [anon_sym_LT] = ACTIONS(2637), + [anon_sym_GT] = ACTIONS(2637), + [anon_sym_PIPE] = ACTIONS(2637), + [anon_sym_SLASH] = ACTIONS(2637), + [anon_sym_TILDE] = ACTIONS(2637), + [anon_sym_COMMA] = ACTIONS(2637), + [sym_keyword] = ACTIONS(2637), + [anon_sym_LT_LT] = ACTIONS(2637), + [anon_sym_PERCENT] = ACTIONS(2637), + [anon_sym_AMP] = ACTIONS(2637), + [anon_sym_PLUS] = ACTIONS(2637), + [anon_sym_DASH] = ACTIONS(2637), + [anon_sym_BANG] = ACTIONS(2637), + [anon_sym_CARET] = ACTIONS(2637), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2637), + [anon_sym_not] = ACTIONS(2637), + [anon_sym_AT] = ACTIONS(2637), + [anon_sym_LT_DASH] = ACTIONS(2637), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2637), + [anon_sym_when] = ACTIONS(2637), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_EQ_GT] = ACTIONS(2637), + [anon_sym_EQ] = ACTIONS(2637), + [anon_sym_PIPE_PIPE] = ACTIONS(2637), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2637), + [anon_sym_or] = ACTIONS(2637), + [anon_sym_AMP_AMP] = ACTIONS(2637), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2637), + [anon_sym_and] = ACTIONS(2637), + [anon_sym_EQ_EQ] = ACTIONS(2637), + [anon_sym_BANG_EQ] = ACTIONS(2637), + [anon_sym_EQ_TILDE] = ACTIONS(2637), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2637), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2637), + [anon_sym_LT_EQ] = ACTIONS(2637), + [anon_sym_GT_EQ] = ACTIONS(2637), + [anon_sym_PIPE_GT] = ACTIONS(2637), + [anon_sym_LT_LT_LT] = ACTIONS(2637), + [anon_sym_GT_GT_GT] = ACTIONS(2637), + [anon_sym_LT_LT_TILDE] = ACTIONS(2637), + [anon_sym_TILDE_GT_GT] = ACTIONS(2637), + [anon_sym_LT_TILDE] = ACTIONS(2637), + [anon_sym_TILDE_GT] = ACTIONS(2637), + [anon_sym_LT_TILDE_GT] = ACTIONS(2637), + [anon_sym_LT_PIPE_GT] = ACTIONS(2637), + [anon_sym_in] = ACTIONS(2637), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2637), + [anon_sym_SLASH_SLASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_DASH_DASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2637), + [anon_sym_DOT_DOT] = ACTIONS(2637), + [anon_sym_LT_GT] = ACTIONS(2637), + [anon_sym_STAR] = ACTIONS(2637), + [anon_sym_STAR_STAR] = ACTIONS(2637), + [anon_sym_CARET_CARET] = ACTIONS(2637), + [anon_sym_DASH_GT] = ACTIONS(2637), + [anon_sym_DOT] = ACTIONS(2637), + [anon_sym_do] = ACTIONS(2637), + [anon_sym_fn] = ACTIONS(2637), + [anon_sym_LPAREN2] = ACTIONS(2635), + [anon_sym_LBRACK2] = ACTIONS(2635), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2635), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2635), + [sym__not_in] = ACTIONS(2635), + [sym__quoted_atom_start] = ACTIONS(2635), + }, + [964] = { + [ts_builtin_sym_end] = ACTIONS(2631), + [aux_sym__terminator_token1] = ACTIONS(2631), + [anon_sym_SEMI] = ACTIONS(2633), + [anon_sym_LPAREN] = ACTIONS(2633), + [aux_sym_identifier_token1] = ACTIONS(2633), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2633), + [sym_unused_identifier] = ACTIONS(2633), + [anon_sym___MODULE__] = ACTIONS(2633), + [anon_sym___DIR__] = ACTIONS(2633), + [anon_sym___ENV__] = ACTIONS(2633), + [anon_sym___CALLER__] = ACTIONS(2633), + [anon_sym___STACKTRACE__] = ACTIONS(2633), + [sym_alias] = ACTIONS(2633), + [sym_integer] = ACTIONS(2633), + [sym_float] = ACTIONS(2633), + [sym_char] = ACTIONS(2633), + [anon_sym_true] = ACTIONS(2633), + [anon_sym_false] = ACTIONS(2633), + [anon_sym_nil] = ACTIONS(2633), + [sym_atom] = ACTIONS(2633), + [anon_sym_DQUOTE] = ACTIONS(2633), + [anon_sym_SQUOTE] = ACTIONS(2633), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2633), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2633), + [anon_sym_LBRACE] = ACTIONS(2633), + [anon_sym_LBRACK] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(2633), + [anon_sym_GT] = ACTIONS(2633), + [anon_sym_PIPE] = ACTIONS(2633), + [anon_sym_SLASH] = ACTIONS(2633), + [anon_sym_TILDE] = ACTIONS(2633), + [anon_sym_COMMA] = ACTIONS(2633), + [sym_keyword] = ACTIONS(2633), + [anon_sym_LT_LT] = ACTIONS(2633), + [anon_sym_PERCENT] = ACTIONS(2633), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_PLUS] = ACTIONS(2633), + [anon_sym_DASH] = ACTIONS(2633), + [anon_sym_BANG] = ACTIONS(2633), + [anon_sym_CARET] = ACTIONS(2633), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2633), + [anon_sym_not] = ACTIONS(2633), + [anon_sym_AT] = ACTIONS(2633), + [anon_sym_LT_DASH] = ACTIONS(2633), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2633), + [anon_sym_when] = ACTIONS(2633), + [anon_sym_COLON_COLON] = ACTIONS(2633), + [anon_sym_EQ_GT] = ACTIONS(2633), + [anon_sym_EQ] = ACTIONS(2633), + [anon_sym_PIPE_PIPE] = ACTIONS(2633), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2633), + [anon_sym_or] = ACTIONS(2633), + [anon_sym_AMP_AMP] = ACTIONS(2633), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2633), + [anon_sym_and] = ACTIONS(2633), + [anon_sym_EQ_EQ] = ACTIONS(2633), + [anon_sym_BANG_EQ] = ACTIONS(2633), + [anon_sym_EQ_TILDE] = ACTIONS(2633), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2633), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2633), + [anon_sym_LT_EQ] = ACTIONS(2633), + [anon_sym_GT_EQ] = ACTIONS(2633), + [anon_sym_PIPE_GT] = ACTIONS(2633), + [anon_sym_LT_LT_LT] = ACTIONS(2633), + [anon_sym_GT_GT_GT] = ACTIONS(2633), + [anon_sym_LT_LT_TILDE] = ACTIONS(2633), + [anon_sym_TILDE_GT_GT] = ACTIONS(2633), + [anon_sym_LT_TILDE] = ACTIONS(2633), + [anon_sym_TILDE_GT] = ACTIONS(2633), + [anon_sym_LT_TILDE_GT] = ACTIONS(2633), + [anon_sym_LT_PIPE_GT] = ACTIONS(2633), + [anon_sym_in] = ACTIONS(2633), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2633), + [anon_sym_SLASH_SLASH] = ACTIONS(2633), + [anon_sym_PLUS_PLUS] = ACTIONS(2633), + [anon_sym_DASH_DASH] = ACTIONS(2633), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2633), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2633), + [anon_sym_DOT_DOT] = ACTIONS(2633), + [anon_sym_LT_GT] = ACTIONS(2633), + [anon_sym_STAR] = ACTIONS(2633), + [anon_sym_STAR_STAR] = ACTIONS(2633), + [anon_sym_CARET_CARET] = ACTIONS(2633), + [anon_sym_DASH_GT] = ACTIONS(2633), + [anon_sym_DOT] = ACTIONS(2633), + [anon_sym_do] = ACTIONS(2633), + [anon_sym_fn] = ACTIONS(2633), + [anon_sym_LPAREN2] = ACTIONS(2631), + [anon_sym_LBRACK2] = ACTIONS(2631), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2631), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2631), + [sym__not_in] = ACTIONS(2631), + [sym__quoted_atom_start] = ACTIONS(2631), + }, + [965] = { + [aux_sym__terminator_token1] = ACTIONS(2615), + [anon_sym_SEMI] = ACTIONS(2617), + [anon_sym_LPAREN] = ACTIONS(2617), + [anon_sym_RPAREN] = ACTIONS(2617), + [aux_sym_identifier_token1] = ACTIONS(2617), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2617), + [sym_unused_identifier] = ACTIONS(2617), + [anon_sym___MODULE__] = ACTIONS(2617), + [anon_sym___DIR__] = ACTIONS(2617), + [anon_sym___ENV__] = ACTIONS(2617), + [anon_sym___CALLER__] = ACTIONS(2617), + [anon_sym___STACKTRACE__] = ACTIONS(2617), + [sym_alias] = ACTIONS(2617), + [sym_integer] = ACTIONS(2617), + [sym_float] = ACTIONS(2617), + [sym_char] = ACTIONS(2617), + [anon_sym_true] = ACTIONS(2617), + [anon_sym_false] = ACTIONS(2617), + [anon_sym_nil] = ACTIONS(2617), + [sym_atom] = ACTIONS(2617), + [anon_sym_DQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_LBRACK] = ACTIONS(2617), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_GT] = ACTIONS(2617), + [anon_sym_PIPE] = ACTIONS(2617), + [anon_sym_SLASH] = ACTIONS(2617), + [anon_sym_TILDE] = ACTIONS(2617), + [anon_sym_COMMA] = ACTIONS(2617), + [sym_keyword] = ACTIONS(2617), + [anon_sym_LT_LT] = ACTIONS(2617), + [anon_sym_PERCENT] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2617), + [anon_sym_PLUS] = ACTIONS(2617), + [anon_sym_DASH] = ACTIONS(2617), + [anon_sym_BANG] = ACTIONS(2617), + [anon_sym_CARET] = ACTIONS(2617), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2617), + [anon_sym_not] = ACTIONS(2617), + [anon_sym_AT] = ACTIONS(2617), + [anon_sym_LT_DASH] = ACTIONS(2617), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2617), + [anon_sym_when] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_EQ_GT] = ACTIONS(2617), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2617), + [anon_sym_AMP_AMP] = ACTIONS(2617), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2617), + [anon_sym_and] = ACTIONS(2617), + [anon_sym_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_EQ_TILDE] = ACTIONS(2617), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2617), + [anon_sym_LT_EQ] = ACTIONS(2617), + [anon_sym_GT_EQ] = ACTIONS(2617), + [anon_sym_PIPE_GT] = ACTIONS(2617), + [anon_sym_LT_LT_LT] = ACTIONS(2617), + [anon_sym_GT_GT_GT] = ACTIONS(2617), + [anon_sym_LT_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_PIPE_GT] = ACTIONS(2617), + [anon_sym_in] = ACTIONS(2617), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2617), + [anon_sym_SLASH_SLASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2617), + [anon_sym_DOT_DOT] = ACTIONS(2617), + [anon_sym_LT_GT] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(2617), + [anon_sym_STAR_STAR] = ACTIONS(2617), + [anon_sym_CARET_CARET] = ACTIONS(2617), + [anon_sym_DASH_GT] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(2617), + [anon_sym_do] = ACTIONS(2617), + [anon_sym_fn] = ACTIONS(2617), + [anon_sym_LPAREN2] = ACTIONS(2615), + [anon_sym_LBRACK2] = ACTIONS(2615), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2615), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2615), + [sym__not_in] = ACTIONS(2615), + [sym__quoted_atom_start] = ACTIONS(2615), + }, + [966] = { + [aux_sym__terminator_token1] = ACTIONS(2619), + [anon_sym_SEMI] = ACTIONS(2621), + [anon_sym_LPAREN] = ACTIONS(2621), + [anon_sym_RPAREN] = ACTIONS(2621), + [aux_sym_identifier_token1] = ACTIONS(2621), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2621), + [sym_unused_identifier] = ACTIONS(2621), + [anon_sym___MODULE__] = ACTIONS(2621), + [anon_sym___DIR__] = ACTIONS(2621), + [anon_sym___ENV__] = ACTIONS(2621), + [anon_sym___CALLER__] = ACTIONS(2621), + [anon_sym___STACKTRACE__] = ACTIONS(2621), + [sym_alias] = ACTIONS(2621), + [sym_integer] = ACTIONS(2621), + [sym_float] = ACTIONS(2621), + [sym_char] = ACTIONS(2621), + [anon_sym_true] = ACTIONS(2621), + [anon_sym_false] = ACTIONS(2621), + [anon_sym_nil] = ACTIONS(2621), + [sym_atom] = ACTIONS(2621), + [anon_sym_DQUOTE] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2621), + [anon_sym_LBRACK] = ACTIONS(2621), + [anon_sym_LT] = ACTIONS(2621), + [anon_sym_GT] = ACTIONS(2621), + [anon_sym_PIPE] = ACTIONS(2621), + [anon_sym_SLASH] = ACTIONS(2621), + [anon_sym_TILDE] = ACTIONS(2621), + [anon_sym_COMMA] = ACTIONS(2621), + [sym_keyword] = ACTIONS(2621), + [anon_sym_LT_LT] = ACTIONS(2621), + [anon_sym_PERCENT] = ACTIONS(2621), + [anon_sym_AMP] = ACTIONS(2621), + [anon_sym_PLUS] = ACTIONS(2621), + [anon_sym_DASH] = ACTIONS(2621), + [anon_sym_BANG] = ACTIONS(2621), + [anon_sym_CARET] = ACTIONS(2621), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2621), + [anon_sym_not] = ACTIONS(2621), + [anon_sym_AT] = ACTIONS(2621), + [anon_sym_LT_DASH] = ACTIONS(2621), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2621), + [anon_sym_when] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(2621), + [anon_sym_EQ_GT] = ACTIONS(2621), + [anon_sym_EQ] = ACTIONS(2621), + [anon_sym_PIPE_PIPE] = ACTIONS(2621), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2621), + [anon_sym_or] = ACTIONS(2621), + [anon_sym_AMP_AMP] = ACTIONS(2621), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2621), + [anon_sym_and] = ACTIONS(2621), + [anon_sym_EQ_EQ] = ACTIONS(2621), + [anon_sym_BANG_EQ] = ACTIONS(2621), + [anon_sym_EQ_TILDE] = ACTIONS(2621), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2621), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2621), + [anon_sym_LT_EQ] = ACTIONS(2621), + [anon_sym_GT_EQ] = ACTIONS(2621), + [anon_sym_PIPE_GT] = ACTIONS(2621), + [anon_sym_LT_LT_LT] = ACTIONS(2621), + [anon_sym_GT_GT_GT] = ACTIONS(2621), + [anon_sym_LT_LT_TILDE] = ACTIONS(2621), + [anon_sym_TILDE_GT_GT] = ACTIONS(2621), + [anon_sym_LT_TILDE] = ACTIONS(2621), + [anon_sym_TILDE_GT] = ACTIONS(2621), + [anon_sym_LT_TILDE_GT] = ACTIONS(2621), + [anon_sym_LT_PIPE_GT] = ACTIONS(2621), + [anon_sym_in] = ACTIONS(2621), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2621), + [anon_sym_SLASH_SLASH] = ACTIONS(2621), + [anon_sym_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_DASH_DASH] = ACTIONS(2621), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2621), + [anon_sym_DOT_DOT] = ACTIONS(2621), + [anon_sym_LT_GT] = ACTIONS(2621), + [anon_sym_STAR] = ACTIONS(2621), + [anon_sym_STAR_STAR] = ACTIONS(2621), + [anon_sym_CARET_CARET] = ACTIONS(2621), + [anon_sym_DASH_GT] = ACTIONS(2621), + [anon_sym_DOT] = ACTIONS(2621), + [anon_sym_do] = ACTIONS(2621), + [anon_sym_fn] = ACTIONS(2621), + [anon_sym_LPAREN2] = ACTIONS(2619), + [anon_sym_LBRACK2] = ACTIONS(2619), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2619), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2619), + [sym__not_in] = ACTIONS(2619), + [sym__quoted_atom_start] = ACTIONS(2619), + }, + [967] = { + [ts_builtin_sym_end] = ACTIONS(2619), + [aux_sym__terminator_token1] = ACTIONS(2619), + [anon_sym_SEMI] = ACTIONS(2621), + [anon_sym_LPAREN] = ACTIONS(2621), + [aux_sym_identifier_token1] = ACTIONS(2621), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2621), + [sym_unused_identifier] = ACTIONS(2621), + [anon_sym___MODULE__] = ACTIONS(2621), + [anon_sym___DIR__] = ACTIONS(2621), + [anon_sym___ENV__] = ACTIONS(2621), + [anon_sym___CALLER__] = ACTIONS(2621), + [anon_sym___STACKTRACE__] = ACTIONS(2621), + [sym_alias] = ACTIONS(2621), + [sym_integer] = ACTIONS(2621), + [sym_float] = ACTIONS(2621), + [sym_char] = ACTIONS(2621), + [anon_sym_true] = ACTIONS(2621), + [anon_sym_false] = ACTIONS(2621), + [anon_sym_nil] = ACTIONS(2621), + [sym_atom] = ACTIONS(2621), + [anon_sym_DQUOTE] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2621), + [anon_sym_LBRACK] = ACTIONS(2621), + [anon_sym_LT] = ACTIONS(2621), + [anon_sym_GT] = ACTIONS(2621), + [anon_sym_PIPE] = ACTIONS(2621), + [anon_sym_SLASH] = ACTIONS(2621), + [anon_sym_TILDE] = ACTIONS(2621), + [anon_sym_COMMA] = ACTIONS(2621), + [sym_keyword] = ACTIONS(2621), + [anon_sym_LT_LT] = ACTIONS(2621), + [anon_sym_PERCENT] = ACTIONS(2621), + [anon_sym_AMP] = ACTIONS(2621), + [anon_sym_PLUS] = ACTIONS(2621), + [anon_sym_DASH] = ACTIONS(2621), + [anon_sym_BANG] = ACTIONS(2621), + [anon_sym_CARET] = ACTIONS(2621), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2621), + [anon_sym_not] = ACTIONS(2621), + [anon_sym_AT] = ACTIONS(2621), + [anon_sym_LT_DASH] = ACTIONS(2621), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2621), + [anon_sym_when] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(2621), + [anon_sym_EQ_GT] = ACTIONS(2621), + [anon_sym_EQ] = ACTIONS(2621), + [anon_sym_PIPE_PIPE] = ACTIONS(2621), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2621), + [anon_sym_or] = ACTIONS(2621), + [anon_sym_AMP_AMP] = ACTIONS(2621), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2621), + [anon_sym_and] = ACTIONS(2621), + [anon_sym_EQ_EQ] = ACTIONS(2621), + [anon_sym_BANG_EQ] = ACTIONS(2621), + [anon_sym_EQ_TILDE] = ACTIONS(2621), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2621), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2621), + [anon_sym_LT_EQ] = ACTIONS(2621), + [anon_sym_GT_EQ] = ACTIONS(2621), + [anon_sym_PIPE_GT] = ACTIONS(2621), + [anon_sym_LT_LT_LT] = ACTIONS(2621), + [anon_sym_GT_GT_GT] = ACTIONS(2621), + [anon_sym_LT_LT_TILDE] = ACTIONS(2621), + [anon_sym_TILDE_GT_GT] = ACTIONS(2621), + [anon_sym_LT_TILDE] = ACTIONS(2621), + [anon_sym_TILDE_GT] = ACTIONS(2621), + [anon_sym_LT_TILDE_GT] = ACTIONS(2621), + [anon_sym_LT_PIPE_GT] = ACTIONS(2621), + [anon_sym_in] = ACTIONS(2621), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2621), + [anon_sym_SLASH_SLASH] = ACTIONS(2621), + [anon_sym_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_DASH_DASH] = ACTIONS(2621), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2621), + [anon_sym_DOT_DOT] = ACTIONS(2621), + [anon_sym_LT_GT] = ACTIONS(2621), + [anon_sym_STAR] = ACTIONS(2621), + [anon_sym_STAR_STAR] = ACTIONS(2621), + [anon_sym_CARET_CARET] = ACTIONS(2621), + [anon_sym_DASH_GT] = ACTIONS(2621), + [anon_sym_DOT] = ACTIONS(2621), + [anon_sym_do] = ACTIONS(2621), + [anon_sym_fn] = ACTIONS(2621), + [anon_sym_LPAREN2] = ACTIONS(2619), + [anon_sym_LBRACK2] = ACTIONS(2619), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2619), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2619), + [sym__not_in] = ACTIONS(2619), + [sym__quoted_atom_start] = ACTIONS(2619), + }, + [968] = { + [aux_sym__terminator_token1] = ACTIONS(2643), + [anon_sym_SEMI] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(2645), + [aux_sym_identifier_token1] = ACTIONS(2645), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2645), + [sym_unused_identifier] = ACTIONS(2645), + [anon_sym___MODULE__] = ACTIONS(2645), + [anon_sym___DIR__] = ACTIONS(2645), + [anon_sym___ENV__] = ACTIONS(2645), + [anon_sym___CALLER__] = ACTIONS(2645), + [anon_sym___STACKTRACE__] = ACTIONS(2645), + [sym_alias] = ACTIONS(2645), + [sym_integer] = ACTIONS(2645), + [sym_float] = ACTIONS(2645), + [sym_char] = ACTIONS(2645), + [anon_sym_true] = ACTIONS(2645), + [anon_sym_false] = ACTIONS(2645), + [anon_sym_nil] = ACTIONS(2645), + [sym_atom] = ACTIONS(2645), + [anon_sym_DQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2645), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2645), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_LBRACK] = ACTIONS(2645), + [anon_sym_LT] = ACTIONS(2645), + [anon_sym_GT] = ACTIONS(2645), + [anon_sym_PIPE] = ACTIONS(2645), + [anon_sym_SLASH] = ACTIONS(2645), + [anon_sym_TILDE] = ACTIONS(2645), + [anon_sym_COMMA] = ACTIONS(2645), + [sym_keyword] = ACTIONS(2645), + [anon_sym_LT_LT] = ACTIONS(2645), + [anon_sym_PERCENT] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2645), + [anon_sym_PLUS] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2645), + [anon_sym_BANG] = ACTIONS(2645), + [anon_sym_CARET] = ACTIONS(2645), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2645), + [anon_sym_not] = ACTIONS(2645), + [anon_sym_AT] = ACTIONS(2645), + [anon_sym_LT_DASH] = ACTIONS(2645), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2645), + [anon_sym_when] = ACTIONS(2645), + [anon_sym_COLON_COLON] = ACTIONS(2645), + [anon_sym_EQ_GT] = ACTIONS(2645), + [anon_sym_EQ] = ACTIONS(2645), + [anon_sym_PIPE_PIPE] = ACTIONS(2645), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2645), + [anon_sym_or] = ACTIONS(2645), + [anon_sym_AMP_AMP] = ACTIONS(2645), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2645), + [anon_sym_and] = ACTIONS(2645), + [anon_sym_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ] = ACTIONS(2645), + [anon_sym_EQ_TILDE] = ACTIONS(2645), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2645), + [anon_sym_LT_EQ] = ACTIONS(2645), + [anon_sym_GT_EQ] = ACTIONS(2645), + [anon_sym_PIPE_GT] = ACTIONS(2645), + [anon_sym_LT_LT_LT] = ACTIONS(2645), + [anon_sym_GT_GT_GT] = ACTIONS(2645), + [anon_sym_LT_LT_TILDE] = ACTIONS(2645), + [anon_sym_TILDE_GT_GT] = ACTIONS(2645), + [anon_sym_LT_TILDE] = ACTIONS(2645), + [anon_sym_TILDE_GT] = ACTIONS(2645), + [anon_sym_LT_TILDE_GT] = ACTIONS(2645), + [anon_sym_LT_PIPE_GT] = ACTIONS(2645), + [anon_sym_in] = ACTIONS(2645), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2645), + [anon_sym_SLASH_SLASH] = ACTIONS(2645), + [anon_sym_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_DASH_DASH] = ACTIONS(2645), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2645), + [anon_sym_DOT_DOT] = ACTIONS(2645), + [anon_sym_LT_GT] = ACTIONS(2645), + [anon_sym_STAR] = ACTIONS(2645), + [anon_sym_STAR_STAR] = ACTIONS(2645), + [anon_sym_CARET_CARET] = ACTIONS(2645), + [anon_sym_DASH_GT] = ACTIONS(2645), + [anon_sym_DOT] = ACTIONS(2645), + [anon_sym_do] = ACTIONS(2645), + [anon_sym_end] = ACTIONS(2645), + [anon_sym_fn] = ACTIONS(2645), + [anon_sym_LPAREN2] = ACTIONS(2643), + [anon_sym_LBRACK2] = ACTIONS(2643), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2643), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2643), + [sym__not_in] = ACTIONS(2643), + [sym__quoted_atom_start] = ACTIONS(2643), + }, [969] = { [aux_sym__terminator_token1] = ACTIONS(2615), [anon_sym_SEMI] = ACTIONS(2617), @@ -146636,10 +147274,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(2615), }, [970] = { + [ts_builtin_sym_end] = ACTIONS(2623), [aux_sym__terminator_token1] = ACTIONS(2623), [anon_sym_SEMI] = ACTIONS(2625), [anon_sym_LPAREN] = ACTIONS(2625), - [anon_sym_RPAREN] = ACTIONS(2625), [aux_sym_identifier_token1] = ACTIONS(2625), [anon_sym_DOT_DOT_DOT] = ACTIONS(2625), [sym_unused_identifier] = ACTIONS(2625), @@ -146734,1182 +147372,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(2623), }, [971] = { - [aux_sym__terminator_token1] = ACTIONS(2611), - [anon_sym_SEMI] = ACTIONS(2613), - [anon_sym_LPAREN] = ACTIONS(2613), - [aux_sym_identifier_token1] = ACTIONS(2613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2613), - [sym_unused_identifier] = ACTIONS(2613), - [anon_sym___MODULE__] = ACTIONS(2613), - [anon_sym___DIR__] = ACTIONS(2613), - [anon_sym___ENV__] = ACTIONS(2613), - [anon_sym___CALLER__] = ACTIONS(2613), - [anon_sym___STACKTRACE__] = ACTIONS(2613), - [sym_alias] = ACTIONS(2613), - [sym_integer] = ACTIONS(2613), - [sym_float] = ACTIONS(2613), - [sym_char] = ACTIONS(2613), - [anon_sym_true] = ACTIONS(2613), - [anon_sym_false] = ACTIONS(2613), - [anon_sym_nil] = ACTIONS(2613), - [sym_atom] = ACTIONS(2613), - [anon_sym_DQUOTE] = ACTIONS(2613), - [anon_sym_SQUOTE] = ACTIONS(2613), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2613), - [anon_sym_LBRACE] = ACTIONS(2613), - [anon_sym_LBRACK] = ACTIONS(2613), - [anon_sym_LT] = ACTIONS(2613), - [anon_sym_GT] = ACTIONS(2613), - [anon_sym_PIPE] = ACTIONS(2613), - [anon_sym_SLASH] = ACTIONS(2613), - [anon_sym_TILDE] = ACTIONS(2613), - [anon_sym_COMMA] = ACTIONS(2613), - [sym_keyword] = ACTIONS(2613), - [anon_sym_LT_LT] = ACTIONS(2613), - [anon_sym_PERCENT] = ACTIONS(2613), - [anon_sym_AMP] = ACTIONS(2613), - [anon_sym_PLUS] = ACTIONS(2613), - [anon_sym_DASH] = ACTIONS(2613), - [anon_sym_BANG] = ACTIONS(2613), - [anon_sym_CARET] = ACTIONS(2613), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(2613), - [anon_sym_AT] = ACTIONS(2613), - [anon_sym_LT_DASH] = ACTIONS(2613), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2613), - [anon_sym_when] = ACTIONS(2613), - [anon_sym_COLON_COLON] = ACTIONS(2613), - [anon_sym_EQ_GT] = ACTIONS(2613), - [anon_sym_EQ] = ACTIONS(2613), - [anon_sym_PIPE_PIPE] = ACTIONS(2613), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2613), - [anon_sym_or] = ACTIONS(2613), - [anon_sym_AMP_AMP] = ACTIONS(2613), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2613), - [anon_sym_and] = ACTIONS(2613), - [anon_sym_EQ_EQ] = ACTIONS(2613), - [anon_sym_BANG_EQ] = ACTIONS(2613), - [anon_sym_EQ_TILDE] = ACTIONS(2613), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2613), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2613), - [anon_sym_LT_EQ] = ACTIONS(2613), - [anon_sym_GT_EQ] = ACTIONS(2613), - [anon_sym_PIPE_GT] = ACTIONS(2613), - [anon_sym_LT_LT_LT] = ACTIONS(2613), - [anon_sym_GT_GT_GT] = ACTIONS(2613), - [anon_sym_LT_LT_TILDE] = ACTIONS(2613), - [anon_sym_TILDE_GT_GT] = ACTIONS(2613), - [anon_sym_LT_TILDE] = ACTIONS(2613), - [anon_sym_TILDE_GT] = ACTIONS(2613), - [anon_sym_LT_TILDE_GT] = ACTIONS(2613), - [anon_sym_LT_PIPE_GT] = ACTIONS(2613), - [anon_sym_in] = ACTIONS(2613), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2613), - [anon_sym_SLASH_SLASH] = ACTIONS(2613), - [anon_sym_PLUS_PLUS] = ACTIONS(2613), - [anon_sym_DASH_DASH] = ACTIONS(2613), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2613), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2613), - [anon_sym_DOT_DOT] = ACTIONS(2613), - [anon_sym_LT_GT] = ACTIONS(2613), - [anon_sym_STAR] = ACTIONS(2613), - [anon_sym_STAR_STAR] = ACTIONS(2613), - [anon_sym_CARET_CARET] = ACTIONS(2613), - [anon_sym_DASH_GT] = ACTIONS(2613), - [anon_sym_DOT] = ACTIONS(2613), - [anon_sym_do] = ACTIONS(2613), - [anon_sym_end] = ACTIONS(2613), - [anon_sym_fn] = ACTIONS(2613), - [anon_sym_LPAREN2] = ACTIONS(2611), - [anon_sym_LBRACK2] = ACTIONS(2611), + [aux_sym__terminator_token1] = ACTIONS(2619), + [anon_sym_SEMI] = ACTIONS(2621), + [anon_sym_LPAREN] = ACTIONS(2621), + [aux_sym_identifier_token1] = ACTIONS(2621), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2621), + [sym_unused_identifier] = ACTIONS(2621), + [anon_sym___MODULE__] = ACTIONS(2621), + [anon_sym___DIR__] = ACTIONS(2621), + [anon_sym___ENV__] = ACTIONS(2621), + [anon_sym___CALLER__] = ACTIONS(2621), + [anon_sym___STACKTRACE__] = ACTIONS(2621), + [sym_alias] = ACTIONS(2621), + [sym_integer] = ACTIONS(2621), + [sym_float] = ACTIONS(2621), + [sym_char] = ACTIONS(2621), + [anon_sym_true] = ACTIONS(2621), + [anon_sym_false] = ACTIONS(2621), + [anon_sym_nil] = ACTIONS(2621), + [sym_atom] = ACTIONS(2621), + [anon_sym_DQUOTE] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2621), + [anon_sym_LBRACK] = ACTIONS(2621), + [anon_sym_LT] = ACTIONS(2621), + [anon_sym_GT] = ACTIONS(2621), + [anon_sym_PIPE] = ACTIONS(2621), + [anon_sym_SLASH] = ACTIONS(2621), + [anon_sym_TILDE] = ACTIONS(2621), + [anon_sym_COMMA] = ACTIONS(2621), + [sym_keyword] = ACTIONS(2621), + [anon_sym_LT_LT] = ACTIONS(2621), + [anon_sym_PERCENT] = ACTIONS(2621), + [anon_sym_AMP] = ACTIONS(2621), + [anon_sym_PLUS] = ACTIONS(2621), + [anon_sym_DASH] = ACTIONS(2621), + [anon_sym_BANG] = ACTIONS(2621), + [anon_sym_CARET] = ACTIONS(2621), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2621), + [anon_sym_not] = ACTIONS(2621), + [anon_sym_AT] = ACTIONS(2621), + [anon_sym_LT_DASH] = ACTIONS(2621), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2621), + [anon_sym_when] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(2621), + [anon_sym_EQ_GT] = ACTIONS(2621), + [anon_sym_EQ] = ACTIONS(2621), + [anon_sym_PIPE_PIPE] = ACTIONS(2621), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2621), + [anon_sym_or] = ACTIONS(2621), + [anon_sym_AMP_AMP] = ACTIONS(2621), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2621), + [anon_sym_and] = ACTIONS(2621), + [anon_sym_EQ_EQ] = ACTIONS(2621), + [anon_sym_BANG_EQ] = ACTIONS(2621), + [anon_sym_EQ_TILDE] = ACTIONS(2621), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2621), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2621), + [anon_sym_LT_EQ] = ACTIONS(2621), + [anon_sym_GT_EQ] = ACTIONS(2621), + [anon_sym_PIPE_GT] = ACTIONS(2621), + [anon_sym_LT_LT_LT] = ACTIONS(2621), + [anon_sym_GT_GT_GT] = ACTIONS(2621), + [anon_sym_LT_LT_TILDE] = ACTIONS(2621), + [anon_sym_TILDE_GT_GT] = ACTIONS(2621), + [anon_sym_LT_TILDE] = ACTIONS(2621), + [anon_sym_TILDE_GT] = ACTIONS(2621), + [anon_sym_LT_TILDE_GT] = ACTIONS(2621), + [anon_sym_LT_PIPE_GT] = ACTIONS(2621), + [anon_sym_in] = ACTIONS(2621), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2621), + [anon_sym_SLASH_SLASH] = ACTIONS(2621), + [anon_sym_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_DASH_DASH] = ACTIONS(2621), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2621), + [anon_sym_DOT_DOT] = ACTIONS(2621), + [anon_sym_LT_GT] = ACTIONS(2621), + [anon_sym_STAR] = ACTIONS(2621), + [anon_sym_STAR_STAR] = ACTIONS(2621), + [anon_sym_CARET_CARET] = ACTIONS(2621), + [anon_sym_DASH_GT] = ACTIONS(2621), + [anon_sym_DOT] = ACTIONS(2621), + [anon_sym_do] = ACTIONS(2621), + [anon_sym_end] = ACTIONS(2621), + [anon_sym_fn] = ACTIONS(2621), + [anon_sym_LPAREN2] = ACTIONS(2619), + [anon_sym_LBRACK2] = ACTIONS(2619), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2611), + [sym__newline_before_do] = ACTIONS(2619), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2611), - [sym__not_in] = ACTIONS(2611), - [sym__quoted_atom_start] = ACTIONS(2611), + [sym__before_unary_op] = ACTIONS(2619), + [sym__not_in] = ACTIONS(2619), + [sym__quoted_atom_start] = ACTIONS(2619), }, [972] = { - [aux_sym__terminator_token1] = ACTIONS(2615), - [anon_sym_SEMI] = ACTIONS(2617), - [anon_sym_LPAREN] = ACTIONS(2617), - [aux_sym_identifier_token1] = ACTIONS(2617), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2617), - [sym_unused_identifier] = ACTIONS(2617), - [anon_sym___MODULE__] = ACTIONS(2617), - [anon_sym___DIR__] = ACTIONS(2617), - [anon_sym___ENV__] = ACTIONS(2617), - [anon_sym___CALLER__] = ACTIONS(2617), - [anon_sym___STACKTRACE__] = ACTIONS(2617), - [sym_alias] = ACTIONS(2617), - [sym_integer] = ACTIONS(2617), - [sym_float] = ACTIONS(2617), - [sym_char] = ACTIONS(2617), - [anon_sym_true] = ACTIONS(2617), - [anon_sym_false] = ACTIONS(2617), - [anon_sym_nil] = ACTIONS(2617), - [sym_atom] = ACTIONS(2617), - [anon_sym_DQUOTE] = ACTIONS(2617), - [anon_sym_SQUOTE] = ACTIONS(2617), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2617), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2617), - [anon_sym_LBRACK] = ACTIONS(2617), - [anon_sym_LT] = ACTIONS(2617), - [anon_sym_GT] = ACTIONS(2617), - [anon_sym_PIPE] = ACTIONS(2617), - [anon_sym_SLASH] = ACTIONS(2617), - [anon_sym_TILDE] = ACTIONS(2617), - [anon_sym_COMMA] = ACTIONS(2617), - [sym_keyword] = ACTIONS(2617), - [anon_sym_LT_LT] = ACTIONS(2617), - [anon_sym_PERCENT] = ACTIONS(2617), - [anon_sym_AMP] = ACTIONS(2617), - [anon_sym_PLUS] = ACTIONS(2617), - [anon_sym_DASH] = ACTIONS(2617), - [anon_sym_BANG] = ACTIONS(2617), - [anon_sym_CARET] = ACTIONS(2617), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2617), - [anon_sym_not] = ACTIONS(2617), - [anon_sym_AT] = ACTIONS(2617), - [anon_sym_LT_DASH] = ACTIONS(2617), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2617), - [anon_sym_when] = ACTIONS(2617), - [anon_sym_COLON_COLON] = ACTIONS(2617), - [anon_sym_EQ_GT] = ACTIONS(2617), - [anon_sym_EQ] = ACTIONS(2617), - [anon_sym_PIPE_PIPE] = ACTIONS(2617), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2617), - [anon_sym_or] = ACTIONS(2617), - [anon_sym_AMP_AMP] = ACTIONS(2617), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2617), - [anon_sym_and] = ACTIONS(2617), - [anon_sym_EQ_EQ] = ACTIONS(2617), - [anon_sym_BANG_EQ] = ACTIONS(2617), - [anon_sym_EQ_TILDE] = ACTIONS(2617), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2617), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2617), - [anon_sym_LT_EQ] = ACTIONS(2617), - [anon_sym_GT_EQ] = ACTIONS(2617), - [anon_sym_PIPE_GT] = ACTIONS(2617), - [anon_sym_LT_LT_LT] = ACTIONS(2617), - [anon_sym_GT_GT_GT] = ACTIONS(2617), - [anon_sym_LT_LT_TILDE] = ACTIONS(2617), - [anon_sym_TILDE_GT_GT] = ACTIONS(2617), - [anon_sym_LT_TILDE] = ACTIONS(2617), - [anon_sym_TILDE_GT] = ACTIONS(2617), - [anon_sym_LT_TILDE_GT] = ACTIONS(2617), - [anon_sym_LT_PIPE_GT] = ACTIONS(2617), - [anon_sym_in] = ACTIONS(2617), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2617), - [anon_sym_SLASH_SLASH] = ACTIONS(2617), - [anon_sym_PLUS_PLUS] = ACTIONS(2617), - [anon_sym_DASH_DASH] = ACTIONS(2617), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2617), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2617), - [anon_sym_DOT_DOT] = ACTIONS(2617), - [anon_sym_LT_GT] = ACTIONS(2617), - [anon_sym_STAR] = ACTIONS(2617), - [anon_sym_STAR_STAR] = ACTIONS(2617), - [anon_sym_CARET_CARET] = ACTIONS(2617), - [anon_sym_DASH_GT] = ACTIONS(2617), - [anon_sym_DOT] = ACTIONS(2617), - [anon_sym_do] = ACTIONS(2617), - [anon_sym_end] = ACTIONS(2617), - [anon_sym_fn] = ACTIONS(2617), - [anon_sym_LPAREN2] = ACTIONS(2615), - [anon_sym_LBRACK2] = ACTIONS(2615), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2615), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2615), - [sym__not_in] = ACTIONS(2615), - [sym__quoted_atom_start] = ACTIONS(2615), - }, - [973] = { - [aux_sym__terminator_token1] = ACTIONS(2611), - [anon_sym_SEMI] = ACTIONS(2613), - [anon_sym_LPAREN] = ACTIONS(2613), - [aux_sym_identifier_token1] = ACTIONS(2613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2613), - [sym_unused_identifier] = ACTIONS(2613), - [anon_sym___MODULE__] = ACTIONS(2613), - [anon_sym___DIR__] = ACTIONS(2613), - [anon_sym___ENV__] = ACTIONS(2613), - [anon_sym___CALLER__] = ACTIONS(2613), - [anon_sym___STACKTRACE__] = ACTIONS(2613), - [sym_alias] = ACTIONS(2613), - [sym_integer] = ACTIONS(2613), - [sym_float] = ACTIONS(2613), - [sym_char] = ACTIONS(2613), - [anon_sym_true] = ACTIONS(2613), - [anon_sym_false] = ACTIONS(2613), - [anon_sym_nil] = ACTIONS(2613), - [sym_atom] = ACTIONS(2613), - [anon_sym_DQUOTE] = ACTIONS(2613), - [anon_sym_SQUOTE] = ACTIONS(2613), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2613), - [anon_sym_LBRACE] = ACTIONS(2613), - [anon_sym_LBRACK] = ACTIONS(2613), - [anon_sym_LT] = ACTIONS(2613), - [anon_sym_GT] = ACTIONS(2613), - [anon_sym_PIPE] = ACTIONS(2613), - [anon_sym_SLASH] = ACTIONS(2613), - [anon_sym_TILDE] = ACTIONS(2613), - [anon_sym_COMMA] = ACTIONS(2613), - [sym_keyword] = ACTIONS(2613), - [anon_sym_LT_LT] = ACTIONS(2613), - [anon_sym_PERCENT] = ACTIONS(2613), - [anon_sym_AMP] = ACTIONS(2613), - [anon_sym_PLUS] = ACTIONS(2613), - [anon_sym_DASH] = ACTIONS(2613), - [anon_sym_BANG] = ACTIONS(2613), - [anon_sym_CARET] = ACTIONS(2613), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(2613), - [anon_sym_AT] = ACTIONS(2613), - [anon_sym_LT_DASH] = ACTIONS(2613), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2613), - [anon_sym_when] = ACTIONS(2613), - [anon_sym_COLON_COLON] = ACTIONS(2613), - [anon_sym_EQ_GT] = ACTIONS(2613), - [anon_sym_EQ] = ACTIONS(2613), - [anon_sym_PIPE_PIPE] = ACTIONS(2613), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2613), - [anon_sym_or] = ACTIONS(2613), - [anon_sym_AMP_AMP] = ACTIONS(2613), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2613), - [anon_sym_and] = ACTIONS(2613), - [anon_sym_EQ_EQ] = ACTIONS(2613), - [anon_sym_BANG_EQ] = ACTIONS(2613), - [anon_sym_EQ_TILDE] = ACTIONS(2613), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2613), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2613), - [anon_sym_LT_EQ] = ACTIONS(2613), - [anon_sym_GT_EQ] = ACTIONS(2613), - [anon_sym_PIPE_GT] = ACTIONS(2613), - [anon_sym_LT_LT_LT] = ACTIONS(2613), - [anon_sym_GT_GT_GT] = ACTIONS(2613), - [anon_sym_LT_LT_TILDE] = ACTIONS(2613), - [anon_sym_TILDE_GT_GT] = ACTIONS(2613), - [anon_sym_LT_TILDE] = ACTIONS(2613), - [anon_sym_TILDE_GT] = ACTIONS(2613), - [anon_sym_LT_TILDE_GT] = ACTIONS(2613), - [anon_sym_LT_PIPE_GT] = ACTIONS(2613), - [anon_sym_in] = ACTIONS(2613), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2613), - [anon_sym_SLASH_SLASH] = ACTIONS(2613), - [anon_sym_PLUS_PLUS] = ACTIONS(2613), - [anon_sym_DASH_DASH] = ACTIONS(2613), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2613), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2613), - [anon_sym_DOT_DOT] = ACTIONS(2613), - [anon_sym_LT_GT] = ACTIONS(2613), - [anon_sym_STAR] = ACTIONS(2613), - [anon_sym_STAR_STAR] = ACTIONS(2613), - [anon_sym_CARET_CARET] = ACTIONS(2613), - [anon_sym_DASH_GT] = ACTIONS(2613), - [anon_sym_DOT] = ACTIONS(2613), - [anon_sym_do] = ACTIONS(2613), - [anon_sym_end] = ACTIONS(2613), - [anon_sym_fn] = ACTIONS(2613), - [anon_sym_LPAREN2] = ACTIONS(2611), - [anon_sym_LBRACK2] = ACTIONS(2611), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2611), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2611), - [sym__not_in] = ACTIONS(2611), - [sym__quoted_atom_start] = ACTIONS(2611), - }, - [974] = { - [aux_sym__terminator_token1] = ACTIONS(2611), - [anon_sym_SEMI] = ACTIONS(2613), - [anon_sym_LPAREN] = ACTIONS(2613), - [aux_sym_identifier_token1] = ACTIONS(2613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2613), - [sym_unused_identifier] = ACTIONS(2613), - [anon_sym___MODULE__] = ACTIONS(2613), - [anon_sym___DIR__] = ACTIONS(2613), - [anon_sym___ENV__] = ACTIONS(2613), - [anon_sym___CALLER__] = ACTIONS(2613), - [anon_sym___STACKTRACE__] = ACTIONS(2613), - [sym_alias] = ACTIONS(2613), - [sym_integer] = ACTIONS(2613), - [sym_float] = ACTIONS(2613), - [sym_char] = ACTIONS(2613), - [anon_sym_true] = ACTIONS(2613), - [anon_sym_false] = ACTIONS(2613), - [anon_sym_nil] = ACTIONS(2613), - [sym_atom] = ACTIONS(2613), - [anon_sym_DQUOTE] = ACTIONS(2613), - [anon_sym_SQUOTE] = ACTIONS(2613), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2613), - [anon_sym_LBRACE] = ACTIONS(2613), - [anon_sym_LBRACK] = ACTIONS(2613), - [anon_sym_LT] = ACTIONS(2613), - [anon_sym_GT] = ACTIONS(2613), - [anon_sym_PIPE] = ACTIONS(2613), - [anon_sym_SLASH] = ACTIONS(2613), - [anon_sym_TILDE] = ACTIONS(2613), - [anon_sym_COMMA] = ACTIONS(2613), - [sym_keyword] = ACTIONS(2613), - [anon_sym_LT_LT] = ACTIONS(2613), - [anon_sym_PERCENT] = ACTIONS(2613), - [anon_sym_AMP] = ACTIONS(2613), - [anon_sym_PLUS] = ACTIONS(2613), - [anon_sym_DASH] = ACTIONS(2613), - [anon_sym_BANG] = ACTIONS(2613), - [anon_sym_CARET] = ACTIONS(2613), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(2613), - [anon_sym_AT] = ACTIONS(2613), - [anon_sym_LT_DASH] = ACTIONS(2613), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2613), - [anon_sym_when] = ACTIONS(2613), - [anon_sym_COLON_COLON] = ACTIONS(2613), - [anon_sym_EQ_GT] = ACTIONS(2613), - [anon_sym_EQ] = ACTIONS(2613), - [anon_sym_PIPE_PIPE] = ACTIONS(2613), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2613), - [anon_sym_or] = ACTIONS(2613), - [anon_sym_AMP_AMP] = ACTIONS(2613), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2613), - [anon_sym_and] = ACTIONS(2613), - [anon_sym_EQ_EQ] = ACTIONS(2613), - [anon_sym_BANG_EQ] = ACTIONS(2613), - [anon_sym_EQ_TILDE] = ACTIONS(2613), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2613), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2613), - [anon_sym_LT_EQ] = ACTIONS(2613), - [anon_sym_GT_EQ] = ACTIONS(2613), - [anon_sym_PIPE_GT] = ACTIONS(2613), - [anon_sym_LT_LT_LT] = ACTIONS(2613), - [anon_sym_GT_GT_GT] = ACTIONS(2613), - [anon_sym_LT_LT_TILDE] = ACTIONS(2613), - [anon_sym_TILDE_GT_GT] = ACTIONS(2613), - [anon_sym_LT_TILDE] = ACTIONS(2613), - [anon_sym_TILDE_GT] = ACTIONS(2613), - [anon_sym_LT_TILDE_GT] = ACTIONS(2613), - [anon_sym_LT_PIPE_GT] = ACTIONS(2613), - [anon_sym_in] = ACTIONS(2613), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2613), - [anon_sym_SLASH_SLASH] = ACTIONS(2613), - [anon_sym_PLUS_PLUS] = ACTIONS(2613), - [anon_sym_DASH_DASH] = ACTIONS(2613), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2613), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2613), - [anon_sym_DOT_DOT] = ACTIONS(2613), - [anon_sym_LT_GT] = ACTIONS(2613), - [anon_sym_STAR] = ACTIONS(2613), - [anon_sym_STAR_STAR] = ACTIONS(2613), - [anon_sym_CARET_CARET] = ACTIONS(2613), - [anon_sym_DASH_GT] = ACTIONS(2613), - [anon_sym_DOT] = ACTIONS(2613), - [anon_sym_do] = ACTIONS(2613), - [anon_sym_end] = ACTIONS(2613), - [anon_sym_fn] = ACTIONS(2613), - [anon_sym_LPAREN2] = ACTIONS(2611), - [anon_sym_LBRACK2] = ACTIONS(2611), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2611), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2611), - [sym__not_in] = ACTIONS(2611), - [sym__quoted_atom_start] = ACTIONS(2611), - }, - [975] = { - [aux_sym__terminator_token1] = ACTIONS(2615), - [anon_sym_SEMI] = ACTIONS(2617), - [anon_sym_LPAREN] = ACTIONS(2617), - [aux_sym_identifier_token1] = ACTIONS(2617), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2617), - [sym_unused_identifier] = ACTIONS(2617), - [anon_sym___MODULE__] = ACTIONS(2617), - [anon_sym___DIR__] = ACTIONS(2617), - [anon_sym___ENV__] = ACTIONS(2617), - [anon_sym___CALLER__] = ACTIONS(2617), - [anon_sym___STACKTRACE__] = ACTIONS(2617), - [sym_alias] = ACTIONS(2617), - [sym_integer] = ACTIONS(2617), - [sym_float] = ACTIONS(2617), - [sym_char] = ACTIONS(2617), - [anon_sym_true] = ACTIONS(2617), - [anon_sym_false] = ACTIONS(2617), - [anon_sym_nil] = ACTIONS(2617), - [sym_atom] = ACTIONS(2617), - [anon_sym_DQUOTE] = ACTIONS(2617), - [anon_sym_SQUOTE] = ACTIONS(2617), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2617), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2617), - [anon_sym_LBRACK] = ACTIONS(2617), - [anon_sym_LT] = ACTIONS(2617), - [anon_sym_GT] = ACTIONS(2617), - [anon_sym_PIPE] = ACTIONS(2617), - [anon_sym_SLASH] = ACTIONS(2617), - [anon_sym_TILDE] = ACTIONS(2617), - [anon_sym_COMMA] = ACTIONS(2617), - [sym_keyword] = ACTIONS(2617), - [anon_sym_LT_LT] = ACTIONS(2617), - [anon_sym_PERCENT] = ACTIONS(2617), - [anon_sym_AMP] = ACTIONS(2617), - [anon_sym_PLUS] = ACTIONS(2617), - [anon_sym_DASH] = ACTIONS(2617), - [anon_sym_BANG] = ACTIONS(2617), - [anon_sym_CARET] = ACTIONS(2617), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2617), - [anon_sym_not] = ACTIONS(2617), - [anon_sym_AT] = ACTIONS(2617), - [anon_sym_LT_DASH] = ACTIONS(2617), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2617), - [anon_sym_when] = ACTIONS(2617), - [anon_sym_COLON_COLON] = ACTIONS(2617), - [anon_sym_EQ_GT] = ACTIONS(2617), - [anon_sym_EQ] = ACTIONS(2617), - [anon_sym_PIPE_PIPE] = ACTIONS(2617), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2617), - [anon_sym_or] = ACTIONS(2617), - [anon_sym_AMP_AMP] = ACTIONS(2617), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2617), - [anon_sym_and] = ACTIONS(2617), - [anon_sym_EQ_EQ] = ACTIONS(2617), - [anon_sym_BANG_EQ] = ACTIONS(2617), - [anon_sym_EQ_TILDE] = ACTIONS(2617), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2617), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2617), - [anon_sym_LT_EQ] = ACTIONS(2617), - [anon_sym_GT_EQ] = ACTIONS(2617), - [anon_sym_PIPE_GT] = ACTIONS(2617), - [anon_sym_LT_LT_LT] = ACTIONS(2617), - [anon_sym_GT_GT_GT] = ACTIONS(2617), - [anon_sym_LT_LT_TILDE] = ACTIONS(2617), - [anon_sym_TILDE_GT_GT] = ACTIONS(2617), - [anon_sym_LT_TILDE] = ACTIONS(2617), - [anon_sym_TILDE_GT] = ACTIONS(2617), - [anon_sym_LT_TILDE_GT] = ACTIONS(2617), - [anon_sym_LT_PIPE_GT] = ACTIONS(2617), - [anon_sym_in] = ACTIONS(2617), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2617), - [anon_sym_SLASH_SLASH] = ACTIONS(2617), - [anon_sym_PLUS_PLUS] = ACTIONS(2617), - [anon_sym_DASH_DASH] = ACTIONS(2617), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2617), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2617), - [anon_sym_DOT_DOT] = ACTIONS(2617), - [anon_sym_LT_GT] = ACTIONS(2617), - [anon_sym_STAR] = ACTIONS(2617), - [anon_sym_STAR_STAR] = ACTIONS(2617), - [anon_sym_CARET_CARET] = ACTIONS(2617), - [anon_sym_DASH_GT] = ACTIONS(2617), - [anon_sym_DOT] = ACTIONS(2617), - [anon_sym_do] = ACTIONS(2617), - [anon_sym_end] = ACTIONS(2617), - [anon_sym_fn] = ACTIONS(2617), - [anon_sym_LPAREN2] = ACTIONS(2615), - [anon_sym_LBRACK2] = ACTIONS(2615), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2615), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2615), - [sym__not_in] = ACTIONS(2615), - [sym__quoted_atom_start] = ACTIONS(2615), - }, - [976] = { - [ts_builtin_sym_end] = ACTIONS(2631), - [aux_sym__terminator_token1] = ACTIONS(2631), - [anon_sym_SEMI] = ACTIONS(2633), - [anon_sym_LPAREN] = ACTIONS(2633), - [aux_sym_identifier_token1] = ACTIONS(2633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2633), - [sym_unused_identifier] = ACTIONS(2633), - [anon_sym___MODULE__] = ACTIONS(2633), - [anon_sym___DIR__] = ACTIONS(2633), - [anon_sym___ENV__] = ACTIONS(2633), - [anon_sym___CALLER__] = ACTIONS(2633), - [anon_sym___STACKTRACE__] = ACTIONS(2633), - [sym_alias] = ACTIONS(2633), - [sym_integer] = ACTIONS(2633), - [sym_float] = ACTIONS(2633), - [sym_char] = ACTIONS(2633), - [anon_sym_true] = ACTIONS(2633), - [anon_sym_false] = ACTIONS(2633), - [anon_sym_nil] = ACTIONS(2633), - [sym_atom] = ACTIONS(2633), - [anon_sym_DQUOTE] = ACTIONS(2633), - [anon_sym_SQUOTE] = ACTIONS(2633), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2633), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2633), - [anon_sym_LBRACE] = ACTIONS(2633), - [anon_sym_LBRACK] = ACTIONS(2633), - [anon_sym_LT] = ACTIONS(2633), - [anon_sym_GT] = ACTIONS(2633), - [anon_sym_PIPE] = ACTIONS(2633), - [anon_sym_SLASH] = ACTIONS(2633), - [anon_sym_TILDE] = ACTIONS(2633), - [anon_sym_COMMA] = ACTIONS(2633), - [sym_keyword] = ACTIONS(2633), - [anon_sym_LT_LT] = ACTIONS(2633), - [anon_sym_PERCENT] = ACTIONS(2633), - [anon_sym_AMP] = ACTIONS(2633), - [anon_sym_PLUS] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2633), - [anon_sym_BANG] = ACTIONS(2633), - [anon_sym_CARET] = ACTIONS(2633), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2633), - [anon_sym_not] = ACTIONS(2633), - [anon_sym_AT] = ACTIONS(2633), - [anon_sym_LT_DASH] = ACTIONS(2633), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2633), - [anon_sym_when] = ACTIONS(2633), - [anon_sym_COLON_COLON] = ACTIONS(2633), - [anon_sym_EQ_GT] = ACTIONS(2633), - [anon_sym_EQ] = ACTIONS(2633), - [anon_sym_PIPE_PIPE] = ACTIONS(2633), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2633), - [anon_sym_or] = ACTIONS(2633), - [anon_sym_AMP_AMP] = ACTIONS(2633), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2633), - [anon_sym_and] = ACTIONS(2633), - [anon_sym_EQ_EQ] = ACTIONS(2633), - [anon_sym_BANG_EQ] = ACTIONS(2633), - [anon_sym_EQ_TILDE] = ACTIONS(2633), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2633), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2633), - [anon_sym_LT_EQ] = ACTIONS(2633), - [anon_sym_GT_EQ] = ACTIONS(2633), - [anon_sym_PIPE_GT] = ACTIONS(2633), - [anon_sym_LT_LT_LT] = ACTIONS(2633), - [anon_sym_GT_GT_GT] = ACTIONS(2633), - [anon_sym_LT_LT_TILDE] = ACTIONS(2633), - [anon_sym_TILDE_GT_GT] = ACTIONS(2633), - [anon_sym_LT_TILDE] = ACTIONS(2633), - [anon_sym_TILDE_GT] = ACTIONS(2633), - [anon_sym_LT_TILDE_GT] = ACTIONS(2633), - [anon_sym_LT_PIPE_GT] = ACTIONS(2633), - [anon_sym_in] = ACTIONS(2633), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2633), - [anon_sym_SLASH_SLASH] = ACTIONS(2633), - [anon_sym_PLUS_PLUS] = ACTIONS(2633), - [anon_sym_DASH_DASH] = ACTIONS(2633), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2633), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2633), - [anon_sym_DOT_DOT] = ACTIONS(2633), - [anon_sym_LT_GT] = ACTIONS(2633), - [anon_sym_STAR] = ACTIONS(2633), - [anon_sym_STAR_STAR] = ACTIONS(2633), - [anon_sym_CARET_CARET] = ACTIONS(2633), - [anon_sym_DASH_GT] = ACTIONS(2633), - [anon_sym_DOT] = ACTIONS(2633), - [anon_sym_do] = ACTIONS(2633), - [anon_sym_fn] = ACTIONS(2633), - [anon_sym_LPAREN2] = ACTIONS(2631), - [anon_sym_LBRACK2] = ACTIONS(2631), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2631), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2631), - [sym__not_in] = ACTIONS(2631), - [sym__quoted_atom_start] = ACTIONS(2631), - }, - [977] = { - [ts_builtin_sym_end] = ACTIONS(2651), - [aux_sym__terminator_token1] = ACTIONS(2651), - [anon_sym_SEMI] = ACTIONS(2653), - [anon_sym_LPAREN] = ACTIONS(2653), - [aux_sym_identifier_token1] = ACTIONS(2653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2653), - [sym_unused_identifier] = ACTIONS(2653), - [anon_sym___MODULE__] = ACTIONS(2653), - [anon_sym___DIR__] = ACTIONS(2653), - [anon_sym___ENV__] = ACTIONS(2653), - [anon_sym___CALLER__] = ACTIONS(2653), - [anon_sym___STACKTRACE__] = ACTIONS(2653), - [sym_alias] = ACTIONS(2653), - [sym_integer] = ACTIONS(2653), - [sym_float] = ACTIONS(2653), - [sym_char] = ACTIONS(2653), - [anon_sym_true] = ACTIONS(2653), - [anon_sym_false] = ACTIONS(2653), - [anon_sym_nil] = ACTIONS(2653), - [sym_atom] = ACTIONS(2653), - [anon_sym_DQUOTE] = ACTIONS(2653), - [anon_sym_SQUOTE] = ACTIONS(2653), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2653), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2653), - [anon_sym_LBRACK] = ACTIONS(2653), - [anon_sym_LT] = ACTIONS(2653), - [anon_sym_GT] = ACTIONS(2653), - [anon_sym_PIPE] = ACTIONS(2653), - [anon_sym_SLASH] = ACTIONS(2653), - [anon_sym_TILDE] = ACTIONS(2653), - [anon_sym_COMMA] = ACTIONS(2653), - [sym_keyword] = ACTIONS(2653), - [anon_sym_LT_LT] = ACTIONS(2653), - [anon_sym_PERCENT] = ACTIONS(2653), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_PLUS] = ACTIONS(2653), - [anon_sym_DASH] = ACTIONS(2653), - [anon_sym_BANG] = ACTIONS(2653), - [anon_sym_CARET] = ACTIONS(2653), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2653), - [anon_sym_not] = ACTIONS(2653), - [anon_sym_AT] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2653), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2653), - [anon_sym_when] = ACTIONS(2653), - [anon_sym_COLON_COLON] = ACTIONS(2653), - [anon_sym_EQ_GT] = ACTIONS(2653), - [anon_sym_EQ] = ACTIONS(2653), - [anon_sym_PIPE_PIPE] = ACTIONS(2653), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2653), - [anon_sym_or] = ACTIONS(2653), - [anon_sym_AMP_AMP] = ACTIONS(2653), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2653), - [anon_sym_and] = ACTIONS(2653), - [anon_sym_EQ_EQ] = ACTIONS(2653), - [anon_sym_BANG_EQ] = ACTIONS(2653), - [anon_sym_EQ_TILDE] = ACTIONS(2653), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2653), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2653), - [anon_sym_LT_EQ] = ACTIONS(2653), - [anon_sym_GT_EQ] = ACTIONS(2653), - [anon_sym_PIPE_GT] = ACTIONS(2653), - [anon_sym_LT_LT_LT] = ACTIONS(2653), - [anon_sym_GT_GT_GT] = ACTIONS(2653), - [anon_sym_LT_LT_TILDE] = ACTIONS(2653), - [anon_sym_TILDE_GT_GT] = ACTIONS(2653), - [anon_sym_LT_TILDE] = ACTIONS(2653), - [anon_sym_TILDE_GT] = ACTIONS(2653), - [anon_sym_LT_TILDE_GT] = ACTIONS(2653), - [anon_sym_LT_PIPE_GT] = ACTIONS(2653), - [anon_sym_in] = ACTIONS(2653), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2653), - [anon_sym_SLASH_SLASH] = ACTIONS(2653), - [anon_sym_PLUS_PLUS] = ACTIONS(2653), - [anon_sym_DASH_DASH] = ACTIONS(2653), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2653), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2653), - [anon_sym_DOT_DOT] = ACTIONS(2653), - [anon_sym_LT_GT] = ACTIONS(2653), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_STAR_STAR] = ACTIONS(2653), - [anon_sym_CARET_CARET] = ACTIONS(2653), - [anon_sym_DASH_GT] = ACTIONS(2653), - [anon_sym_DOT] = ACTIONS(2653), - [anon_sym_do] = ACTIONS(2653), - [anon_sym_fn] = ACTIONS(2653), - [anon_sym_LPAREN2] = ACTIONS(2651), - [anon_sym_LBRACK2] = ACTIONS(2651), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2651), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2651), - [sym__not_in] = ACTIONS(2651), - [sym__quoted_atom_start] = ACTIONS(2651), - }, - [978] = { - [aux_sym__terminator_token1] = ACTIONS(2627), - [anon_sym_SEMI] = ACTIONS(2629), - [anon_sym_LPAREN] = ACTIONS(2629), - [anon_sym_RPAREN] = ACTIONS(2629), - [aux_sym_identifier_token1] = ACTIONS(2629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2629), - [sym_unused_identifier] = ACTIONS(2629), - [anon_sym___MODULE__] = ACTIONS(2629), - [anon_sym___DIR__] = ACTIONS(2629), - [anon_sym___ENV__] = ACTIONS(2629), - [anon_sym___CALLER__] = ACTIONS(2629), - [anon_sym___STACKTRACE__] = ACTIONS(2629), - [sym_alias] = ACTIONS(2629), - [sym_integer] = ACTIONS(2629), - [sym_float] = ACTIONS(2629), - [sym_char] = ACTIONS(2629), - [anon_sym_true] = ACTIONS(2629), - [anon_sym_false] = ACTIONS(2629), - [anon_sym_nil] = ACTIONS(2629), - [sym_atom] = ACTIONS(2629), - [anon_sym_DQUOTE] = ACTIONS(2629), - [anon_sym_SQUOTE] = ACTIONS(2629), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2629), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(2629), - [anon_sym_LBRACK] = ACTIONS(2629), - [anon_sym_LT] = ACTIONS(2629), - [anon_sym_GT] = ACTIONS(2629), - [anon_sym_PIPE] = ACTIONS(2629), - [anon_sym_SLASH] = ACTIONS(2629), - [anon_sym_TILDE] = ACTIONS(2629), - [anon_sym_COMMA] = ACTIONS(2629), - [sym_keyword] = ACTIONS(2629), - [anon_sym_LT_LT] = ACTIONS(2629), - [anon_sym_PERCENT] = ACTIONS(2629), - [anon_sym_AMP] = ACTIONS(2629), - [anon_sym_PLUS] = ACTIONS(2629), - [anon_sym_DASH] = ACTIONS(2629), - [anon_sym_BANG] = ACTIONS(2629), - [anon_sym_CARET] = ACTIONS(2629), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2629), - [anon_sym_not] = ACTIONS(2629), - [anon_sym_AT] = ACTIONS(2629), - [anon_sym_LT_DASH] = ACTIONS(2629), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2629), - [anon_sym_when] = ACTIONS(2629), - [anon_sym_COLON_COLON] = ACTIONS(2629), - [anon_sym_EQ_GT] = ACTIONS(2629), - [anon_sym_EQ] = ACTIONS(2629), - [anon_sym_PIPE_PIPE] = ACTIONS(2629), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2629), - [anon_sym_or] = ACTIONS(2629), - [anon_sym_AMP_AMP] = ACTIONS(2629), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2629), - [anon_sym_and] = ACTIONS(2629), - [anon_sym_EQ_EQ] = ACTIONS(2629), - [anon_sym_BANG_EQ] = ACTIONS(2629), - [anon_sym_EQ_TILDE] = ACTIONS(2629), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2629), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2629), - [anon_sym_LT_EQ] = ACTIONS(2629), - [anon_sym_GT_EQ] = ACTIONS(2629), - [anon_sym_PIPE_GT] = ACTIONS(2629), - [anon_sym_LT_LT_LT] = ACTIONS(2629), - [anon_sym_GT_GT_GT] = ACTIONS(2629), - [anon_sym_LT_LT_TILDE] = ACTIONS(2629), - [anon_sym_TILDE_GT_GT] = ACTIONS(2629), - [anon_sym_LT_TILDE] = ACTIONS(2629), - [anon_sym_TILDE_GT] = ACTIONS(2629), - [anon_sym_LT_TILDE_GT] = ACTIONS(2629), - [anon_sym_LT_PIPE_GT] = ACTIONS(2629), - [anon_sym_in] = ACTIONS(2629), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2629), - [anon_sym_SLASH_SLASH] = ACTIONS(2629), - [anon_sym_PLUS_PLUS] = ACTIONS(2629), - [anon_sym_DASH_DASH] = ACTIONS(2629), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2629), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2629), - [anon_sym_DOT_DOT] = ACTIONS(2629), - [anon_sym_LT_GT] = ACTIONS(2629), - [anon_sym_STAR] = ACTIONS(2629), - [anon_sym_STAR_STAR] = ACTIONS(2629), - [anon_sym_CARET_CARET] = ACTIONS(2629), - [anon_sym_DASH_GT] = ACTIONS(2629), - [anon_sym_DOT] = ACTIONS(2629), - [anon_sym_do] = ACTIONS(2629), - [anon_sym_fn] = ACTIONS(2629), - [anon_sym_LPAREN2] = ACTIONS(2627), - [anon_sym_LBRACK2] = ACTIONS(2627), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2627), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2627), - [sym__not_in] = ACTIONS(2627), - [sym__quoted_atom_start] = ACTIONS(2627), - }, - [979] = { - [aux_sym__terminator_token1] = ACTIONS(2615), - [anon_sym_SEMI] = ACTIONS(2617), - [anon_sym_LPAREN] = ACTIONS(2617), - [anon_sym_RPAREN] = ACTIONS(2617), - [aux_sym_identifier_token1] = ACTIONS(2617), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2617), - [sym_unused_identifier] = ACTIONS(2617), - [anon_sym___MODULE__] = ACTIONS(2617), - [anon_sym___DIR__] = ACTIONS(2617), - [anon_sym___ENV__] = ACTIONS(2617), - [anon_sym___CALLER__] = ACTIONS(2617), - [anon_sym___STACKTRACE__] = ACTIONS(2617), - [sym_alias] = ACTIONS(2617), - [sym_integer] = ACTIONS(2617), - [sym_float] = ACTIONS(2617), - [sym_char] = ACTIONS(2617), - [anon_sym_true] = ACTIONS(2617), - [anon_sym_false] = ACTIONS(2617), - [anon_sym_nil] = ACTIONS(2617), - [sym_atom] = ACTIONS(2617), - [anon_sym_DQUOTE] = ACTIONS(2617), - [anon_sym_SQUOTE] = ACTIONS(2617), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2617), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2617), - [anon_sym_LBRACK] = ACTIONS(2617), - [anon_sym_LT] = ACTIONS(2617), - [anon_sym_GT] = ACTIONS(2617), - [anon_sym_PIPE] = ACTIONS(2617), - [anon_sym_SLASH] = ACTIONS(2617), - [anon_sym_TILDE] = ACTIONS(2617), - [anon_sym_COMMA] = ACTIONS(2617), - [sym_keyword] = ACTIONS(2617), - [anon_sym_LT_LT] = ACTIONS(2617), - [anon_sym_PERCENT] = ACTIONS(2617), - [anon_sym_AMP] = ACTIONS(2617), - [anon_sym_PLUS] = ACTIONS(2617), - [anon_sym_DASH] = ACTIONS(2617), - [anon_sym_BANG] = ACTIONS(2617), - [anon_sym_CARET] = ACTIONS(2617), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2617), - [anon_sym_not] = ACTIONS(2617), - [anon_sym_AT] = ACTIONS(2617), - [anon_sym_LT_DASH] = ACTIONS(2617), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2617), - [anon_sym_when] = ACTIONS(2617), - [anon_sym_COLON_COLON] = ACTIONS(2617), - [anon_sym_EQ_GT] = ACTIONS(2617), - [anon_sym_EQ] = ACTIONS(2617), - [anon_sym_PIPE_PIPE] = ACTIONS(2617), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2617), - [anon_sym_or] = ACTIONS(2617), - [anon_sym_AMP_AMP] = ACTIONS(2617), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2617), - [anon_sym_and] = ACTIONS(2617), - [anon_sym_EQ_EQ] = ACTIONS(2617), - [anon_sym_BANG_EQ] = ACTIONS(2617), - [anon_sym_EQ_TILDE] = ACTIONS(2617), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2617), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2617), - [anon_sym_LT_EQ] = ACTIONS(2617), - [anon_sym_GT_EQ] = ACTIONS(2617), - [anon_sym_PIPE_GT] = ACTIONS(2617), - [anon_sym_LT_LT_LT] = ACTIONS(2617), - [anon_sym_GT_GT_GT] = ACTIONS(2617), - [anon_sym_LT_LT_TILDE] = ACTIONS(2617), - [anon_sym_TILDE_GT_GT] = ACTIONS(2617), - [anon_sym_LT_TILDE] = ACTIONS(2617), - [anon_sym_TILDE_GT] = ACTIONS(2617), - [anon_sym_LT_TILDE_GT] = ACTIONS(2617), - [anon_sym_LT_PIPE_GT] = ACTIONS(2617), - [anon_sym_in] = ACTIONS(2617), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2617), - [anon_sym_SLASH_SLASH] = ACTIONS(2617), - [anon_sym_PLUS_PLUS] = ACTIONS(2617), - [anon_sym_DASH_DASH] = ACTIONS(2617), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2617), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2617), - [anon_sym_DOT_DOT] = ACTIONS(2617), - [anon_sym_LT_GT] = ACTIONS(2617), - [anon_sym_STAR] = ACTIONS(2617), - [anon_sym_STAR_STAR] = ACTIONS(2617), - [anon_sym_CARET_CARET] = ACTIONS(2617), - [anon_sym_DASH_GT] = ACTIONS(2617), - [anon_sym_DOT] = ACTIONS(2617), - [anon_sym_do] = ACTIONS(2617), - [anon_sym_fn] = ACTIONS(2617), - [anon_sym_LPAREN2] = ACTIONS(2615), - [anon_sym_LBRACK2] = ACTIONS(2615), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2615), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2615), - [sym__not_in] = ACTIONS(2615), - [sym__quoted_atom_start] = ACTIONS(2615), - }, - [980] = { - [aux_sym__terminator_token1] = ACTIONS(2611), - [anon_sym_SEMI] = ACTIONS(2613), - [anon_sym_LPAREN] = ACTIONS(2613), - [anon_sym_RPAREN] = ACTIONS(2613), - [aux_sym_identifier_token1] = ACTIONS(2613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2613), - [sym_unused_identifier] = ACTIONS(2613), - [anon_sym___MODULE__] = ACTIONS(2613), - [anon_sym___DIR__] = ACTIONS(2613), - [anon_sym___ENV__] = ACTIONS(2613), - [anon_sym___CALLER__] = ACTIONS(2613), - [anon_sym___STACKTRACE__] = ACTIONS(2613), - [sym_alias] = ACTIONS(2613), - [sym_integer] = ACTIONS(2613), - [sym_float] = ACTIONS(2613), - [sym_char] = ACTIONS(2613), - [anon_sym_true] = ACTIONS(2613), - [anon_sym_false] = ACTIONS(2613), - [anon_sym_nil] = ACTIONS(2613), - [sym_atom] = ACTIONS(2613), - [anon_sym_DQUOTE] = ACTIONS(2613), - [anon_sym_SQUOTE] = ACTIONS(2613), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2613), - [anon_sym_LBRACE] = ACTIONS(2613), - [anon_sym_LBRACK] = ACTIONS(2613), - [anon_sym_LT] = ACTIONS(2613), - [anon_sym_GT] = ACTIONS(2613), - [anon_sym_PIPE] = ACTIONS(2613), - [anon_sym_SLASH] = ACTIONS(2613), - [anon_sym_TILDE] = ACTIONS(2613), - [anon_sym_COMMA] = ACTIONS(2613), - [sym_keyword] = ACTIONS(2613), - [anon_sym_LT_LT] = ACTIONS(2613), - [anon_sym_PERCENT] = ACTIONS(2613), - [anon_sym_AMP] = ACTIONS(2613), - [anon_sym_PLUS] = ACTIONS(2613), - [anon_sym_DASH] = ACTIONS(2613), - [anon_sym_BANG] = ACTIONS(2613), - [anon_sym_CARET] = ACTIONS(2613), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(2613), - [anon_sym_AT] = ACTIONS(2613), - [anon_sym_LT_DASH] = ACTIONS(2613), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2613), - [anon_sym_when] = ACTIONS(2613), - [anon_sym_COLON_COLON] = ACTIONS(2613), - [anon_sym_EQ_GT] = ACTIONS(2613), - [anon_sym_EQ] = ACTIONS(2613), - [anon_sym_PIPE_PIPE] = ACTIONS(2613), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2613), - [anon_sym_or] = ACTIONS(2613), - [anon_sym_AMP_AMP] = ACTIONS(2613), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2613), - [anon_sym_and] = ACTIONS(2613), - [anon_sym_EQ_EQ] = ACTIONS(2613), - [anon_sym_BANG_EQ] = ACTIONS(2613), - [anon_sym_EQ_TILDE] = ACTIONS(2613), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2613), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2613), - [anon_sym_LT_EQ] = ACTIONS(2613), - [anon_sym_GT_EQ] = ACTIONS(2613), - [anon_sym_PIPE_GT] = ACTIONS(2613), - [anon_sym_LT_LT_LT] = ACTIONS(2613), - [anon_sym_GT_GT_GT] = ACTIONS(2613), - [anon_sym_LT_LT_TILDE] = ACTIONS(2613), - [anon_sym_TILDE_GT_GT] = ACTIONS(2613), - [anon_sym_LT_TILDE] = ACTIONS(2613), - [anon_sym_TILDE_GT] = ACTIONS(2613), - [anon_sym_LT_TILDE_GT] = ACTIONS(2613), - [anon_sym_LT_PIPE_GT] = ACTIONS(2613), - [anon_sym_in] = ACTIONS(2613), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2613), - [anon_sym_SLASH_SLASH] = ACTIONS(2613), - [anon_sym_PLUS_PLUS] = ACTIONS(2613), - [anon_sym_DASH_DASH] = ACTIONS(2613), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2613), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2613), - [anon_sym_DOT_DOT] = ACTIONS(2613), - [anon_sym_LT_GT] = ACTIONS(2613), - [anon_sym_STAR] = ACTIONS(2613), - [anon_sym_STAR_STAR] = ACTIONS(2613), - [anon_sym_CARET_CARET] = ACTIONS(2613), - [anon_sym_DASH_GT] = ACTIONS(2613), - [anon_sym_DOT] = ACTIONS(2613), - [anon_sym_do] = ACTIONS(2613), - [anon_sym_fn] = ACTIONS(2613), - [anon_sym_LPAREN2] = ACTIONS(2611), - [anon_sym_LBRACK2] = ACTIONS(2611), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2611), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2611), - [sym__not_in] = ACTIONS(2611), - [sym__quoted_atom_start] = ACTIONS(2611), - }, - [981] = { - [ts_builtin_sym_end] = ACTIONS(2639), - [aux_sym__terminator_token1] = ACTIONS(2639), - [anon_sym_SEMI] = ACTIONS(2641), - [anon_sym_LPAREN] = ACTIONS(2641), - [aux_sym_identifier_token1] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2641), - [sym_unused_identifier] = ACTIONS(2641), - [anon_sym___MODULE__] = ACTIONS(2641), - [anon_sym___DIR__] = ACTIONS(2641), - [anon_sym___ENV__] = ACTIONS(2641), - [anon_sym___CALLER__] = ACTIONS(2641), - [anon_sym___STACKTRACE__] = ACTIONS(2641), - [sym_alias] = ACTIONS(2641), - [sym_integer] = ACTIONS(2641), - [sym_float] = ACTIONS(2641), - [sym_char] = ACTIONS(2641), - [anon_sym_true] = ACTIONS(2641), - [anon_sym_false] = ACTIONS(2641), - [anon_sym_nil] = ACTIONS(2641), - [sym_atom] = ACTIONS(2641), - [anon_sym_DQUOTE] = ACTIONS(2641), - [anon_sym_SQUOTE] = ACTIONS(2641), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2641), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2641), - [anon_sym_LBRACE] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_LT] = ACTIONS(2641), - [anon_sym_GT] = ACTIONS(2641), - [anon_sym_PIPE] = ACTIONS(2641), - [anon_sym_SLASH] = ACTIONS(2641), - [anon_sym_TILDE] = ACTIONS(2641), - [anon_sym_COMMA] = ACTIONS(2641), - [sym_keyword] = ACTIONS(2641), - [anon_sym_LT_LT] = ACTIONS(2641), - [anon_sym_PERCENT] = ACTIONS(2641), - [anon_sym_AMP] = ACTIONS(2641), - [anon_sym_PLUS] = ACTIONS(2641), - [anon_sym_DASH] = ACTIONS(2641), - [anon_sym_BANG] = ACTIONS(2641), - [anon_sym_CARET] = ACTIONS(2641), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2641), - [anon_sym_not] = ACTIONS(2641), - [anon_sym_AT] = ACTIONS(2641), - [anon_sym_LT_DASH] = ACTIONS(2641), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2641), - [anon_sym_when] = ACTIONS(2641), - [anon_sym_COLON_COLON] = ACTIONS(2641), - [anon_sym_EQ_GT] = ACTIONS(2641), - [anon_sym_EQ] = ACTIONS(2641), - [anon_sym_PIPE_PIPE] = ACTIONS(2641), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2641), - [anon_sym_or] = ACTIONS(2641), - [anon_sym_AMP_AMP] = ACTIONS(2641), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2641), - [anon_sym_and] = ACTIONS(2641), - [anon_sym_EQ_EQ] = ACTIONS(2641), - [anon_sym_BANG_EQ] = ACTIONS(2641), - [anon_sym_EQ_TILDE] = ACTIONS(2641), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2641), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2641), - [anon_sym_LT_EQ] = ACTIONS(2641), - [anon_sym_GT_EQ] = ACTIONS(2641), - [anon_sym_PIPE_GT] = ACTIONS(2641), - [anon_sym_LT_LT_LT] = ACTIONS(2641), - [anon_sym_GT_GT_GT] = ACTIONS(2641), - [anon_sym_LT_LT_TILDE] = ACTIONS(2641), - [anon_sym_TILDE_GT_GT] = ACTIONS(2641), - [anon_sym_LT_TILDE] = ACTIONS(2641), - [anon_sym_TILDE_GT] = ACTIONS(2641), - [anon_sym_LT_TILDE_GT] = ACTIONS(2641), - [anon_sym_LT_PIPE_GT] = ACTIONS(2641), - [anon_sym_in] = ACTIONS(2641), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2641), - [anon_sym_SLASH_SLASH] = ACTIONS(2641), - [anon_sym_PLUS_PLUS] = ACTIONS(2641), - [anon_sym_DASH_DASH] = ACTIONS(2641), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2641), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2641), - [anon_sym_DOT_DOT] = ACTIONS(2641), - [anon_sym_LT_GT] = ACTIONS(2641), - [anon_sym_STAR] = ACTIONS(2641), - [anon_sym_STAR_STAR] = ACTIONS(2641), - [anon_sym_CARET_CARET] = ACTIONS(2641), - [anon_sym_DASH_GT] = ACTIONS(2641), - [anon_sym_DOT] = ACTIONS(2641), - [anon_sym_do] = ACTIONS(2641), - [anon_sym_fn] = ACTIONS(2641), - [anon_sym_LPAREN2] = ACTIONS(2639), - [anon_sym_LBRACK2] = ACTIONS(2639), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2639), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2639), - [sym__not_in] = ACTIONS(2639), - [sym__quoted_atom_start] = ACTIONS(2639), - }, - [982] = { - [ts_builtin_sym_end] = ACTIONS(2635), - [aux_sym__terminator_token1] = ACTIONS(2635), - [anon_sym_SEMI] = ACTIONS(2637), - [anon_sym_LPAREN] = ACTIONS(2637), - [aux_sym_identifier_token1] = ACTIONS(2637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2637), - [sym_unused_identifier] = ACTIONS(2637), - [anon_sym___MODULE__] = ACTIONS(2637), - [anon_sym___DIR__] = ACTIONS(2637), - [anon_sym___ENV__] = ACTIONS(2637), - [anon_sym___CALLER__] = ACTIONS(2637), - [anon_sym___STACKTRACE__] = ACTIONS(2637), - [sym_alias] = ACTIONS(2637), - [sym_integer] = ACTIONS(2637), - [sym_float] = ACTIONS(2637), - [sym_char] = ACTIONS(2637), - [anon_sym_true] = ACTIONS(2637), - [anon_sym_false] = ACTIONS(2637), - [anon_sym_nil] = ACTIONS(2637), - [sym_atom] = ACTIONS(2637), - [anon_sym_DQUOTE] = ACTIONS(2637), - [anon_sym_SQUOTE] = ACTIONS(2637), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2637), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2637), - [anon_sym_LBRACE] = ACTIONS(2637), - [anon_sym_LBRACK] = ACTIONS(2637), - [anon_sym_LT] = ACTIONS(2637), - [anon_sym_GT] = ACTIONS(2637), - [anon_sym_PIPE] = ACTIONS(2637), - [anon_sym_SLASH] = ACTIONS(2637), - [anon_sym_TILDE] = ACTIONS(2637), - [anon_sym_COMMA] = ACTIONS(2637), - [sym_keyword] = ACTIONS(2637), - [anon_sym_LT_LT] = ACTIONS(2637), - [anon_sym_PERCENT] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2637), - [anon_sym_PLUS] = ACTIONS(2637), - [anon_sym_DASH] = ACTIONS(2637), - [anon_sym_BANG] = ACTIONS(2637), - [anon_sym_CARET] = ACTIONS(2637), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2637), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AT] = ACTIONS(2637), - [anon_sym_LT_DASH] = ACTIONS(2637), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2637), - [anon_sym_when] = ACTIONS(2637), - [anon_sym_COLON_COLON] = ACTIONS(2637), - [anon_sym_EQ_GT] = ACTIONS(2637), - [anon_sym_EQ] = ACTIONS(2637), - [anon_sym_PIPE_PIPE] = ACTIONS(2637), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2637), - [anon_sym_or] = ACTIONS(2637), - [anon_sym_AMP_AMP] = ACTIONS(2637), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2637), - [anon_sym_and] = ACTIONS(2637), - [anon_sym_EQ_EQ] = ACTIONS(2637), - [anon_sym_BANG_EQ] = ACTIONS(2637), - [anon_sym_EQ_TILDE] = ACTIONS(2637), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2637), - [anon_sym_LT_EQ] = ACTIONS(2637), - [anon_sym_GT_EQ] = ACTIONS(2637), - [anon_sym_PIPE_GT] = ACTIONS(2637), - [anon_sym_LT_LT_LT] = ACTIONS(2637), - [anon_sym_GT_GT_GT] = ACTIONS(2637), - [anon_sym_LT_LT_TILDE] = ACTIONS(2637), - [anon_sym_TILDE_GT_GT] = ACTIONS(2637), - [anon_sym_LT_TILDE] = ACTIONS(2637), - [anon_sym_TILDE_GT] = ACTIONS(2637), - [anon_sym_LT_TILDE_GT] = ACTIONS(2637), - [anon_sym_LT_PIPE_GT] = ACTIONS(2637), - [anon_sym_in] = ACTIONS(2637), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2637), - [anon_sym_SLASH_SLASH] = ACTIONS(2637), - [anon_sym_PLUS_PLUS] = ACTIONS(2637), - [anon_sym_DASH_DASH] = ACTIONS(2637), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2637), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2637), - [anon_sym_DOT_DOT] = ACTIONS(2637), - [anon_sym_LT_GT] = ACTIONS(2637), - [anon_sym_STAR] = ACTIONS(2637), - [anon_sym_STAR_STAR] = ACTIONS(2637), - [anon_sym_CARET_CARET] = ACTIONS(2637), - [anon_sym_DASH_GT] = ACTIONS(2637), - [anon_sym_DOT] = ACTIONS(2637), - [anon_sym_do] = ACTIONS(2637), - [anon_sym_fn] = ACTIONS(2637), - [anon_sym_LPAREN2] = ACTIONS(2635), - [anon_sym_LBRACK2] = ACTIONS(2635), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2635), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2635), - [sym__not_in] = ACTIONS(2635), - [sym__quoted_atom_start] = ACTIONS(2635), - }, - [983] = { [ts_builtin_sym_end] = ACTIONS(2611), [aux_sym__terminator_token1] = ACTIONS(2611), [anon_sym_SEMI] = ACTIONS(2613), @@ -148007,203 +147567,791 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2611), [sym__quoted_atom_start] = ACTIONS(2611), }, - [984] = { - [aux_sym__terminator_token1] = ACTIONS(2615), - [anon_sym_SEMI] = ACTIONS(2617), - [anon_sym_LPAREN] = ACTIONS(2617), - [anon_sym_RPAREN] = ACTIONS(2617), - [aux_sym_identifier_token1] = ACTIONS(2617), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2617), - [sym_unused_identifier] = ACTIONS(2617), - [anon_sym___MODULE__] = ACTIONS(2617), - [anon_sym___DIR__] = ACTIONS(2617), - [anon_sym___ENV__] = ACTIONS(2617), - [anon_sym___CALLER__] = ACTIONS(2617), - [anon_sym___STACKTRACE__] = ACTIONS(2617), - [sym_alias] = ACTIONS(2617), - [sym_integer] = ACTIONS(2617), - [sym_float] = ACTIONS(2617), - [sym_char] = ACTIONS(2617), - [anon_sym_true] = ACTIONS(2617), - [anon_sym_false] = ACTIONS(2617), - [anon_sym_nil] = ACTIONS(2617), - [sym_atom] = ACTIONS(2617), - [anon_sym_DQUOTE] = ACTIONS(2617), - [anon_sym_SQUOTE] = ACTIONS(2617), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2617), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2617), - [anon_sym_LBRACK] = ACTIONS(2617), - [anon_sym_LT] = ACTIONS(2617), - [anon_sym_GT] = ACTIONS(2617), - [anon_sym_PIPE] = ACTIONS(2617), - [anon_sym_SLASH] = ACTIONS(2617), - [anon_sym_TILDE] = ACTIONS(2617), - [anon_sym_COMMA] = ACTIONS(2617), - [sym_keyword] = ACTIONS(2617), - [anon_sym_LT_LT] = ACTIONS(2617), - [anon_sym_PERCENT] = ACTIONS(2617), - [anon_sym_AMP] = ACTIONS(2617), - [anon_sym_PLUS] = ACTIONS(2617), - [anon_sym_DASH] = ACTIONS(2617), - [anon_sym_BANG] = ACTIONS(2617), - [anon_sym_CARET] = ACTIONS(2617), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2617), - [anon_sym_not] = ACTIONS(2617), - [anon_sym_AT] = ACTIONS(2617), - [anon_sym_LT_DASH] = ACTIONS(2617), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2617), - [anon_sym_when] = ACTIONS(2617), - [anon_sym_COLON_COLON] = ACTIONS(2617), - [anon_sym_EQ_GT] = ACTIONS(2617), - [anon_sym_EQ] = ACTIONS(2617), - [anon_sym_PIPE_PIPE] = ACTIONS(2617), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2617), - [anon_sym_or] = ACTIONS(2617), - [anon_sym_AMP_AMP] = ACTIONS(2617), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2617), - [anon_sym_and] = ACTIONS(2617), - [anon_sym_EQ_EQ] = ACTIONS(2617), - [anon_sym_BANG_EQ] = ACTIONS(2617), - [anon_sym_EQ_TILDE] = ACTIONS(2617), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2617), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2617), - [anon_sym_LT_EQ] = ACTIONS(2617), - [anon_sym_GT_EQ] = ACTIONS(2617), - [anon_sym_PIPE_GT] = ACTIONS(2617), - [anon_sym_LT_LT_LT] = ACTIONS(2617), - [anon_sym_GT_GT_GT] = ACTIONS(2617), - [anon_sym_LT_LT_TILDE] = ACTIONS(2617), - [anon_sym_TILDE_GT_GT] = ACTIONS(2617), - [anon_sym_LT_TILDE] = ACTIONS(2617), - [anon_sym_TILDE_GT] = ACTIONS(2617), - [anon_sym_LT_TILDE_GT] = ACTIONS(2617), - [anon_sym_LT_PIPE_GT] = ACTIONS(2617), - [anon_sym_in] = ACTIONS(2617), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2617), - [anon_sym_SLASH_SLASH] = ACTIONS(2617), - [anon_sym_PLUS_PLUS] = ACTIONS(2617), - [anon_sym_DASH_DASH] = ACTIONS(2617), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2617), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2617), - [anon_sym_DOT_DOT] = ACTIONS(2617), - [anon_sym_LT_GT] = ACTIONS(2617), - [anon_sym_STAR] = ACTIONS(2617), - [anon_sym_STAR_STAR] = ACTIONS(2617), - [anon_sym_CARET_CARET] = ACTIONS(2617), - [anon_sym_DASH_GT] = ACTIONS(2617), - [anon_sym_DOT] = ACTIONS(2617), - [anon_sym_do] = ACTIONS(2617), - [anon_sym_fn] = ACTIONS(2617), - [anon_sym_LPAREN2] = ACTIONS(2615), - [anon_sym_LBRACK2] = ACTIONS(2615), + [973] = { + [ts_builtin_sym_end] = ACTIONS(2639), + [aux_sym__terminator_token1] = ACTIONS(2639), + [anon_sym_SEMI] = ACTIONS(2641), + [anon_sym_LPAREN] = ACTIONS(2641), + [aux_sym_identifier_token1] = ACTIONS(2641), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2641), + [sym_unused_identifier] = ACTIONS(2641), + [anon_sym___MODULE__] = ACTIONS(2641), + [anon_sym___DIR__] = ACTIONS(2641), + [anon_sym___ENV__] = ACTIONS(2641), + [anon_sym___CALLER__] = ACTIONS(2641), + [anon_sym___STACKTRACE__] = ACTIONS(2641), + [sym_alias] = ACTIONS(2641), + [sym_integer] = ACTIONS(2641), + [sym_float] = ACTIONS(2641), + [sym_char] = ACTIONS(2641), + [anon_sym_true] = ACTIONS(2641), + [anon_sym_false] = ACTIONS(2641), + [anon_sym_nil] = ACTIONS(2641), + [sym_atom] = ACTIONS(2641), + [anon_sym_DQUOTE] = ACTIONS(2641), + [anon_sym_SQUOTE] = ACTIONS(2641), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2641), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2641), + [anon_sym_LT] = ACTIONS(2641), + [anon_sym_GT] = ACTIONS(2641), + [anon_sym_PIPE] = ACTIONS(2641), + [anon_sym_SLASH] = ACTIONS(2641), + [anon_sym_TILDE] = ACTIONS(2641), + [anon_sym_COMMA] = ACTIONS(2641), + [sym_keyword] = ACTIONS(2641), + [anon_sym_LT_LT] = ACTIONS(2641), + [anon_sym_PERCENT] = ACTIONS(2641), + [anon_sym_AMP] = ACTIONS(2641), + [anon_sym_PLUS] = ACTIONS(2641), + [anon_sym_DASH] = ACTIONS(2641), + [anon_sym_BANG] = ACTIONS(2641), + [anon_sym_CARET] = ACTIONS(2641), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2641), + [anon_sym_not] = ACTIONS(2641), + [anon_sym_AT] = ACTIONS(2641), + [anon_sym_LT_DASH] = ACTIONS(2641), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2641), + [anon_sym_when] = ACTIONS(2641), + [anon_sym_COLON_COLON] = ACTIONS(2641), + [anon_sym_EQ_GT] = ACTIONS(2641), + [anon_sym_EQ] = ACTIONS(2641), + [anon_sym_PIPE_PIPE] = ACTIONS(2641), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2641), + [anon_sym_or] = ACTIONS(2641), + [anon_sym_AMP_AMP] = ACTIONS(2641), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2641), + [anon_sym_and] = ACTIONS(2641), + [anon_sym_EQ_EQ] = ACTIONS(2641), + [anon_sym_BANG_EQ] = ACTIONS(2641), + [anon_sym_EQ_TILDE] = ACTIONS(2641), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2641), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2641), + [anon_sym_LT_EQ] = ACTIONS(2641), + [anon_sym_GT_EQ] = ACTIONS(2641), + [anon_sym_PIPE_GT] = ACTIONS(2641), + [anon_sym_LT_LT_LT] = ACTIONS(2641), + [anon_sym_GT_GT_GT] = ACTIONS(2641), + [anon_sym_LT_LT_TILDE] = ACTIONS(2641), + [anon_sym_TILDE_GT_GT] = ACTIONS(2641), + [anon_sym_LT_TILDE] = ACTIONS(2641), + [anon_sym_TILDE_GT] = ACTIONS(2641), + [anon_sym_LT_TILDE_GT] = ACTIONS(2641), + [anon_sym_LT_PIPE_GT] = ACTIONS(2641), + [anon_sym_in] = ACTIONS(2641), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2641), + [anon_sym_SLASH_SLASH] = ACTIONS(2641), + [anon_sym_PLUS_PLUS] = ACTIONS(2641), + [anon_sym_DASH_DASH] = ACTIONS(2641), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2641), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2641), + [anon_sym_DOT_DOT] = ACTIONS(2641), + [anon_sym_LT_GT] = ACTIONS(2641), + [anon_sym_STAR] = ACTIONS(2641), + [anon_sym_STAR_STAR] = ACTIONS(2641), + [anon_sym_CARET_CARET] = ACTIONS(2641), + [anon_sym_DASH_GT] = ACTIONS(2641), + [anon_sym_DOT] = ACTIONS(2641), + [anon_sym_do] = ACTIONS(2641), + [anon_sym_fn] = ACTIONS(2641), + [anon_sym_LPAREN2] = ACTIONS(2639), + [anon_sym_LBRACK2] = ACTIONS(2639), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2615), + [sym__newline_before_do] = ACTIONS(2639), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2615), - [sym__not_in] = ACTIONS(2615), - [sym__quoted_atom_start] = ACTIONS(2615), + [sym__before_unary_op] = ACTIONS(2639), + [sym__not_in] = ACTIONS(2639), + [sym__quoted_atom_start] = ACTIONS(2639), }, - [985] = { - [aux_sym__terminator_token1] = ACTIONS(2611), - [anon_sym_SEMI] = ACTIONS(2613), - [anon_sym_LPAREN] = ACTIONS(2613), - [aux_sym_identifier_token1] = ACTIONS(2613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2613), - [sym_unused_identifier] = ACTIONS(2613), - [anon_sym___MODULE__] = ACTIONS(2613), - [anon_sym___DIR__] = ACTIONS(2613), - [anon_sym___ENV__] = ACTIONS(2613), - [anon_sym___CALLER__] = ACTIONS(2613), - [anon_sym___STACKTRACE__] = ACTIONS(2613), - [sym_alias] = ACTIONS(2613), - [sym_integer] = ACTIONS(2613), - [sym_float] = ACTIONS(2613), - [sym_char] = ACTIONS(2613), - [anon_sym_true] = ACTIONS(2613), - [anon_sym_false] = ACTIONS(2613), - [anon_sym_nil] = ACTIONS(2613), - [sym_atom] = ACTIONS(2613), - [anon_sym_DQUOTE] = ACTIONS(2613), - [anon_sym_SQUOTE] = ACTIONS(2613), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2613), - [anon_sym_LBRACE] = ACTIONS(2613), - [anon_sym_LBRACK] = ACTIONS(2613), - [anon_sym_LT] = ACTIONS(2613), - [anon_sym_GT] = ACTIONS(2613), - [anon_sym_PIPE] = ACTIONS(2613), - [anon_sym_SLASH] = ACTIONS(2613), - [anon_sym_TILDE] = ACTIONS(2613), - [anon_sym_COMMA] = ACTIONS(2613), - [sym_keyword] = ACTIONS(2613), - [anon_sym_LT_LT] = ACTIONS(2613), - [anon_sym_PERCENT] = ACTIONS(2613), - [anon_sym_AMP] = ACTIONS(2613), - [anon_sym_PLUS] = ACTIONS(2613), - [anon_sym_DASH] = ACTIONS(2613), - [anon_sym_BANG] = ACTIONS(2613), - [anon_sym_CARET] = ACTIONS(2613), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(2613), - [anon_sym_AT] = ACTIONS(2613), - [anon_sym_LT_DASH] = ACTIONS(2613), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2613), - [anon_sym_when] = ACTIONS(2613), - [anon_sym_COLON_COLON] = ACTIONS(2613), - [anon_sym_EQ_GT] = ACTIONS(2613), - [anon_sym_EQ] = ACTIONS(2613), - [anon_sym_PIPE_PIPE] = ACTIONS(2613), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2613), - [anon_sym_or] = ACTIONS(2613), - [anon_sym_AMP_AMP] = ACTIONS(2613), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2613), - [anon_sym_and] = ACTIONS(2613), - [anon_sym_EQ_EQ] = ACTIONS(2613), - [anon_sym_BANG_EQ] = ACTIONS(2613), - [anon_sym_EQ_TILDE] = ACTIONS(2613), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2613), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2613), - [anon_sym_LT_EQ] = ACTIONS(2613), - [anon_sym_GT_EQ] = ACTIONS(2613), - [anon_sym_PIPE_GT] = ACTIONS(2613), - [anon_sym_LT_LT_LT] = ACTIONS(2613), - [anon_sym_GT_GT_GT] = ACTIONS(2613), - [anon_sym_LT_LT_TILDE] = ACTIONS(2613), - [anon_sym_TILDE_GT_GT] = ACTIONS(2613), - [anon_sym_LT_TILDE] = ACTIONS(2613), - [anon_sym_TILDE_GT] = ACTIONS(2613), - [anon_sym_LT_TILDE_GT] = ACTIONS(2613), - [anon_sym_LT_PIPE_GT] = ACTIONS(2613), - [anon_sym_in] = ACTIONS(2613), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2613), - [anon_sym_SLASH_SLASH] = ACTIONS(2613), - [anon_sym_PLUS_PLUS] = ACTIONS(2613), - [anon_sym_DASH_DASH] = ACTIONS(2613), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2613), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2613), - [anon_sym_DOT_DOT] = ACTIONS(2613), - [anon_sym_LT_GT] = ACTIONS(2613), - [anon_sym_STAR] = ACTIONS(2613), - [anon_sym_STAR_STAR] = ACTIONS(2613), - [anon_sym_CARET_CARET] = ACTIONS(2613), - [anon_sym_DASH_GT] = ACTIONS(2613), - [anon_sym_DOT] = ACTIONS(2613), - [anon_sym_do] = ACTIONS(2613), - [anon_sym_end] = ACTIONS(2613), - [anon_sym_fn] = ACTIONS(2613), - [anon_sym_LPAREN2] = ACTIONS(2611), - [anon_sym_LBRACK2] = ACTIONS(2611), + [974] = { + [aux_sym__terminator_token1] = ACTIONS(2631), + [anon_sym_SEMI] = ACTIONS(2633), + [anon_sym_LPAREN] = ACTIONS(2633), + [anon_sym_RPAREN] = ACTIONS(2633), + [aux_sym_identifier_token1] = ACTIONS(2633), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2633), + [sym_unused_identifier] = ACTIONS(2633), + [anon_sym___MODULE__] = ACTIONS(2633), + [anon_sym___DIR__] = ACTIONS(2633), + [anon_sym___ENV__] = ACTIONS(2633), + [anon_sym___CALLER__] = ACTIONS(2633), + [anon_sym___STACKTRACE__] = ACTIONS(2633), + [sym_alias] = ACTIONS(2633), + [sym_integer] = ACTIONS(2633), + [sym_float] = ACTIONS(2633), + [sym_char] = ACTIONS(2633), + [anon_sym_true] = ACTIONS(2633), + [anon_sym_false] = ACTIONS(2633), + [anon_sym_nil] = ACTIONS(2633), + [sym_atom] = ACTIONS(2633), + [anon_sym_DQUOTE] = ACTIONS(2633), + [anon_sym_SQUOTE] = ACTIONS(2633), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2633), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2633), + [anon_sym_LBRACE] = ACTIONS(2633), + [anon_sym_LBRACK] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(2633), + [anon_sym_GT] = ACTIONS(2633), + [anon_sym_PIPE] = ACTIONS(2633), + [anon_sym_SLASH] = ACTIONS(2633), + [anon_sym_TILDE] = ACTIONS(2633), + [anon_sym_COMMA] = ACTIONS(2633), + [sym_keyword] = ACTIONS(2633), + [anon_sym_LT_LT] = ACTIONS(2633), + [anon_sym_PERCENT] = ACTIONS(2633), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_PLUS] = ACTIONS(2633), + [anon_sym_DASH] = ACTIONS(2633), + [anon_sym_BANG] = ACTIONS(2633), + [anon_sym_CARET] = ACTIONS(2633), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2633), + [anon_sym_not] = ACTIONS(2633), + [anon_sym_AT] = ACTIONS(2633), + [anon_sym_LT_DASH] = ACTIONS(2633), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2633), + [anon_sym_when] = ACTIONS(2633), + [anon_sym_COLON_COLON] = ACTIONS(2633), + [anon_sym_EQ_GT] = ACTIONS(2633), + [anon_sym_EQ] = ACTIONS(2633), + [anon_sym_PIPE_PIPE] = ACTIONS(2633), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2633), + [anon_sym_or] = ACTIONS(2633), + [anon_sym_AMP_AMP] = ACTIONS(2633), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2633), + [anon_sym_and] = ACTIONS(2633), + [anon_sym_EQ_EQ] = ACTIONS(2633), + [anon_sym_BANG_EQ] = ACTIONS(2633), + [anon_sym_EQ_TILDE] = ACTIONS(2633), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2633), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2633), + [anon_sym_LT_EQ] = ACTIONS(2633), + [anon_sym_GT_EQ] = ACTIONS(2633), + [anon_sym_PIPE_GT] = ACTIONS(2633), + [anon_sym_LT_LT_LT] = ACTIONS(2633), + [anon_sym_GT_GT_GT] = ACTIONS(2633), + [anon_sym_LT_LT_TILDE] = ACTIONS(2633), + [anon_sym_TILDE_GT_GT] = ACTIONS(2633), + [anon_sym_LT_TILDE] = ACTIONS(2633), + [anon_sym_TILDE_GT] = ACTIONS(2633), + [anon_sym_LT_TILDE_GT] = ACTIONS(2633), + [anon_sym_LT_PIPE_GT] = ACTIONS(2633), + [anon_sym_in] = ACTIONS(2633), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2633), + [anon_sym_SLASH_SLASH] = ACTIONS(2633), + [anon_sym_PLUS_PLUS] = ACTIONS(2633), + [anon_sym_DASH_DASH] = ACTIONS(2633), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2633), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2633), + [anon_sym_DOT_DOT] = ACTIONS(2633), + [anon_sym_LT_GT] = ACTIONS(2633), + [anon_sym_STAR] = ACTIONS(2633), + [anon_sym_STAR_STAR] = ACTIONS(2633), + [anon_sym_CARET_CARET] = ACTIONS(2633), + [anon_sym_DASH_GT] = ACTIONS(2633), + [anon_sym_DOT] = ACTIONS(2633), + [anon_sym_do] = ACTIONS(2633), + [anon_sym_fn] = ACTIONS(2633), + [anon_sym_LPAREN2] = ACTIONS(2631), + [anon_sym_LBRACK2] = ACTIONS(2631), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2611), + [sym__newline_before_do] = ACTIONS(2631), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2611), - [sym__not_in] = ACTIONS(2611), - [sym__quoted_atom_start] = ACTIONS(2611), + [sym__before_unary_op] = ACTIONS(2631), + [sym__not_in] = ACTIONS(2631), + [sym__quoted_atom_start] = ACTIONS(2631), }, - [986] = { + [975] = { + [ts_builtin_sym_end] = ACTIONS(2627), + [aux_sym__terminator_token1] = ACTIONS(2627), + [anon_sym_SEMI] = ACTIONS(2629), + [anon_sym_LPAREN] = ACTIONS(2629), + [aux_sym_identifier_token1] = ACTIONS(2629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2629), + [sym_unused_identifier] = ACTIONS(2629), + [anon_sym___MODULE__] = ACTIONS(2629), + [anon_sym___DIR__] = ACTIONS(2629), + [anon_sym___ENV__] = ACTIONS(2629), + [anon_sym___CALLER__] = ACTIONS(2629), + [anon_sym___STACKTRACE__] = ACTIONS(2629), + [sym_alias] = ACTIONS(2629), + [sym_integer] = ACTIONS(2629), + [sym_float] = ACTIONS(2629), + [sym_char] = ACTIONS(2629), + [anon_sym_true] = ACTIONS(2629), + [anon_sym_false] = ACTIONS(2629), + [anon_sym_nil] = ACTIONS(2629), + [sym_atom] = ACTIONS(2629), + [anon_sym_DQUOTE] = ACTIONS(2629), + [anon_sym_SQUOTE] = ACTIONS(2629), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2629), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2629), + [anon_sym_LBRACE] = ACTIONS(2629), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_LT] = ACTIONS(2629), + [anon_sym_GT] = ACTIONS(2629), + [anon_sym_PIPE] = ACTIONS(2629), + [anon_sym_SLASH] = ACTIONS(2629), + [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_COMMA] = ACTIONS(2629), + [sym_keyword] = ACTIONS(2629), + [anon_sym_LT_LT] = ACTIONS(2629), + [anon_sym_PERCENT] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2629), + [anon_sym_PLUS] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(2629), + [anon_sym_BANG] = ACTIONS(2629), + [anon_sym_CARET] = ACTIONS(2629), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2629), + [anon_sym_not] = ACTIONS(2629), + [anon_sym_AT] = ACTIONS(2629), + [anon_sym_LT_DASH] = ACTIONS(2629), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2629), + [anon_sym_when] = ACTIONS(2629), + [anon_sym_COLON_COLON] = ACTIONS(2629), + [anon_sym_EQ_GT] = ACTIONS(2629), + [anon_sym_EQ] = ACTIONS(2629), + [anon_sym_PIPE_PIPE] = ACTIONS(2629), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2629), + [anon_sym_or] = ACTIONS(2629), + [anon_sym_AMP_AMP] = ACTIONS(2629), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2629), + [anon_sym_and] = ACTIONS(2629), + [anon_sym_EQ_EQ] = ACTIONS(2629), + [anon_sym_BANG_EQ] = ACTIONS(2629), + [anon_sym_EQ_TILDE] = ACTIONS(2629), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2629), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2629), + [anon_sym_LT_EQ] = ACTIONS(2629), + [anon_sym_GT_EQ] = ACTIONS(2629), + [anon_sym_PIPE_GT] = ACTIONS(2629), + [anon_sym_LT_LT_LT] = ACTIONS(2629), + [anon_sym_GT_GT_GT] = ACTIONS(2629), + [anon_sym_LT_LT_TILDE] = ACTIONS(2629), + [anon_sym_TILDE_GT_GT] = ACTIONS(2629), + [anon_sym_LT_TILDE] = ACTIONS(2629), + [anon_sym_TILDE_GT] = ACTIONS(2629), + [anon_sym_LT_TILDE_GT] = ACTIONS(2629), + [anon_sym_LT_PIPE_GT] = ACTIONS(2629), + [anon_sym_in] = ACTIONS(2629), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2629), + [anon_sym_SLASH_SLASH] = ACTIONS(2629), + [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_DASH_DASH] = ACTIONS(2629), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2629), + [anon_sym_DOT_DOT] = ACTIONS(2629), + [anon_sym_LT_GT] = ACTIONS(2629), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_STAR_STAR] = ACTIONS(2629), + [anon_sym_CARET_CARET] = ACTIONS(2629), + [anon_sym_DASH_GT] = ACTIONS(2629), + [anon_sym_DOT] = ACTIONS(2629), + [anon_sym_do] = ACTIONS(2629), + [anon_sym_fn] = ACTIONS(2629), + [anon_sym_LPAREN2] = ACTIONS(2627), + [anon_sym_LBRACK2] = ACTIONS(2627), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2627), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2627), + [sym__not_in] = ACTIONS(2627), + [sym__quoted_atom_start] = ACTIONS(2627), + }, + [976] = { + [aux_sym__terminator_token1] = ACTIONS(2643), + [anon_sym_SEMI] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(2645), + [anon_sym_RPAREN] = ACTIONS(2645), + [aux_sym_identifier_token1] = ACTIONS(2645), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2645), + [sym_unused_identifier] = ACTIONS(2645), + [anon_sym___MODULE__] = ACTIONS(2645), + [anon_sym___DIR__] = ACTIONS(2645), + [anon_sym___ENV__] = ACTIONS(2645), + [anon_sym___CALLER__] = ACTIONS(2645), + [anon_sym___STACKTRACE__] = ACTIONS(2645), + [sym_alias] = ACTIONS(2645), + [sym_integer] = ACTIONS(2645), + [sym_float] = ACTIONS(2645), + [sym_char] = ACTIONS(2645), + [anon_sym_true] = ACTIONS(2645), + [anon_sym_false] = ACTIONS(2645), + [anon_sym_nil] = ACTIONS(2645), + [sym_atom] = ACTIONS(2645), + [anon_sym_DQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2645), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2645), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_LBRACK] = ACTIONS(2645), + [anon_sym_LT] = ACTIONS(2645), + [anon_sym_GT] = ACTIONS(2645), + [anon_sym_PIPE] = ACTIONS(2645), + [anon_sym_SLASH] = ACTIONS(2645), + [anon_sym_TILDE] = ACTIONS(2645), + [anon_sym_COMMA] = ACTIONS(2645), + [sym_keyword] = ACTIONS(2645), + [anon_sym_LT_LT] = ACTIONS(2645), + [anon_sym_PERCENT] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2645), + [anon_sym_PLUS] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2645), + [anon_sym_BANG] = ACTIONS(2645), + [anon_sym_CARET] = ACTIONS(2645), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2645), + [anon_sym_not] = ACTIONS(2645), + [anon_sym_AT] = ACTIONS(2645), + [anon_sym_LT_DASH] = ACTIONS(2645), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2645), + [anon_sym_when] = ACTIONS(2645), + [anon_sym_COLON_COLON] = ACTIONS(2645), + [anon_sym_EQ_GT] = ACTIONS(2645), + [anon_sym_EQ] = ACTIONS(2645), + [anon_sym_PIPE_PIPE] = ACTIONS(2645), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2645), + [anon_sym_or] = ACTIONS(2645), + [anon_sym_AMP_AMP] = ACTIONS(2645), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2645), + [anon_sym_and] = ACTIONS(2645), + [anon_sym_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ] = ACTIONS(2645), + [anon_sym_EQ_TILDE] = ACTIONS(2645), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2645), + [anon_sym_LT_EQ] = ACTIONS(2645), + [anon_sym_GT_EQ] = ACTIONS(2645), + [anon_sym_PIPE_GT] = ACTIONS(2645), + [anon_sym_LT_LT_LT] = ACTIONS(2645), + [anon_sym_GT_GT_GT] = ACTIONS(2645), + [anon_sym_LT_LT_TILDE] = ACTIONS(2645), + [anon_sym_TILDE_GT_GT] = ACTIONS(2645), + [anon_sym_LT_TILDE] = ACTIONS(2645), + [anon_sym_TILDE_GT] = ACTIONS(2645), + [anon_sym_LT_TILDE_GT] = ACTIONS(2645), + [anon_sym_LT_PIPE_GT] = ACTIONS(2645), + [anon_sym_in] = ACTIONS(2645), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2645), + [anon_sym_SLASH_SLASH] = ACTIONS(2645), + [anon_sym_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_DASH_DASH] = ACTIONS(2645), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2645), + [anon_sym_DOT_DOT] = ACTIONS(2645), + [anon_sym_LT_GT] = ACTIONS(2645), + [anon_sym_STAR] = ACTIONS(2645), + [anon_sym_STAR_STAR] = ACTIONS(2645), + [anon_sym_CARET_CARET] = ACTIONS(2645), + [anon_sym_DASH_GT] = ACTIONS(2645), + [anon_sym_DOT] = ACTIONS(2645), + [anon_sym_do] = ACTIONS(2645), + [anon_sym_fn] = ACTIONS(2645), + [anon_sym_LPAREN2] = ACTIONS(2643), + [anon_sym_LBRACK2] = ACTIONS(2643), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2643), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2643), + [sym__not_in] = ACTIONS(2643), + [sym__quoted_atom_start] = ACTIONS(2643), + }, + [977] = { + [aux_sym__terminator_token1] = ACTIONS(2635), + [anon_sym_SEMI] = ACTIONS(2637), + [anon_sym_LPAREN] = ACTIONS(2637), + [anon_sym_RPAREN] = ACTIONS(2637), + [aux_sym_identifier_token1] = ACTIONS(2637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2637), + [sym_unused_identifier] = ACTIONS(2637), + [anon_sym___MODULE__] = ACTIONS(2637), + [anon_sym___DIR__] = ACTIONS(2637), + [anon_sym___ENV__] = ACTIONS(2637), + [anon_sym___CALLER__] = ACTIONS(2637), + [anon_sym___STACKTRACE__] = ACTIONS(2637), + [sym_alias] = ACTIONS(2637), + [sym_integer] = ACTIONS(2637), + [sym_float] = ACTIONS(2637), + [sym_char] = ACTIONS(2637), + [anon_sym_true] = ACTIONS(2637), + [anon_sym_false] = ACTIONS(2637), + [anon_sym_nil] = ACTIONS(2637), + [sym_atom] = ACTIONS(2637), + [anon_sym_DQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2637), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2637), + [anon_sym_LBRACE] = ACTIONS(2637), + [anon_sym_LBRACK] = ACTIONS(2637), + [anon_sym_LT] = ACTIONS(2637), + [anon_sym_GT] = ACTIONS(2637), + [anon_sym_PIPE] = ACTIONS(2637), + [anon_sym_SLASH] = ACTIONS(2637), + [anon_sym_TILDE] = ACTIONS(2637), + [anon_sym_COMMA] = ACTIONS(2637), + [sym_keyword] = ACTIONS(2637), + [anon_sym_LT_LT] = ACTIONS(2637), + [anon_sym_PERCENT] = ACTIONS(2637), + [anon_sym_AMP] = ACTIONS(2637), + [anon_sym_PLUS] = ACTIONS(2637), + [anon_sym_DASH] = ACTIONS(2637), + [anon_sym_BANG] = ACTIONS(2637), + [anon_sym_CARET] = ACTIONS(2637), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2637), + [anon_sym_not] = ACTIONS(2637), + [anon_sym_AT] = ACTIONS(2637), + [anon_sym_LT_DASH] = ACTIONS(2637), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2637), + [anon_sym_when] = ACTIONS(2637), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_EQ_GT] = ACTIONS(2637), + [anon_sym_EQ] = ACTIONS(2637), + [anon_sym_PIPE_PIPE] = ACTIONS(2637), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2637), + [anon_sym_or] = ACTIONS(2637), + [anon_sym_AMP_AMP] = ACTIONS(2637), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2637), + [anon_sym_and] = ACTIONS(2637), + [anon_sym_EQ_EQ] = ACTIONS(2637), + [anon_sym_BANG_EQ] = ACTIONS(2637), + [anon_sym_EQ_TILDE] = ACTIONS(2637), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2637), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2637), + [anon_sym_LT_EQ] = ACTIONS(2637), + [anon_sym_GT_EQ] = ACTIONS(2637), + [anon_sym_PIPE_GT] = ACTIONS(2637), + [anon_sym_LT_LT_LT] = ACTIONS(2637), + [anon_sym_GT_GT_GT] = ACTIONS(2637), + [anon_sym_LT_LT_TILDE] = ACTIONS(2637), + [anon_sym_TILDE_GT_GT] = ACTIONS(2637), + [anon_sym_LT_TILDE] = ACTIONS(2637), + [anon_sym_TILDE_GT] = ACTIONS(2637), + [anon_sym_LT_TILDE_GT] = ACTIONS(2637), + [anon_sym_LT_PIPE_GT] = ACTIONS(2637), + [anon_sym_in] = ACTIONS(2637), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2637), + [anon_sym_SLASH_SLASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_DASH_DASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2637), + [anon_sym_DOT_DOT] = ACTIONS(2637), + [anon_sym_LT_GT] = ACTIONS(2637), + [anon_sym_STAR] = ACTIONS(2637), + [anon_sym_STAR_STAR] = ACTIONS(2637), + [anon_sym_CARET_CARET] = ACTIONS(2637), + [anon_sym_DASH_GT] = ACTIONS(2637), + [anon_sym_DOT] = ACTIONS(2637), + [anon_sym_do] = ACTIONS(2637), + [anon_sym_fn] = ACTIONS(2637), + [anon_sym_LPAREN2] = ACTIONS(2635), + [anon_sym_LBRACK2] = ACTIONS(2635), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2635), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2635), + [sym__not_in] = ACTIONS(2635), + [sym__quoted_atom_start] = ACTIONS(2635), + }, + [978] = { + [ts_builtin_sym_end] = ACTIONS(2643), + [aux_sym__terminator_token1] = ACTIONS(2643), + [anon_sym_SEMI] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(2645), + [aux_sym_identifier_token1] = ACTIONS(2645), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2645), + [sym_unused_identifier] = ACTIONS(2645), + [anon_sym___MODULE__] = ACTIONS(2645), + [anon_sym___DIR__] = ACTIONS(2645), + [anon_sym___ENV__] = ACTIONS(2645), + [anon_sym___CALLER__] = ACTIONS(2645), + [anon_sym___STACKTRACE__] = ACTIONS(2645), + [sym_alias] = ACTIONS(2645), + [sym_integer] = ACTIONS(2645), + [sym_float] = ACTIONS(2645), + [sym_char] = ACTIONS(2645), + [anon_sym_true] = ACTIONS(2645), + [anon_sym_false] = ACTIONS(2645), + [anon_sym_nil] = ACTIONS(2645), + [sym_atom] = ACTIONS(2645), + [anon_sym_DQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2645), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2645), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_LBRACK] = ACTIONS(2645), + [anon_sym_LT] = ACTIONS(2645), + [anon_sym_GT] = ACTIONS(2645), + [anon_sym_PIPE] = ACTIONS(2645), + [anon_sym_SLASH] = ACTIONS(2645), + [anon_sym_TILDE] = ACTIONS(2645), + [anon_sym_COMMA] = ACTIONS(2645), + [sym_keyword] = ACTIONS(2645), + [anon_sym_LT_LT] = ACTIONS(2645), + [anon_sym_PERCENT] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2645), + [anon_sym_PLUS] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2645), + [anon_sym_BANG] = ACTIONS(2645), + [anon_sym_CARET] = ACTIONS(2645), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2645), + [anon_sym_not] = ACTIONS(2645), + [anon_sym_AT] = ACTIONS(2645), + [anon_sym_LT_DASH] = ACTIONS(2645), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2645), + [anon_sym_when] = ACTIONS(2645), + [anon_sym_COLON_COLON] = ACTIONS(2645), + [anon_sym_EQ_GT] = ACTIONS(2645), + [anon_sym_EQ] = ACTIONS(2645), + [anon_sym_PIPE_PIPE] = ACTIONS(2645), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2645), + [anon_sym_or] = ACTIONS(2645), + [anon_sym_AMP_AMP] = ACTIONS(2645), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2645), + [anon_sym_and] = ACTIONS(2645), + [anon_sym_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ] = ACTIONS(2645), + [anon_sym_EQ_TILDE] = ACTIONS(2645), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2645), + [anon_sym_LT_EQ] = ACTIONS(2645), + [anon_sym_GT_EQ] = ACTIONS(2645), + [anon_sym_PIPE_GT] = ACTIONS(2645), + [anon_sym_LT_LT_LT] = ACTIONS(2645), + [anon_sym_GT_GT_GT] = ACTIONS(2645), + [anon_sym_LT_LT_TILDE] = ACTIONS(2645), + [anon_sym_TILDE_GT_GT] = ACTIONS(2645), + [anon_sym_LT_TILDE] = ACTIONS(2645), + [anon_sym_TILDE_GT] = ACTIONS(2645), + [anon_sym_LT_TILDE_GT] = ACTIONS(2645), + [anon_sym_LT_PIPE_GT] = ACTIONS(2645), + [anon_sym_in] = ACTIONS(2645), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2645), + [anon_sym_SLASH_SLASH] = ACTIONS(2645), + [anon_sym_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_DASH_DASH] = ACTIONS(2645), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2645), + [anon_sym_DOT_DOT] = ACTIONS(2645), + [anon_sym_LT_GT] = ACTIONS(2645), + [anon_sym_STAR] = ACTIONS(2645), + [anon_sym_STAR_STAR] = ACTIONS(2645), + [anon_sym_CARET_CARET] = ACTIONS(2645), + [anon_sym_DASH_GT] = ACTIONS(2645), + [anon_sym_DOT] = ACTIONS(2645), + [anon_sym_do] = ACTIONS(2645), + [anon_sym_fn] = ACTIONS(2645), + [anon_sym_LPAREN2] = ACTIONS(2643), + [anon_sym_LBRACK2] = ACTIONS(2643), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2643), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2643), + [sym__not_in] = ACTIONS(2643), + [sym__quoted_atom_start] = ACTIONS(2643), + }, + [979] = { + [aux_sym__terminator_token1] = ACTIONS(2643), + [anon_sym_SEMI] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(2645), + [anon_sym_RPAREN] = ACTIONS(2645), + [aux_sym_identifier_token1] = ACTIONS(2645), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2645), + [sym_unused_identifier] = ACTIONS(2645), + [anon_sym___MODULE__] = ACTIONS(2645), + [anon_sym___DIR__] = ACTIONS(2645), + [anon_sym___ENV__] = ACTIONS(2645), + [anon_sym___CALLER__] = ACTIONS(2645), + [anon_sym___STACKTRACE__] = ACTIONS(2645), + [sym_alias] = ACTIONS(2645), + [sym_integer] = ACTIONS(2645), + [sym_float] = ACTIONS(2645), + [sym_char] = ACTIONS(2645), + [anon_sym_true] = ACTIONS(2645), + [anon_sym_false] = ACTIONS(2645), + [anon_sym_nil] = ACTIONS(2645), + [sym_atom] = ACTIONS(2645), + [anon_sym_DQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2645), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2645), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_LBRACK] = ACTIONS(2645), + [anon_sym_LT] = ACTIONS(2645), + [anon_sym_GT] = ACTIONS(2645), + [anon_sym_PIPE] = ACTIONS(2645), + [anon_sym_SLASH] = ACTIONS(2645), + [anon_sym_TILDE] = ACTIONS(2645), + [anon_sym_COMMA] = ACTIONS(2645), + [sym_keyword] = ACTIONS(2645), + [anon_sym_LT_LT] = ACTIONS(2645), + [anon_sym_PERCENT] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2645), + [anon_sym_PLUS] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2645), + [anon_sym_BANG] = ACTIONS(2645), + [anon_sym_CARET] = ACTIONS(2645), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2645), + [anon_sym_not] = ACTIONS(2645), + [anon_sym_AT] = ACTIONS(2645), + [anon_sym_LT_DASH] = ACTIONS(2645), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2645), + [anon_sym_when] = ACTIONS(2645), + [anon_sym_COLON_COLON] = ACTIONS(2645), + [anon_sym_EQ_GT] = ACTIONS(2645), + [anon_sym_EQ] = ACTIONS(2645), + [anon_sym_PIPE_PIPE] = ACTIONS(2645), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2645), + [anon_sym_or] = ACTIONS(2645), + [anon_sym_AMP_AMP] = ACTIONS(2645), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2645), + [anon_sym_and] = ACTIONS(2645), + [anon_sym_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ] = ACTIONS(2645), + [anon_sym_EQ_TILDE] = ACTIONS(2645), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2645), + [anon_sym_LT_EQ] = ACTIONS(2645), + [anon_sym_GT_EQ] = ACTIONS(2645), + [anon_sym_PIPE_GT] = ACTIONS(2645), + [anon_sym_LT_LT_LT] = ACTIONS(2645), + [anon_sym_GT_GT_GT] = ACTIONS(2645), + [anon_sym_LT_LT_TILDE] = ACTIONS(2645), + [anon_sym_TILDE_GT_GT] = ACTIONS(2645), + [anon_sym_LT_TILDE] = ACTIONS(2645), + [anon_sym_TILDE_GT] = ACTIONS(2645), + [anon_sym_LT_TILDE_GT] = ACTIONS(2645), + [anon_sym_LT_PIPE_GT] = ACTIONS(2645), + [anon_sym_in] = ACTIONS(2645), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2645), + [anon_sym_SLASH_SLASH] = ACTIONS(2645), + [anon_sym_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_DASH_DASH] = ACTIONS(2645), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2645), + [anon_sym_DOT_DOT] = ACTIONS(2645), + [anon_sym_LT_GT] = ACTIONS(2645), + [anon_sym_STAR] = ACTIONS(2645), + [anon_sym_STAR_STAR] = ACTIONS(2645), + [anon_sym_CARET_CARET] = ACTIONS(2645), + [anon_sym_DASH_GT] = ACTIONS(2645), + [anon_sym_DOT] = ACTIONS(2645), + [anon_sym_do] = ACTIONS(2645), + [anon_sym_fn] = ACTIONS(2645), + [anon_sym_LPAREN2] = ACTIONS(2643), + [anon_sym_LBRACK2] = ACTIONS(2643), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2643), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2643), + [sym__not_in] = ACTIONS(2643), + [sym__quoted_atom_start] = ACTIONS(2643), + }, + [980] = { + [aux_sym__terminator_token1] = ACTIONS(2647), + [anon_sym_SEMI] = ACTIONS(2649), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_RPAREN] = ACTIONS(2649), + [aux_sym_identifier_token1] = ACTIONS(2649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2649), + [sym_unused_identifier] = ACTIONS(2649), + [anon_sym___MODULE__] = ACTIONS(2649), + [anon_sym___DIR__] = ACTIONS(2649), + [anon_sym___ENV__] = ACTIONS(2649), + [anon_sym___CALLER__] = ACTIONS(2649), + [anon_sym___STACKTRACE__] = ACTIONS(2649), + [sym_alias] = ACTIONS(2649), + [sym_integer] = ACTIONS(2649), + [sym_float] = ACTIONS(2649), + [sym_char] = ACTIONS(2649), + [anon_sym_true] = ACTIONS(2649), + [anon_sym_false] = ACTIONS(2649), + [anon_sym_nil] = ACTIONS(2649), + [sym_atom] = ACTIONS(2649), + [anon_sym_DQUOTE] = ACTIONS(2649), + [anon_sym_SQUOTE] = ACTIONS(2649), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2649), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2649), + [anon_sym_LBRACK] = ACTIONS(2649), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_GT] = ACTIONS(2649), + [anon_sym_PIPE] = ACTIONS(2649), + [anon_sym_SLASH] = ACTIONS(2649), + [anon_sym_TILDE] = ACTIONS(2649), + [anon_sym_COMMA] = ACTIONS(2649), + [sym_keyword] = ACTIONS(2649), + [anon_sym_LT_LT] = ACTIONS(2649), + [anon_sym_PERCENT] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(2649), + [anon_sym_PLUS] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_BANG] = ACTIONS(2649), + [anon_sym_CARET] = ACTIONS(2649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2649), + [anon_sym_not] = ACTIONS(2649), + [anon_sym_AT] = ACTIONS(2649), + [anon_sym_LT_DASH] = ACTIONS(2649), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2649), + [anon_sym_when] = ACTIONS(2649), + [anon_sym_COLON_COLON] = ACTIONS(2649), + [anon_sym_EQ_GT] = ACTIONS(2649), + [anon_sym_EQ] = ACTIONS(2649), + [anon_sym_PIPE_PIPE] = ACTIONS(2649), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2649), + [anon_sym_or] = ACTIONS(2649), + [anon_sym_AMP_AMP] = ACTIONS(2649), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2649), + [anon_sym_and] = ACTIONS(2649), + [anon_sym_EQ_EQ] = ACTIONS(2649), + [anon_sym_BANG_EQ] = ACTIONS(2649), + [anon_sym_EQ_TILDE] = ACTIONS(2649), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2649), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2649), + [anon_sym_LT_EQ] = ACTIONS(2649), + [anon_sym_GT_EQ] = ACTIONS(2649), + [anon_sym_PIPE_GT] = ACTIONS(2649), + [anon_sym_LT_LT_LT] = ACTIONS(2649), + [anon_sym_GT_GT_GT] = ACTIONS(2649), + [anon_sym_LT_LT_TILDE] = ACTIONS(2649), + [anon_sym_TILDE_GT_GT] = ACTIONS(2649), + [anon_sym_LT_TILDE] = ACTIONS(2649), + [anon_sym_TILDE_GT] = ACTIONS(2649), + [anon_sym_LT_TILDE_GT] = ACTIONS(2649), + [anon_sym_LT_PIPE_GT] = ACTIONS(2649), + [anon_sym_in] = ACTIONS(2649), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2649), + [anon_sym_SLASH_SLASH] = ACTIONS(2649), + [anon_sym_PLUS_PLUS] = ACTIONS(2649), + [anon_sym_DASH_DASH] = ACTIONS(2649), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2649), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2649), + [anon_sym_DOT_DOT] = ACTIONS(2649), + [anon_sym_LT_GT] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2649), + [anon_sym_STAR_STAR] = ACTIONS(2649), + [anon_sym_CARET_CARET] = ACTIONS(2649), + [anon_sym_DASH_GT] = ACTIONS(2649), + [anon_sym_DOT] = ACTIONS(2649), + [anon_sym_do] = ACTIONS(2649), + [anon_sym_fn] = ACTIONS(2649), + [anon_sym_LPAREN2] = ACTIONS(2647), + [anon_sym_LBRACK2] = ACTIONS(2647), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2647), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2647), + [sym__not_in] = ACTIONS(2647), + [sym__quoted_atom_start] = ACTIONS(2647), + }, + [981] = { [aux_sym__terminator_token1] = ACTIONS(2651), [anon_sym_SEMI] = ACTIONS(2653), [anon_sym_LPAREN] = ACTIONS(2653), @@ -148301,7 +148449,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2651), [sym__quoted_atom_start] = ACTIONS(2651), }, - [987] = { + [982] = { + [aux_sym__terminator_token1] = ACTIONS(2611), + [anon_sym_SEMI] = ACTIONS(2613), + [anon_sym_LPAREN] = ACTIONS(2613), + [anon_sym_RPAREN] = ACTIONS(2613), + [aux_sym_identifier_token1] = ACTIONS(2613), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2613), + [sym_unused_identifier] = ACTIONS(2613), + [anon_sym___MODULE__] = ACTIONS(2613), + [anon_sym___DIR__] = ACTIONS(2613), + [anon_sym___ENV__] = ACTIONS(2613), + [anon_sym___CALLER__] = ACTIONS(2613), + [anon_sym___STACKTRACE__] = ACTIONS(2613), + [sym_alias] = ACTIONS(2613), + [sym_integer] = ACTIONS(2613), + [sym_float] = ACTIONS(2613), + [sym_char] = ACTIONS(2613), + [anon_sym_true] = ACTIONS(2613), + [anon_sym_false] = ACTIONS(2613), + [anon_sym_nil] = ACTIONS(2613), + [sym_atom] = ACTIONS(2613), + [anon_sym_DQUOTE] = ACTIONS(2613), + [anon_sym_SQUOTE] = ACTIONS(2613), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2613), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2613), + [anon_sym_LBRACE] = ACTIONS(2613), + [anon_sym_LBRACK] = ACTIONS(2613), + [anon_sym_LT] = ACTIONS(2613), + [anon_sym_GT] = ACTIONS(2613), + [anon_sym_PIPE] = ACTIONS(2613), + [anon_sym_SLASH] = ACTIONS(2613), + [anon_sym_TILDE] = ACTIONS(2613), + [anon_sym_COMMA] = ACTIONS(2613), + [sym_keyword] = ACTIONS(2613), + [anon_sym_LT_LT] = ACTIONS(2613), + [anon_sym_PERCENT] = ACTIONS(2613), + [anon_sym_AMP] = ACTIONS(2613), + [anon_sym_PLUS] = ACTIONS(2613), + [anon_sym_DASH] = ACTIONS(2613), + [anon_sym_BANG] = ACTIONS(2613), + [anon_sym_CARET] = ACTIONS(2613), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2613), + [anon_sym_not] = ACTIONS(2613), + [anon_sym_AT] = ACTIONS(2613), + [anon_sym_LT_DASH] = ACTIONS(2613), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2613), + [anon_sym_when] = ACTIONS(2613), + [anon_sym_COLON_COLON] = ACTIONS(2613), + [anon_sym_EQ_GT] = ACTIONS(2613), + [anon_sym_EQ] = ACTIONS(2613), + [anon_sym_PIPE_PIPE] = ACTIONS(2613), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2613), + [anon_sym_or] = ACTIONS(2613), + [anon_sym_AMP_AMP] = ACTIONS(2613), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2613), + [anon_sym_and] = ACTIONS(2613), + [anon_sym_EQ_EQ] = ACTIONS(2613), + [anon_sym_BANG_EQ] = ACTIONS(2613), + [anon_sym_EQ_TILDE] = ACTIONS(2613), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2613), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2613), + [anon_sym_LT_EQ] = ACTIONS(2613), + [anon_sym_GT_EQ] = ACTIONS(2613), + [anon_sym_PIPE_GT] = ACTIONS(2613), + [anon_sym_LT_LT_LT] = ACTIONS(2613), + [anon_sym_GT_GT_GT] = ACTIONS(2613), + [anon_sym_LT_LT_TILDE] = ACTIONS(2613), + [anon_sym_TILDE_GT_GT] = ACTIONS(2613), + [anon_sym_LT_TILDE] = ACTIONS(2613), + [anon_sym_TILDE_GT] = ACTIONS(2613), + [anon_sym_LT_TILDE_GT] = ACTIONS(2613), + [anon_sym_LT_PIPE_GT] = ACTIONS(2613), + [anon_sym_in] = ACTIONS(2613), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2613), + [anon_sym_SLASH_SLASH] = ACTIONS(2613), + [anon_sym_PLUS_PLUS] = ACTIONS(2613), + [anon_sym_DASH_DASH] = ACTIONS(2613), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2613), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2613), + [anon_sym_DOT_DOT] = ACTIONS(2613), + [anon_sym_LT_GT] = ACTIONS(2613), + [anon_sym_STAR] = ACTIONS(2613), + [anon_sym_STAR_STAR] = ACTIONS(2613), + [anon_sym_CARET_CARET] = ACTIONS(2613), + [anon_sym_DASH_GT] = ACTIONS(2613), + [anon_sym_DOT] = ACTIONS(2613), + [anon_sym_do] = ACTIONS(2613), + [anon_sym_fn] = ACTIONS(2613), + [anon_sym_LPAREN2] = ACTIONS(2611), + [anon_sym_LBRACK2] = ACTIONS(2611), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2611), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2611), + [sym__not_in] = ACTIONS(2611), + [sym__quoted_atom_start] = ACTIONS(2611), + }, + [983] = { [aux_sym__terminator_token1] = ACTIONS(2635), [anon_sym_SEMI] = ACTIONS(2637), [anon_sym_LPAREN] = ACTIONS(2637), @@ -148399,399 +148645,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2635), [sym__quoted_atom_start] = ACTIONS(2635), }, - [988] = { - [aux_sym__terminator_token1] = ACTIONS(2639), - [anon_sym_SEMI] = ACTIONS(2641), - [anon_sym_LPAREN] = ACTIONS(2641), - [aux_sym_identifier_token1] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2641), - [sym_unused_identifier] = ACTIONS(2641), - [anon_sym___MODULE__] = ACTIONS(2641), - [anon_sym___DIR__] = ACTIONS(2641), - [anon_sym___ENV__] = ACTIONS(2641), - [anon_sym___CALLER__] = ACTIONS(2641), - [anon_sym___STACKTRACE__] = ACTIONS(2641), - [sym_alias] = ACTIONS(2641), - [sym_integer] = ACTIONS(2641), - [sym_float] = ACTIONS(2641), - [sym_char] = ACTIONS(2641), - [anon_sym_true] = ACTIONS(2641), - [anon_sym_false] = ACTIONS(2641), - [anon_sym_nil] = ACTIONS(2641), - [sym_atom] = ACTIONS(2641), - [anon_sym_DQUOTE] = ACTIONS(2641), - [anon_sym_SQUOTE] = ACTIONS(2641), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2641), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2641), - [anon_sym_LBRACE] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_LT] = ACTIONS(2641), - [anon_sym_GT] = ACTIONS(2641), - [anon_sym_PIPE] = ACTIONS(2641), - [anon_sym_SLASH] = ACTIONS(2641), - [anon_sym_TILDE] = ACTIONS(2641), - [anon_sym_COMMA] = ACTIONS(2641), - [sym_keyword] = ACTIONS(2641), - [anon_sym_LT_LT] = ACTIONS(2641), - [anon_sym_PERCENT] = ACTIONS(2641), - [anon_sym_AMP] = ACTIONS(2641), - [anon_sym_PLUS] = ACTIONS(2641), - [anon_sym_DASH] = ACTIONS(2641), - [anon_sym_BANG] = ACTIONS(2641), - [anon_sym_CARET] = ACTIONS(2641), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2641), - [anon_sym_not] = ACTIONS(2641), - [anon_sym_AT] = ACTIONS(2641), - [anon_sym_LT_DASH] = ACTIONS(2641), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2641), - [anon_sym_when] = ACTIONS(2641), - [anon_sym_COLON_COLON] = ACTIONS(2641), - [anon_sym_EQ_GT] = ACTIONS(2641), - [anon_sym_EQ] = ACTIONS(2641), - [anon_sym_PIPE_PIPE] = ACTIONS(2641), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2641), - [anon_sym_or] = ACTIONS(2641), - [anon_sym_AMP_AMP] = ACTIONS(2641), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2641), - [anon_sym_and] = ACTIONS(2641), - [anon_sym_EQ_EQ] = ACTIONS(2641), - [anon_sym_BANG_EQ] = ACTIONS(2641), - [anon_sym_EQ_TILDE] = ACTIONS(2641), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2641), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2641), - [anon_sym_LT_EQ] = ACTIONS(2641), - [anon_sym_GT_EQ] = ACTIONS(2641), - [anon_sym_PIPE_GT] = ACTIONS(2641), - [anon_sym_LT_LT_LT] = ACTIONS(2641), - [anon_sym_GT_GT_GT] = ACTIONS(2641), - [anon_sym_LT_LT_TILDE] = ACTIONS(2641), - [anon_sym_TILDE_GT_GT] = ACTIONS(2641), - [anon_sym_LT_TILDE] = ACTIONS(2641), - [anon_sym_TILDE_GT] = ACTIONS(2641), - [anon_sym_LT_TILDE_GT] = ACTIONS(2641), - [anon_sym_LT_PIPE_GT] = ACTIONS(2641), - [anon_sym_in] = ACTIONS(2641), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2641), - [anon_sym_SLASH_SLASH] = ACTIONS(2641), - [anon_sym_PLUS_PLUS] = ACTIONS(2641), - [anon_sym_DASH_DASH] = ACTIONS(2641), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2641), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2641), - [anon_sym_DOT_DOT] = ACTIONS(2641), - [anon_sym_LT_GT] = ACTIONS(2641), - [anon_sym_STAR] = ACTIONS(2641), - [anon_sym_STAR_STAR] = ACTIONS(2641), - [anon_sym_CARET_CARET] = ACTIONS(2641), - [anon_sym_DASH_GT] = ACTIONS(2641), - [anon_sym_DOT] = ACTIONS(2641), - [anon_sym_do] = ACTIONS(2641), - [anon_sym_end] = ACTIONS(2641), - [anon_sym_fn] = ACTIONS(2641), - [anon_sym_LPAREN2] = ACTIONS(2639), - [anon_sym_LBRACK2] = ACTIONS(2639), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2639), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2639), - [sym__not_in] = ACTIONS(2639), - [sym__quoted_atom_start] = ACTIONS(2639), - }, - [989] = { - [aux_sym__terminator_token1] = ACTIONS(2611), - [anon_sym_SEMI] = ACTIONS(2613), - [anon_sym_LPAREN] = ACTIONS(2613), - [anon_sym_RPAREN] = ACTIONS(2613), - [aux_sym_identifier_token1] = ACTIONS(2613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2613), - [sym_unused_identifier] = ACTIONS(2613), - [anon_sym___MODULE__] = ACTIONS(2613), - [anon_sym___DIR__] = ACTIONS(2613), - [anon_sym___ENV__] = ACTIONS(2613), - [anon_sym___CALLER__] = ACTIONS(2613), - [anon_sym___STACKTRACE__] = ACTIONS(2613), - [sym_alias] = ACTIONS(2613), - [sym_integer] = ACTIONS(2613), - [sym_float] = ACTIONS(2613), - [sym_char] = ACTIONS(2613), - [anon_sym_true] = ACTIONS(2613), - [anon_sym_false] = ACTIONS(2613), - [anon_sym_nil] = ACTIONS(2613), - [sym_atom] = ACTIONS(2613), - [anon_sym_DQUOTE] = ACTIONS(2613), - [anon_sym_SQUOTE] = ACTIONS(2613), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2613), - [anon_sym_LBRACE] = ACTIONS(2613), - [anon_sym_LBRACK] = ACTIONS(2613), - [anon_sym_LT] = ACTIONS(2613), - [anon_sym_GT] = ACTIONS(2613), - [anon_sym_PIPE] = ACTIONS(2613), - [anon_sym_SLASH] = ACTIONS(2613), - [anon_sym_TILDE] = ACTIONS(2613), - [anon_sym_COMMA] = ACTIONS(2613), - [sym_keyword] = ACTIONS(2613), - [anon_sym_LT_LT] = ACTIONS(2613), - [anon_sym_PERCENT] = ACTIONS(2613), - [anon_sym_AMP] = ACTIONS(2613), - [anon_sym_PLUS] = ACTIONS(2613), - [anon_sym_DASH] = ACTIONS(2613), - [anon_sym_BANG] = ACTIONS(2613), - [anon_sym_CARET] = ACTIONS(2613), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(2613), - [anon_sym_AT] = ACTIONS(2613), - [anon_sym_LT_DASH] = ACTIONS(2613), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2613), - [anon_sym_when] = ACTIONS(2613), - [anon_sym_COLON_COLON] = ACTIONS(2613), - [anon_sym_EQ_GT] = ACTIONS(2613), - [anon_sym_EQ] = ACTIONS(2613), - [anon_sym_PIPE_PIPE] = ACTIONS(2613), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2613), - [anon_sym_or] = ACTIONS(2613), - [anon_sym_AMP_AMP] = ACTIONS(2613), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2613), - [anon_sym_and] = ACTIONS(2613), - [anon_sym_EQ_EQ] = ACTIONS(2613), - [anon_sym_BANG_EQ] = ACTIONS(2613), - [anon_sym_EQ_TILDE] = ACTIONS(2613), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2613), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2613), - [anon_sym_LT_EQ] = ACTIONS(2613), - [anon_sym_GT_EQ] = ACTIONS(2613), - [anon_sym_PIPE_GT] = ACTIONS(2613), - [anon_sym_LT_LT_LT] = ACTIONS(2613), - [anon_sym_GT_GT_GT] = ACTIONS(2613), - [anon_sym_LT_LT_TILDE] = ACTIONS(2613), - [anon_sym_TILDE_GT_GT] = ACTIONS(2613), - [anon_sym_LT_TILDE] = ACTIONS(2613), - [anon_sym_TILDE_GT] = ACTIONS(2613), - [anon_sym_LT_TILDE_GT] = ACTIONS(2613), - [anon_sym_LT_PIPE_GT] = ACTIONS(2613), - [anon_sym_in] = ACTIONS(2613), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2613), - [anon_sym_SLASH_SLASH] = ACTIONS(2613), - [anon_sym_PLUS_PLUS] = ACTIONS(2613), - [anon_sym_DASH_DASH] = ACTIONS(2613), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2613), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2613), - [anon_sym_DOT_DOT] = ACTIONS(2613), - [anon_sym_LT_GT] = ACTIONS(2613), - [anon_sym_STAR] = ACTIONS(2613), - [anon_sym_STAR_STAR] = ACTIONS(2613), - [anon_sym_CARET_CARET] = ACTIONS(2613), - [anon_sym_DASH_GT] = ACTIONS(2613), - [anon_sym_DOT] = ACTIONS(2613), - [anon_sym_do] = ACTIONS(2613), - [anon_sym_fn] = ACTIONS(2613), - [anon_sym_LPAREN2] = ACTIONS(2611), - [anon_sym_LBRACK2] = ACTIONS(2611), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2611), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2611), - [sym__not_in] = ACTIONS(2611), - [sym__quoted_atom_start] = ACTIONS(2611), - }, - [990] = { - [aux_sym__terminator_token1] = ACTIONS(2611), - [anon_sym_SEMI] = ACTIONS(2613), - [anon_sym_LPAREN] = ACTIONS(2613), - [anon_sym_RPAREN] = ACTIONS(2613), - [aux_sym_identifier_token1] = ACTIONS(2613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2613), - [sym_unused_identifier] = ACTIONS(2613), - [anon_sym___MODULE__] = ACTIONS(2613), - [anon_sym___DIR__] = ACTIONS(2613), - [anon_sym___ENV__] = ACTIONS(2613), - [anon_sym___CALLER__] = ACTIONS(2613), - [anon_sym___STACKTRACE__] = ACTIONS(2613), - [sym_alias] = ACTIONS(2613), - [sym_integer] = ACTIONS(2613), - [sym_float] = ACTIONS(2613), - [sym_char] = ACTIONS(2613), - [anon_sym_true] = ACTIONS(2613), - [anon_sym_false] = ACTIONS(2613), - [anon_sym_nil] = ACTIONS(2613), - [sym_atom] = ACTIONS(2613), - [anon_sym_DQUOTE] = ACTIONS(2613), - [anon_sym_SQUOTE] = ACTIONS(2613), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2613), - [anon_sym_LBRACE] = ACTIONS(2613), - [anon_sym_LBRACK] = ACTIONS(2613), - [anon_sym_LT] = ACTIONS(2613), - [anon_sym_GT] = ACTIONS(2613), - [anon_sym_PIPE] = ACTIONS(2613), - [anon_sym_SLASH] = ACTIONS(2613), - [anon_sym_TILDE] = ACTIONS(2613), - [anon_sym_COMMA] = ACTIONS(2613), - [sym_keyword] = ACTIONS(2613), - [anon_sym_LT_LT] = ACTIONS(2613), - [anon_sym_PERCENT] = ACTIONS(2613), - [anon_sym_AMP] = ACTIONS(2613), - [anon_sym_PLUS] = ACTIONS(2613), - [anon_sym_DASH] = ACTIONS(2613), - [anon_sym_BANG] = ACTIONS(2613), - [anon_sym_CARET] = ACTIONS(2613), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(2613), - [anon_sym_AT] = ACTIONS(2613), - [anon_sym_LT_DASH] = ACTIONS(2613), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2613), - [anon_sym_when] = ACTIONS(2613), - [anon_sym_COLON_COLON] = ACTIONS(2613), - [anon_sym_EQ_GT] = ACTIONS(2613), - [anon_sym_EQ] = ACTIONS(2613), - [anon_sym_PIPE_PIPE] = ACTIONS(2613), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2613), - [anon_sym_or] = ACTIONS(2613), - [anon_sym_AMP_AMP] = ACTIONS(2613), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2613), - [anon_sym_and] = ACTIONS(2613), - [anon_sym_EQ_EQ] = ACTIONS(2613), - [anon_sym_BANG_EQ] = ACTIONS(2613), - [anon_sym_EQ_TILDE] = ACTIONS(2613), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2613), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2613), - [anon_sym_LT_EQ] = ACTIONS(2613), - [anon_sym_GT_EQ] = ACTIONS(2613), - [anon_sym_PIPE_GT] = ACTIONS(2613), - [anon_sym_LT_LT_LT] = ACTIONS(2613), - [anon_sym_GT_GT_GT] = ACTIONS(2613), - [anon_sym_LT_LT_TILDE] = ACTIONS(2613), - [anon_sym_TILDE_GT_GT] = ACTIONS(2613), - [anon_sym_LT_TILDE] = ACTIONS(2613), - [anon_sym_TILDE_GT] = ACTIONS(2613), - [anon_sym_LT_TILDE_GT] = ACTIONS(2613), - [anon_sym_LT_PIPE_GT] = ACTIONS(2613), - [anon_sym_in] = ACTIONS(2613), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2613), - [anon_sym_SLASH_SLASH] = ACTIONS(2613), - [anon_sym_PLUS_PLUS] = ACTIONS(2613), - [anon_sym_DASH_DASH] = ACTIONS(2613), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2613), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2613), - [anon_sym_DOT_DOT] = ACTIONS(2613), - [anon_sym_LT_GT] = ACTIONS(2613), - [anon_sym_STAR] = ACTIONS(2613), - [anon_sym_STAR_STAR] = ACTIONS(2613), - [anon_sym_CARET_CARET] = ACTIONS(2613), - [anon_sym_DASH_GT] = ACTIONS(2613), - [anon_sym_DOT] = ACTIONS(2613), - [anon_sym_do] = ACTIONS(2613), - [anon_sym_fn] = ACTIONS(2613), - [anon_sym_LPAREN2] = ACTIONS(2611), - [anon_sym_LBRACK2] = ACTIONS(2611), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2611), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2611), - [sym__not_in] = ACTIONS(2611), - [sym__quoted_atom_start] = ACTIONS(2611), - }, - [991] = { - [ts_builtin_sym_end] = ACTIONS(2615), - [aux_sym__terminator_token1] = ACTIONS(2615), - [anon_sym_SEMI] = ACTIONS(2617), - [anon_sym_LPAREN] = ACTIONS(2617), - [aux_sym_identifier_token1] = ACTIONS(2617), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2617), - [sym_unused_identifier] = ACTIONS(2617), - [anon_sym___MODULE__] = ACTIONS(2617), - [anon_sym___DIR__] = ACTIONS(2617), - [anon_sym___ENV__] = ACTIONS(2617), - [anon_sym___CALLER__] = ACTIONS(2617), - [anon_sym___STACKTRACE__] = ACTIONS(2617), - [sym_alias] = ACTIONS(2617), - [sym_integer] = ACTIONS(2617), - [sym_float] = ACTIONS(2617), - [sym_char] = ACTIONS(2617), - [anon_sym_true] = ACTIONS(2617), - [anon_sym_false] = ACTIONS(2617), - [anon_sym_nil] = ACTIONS(2617), - [sym_atom] = ACTIONS(2617), - [anon_sym_DQUOTE] = ACTIONS(2617), - [anon_sym_SQUOTE] = ACTIONS(2617), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2617), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2617), - [anon_sym_LBRACK] = ACTIONS(2617), - [anon_sym_LT] = ACTIONS(2617), - [anon_sym_GT] = ACTIONS(2617), - [anon_sym_PIPE] = ACTIONS(2617), - [anon_sym_SLASH] = ACTIONS(2617), - [anon_sym_TILDE] = ACTIONS(2617), - [anon_sym_COMMA] = ACTIONS(2617), - [sym_keyword] = ACTIONS(2617), - [anon_sym_LT_LT] = ACTIONS(2617), - [anon_sym_PERCENT] = ACTIONS(2617), - [anon_sym_AMP] = ACTIONS(2617), - [anon_sym_PLUS] = ACTIONS(2617), - [anon_sym_DASH] = ACTIONS(2617), - [anon_sym_BANG] = ACTIONS(2617), - [anon_sym_CARET] = ACTIONS(2617), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2617), - [anon_sym_not] = ACTIONS(2617), - [anon_sym_AT] = ACTIONS(2617), - [anon_sym_LT_DASH] = ACTIONS(2617), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2617), - [anon_sym_when] = ACTIONS(2617), - [anon_sym_COLON_COLON] = ACTIONS(2617), - [anon_sym_EQ_GT] = ACTIONS(2617), - [anon_sym_EQ] = ACTIONS(2617), - [anon_sym_PIPE_PIPE] = ACTIONS(2617), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2617), - [anon_sym_or] = ACTIONS(2617), - [anon_sym_AMP_AMP] = ACTIONS(2617), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2617), - [anon_sym_and] = ACTIONS(2617), - [anon_sym_EQ_EQ] = ACTIONS(2617), - [anon_sym_BANG_EQ] = ACTIONS(2617), - [anon_sym_EQ_TILDE] = ACTIONS(2617), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2617), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2617), - [anon_sym_LT_EQ] = ACTIONS(2617), - [anon_sym_GT_EQ] = ACTIONS(2617), - [anon_sym_PIPE_GT] = ACTIONS(2617), - [anon_sym_LT_LT_LT] = ACTIONS(2617), - [anon_sym_GT_GT_GT] = ACTIONS(2617), - [anon_sym_LT_LT_TILDE] = ACTIONS(2617), - [anon_sym_TILDE_GT_GT] = ACTIONS(2617), - [anon_sym_LT_TILDE] = ACTIONS(2617), - [anon_sym_TILDE_GT] = ACTIONS(2617), - [anon_sym_LT_TILDE_GT] = ACTIONS(2617), - [anon_sym_LT_PIPE_GT] = ACTIONS(2617), - [anon_sym_in] = ACTIONS(2617), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2617), - [anon_sym_SLASH_SLASH] = ACTIONS(2617), - [anon_sym_PLUS_PLUS] = ACTIONS(2617), - [anon_sym_DASH_DASH] = ACTIONS(2617), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2617), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2617), - [anon_sym_DOT_DOT] = ACTIONS(2617), - [anon_sym_LT_GT] = ACTIONS(2617), - [anon_sym_STAR] = ACTIONS(2617), - [anon_sym_STAR_STAR] = ACTIONS(2617), - [anon_sym_CARET_CARET] = ACTIONS(2617), - [anon_sym_DASH_GT] = ACTIONS(2617), - [anon_sym_DOT] = ACTIONS(2617), - [anon_sym_do] = ACTIONS(2617), - [anon_sym_fn] = ACTIONS(2617), - [anon_sym_LPAREN2] = ACTIONS(2615), - [anon_sym_LBRACK2] = ACTIONS(2615), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2615), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2615), - [sym__not_in] = ACTIONS(2615), - [sym__quoted_atom_start] = ACTIONS(2615), - }, - [992] = { + [984] = { [aux_sym__terminator_token1] = ACTIONS(2647), [anon_sym_SEMI] = ACTIONS(2649), [anon_sym_LPAREN] = ACTIONS(2649), @@ -148889,203 +148743,499 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2647), [sym__quoted_atom_start] = ACTIONS(2647), }, - [993] = { - [aux_sym__terminator_token1] = ACTIONS(2615), - [anon_sym_SEMI] = ACTIONS(2617), - [anon_sym_LPAREN] = ACTIONS(2617), - [anon_sym_RPAREN] = ACTIONS(2617), - [aux_sym_identifier_token1] = ACTIONS(2617), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2617), - [sym_unused_identifier] = ACTIONS(2617), - [anon_sym___MODULE__] = ACTIONS(2617), - [anon_sym___DIR__] = ACTIONS(2617), - [anon_sym___ENV__] = ACTIONS(2617), - [anon_sym___CALLER__] = ACTIONS(2617), - [anon_sym___STACKTRACE__] = ACTIONS(2617), - [sym_alias] = ACTIONS(2617), - [sym_integer] = ACTIONS(2617), - [sym_float] = ACTIONS(2617), - [sym_char] = ACTIONS(2617), - [anon_sym_true] = ACTIONS(2617), - [anon_sym_false] = ACTIONS(2617), - [anon_sym_nil] = ACTIONS(2617), - [sym_atom] = ACTIONS(2617), - [anon_sym_DQUOTE] = ACTIONS(2617), - [anon_sym_SQUOTE] = ACTIONS(2617), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2617), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2617), - [anon_sym_LBRACK] = ACTIONS(2617), - [anon_sym_LT] = ACTIONS(2617), - [anon_sym_GT] = ACTIONS(2617), - [anon_sym_PIPE] = ACTIONS(2617), - [anon_sym_SLASH] = ACTIONS(2617), - [anon_sym_TILDE] = ACTIONS(2617), - [anon_sym_COMMA] = ACTIONS(2617), - [sym_keyword] = ACTIONS(2617), - [anon_sym_LT_LT] = ACTIONS(2617), - [anon_sym_PERCENT] = ACTIONS(2617), - [anon_sym_AMP] = ACTIONS(2617), - [anon_sym_PLUS] = ACTIONS(2617), - [anon_sym_DASH] = ACTIONS(2617), - [anon_sym_BANG] = ACTIONS(2617), - [anon_sym_CARET] = ACTIONS(2617), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2617), - [anon_sym_not] = ACTIONS(2617), - [anon_sym_AT] = ACTIONS(2617), - [anon_sym_LT_DASH] = ACTIONS(2617), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2617), - [anon_sym_when] = ACTIONS(2617), - [anon_sym_COLON_COLON] = ACTIONS(2617), - [anon_sym_EQ_GT] = ACTIONS(2617), - [anon_sym_EQ] = ACTIONS(2617), - [anon_sym_PIPE_PIPE] = ACTIONS(2617), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2617), - [anon_sym_or] = ACTIONS(2617), - [anon_sym_AMP_AMP] = ACTIONS(2617), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2617), - [anon_sym_and] = ACTIONS(2617), - [anon_sym_EQ_EQ] = ACTIONS(2617), - [anon_sym_BANG_EQ] = ACTIONS(2617), - [anon_sym_EQ_TILDE] = ACTIONS(2617), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2617), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2617), - [anon_sym_LT_EQ] = ACTIONS(2617), - [anon_sym_GT_EQ] = ACTIONS(2617), - [anon_sym_PIPE_GT] = ACTIONS(2617), - [anon_sym_LT_LT_LT] = ACTIONS(2617), - [anon_sym_GT_GT_GT] = ACTIONS(2617), - [anon_sym_LT_LT_TILDE] = ACTIONS(2617), - [anon_sym_TILDE_GT_GT] = ACTIONS(2617), - [anon_sym_LT_TILDE] = ACTIONS(2617), - [anon_sym_TILDE_GT] = ACTIONS(2617), - [anon_sym_LT_TILDE_GT] = ACTIONS(2617), - [anon_sym_LT_PIPE_GT] = ACTIONS(2617), - [anon_sym_in] = ACTIONS(2617), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2617), - [anon_sym_SLASH_SLASH] = ACTIONS(2617), - [anon_sym_PLUS_PLUS] = ACTIONS(2617), - [anon_sym_DASH_DASH] = ACTIONS(2617), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2617), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2617), - [anon_sym_DOT_DOT] = ACTIONS(2617), - [anon_sym_LT_GT] = ACTIONS(2617), - [anon_sym_STAR] = ACTIONS(2617), - [anon_sym_STAR_STAR] = ACTIONS(2617), - [anon_sym_CARET_CARET] = ACTIONS(2617), - [anon_sym_DASH_GT] = ACTIONS(2617), - [anon_sym_DOT] = ACTIONS(2617), - [anon_sym_do] = ACTIONS(2617), - [anon_sym_fn] = ACTIONS(2617), - [anon_sym_LPAREN2] = ACTIONS(2615), - [anon_sym_LBRACK2] = ACTIONS(2615), + [985] = { + [aux_sym__terminator_token1] = ACTIONS(2643), + [anon_sym_SEMI] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(2645), + [aux_sym_identifier_token1] = ACTIONS(2645), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2645), + [sym_unused_identifier] = ACTIONS(2645), + [anon_sym___MODULE__] = ACTIONS(2645), + [anon_sym___DIR__] = ACTIONS(2645), + [anon_sym___ENV__] = ACTIONS(2645), + [anon_sym___CALLER__] = ACTIONS(2645), + [anon_sym___STACKTRACE__] = ACTIONS(2645), + [sym_alias] = ACTIONS(2645), + [sym_integer] = ACTIONS(2645), + [sym_float] = ACTIONS(2645), + [sym_char] = ACTIONS(2645), + [anon_sym_true] = ACTIONS(2645), + [anon_sym_false] = ACTIONS(2645), + [anon_sym_nil] = ACTIONS(2645), + [sym_atom] = ACTIONS(2645), + [anon_sym_DQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2645), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2645), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_LBRACK] = ACTIONS(2645), + [anon_sym_LT] = ACTIONS(2645), + [anon_sym_GT] = ACTIONS(2645), + [anon_sym_PIPE] = ACTIONS(2645), + [anon_sym_SLASH] = ACTIONS(2645), + [anon_sym_TILDE] = ACTIONS(2645), + [anon_sym_COMMA] = ACTIONS(2645), + [sym_keyword] = ACTIONS(2645), + [anon_sym_LT_LT] = ACTIONS(2645), + [anon_sym_PERCENT] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2645), + [anon_sym_PLUS] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2645), + [anon_sym_BANG] = ACTIONS(2645), + [anon_sym_CARET] = ACTIONS(2645), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2645), + [anon_sym_not] = ACTIONS(2645), + [anon_sym_AT] = ACTIONS(2645), + [anon_sym_LT_DASH] = ACTIONS(2645), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2645), + [anon_sym_when] = ACTIONS(2645), + [anon_sym_COLON_COLON] = ACTIONS(2645), + [anon_sym_EQ_GT] = ACTIONS(2645), + [anon_sym_EQ] = ACTIONS(2645), + [anon_sym_PIPE_PIPE] = ACTIONS(2645), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2645), + [anon_sym_or] = ACTIONS(2645), + [anon_sym_AMP_AMP] = ACTIONS(2645), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2645), + [anon_sym_and] = ACTIONS(2645), + [anon_sym_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ] = ACTIONS(2645), + [anon_sym_EQ_TILDE] = ACTIONS(2645), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2645), + [anon_sym_LT_EQ] = ACTIONS(2645), + [anon_sym_GT_EQ] = ACTIONS(2645), + [anon_sym_PIPE_GT] = ACTIONS(2645), + [anon_sym_LT_LT_LT] = ACTIONS(2645), + [anon_sym_GT_GT_GT] = ACTIONS(2645), + [anon_sym_LT_LT_TILDE] = ACTIONS(2645), + [anon_sym_TILDE_GT_GT] = ACTIONS(2645), + [anon_sym_LT_TILDE] = ACTIONS(2645), + [anon_sym_TILDE_GT] = ACTIONS(2645), + [anon_sym_LT_TILDE_GT] = ACTIONS(2645), + [anon_sym_LT_PIPE_GT] = ACTIONS(2645), + [anon_sym_in] = ACTIONS(2645), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2645), + [anon_sym_SLASH_SLASH] = ACTIONS(2645), + [anon_sym_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_DASH_DASH] = ACTIONS(2645), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2645), + [anon_sym_DOT_DOT] = ACTIONS(2645), + [anon_sym_LT_GT] = ACTIONS(2645), + [anon_sym_STAR] = ACTIONS(2645), + [anon_sym_STAR_STAR] = ACTIONS(2645), + [anon_sym_CARET_CARET] = ACTIONS(2645), + [anon_sym_DASH_GT] = ACTIONS(2645), + [anon_sym_DOT] = ACTIONS(2645), + [anon_sym_do] = ACTIONS(2645), + [anon_sym_end] = ACTIONS(2645), + [anon_sym_fn] = ACTIONS(2645), + [anon_sym_LPAREN2] = ACTIONS(2643), + [anon_sym_LBRACK2] = ACTIONS(2643), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2615), + [sym__newline_before_do] = ACTIONS(2643), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2615), - [sym__not_in] = ACTIONS(2615), - [sym__quoted_atom_start] = ACTIONS(2615), + [sym__before_unary_op] = ACTIONS(2643), + [sym__not_in] = ACTIONS(2643), + [sym__quoted_atom_start] = ACTIONS(2643), }, - [994] = { - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2629), - [aux_sym_identifier_token1] = ACTIONS(2629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2629), - [sym_unused_identifier] = ACTIONS(2629), - [anon_sym___MODULE__] = ACTIONS(2629), - [anon_sym___DIR__] = ACTIONS(2629), - [anon_sym___ENV__] = ACTIONS(2629), - [anon_sym___CALLER__] = ACTIONS(2629), - [anon_sym___STACKTRACE__] = ACTIONS(2629), - [sym_alias] = ACTIONS(2629), - [sym_integer] = ACTIONS(2629), - [sym_float] = ACTIONS(2629), - [sym_char] = ACTIONS(2629), - [anon_sym_true] = ACTIONS(2629), - [anon_sym_false] = ACTIONS(2629), - [anon_sym_nil] = ACTIONS(2629), - [sym_atom] = ACTIONS(2629), - [anon_sym_DQUOTE] = ACTIONS(2629), - [anon_sym_SQUOTE] = ACTIONS(2629), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2629), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(2629), - [anon_sym_LBRACK] = ACTIONS(2629), - [anon_sym_LT] = ACTIONS(2629), - [anon_sym_GT] = ACTIONS(2629), - [anon_sym_PIPE] = ACTIONS(2629), - [anon_sym_SLASH] = ACTIONS(2629), - [anon_sym_TILDE] = ACTIONS(2629), - [anon_sym_COMMA] = ACTIONS(2629), - [sym_keyword] = ACTIONS(2629), - [anon_sym_LT_LT] = ACTIONS(2629), - [anon_sym_GT_GT] = ACTIONS(2629), - [anon_sym_PERCENT] = ACTIONS(2629), - [anon_sym_AMP] = ACTIONS(2629), - [anon_sym_PLUS] = ACTIONS(2629), - [anon_sym_DASH] = ACTIONS(2629), - [anon_sym_BANG] = ACTIONS(2629), - [anon_sym_CARET] = ACTIONS(2629), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2629), - [anon_sym_not] = ACTIONS(2629), - [anon_sym_AT] = ACTIONS(2629), - [anon_sym_LT_DASH] = ACTIONS(2629), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2629), - [anon_sym_when] = ACTIONS(2629), - [anon_sym_COLON_COLON] = ACTIONS(2629), - [anon_sym_EQ_GT] = ACTIONS(2629), - [anon_sym_EQ] = ACTIONS(2629), - [anon_sym_PIPE_PIPE] = ACTIONS(2629), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2629), - [anon_sym_or] = ACTIONS(2629), - [anon_sym_AMP_AMP] = ACTIONS(2629), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2629), - [anon_sym_and] = ACTIONS(2629), - [anon_sym_EQ_EQ] = ACTIONS(2629), - [anon_sym_BANG_EQ] = ACTIONS(2629), - [anon_sym_EQ_TILDE] = ACTIONS(2629), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2629), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2629), - [anon_sym_LT_EQ] = ACTIONS(2629), - [anon_sym_GT_EQ] = ACTIONS(2629), - [anon_sym_PIPE_GT] = ACTIONS(2629), - [anon_sym_LT_LT_LT] = ACTIONS(2629), - [anon_sym_GT_GT_GT] = ACTIONS(2629), - [anon_sym_LT_LT_TILDE] = ACTIONS(2629), - [anon_sym_TILDE_GT_GT] = ACTIONS(2629), - [anon_sym_LT_TILDE] = ACTIONS(2629), - [anon_sym_TILDE_GT] = ACTIONS(2629), - [anon_sym_LT_TILDE_GT] = ACTIONS(2629), - [anon_sym_LT_PIPE_GT] = ACTIONS(2629), - [anon_sym_in] = ACTIONS(2629), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2629), - [anon_sym_SLASH_SLASH] = ACTIONS(2629), - [anon_sym_PLUS_PLUS] = ACTIONS(2629), - [anon_sym_DASH_DASH] = ACTIONS(2629), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2629), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2629), - [anon_sym_DOT_DOT] = ACTIONS(2629), - [anon_sym_LT_GT] = ACTIONS(2629), - [anon_sym_STAR] = ACTIONS(2629), - [anon_sym_STAR_STAR] = ACTIONS(2629), - [anon_sym_CARET_CARET] = ACTIONS(2629), - [anon_sym_DASH_GT] = ACTIONS(2629), - [anon_sym_DOT] = ACTIONS(2629), - [anon_sym_do] = ACTIONS(2629), - [anon_sym_fn] = ACTIONS(2629), - [anon_sym_LPAREN2] = ACTIONS(2627), - [anon_sym_LBRACK2] = ACTIONS(2627), + [986] = { + [aux_sym__terminator_token1] = ACTIONS(2635), + [anon_sym_SEMI] = ACTIONS(2637), + [anon_sym_LPAREN] = ACTIONS(2637), + [aux_sym_identifier_token1] = ACTIONS(2637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2637), + [sym_unused_identifier] = ACTIONS(2637), + [anon_sym___MODULE__] = ACTIONS(2637), + [anon_sym___DIR__] = ACTIONS(2637), + [anon_sym___ENV__] = ACTIONS(2637), + [anon_sym___CALLER__] = ACTIONS(2637), + [anon_sym___STACKTRACE__] = ACTIONS(2637), + [sym_alias] = ACTIONS(2637), + [sym_integer] = ACTIONS(2637), + [sym_float] = ACTIONS(2637), + [sym_char] = ACTIONS(2637), + [anon_sym_true] = ACTIONS(2637), + [anon_sym_false] = ACTIONS(2637), + [anon_sym_nil] = ACTIONS(2637), + [sym_atom] = ACTIONS(2637), + [anon_sym_DQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2637), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2637), + [anon_sym_LBRACE] = ACTIONS(2637), + [anon_sym_LBRACK] = ACTIONS(2637), + [anon_sym_LT] = ACTIONS(2637), + [anon_sym_GT] = ACTIONS(2637), + [anon_sym_PIPE] = ACTIONS(2637), + [anon_sym_SLASH] = ACTIONS(2637), + [anon_sym_TILDE] = ACTIONS(2637), + [anon_sym_COMMA] = ACTIONS(2637), + [sym_keyword] = ACTIONS(2637), + [anon_sym_LT_LT] = ACTIONS(2637), + [anon_sym_PERCENT] = ACTIONS(2637), + [anon_sym_AMP] = ACTIONS(2637), + [anon_sym_PLUS] = ACTIONS(2637), + [anon_sym_DASH] = ACTIONS(2637), + [anon_sym_BANG] = ACTIONS(2637), + [anon_sym_CARET] = ACTIONS(2637), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2637), + [anon_sym_not] = ACTIONS(2637), + [anon_sym_AT] = ACTIONS(2637), + [anon_sym_LT_DASH] = ACTIONS(2637), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2637), + [anon_sym_when] = ACTIONS(2637), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_EQ_GT] = ACTIONS(2637), + [anon_sym_EQ] = ACTIONS(2637), + [anon_sym_PIPE_PIPE] = ACTIONS(2637), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2637), + [anon_sym_or] = ACTIONS(2637), + [anon_sym_AMP_AMP] = ACTIONS(2637), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2637), + [anon_sym_and] = ACTIONS(2637), + [anon_sym_EQ_EQ] = ACTIONS(2637), + [anon_sym_BANG_EQ] = ACTIONS(2637), + [anon_sym_EQ_TILDE] = ACTIONS(2637), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2637), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2637), + [anon_sym_LT_EQ] = ACTIONS(2637), + [anon_sym_GT_EQ] = ACTIONS(2637), + [anon_sym_PIPE_GT] = ACTIONS(2637), + [anon_sym_LT_LT_LT] = ACTIONS(2637), + [anon_sym_GT_GT_GT] = ACTIONS(2637), + [anon_sym_LT_LT_TILDE] = ACTIONS(2637), + [anon_sym_TILDE_GT_GT] = ACTIONS(2637), + [anon_sym_LT_TILDE] = ACTIONS(2637), + [anon_sym_TILDE_GT] = ACTIONS(2637), + [anon_sym_LT_TILDE_GT] = ACTIONS(2637), + [anon_sym_LT_PIPE_GT] = ACTIONS(2637), + [anon_sym_in] = ACTIONS(2637), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2637), + [anon_sym_SLASH_SLASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_DASH_DASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2637), + [anon_sym_DOT_DOT] = ACTIONS(2637), + [anon_sym_LT_GT] = ACTIONS(2637), + [anon_sym_STAR] = ACTIONS(2637), + [anon_sym_STAR_STAR] = ACTIONS(2637), + [anon_sym_CARET_CARET] = ACTIONS(2637), + [anon_sym_DASH_GT] = ACTIONS(2637), + [anon_sym_DOT] = ACTIONS(2637), + [anon_sym_do] = ACTIONS(2637), + [anon_sym_end] = ACTIONS(2637), + [anon_sym_fn] = ACTIONS(2637), + [anon_sym_LPAREN2] = ACTIONS(2635), + [anon_sym_LBRACK2] = ACTIONS(2635), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2627), + [sym__newline_before_do] = ACTIONS(2635), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2627), - [sym__not_in] = ACTIONS(2627), - [sym__quoted_atom_start] = ACTIONS(2627), + [sym__before_unary_op] = ACTIONS(2635), + [sym__not_in] = ACTIONS(2635), + [sym__quoted_atom_start] = ACTIONS(2635), }, - [995] = { - [aux_sym__terminator_token1] = ACTIONS(3), + [987] = { + [aux_sym__terminator_token1] = ACTIONS(2643), + [anon_sym_SEMI] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(2645), + [aux_sym_identifier_token1] = ACTIONS(2645), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2645), + [sym_unused_identifier] = ACTIONS(2645), + [anon_sym___MODULE__] = ACTIONS(2645), + [anon_sym___DIR__] = ACTIONS(2645), + [anon_sym___ENV__] = ACTIONS(2645), + [anon_sym___CALLER__] = ACTIONS(2645), + [anon_sym___STACKTRACE__] = ACTIONS(2645), + [sym_alias] = ACTIONS(2645), + [sym_integer] = ACTIONS(2645), + [sym_float] = ACTIONS(2645), + [sym_char] = ACTIONS(2645), + [anon_sym_true] = ACTIONS(2645), + [anon_sym_false] = ACTIONS(2645), + [anon_sym_nil] = ACTIONS(2645), + [sym_atom] = ACTIONS(2645), + [anon_sym_DQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2645), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2645), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_LBRACK] = ACTIONS(2645), + [anon_sym_LT] = ACTIONS(2645), + [anon_sym_GT] = ACTIONS(2645), + [anon_sym_PIPE] = ACTIONS(2645), + [anon_sym_SLASH] = ACTIONS(2645), + [anon_sym_TILDE] = ACTIONS(2645), + [anon_sym_COMMA] = ACTIONS(2645), + [sym_keyword] = ACTIONS(2645), + [anon_sym_LT_LT] = ACTIONS(2645), + [anon_sym_PERCENT] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2645), + [anon_sym_PLUS] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2645), + [anon_sym_BANG] = ACTIONS(2645), + [anon_sym_CARET] = ACTIONS(2645), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2645), + [anon_sym_not] = ACTIONS(2645), + [anon_sym_AT] = ACTIONS(2645), + [anon_sym_LT_DASH] = ACTIONS(2645), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2645), + [anon_sym_when] = ACTIONS(2645), + [anon_sym_COLON_COLON] = ACTIONS(2645), + [anon_sym_EQ_GT] = ACTIONS(2645), + [anon_sym_EQ] = ACTIONS(2645), + [anon_sym_PIPE_PIPE] = ACTIONS(2645), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2645), + [anon_sym_or] = ACTIONS(2645), + [anon_sym_AMP_AMP] = ACTIONS(2645), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2645), + [anon_sym_and] = ACTIONS(2645), + [anon_sym_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ] = ACTIONS(2645), + [anon_sym_EQ_TILDE] = ACTIONS(2645), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2645), + [anon_sym_LT_EQ] = ACTIONS(2645), + [anon_sym_GT_EQ] = ACTIONS(2645), + [anon_sym_PIPE_GT] = ACTIONS(2645), + [anon_sym_LT_LT_LT] = ACTIONS(2645), + [anon_sym_GT_GT_GT] = ACTIONS(2645), + [anon_sym_LT_LT_TILDE] = ACTIONS(2645), + [anon_sym_TILDE_GT_GT] = ACTIONS(2645), + [anon_sym_LT_TILDE] = ACTIONS(2645), + [anon_sym_TILDE_GT] = ACTIONS(2645), + [anon_sym_LT_TILDE_GT] = ACTIONS(2645), + [anon_sym_LT_PIPE_GT] = ACTIONS(2645), + [anon_sym_in] = ACTIONS(2645), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2645), + [anon_sym_SLASH_SLASH] = ACTIONS(2645), + [anon_sym_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_DASH_DASH] = ACTIONS(2645), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2645), + [anon_sym_DOT_DOT] = ACTIONS(2645), + [anon_sym_LT_GT] = ACTIONS(2645), + [anon_sym_STAR] = ACTIONS(2645), + [anon_sym_STAR_STAR] = ACTIONS(2645), + [anon_sym_CARET_CARET] = ACTIONS(2645), + [anon_sym_DASH_GT] = ACTIONS(2645), + [anon_sym_DOT] = ACTIONS(2645), + [anon_sym_do] = ACTIONS(2645), + [anon_sym_end] = ACTIONS(2645), + [anon_sym_fn] = ACTIONS(2645), + [anon_sym_LPAREN2] = ACTIONS(2643), + [anon_sym_LBRACK2] = ACTIONS(2643), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2643), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2643), + [sym__not_in] = ACTIONS(2643), + [sym__quoted_atom_start] = ACTIONS(2643), + }, + [988] = { + [aux_sym__terminator_token1] = ACTIONS(2635), + [anon_sym_SEMI] = ACTIONS(2637), + [anon_sym_LPAREN] = ACTIONS(2637), + [aux_sym_identifier_token1] = ACTIONS(2637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2637), + [sym_unused_identifier] = ACTIONS(2637), + [anon_sym___MODULE__] = ACTIONS(2637), + [anon_sym___DIR__] = ACTIONS(2637), + [anon_sym___ENV__] = ACTIONS(2637), + [anon_sym___CALLER__] = ACTIONS(2637), + [anon_sym___STACKTRACE__] = ACTIONS(2637), + [sym_alias] = ACTIONS(2637), + [sym_integer] = ACTIONS(2637), + [sym_float] = ACTIONS(2637), + [sym_char] = ACTIONS(2637), + [anon_sym_true] = ACTIONS(2637), + [anon_sym_false] = ACTIONS(2637), + [anon_sym_nil] = ACTIONS(2637), + [sym_atom] = ACTIONS(2637), + [anon_sym_DQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2637), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2637), + [anon_sym_LBRACE] = ACTIONS(2637), + [anon_sym_LBRACK] = ACTIONS(2637), + [anon_sym_LT] = ACTIONS(2637), + [anon_sym_GT] = ACTIONS(2637), + [anon_sym_PIPE] = ACTIONS(2637), + [anon_sym_SLASH] = ACTIONS(2637), + [anon_sym_TILDE] = ACTIONS(2637), + [anon_sym_COMMA] = ACTIONS(2637), + [sym_keyword] = ACTIONS(2637), + [anon_sym_LT_LT] = ACTIONS(2637), + [anon_sym_PERCENT] = ACTIONS(2637), + [anon_sym_AMP] = ACTIONS(2637), + [anon_sym_PLUS] = ACTIONS(2637), + [anon_sym_DASH] = ACTIONS(2637), + [anon_sym_BANG] = ACTIONS(2637), + [anon_sym_CARET] = ACTIONS(2637), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2637), + [anon_sym_not] = ACTIONS(2637), + [anon_sym_AT] = ACTIONS(2637), + [anon_sym_LT_DASH] = ACTIONS(2637), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2637), + [anon_sym_when] = ACTIONS(2637), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_EQ_GT] = ACTIONS(2637), + [anon_sym_EQ] = ACTIONS(2637), + [anon_sym_PIPE_PIPE] = ACTIONS(2637), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2637), + [anon_sym_or] = ACTIONS(2637), + [anon_sym_AMP_AMP] = ACTIONS(2637), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2637), + [anon_sym_and] = ACTIONS(2637), + [anon_sym_EQ_EQ] = ACTIONS(2637), + [anon_sym_BANG_EQ] = ACTIONS(2637), + [anon_sym_EQ_TILDE] = ACTIONS(2637), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2637), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2637), + [anon_sym_LT_EQ] = ACTIONS(2637), + [anon_sym_GT_EQ] = ACTIONS(2637), + [anon_sym_PIPE_GT] = ACTIONS(2637), + [anon_sym_LT_LT_LT] = ACTIONS(2637), + [anon_sym_GT_GT_GT] = ACTIONS(2637), + [anon_sym_LT_LT_TILDE] = ACTIONS(2637), + [anon_sym_TILDE_GT_GT] = ACTIONS(2637), + [anon_sym_LT_TILDE] = ACTIONS(2637), + [anon_sym_TILDE_GT] = ACTIONS(2637), + [anon_sym_LT_TILDE_GT] = ACTIONS(2637), + [anon_sym_LT_PIPE_GT] = ACTIONS(2637), + [anon_sym_in] = ACTIONS(2637), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2637), + [anon_sym_SLASH_SLASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_DASH_DASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2637), + [anon_sym_DOT_DOT] = ACTIONS(2637), + [anon_sym_LT_GT] = ACTIONS(2637), + [anon_sym_STAR] = ACTIONS(2637), + [anon_sym_STAR_STAR] = ACTIONS(2637), + [anon_sym_CARET_CARET] = ACTIONS(2637), + [anon_sym_DASH_GT] = ACTIONS(2637), + [anon_sym_DOT] = ACTIONS(2637), + [anon_sym_do] = ACTIONS(2637), + [anon_sym_end] = ACTIONS(2637), + [anon_sym_fn] = ACTIONS(2637), + [anon_sym_LPAREN2] = ACTIONS(2635), + [anon_sym_LBRACK2] = ACTIONS(2635), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2635), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2635), + [sym__not_in] = ACTIONS(2635), + [sym__quoted_atom_start] = ACTIONS(2635), + }, + [989] = { + [aux_sym__terminator_token1] = ACTIONS(2639), + [anon_sym_SEMI] = ACTIONS(2641), + [anon_sym_LPAREN] = ACTIONS(2641), + [aux_sym_identifier_token1] = ACTIONS(2641), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2641), + [sym_unused_identifier] = ACTIONS(2641), + [anon_sym___MODULE__] = ACTIONS(2641), + [anon_sym___DIR__] = ACTIONS(2641), + [anon_sym___ENV__] = ACTIONS(2641), + [anon_sym___CALLER__] = ACTIONS(2641), + [anon_sym___STACKTRACE__] = ACTIONS(2641), + [sym_alias] = ACTIONS(2641), + [sym_integer] = ACTIONS(2641), + [sym_float] = ACTIONS(2641), + [sym_char] = ACTIONS(2641), + [anon_sym_true] = ACTIONS(2641), + [anon_sym_false] = ACTIONS(2641), + [anon_sym_nil] = ACTIONS(2641), + [sym_atom] = ACTIONS(2641), + [anon_sym_DQUOTE] = ACTIONS(2641), + [anon_sym_SQUOTE] = ACTIONS(2641), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2641), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2641), + [anon_sym_LT] = ACTIONS(2641), + [anon_sym_GT] = ACTIONS(2641), + [anon_sym_PIPE] = ACTIONS(2641), + [anon_sym_SLASH] = ACTIONS(2641), + [anon_sym_TILDE] = ACTIONS(2641), + [anon_sym_COMMA] = ACTIONS(2641), + [sym_keyword] = ACTIONS(2641), + [anon_sym_LT_LT] = ACTIONS(2641), + [anon_sym_PERCENT] = ACTIONS(2641), + [anon_sym_AMP] = ACTIONS(2641), + [anon_sym_PLUS] = ACTIONS(2641), + [anon_sym_DASH] = ACTIONS(2641), + [anon_sym_BANG] = ACTIONS(2641), + [anon_sym_CARET] = ACTIONS(2641), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2641), + [anon_sym_not] = ACTIONS(2641), + [anon_sym_AT] = ACTIONS(2641), + [anon_sym_LT_DASH] = ACTIONS(2641), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2641), + [anon_sym_when] = ACTIONS(2641), + [anon_sym_COLON_COLON] = ACTIONS(2641), + [anon_sym_EQ_GT] = ACTIONS(2641), + [anon_sym_EQ] = ACTIONS(2641), + [anon_sym_PIPE_PIPE] = ACTIONS(2641), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2641), + [anon_sym_or] = ACTIONS(2641), + [anon_sym_AMP_AMP] = ACTIONS(2641), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2641), + [anon_sym_and] = ACTIONS(2641), + [anon_sym_EQ_EQ] = ACTIONS(2641), + [anon_sym_BANG_EQ] = ACTIONS(2641), + [anon_sym_EQ_TILDE] = ACTIONS(2641), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2641), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2641), + [anon_sym_LT_EQ] = ACTIONS(2641), + [anon_sym_GT_EQ] = ACTIONS(2641), + [anon_sym_PIPE_GT] = ACTIONS(2641), + [anon_sym_LT_LT_LT] = ACTIONS(2641), + [anon_sym_GT_GT_GT] = ACTIONS(2641), + [anon_sym_LT_LT_TILDE] = ACTIONS(2641), + [anon_sym_TILDE_GT_GT] = ACTIONS(2641), + [anon_sym_LT_TILDE] = ACTIONS(2641), + [anon_sym_TILDE_GT] = ACTIONS(2641), + [anon_sym_LT_TILDE_GT] = ACTIONS(2641), + [anon_sym_LT_PIPE_GT] = ACTIONS(2641), + [anon_sym_in] = ACTIONS(2641), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2641), + [anon_sym_SLASH_SLASH] = ACTIONS(2641), + [anon_sym_PLUS_PLUS] = ACTIONS(2641), + [anon_sym_DASH_DASH] = ACTIONS(2641), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2641), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2641), + [anon_sym_DOT_DOT] = ACTIONS(2641), + [anon_sym_LT_GT] = ACTIONS(2641), + [anon_sym_STAR] = ACTIONS(2641), + [anon_sym_STAR_STAR] = ACTIONS(2641), + [anon_sym_CARET_CARET] = ACTIONS(2641), + [anon_sym_DASH_GT] = ACTIONS(2641), + [anon_sym_DOT] = ACTIONS(2641), + [anon_sym_do] = ACTIONS(2641), + [anon_sym_end] = ACTIONS(2641), + [anon_sym_fn] = ACTIONS(2641), + [anon_sym_LPAREN2] = ACTIONS(2639), + [anon_sym_LBRACK2] = ACTIONS(2639), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2639), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2639), + [sym__not_in] = ACTIONS(2639), + [sym__quoted_atom_start] = ACTIONS(2639), + }, + [990] = { + [aux_sym__terminator_token1] = ACTIONS(2623), + [anon_sym_SEMI] = ACTIONS(2625), [anon_sym_LPAREN] = ACTIONS(2625), [aux_sym_identifier_token1] = ACTIONS(2625), [anon_sym_DOT_DOT_DOT] = ACTIONS(2625), @@ -149117,7 +149267,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(2625), [sym_keyword] = ACTIONS(2625), [anon_sym_LT_LT] = ACTIONS(2625), - [anon_sym_GT_GT] = ACTIONS(2625), [anon_sym_PERCENT] = ACTIONS(2625), [anon_sym_AMP] = ACTIONS(2625), [anon_sym_PLUS] = ACTIONS(2625), @@ -149170,6 +149319,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(2625), [anon_sym_DOT] = ACTIONS(2625), [anon_sym_do] = ACTIONS(2625), + [anon_sym_end] = ACTIONS(2625), [anon_sym_fn] = ACTIONS(2625), [anon_sym_LPAREN2] = ACTIONS(2623), [anon_sym_LBRACK2] = ACTIONS(2623), @@ -149181,7 +149331,301 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2623), [sym__quoted_atom_start] = ACTIONS(2623), }, - [996] = { + [991] = { + [aux_sym__terminator_token1] = ACTIONS(2627), + [anon_sym_SEMI] = ACTIONS(2629), + [anon_sym_LPAREN] = ACTIONS(2629), + [aux_sym_identifier_token1] = ACTIONS(2629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2629), + [sym_unused_identifier] = ACTIONS(2629), + [anon_sym___MODULE__] = ACTIONS(2629), + [anon_sym___DIR__] = ACTIONS(2629), + [anon_sym___ENV__] = ACTIONS(2629), + [anon_sym___CALLER__] = ACTIONS(2629), + [anon_sym___STACKTRACE__] = ACTIONS(2629), + [sym_alias] = ACTIONS(2629), + [sym_integer] = ACTIONS(2629), + [sym_float] = ACTIONS(2629), + [sym_char] = ACTIONS(2629), + [anon_sym_true] = ACTIONS(2629), + [anon_sym_false] = ACTIONS(2629), + [anon_sym_nil] = ACTIONS(2629), + [sym_atom] = ACTIONS(2629), + [anon_sym_DQUOTE] = ACTIONS(2629), + [anon_sym_SQUOTE] = ACTIONS(2629), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2629), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2629), + [anon_sym_LBRACE] = ACTIONS(2629), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_LT] = ACTIONS(2629), + [anon_sym_GT] = ACTIONS(2629), + [anon_sym_PIPE] = ACTIONS(2629), + [anon_sym_SLASH] = ACTIONS(2629), + [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_COMMA] = ACTIONS(2629), + [sym_keyword] = ACTIONS(2629), + [anon_sym_LT_LT] = ACTIONS(2629), + [anon_sym_PERCENT] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2629), + [anon_sym_PLUS] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(2629), + [anon_sym_BANG] = ACTIONS(2629), + [anon_sym_CARET] = ACTIONS(2629), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2629), + [anon_sym_not] = ACTIONS(2629), + [anon_sym_AT] = ACTIONS(2629), + [anon_sym_LT_DASH] = ACTIONS(2629), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2629), + [anon_sym_when] = ACTIONS(2629), + [anon_sym_COLON_COLON] = ACTIONS(2629), + [anon_sym_EQ_GT] = ACTIONS(2629), + [anon_sym_EQ] = ACTIONS(2629), + [anon_sym_PIPE_PIPE] = ACTIONS(2629), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2629), + [anon_sym_or] = ACTIONS(2629), + [anon_sym_AMP_AMP] = ACTIONS(2629), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2629), + [anon_sym_and] = ACTIONS(2629), + [anon_sym_EQ_EQ] = ACTIONS(2629), + [anon_sym_BANG_EQ] = ACTIONS(2629), + [anon_sym_EQ_TILDE] = ACTIONS(2629), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2629), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2629), + [anon_sym_LT_EQ] = ACTIONS(2629), + [anon_sym_GT_EQ] = ACTIONS(2629), + [anon_sym_PIPE_GT] = ACTIONS(2629), + [anon_sym_LT_LT_LT] = ACTIONS(2629), + [anon_sym_GT_GT_GT] = ACTIONS(2629), + [anon_sym_LT_LT_TILDE] = ACTIONS(2629), + [anon_sym_TILDE_GT_GT] = ACTIONS(2629), + [anon_sym_LT_TILDE] = ACTIONS(2629), + [anon_sym_TILDE_GT] = ACTIONS(2629), + [anon_sym_LT_TILDE_GT] = ACTIONS(2629), + [anon_sym_LT_PIPE_GT] = ACTIONS(2629), + [anon_sym_in] = ACTIONS(2629), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2629), + [anon_sym_SLASH_SLASH] = ACTIONS(2629), + [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_DASH_DASH] = ACTIONS(2629), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2629), + [anon_sym_DOT_DOT] = ACTIONS(2629), + [anon_sym_LT_GT] = ACTIONS(2629), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_STAR_STAR] = ACTIONS(2629), + [anon_sym_CARET_CARET] = ACTIONS(2629), + [anon_sym_DASH_GT] = ACTIONS(2629), + [anon_sym_DOT] = ACTIONS(2629), + [anon_sym_do] = ACTIONS(2629), + [anon_sym_end] = ACTIONS(2629), + [anon_sym_fn] = ACTIONS(2629), + [anon_sym_LPAREN2] = ACTIONS(2627), + [anon_sym_LBRACK2] = ACTIONS(2627), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2627), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2627), + [sym__not_in] = ACTIONS(2627), + [sym__quoted_atom_start] = ACTIONS(2627), + }, + [992] = { + [aux_sym__terminator_token1] = ACTIONS(2611), + [anon_sym_SEMI] = ACTIONS(2613), + [anon_sym_LPAREN] = ACTIONS(2613), + [aux_sym_identifier_token1] = ACTIONS(2613), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2613), + [sym_unused_identifier] = ACTIONS(2613), + [anon_sym___MODULE__] = ACTIONS(2613), + [anon_sym___DIR__] = ACTIONS(2613), + [anon_sym___ENV__] = ACTIONS(2613), + [anon_sym___CALLER__] = ACTIONS(2613), + [anon_sym___STACKTRACE__] = ACTIONS(2613), + [sym_alias] = ACTIONS(2613), + [sym_integer] = ACTIONS(2613), + [sym_float] = ACTIONS(2613), + [sym_char] = ACTIONS(2613), + [anon_sym_true] = ACTIONS(2613), + [anon_sym_false] = ACTIONS(2613), + [anon_sym_nil] = ACTIONS(2613), + [sym_atom] = ACTIONS(2613), + [anon_sym_DQUOTE] = ACTIONS(2613), + [anon_sym_SQUOTE] = ACTIONS(2613), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2613), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2613), + [anon_sym_LBRACE] = ACTIONS(2613), + [anon_sym_LBRACK] = ACTIONS(2613), + [anon_sym_LT] = ACTIONS(2613), + [anon_sym_GT] = ACTIONS(2613), + [anon_sym_PIPE] = ACTIONS(2613), + [anon_sym_SLASH] = ACTIONS(2613), + [anon_sym_TILDE] = ACTIONS(2613), + [anon_sym_COMMA] = ACTIONS(2613), + [sym_keyword] = ACTIONS(2613), + [anon_sym_LT_LT] = ACTIONS(2613), + [anon_sym_PERCENT] = ACTIONS(2613), + [anon_sym_AMP] = ACTIONS(2613), + [anon_sym_PLUS] = ACTIONS(2613), + [anon_sym_DASH] = ACTIONS(2613), + [anon_sym_BANG] = ACTIONS(2613), + [anon_sym_CARET] = ACTIONS(2613), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2613), + [anon_sym_not] = ACTIONS(2613), + [anon_sym_AT] = ACTIONS(2613), + [anon_sym_LT_DASH] = ACTIONS(2613), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2613), + [anon_sym_when] = ACTIONS(2613), + [anon_sym_COLON_COLON] = ACTIONS(2613), + [anon_sym_EQ_GT] = ACTIONS(2613), + [anon_sym_EQ] = ACTIONS(2613), + [anon_sym_PIPE_PIPE] = ACTIONS(2613), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2613), + [anon_sym_or] = ACTIONS(2613), + [anon_sym_AMP_AMP] = ACTIONS(2613), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2613), + [anon_sym_and] = ACTIONS(2613), + [anon_sym_EQ_EQ] = ACTIONS(2613), + [anon_sym_BANG_EQ] = ACTIONS(2613), + [anon_sym_EQ_TILDE] = ACTIONS(2613), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2613), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2613), + [anon_sym_LT_EQ] = ACTIONS(2613), + [anon_sym_GT_EQ] = ACTIONS(2613), + [anon_sym_PIPE_GT] = ACTIONS(2613), + [anon_sym_LT_LT_LT] = ACTIONS(2613), + [anon_sym_GT_GT_GT] = ACTIONS(2613), + [anon_sym_LT_LT_TILDE] = ACTIONS(2613), + [anon_sym_TILDE_GT_GT] = ACTIONS(2613), + [anon_sym_LT_TILDE] = ACTIONS(2613), + [anon_sym_TILDE_GT] = ACTIONS(2613), + [anon_sym_LT_TILDE_GT] = ACTIONS(2613), + [anon_sym_LT_PIPE_GT] = ACTIONS(2613), + [anon_sym_in] = ACTIONS(2613), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2613), + [anon_sym_SLASH_SLASH] = ACTIONS(2613), + [anon_sym_PLUS_PLUS] = ACTIONS(2613), + [anon_sym_DASH_DASH] = ACTIONS(2613), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2613), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2613), + [anon_sym_DOT_DOT] = ACTIONS(2613), + [anon_sym_LT_GT] = ACTIONS(2613), + [anon_sym_STAR] = ACTIONS(2613), + [anon_sym_STAR_STAR] = ACTIONS(2613), + [anon_sym_CARET_CARET] = ACTIONS(2613), + [anon_sym_DASH_GT] = ACTIONS(2613), + [anon_sym_DOT] = ACTIONS(2613), + [anon_sym_do] = ACTIONS(2613), + [anon_sym_end] = ACTIONS(2613), + [anon_sym_fn] = ACTIONS(2613), + [anon_sym_LPAREN2] = ACTIONS(2611), + [anon_sym_LBRACK2] = ACTIONS(2611), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2611), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2611), + [sym__not_in] = ACTIONS(2611), + [sym__quoted_atom_start] = ACTIONS(2611), + }, + [993] = { + [aux_sym__terminator_token1] = ACTIONS(2631), + [anon_sym_SEMI] = ACTIONS(2633), + [anon_sym_LPAREN] = ACTIONS(2633), + [aux_sym_identifier_token1] = ACTIONS(2633), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2633), + [sym_unused_identifier] = ACTIONS(2633), + [anon_sym___MODULE__] = ACTIONS(2633), + [anon_sym___DIR__] = ACTIONS(2633), + [anon_sym___ENV__] = ACTIONS(2633), + [anon_sym___CALLER__] = ACTIONS(2633), + [anon_sym___STACKTRACE__] = ACTIONS(2633), + [sym_alias] = ACTIONS(2633), + [sym_integer] = ACTIONS(2633), + [sym_float] = ACTIONS(2633), + [sym_char] = ACTIONS(2633), + [anon_sym_true] = ACTIONS(2633), + [anon_sym_false] = ACTIONS(2633), + [anon_sym_nil] = ACTIONS(2633), + [sym_atom] = ACTIONS(2633), + [anon_sym_DQUOTE] = ACTIONS(2633), + [anon_sym_SQUOTE] = ACTIONS(2633), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2633), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2633), + [anon_sym_LBRACE] = ACTIONS(2633), + [anon_sym_LBRACK] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(2633), + [anon_sym_GT] = ACTIONS(2633), + [anon_sym_PIPE] = ACTIONS(2633), + [anon_sym_SLASH] = ACTIONS(2633), + [anon_sym_TILDE] = ACTIONS(2633), + [anon_sym_COMMA] = ACTIONS(2633), + [sym_keyword] = ACTIONS(2633), + [anon_sym_LT_LT] = ACTIONS(2633), + [anon_sym_PERCENT] = ACTIONS(2633), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_PLUS] = ACTIONS(2633), + [anon_sym_DASH] = ACTIONS(2633), + [anon_sym_BANG] = ACTIONS(2633), + [anon_sym_CARET] = ACTIONS(2633), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2633), + [anon_sym_not] = ACTIONS(2633), + [anon_sym_AT] = ACTIONS(2633), + [anon_sym_LT_DASH] = ACTIONS(2633), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2633), + [anon_sym_when] = ACTIONS(2633), + [anon_sym_COLON_COLON] = ACTIONS(2633), + [anon_sym_EQ_GT] = ACTIONS(2633), + [anon_sym_EQ] = ACTIONS(2633), + [anon_sym_PIPE_PIPE] = ACTIONS(2633), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2633), + [anon_sym_or] = ACTIONS(2633), + [anon_sym_AMP_AMP] = ACTIONS(2633), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2633), + [anon_sym_and] = ACTIONS(2633), + [anon_sym_EQ_EQ] = ACTIONS(2633), + [anon_sym_BANG_EQ] = ACTIONS(2633), + [anon_sym_EQ_TILDE] = ACTIONS(2633), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2633), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2633), + [anon_sym_LT_EQ] = ACTIONS(2633), + [anon_sym_GT_EQ] = ACTIONS(2633), + [anon_sym_PIPE_GT] = ACTIONS(2633), + [anon_sym_LT_LT_LT] = ACTIONS(2633), + [anon_sym_GT_GT_GT] = ACTIONS(2633), + [anon_sym_LT_LT_TILDE] = ACTIONS(2633), + [anon_sym_TILDE_GT_GT] = ACTIONS(2633), + [anon_sym_LT_TILDE] = ACTIONS(2633), + [anon_sym_TILDE_GT] = ACTIONS(2633), + [anon_sym_LT_TILDE_GT] = ACTIONS(2633), + [anon_sym_LT_PIPE_GT] = ACTIONS(2633), + [anon_sym_in] = ACTIONS(2633), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2633), + [anon_sym_SLASH_SLASH] = ACTIONS(2633), + [anon_sym_PLUS_PLUS] = ACTIONS(2633), + [anon_sym_DASH_DASH] = ACTIONS(2633), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2633), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2633), + [anon_sym_DOT_DOT] = ACTIONS(2633), + [anon_sym_LT_GT] = ACTIONS(2633), + [anon_sym_STAR] = ACTIONS(2633), + [anon_sym_STAR_STAR] = ACTIONS(2633), + [anon_sym_CARET_CARET] = ACTIONS(2633), + [anon_sym_DASH_GT] = ACTIONS(2633), + [anon_sym_DOT] = ACTIONS(2633), + [anon_sym_do] = ACTIONS(2633), + [anon_sym_end] = ACTIONS(2633), + [anon_sym_fn] = ACTIONS(2633), + [anon_sym_LPAREN2] = ACTIONS(2631), + [anon_sym_LBRACK2] = ACTIONS(2631), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2631), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2631), + [sym__not_in] = ACTIONS(2631), + [sym__quoted_atom_start] = ACTIONS(2631), + }, + [994] = { [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(2645), [aux_sym_identifier_token1] = ACTIONS(2645), @@ -149278,104 +149722,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2643), [sym__quoted_atom_start] = ACTIONS(2643), }, - [997] = { - [aux_sym__terminator_token1] = ACTIONS(2631), - [anon_sym_SEMI] = ACTIONS(2633), - [anon_sym_LPAREN] = ACTIONS(2633), - [aux_sym_identifier_token1] = ACTIONS(2633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2633), - [sym_unused_identifier] = ACTIONS(2633), - [anon_sym___MODULE__] = ACTIONS(2633), - [anon_sym___DIR__] = ACTIONS(2633), - [anon_sym___ENV__] = ACTIONS(2633), - [anon_sym___CALLER__] = ACTIONS(2633), - [anon_sym___STACKTRACE__] = ACTIONS(2633), - [sym_alias] = ACTIONS(2633), - [sym_integer] = ACTIONS(2633), - [sym_float] = ACTIONS(2633), - [sym_char] = ACTIONS(2633), - [anon_sym_true] = ACTIONS(2633), - [anon_sym_false] = ACTIONS(2633), - [anon_sym_nil] = ACTIONS(2633), - [sym_atom] = ACTIONS(2633), - [anon_sym_DQUOTE] = ACTIONS(2633), - [anon_sym_SQUOTE] = ACTIONS(2633), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2633), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2633), - [anon_sym_LBRACE] = ACTIONS(2633), - [anon_sym_LBRACK] = ACTIONS(2633), - [anon_sym_LT] = ACTIONS(2633), - [anon_sym_GT] = ACTIONS(2633), - [anon_sym_PIPE] = ACTIONS(2633), - [anon_sym_SLASH] = ACTIONS(2633), - [anon_sym_TILDE] = ACTIONS(2633), - [anon_sym_COMMA] = ACTIONS(2633), - [sym_keyword] = ACTIONS(2633), - [anon_sym_LT_LT] = ACTIONS(2633), - [anon_sym_PERCENT] = ACTIONS(2633), - [anon_sym_AMP] = ACTIONS(2633), - [anon_sym_PLUS] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2633), - [anon_sym_BANG] = ACTIONS(2633), - [anon_sym_CARET] = ACTIONS(2633), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2633), - [anon_sym_not] = ACTIONS(2633), - [anon_sym_AT] = ACTIONS(2633), - [anon_sym_LT_DASH] = ACTIONS(2633), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2633), - [anon_sym_when] = ACTIONS(2633), - [anon_sym_COLON_COLON] = ACTIONS(2633), - [anon_sym_EQ_GT] = ACTIONS(2633), - [anon_sym_EQ] = ACTIONS(2633), - [anon_sym_PIPE_PIPE] = ACTIONS(2633), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2633), - [anon_sym_or] = ACTIONS(2633), - [anon_sym_AMP_AMP] = ACTIONS(2633), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2633), - [anon_sym_and] = ACTIONS(2633), - [anon_sym_EQ_EQ] = ACTIONS(2633), - [anon_sym_BANG_EQ] = ACTIONS(2633), - [anon_sym_EQ_TILDE] = ACTIONS(2633), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2633), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2633), - [anon_sym_LT_EQ] = ACTIONS(2633), - [anon_sym_GT_EQ] = ACTIONS(2633), - [anon_sym_PIPE_GT] = ACTIONS(2633), - [anon_sym_LT_LT_LT] = ACTIONS(2633), - [anon_sym_GT_GT_GT] = ACTIONS(2633), - [anon_sym_LT_LT_TILDE] = ACTIONS(2633), - [anon_sym_TILDE_GT_GT] = ACTIONS(2633), - [anon_sym_LT_TILDE] = ACTIONS(2633), - [anon_sym_TILDE_GT] = ACTIONS(2633), - [anon_sym_LT_TILDE_GT] = ACTIONS(2633), - [anon_sym_LT_PIPE_GT] = ACTIONS(2633), - [anon_sym_in] = ACTIONS(2633), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2633), - [anon_sym_SLASH_SLASH] = ACTIONS(2633), - [anon_sym_PLUS_PLUS] = ACTIONS(2633), - [anon_sym_DASH_DASH] = ACTIONS(2633), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2633), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2633), - [anon_sym_DOT_DOT] = ACTIONS(2633), - [anon_sym_LT_GT] = ACTIONS(2633), - [anon_sym_STAR] = ACTIONS(2633), - [anon_sym_STAR_STAR] = ACTIONS(2633), - [anon_sym_CARET_CARET] = ACTIONS(2633), - [anon_sym_DASH_GT] = ACTIONS(2633), - [anon_sym_DOT] = ACTIONS(2633), - [anon_sym_do] = ACTIONS(2633), - [anon_sym_end] = ACTIONS(2633), - [anon_sym_fn] = ACTIONS(2633), - [anon_sym_LPAREN2] = ACTIONS(2631), - [anon_sym_LBRACK2] = ACTIONS(2631), + [995] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2629), + [aux_sym_identifier_token1] = ACTIONS(2629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2629), + [sym_unused_identifier] = ACTIONS(2629), + [anon_sym___MODULE__] = ACTIONS(2629), + [anon_sym___DIR__] = ACTIONS(2629), + [anon_sym___ENV__] = ACTIONS(2629), + [anon_sym___CALLER__] = ACTIONS(2629), + [anon_sym___STACKTRACE__] = ACTIONS(2629), + [sym_alias] = ACTIONS(2629), + [sym_integer] = ACTIONS(2629), + [sym_float] = ACTIONS(2629), + [sym_char] = ACTIONS(2629), + [anon_sym_true] = ACTIONS(2629), + [anon_sym_false] = ACTIONS(2629), + [anon_sym_nil] = ACTIONS(2629), + [sym_atom] = ACTIONS(2629), + [anon_sym_DQUOTE] = ACTIONS(2629), + [anon_sym_SQUOTE] = ACTIONS(2629), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2629), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2629), + [anon_sym_LBRACE] = ACTIONS(2629), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_LT] = ACTIONS(2629), + [anon_sym_GT] = ACTIONS(2629), + [anon_sym_PIPE] = ACTIONS(2629), + [anon_sym_SLASH] = ACTIONS(2629), + [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_COMMA] = ACTIONS(2629), + [sym_keyword] = ACTIONS(2629), + [anon_sym_LT_LT] = ACTIONS(2629), + [anon_sym_GT_GT] = ACTIONS(2629), + [anon_sym_PERCENT] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2629), + [anon_sym_PLUS] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(2629), + [anon_sym_BANG] = ACTIONS(2629), + [anon_sym_CARET] = ACTIONS(2629), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2629), + [anon_sym_not] = ACTIONS(2629), + [anon_sym_AT] = ACTIONS(2629), + [anon_sym_LT_DASH] = ACTIONS(2629), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2629), + [anon_sym_when] = ACTIONS(2629), + [anon_sym_COLON_COLON] = ACTIONS(2629), + [anon_sym_EQ_GT] = ACTIONS(2629), + [anon_sym_EQ] = ACTIONS(2629), + [anon_sym_PIPE_PIPE] = ACTIONS(2629), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2629), + [anon_sym_or] = ACTIONS(2629), + [anon_sym_AMP_AMP] = ACTIONS(2629), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2629), + [anon_sym_and] = ACTIONS(2629), + [anon_sym_EQ_EQ] = ACTIONS(2629), + [anon_sym_BANG_EQ] = ACTIONS(2629), + [anon_sym_EQ_TILDE] = ACTIONS(2629), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2629), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2629), + [anon_sym_LT_EQ] = ACTIONS(2629), + [anon_sym_GT_EQ] = ACTIONS(2629), + [anon_sym_PIPE_GT] = ACTIONS(2629), + [anon_sym_LT_LT_LT] = ACTIONS(2629), + [anon_sym_GT_GT_GT] = ACTIONS(2629), + [anon_sym_LT_LT_TILDE] = ACTIONS(2629), + [anon_sym_TILDE_GT_GT] = ACTIONS(2629), + [anon_sym_LT_TILDE] = ACTIONS(2629), + [anon_sym_TILDE_GT] = ACTIONS(2629), + [anon_sym_LT_TILDE_GT] = ACTIONS(2629), + [anon_sym_LT_PIPE_GT] = ACTIONS(2629), + [anon_sym_in] = ACTIONS(2629), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2629), + [anon_sym_SLASH_SLASH] = ACTIONS(2629), + [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_DASH_DASH] = ACTIONS(2629), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2629), + [anon_sym_DOT_DOT] = ACTIONS(2629), + [anon_sym_LT_GT] = ACTIONS(2629), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_STAR_STAR] = ACTIONS(2629), + [anon_sym_CARET_CARET] = ACTIONS(2629), + [anon_sym_DASH_GT] = ACTIONS(2629), + [anon_sym_DOT] = ACTIONS(2629), + [anon_sym_do] = ACTIONS(2629), + [anon_sym_fn] = ACTIONS(2629), + [anon_sym_LPAREN2] = ACTIONS(2627), + [anon_sym_LBRACK2] = ACTIONS(2627), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2627), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2627), + [sym__not_in] = ACTIONS(2627), + [sym__quoted_atom_start] = ACTIONS(2627), + }, + [996] = { + [aux_sym__terminator_token1] = ACTIONS(2615), + [anon_sym_SEMI] = ACTIONS(2617), + [anon_sym_LPAREN] = ACTIONS(2617), + [aux_sym_identifier_token1] = ACTIONS(2617), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2617), + [sym_unused_identifier] = ACTIONS(2617), + [anon_sym___MODULE__] = ACTIONS(2617), + [anon_sym___DIR__] = ACTIONS(2617), + [anon_sym___ENV__] = ACTIONS(2617), + [anon_sym___CALLER__] = ACTIONS(2617), + [anon_sym___STACKTRACE__] = ACTIONS(2617), + [sym_alias] = ACTIONS(2617), + [sym_integer] = ACTIONS(2617), + [sym_float] = ACTIONS(2617), + [sym_char] = ACTIONS(2617), + [anon_sym_true] = ACTIONS(2617), + [anon_sym_false] = ACTIONS(2617), + [anon_sym_nil] = ACTIONS(2617), + [sym_atom] = ACTIONS(2617), + [anon_sym_DQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_LBRACK] = ACTIONS(2617), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_GT] = ACTIONS(2617), + [anon_sym_PIPE] = ACTIONS(2617), + [anon_sym_SLASH] = ACTIONS(2617), + [anon_sym_TILDE] = ACTIONS(2617), + [anon_sym_COMMA] = ACTIONS(2617), + [sym_keyword] = ACTIONS(2617), + [anon_sym_LT_LT] = ACTIONS(2617), + [anon_sym_PERCENT] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2617), + [anon_sym_PLUS] = ACTIONS(2617), + [anon_sym_DASH] = ACTIONS(2617), + [anon_sym_BANG] = ACTIONS(2617), + [anon_sym_CARET] = ACTIONS(2617), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2617), + [anon_sym_not] = ACTIONS(2617), + [anon_sym_AT] = ACTIONS(2617), + [anon_sym_LT_DASH] = ACTIONS(2617), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2617), + [anon_sym_when] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_EQ_GT] = ACTIONS(2617), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2617), + [anon_sym_AMP_AMP] = ACTIONS(2617), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2617), + [anon_sym_and] = ACTIONS(2617), + [anon_sym_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_EQ_TILDE] = ACTIONS(2617), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2617), + [anon_sym_LT_EQ] = ACTIONS(2617), + [anon_sym_GT_EQ] = ACTIONS(2617), + [anon_sym_PIPE_GT] = ACTIONS(2617), + [anon_sym_LT_LT_LT] = ACTIONS(2617), + [anon_sym_GT_GT_GT] = ACTIONS(2617), + [anon_sym_LT_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_PIPE_GT] = ACTIONS(2617), + [anon_sym_in] = ACTIONS(2617), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2617), + [anon_sym_SLASH_SLASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2617), + [anon_sym_DOT_DOT] = ACTIONS(2617), + [anon_sym_LT_GT] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(2617), + [anon_sym_STAR_STAR] = ACTIONS(2617), + [anon_sym_CARET_CARET] = ACTIONS(2617), + [anon_sym_DASH_GT] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(2617), + [anon_sym_do] = ACTIONS(2617), + [anon_sym_end] = ACTIONS(2617), + [anon_sym_fn] = ACTIONS(2617), + [anon_sym_LPAREN2] = ACTIONS(2615), + [anon_sym_LBRACK2] = ACTIONS(2615), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2631), - [sym__not_in] = ACTIONS(2631), - [sym__quoted_atom_start] = ACTIONS(2631), + [sym__before_unary_op] = ACTIONS(2615), + [sym__not_in] = ACTIONS(2615), + [sym__quoted_atom_start] = ACTIONS(2615), }, - [998] = { + [997] = { [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(2613), [aux_sym_identifier_token1] = ACTIONS(2613), @@ -149472,104 +150013,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2611), [sym__quoted_atom_start] = ACTIONS(2611), }, - [999] = { - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2641), - [aux_sym_identifier_token1] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2641), - [sym_unused_identifier] = ACTIONS(2641), - [anon_sym___MODULE__] = ACTIONS(2641), - [anon_sym___DIR__] = ACTIONS(2641), - [anon_sym___ENV__] = ACTIONS(2641), - [anon_sym___CALLER__] = ACTIONS(2641), - [anon_sym___STACKTRACE__] = ACTIONS(2641), - [sym_alias] = ACTIONS(2641), - [sym_integer] = ACTIONS(2641), - [sym_float] = ACTIONS(2641), - [sym_char] = ACTIONS(2641), - [anon_sym_true] = ACTIONS(2641), - [anon_sym_false] = ACTIONS(2641), - [anon_sym_nil] = ACTIONS(2641), - [sym_atom] = ACTIONS(2641), - [anon_sym_DQUOTE] = ACTIONS(2641), - [anon_sym_SQUOTE] = ACTIONS(2641), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2641), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2641), - [anon_sym_LBRACE] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_LT] = ACTIONS(2641), - [anon_sym_GT] = ACTIONS(2641), - [anon_sym_PIPE] = ACTIONS(2641), - [anon_sym_SLASH] = ACTIONS(2641), - [anon_sym_TILDE] = ACTIONS(2641), - [anon_sym_COMMA] = ACTIONS(2641), - [sym_keyword] = ACTIONS(2641), - [anon_sym_LT_LT] = ACTIONS(2641), - [anon_sym_GT_GT] = ACTIONS(2641), - [anon_sym_PERCENT] = ACTIONS(2641), - [anon_sym_AMP] = ACTIONS(2641), - [anon_sym_PLUS] = ACTIONS(2641), - [anon_sym_DASH] = ACTIONS(2641), - [anon_sym_BANG] = ACTIONS(2641), - [anon_sym_CARET] = ACTIONS(2641), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2641), - [anon_sym_not] = ACTIONS(2641), - [anon_sym_AT] = ACTIONS(2641), - [anon_sym_LT_DASH] = ACTIONS(2641), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2641), - [anon_sym_when] = ACTIONS(2641), - [anon_sym_COLON_COLON] = ACTIONS(2641), - [anon_sym_EQ_GT] = ACTIONS(2641), - [anon_sym_EQ] = ACTIONS(2641), - [anon_sym_PIPE_PIPE] = ACTIONS(2641), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2641), - [anon_sym_or] = ACTIONS(2641), - [anon_sym_AMP_AMP] = ACTIONS(2641), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2641), - [anon_sym_and] = ACTIONS(2641), - [anon_sym_EQ_EQ] = ACTIONS(2641), - [anon_sym_BANG_EQ] = ACTIONS(2641), - [anon_sym_EQ_TILDE] = ACTIONS(2641), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2641), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2641), - [anon_sym_LT_EQ] = ACTIONS(2641), - [anon_sym_GT_EQ] = ACTIONS(2641), - [anon_sym_PIPE_GT] = ACTIONS(2641), - [anon_sym_LT_LT_LT] = ACTIONS(2641), - [anon_sym_GT_GT_GT] = ACTIONS(2641), - [anon_sym_LT_LT_TILDE] = ACTIONS(2641), - [anon_sym_TILDE_GT_GT] = ACTIONS(2641), - [anon_sym_LT_TILDE] = ACTIONS(2641), - [anon_sym_TILDE_GT] = ACTIONS(2641), - [anon_sym_LT_TILDE_GT] = ACTIONS(2641), - [anon_sym_LT_PIPE_GT] = ACTIONS(2641), - [anon_sym_in] = ACTIONS(2641), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2641), - [anon_sym_SLASH_SLASH] = ACTIONS(2641), - [anon_sym_PLUS_PLUS] = ACTIONS(2641), - [anon_sym_DASH_DASH] = ACTIONS(2641), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2641), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2641), - [anon_sym_DOT_DOT] = ACTIONS(2641), - [anon_sym_LT_GT] = ACTIONS(2641), - [anon_sym_STAR] = ACTIONS(2641), - [anon_sym_STAR_STAR] = ACTIONS(2641), - [anon_sym_CARET_CARET] = ACTIONS(2641), - [anon_sym_DASH_GT] = ACTIONS(2641), - [anon_sym_DOT] = ACTIONS(2641), - [anon_sym_do] = ACTIONS(2641), - [anon_sym_fn] = ACTIONS(2641), - [anon_sym_LPAREN2] = ACTIONS(2639), - [anon_sym_LBRACK2] = ACTIONS(2639), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2639), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2639), - [sym__not_in] = ACTIONS(2639), - [sym__quoted_atom_start] = ACTIONS(2639), - }, - [1000] = { + [998] = { [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(2621), [aux_sym_identifier_token1] = ACTIONS(2621), @@ -149666,201 +150110,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2619), [sym__quoted_atom_start] = ACTIONS(2619), }, - [1001] = { - [aux_sym__terminator_token1] = ACTIONS(2651), - [anon_sym_SEMI] = ACTIONS(2653), - [anon_sym_LPAREN] = ACTIONS(2653), - [aux_sym_identifier_token1] = ACTIONS(2653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2653), - [sym_unused_identifier] = ACTIONS(2653), - [anon_sym___MODULE__] = ACTIONS(2653), - [anon_sym___DIR__] = ACTIONS(2653), - [anon_sym___ENV__] = ACTIONS(2653), - [anon_sym___CALLER__] = ACTIONS(2653), - [anon_sym___STACKTRACE__] = ACTIONS(2653), - [sym_alias] = ACTIONS(2653), - [sym_integer] = ACTIONS(2653), - [sym_float] = ACTIONS(2653), - [sym_char] = ACTIONS(2653), - [anon_sym_true] = ACTIONS(2653), - [anon_sym_false] = ACTIONS(2653), - [anon_sym_nil] = ACTIONS(2653), - [sym_atom] = ACTIONS(2653), - [anon_sym_DQUOTE] = ACTIONS(2653), - [anon_sym_SQUOTE] = ACTIONS(2653), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2653), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2653), - [anon_sym_LBRACK] = ACTIONS(2653), - [anon_sym_LT] = ACTIONS(2653), - [anon_sym_GT] = ACTIONS(2653), - [anon_sym_PIPE] = ACTIONS(2653), - [anon_sym_SLASH] = ACTIONS(2653), - [anon_sym_TILDE] = ACTIONS(2653), - [anon_sym_COMMA] = ACTIONS(2653), - [sym_keyword] = ACTIONS(2653), - [anon_sym_LT_LT] = ACTIONS(2653), - [anon_sym_PERCENT] = ACTIONS(2653), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_PLUS] = ACTIONS(2653), - [anon_sym_DASH] = ACTIONS(2653), - [anon_sym_BANG] = ACTIONS(2653), - [anon_sym_CARET] = ACTIONS(2653), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2653), - [anon_sym_not] = ACTIONS(2653), - [anon_sym_AT] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2653), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2653), - [anon_sym_when] = ACTIONS(2653), - [anon_sym_COLON_COLON] = ACTIONS(2653), - [anon_sym_EQ_GT] = ACTIONS(2653), - [anon_sym_EQ] = ACTIONS(2653), - [anon_sym_PIPE_PIPE] = ACTIONS(2653), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2653), - [anon_sym_or] = ACTIONS(2653), - [anon_sym_AMP_AMP] = ACTIONS(2653), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2653), - [anon_sym_and] = ACTIONS(2653), - [anon_sym_EQ_EQ] = ACTIONS(2653), - [anon_sym_BANG_EQ] = ACTIONS(2653), - [anon_sym_EQ_TILDE] = ACTIONS(2653), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2653), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2653), - [anon_sym_LT_EQ] = ACTIONS(2653), - [anon_sym_GT_EQ] = ACTIONS(2653), - [anon_sym_PIPE_GT] = ACTIONS(2653), - [anon_sym_LT_LT_LT] = ACTIONS(2653), - [anon_sym_GT_GT_GT] = ACTIONS(2653), - [anon_sym_LT_LT_TILDE] = ACTIONS(2653), - [anon_sym_TILDE_GT_GT] = ACTIONS(2653), - [anon_sym_LT_TILDE] = ACTIONS(2653), - [anon_sym_TILDE_GT] = ACTIONS(2653), - [anon_sym_LT_TILDE_GT] = ACTIONS(2653), - [anon_sym_LT_PIPE_GT] = ACTIONS(2653), - [anon_sym_in] = ACTIONS(2653), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2653), - [anon_sym_SLASH_SLASH] = ACTIONS(2653), - [anon_sym_PLUS_PLUS] = ACTIONS(2653), - [anon_sym_DASH_DASH] = ACTIONS(2653), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2653), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2653), - [anon_sym_DOT_DOT] = ACTIONS(2653), - [anon_sym_LT_GT] = ACTIONS(2653), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_STAR_STAR] = ACTIONS(2653), - [anon_sym_CARET_CARET] = ACTIONS(2653), - [anon_sym_DASH_GT] = ACTIONS(2653), - [anon_sym_DOT] = ACTIONS(2653), - [anon_sym_do] = ACTIONS(2653), - [anon_sym_end] = ACTIONS(2653), - [anon_sym_fn] = ACTIONS(2653), - [anon_sym_LPAREN2] = ACTIONS(2651), - [anon_sym_LBRACK2] = ACTIONS(2651), + [999] = { + [ts_builtin_sym_end] = ACTIONS(2619), + [aux_sym__terminator_token1] = ACTIONS(2619), + [anon_sym_SEMI] = ACTIONS(2621), + [anon_sym_LPAREN] = ACTIONS(2621), + [aux_sym_identifier_token1] = ACTIONS(2621), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2621), + [sym_unused_identifier] = ACTIONS(2621), + [anon_sym___MODULE__] = ACTIONS(2621), + [anon_sym___DIR__] = ACTIONS(2621), + [anon_sym___ENV__] = ACTIONS(2621), + [anon_sym___CALLER__] = ACTIONS(2621), + [anon_sym___STACKTRACE__] = ACTIONS(2621), + [sym_alias] = ACTIONS(2621), + [sym_integer] = ACTIONS(2621), + [sym_float] = ACTIONS(2621), + [sym_char] = ACTIONS(2621), + [anon_sym_true] = ACTIONS(2621), + [anon_sym_false] = ACTIONS(2621), + [anon_sym_nil] = ACTIONS(2621), + [sym_atom] = ACTIONS(2621), + [anon_sym_DQUOTE] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2621), + [anon_sym_LBRACK] = ACTIONS(2621), + [anon_sym_LT] = ACTIONS(2621), + [anon_sym_GT] = ACTIONS(2621), + [anon_sym_PIPE] = ACTIONS(2621), + [anon_sym_SLASH] = ACTIONS(2621), + [anon_sym_TILDE] = ACTIONS(2621), + [anon_sym_COMMA] = ACTIONS(2621), + [sym_keyword] = ACTIONS(2621), + [anon_sym_LT_LT] = ACTIONS(2621), + [anon_sym_PERCENT] = ACTIONS(2621), + [anon_sym_AMP] = ACTIONS(2621), + [anon_sym_PLUS] = ACTIONS(2621), + [anon_sym_DASH] = ACTIONS(2621), + [anon_sym_BANG] = ACTIONS(2621), + [anon_sym_CARET] = ACTIONS(2621), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2621), + [anon_sym_not] = ACTIONS(2621), + [anon_sym_AT] = ACTIONS(2621), + [anon_sym_LT_DASH] = ACTIONS(2621), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2621), + [anon_sym_when] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(2621), + [anon_sym_EQ_GT] = ACTIONS(2621), + [anon_sym_EQ] = ACTIONS(2621), + [anon_sym_PIPE_PIPE] = ACTIONS(2621), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2621), + [anon_sym_or] = ACTIONS(2621), + [anon_sym_AMP_AMP] = ACTIONS(2621), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2621), + [anon_sym_and] = ACTIONS(2621), + [anon_sym_EQ_EQ] = ACTIONS(2621), + [anon_sym_BANG_EQ] = ACTIONS(2621), + [anon_sym_EQ_TILDE] = ACTIONS(2621), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2621), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2621), + [anon_sym_LT_EQ] = ACTIONS(2621), + [anon_sym_GT_EQ] = ACTIONS(2621), + [anon_sym_PIPE_GT] = ACTIONS(2621), + [anon_sym_LT_LT_LT] = ACTIONS(2621), + [anon_sym_GT_GT_GT] = ACTIONS(2621), + [anon_sym_LT_LT_TILDE] = ACTIONS(2621), + [anon_sym_TILDE_GT_GT] = ACTIONS(2621), + [anon_sym_LT_TILDE] = ACTIONS(2621), + [anon_sym_TILDE_GT] = ACTIONS(2621), + [anon_sym_LT_TILDE_GT] = ACTIONS(2621), + [anon_sym_LT_PIPE_GT] = ACTIONS(2621), + [anon_sym_in] = ACTIONS(2621), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2621), + [anon_sym_SLASH_SLASH] = ACTIONS(2621), + [anon_sym_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_DASH_DASH] = ACTIONS(2621), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2621), + [anon_sym_DOT_DOT] = ACTIONS(2621), + [anon_sym_LT_GT] = ACTIONS(2621), + [anon_sym_STAR] = ACTIONS(2621), + [anon_sym_STAR_STAR] = ACTIONS(2621), + [anon_sym_CARET_CARET] = ACTIONS(2621), + [anon_sym_DASH_GT] = ACTIONS(2621), + [anon_sym_DOT] = ACTIONS(2621), + [anon_sym_do] = ACTIONS(2621), + [anon_sym_fn] = ACTIONS(2621), + [anon_sym_LPAREN2] = ACTIONS(2619), + [anon_sym_LBRACK2] = ACTIONS(2619), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2651), - [sym__not_in] = ACTIONS(2651), - [sym__quoted_atom_start] = ACTIONS(2651), + [sym__before_unary_op] = ACTIONS(2619), + [sym__not_in] = ACTIONS(2619), + [sym__quoted_atom_start] = ACTIONS(2619), }, - [1002] = { + [1000] = { [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2617), - [aux_sym_identifier_token1] = ACTIONS(2617), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2617), - [sym_unused_identifier] = ACTIONS(2617), - [anon_sym___MODULE__] = ACTIONS(2617), - [anon_sym___DIR__] = ACTIONS(2617), - [anon_sym___ENV__] = ACTIONS(2617), - [anon_sym___CALLER__] = ACTIONS(2617), - [anon_sym___STACKTRACE__] = ACTIONS(2617), - [sym_alias] = ACTIONS(2617), - [sym_integer] = ACTIONS(2617), - [sym_float] = ACTIONS(2617), - [sym_char] = ACTIONS(2617), - [anon_sym_true] = ACTIONS(2617), - [anon_sym_false] = ACTIONS(2617), - [anon_sym_nil] = ACTIONS(2617), - [sym_atom] = ACTIONS(2617), - [anon_sym_DQUOTE] = ACTIONS(2617), - [anon_sym_SQUOTE] = ACTIONS(2617), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2617), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2617), - [anon_sym_LBRACK] = ACTIONS(2617), - [anon_sym_LT] = ACTIONS(2617), - [anon_sym_GT] = ACTIONS(2617), - [anon_sym_PIPE] = ACTIONS(2617), - [anon_sym_SLASH] = ACTIONS(2617), - [anon_sym_TILDE] = ACTIONS(2617), - [anon_sym_COMMA] = ACTIONS(2617), - [sym_keyword] = ACTIONS(2617), - [anon_sym_LT_LT] = ACTIONS(2617), - [anon_sym_GT_GT] = ACTIONS(2617), - [anon_sym_PERCENT] = ACTIONS(2617), - [anon_sym_AMP] = ACTIONS(2617), - [anon_sym_PLUS] = ACTIONS(2617), - [anon_sym_DASH] = ACTIONS(2617), - [anon_sym_BANG] = ACTIONS(2617), - [anon_sym_CARET] = ACTIONS(2617), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2617), - [anon_sym_not] = ACTIONS(2617), - [anon_sym_AT] = ACTIONS(2617), - [anon_sym_LT_DASH] = ACTIONS(2617), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2617), - [anon_sym_when] = ACTIONS(2617), - [anon_sym_COLON_COLON] = ACTIONS(2617), - [anon_sym_EQ_GT] = ACTIONS(2617), - [anon_sym_EQ] = ACTIONS(2617), - [anon_sym_PIPE_PIPE] = ACTIONS(2617), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2617), - [anon_sym_or] = ACTIONS(2617), - [anon_sym_AMP_AMP] = ACTIONS(2617), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2617), - [anon_sym_and] = ACTIONS(2617), - [anon_sym_EQ_EQ] = ACTIONS(2617), - [anon_sym_BANG_EQ] = ACTIONS(2617), - [anon_sym_EQ_TILDE] = ACTIONS(2617), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2617), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2617), - [anon_sym_LT_EQ] = ACTIONS(2617), - [anon_sym_GT_EQ] = ACTIONS(2617), - [anon_sym_PIPE_GT] = ACTIONS(2617), - [anon_sym_LT_LT_LT] = ACTIONS(2617), - [anon_sym_GT_GT_GT] = ACTIONS(2617), - [anon_sym_LT_LT_TILDE] = ACTIONS(2617), - [anon_sym_TILDE_GT_GT] = ACTIONS(2617), - [anon_sym_LT_TILDE] = ACTIONS(2617), - [anon_sym_TILDE_GT] = ACTIONS(2617), - [anon_sym_LT_TILDE_GT] = ACTIONS(2617), - [anon_sym_LT_PIPE_GT] = ACTIONS(2617), - [anon_sym_in] = ACTIONS(2617), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2617), - [anon_sym_SLASH_SLASH] = ACTIONS(2617), - [anon_sym_PLUS_PLUS] = ACTIONS(2617), - [anon_sym_DASH_DASH] = ACTIONS(2617), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2617), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2617), - [anon_sym_DOT_DOT] = ACTIONS(2617), - [anon_sym_LT_GT] = ACTIONS(2617), - [anon_sym_STAR] = ACTIONS(2617), - [anon_sym_STAR_STAR] = ACTIONS(2617), - [anon_sym_CARET_CARET] = ACTIONS(2617), - [anon_sym_DASH_GT] = ACTIONS(2617), - [anon_sym_DOT] = ACTIONS(2617), - [anon_sym_do] = ACTIONS(2617), - [anon_sym_fn] = ACTIONS(2617), - [anon_sym_LPAREN2] = ACTIONS(2615), - [anon_sym_LBRACK2] = ACTIONS(2615), + [anon_sym_LPAREN] = ACTIONS(2645), + [aux_sym_identifier_token1] = ACTIONS(2645), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2645), + [sym_unused_identifier] = ACTIONS(2645), + [anon_sym___MODULE__] = ACTIONS(2645), + [anon_sym___DIR__] = ACTIONS(2645), + [anon_sym___ENV__] = ACTIONS(2645), + [anon_sym___CALLER__] = ACTIONS(2645), + [anon_sym___STACKTRACE__] = ACTIONS(2645), + [sym_alias] = ACTIONS(2645), + [sym_integer] = ACTIONS(2645), + [sym_float] = ACTIONS(2645), + [sym_char] = ACTIONS(2645), + [anon_sym_true] = ACTIONS(2645), + [anon_sym_false] = ACTIONS(2645), + [anon_sym_nil] = ACTIONS(2645), + [sym_atom] = ACTIONS(2645), + [anon_sym_DQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2645), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2645), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_LBRACK] = ACTIONS(2645), + [anon_sym_LT] = ACTIONS(2645), + [anon_sym_GT] = ACTIONS(2645), + [anon_sym_PIPE] = ACTIONS(2645), + [anon_sym_SLASH] = ACTIONS(2645), + [anon_sym_TILDE] = ACTIONS(2645), + [anon_sym_COMMA] = ACTIONS(2645), + [sym_keyword] = ACTIONS(2645), + [anon_sym_LT_LT] = ACTIONS(2645), + [anon_sym_GT_GT] = ACTIONS(2645), + [anon_sym_PERCENT] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2645), + [anon_sym_PLUS] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2645), + [anon_sym_BANG] = ACTIONS(2645), + [anon_sym_CARET] = ACTIONS(2645), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2645), + [anon_sym_not] = ACTIONS(2645), + [anon_sym_AT] = ACTIONS(2645), + [anon_sym_LT_DASH] = ACTIONS(2645), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2645), + [anon_sym_when] = ACTIONS(2645), + [anon_sym_COLON_COLON] = ACTIONS(2645), + [anon_sym_EQ_GT] = ACTIONS(2645), + [anon_sym_EQ] = ACTIONS(2645), + [anon_sym_PIPE_PIPE] = ACTIONS(2645), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2645), + [anon_sym_or] = ACTIONS(2645), + [anon_sym_AMP_AMP] = ACTIONS(2645), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2645), + [anon_sym_and] = ACTIONS(2645), + [anon_sym_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ] = ACTIONS(2645), + [anon_sym_EQ_TILDE] = ACTIONS(2645), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2645), + [anon_sym_LT_EQ] = ACTIONS(2645), + [anon_sym_GT_EQ] = ACTIONS(2645), + [anon_sym_PIPE_GT] = ACTIONS(2645), + [anon_sym_LT_LT_LT] = ACTIONS(2645), + [anon_sym_GT_GT_GT] = ACTIONS(2645), + [anon_sym_LT_LT_TILDE] = ACTIONS(2645), + [anon_sym_TILDE_GT_GT] = ACTIONS(2645), + [anon_sym_LT_TILDE] = ACTIONS(2645), + [anon_sym_TILDE_GT] = ACTIONS(2645), + [anon_sym_LT_TILDE_GT] = ACTIONS(2645), + [anon_sym_LT_PIPE_GT] = ACTIONS(2645), + [anon_sym_in] = ACTIONS(2645), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2645), + [anon_sym_SLASH_SLASH] = ACTIONS(2645), + [anon_sym_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_DASH_DASH] = ACTIONS(2645), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2645), + [anon_sym_DOT_DOT] = ACTIONS(2645), + [anon_sym_LT_GT] = ACTIONS(2645), + [anon_sym_STAR] = ACTIONS(2645), + [anon_sym_STAR_STAR] = ACTIONS(2645), + [anon_sym_CARET_CARET] = ACTIONS(2645), + [anon_sym_DASH_GT] = ACTIONS(2645), + [anon_sym_DOT] = ACTIONS(2645), + [anon_sym_do] = ACTIONS(2645), + [anon_sym_fn] = ACTIONS(2645), + [anon_sym_LPAREN2] = ACTIONS(2643), + [anon_sym_LBRACK2] = ACTIONS(2643), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2615), + [sym__newline_before_do] = ACTIONS(2643), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2615), - [sym__not_in] = ACTIONS(2615), - [sym__quoted_atom_start] = ACTIONS(2615), + [sym__before_unary_op] = ACTIONS(2643), + [sym__not_in] = ACTIONS(2643), + [sym__quoted_atom_start] = ACTIONS(2643), }, - [1003] = { + [1001] = { [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(2653), [aux_sym_identifier_token1] = ACTIONS(2653), @@ -149957,686 +150401,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2651), [sym__quoted_atom_start] = ACTIONS(2651), }, - [1004] = { - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2613), - [aux_sym_identifier_token1] = ACTIONS(2613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2613), - [sym_unused_identifier] = ACTIONS(2613), - [anon_sym___MODULE__] = ACTIONS(2613), - [anon_sym___DIR__] = ACTIONS(2613), - [anon_sym___ENV__] = ACTIONS(2613), - [anon_sym___CALLER__] = ACTIONS(2613), - [anon_sym___STACKTRACE__] = ACTIONS(2613), - [sym_alias] = ACTIONS(2613), - [sym_integer] = ACTIONS(2613), - [sym_float] = ACTIONS(2613), - [sym_char] = ACTIONS(2613), - [anon_sym_true] = ACTIONS(2613), - [anon_sym_false] = ACTIONS(2613), - [anon_sym_nil] = ACTIONS(2613), - [sym_atom] = ACTIONS(2613), - [anon_sym_DQUOTE] = ACTIONS(2613), - [anon_sym_SQUOTE] = ACTIONS(2613), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2613), - [anon_sym_LBRACE] = ACTIONS(2613), - [anon_sym_LBRACK] = ACTIONS(2613), - [anon_sym_LT] = ACTIONS(2613), - [anon_sym_GT] = ACTIONS(2613), - [anon_sym_PIPE] = ACTIONS(2613), - [anon_sym_SLASH] = ACTIONS(2613), - [anon_sym_TILDE] = ACTIONS(2613), - [anon_sym_COMMA] = ACTIONS(2613), - [sym_keyword] = ACTIONS(2613), - [anon_sym_LT_LT] = ACTIONS(2613), - [anon_sym_GT_GT] = ACTIONS(2613), - [anon_sym_PERCENT] = ACTIONS(2613), - [anon_sym_AMP] = ACTIONS(2613), - [anon_sym_PLUS] = ACTIONS(2613), - [anon_sym_DASH] = ACTIONS(2613), - [anon_sym_BANG] = ACTIONS(2613), - [anon_sym_CARET] = ACTIONS(2613), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(2613), - [anon_sym_AT] = ACTIONS(2613), - [anon_sym_LT_DASH] = ACTIONS(2613), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2613), - [anon_sym_when] = ACTIONS(2613), - [anon_sym_COLON_COLON] = ACTIONS(2613), - [anon_sym_EQ_GT] = ACTIONS(2613), - [anon_sym_EQ] = ACTIONS(2613), - [anon_sym_PIPE_PIPE] = ACTIONS(2613), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2613), - [anon_sym_or] = ACTIONS(2613), - [anon_sym_AMP_AMP] = ACTIONS(2613), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2613), - [anon_sym_and] = ACTIONS(2613), - [anon_sym_EQ_EQ] = ACTIONS(2613), - [anon_sym_BANG_EQ] = ACTIONS(2613), - [anon_sym_EQ_TILDE] = ACTIONS(2613), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2613), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2613), - [anon_sym_LT_EQ] = ACTIONS(2613), - [anon_sym_GT_EQ] = ACTIONS(2613), - [anon_sym_PIPE_GT] = ACTIONS(2613), - [anon_sym_LT_LT_LT] = ACTIONS(2613), - [anon_sym_GT_GT_GT] = ACTIONS(2613), - [anon_sym_LT_LT_TILDE] = ACTIONS(2613), - [anon_sym_TILDE_GT_GT] = ACTIONS(2613), - [anon_sym_LT_TILDE] = ACTIONS(2613), - [anon_sym_TILDE_GT] = ACTIONS(2613), - [anon_sym_LT_TILDE_GT] = ACTIONS(2613), - [anon_sym_LT_PIPE_GT] = ACTIONS(2613), - [anon_sym_in] = ACTIONS(2613), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2613), - [anon_sym_SLASH_SLASH] = ACTIONS(2613), - [anon_sym_PLUS_PLUS] = ACTIONS(2613), - [anon_sym_DASH_DASH] = ACTIONS(2613), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2613), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2613), - [anon_sym_DOT_DOT] = ACTIONS(2613), - [anon_sym_LT_GT] = ACTIONS(2613), - [anon_sym_STAR] = ACTIONS(2613), - [anon_sym_STAR_STAR] = ACTIONS(2613), - [anon_sym_CARET_CARET] = ACTIONS(2613), - [anon_sym_DASH_GT] = ACTIONS(2613), - [anon_sym_DOT] = ACTIONS(2613), - [anon_sym_do] = ACTIONS(2613), - [anon_sym_fn] = ACTIONS(2613), - [anon_sym_LPAREN2] = ACTIONS(2611), - [anon_sym_LBRACK2] = ACTIONS(2611), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2611), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2611), - [sym__not_in] = ACTIONS(2611), - [sym__quoted_atom_start] = ACTIONS(2611), - }, - [1005] = { - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2617), - [aux_sym_identifier_token1] = ACTIONS(2617), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2617), - [sym_unused_identifier] = ACTIONS(2617), - [anon_sym___MODULE__] = ACTIONS(2617), - [anon_sym___DIR__] = ACTIONS(2617), - [anon_sym___ENV__] = ACTIONS(2617), - [anon_sym___CALLER__] = ACTIONS(2617), - [anon_sym___STACKTRACE__] = ACTIONS(2617), - [sym_alias] = ACTIONS(2617), - [sym_integer] = ACTIONS(2617), - [sym_float] = ACTIONS(2617), - [sym_char] = ACTIONS(2617), - [anon_sym_true] = ACTIONS(2617), - [anon_sym_false] = ACTIONS(2617), - [anon_sym_nil] = ACTIONS(2617), - [sym_atom] = ACTIONS(2617), - [anon_sym_DQUOTE] = ACTIONS(2617), - [anon_sym_SQUOTE] = ACTIONS(2617), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2617), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2617), - [anon_sym_LBRACK] = ACTIONS(2617), - [anon_sym_LT] = ACTIONS(2617), - [anon_sym_GT] = ACTIONS(2617), - [anon_sym_PIPE] = ACTIONS(2617), - [anon_sym_SLASH] = ACTIONS(2617), - [anon_sym_TILDE] = ACTIONS(2617), - [anon_sym_COMMA] = ACTIONS(2617), - [sym_keyword] = ACTIONS(2617), - [anon_sym_LT_LT] = ACTIONS(2617), - [anon_sym_GT_GT] = ACTIONS(2617), - [anon_sym_PERCENT] = ACTIONS(2617), - [anon_sym_AMP] = ACTIONS(2617), - [anon_sym_PLUS] = ACTIONS(2617), - [anon_sym_DASH] = ACTIONS(2617), - [anon_sym_BANG] = ACTIONS(2617), - [anon_sym_CARET] = ACTIONS(2617), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2617), - [anon_sym_not] = ACTIONS(2617), - [anon_sym_AT] = ACTIONS(2617), - [anon_sym_LT_DASH] = ACTIONS(2617), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2617), - [anon_sym_when] = ACTIONS(2617), - [anon_sym_COLON_COLON] = ACTIONS(2617), - [anon_sym_EQ_GT] = ACTIONS(2617), - [anon_sym_EQ] = ACTIONS(2617), - [anon_sym_PIPE_PIPE] = ACTIONS(2617), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2617), - [anon_sym_or] = ACTIONS(2617), - [anon_sym_AMP_AMP] = ACTIONS(2617), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2617), - [anon_sym_and] = ACTIONS(2617), - [anon_sym_EQ_EQ] = ACTIONS(2617), - [anon_sym_BANG_EQ] = ACTIONS(2617), - [anon_sym_EQ_TILDE] = ACTIONS(2617), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2617), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2617), - [anon_sym_LT_EQ] = ACTIONS(2617), - [anon_sym_GT_EQ] = ACTIONS(2617), - [anon_sym_PIPE_GT] = ACTIONS(2617), - [anon_sym_LT_LT_LT] = ACTIONS(2617), - [anon_sym_GT_GT_GT] = ACTIONS(2617), - [anon_sym_LT_LT_TILDE] = ACTIONS(2617), - [anon_sym_TILDE_GT_GT] = ACTIONS(2617), - [anon_sym_LT_TILDE] = ACTIONS(2617), - [anon_sym_TILDE_GT] = ACTIONS(2617), - [anon_sym_LT_TILDE_GT] = ACTIONS(2617), - [anon_sym_LT_PIPE_GT] = ACTIONS(2617), - [anon_sym_in] = ACTIONS(2617), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2617), - [anon_sym_SLASH_SLASH] = ACTIONS(2617), - [anon_sym_PLUS_PLUS] = ACTIONS(2617), - [anon_sym_DASH_DASH] = ACTIONS(2617), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2617), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2617), - [anon_sym_DOT_DOT] = ACTIONS(2617), - [anon_sym_LT_GT] = ACTIONS(2617), - [anon_sym_STAR] = ACTIONS(2617), - [anon_sym_STAR_STAR] = ACTIONS(2617), - [anon_sym_CARET_CARET] = ACTIONS(2617), - [anon_sym_DASH_GT] = ACTIONS(2617), - [anon_sym_DOT] = ACTIONS(2617), - [anon_sym_do] = ACTIONS(2617), - [anon_sym_fn] = ACTIONS(2617), - [anon_sym_LPAREN2] = ACTIONS(2615), - [anon_sym_LBRACK2] = ACTIONS(2615), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2615), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2615), - [sym__not_in] = ACTIONS(2615), - [sym__quoted_atom_start] = ACTIONS(2615), - }, - [1006] = { - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2649), - [aux_sym_identifier_token1] = ACTIONS(2649), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2649), - [sym_unused_identifier] = ACTIONS(2649), - [anon_sym___MODULE__] = ACTIONS(2649), - [anon_sym___DIR__] = ACTIONS(2649), - [anon_sym___ENV__] = ACTIONS(2649), - [anon_sym___CALLER__] = ACTIONS(2649), - [anon_sym___STACKTRACE__] = ACTIONS(2649), - [sym_alias] = ACTIONS(2649), - [sym_integer] = ACTIONS(2649), - [sym_float] = ACTIONS(2649), - [sym_char] = ACTIONS(2649), - [anon_sym_true] = ACTIONS(2649), - [anon_sym_false] = ACTIONS(2649), - [anon_sym_nil] = ACTIONS(2649), - [sym_atom] = ACTIONS(2649), - [anon_sym_DQUOTE] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2649), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2649), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2649), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_GT] = ACTIONS(2649), - [anon_sym_PIPE] = ACTIONS(2649), - [anon_sym_SLASH] = ACTIONS(2649), - [anon_sym_TILDE] = ACTIONS(2649), - [anon_sym_COMMA] = ACTIONS(2649), - [sym_keyword] = ACTIONS(2649), - [anon_sym_LT_LT] = ACTIONS(2649), - [anon_sym_GT_GT] = ACTIONS(2649), - [anon_sym_PERCENT] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2649), - [anon_sym_PLUS] = ACTIONS(2649), - [anon_sym_DASH] = ACTIONS(2649), - [anon_sym_BANG] = ACTIONS(2649), - [anon_sym_CARET] = ACTIONS(2649), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2649), - [anon_sym_not] = ACTIONS(2649), - [anon_sym_AT] = ACTIONS(2649), - [anon_sym_LT_DASH] = ACTIONS(2649), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2649), - [anon_sym_when] = ACTIONS(2649), - [anon_sym_COLON_COLON] = ACTIONS(2649), - [anon_sym_EQ_GT] = ACTIONS(2649), - [anon_sym_EQ] = ACTIONS(2649), - [anon_sym_PIPE_PIPE] = ACTIONS(2649), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2649), - [anon_sym_or] = ACTIONS(2649), - [anon_sym_AMP_AMP] = ACTIONS(2649), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2649), - [anon_sym_and] = ACTIONS(2649), - [anon_sym_EQ_EQ] = ACTIONS(2649), - [anon_sym_BANG_EQ] = ACTIONS(2649), - [anon_sym_EQ_TILDE] = ACTIONS(2649), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2649), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2649), - [anon_sym_LT_EQ] = ACTIONS(2649), - [anon_sym_GT_EQ] = ACTIONS(2649), - [anon_sym_PIPE_GT] = ACTIONS(2649), - [anon_sym_LT_LT_LT] = ACTIONS(2649), - [anon_sym_GT_GT_GT] = ACTIONS(2649), - [anon_sym_LT_LT_TILDE] = ACTIONS(2649), - [anon_sym_TILDE_GT_GT] = ACTIONS(2649), - [anon_sym_LT_TILDE] = ACTIONS(2649), - [anon_sym_TILDE_GT] = ACTIONS(2649), - [anon_sym_LT_TILDE_GT] = ACTIONS(2649), - [anon_sym_LT_PIPE_GT] = ACTIONS(2649), - [anon_sym_in] = ACTIONS(2649), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2649), - [anon_sym_SLASH_SLASH] = ACTIONS(2649), - [anon_sym_PLUS_PLUS] = ACTIONS(2649), - [anon_sym_DASH_DASH] = ACTIONS(2649), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2649), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2649), - [anon_sym_DOT_DOT] = ACTIONS(2649), - [anon_sym_LT_GT] = ACTIONS(2649), - [anon_sym_STAR] = ACTIONS(2649), - [anon_sym_STAR_STAR] = ACTIONS(2649), - [anon_sym_CARET_CARET] = ACTIONS(2649), - [anon_sym_DASH_GT] = ACTIONS(2649), - [anon_sym_DOT] = ACTIONS(2649), - [anon_sym_do] = ACTIONS(2649), - [anon_sym_fn] = ACTIONS(2649), - [anon_sym_LPAREN2] = ACTIONS(2647), - [anon_sym_LBRACK2] = ACTIONS(2647), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2647), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2647), - [sym__not_in] = ACTIONS(2647), - [sym__quoted_atom_start] = ACTIONS(2647), - }, - [1007] = { - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2613), - [aux_sym_identifier_token1] = ACTIONS(2613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2613), - [sym_unused_identifier] = ACTIONS(2613), - [anon_sym___MODULE__] = ACTIONS(2613), - [anon_sym___DIR__] = ACTIONS(2613), - [anon_sym___ENV__] = ACTIONS(2613), - [anon_sym___CALLER__] = ACTIONS(2613), - [anon_sym___STACKTRACE__] = ACTIONS(2613), - [sym_alias] = ACTIONS(2613), - [sym_integer] = ACTIONS(2613), - [sym_float] = ACTIONS(2613), - [sym_char] = ACTIONS(2613), - [anon_sym_true] = ACTIONS(2613), - [anon_sym_false] = ACTIONS(2613), - [anon_sym_nil] = ACTIONS(2613), - [sym_atom] = ACTIONS(2613), - [anon_sym_DQUOTE] = ACTIONS(2613), - [anon_sym_SQUOTE] = ACTIONS(2613), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2613), - [anon_sym_LBRACE] = ACTIONS(2613), - [anon_sym_LBRACK] = ACTIONS(2613), - [anon_sym_LT] = ACTIONS(2613), - [anon_sym_GT] = ACTIONS(2613), - [anon_sym_PIPE] = ACTIONS(2613), - [anon_sym_SLASH] = ACTIONS(2613), - [anon_sym_TILDE] = ACTIONS(2613), - [anon_sym_COMMA] = ACTIONS(2613), - [sym_keyword] = ACTIONS(2613), - [anon_sym_LT_LT] = ACTIONS(2613), - [anon_sym_GT_GT] = ACTIONS(2613), - [anon_sym_PERCENT] = ACTIONS(2613), - [anon_sym_AMP] = ACTIONS(2613), - [anon_sym_PLUS] = ACTIONS(2613), - [anon_sym_DASH] = ACTIONS(2613), - [anon_sym_BANG] = ACTIONS(2613), - [anon_sym_CARET] = ACTIONS(2613), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(2613), - [anon_sym_AT] = ACTIONS(2613), - [anon_sym_LT_DASH] = ACTIONS(2613), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2613), - [anon_sym_when] = ACTIONS(2613), - [anon_sym_COLON_COLON] = ACTIONS(2613), - [anon_sym_EQ_GT] = ACTIONS(2613), - [anon_sym_EQ] = ACTIONS(2613), - [anon_sym_PIPE_PIPE] = ACTIONS(2613), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2613), - [anon_sym_or] = ACTIONS(2613), - [anon_sym_AMP_AMP] = ACTIONS(2613), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2613), - [anon_sym_and] = ACTIONS(2613), - [anon_sym_EQ_EQ] = ACTIONS(2613), - [anon_sym_BANG_EQ] = ACTIONS(2613), - [anon_sym_EQ_TILDE] = ACTIONS(2613), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2613), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2613), - [anon_sym_LT_EQ] = ACTIONS(2613), - [anon_sym_GT_EQ] = ACTIONS(2613), - [anon_sym_PIPE_GT] = ACTIONS(2613), - [anon_sym_LT_LT_LT] = ACTIONS(2613), - [anon_sym_GT_GT_GT] = ACTIONS(2613), - [anon_sym_LT_LT_TILDE] = ACTIONS(2613), - [anon_sym_TILDE_GT_GT] = ACTIONS(2613), - [anon_sym_LT_TILDE] = ACTIONS(2613), - [anon_sym_TILDE_GT] = ACTIONS(2613), - [anon_sym_LT_TILDE_GT] = ACTIONS(2613), - [anon_sym_LT_PIPE_GT] = ACTIONS(2613), - [anon_sym_in] = ACTIONS(2613), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2613), - [anon_sym_SLASH_SLASH] = ACTIONS(2613), - [anon_sym_PLUS_PLUS] = ACTIONS(2613), - [anon_sym_DASH_DASH] = ACTIONS(2613), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2613), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2613), - [anon_sym_DOT_DOT] = ACTIONS(2613), - [anon_sym_LT_GT] = ACTIONS(2613), - [anon_sym_STAR] = ACTIONS(2613), - [anon_sym_STAR_STAR] = ACTIONS(2613), - [anon_sym_CARET_CARET] = ACTIONS(2613), - [anon_sym_DASH_GT] = ACTIONS(2613), - [anon_sym_DOT] = ACTIONS(2613), - [anon_sym_do] = ACTIONS(2613), - [anon_sym_fn] = ACTIONS(2613), - [anon_sym_LPAREN2] = ACTIONS(2611), - [anon_sym_LBRACK2] = ACTIONS(2611), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2611), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2611), - [sym__not_in] = ACTIONS(2611), - [sym__quoted_atom_start] = ACTIONS(2611), - }, - [1008] = { - [aux_sym__terminator_token1] = ACTIONS(2631), - [anon_sym_SEMI] = ACTIONS(2633), - [anon_sym_LPAREN] = ACTIONS(2633), - [anon_sym_RPAREN] = ACTIONS(2633), - [aux_sym_identifier_token1] = ACTIONS(2633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2633), - [sym_unused_identifier] = ACTIONS(2633), - [anon_sym___MODULE__] = ACTIONS(2633), - [anon_sym___DIR__] = ACTIONS(2633), - [anon_sym___ENV__] = ACTIONS(2633), - [anon_sym___CALLER__] = ACTIONS(2633), - [anon_sym___STACKTRACE__] = ACTIONS(2633), - [sym_alias] = ACTIONS(2633), - [sym_integer] = ACTIONS(2633), - [sym_float] = ACTIONS(2633), - [sym_char] = ACTIONS(2633), - [anon_sym_true] = ACTIONS(2633), - [anon_sym_false] = ACTIONS(2633), - [anon_sym_nil] = ACTIONS(2633), - [sym_atom] = ACTIONS(2633), - [anon_sym_DQUOTE] = ACTIONS(2633), - [anon_sym_SQUOTE] = ACTIONS(2633), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2633), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2633), - [anon_sym_LBRACE] = ACTIONS(2633), - [anon_sym_LBRACK] = ACTIONS(2633), - [anon_sym_LT] = ACTIONS(2633), - [anon_sym_GT] = ACTIONS(2633), - [anon_sym_PIPE] = ACTIONS(2633), - [anon_sym_SLASH] = ACTIONS(2633), - [anon_sym_TILDE] = ACTIONS(2633), - [anon_sym_COMMA] = ACTIONS(2633), - [sym_keyword] = ACTIONS(2633), - [anon_sym_LT_LT] = ACTIONS(2633), - [anon_sym_PERCENT] = ACTIONS(2633), - [anon_sym_AMP] = ACTIONS(2633), - [anon_sym_PLUS] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2633), - [anon_sym_BANG] = ACTIONS(2633), - [anon_sym_CARET] = ACTIONS(2633), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2633), - [anon_sym_not] = ACTIONS(2633), - [anon_sym_AT] = ACTIONS(2633), - [anon_sym_LT_DASH] = ACTIONS(2633), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2633), - [anon_sym_when] = ACTIONS(2633), - [anon_sym_COLON_COLON] = ACTIONS(2633), - [anon_sym_EQ_GT] = ACTIONS(2633), - [anon_sym_EQ] = ACTIONS(2633), - [anon_sym_PIPE_PIPE] = ACTIONS(2633), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2633), - [anon_sym_or] = ACTIONS(2633), - [anon_sym_AMP_AMP] = ACTIONS(2633), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2633), - [anon_sym_and] = ACTIONS(2633), - [anon_sym_EQ_EQ] = ACTIONS(2633), - [anon_sym_BANG_EQ] = ACTIONS(2633), - [anon_sym_EQ_TILDE] = ACTIONS(2633), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2633), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2633), - [anon_sym_LT_EQ] = ACTIONS(2633), - [anon_sym_GT_EQ] = ACTIONS(2633), - [anon_sym_PIPE_GT] = ACTIONS(2633), - [anon_sym_LT_LT_LT] = ACTIONS(2633), - [anon_sym_GT_GT_GT] = ACTIONS(2633), - [anon_sym_LT_LT_TILDE] = ACTIONS(2633), - [anon_sym_TILDE_GT_GT] = ACTIONS(2633), - [anon_sym_LT_TILDE] = ACTIONS(2633), - [anon_sym_TILDE_GT] = ACTIONS(2633), - [anon_sym_LT_TILDE_GT] = ACTIONS(2633), - [anon_sym_LT_PIPE_GT] = ACTIONS(2633), - [anon_sym_in] = ACTIONS(2633), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2633), - [anon_sym_SLASH_SLASH] = ACTIONS(2633), - [anon_sym_PLUS_PLUS] = ACTIONS(2633), - [anon_sym_DASH_DASH] = ACTIONS(2633), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2633), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2633), - [anon_sym_DOT_DOT] = ACTIONS(2633), - [anon_sym_LT_GT] = ACTIONS(2633), - [anon_sym_STAR] = ACTIONS(2633), - [anon_sym_STAR_STAR] = ACTIONS(2633), - [anon_sym_CARET_CARET] = ACTIONS(2633), - [anon_sym_DASH_GT] = ACTIONS(2633), - [anon_sym_DOT] = ACTIONS(2633), - [anon_sym_do] = ACTIONS(2633), - [anon_sym_fn] = ACTIONS(2633), - [anon_sym_LPAREN2] = ACTIONS(2631), - [anon_sym_LBRACK2] = ACTIONS(2631), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2631), - [sym__not_in] = ACTIONS(2631), - [sym__quoted_atom_start] = ACTIONS(2631), - }, - [1009] = { - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2613), - [aux_sym_identifier_token1] = ACTIONS(2613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2613), - [sym_unused_identifier] = ACTIONS(2613), - [anon_sym___MODULE__] = ACTIONS(2613), - [anon_sym___DIR__] = ACTIONS(2613), - [anon_sym___ENV__] = ACTIONS(2613), - [anon_sym___CALLER__] = ACTIONS(2613), - [anon_sym___STACKTRACE__] = ACTIONS(2613), - [sym_alias] = ACTIONS(2613), - [sym_integer] = ACTIONS(2613), - [sym_float] = ACTIONS(2613), - [sym_char] = ACTIONS(2613), - [anon_sym_true] = ACTIONS(2613), - [anon_sym_false] = ACTIONS(2613), - [anon_sym_nil] = ACTIONS(2613), - [sym_atom] = ACTIONS(2613), - [anon_sym_DQUOTE] = ACTIONS(2613), - [anon_sym_SQUOTE] = ACTIONS(2613), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2613), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2613), - [anon_sym_LBRACE] = ACTIONS(2613), - [anon_sym_LBRACK] = ACTIONS(2613), - [anon_sym_LT] = ACTIONS(2613), - [anon_sym_GT] = ACTIONS(2613), - [anon_sym_PIPE] = ACTIONS(2613), - [anon_sym_SLASH] = ACTIONS(2613), - [anon_sym_TILDE] = ACTIONS(2613), - [anon_sym_COMMA] = ACTIONS(2613), - [sym_keyword] = ACTIONS(2613), - [anon_sym_LT_LT] = ACTIONS(2613), - [anon_sym_GT_GT] = ACTIONS(2613), - [anon_sym_PERCENT] = ACTIONS(2613), - [anon_sym_AMP] = ACTIONS(2613), - [anon_sym_PLUS] = ACTIONS(2613), - [anon_sym_DASH] = ACTIONS(2613), - [anon_sym_BANG] = ACTIONS(2613), - [anon_sym_CARET] = ACTIONS(2613), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(2613), - [anon_sym_AT] = ACTIONS(2613), - [anon_sym_LT_DASH] = ACTIONS(2613), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2613), - [anon_sym_when] = ACTIONS(2613), - [anon_sym_COLON_COLON] = ACTIONS(2613), - [anon_sym_EQ_GT] = ACTIONS(2613), - [anon_sym_EQ] = ACTIONS(2613), - [anon_sym_PIPE_PIPE] = ACTIONS(2613), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2613), - [anon_sym_or] = ACTIONS(2613), - [anon_sym_AMP_AMP] = ACTIONS(2613), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2613), - [anon_sym_and] = ACTIONS(2613), - [anon_sym_EQ_EQ] = ACTIONS(2613), - [anon_sym_BANG_EQ] = ACTIONS(2613), - [anon_sym_EQ_TILDE] = ACTIONS(2613), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2613), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2613), - [anon_sym_LT_EQ] = ACTIONS(2613), - [anon_sym_GT_EQ] = ACTIONS(2613), - [anon_sym_PIPE_GT] = ACTIONS(2613), - [anon_sym_LT_LT_LT] = ACTIONS(2613), - [anon_sym_GT_GT_GT] = ACTIONS(2613), - [anon_sym_LT_LT_TILDE] = ACTIONS(2613), - [anon_sym_TILDE_GT_GT] = ACTIONS(2613), - [anon_sym_LT_TILDE] = ACTIONS(2613), - [anon_sym_TILDE_GT] = ACTIONS(2613), - [anon_sym_LT_TILDE_GT] = ACTIONS(2613), - [anon_sym_LT_PIPE_GT] = ACTIONS(2613), - [anon_sym_in] = ACTIONS(2613), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2613), - [anon_sym_SLASH_SLASH] = ACTIONS(2613), - [anon_sym_PLUS_PLUS] = ACTIONS(2613), - [anon_sym_DASH_DASH] = ACTIONS(2613), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2613), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2613), - [anon_sym_DOT_DOT] = ACTIONS(2613), - [anon_sym_LT_GT] = ACTIONS(2613), - [anon_sym_STAR] = ACTIONS(2613), - [anon_sym_STAR_STAR] = ACTIONS(2613), - [anon_sym_CARET_CARET] = ACTIONS(2613), - [anon_sym_DASH_GT] = ACTIONS(2613), - [anon_sym_DOT] = ACTIONS(2613), - [anon_sym_do] = ACTIONS(2613), - [anon_sym_fn] = ACTIONS(2613), - [anon_sym_LPAREN2] = ACTIONS(2611), - [anon_sym_LBRACK2] = ACTIONS(2611), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2611), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2611), - [sym__not_in] = ACTIONS(2611), - [sym__quoted_atom_start] = ACTIONS(2611), - }, - [1010] = { - [aux_sym__terminator_token1] = ACTIONS(2651), - [anon_sym_SEMI] = ACTIONS(2653), - [anon_sym_LPAREN] = ACTIONS(2653), - [anon_sym_RPAREN] = ACTIONS(2653), - [aux_sym_identifier_token1] = ACTIONS(2653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2653), - [sym_unused_identifier] = ACTIONS(2653), - [anon_sym___MODULE__] = ACTIONS(2653), - [anon_sym___DIR__] = ACTIONS(2653), - [anon_sym___ENV__] = ACTIONS(2653), - [anon_sym___CALLER__] = ACTIONS(2653), - [anon_sym___STACKTRACE__] = ACTIONS(2653), - [sym_alias] = ACTIONS(2653), - [sym_integer] = ACTIONS(2653), - [sym_float] = ACTIONS(2653), - [sym_char] = ACTIONS(2653), - [anon_sym_true] = ACTIONS(2653), - [anon_sym_false] = ACTIONS(2653), - [anon_sym_nil] = ACTIONS(2653), - [sym_atom] = ACTIONS(2653), - [anon_sym_DQUOTE] = ACTIONS(2653), - [anon_sym_SQUOTE] = ACTIONS(2653), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2653), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2653), - [anon_sym_LBRACK] = ACTIONS(2653), - [anon_sym_LT] = ACTIONS(2653), - [anon_sym_GT] = ACTIONS(2653), - [anon_sym_PIPE] = ACTIONS(2653), - [anon_sym_SLASH] = ACTIONS(2653), - [anon_sym_TILDE] = ACTIONS(2653), - [anon_sym_COMMA] = ACTIONS(2653), - [sym_keyword] = ACTIONS(2653), - [anon_sym_LT_LT] = ACTIONS(2653), - [anon_sym_PERCENT] = ACTIONS(2653), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_PLUS] = ACTIONS(2653), - [anon_sym_DASH] = ACTIONS(2653), - [anon_sym_BANG] = ACTIONS(2653), - [anon_sym_CARET] = ACTIONS(2653), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2653), - [anon_sym_not] = ACTIONS(2653), - [anon_sym_AT] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2653), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2653), - [anon_sym_when] = ACTIONS(2653), - [anon_sym_COLON_COLON] = ACTIONS(2653), - [anon_sym_EQ_GT] = ACTIONS(2653), - [anon_sym_EQ] = ACTIONS(2653), - [anon_sym_PIPE_PIPE] = ACTIONS(2653), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2653), - [anon_sym_or] = ACTIONS(2653), - [anon_sym_AMP_AMP] = ACTIONS(2653), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2653), - [anon_sym_and] = ACTIONS(2653), - [anon_sym_EQ_EQ] = ACTIONS(2653), - [anon_sym_BANG_EQ] = ACTIONS(2653), - [anon_sym_EQ_TILDE] = ACTIONS(2653), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2653), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2653), - [anon_sym_LT_EQ] = ACTIONS(2653), - [anon_sym_GT_EQ] = ACTIONS(2653), - [anon_sym_PIPE_GT] = ACTIONS(2653), - [anon_sym_LT_LT_LT] = ACTIONS(2653), - [anon_sym_GT_GT_GT] = ACTIONS(2653), - [anon_sym_LT_LT_TILDE] = ACTIONS(2653), - [anon_sym_TILDE_GT_GT] = ACTIONS(2653), - [anon_sym_LT_TILDE] = ACTIONS(2653), - [anon_sym_TILDE_GT] = ACTIONS(2653), - [anon_sym_LT_TILDE_GT] = ACTIONS(2653), - [anon_sym_LT_PIPE_GT] = ACTIONS(2653), - [anon_sym_in] = ACTIONS(2653), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2653), - [anon_sym_SLASH_SLASH] = ACTIONS(2653), - [anon_sym_PLUS_PLUS] = ACTIONS(2653), - [anon_sym_DASH_DASH] = ACTIONS(2653), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2653), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2653), - [anon_sym_DOT_DOT] = ACTIONS(2653), - [anon_sym_LT_GT] = ACTIONS(2653), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_STAR_STAR] = ACTIONS(2653), - [anon_sym_CARET_CARET] = ACTIONS(2653), - [anon_sym_DASH_GT] = ACTIONS(2653), - [anon_sym_DOT] = ACTIONS(2653), - [anon_sym_do] = ACTIONS(2653), - [anon_sym_fn] = ACTIONS(2653), - [anon_sym_LPAREN2] = ACTIONS(2651), - [anon_sym_LBRACK2] = ACTIONS(2651), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2651), - [sym__not_in] = ACTIONS(2651), - [sym__quoted_atom_start] = ACTIONS(2651), - }, - [1011] = { + [1002] = { [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(2637), [aux_sym_identifier_token1] = ACTIONS(2637), @@ -150733,9 +150498,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2635), [sym__quoted_atom_start] = ACTIONS(2635), }, - [1012] = { - [aux_sym__terminator_token1] = ACTIONS(3), + [1003] = { + [aux_sym__terminator_token1] = ACTIONS(2615), + [anon_sym_SEMI] = ACTIONS(2617), [anon_sym_LPAREN] = ACTIONS(2617), + [anon_sym_RPAREN] = ACTIONS(2617), [aux_sym_identifier_token1] = ACTIONS(2617), [anon_sym_DOT_DOT_DOT] = ACTIONS(2617), [sym_unused_identifier] = ACTIONS(2617), @@ -150766,7 +150533,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(2617), [sym_keyword] = ACTIONS(2617), [anon_sym_LT_LT] = ACTIONS(2617), - [anon_sym_GT_GT] = ACTIONS(2617), [anon_sym_PERCENT] = ACTIONS(2617), [anon_sym_AMP] = ACTIONS(2617), [anon_sym_PLUS] = ACTIONS(2617), @@ -150823,111 +150589,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN2] = ACTIONS(2615), [anon_sym_LBRACK2] = ACTIONS(2615), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2615), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), [sym__before_unary_op] = ACTIONS(2615), [sym__not_in] = ACTIONS(2615), [sym__quoted_atom_start] = ACTIONS(2615), }, - [1013] = { - [ts_builtin_sym_end] = ACTIONS(2631), - [aux_sym__terminator_token1] = ACTIONS(2631), - [anon_sym_SEMI] = ACTIONS(2633), - [anon_sym_LPAREN] = ACTIONS(2633), - [aux_sym_identifier_token1] = ACTIONS(2633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2633), - [sym_unused_identifier] = ACTIONS(2633), - [anon_sym___MODULE__] = ACTIONS(2633), - [anon_sym___DIR__] = ACTIONS(2633), - [anon_sym___ENV__] = ACTIONS(2633), - [anon_sym___CALLER__] = ACTIONS(2633), - [anon_sym___STACKTRACE__] = ACTIONS(2633), - [sym_alias] = ACTIONS(2633), - [sym_integer] = ACTIONS(2633), - [sym_float] = ACTIONS(2633), - [sym_char] = ACTIONS(2633), - [anon_sym_true] = ACTIONS(2633), - [anon_sym_false] = ACTIONS(2633), - [anon_sym_nil] = ACTIONS(2633), - [sym_atom] = ACTIONS(2633), - [anon_sym_DQUOTE] = ACTIONS(2633), - [anon_sym_SQUOTE] = ACTIONS(2633), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2633), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2633), - [anon_sym_LBRACE] = ACTIONS(2633), - [anon_sym_LBRACK] = ACTIONS(2633), - [anon_sym_LT] = ACTIONS(2633), - [anon_sym_GT] = ACTIONS(2633), - [anon_sym_PIPE] = ACTIONS(2633), - [anon_sym_SLASH] = ACTIONS(2633), - [anon_sym_TILDE] = ACTIONS(2633), - [anon_sym_COMMA] = ACTIONS(2633), - [sym_keyword] = ACTIONS(2633), - [anon_sym_LT_LT] = ACTIONS(2633), - [anon_sym_PERCENT] = ACTIONS(2633), - [anon_sym_AMP] = ACTIONS(2633), - [anon_sym_PLUS] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2633), - [anon_sym_BANG] = ACTIONS(2633), - [anon_sym_CARET] = ACTIONS(2633), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2633), - [anon_sym_not] = ACTIONS(2633), - [anon_sym_AT] = ACTIONS(2633), - [anon_sym_LT_DASH] = ACTIONS(2633), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2633), - [anon_sym_when] = ACTIONS(2633), - [anon_sym_COLON_COLON] = ACTIONS(2633), - [anon_sym_EQ_GT] = ACTIONS(2633), - [anon_sym_EQ] = ACTIONS(2633), - [anon_sym_PIPE_PIPE] = ACTIONS(2633), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2633), - [anon_sym_or] = ACTIONS(2633), - [anon_sym_AMP_AMP] = ACTIONS(2633), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2633), - [anon_sym_and] = ACTIONS(2633), - [anon_sym_EQ_EQ] = ACTIONS(2633), - [anon_sym_BANG_EQ] = ACTIONS(2633), - [anon_sym_EQ_TILDE] = ACTIONS(2633), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2633), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2633), - [anon_sym_LT_EQ] = ACTIONS(2633), - [anon_sym_GT_EQ] = ACTIONS(2633), - [anon_sym_PIPE_GT] = ACTIONS(2633), - [anon_sym_LT_LT_LT] = ACTIONS(2633), - [anon_sym_GT_GT_GT] = ACTIONS(2633), - [anon_sym_LT_LT_TILDE] = ACTIONS(2633), - [anon_sym_TILDE_GT_GT] = ACTIONS(2633), - [anon_sym_LT_TILDE] = ACTIONS(2633), - [anon_sym_TILDE_GT] = ACTIONS(2633), - [anon_sym_LT_TILDE_GT] = ACTIONS(2633), - [anon_sym_LT_PIPE_GT] = ACTIONS(2633), - [anon_sym_in] = ACTIONS(2633), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2633), - [anon_sym_SLASH_SLASH] = ACTIONS(2633), - [anon_sym_PLUS_PLUS] = ACTIONS(2633), - [anon_sym_DASH_DASH] = ACTIONS(2633), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2633), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2633), - [anon_sym_DOT_DOT] = ACTIONS(2633), - [anon_sym_LT_GT] = ACTIONS(2633), - [anon_sym_STAR] = ACTIONS(2633), - [anon_sym_STAR_STAR] = ACTIONS(2633), - [anon_sym_CARET_CARET] = ACTIONS(2633), - [anon_sym_DASH_GT] = ACTIONS(2633), - [anon_sym_DOT] = ACTIONS(2633), - [anon_sym_do] = ACTIONS(2633), - [anon_sym_fn] = ACTIONS(2633), - [anon_sym_LPAREN2] = ACTIONS(2631), - [anon_sym_LBRACK2] = ACTIONS(2631), + [1004] = { + [aux_sym__terminator_token1] = ACTIONS(2619), + [anon_sym_SEMI] = ACTIONS(2621), + [anon_sym_LPAREN] = ACTIONS(2621), + [anon_sym_RPAREN] = ACTIONS(2621), + [aux_sym_identifier_token1] = ACTIONS(2621), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2621), + [sym_unused_identifier] = ACTIONS(2621), + [anon_sym___MODULE__] = ACTIONS(2621), + [anon_sym___DIR__] = ACTIONS(2621), + [anon_sym___ENV__] = ACTIONS(2621), + [anon_sym___CALLER__] = ACTIONS(2621), + [anon_sym___STACKTRACE__] = ACTIONS(2621), + [sym_alias] = ACTIONS(2621), + [sym_integer] = ACTIONS(2621), + [sym_float] = ACTIONS(2621), + [sym_char] = ACTIONS(2621), + [anon_sym_true] = ACTIONS(2621), + [anon_sym_false] = ACTIONS(2621), + [anon_sym_nil] = ACTIONS(2621), + [sym_atom] = ACTIONS(2621), + [anon_sym_DQUOTE] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2621), + [anon_sym_LBRACK] = ACTIONS(2621), + [anon_sym_LT] = ACTIONS(2621), + [anon_sym_GT] = ACTIONS(2621), + [anon_sym_PIPE] = ACTIONS(2621), + [anon_sym_SLASH] = ACTIONS(2621), + [anon_sym_TILDE] = ACTIONS(2621), + [anon_sym_COMMA] = ACTIONS(2621), + [sym_keyword] = ACTIONS(2621), + [anon_sym_LT_LT] = ACTIONS(2621), + [anon_sym_PERCENT] = ACTIONS(2621), + [anon_sym_AMP] = ACTIONS(2621), + [anon_sym_PLUS] = ACTIONS(2621), + [anon_sym_DASH] = ACTIONS(2621), + [anon_sym_BANG] = ACTIONS(2621), + [anon_sym_CARET] = ACTIONS(2621), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2621), + [anon_sym_not] = ACTIONS(2621), + [anon_sym_AT] = ACTIONS(2621), + [anon_sym_LT_DASH] = ACTIONS(2621), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2621), + [anon_sym_when] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(2621), + [anon_sym_EQ_GT] = ACTIONS(2621), + [anon_sym_EQ] = ACTIONS(2621), + [anon_sym_PIPE_PIPE] = ACTIONS(2621), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2621), + [anon_sym_or] = ACTIONS(2621), + [anon_sym_AMP_AMP] = ACTIONS(2621), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2621), + [anon_sym_and] = ACTIONS(2621), + [anon_sym_EQ_EQ] = ACTIONS(2621), + [anon_sym_BANG_EQ] = ACTIONS(2621), + [anon_sym_EQ_TILDE] = ACTIONS(2621), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2621), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2621), + [anon_sym_LT_EQ] = ACTIONS(2621), + [anon_sym_GT_EQ] = ACTIONS(2621), + [anon_sym_PIPE_GT] = ACTIONS(2621), + [anon_sym_LT_LT_LT] = ACTIONS(2621), + [anon_sym_GT_GT_GT] = ACTIONS(2621), + [anon_sym_LT_LT_TILDE] = ACTIONS(2621), + [anon_sym_TILDE_GT_GT] = ACTIONS(2621), + [anon_sym_LT_TILDE] = ACTIONS(2621), + [anon_sym_TILDE_GT] = ACTIONS(2621), + [anon_sym_LT_TILDE_GT] = ACTIONS(2621), + [anon_sym_LT_PIPE_GT] = ACTIONS(2621), + [anon_sym_in] = ACTIONS(2621), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2621), + [anon_sym_SLASH_SLASH] = ACTIONS(2621), + [anon_sym_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_DASH_DASH] = ACTIONS(2621), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2621), + [anon_sym_DOT_DOT] = ACTIONS(2621), + [anon_sym_LT_GT] = ACTIONS(2621), + [anon_sym_STAR] = ACTIONS(2621), + [anon_sym_STAR_STAR] = ACTIONS(2621), + [anon_sym_CARET_CARET] = ACTIONS(2621), + [anon_sym_DASH_GT] = ACTIONS(2621), + [anon_sym_DOT] = ACTIONS(2621), + [anon_sym_do] = ACTIONS(2621), + [anon_sym_fn] = ACTIONS(2621), + [anon_sym_LPAREN2] = ACTIONS(2619), + [anon_sym_LBRACK2] = ACTIONS(2619), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2631), - [sym__not_in] = ACTIONS(2631), - [sym__quoted_atom_start] = ACTIONS(2631), + [sym__before_unary_op] = ACTIONS(2619), + [sym__not_in] = ACTIONS(2619), + [sym__quoted_atom_start] = ACTIONS(2619), }, - [1014] = { + [1005] = { [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(2633), [aux_sym_identifier_token1] = ACTIONS(2633), @@ -151024,394 +150789,1267 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2631), [sym__quoted_atom_start] = ACTIONS(2631), }, - [1015] = { - [ts_builtin_sym_end] = ACTIONS(2651), - [aux_sym__terminator_token1] = ACTIONS(2651), - [anon_sym_SEMI] = ACTIONS(2653), - [anon_sym_LPAREN] = ACTIONS(2653), - [aux_sym_identifier_token1] = ACTIONS(2653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2653), - [sym_unused_identifier] = ACTIONS(2653), - [anon_sym___MODULE__] = ACTIONS(2653), - [anon_sym___DIR__] = ACTIONS(2653), - [anon_sym___ENV__] = ACTIONS(2653), - [anon_sym___CALLER__] = ACTIONS(2653), - [anon_sym___STACKTRACE__] = ACTIONS(2653), - [sym_alias] = ACTIONS(2653), - [sym_integer] = ACTIONS(2653), - [sym_float] = ACTIONS(2653), - [sym_char] = ACTIONS(2653), - [anon_sym_true] = ACTIONS(2653), - [anon_sym_false] = ACTIONS(2653), - [anon_sym_nil] = ACTIONS(2653), - [sym_atom] = ACTIONS(2653), - [anon_sym_DQUOTE] = ACTIONS(2653), - [anon_sym_SQUOTE] = ACTIONS(2653), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2653), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2653), - [anon_sym_LBRACK] = ACTIONS(2653), - [anon_sym_LT] = ACTIONS(2653), - [anon_sym_GT] = ACTIONS(2653), - [anon_sym_PIPE] = ACTIONS(2653), - [anon_sym_SLASH] = ACTIONS(2653), - [anon_sym_TILDE] = ACTIONS(2653), - [anon_sym_COMMA] = ACTIONS(2653), - [sym_keyword] = ACTIONS(2653), - [anon_sym_LT_LT] = ACTIONS(2653), - [anon_sym_PERCENT] = ACTIONS(2653), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_PLUS] = ACTIONS(2653), - [anon_sym_DASH] = ACTIONS(2653), - [anon_sym_BANG] = ACTIONS(2653), - [anon_sym_CARET] = ACTIONS(2653), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2653), - [anon_sym_not] = ACTIONS(2653), - [anon_sym_AT] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2653), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2653), - [anon_sym_when] = ACTIONS(2653), - [anon_sym_COLON_COLON] = ACTIONS(2653), - [anon_sym_EQ_GT] = ACTIONS(2653), - [anon_sym_EQ] = ACTIONS(2653), - [anon_sym_PIPE_PIPE] = ACTIONS(2653), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2653), - [anon_sym_or] = ACTIONS(2653), - [anon_sym_AMP_AMP] = ACTIONS(2653), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2653), - [anon_sym_and] = ACTIONS(2653), - [anon_sym_EQ_EQ] = ACTIONS(2653), - [anon_sym_BANG_EQ] = ACTIONS(2653), - [anon_sym_EQ_TILDE] = ACTIONS(2653), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2653), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2653), - [anon_sym_LT_EQ] = ACTIONS(2653), - [anon_sym_GT_EQ] = ACTIONS(2653), - [anon_sym_PIPE_GT] = ACTIONS(2653), - [anon_sym_LT_LT_LT] = ACTIONS(2653), - [anon_sym_GT_GT_GT] = ACTIONS(2653), - [anon_sym_LT_LT_TILDE] = ACTIONS(2653), - [anon_sym_TILDE_GT_GT] = ACTIONS(2653), - [anon_sym_LT_TILDE] = ACTIONS(2653), - [anon_sym_TILDE_GT] = ACTIONS(2653), - [anon_sym_LT_TILDE_GT] = ACTIONS(2653), - [anon_sym_LT_PIPE_GT] = ACTIONS(2653), - [anon_sym_in] = ACTIONS(2653), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2653), - [anon_sym_SLASH_SLASH] = ACTIONS(2653), - [anon_sym_PLUS_PLUS] = ACTIONS(2653), - [anon_sym_DASH_DASH] = ACTIONS(2653), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2653), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2653), - [anon_sym_DOT_DOT] = ACTIONS(2653), - [anon_sym_LT_GT] = ACTIONS(2653), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_STAR_STAR] = ACTIONS(2653), - [anon_sym_CARET_CARET] = ACTIONS(2653), - [anon_sym_DASH_GT] = ACTIONS(2653), - [anon_sym_DOT] = ACTIONS(2653), - [anon_sym_do] = ACTIONS(2653), - [anon_sym_fn] = ACTIONS(2653), - [anon_sym_LPAREN2] = ACTIONS(2651), - [anon_sym_LBRACK2] = ACTIONS(2651), + [1006] = { + [ts_builtin_sym_end] = ACTIONS(2615), + [aux_sym__terminator_token1] = ACTIONS(2615), + [anon_sym_SEMI] = ACTIONS(2617), + [anon_sym_LPAREN] = ACTIONS(2617), + [aux_sym_identifier_token1] = ACTIONS(2617), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2617), + [sym_unused_identifier] = ACTIONS(2617), + [anon_sym___MODULE__] = ACTIONS(2617), + [anon_sym___DIR__] = ACTIONS(2617), + [anon_sym___ENV__] = ACTIONS(2617), + [anon_sym___CALLER__] = ACTIONS(2617), + [anon_sym___STACKTRACE__] = ACTIONS(2617), + [sym_alias] = ACTIONS(2617), + [sym_integer] = ACTIONS(2617), + [sym_float] = ACTIONS(2617), + [sym_char] = ACTIONS(2617), + [anon_sym_true] = ACTIONS(2617), + [anon_sym_false] = ACTIONS(2617), + [anon_sym_nil] = ACTIONS(2617), + [sym_atom] = ACTIONS(2617), + [anon_sym_DQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_LBRACK] = ACTIONS(2617), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_GT] = ACTIONS(2617), + [anon_sym_PIPE] = ACTIONS(2617), + [anon_sym_SLASH] = ACTIONS(2617), + [anon_sym_TILDE] = ACTIONS(2617), + [anon_sym_COMMA] = ACTIONS(2617), + [sym_keyword] = ACTIONS(2617), + [anon_sym_LT_LT] = ACTIONS(2617), + [anon_sym_PERCENT] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2617), + [anon_sym_PLUS] = ACTIONS(2617), + [anon_sym_DASH] = ACTIONS(2617), + [anon_sym_BANG] = ACTIONS(2617), + [anon_sym_CARET] = ACTIONS(2617), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2617), + [anon_sym_not] = ACTIONS(2617), + [anon_sym_AT] = ACTIONS(2617), + [anon_sym_LT_DASH] = ACTIONS(2617), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2617), + [anon_sym_when] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_EQ_GT] = ACTIONS(2617), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2617), + [anon_sym_AMP_AMP] = ACTIONS(2617), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2617), + [anon_sym_and] = ACTIONS(2617), + [anon_sym_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_EQ_TILDE] = ACTIONS(2617), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2617), + [anon_sym_LT_EQ] = ACTIONS(2617), + [anon_sym_GT_EQ] = ACTIONS(2617), + [anon_sym_PIPE_GT] = ACTIONS(2617), + [anon_sym_LT_LT_LT] = ACTIONS(2617), + [anon_sym_GT_GT_GT] = ACTIONS(2617), + [anon_sym_LT_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_PIPE_GT] = ACTIONS(2617), + [anon_sym_in] = ACTIONS(2617), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2617), + [anon_sym_SLASH_SLASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2617), + [anon_sym_DOT_DOT] = ACTIONS(2617), + [anon_sym_LT_GT] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(2617), + [anon_sym_STAR_STAR] = ACTIONS(2617), + [anon_sym_CARET_CARET] = ACTIONS(2617), + [anon_sym_DASH_GT] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(2617), + [anon_sym_do] = ACTIONS(2617), + [anon_sym_fn] = ACTIONS(2617), + [anon_sym_LPAREN2] = ACTIONS(2615), + [anon_sym_LBRACK2] = ACTIONS(2615), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2651), - [sym__not_in] = ACTIONS(2651), - [sym__quoted_atom_start] = ACTIONS(2651), + [sym__before_unary_op] = ACTIONS(2615), + [sym__not_in] = ACTIONS(2615), + [sym__quoted_atom_start] = ACTIONS(2615), + }, + [1007] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2645), + [aux_sym_identifier_token1] = ACTIONS(2645), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2645), + [sym_unused_identifier] = ACTIONS(2645), + [anon_sym___MODULE__] = ACTIONS(2645), + [anon_sym___DIR__] = ACTIONS(2645), + [anon_sym___ENV__] = ACTIONS(2645), + [anon_sym___CALLER__] = ACTIONS(2645), + [anon_sym___STACKTRACE__] = ACTIONS(2645), + [sym_alias] = ACTIONS(2645), + [sym_integer] = ACTIONS(2645), + [sym_float] = ACTIONS(2645), + [sym_char] = ACTIONS(2645), + [anon_sym_true] = ACTIONS(2645), + [anon_sym_false] = ACTIONS(2645), + [anon_sym_nil] = ACTIONS(2645), + [sym_atom] = ACTIONS(2645), + [anon_sym_DQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2645), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2645), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_LBRACK] = ACTIONS(2645), + [anon_sym_LT] = ACTIONS(2645), + [anon_sym_GT] = ACTIONS(2645), + [anon_sym_PIPE] = ACTIONS(2645), + [anon_sym_SLASH] = ACTIONS(2645), + [anon_sym_TILDE] = ACTIONS(2645), + [anon_sym_COMMA] = ACTIONS(2645), + [sym_keyword] = ACTIONS(2645), + [anon_sym_LT_LT] = ACTIONS(2645), + [anon_sym_GT_GT] = ACTIONS(2645), + [anon_sym_PERCENT] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2645), + [anon_sym_PLUS] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2645), + [anon_sym_BANG] = ACTIONS(2645), + [anon_sym_CARET] = ACTIONS(2645), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2645), + [anon_sym_not] = ACTIONS(2645), + [anon_sym_AT] = ACTIONS(2645), + [anon_sym_LT_DASH] = ACTIONS(2645), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2645), + [anon_sym_when] = ACTIONS(2645), + [anon_sym_COLON_COLON] = ACTIONS(2645), + [anon_sym_EQ_GT] = ACTIONS(2645), + [anon_sym_EQ] = ACTIONS(2645), + [anon_sym_PIPE_PIPE] = ACTIONS(2645), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2645), + [anon_sym_or] = ACTIONS(2645), + [anon_sym_AMP_AMP] = ACTIONS(2645), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2645), + [anon_sym_and] = ACTIONS(2645), + [anon_sym_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ] = ACTIONS(2645), + [anon_sym_EQ_TILDE] = ACTIONS(2645), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2645), + [anon_sym_LT_EQ] = ACTIONS(2645), + [anon_sym_GT_EQ] = ACTIONS(2645), + [anon_sym_PIPE_GT] = ACTIONS(2645), + [anon_sym_LT_LT_LT] = ACTIONS(2645), + [anon_sym_GT_GT_GT] = ACTIONS(2645), + [anon_sym_LT_LT_TILDE] = ACTIONS(2645), + [anon_sym_TILDE_GT_GT] = ACTIONS(2645), + [anon_sym_LT_TILDE] = ACTIONS(2645), + [anon_sym_TILDE_GT] = ACTIONS(2645), + [anon_sym_LT_TILDE_GT] = ACTIONS(2645), + [anon_sym_LT_PIPE_GT] = ACTIONS(2645), + [anon_sym_in] = ACTIONS(2645), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2645), + [anon_sym_SLASH_SLASH] = ACTIONS(2645), + [anon_sym_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_DASH_DASH] = ACTIONS(2645), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2645), + [anon_sym_DOT_DOT] = ACTIONS(2645), + [anon_sym_LT_GT] = ACTIONS(2645), + [anon_sym_STAR] = ACTIONS(2645), + [anon_sym_STAR_STAR] = ACTIONS(2645), + [anon_sym_CARET_CARET] = ACTIONS(2645), + [anon_sym_DASH_GT] = ACTIONS(2645), + [anon_sym_DOT] = ACTIONS(2645), + [anon_sym_do] = ACTIONS(2645), + [anon_sym_fn] = ACTIONS(2645), + [anon_sym_LPAREN2] = ACTIONS(2643), + [anon_sym_LBRACK2] = ACTIONS(2643), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2643), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2643), + [sym__not_in] = ACTIONS(2643), + [sym__quoted_atom_start] = ACTIONS(2643), + }, + [1008] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2645), + [aux_sym_identifier_token1] = ACTIONS(2645), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2645), + [sym_unused_identifier] = ACTIONS(2645), + [anon_sym___MODULE__] = ACTIONS(2645), + [anon_sym___DIR__] = ACTIONS(2645), + [anon_sym___ENV__] = ACTIONS(2645), + [anon_sym___CALLER__] = ACTIONS(2645), + [anon_sym___STACKTRACE__] = ACTIONS(2645), + [sym_alias] = ACTIONS(2645), + [sym_integer] = ACTIONS(2645), + [sym_float] = ACTIONS(2645), + [sym_char] = ACTIONS(2645), + [anon_sym_true] = ACTIONS(2645), + [anon_sym_false] = ACTIONS(2645), + [anon_sym_nil] = ACTIONS(2645), + [sym_atom] = ACTIONS(2645), + [anon_sym_DQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2645), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2645), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_LBRACK] = ACTIONS(2645), + [anon_sym_LT] = ACTIONS(2645), + [anon_sym_GT] = ACTIONS(2645), + [anon_sym_PIPE] = ACTIONS(2645), + [anon_sym_SLASH] = ACTIONS(2645), + [anon_sym_TILDE] = ACTIONS(2645), + [anon_sym_COMMA] = ACTIONS(2645), + [sym_keyword] = ACTIONS(2645), + [anon_sym_LT_LT] = ACTIONS(2645), + [anon_sym_GT_GT] = ACTIONS(2645), + [anon_sym_PERCENT] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2645), + [anon_sym_PLUS] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2645), + [anon_sym_BANG] = ACTIONS(2645), + [anon_sym_CARET] = ACTIONS(2645), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2645), + [anon_sym_not] = ACTIONS(2645), + [anon_sym_AT] = ACTIONS(2645), + [anon_sym_LT_DASH] = ACTIONS(2645), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2645), + [anon_sym_when] = ACTIONS(2645), + [anon_sym_COLON_COLON] = ACTIONS(2645), + [anon_sym_EQ_GT] = ACTIONS(2645), + [anon_sym_EQ] = ACTIONS(2645), + [anon_sym_PIPE_PIPE] = ACTIONS(2645), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2645), + [anon_sym_or] = ACTIONS(2645), + [anon_sym_AMP_AMP] = ACTIONS(2645), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2645), + [anon_sym_and] = ACTIONS(2645), + [anon_sym_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ] = ACTIONS(2645), + [anon_sym_EQ_TILDE] = ACTIONS(2645), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2645), + [anon_sym_LT_EQ] = ACTIONS(2645), + [anon_sym_GT_EQ] = ACTIONS(2645), + [anon_sym_PIPE_GT] = ACTIONS(2645), + [anon_sym_LT_LT_LT] = ACTIONS(2645), + [anon_sym_GT_GT_GT] = ACTIONS(2645), + [anon_sym_LT_LT_TILDE] = ACTIONS(2645), + [anon_sym_TILDE_GT_GT] = ACTIONS(2645), + [anon_sym_LT_TILDE] = ACTIONS(2645), + [anon_sym_TILDE_GT] = ACTIONS(2645), + [anon_sym_LT_TILDE_GT] = ACTIONS(2645), + [anon_sym_LT_PIPE_GT] = ACTIONS(2645), + [anon_sym_in] = ACTIONS(2645), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2645), + [anon_sym_SLASH_SLASH] = ACTIONS(2645), + [anon_sym_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_DASH_DASH] = ACTIONS(2645), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2645), + [anon_sym_DOT_DOT] = ACTIONS(2645), + [anon_sym_LT_GT] = ACTIONS(2645), + [anon_sym_STAR] = ACTIONS(2645), + [anon_sym_STAR_STAR] = ACTIONS(2645), + [anon_sym_CARET_CARET] = ACTIONS(2645), + [anon_sym_DASH_GT] = ACTIONS(2645), + [anon_sym_DOT] = ACTIONS(2645), + [anon_sym_do] = ACTIONS(2645), + [anon_sym_fn] = ACTIONS(2645), + [anon_sym_LPAREN2] = ACTIONS(2643), + [anon_sym_LBRACK2] = ACTIONS(2643), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2643), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2643), + [sym__not_in] = ACTIONS(2643), + [sym__quoted_atom_start] = ACTIONS(2643), + }, + [1009] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2649), + [aux_sym_identifier_token1] = ACTIONS(2649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2649), + [sym_unused_identifier] = ACTIONS(2649), + [anon_sym___MODULE__] = ACTIONS(2649), + [anon_sym___DIR__] = ACTIONS(2649), + [anon_sym___ENV__] = ACTIONS(2649), + [anon_sym___CALLER__] = ACTIONS(2649), + [anon_sym___STACKTRACE__] = ACTIONS(2649), + [sym_alias] = ACTIONS(2649), + [sym_integer] = ACTIONS(2649), + [sym_float] = ACTIONS(2649), + [sym_char] = ACTIONS(2649), + [anon_sym_true] = ACTIONS(2649), + [anon_sym_false] = ACTIONS(2649), + [anon_sym_nil] = ACTIONS(2649), + [sym_atom] = ACTIONS(2649), + [anon_sym_DQUOTE] = ACTIONS(2649), + [anon_sym_SQUOTE] = ACTIONS(2649), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2649), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2649), + [anon_sym_LBRACK] = ACTIONS(2649), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_GT] = ACTIONS(2649), + [anon_sym_PIPE] = ACTIONS(2649), + [anon_sym_SLASH] = ACTIONS(2649), + [anon_sym_TILDE] = ACTIONS(2649), + [anon_sym_COMMA] = ACTIONS(2649), + [sym_keyword] = ACTIONS(2649), + [anon_sym_LT_LT] = ACTIONS(2649), + [anon_sym_GT_GT] = ACTIONS(2649), + [anon_sym_PERCENT] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(2649), + [anon_sym_PLUS] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_BANG] = ACTIONS(2649), + [anon_sym_CARET] = ACTIONS(2649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2649), + [anon_sym_not] = ACTIONS(2649), + [anon_sym_AT] = ACTIONS(2649), + [anon_sym_LT_DASH] = ACTIONS(2649), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2649), + [anon_sym_when] = ACTIONS(2649), + [anon_sym_COLON_COLON] = ACTIONS(2649), + [anon_sym_EQ_GT] = ACTIONS(2649), + [anon_sym_EQ] = ACTIONS(2649), + [anon_sym_PIPE_PIPE] = ACTIONS(2649), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2649), + [anon_sym_or] = ACTIONS(2649), + [anon_sym_AMP_AMP] = ACTIONS(2649), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2649), + [anon_sym_and] = ACTIONS(2649), + [anon_sym_EQ_EQ] = ACTIONS(2649), + [anon_sym_BANG_EQ] = ACTIONS(2649), + [anon_sym_EQ_TILDE] = ACTIONS(2649), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2649), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2649), + [anon_sym_LT_EQ] = ACTIONS(2649), + [anon_sym_GT_EQ] = ACTIONS(2649), + [anon_sym_PIPE_GT] = ACTIONS(2649), + [anon_sym_LT_LT_LT] = ACTIONS(2649), + [anon_sym_GT_GT_GT] = ACTIONS(2649), + [anon_sym_LT_LT_TILDE] = ACTIONS(2649), + [anon_sym_TILDE_GT_GT] = ACTIONS(2649), + [anon_sym_LT_TILDE] = ACTIONS(2649), + [anon_sym_TILDE_GT] = ACTIONS(2649), + [anon_sym_LT_TILDE_GT] = ACTIONS(2649), + [anon_sym_LT_PIPE_GT] = ACTIONS(2649), + [anon_sym_in] = ACTIONS(2649), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2649), + [anon_sym_SLASH_SLASH] = ACTIONS(2649), + [anon_sym_PLUS_PLUS] = ACTIONS(2649), + [anon_sym_DASH_DASH] = ACTIONS(2649), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2649), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2649), + [anon_sym_DOT_DOT] = ACTIONS(2649), + [anon_sym_LT_GT] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2649), + [anon_sym_STAR_STAR] = ACTIONS(2649), + [anon_sym_CARET_CARET] = ACTIONS(2649), + [anon_sym_DASH_GT] = ACTIONS(2649), + [anon_sym_DOT] = ACTIONS(2649), + [anon_sym_do] = ACTIONS(2649), + [anon_sym_fn] = ACTIONS(2649), + [anon_sym_LPAREN2] = ACTIONS(2647), + [anon_sym_LBRACK2] = ACTIONS(2647), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2647), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2647), + [sym__not_in] = ACTIONS(2647), + [sym__quoted_atom_start] = ACTIONS(2647), + }, + [1010] = { + [aux_sym__terminator_token1] = ACTIONS(2619), + [anon_sym_SEMI] = ACTIONS(2621), + [anon_sym_LPAREN] = ACTIONS(2621), + [aux_sym_identifier_token1] = ACTIONS(2621), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2621), + [sym_unused_identifier] = ACTIONS(2621), + [anon_sym___MODULE__] = ACTIONS(2621), + [anon_sym___DIR__] = ACTIONS(2621), + [anon_sym___ENV__] = ACTIONS(2621), + [anon_sym___CALLER__] = ACTIONS(2621), + [anon_sym___STACKTRACE__] = ACTIONS(2621), + [sym_alias] = ACTIONS(2621), + [sym_integer] = ACTIONS(2621), + [sym_float] = ACTIONS(2621), + [sym_char] = ACTIONS(2621), + [anon_sym_true] = ACTIONS(2621), + [anon_sym_false] = ACTIONS(2621), + [anon_sym_nil] = ACTIONS(2621), + [sym_atom] = ACTIONS(2621), + [anon_sym_DQUOTE] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2621), + [anon_sym_LBRACK] = ACTIONS(2621), + [anon_sym_LT] = ACTIONS(2621), + [anon_sym_GT] = ACTIONS(2621), + [anon_sym_PIPE] = ACTIONS(2621), + [anon_sym_SLASH] = ACTIONS(2621), + [anon_sym_TILDE] = ACTIONS(2621), + [anon_sym_COMMA] = ACTIONS(2621), + [sym_keyword] = ACTIONS(2621), + [anon_sym_LT_LT] = ACTIONS(2621), + [anon_sym_PERCENT] = ACTIONS(2621), + [anon_sym_AMP] = ACTIONS(2621), + [anon_sym_PLUS] = ACTIONS(2621), + [anon_sym_DASH] = ACTIONS(2621), + [anon_sym_BANG] = ACTIONS(2621), + [anon_sym_CARET] = ACTIONS(2621), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2621), + [anon_sym_not] = ACTIONS(2621), + [anon_sym_AT] = ACTIONS(2621), + [anon_sym_LT_DASH] = ACTIONS(2621), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2621), + [anon_sym_when] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(2621), + [anon_sym_EQ_GT] = ACTIONS(2621), + [anon_sym_EQ] = ACTIONS(2621), + [anon_sym_PIPE_PIPE] = ACTIONS(2621), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2621), + [anon_sym_or] = ACTIONS(2621), + [anon_sym_AMP_AMP] = ACTIONS(2621), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2621), + [anon_sym_and] = ACTIONS(2621), + [anon_sym_EQ_EQ] = ACTIONS(2621), + [anon_sym_BANG_EQ] = ACTIONS(2621), + [anon_sym_EQ_TILDE] = ACTIONS(2621), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2621), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2621), + [anon_sym_LT_EQ] = ACTIONS(2621), + [anon_sym_GT_EQ] = ACTIONS(2621), + [anon_sym_PIPE_GT] = ACTIONS(2621), + [anon_sym_LT_LT_LT] = ACTIONS(2621), + [anon_sym_GT_GT_GT] = ACTIONS(2621), + [anon_sym_LT_LT_TILDE] = ACTIONS(2621), + [anon_sym_TILDE_GT_GT] = ACTIONS(2621), + [anon_sym_LT_TILDE] = ACTIONS(2621), + [anon_sym_TILDE_GT] = ACTIONS(2621), + [anon_sym_LT_TILDE_GT] = ACTIONS(2621), + [anon_sym_LT_PIPE_GT] = ACTIONS(2621), + [anon_sym_in] = ACTIONS(2621), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2621), + [anon_sym_SLASH_SLASH] = ACTIONS(2621), + [anon_sym_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_DASH_DASH] = ACTIONS(2621), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2621), + [anon_sym_DOT_DOT] = ACTIONS(2621), + [anon_sym_LT_GT] = ACTIONS(2621), + [anon_sym_STAR] = ACTIONS(2621), + [anon_sym_STAR_STAR] = ACTIONS(2621), + [anon_sym_CARET_CARET] = ACTIONS(2621), + [anon_sym_DASH_GT] = ACTIONS(2621), + [anon_sym_DOT] = ACTIONS(2621), + [anon_sym_do] = ACTIONS(2621), + [anon_sym_end] = ACTIONS(2621), + [anon_sym_fn] = ACTIONS(2621), + [anon_sym_LPAREN2] = ACTIONS(2619), + [anon_sym_LBRACK2] = ACTIONS(2619), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2619), + [sym__not_in] = ACTIONS(2619), + [sym__quoted_atom_start] = ACTIONS(2619), + }, + [1011] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2625), + [aux_sym_identifier_token1] = ACTIONS(2625), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2625), + [sym_unused_identifier] = ACTIONS(2625), + [anon_sym___MODULE__] = ACTIONS(2625), + [anon_sym___DIR__] = ACTIONS(2625), + [anon_sym___ENV__] = ACTIONS(2625), + [anon_sym___CALLER__] = ACTIONS(2625), + [anon_sym___STACKTRACE__] = ACTIONS(2625), + [sym_alias] = ACTIONS(2625), + [sym_integer] = ACTIONS(2625), + [sym_float] = ACTIONS(2625), + [sym_char] = ACTIONS(2625), + [anon_sym_true] = ACTIONS(2625), + [anon_sym_false] = ACTIONS(2625), + [anon_sym_nil] = ACTIONS(2625), + [sym_atom] = ACTIONS(2625), + [anon_sym_DQUOTE] = ACTIONS(2625), + [anon_sym_SQUOTE] = ACTIONS(2625), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2625), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_LBRACK] = ACTIONS(2625), + [anon_sym_LT] = ACTIONS(2625), + [anon_sym_GT] = ACTIONS(2625), + [anon_sym_PIPE] = ACTIONS(2625), + [anon_sym_SLASH] = ACTIONS(2625), + [anon_sym_TILDE] = ACTIONS(2625), + [anon_sym_COMMA] = ACTIONS(2625), + [sym_keyword] = ACTIONS(2625), + [anon_sym_LT_LT] = ACTIONS(2625), + [anon_sym_GT_GT] = ACTIONS(2625), + [anon_sym_PERCENT] = ACTIONS(2625), + [anon_sym_AMP] = ACTIONS(2625), + [anon_sym_PLUS] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(2625), + [anon_sym_BANG] = ACTIONS(2625), + [anon_sym_CARET] = ACTIONS(2625), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(2625), + [anon_sym_AT] = ACTIONS(2625), + [anon_sym_LT_DASH] = ACTIONS(2625), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2625), + [anon_sym_when] = ACTIONS(2625), + [anon_sym_COLON_COLON] = ACTIONS(2625), + [anon_sym_EQ_GT] = ACTIONS(2625), + [anon_sym_EQ] = ACTIONS(2625), + [anon_sym_PIPE_PIPE] = ACTIONS(2625), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2625), + [anon_sym_or] = ACTIONS(2625), + [anon_sym_AMP_AMP] = ACTIONS(2625), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2625), + [anon_sym_and] = ACTIONS(2625), + [anon_sym_EQ_EQ] = ACTIONS(2625), + [anon_sym_BANG_EQ] = ACTIONS(2625), + [anon_sym_EQ_TILDE] = ACTIONS(2625), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2625), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2625), + [anon_sym_LT_EQ] = ACTIONS(2625), + [anon_sym_GT_EQ] = ACTIONS(2625), + [anon_sym_PIPE_GT] = ACTIONS(2625), + [anon_sym_LT_LT_LT] = ACTIONS(2625), + [anon_sym_GT_GT_GT] = ACTIONS(2625), + [anon_sym_LT_LT_TILDE] = ACTIONS(2625), + [anon_sym_TILDE_GT_GT] = ACTIONS(2625), + [anon_sym_LT_TILDE] = ACTIONS(2625), + [anon_sym_TILDE_GT] = ACTIONS(2625), + [anon_sym_LT_TILDE_GT] = ACTIONS(2625), + [anon_sym_LT_PIPE_GT] = ACTIONS(2625), + [anon_sym_in] = ACTIONS(2625), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2625), + [anon_sym_SLASH_SLASH] = ACTIONS(2625), + [anon_sym_PLUS_PLUS] = ACTIONS(2625), + [anon_sym_DASH_DASH] = ACTIONS(2625), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2625), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2625), + [anon_sym_DOT_DOT] = ACTIONS(2625), + [anon_sym_LT_GT] = ACTIONS(2625), + [anon_sym_STAR] = ACTIONS(2625), + [anon_sym_STAR_STAR] = ACTIONS(2625), + [anon_sym_CARET_CARET] = ACTIONS(2625), + [anon_sym_DASH_GT] = ACTIONS(2625), + [anon_sym_DOT] = ACTIONS(2625), + [anon_sym_do] = ACTIONS(2625), + [anon_sym_fn] = ACTIONS(2625), + [anon_sym_LPAREN2] = ACTIONS(2623), + [anon_sym_LBRACK2] = ACTIONS(2623), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2623), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2623), + [sym__not_in] = ACTIONS(2623), + [sym__quoted_atom_start] = ACTIONS(2623), + }, + [1012] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2637), + [aux_sym_identifier_token1] = ACTIONS(2637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2637), + [sym_unused_identifier] = ACTIONS(2637), + [anon_sym___MODULE__] = ACTIONS(2637), + [anon_sym___DIR__] = ACTIONS(2637), + [anon_sym___ENV__] = ACTIONS(2637), + [anon_sym___CALLER__] = ACTIONS(2637), + [anon_sym___STACKTRACE__] = ACTIONS(2637), + [sym_alias] = ACTIONS(2637), + [sym_integer] = ACTIONS(2637), + [sym_float] = ACTIONS(2637), + [sym_char] = ACTIONS(2637), + [anon_sym_true] = ACTIONS(2637), + [anon_sym_false] = ACTIONS(2637), + [anon_sym_nil] = ACTIONS(2637), + [sym_atom] = ACTIONS(2637), + [anon_sym_DQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2637), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2637), + [anon_sym_LBRACE] = ACTIONS(2637), + [anon_sym_LBRACK] = ACTIONS(2637), + [anon_sym_LT] = ACTIONS(2637), + [anon_sym_GT] = ACTIONS(2637), + [anon_sym_PIPE] = ACTIONS(2637), + [anon_sym_SLASH] = ACTIONS(2637), + [anon_sym_TILDE] = ACTIONS(2637), + [anon_sym_COMMA] = ACTIONS(2637), + [sym_keyword] = ACTIONS(2637), + [anon_sym_LT_LT] = ACTIONS(2637), + [anon_sym_GT_GT] = ACTIONS(2637), + [anon_sym_PERCENT] = ACTIONS(2637), + [anon_sym_AMP] = ACTIONS(2637), + [anon_sym_PLUS] = ACTIONS(2637), + [anon_sym_DASH] = ACTIONS(2637), + [anon_sym_BANG] = ACTIONS(2637), + [anon_sym_CARET] = ACTIONS(2637), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2637), + [anon_sym_not] = ACTIONS(2637), + [anon_sym_AT] = ACTIONS(2637), + [anon_sym_LT_DASH] = ACTIONS(2637), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2637), + [anon_sym_when] = ACTIONS(2637), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_EQ_GT] = ACTIONS(2637), + [anon_sym_EQ] = ACTIONS(2637), + [anon_sym_PIPE_PIPE] = ACTIONS(2637), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2637), + [anon_sym_or] = ACTIONS(2637), + [anon_sym_AMP_AMP] = ACTIONS(2637), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2637), + [anon_sym_and] = ACTIONS(2637), + [anon_sym_EQ_EQ] = ACTIONS(2637), + [anon_sym_BANG_EQ] = ACTIONS(2637), + [anon_sym_EQ_TILDE] = ACTIONS(2637), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2637), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2637), + [anon_sym_LT_EQ] = ACTIONS(2637), + [anon_sym_GT_EQ] = ACTIONS(2637), + [anon_sym_PIPE_GT] = ACTIONS(2637), + [anon_sym_LT_LT_LT] = ACTIONS(2637), + [anon_sym_GT_GT_GT] = ACTIONS(2637), + [anon_sym_LT_LT_TILDE] = ACTIONS(2637), + [anon_sym_TILDE_GT_GT] = ACTIONS(2637), + [anon_sym_LT_TILDE] = ACTIONS(2637), + [anon_sym_TILDE_GT] = ACTIONS(2637), + [anon_sym_LT_TILDE_GT] = ACTIONS(2637), + [anon_sym_LT_PIPE_GT] = ACTIONS(2637), + [anon_sym_in] = ACTIONS(2637), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2637), + [anon_sym_SLASH_SLASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_DASH_DASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2637), + [anon_sym_DOT_DOT] = ACTIONS(2637), + [anon_sym_LT_GT] = ACTIONS(2637), + [anon_sym_STAR] = ACTIONS(2637), + [anon_sym_STAR_STAR] = ACTIONS(2637), + [anon_sym_CARET_CARET] = ACTIONS(2637), + [anon_sym_DASH_GT] = ACTIONS(2637), + [anon_sym_DOT] = ACTIONS(2637), + [anon_sym_do] = ACTIONS(2637), + [anon_sym_fn] = ACTIONS(2637), + [anon_sym_LPAREN2] = ACTIONS(2635), + [anon_sym_LBRACK2] = ACTIONS(2635), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2635), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2635), + [sym__not_in] = ACTIONS(2635), + [sym__quoted_atom_start] = ACTIONS(2635), + }, + [1013] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2617), + [aux_sym_identifier_token1] = ACTIONS(2617), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2617), + [sym_unused_identifier] = ACTIONS(2617), + [anon_sym___MODULE__] = ACTIONS(2617), + [anon_sym___DIR__] = ACTIONS(2617), + [anon_sym___ENV__] = ACTIONS(2617), + [anon_sym___CALLER__] = ACTIONS(2617), + [anon_sym___STACKTRACE__] = ACTIONS(2617), + [sym_alias] = ACTIONS(2617), + [sym_integer] = ACTIONS(2617), + [sym_float] = ACTIONS(2617), + [sym_char] = ACTIONS(2617), + [anon_sym_true] = ACTIONS(2617), + [anon_sym_false] = ACTIONS(2617), + [anon_sym_nil] = ACTIONS(2617), + [sym_atom] = ACTIONS(2617), + [anon_sym_DQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_LBRACK] = ACTIONS(2617), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_GT] = ACTIONS(2617), + [anon_sym_PIPE] = ACTIONS(2617), + [anon_sym_SLASH] = ACTIONS(2617), + [anon_sym_TILDE] = ACTIONS(2617), + [anon_sym_COMMA] = ACTIONS(2617), + [sym_keyword] = ACTIONS(2617), + [anon_sym_LT_LT] = ACTIONS(2617), + [anon_sym_GT_GT] = ACTIONS(2617), + [anon_sym_PERCENT] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2617), + [anon_sym_PLUS] = ACTIONS(2617), + [anon_sym_DASH] = ACTIONS(2617), + [anon_sym_BANG] = ACTIONS(2617), + [anon_sym_CARET] = ACTIONS(2617), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2617), + [anon_sym_not] = ACTIONS(2617), + [anon_sym_AT] = ACTIONS(2617), + [anon_sym_LT_DASH] = ACTIONS(2617), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2617), + [anon_sym_when] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_EQ_GT] = ACTIONS(2617), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2617), + [anon_sym_AMP_AMP] = ACTIONS(2617), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2617), + [anon_sym_and] = ACTIONS(2617), + [anon_sym_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_EQ_TILDE] = ACTIONS(2617), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2617), + [anon_sym_LT_EQ] = ACTIONS(2617), + [anon_sym_GT_EQ] = ACTIONS(2617), + [anon_sym_PIPE_GT] = ACTIONS(2617), + [anon_sym_LT_LT_LT] = ACTIONS(2617), + [anon_sym_GT_GT_GT] = ACTIONS(2617), + [anon_sym_LT_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_PIPE_GT] = ACTIONS(2617), + [anon_sym_in] = ACTIONS(2617), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2617), + [anon_sym_SLASH_SLASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2617), + [anon_sym_DOT_DOT] = ACTIONS(2617), + [anon_sym_LT_GT] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(2617), + [anon_sym_STAR_STAR] = ACTIONS(2617), + [anon_sym_CARET_CARET] = ACTIONS(2617), + [anon_sym_DASH_GT] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(2617), + [anon_sym_do] = ACTIONS(2617), + [anon_sym_fn] = ACTIONS(2617), + [anon_sym_LPAREN2] = ACTIONS(2615), + [anon_sym_LBRACK2] = ACTIONS(2615), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2615), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2615), + [sym__not_in] = ACTIONS(2615), + [sym__quoted_atom_start] = ACTIONS(2615), + }, + [1014] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2641), + [aux_sym_identifier_token1] = ACTIONS(2641), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2641), + [sym_unused_identifier] = ACTIONS(2641), + [anon_sym___MODULE__] = ACTIONS(2641), + [anon_sym___DIR__] = ACTIONS(2641), + [anon_sym___ENV__] = ACTIONS(2641), + [anon_sym___CALLER__] = ACTIONS(2641), + [anon_sym___STACKTRACE__] = ACTIONS(2641), + [sym_alias] = ACTIONS(2641), + [sym_integer] = ACTIONS(2641), + [sym_float] = ACTIONS(2641), + [sym_char] = ACTIONS(2641), + [anon_sym_true] = ACTIONS(2641), + [anon_sym_false] = ACTIONS(2641), + [anon_sym_nil] = ACTIONS(2641), + [sym_atom] = ACTIONS(2641), + [anon_sym_DQUOTE] = ACTIONS(2641), + [anon_sym_SQUOTE] = ACTIONS(2641), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2641), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2641), + [anon_sym_LT] = ACTIONS(2641), + [anon_sym_GT] = ACTIONS(2641), + [anon_sym_PIPE] = ACTIONS(2641), + [anon_sym_SLASH] = ACTIONS(2641), + [anon_sym_TILDE] = ACTIONS(2641), + [anon_sym_COMMA] = ACTIONS(2641), + [sym_keyword] = ACTIONS(2641), + [anon_sym_LT_LT] = ACTIONS(2641), + [anon_sym_GT_GT] = ACTIONS(2641), + [anon_sym_PERCENT] = ACTIONS(2641), + [anon_sym_AMP] = ACTIONS(2641), + [anon_sym_PLUS] = ACTIONS(2641), + [anon_sym_DASH] = ACTIONS(2641), + [anon_sym_BANG] = ACTIONS(2641), + [anon_sym_CARET] = ACTIONS(2641), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2641), + [anon_sym_not] = ACTIONS(2641), + [anon_sym_AT] = ACTIONS(2641), + [anon_sym_LT_DASH] = ACTIONS(2641), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2641), + [anon_sym_when] = ACTIONS(2641), + [anon_sym_COLON_COLON] = ACTIONS(2641), + [anon_sym_EQ_GT] = ACTIONS(2641), + [anon_sym_EQ] = ACTIONS(2641), + [anon_sym_PIPE_PIPE] = ACTIONS(2641), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2641), + [anon_sym_or] = ACTIONS(2641), + [anon_sym_AMP_AMP] = ACTIONS(2641), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2641), + [anon_sym_and] = ACTIONS(2641), + [anon_sym_EQ_EQ] = ACTIONS(2641), + [anon_sym_BANG_EQ] = ACTIONS(2641), + [anon_sym_EQ_TILDE] = ACTIONS(2641), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2641), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2641), + [anon_sym_LT_EQ] = ACTIONS(2641), + [anon_sym_GT_EQ] = ACTIONS(2641), + [anon_sym_PIPE_GT] = ACTIONS(2641), + [anon_sym_LT_LT_LT] = ACTIONS(2641), + [anon_sym_GT_GT_GT] = ACTIONS(2641), + [anon_sym_LT_LT_TILDE] = ACTIONS(2641), + [anon_sym_TILDE_GT_GT] = ACTIONS(2641), + [anon_sym_LT_TILDE] = ACTIONS(2641), + [anon_sym_TILDE_GT] = ACTIONS(2641), + [anon_sym_LT_TILDE_GT] = ACTIONS(2641), + [anon_sym_LT_PIPE_GT] = ACTIONS(2641), + [anon_sym_in] = ACTIONS(2641), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2641), + [anon_sym_SLASH_SLASH] = ACTIONS(2641), + [anon_sym_PLUS_PLUS] = ACTIONS(2641), + [anon_sym_DASH_DASH] = ACTIONS(2641), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2641), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2641), + [anon_sym_DOT_DOT] = ACTIONS(2641), + [anon_sym_LT_GT] = ACTIONS(2641), + [anon_sym_STAR] = ACTIONS(2641), + [anon_sym_STAR_STAR] = ACTIONS(2641), + [anon_sym_CARET_CARET] = ACTIONS(2641), + [anon_sym_DASH_GT] = ACTIONS(2641), + [anon_sym_DOT] = ACTIONS(2641), + [anon_sym_do] = ACTIONS(2641), + [anon_sym_fn] = ACTIONS(2641), + [anon_sym_LPAREN2] = ACTIONS(2639), + [anon_sym_LBRACK2] = ACTIONS(2639), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2639), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2639), + [sym__not_in] = ACTIONS(2639), + [sym__quoted_atom_start] = ACTIONS(2639), + }, + [1015] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2637), + [aux_sym_identifier_token1] = ACTIONS(2637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2637), + [sym_unused_identifier] = ACTIONS(2637), + [anon_sym___MODULE__] = ACTIONS(2637), + [anon_sym___DIR__] = ACTIONS(2637), + [anon_sym___ENV__] = ACTIONS(2637), + [anon_sym___CALLER__] = ACTIONS(2637), + [anon_sym___STACKTRACE__] = ACTIONS(2637), + [sym_alias] = ACTIONS(2637), + [sym_integer] = ACTIONS(2637), + [sym_float] = ACTIONS(2637), + [sym_char] = ACTIONS(2637), + [anon_sym_true] = ACTIONS(2637), + [anon_sym_false] = ACTIONS(2637), + [anon_sym_nil] = ACTIONS(2637), + [sym_atom] = ACTIONS(2637), + [anon_sym_DQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2637), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2637), + [anon_sym_LBRACE] = ACTIONS(2637), + [anon_sym_LBRACK] = ACTIONS(2637), + [anon_sym_LT] = ACTIONS(2637), + [anon_sym_GT] = ACTIONS(2637), + [anon_sym_PIPE] = ACTIONS(2637), + [anon_sym_SLASH] = ACTIONS(2637), + [anon_sym_TILDE] = ACTIONS(2637), + [anon_sym_COMMA] = ACTIONS(2637), + [sym_keyword] = ACTIONS(2637), + [anon_sym_LT_LT] = ACTIONS(2637), + [anon_sym_GT_GT] = ACTIONS(2637), + [anon_sym_PERCENT] = ACTIONS(2637), + [anon_sym_AMP] = ACTIONS(2637), + [anon_sym_PLUS] = ACTIONS(2637), + [anon_sym_DASH] = ACTIONS(2637), + [anon_sym_BANG] = ACTIONS(2637), + [anon_sym_CARET] = ACTIONS(2637), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2637), + [anon_sym_not] = ACTIONS(2637), + [anon_sym_AT] = ACTIONS(2637), + [anon_sym_LT_DASH] = ACTIONS(2637), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2637), + [anon_sym_when] = ACTIONS(2637), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_EQ_GT] = ACTIONS(2637), + [anon_sym_EQ] = ACTIONS(2637), + [anon_sym_PIPE_PIPE] = ACTIONS(2637), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2637), + [anon_sym_or] = ACTIONS(2637), + [anon_sym_AMP_AMP] = ACTIONS(2637), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2637), + [anon_sym_and] = ACTIONS(2637), + [anon_sym_EQ_EQ] = ACTIONS(2637), + [anon_sym_BANG_EQ] = ACTIONS(2637), + [anon_sym_EQ_TILDE] = ACTIONS(2637), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2637), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2637), + [anon_sym_LT_EQ] = ACTIONS(2637), + [anon_sym_GT_EQ] = ACTIONS(2637), + [anon_sym_PIPE_GT] = ACTIONS(2637), + [anon_sym_LT_LT_LT] = ACTIONS(2637), + [anon_sym_GT_GT_GT] = ACTIONS(2637), + [anon_sym_LT_LT_TILDE] = ACTIONS(2637), + [anon_sym_TILDE_GT_GT] = ACTIONS(2637), + [anon_sym_LT_TILDE] = ACTIONS(2637), + [anon_sym_TILDE_GT] = ACTIONS(2637), + [anon_sym_LT_TILDE_GT] = ACTIONS(2637), + [anon_sym_LT_PIPE_GT] = ACTIONS(2637), + [anon_sym_in] = ACTIONS(2637), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2637), + [anon_sym_SLASH_SLASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_DASH_DASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2637), + [anon_sym_DOT_DOT] = ACTIONS(2637), + [anon_sym_LT_GT] = ACTIONS(2637), + [anon_sym_STAR] = ACTIONS(2637), + [anon_sym_STAR_STAR] = ACTIONS(2637), + [anon_sym_CARET_CARET] = ACTIONS(2637), + [anon_sym_DASH_GT] = ACTIONS(2637), + [anon_sym_DOT] = ACTIONS(2637), + [anon_sym_do] = ACTIONS(2637), + [anon_sym_fn] = ACTIONS(2637), + [anon_sym_LPAREN2] = ACTIONS(2635), + [anon_sym_LBRACK2] = ACTIONS(2635), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2635), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2635), + [sym__not_in] = ACTIONS(2635), + [sym__quoted_atom_start] = ACTIONS(2635), }, [1016] = { [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2653), - [aux_sym_identifier_token1] = ACTIONS(2653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2653), - [sym_unused_identifier] = ACTIONS(2653), - [anon_sym___MODULE__] = ACTIONS(2653), - [anon_sym___DIR__] = ACTIONS(2653), - [anon_sym___ENV__] = ACTIONS(2653), - [anon_sym___CALLER__] = ACTIONS(2653), - [anon_sym___STACKTRACE__] = ACTIONS(2653), - [sym_alias] = ACTIONS(2653), - [sym_integer] = ACTIONS(2653), - [sym_float] = ACTIONS(2653), - [sym_char] = ACTIONS(2653), - [anon_sym_true] = ACTIONS(2653), - [anon_sym_false] = ACTIONS(2653), - [anon_sym_nil] = ACTIONS(2653), - [sym_atom] = ACTIONS(2653), - [anon_sym_DQUOTE] = ACTIONS(2653), - [anon_sym_SQUOTE] = ACTIONS(2653), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2653), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2653), - [anon_sym_LBRACK] = ACTIONS(2653), - [anon_sym_LT] = ACTIONS(2653), - [anon_sym_GT] = ACTIONS(2653), - [anon_sym_PIPE] = ACTIONS(2653), - [anon_sym_SLASH] = ACTIONS(2653), - [anon_sym_TILDE] = ACTIONS(2653), - [anon_sym_COMMA] = ACTIONS(2653), - [sym_keyword] = ACTIONS(2653), - [anon_sym_LT_LT] = ACTIONS(2653), - [anon_sym_GT_GT] = ACTIONS(2653), - [anon_sym_PERCENT] = ACTIONS(2653), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_PLUS] = ACTIONS(2653), - [anon_sym_DASH] = ACTIONS(2653), - [anon_sym_BANG] = ACTIONS(2653), - [anon_sym_CARET] = ACTIONS(2653), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2653), - [anon_sym_not] = ACTIONS(2653), - [anon_sym_AT] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2653), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2653), - [anon_sym_when] = ACTIONS(2653), - [anon_sym_COLON_COLON] = ACTIONS(2653), - [anon_sym_EQ_GT] = ACTIONS(2653), - [anon_sym_EQ] = ACTIONS(2653), - [anon_sym_PIPE_PIPE] = ACTIONS(2653), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2653), - [anon_sym_or] = ACTIONS(2653), - [anon_sym_AMP_AMP] = ACTIONS(2653), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2653), - [anon_sym_and] = ACTIONS(2653), - [anon_sym_EQ_EQ] = ACTIONS(2653), - [anon_sym_BANG_EQ] = ACTIONS(2653), - [anon_sym_EQ_TILDE] = ACTIONS(2653), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2653), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2653), - [anon_sym_LT_EQ] = ACTIONS(2653), - [anon_sym_GT_EQ] = ACTIONS(2653), - [anon_sym_PIPE_GT] = ACTIONS(2653), - [anon_sym_LT_LT_LT] = ACTIONS(2653), - [anon_sym_GT_GT_GT] = ACTIONS(2653), - [anon_sym_LT_LT_TILDE] = ACTIONS(2653), - [anon_sym_TILDE_GT_GT] = ACTIONS(2653), - [anon_sym_LT_TILDE] = ACTIONS(2653), - [anon_sym_TILDE_GT] = ACTIONS(2653), - [anon_sym_LT_TILDE_GT] = ACTIONS(2653), - [anon_sym_LT_PIPE_GT] = ACTIONS(2653), - [anon_sym_in] = ACTIONS(2653), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2653), - [anon_sym_SLASH_SLASH] = ACTIONS(2653), - [anon_sym_PLUS_PLUS] = ACTIONS(2653), - [anon_sym_DASH_DASH] = ACTIONS(2653), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2653), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2653), - [anon_sym_DOT_DOT] = ACTIONS(2653), - [anon_sym_LT_GT] = ACTIONS(2653), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_STAR_STAR] = ACTIONS(2653), - [anon_sym_CARET_CARET] = ACTIONS(2653), - [anon_sym_DASH_GT] = ACTIONS(2653), - [anon_sym_DOT] = ACTIONS(2653), - [anon_sym_do] = ACTIONS(2653), - [anon_sym_fn] = ACTIONS(2653), - [anon_sym_LPAREN2] = ACTIONS(2651), - [anon_sym_LBRACK2] = ACTIONS(2651), + [anon_sym_LPAREN] = ACTIONS(2621), + [aux_sym_identifier_token1] = ACTIONS(2621), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2621), + [sym_unused_identifier] = ACTIONS(2621), + [anon_sym___MODULE__] = ACTIONS(2621), + [anon_sym___DIR__] = ACTIONS(2621), + [anon_sym___ENV__] = ACTIONS(2621), + [anon_sym___CALLER__] = ACTIONS(2621), + [anon_sym___STACKTRACE__] = ACTIONS(2621), + [sym_alias] = ACTIONS(2621), + [sym_integer] = ACTIONS(2621), + [sym_float] = ACTIONS(2621), + [sym_char] = ACTIONS(2621), + [anon_sym_true] = ACTIONS(2621), + [anon_sym_false] = ACTIONS(2621), + [anon_sym_nil] = ACTIONS(2621), + [sym_atom] = ACTIONS(2621), + [anon_sym_DQUOTE] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2621), + [anon_sym_LBRACK] = ACTIONS(2621), + [anon_sym_LT] = ACTIONS(2621), + [anon_sym_GT] = ACTIONS(2621), + [anon_sym_PIPE] = ACTIONS(2621), + [anon_sym_SLASH] = ACTIONS(2621), + [anon_sym_TILDE] = ACTIONS(2621), + [anon_sym_COMMA] = ACTIONS(2621), + [sym_keyword] = ACTIONS(2621), + [anon_sym_LT_LT] = ACTIONS(2621), + [anon_sym_GT_GT] = ACTIONS(2621), + [anon_sym_PERCENT] = ACTIONS(2621), + [anon_sym_AMP] = ACTIONS(2621), + [anon_sym_PLUS] = ACTIONS(2621), + [anon_sym_DASH] = ACTIONS(2621), + [anon_sym_BANG] = ACTIONS(2621), + [anon_sym_CARET] = ACTIONS(2621), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2621), + [anon_sym_not] = ACTIONS(2621), + [anon_sym_AT] = ACTIONS(2621), + [anon_sym_LT_DASH] = ACTIONS(2621), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2621), + [anon_sym_when] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(2621), + [anon_sym_EQ_GT] = ACTIONS(2621), + [anon_sym_EQ] = ACTIONS(2621), + [anon_sym_PIPE_PIPE] = ACTIONS(2621), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2621), + [anon_sym_or] = ACTIONS(2621), + [anon_sym_AMP_AMP] = ACTIONS(2621), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2621), + [anon_sym_and] = ACTIONS(2621), + [anon_sym_EQ_EQ] = ACTIONS(2621), + [anon_sym_BANG_EQ] = ACTIONS(2621), + [anon_sym_EQ_TILDE] = ACTIONS(2621), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2621), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2621), + [anon_sym_LT_EQ] = ACTIONS(2621), + [anon_sym_GT_EQ] = ACTIONS(2621), + [anon_sym_PIPE_GT] = ACTIONS(2621), + [anon_sym_LT_LT_LT] = ACTIONS(2621), + [anon_sym_GT_GT_GT] = ACTIONS(2621), + [anon_sym_LT_LT_TILDE] = ACTIONS(2621), + [anon_sym_TILDE_GT_GT] = ACTIONS(2621), + [anon_sym_LT_TILDE] = ACTIONS(2621), + [anon_sym_TILDE_GT] = ACTIONS(2621), + [anon_sym_LT_TILDE_GT] = ACTIONS(2621), + [anon_sym_LT_PIPE_GT] = ACTIONS(2621), + [anon_sym_in] = ACTIONS(2621), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2621), + [anon_sym_SLASH_SLASH] = ACTIONS(2621), + [anon_sym_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_DASH_DASH] = ACTIONS(2621), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2621), + [anon_sym_DOT_DOT] = ACTIONS(2621), + [anon_sym_LT_GT] = ACTIONS(2621), + [anon_sym_STAR] = ACTIONS(2621), + [anon_sym_STAR_STAR] = ACTIONS(2621), + [anon_sym_CARET_CARET] = ACTIONS(2621), + [anon_sym_DASH_GT] = ACTIONS(2621), + [anon_sym_DOT] = ACTIONS(2621), + [anon_sym_do] = ACTIONS(2621), + [anon_sym_fn] = ACTIONS(2621), + [anon_sym_LPAREN2] = ACTIONS(2619), + [anon_sym_LBRACK2] = ACTIONS(2619), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2651), - [sym__not_in] = ACTIONS(2651), - [sym__quoted_atom_start] = ACTIONS(2651), + [sym__before_unary_op] = ACTIONS(2619), + [sym__not_in] = ACTIONS(2619), + [sym__quoted_atom_start] = ACTIONS(2619), }, [1017] = { [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2633), - [aux_sym_identifier_token1] = ACTIONS(2633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2633), - [sym_unused_identifier] = ACTIONS(2633), - [anon_sym___MODULE__] = ACTIONS(2633), - [anon_sym___DIR__] = ACTIONS(2633), - [anon_sym___ENV__] = ACTIONS(2633), - [anon_sym___CALLER__] = ACTIONS(2633), - [anon_sym___STACKTRACE__] = ACTIONS(2633), - [sym_alias] = ACTIONS(2633), - [sym_integer] = ACTIONS(2633), - [sym_float] = ACTIONS(2633), - [sym_char] = ACTIONS(2633), - [anon_sym_true] = ACTIONS(2633), - [anon_sym_false] = ACTIONS(2633), - [anon_sym_nil] = ACTIONS(2633), - [sym_atom] = ACTIONS(2633), - [anon_sym_DQUOTE] = ACTIONS(2633), - [anon_sym_SQUOTE] = ACTIONS(2633), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2633), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2633), - [anon_sym_LBRACE] = ACTIONS(2633), - [anon_sym_LBRACK] = ACTIONS(2633), - [anon_sym_LT] = ACTIONS(2633), - [anon_sym_GT] = ACTIONS(2633), - [anon_sym_PIPE] = ACTIONS(2633), - [anon_sym_SLASH] = ACTIONS(2633), - [anon_sym_TILDE] = ACTIONS(2633), - [anon_sym_COMMA] = ACTIONS(2633), - [sym_keyword] = ACTIONS(2633), - [anon_sym_LT_LT] = ACTIONS(2633), - [anon_sym_GT_GT] = ACTIONS(2633), - [anon_sym_PERCENT] = ACTIONS(2633), - [anon_sym_AMP] = ACTIONS(2633), - [anon_sym_PLUS] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2633), - [anon_sym_BANG] = ACTIONS(2633), - [anon_sym_CARET] = ACTIONS(2633), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2633), - [anon_sym_not] = ACTIONS(2633), - [anon_sym_AT] = ACTIONS(2633), - [anon_sym_LT_DASH] = ACTIONS(2633), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2633), - [anon_sym_when] = ACTIONS(2633), - [anon_sym_COLON_COLON] = ACTIONS(2633), - [anon_sym_EQ_GT] = ACTIONS(2633), - [anon_sym_EQ] = ACTIONS(2633), - [anon_sym_PIPE_PIPE] = ACTIONS(2633), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2633), - [anon_sym_or] = ACTIONS(2633), - [anon_sym_AMP_AMP] = ACTIONS(2633), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2633), - [anon_sym_and] = ACTIONS(2633), - [anon_sym_EQ_EQ] = ACTIONS(2633), - [anon_sym_BANG_EQ] = ACTIONS(2633), - [anon_sym_EQ_TILDE] = ACTIONS(2633), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2633), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2633), - [anon_sym_LT_EQ] = ACTIONS(2633), - [anon_sym_GT_EQ] = ACTIONS(2633), - [anon_sym_PIPE_GT] = ACTIONS(2633), - [anon_sym_LT_LT_LT] = ACTIONS(2633), - [anon_sym_GT_GT_GT] = ACTIONS(2633), - [anon_sym_LT_LT_TILDE] = ACTIONS(2633), - [anon_sym_TILDE_GT_GT] = ACTIONS(2633), - [anon_sym_LT_TILDE] = ACTIONS(2633), - [anon_sym_TILDE_GT] = ACTIONS(2633), - [anon_sym_LT_TILDE_GT] = ACTIONS(2633), - [anon_sym_LT_PIPE_GT] = ACTIONS(2633), - [anon_sym_in] = ACTIONS(2633), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2633), - [anon_sym_SLASH_SLASH] = ACTIONS(2633), - [anon_sym_PLUS_PLUS] = ACTIONS(2633), - [anon_sym_DASH_DASH] = ACTIONS(2633), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2633), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2633), - [anon_sym_DOT_DOT] = ACTIONS(2633), - [anon_sym_LT_GT] = ACTIONS(2633), - [anon_sym_STAR] = ACTIONS(2633), - [anon_sym_STAR_STAR] = ACTIONS(2633), - [anon_sym_CARET_CARET] = ACTIONS(2633), - [anon_sym_DASH_GT] = ACTIONS(2633), - [anon_sym_DOT] = ACTIONS(2633), - [anon_sym_do] = ACTIONS(2633), - [anon_sym_fn] = ACTIONS(2633), - [anon_sym_LPAREN2] = ACTIONS(2631), - [anon_sym_LBRACK2] = ACTIONS(2631), + [anon_sym_LPAREN] = ACTIONS(2617), + [aux_sym_identifier_token1] = ACTIONS(2617), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2617), + [sym_unused_identifier] = ACTIONS(2617), + [anon_sym___MODULE__] = ACTIONS(2617), + [anon_sym___DIR__] = ACTIONS(2617), + [anon_sym___ENV__] = ACTIONS(2617), + [anon_sym___CALLER__] = ACTIONS(2617), + [anon_sym___STACKTRACE__] = ACTIONS(2617), + [sym_alias] = ACTIONS(2617), + [sym_integer] = ACTIONS(2617), + [sym_float] = ACTIONS(2617), + [sym_char] = ACTIONS(2617), + [anon_sym_true] = ACTIONS(2617), + [anon_sym_false] = ACTIONS(2617), + [anon_sym_nil] = ACTIONS(2617), + [sym_atom] = ACTIONS(2617), + [anon_sym_DQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_LBRACK] = ACTIONS(2617), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_GT] = ACTIONS(2617), + [anon_sym_PIPE] = ACTIONS(2617), + [anon_sym_SLASH] = ACTIONS(2617), + [anon_sym_TILDE] = ACTIONS(2617), + [anon_sym_COMMA] = ACTIONS(2617), + [sym_keyword] = ACTIONS(2617), + [anon_sym_LT_LT] = ACTIONS(2617), + [anon_sym_GT_GT] = ACTIONS(2617), + [anon_sym_PERCENT] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2617), + [anon_sym_PLUS] = ACTIONS(2617), + [anon_sym_DASH] = ACTIONS(2617), + [anon_sym_BANG] = ACTIONS(2617), + [anon_sym_CARET] = ACTIONS(2617), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2617), + [anon_sym_not] = ACTIONS(2617), + [anon_sym_AT] = ACTIONS(2617), + [anon_sym_LT_DASH] = ACTIONS(2617), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2617), + [anon_sym_when] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_EQ_GT] = ACTIONS(2617), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2617), + [anon_sym_AMP_AMP] = ACTIONS(2617), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2617), + [anon_sym_and] = ACTIONS(2617), + [anon_sym_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_EQ_TILDE] = ACTIONS(2617), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2617), + [anon_sym_LT_EQ] = ACTIONS(2617), + [anon_sym_GT_EQ] = ACTIONS(2617), + [anon_sym_PIPE_GT] = ACTIONS(2617), + [anon_sym_LT_LT_LT] = ACTIONS(2617), + [anon_sym_GT_GT_GT] = ACTIONS(2617), + [anon_sym_LT_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_PIPE_GT] = ACTIONS(2617), + [anon_sym_in] = ACTIONS(2617), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2617), + [anon_sym_SLASH_SLASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2617), + [anon_sym_DOT_DOT] = ACTIONS(2617), + [anon_sym_LT_GT] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(2617), + [anon_sym_STAR_STAR] = ACTIONS(2617), + [anon_sym_CARET_CARET] = ACTIONS(2617), + [anon_sym_DASH_GT] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(2617), + [anon_sym_do] = ACTIONS(2617), + [anon_sym_fn] = ACTIONS(2617), + [anon_sym_LPAREN2] = ACTIONS(2615), + [anon_sym_LBRACK2] = ACTIONS(2615), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2631), - [sym__not_in] = ACTIONS(2631), - [sym__quoted_atom_start] = ACTIONS(2631), + [sym__before_unary_op] = ACTIONS(2615), + [sym__not_in] = ACTIONS(2615), + [sym__quoted_atom_start] = ACTIONS(2615), }, [1018] = { - [aux_sym__terminator_repeat1] = STATE(1018), + [aux_sym__terminator_repeat1] = STATE(1019), [aux_sym__terminator_token1] = ACTIONS(2655), - [anon_sym_SEMI] = ACTIONS(2658), - [anon_sym_LPAREN] = ACTIONS(2658), - [aux_sym_identifier_token1] = ACTIONS(2658), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2658), - [sym_unused_identifier] = ACTIONS(2658), - [anon_sym___MODULE__] = ACTIONS(2658), - [anon_sym___DIR__] = ACTIONS(2658), - [anon_sym___ENV__] = ACTIONS(2658), - [anon_sym___CALLER__] = ACTIONS(2658), - [anon_sym___STACKTRACE__] = ACTIONS(2658), - [sym_alias] = ACTIONS(2658), - [sym_integer] = ACTIONS(2658), - [sym_float] = ACTIONS(2658), - [sym_char] = ACTIONS(2658), - [anon_sym_true] = ACTIONS(2658), - [anon_sym_false] = ACTIONS(2658), - [anon_sym_nil] = ACTIONS(2658), - [sym_atom] = ACTIONS(2658), - [anon_sym_DQUOTE] = ACTIONS(2658), - [anon_sym_SQUOTE] = ACTIONS(2658), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2658), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2658), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_LBRACK] = ACTIONS(2658), - [anon_sym_LT] = ACTIONS(2658), - [anon_sym_GT] = ACTIONS(2658), - [anon_sym_PIPE] = ACTIONS(2658), - [anon_sym_SLASH] = ACTIONS(2658), - [anon_sym_TILDE] = ACTIONS(2658), - [sym_keyword] = ACTIONS(2658), - [anon_sym_LT_LT] = ACTIONS(2658), - [anon_sym_PERCENT] = ACTIONS(2658), - [anon_sym_AMP] = ACTIONS(2658), - [anon_sym_PLUS] = ACTIONS(2658), - [anon_sym_DASH] = ACTIONS(2658), - [anon_sym_BANG] = ACTIONS(2658), - [anon_sym_CARET] = ACTIONS(2658), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2658), - [anon_sym_not] = ACTIONS(2658), - [anon_sym_AT] = ACTIONS(2658), - [anon_sym_LT_DASH] = ACTIONS(2658), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2658), - [anon_sym_when] = ACTIONS(2658), - [anon_sym_COLON_COLON] = ACTIONS(2658), - [anon_sym_EQ] = ACTIONS(2658), - [anon_sym_PIPE_PIPE] = ACTIONS(2658), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2658), - [anon_sym_or] = ACTIONS(2658), - [anon_sym_AMP_AMP] = ACTIONS(2658), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2658), - [anon_sym_and] = ACTIONS(2658), - [anon_sym_EQ_EQ] = ACTIONS(2658), - [anon_sym_BANG_EQ] = ACTIONS(2658), - [anon_sym_EQ_TILDE] = ACTIONS(2658), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2658), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2658), - [anon_sym_LT_EQ] = ACTIONS(2658), - [anon_sym_GT_EQ] = ACTIONS(2658), - [anon_sym_PIPE_GT] = ACTIONS(2658), - [anon_sym_LT_LT_LT] = ACTIONS(2658), - [anon_sym_GT_GT_GT] = ACTIONS(2658), - [anon_sym_LT_LT_TILDE] = ACTIONS(2658), - [anon_sym_TILDE_GT_GT] = ACTIONS(2658), - [anon_sym_LT_TILDE] = ACTIONS(2658), - [anon_sym_TILDE_GT] = ACTIONS(2658), - [anon_sym_LT_TILDE_GT] = ACTIONS(2658), - [anon_sym_LT_PIPE_GT] = ACTIONS(2658), - [anon_sym_in] = ACTIONS(2658), - [anon_sym_PLUS_PLUS] = ACTIONS(2658), - [anon_sym_DASH_DASH] = ACTIONS(2658), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2658), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2658), - [anon_sym_DOT_DOT] = ACTIONS(2658), - [anon_sym_LT_GT] = ACTIONS(2658), - [anon_sym_STAR] = ACTIONS(2658), - [anon_sym_STAR_STAR] = ACTIONS(2658), - [anon_sym_CARET_CARET] = ACTIONS(2658), - [anon_sym_DASH_GT] = ACTIONS(2658), - [anon_sym_DOT] = ACTIONS(2658), - [anon_sym_after] = ACTIONS(2658), - [anon_sym_catch] = ACTIONS(2658), - [anon_sym_else] = ACTIONS(2658), - [anon_sym_end] = ACTIONS(2658), - [anon_sym_fn] = ACTIONS(2658), - [anon_sym_rescue] = ACTIONS(2658), + [anon_sym_SEMI] = ACTIONS(2657), + [anon_sym_LPAREN] = ACTIONS(2659), + [aux_sym_identifier_token1] = ACTIONS(2659), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2659), + [sym_unused_identifier] = ACTIONS(2659), + [anon_sym___MODULE__] = ACTIONS(2659), + [anon_sym___DIR__] = ACTIONS(2659), + [anon_sym___ENV__] = ACTIONS(2659), + [anon_sym___CALLER__] = ACTIONS(2659), + [anon_sym___STACKTRACE__] = ACTIONS(2659), + [sym_alias] = ACTIONS(2659), + [sym_integer] = ACTIONS(2659), + [sym_float] = ACTIONS(2659), + [sym_char] = ACTIONS(2659), + [anon_sym_true] = ACTIONS(2659), + [anon_sym_false] = ACTIONS(2659), + [anon_sym_nil] = ACTIONS(2659), + [sym_atom] = ACTIONS(2659), + [anon_sym_DQUOTE] = ACTIONS(2659), + [anon_sym_SQUOTE] = ACTIONS(2659), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2659), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2659), + [anon_sym_LBRACE] = ACTIONS(2659), + [anon_sym_LBRACK] = ACTIONS(2659), + [anon_sym_LT] = ACTIONS(2659), + [anon_sym_GT] = ACTIONS(2659), + [anon_sym_PIPE] = ACTIONS(2659), + [anon_sym_SLASH] = ACTIONS(2659), + [anon_sym_TILDE] = ACTIONS(2659), + [sym_keyword] = ACTIONS(2659), + [anon_sym_LT_LT] = ACTIONS(2659), + [anon_sym_PERCENT] = ACTIONS(2659), + [anon_sym_AMP] = ACTIONS(2659), + [anon_sym_PLUS] = ACTIONS(2659), + [anon_sym_DASH] = ACTIONS(2659), + [anon_sym_BANG] = ACTIONS(2659), + [anon_sym_CARET] = ACTIONS(2659), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2659), + [anon_sym_not] = ACTIONS(2659), + [anon_sym_AT] = ACTIONS(2659), + [anon_sym_LT_DASH] = ACTIONS(2659), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2659), + [anon_sym_when] = ACTIONS(2659), + [anon_sym_COLON_COLON] = ACTIONS(2659), + [anon_sym_EQ] = ACTIONS(2659), + [anon_sym_PIPE_PIPE] = ACTIONS(2659), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2659), + [anon_sym_or] = ACTIONS(2659), + [anon_sym_AMP_AMP] = ACTIONS(2659), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2659), + [anon_sym_and] = ACTIONS(2659), + [anon_sym_EQ_EQ] = ACTIONS(2659), + [anon_sym_BANG_EQ] = ACTIONS(2659), + [anon_sym_EQ_TILDE] = ACTIONS(2659), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2659), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2659), + [anon_sym_LT_EQ] = ACTIONS(2659), + [anon_sym_GT_EQ] = ACTIONS(2659), + [anon_sym_PIPE_GT] = ACTIONS(2659), + [anon_sym_LT_LT_LT] = ACTIONS(2659), + [anon_sym_GT_GT_GT] = ACTIONS(2659), + [anon_sym_LT_LT_TILDE] = ACTIONS(2659), + [anon_sym_TILDE_GT_GT] = ACTIONS(2659), + [anon_sym_LT_TILDE] = ACTIONS(2659), + [anon_sym_TILDE_GT] = ACTIONS(2659), + [anon_sym_LT_TILDE_GT] = ACTIONS(2659), + [anon_sym_LT_PIPE_GT] = ACTIONS(2659), + [anon_sym_in] = ACTIONS(2659), + [anon_sym_PLUS_PLUS] = ACTIONS(2659), + [anon_sym_DASH_DASH] = ACTIONS(2659), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2659), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2659), + [anon_sym_DOT_DOT] = ACTIONS(2659), + [anon_sym_LT_GT] = ACTIONS(2659), + [anon_sym_STAR] = ACTIONS(2659), + [anon_sym_STAR_STAR] = ACTIONS(2659), + [anon_sym_CARET_CARET] = ACTIONS(2659), + [anon_sym_DASH_GT] = ACTIONS(2659), + [anon_sym_DOT] = ACTIONS(2659), + [anon_sym_after] = ACTIONS(2659), + [anon_sym_catch] = ACTIONS(2659), + [anon_sym_else] = ACTIONS(2659), + [anon_sym_end] = ACTIONS(2659), + [anon_sym_fn] = ACTIONS(2659), + [anon_sym_rescue] = ACTIONS(2659), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2660), - [sym__not_in] = ACTIONS(2660), - [sym__quoted_atom_start] = ACTIONS(2660), + [sym__before_unary_op] = ACTIONS(2661), + [sym__not_in] = ACTIONS(2661), + [sym__quoted_atom_start] = ACTIONS(2661), }, [1019] = { - [aux_sym__terminator_repeat1] = STATE(1018), - [aux_sym__terminator_token1] = ACTIONS(2662), - [anon_sym_SEMI] = ACTIONS(2664), + [aux_sym__terminator_repeat1] = STATE(1019), + [aux_sym__terminator_token1] = ACTIONS(2663), + [anon_sym_SEMI] = ACTIONS(2666), [anon_sym_LPAREN] = ACTIONS(2666), [aux_sym_identifier_token1] = ACTIONS(2666), [anon_sym_DOT_DOT_DOT] = ACTIONS(2666), @@ -151504,9 +152142,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(2668), }, [1020] = { - [aux_sym__terminator_repeat1] = STATE(1021), + [aux_sym__terminator_repeat1] = STATE(1020), [aux_sym__terminator_token1] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2672), + [anon_sym_SEMI] = ACTIONS(2666), [anon_sym_LPAREN] = ACTIONS(2666), [aux_sym_identifier_token1] = ACTIONS(2666), [anon_sym_DOT_DOT_DOT] = ACTIONS(2666), @@ -151598,475 +152236,566 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(2668), }, [1021] = { - [aux_sym__terminator_repeat1] = STATE(1021), - [aux_sym__terminator_token1] = ACTIONS(2674), - [anon_sym_SEMI] = ACTIONS(2658), - [anon_sym_LPAREN] = ACTIONS(2658), - [aux_sym_identifier_token1] = ACTIONS(2658), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2658), - [sym_unused_identifier] = ACTIONS(2658), - [anon_sym___MODULE__] = ACTIONS(2658), - [anon_sym___DIR__] = ACTIONS(2658), - [anon_sym___ENV__] = ACTIONS(2658), - [anon_sym___CALLER__] = ACTIONS(2658), - [anon_sym___STACKTRACE__] = ACTIONS(2658), - [sym_alias] = ACTIONS(2658), - [sym_integer] = ACTIONS(2658), - [sym_float] = ACTIONS(2658), - [sym_char] = ACTIONS(2658), - [anon_sym_true] = ACTIONS(2658), - [anon_sym_false] = ACTIONS(2658), - [anon_sym_nil] = ACTIONS(2658), - [sym_atom] = ACTIONS(2658), - [anon_sym_DQUOTE] = ACTIONS(2658), - [anon_sym_SQUOTE] = ACTIONS(2658), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2658), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2658), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_LBRACK] = ACTIONS(2658), - [anon_sym_LT] = ACTIONS(2658), - [anon_sym_GT] = ACTIONS(2658), - [anon_sym_PIPE] = ACTIONS(2658), - [anon_sym_SLASH] = ACTIONS(2658), - [anon_sym_TILDE] = ACTIONS(2658), - [anon_sym_LT_LT] = ACTIONS(2658), - [anon_sym_PERCENT] = ACTIONS(2658), - [anon_sym_AMP] = ACTIONS(2658), - [anon_sym_PLUS] = ACTIONS(2658), - [anon_sym_DASH] = ACTIONS(2658), - [anon_sym_BANG] = ACTIONS(2658), - [anon_sym_CARET] = ACTIONS(2658), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2658), - [anon_sym_not] = ACTIONS(2658), - [anon_sym_AT] = ACTIONS(2658), - [anon_sym_LT_DASH] = ACTIONS(2658), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2658), - [anon_sym_when] = ACTIONS(2658), - [anon_sym_COLON_COLON] = ACTIONS(2658), - [anon_sym_EQ] = ACTIONS(2658), - [anon_sym_PIPE_PIPE] = ACTIONS(2658), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2658), - [anon_sym_or] = ACTIONS(2658), - [anon_sym_AMP_AMP] = ACTIONS(2658), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2658), - [anon_sym_and] = ACTIONS(2658), - [anon_sym_EQ_EQ] = ACTIONS(2658), - [anon_sym_BANG_EQ] = ACTIONS(2658), - [anon_sym_EQ_TILDE] = ACTIONS(2658), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2658), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2658), - [anon_sym_LT_EQ] = ACTIONS(2658), - [anon_sym_GT_EQ] = ACTIONS(2658), - [anon_sym_PIPE_GT] = ACTIONS(2658), - [anon_sym_LT_LT_LT] = ACTIONS(2658), - [anon_sym_GT_GT_GT] = ACTIONS(2658), - [anon_sym_LT_LT_TILDE] = ACTIONS(2658), - [anon_sym_TILDE_GT_GT] = ACTIONS(2658), - [anon_sym_LT_TILDE] = ACTIONS(2658), - [anon_sym_TILDE_GT] = ACTIONS(2658), - [anon_sym_LT_TILDE_GT] = ACTIONS(2658), - [anon_sym_LT_PIPE_GT] = ACTIONS(2658), - [anon_sym_in] = ACTIONS(2658), - [anon_sym_PLUS_PLUS] = ACTIONS(2658), - [anon_sym_DASH_DASH] = ACTIONS(2658), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2658), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2658), - [anon_sym_DOT_DOT] = ACTIONS(2658), - [anon_sym_LT_GT] = ACTIONS(2658), - [anon_sym_STAR] = ACTIONS(2658), - [anon_sym_STAR_STAR] = ACTIONS(2658), - [anon_sym_CARET_CARET] = ACTIONS(2658), - [anon_sym_DASH_GT] = ACTIONS(2658), - [anon_sym_DOT] = ACTIONS(2658), - [anon_sym_after] = ACTIONS(2658), - [anon_sym_catch] = ACTIONS(2658), - [anon_sym_else] = ACTIONS(2658), - [anon_sym_end] = ACTIONS(2658), - [anon_sym_fn] = ACTIONS(2658), - [anon_sym_rescue] = ACTIONS(2658), + [aux_sym__terminator_repeat1] = STATE(1020), + [aux_sym__terminator_token1] = ACTIONS(2673), + [anon_sym_SEMI] = ACTIONS(2675), + [anon_sym_LPAREN] = ACTIONS(2659), + [aux_sym_identifier_token1] = ACTIONS(2659), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2659), + [sym_unused_identifier] = ACTIONS(2659), + [anon_sym___MODULE__] = ACTIONS(2659), + [anon_sym___DIR__] = ACTIONS(2659), + [anon_sym___ENV__] = ACTIONS(2659), + [anon_sym___CALLER__] = ACTIONS(2659), + [anon_sym___STACKTRACE__] = ACTIONS(2659), + [sym_alias] = ACTIONS(2659), + [sym_integer] = ACTIONS(2659), + [sym_float] = ACTIONS(2659), + [sym_char] = ACTIONS(2659), + [anon_sym_true] = ACTIONS(2659), + [anon_sym_false] = ACTIONS(2659), + [anon_sym_nil] = ACTIONS(2659), + [sym_atom] = ACTIONS(2659), + [anon_sym_DQUOTE] = ACTIONS(2659), + [anon_sym_SQUOTE] = ACTIONS(2659), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2659), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2659), + [anon_sym_LBRACE] = ACTIONS(2659), + [anon_sym_LBRACK] = ACTIONS(2659), + [anon_sym_LT] = ACTIONS(2659), + [anon_sym_GT] = ACTIONS(2659), + [anon_sym_PIPE] = ACTIONS(2659), + [anon_sym_SLASH] = ACTIONS(2659), + [anon_sym_TILDE] = ACTIONS(2659), + [anon_sym_LT_LT] = ACTIONS(2659), + [anon_sym_PERCENT] = ACTIONS(2659), + [anon_sym_AMP] = ACTIONS(2659), + [anon_sym_PLUS] = ACTIONS(2659), + [anon_sym_DASH] = ACTIONS(2659), + [anon_sym_BANG] = ACTIONS(2659), + [anon_sym_CARET] = ACTIONS(2659), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2659), + [anon_sym_not] = ACTIONS(2659), + [anon_sym_AT] = ACTIONS(2659), + [anon_sym_LT_DASH] = ACTIONS(2659), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2659), + [anon_sym_when] = ACTIONS(2659), + [anon_sym_COLON_COLON] = ACTIONS(2659), + [anon_sym_EQ] = ACTIONS(2659), + [anon_sym_PIPE_PIPE] = ACTIONS(2659), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2659), + [anon_sym_or] = ACTIONS(2659), + [anon_sym_AMP_AMP] = ACTIONS(2659), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2659), + [anon_sym_and] = ACTIONS(2659), + [anon_sym_EQ_EQ] = ACTIONS(2659), + [anon_sym_BANG_EQ] = ACTIONS(2659), + [anon_sym_EQ_TILDE] = ACTIONS(2659), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2659), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2659), + [anon_sym_LT_EQ] = ACTIONS(2659), + [anon_sym_GT_EQ] = ACTIONS(2659), + [anon_sym_PIPE_GT] = ACTIONS(2659), + [anon_sym_LT_LT_LT] = ACTIONS(2659), + [anon_sym_GT_GT_GT] = ACTIONS(2659), + [anon_sym_LT_LT_TILDE] = ACTIONS(2659), + [anon_sym_TILDE_GT_GT] = ACTIONS(2659), + [anon_sym_LT_TILDE] = ACTIONS(2659), + [anon_sym_TILDE_GT] = ACTIONS(2659), + [anon_sym_LT_TILDE_GT] = ACTIONS(2659), + [anon_sym_LT_PIPE_GT] = ACTIONS(2659), + [anon_sym_in] = ACTIONS(2659), + [anon_sym_PLUS_PLUS] = ACTIONS(2659), + [anon_sym_DASH_DASH] = ACTIONS(2659), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2659), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2659), + [anon_sym_DOT_DOT] = ACTIONS(2659), + [anon_sym_LT_GT] = ACTIONS(2659), + [anon_sym_STAR] = ACTIONS(2659), + [anon_sym_STAR_STAR] = ACTIONS(2659), + [anon_sym_CARET_CARET] = ACTIONS(2659), + [anon_sym_DASH_GT] = ACTIONS(2659), + [anon_sym_DOT] = ACTIONS(2659), + [anon_sym_after] = ACTIONS(2659), + [anon_sym_catch] = ACTIONS(2659), + [anon_sym_else] = ACTIONS(2659), + [anon_sym_end] = ACTIONS(2659), + [anon_sym_fn] = ACTIONS(2659), + [anon_sym_rescue] = ACTIONS(2659), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2660), - [sym__not_in] = ACTIONS(2660), - [sym__quoted_atom_start] = ACTIONS(2660), + [sym__before_unary_op] = ACTIONS(2661), + [sym__not_in] = ACTIONS(2661), + [sym__quoted_atom_start] = ACTIONS(2661), }, [1022] = { - [aux_sym__terminator_repeat1] = STATE(1021), - [aux_sym__terminator_token1] = ACTIONS(2670), + [aux_sym__terminator_repeat1] = STATE(1020), + [aux_sym__terminator_token1] = ACTIONS(2673), [anon_sym_SEMI] = ACTIONS(2677), - [anon_sym_LPAREN] = ACTIONS(2666), - [aux_sym_identifier_token1] = ACTIONS(2666), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2666), - [sym_unused_identifier] = ACTIONS(2666), - [anon_sym___MODULE__] = ACTIONS(2666), - [anon_sym___DIR__] = ACTIONS(2666), - [anon_sym___ENV__] = ACTIONS(2666), - [anon_sym___CALLER__] = ACTIONS(2666), - [anon_sym___STACKTRACE__] = ACTIONS(2666), - [sym_alias] = ACTIONS(2666), - [sym_integer] = ACTIONS(2666), - [sym_float] = ACTIONS(2666), - [sym_char] = ACTIONS(2666), - [anon_sym_true] = ACTIONS(2666), - [anon_sym_false] = ACTIONS(2666), - [anon_sym_nil] = ACTIONS(2666), - [sym_atom] = ACTIONS(2666), - [anon_sym_DQUOTE] = ACTIONS(2666), - [anon_sym_SQUOTE] = ACTIONS(2666), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2666), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2666), - [anon_sym_LBRACE] = ACTIONS(2666), - [anon_sym_LBRACK] = ACTIONS(2666), - [anon_sym_LT] = ACTIONS(2666), - [anon_sym_GT] = ACTIONS(2666), - [anon_sym_PIPE] = ACTIONS(2666), - [anon_sym_SLASH] = ACTIONS(2666), - [anon_sym_TILDE] = ACTIONS(2666), - [anon_sym_LT_LT] = ACTIONS(2666), - [anon_sym_PERCENT] = ACTIONS(2666), - [anon_sym_AMP] = ACTIONS(2666), - [anon_sym_PLUS] = ACTIONS(2666), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_BANG] = ACTIONS(2666), - [anon_sym_CARET] = ACTIONS(2666), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2666), - [anon_sym_not] = ACTIONS(2666), - [anon_sym_AT] = ACTIONS(2666), - [anon_sym_LT_DASH] = ACTIONS(2666), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2666), - [anon_sym_when] = ACTIONS(2666), - [anon_sym_COLON_COLON] = ACTIONS(2666), - [anon_sym_EQ] = ACTIONS(2666), - [anon_sym_PIPE_PIPE] = ACTIONS(2666), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2666), - [anon_sym_or] = ACTIONS(2666), - [anon_sym_AMP_AMP] = ACTIONS(2666), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2666), - [anon_sym_and] = ACTIONS(2666), - [anon_sym_EQ_EQ] = ACTIONS(2666), - [anon_sym_BANG_EQ] = ACTIONS(2666), - [anon_sym_EQ_TILDE] = ACTIONS(2666), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2666), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2666), - [anon_sym_LT_EQ] = ACTIONS(2666), - [anon_sym_GT_EQ] = ACTIONS(2666), - [anon_sym_PIPE_GT] = ACTIONS(2666), - [anon_sym_LT_LT_LT] = ACTIONS(2666), - [anon_sym_GT_GT_GT] = ACTIONS(2666), - [anon_sym_LT_LT_TILDE] = ACTIONS(2666), - [anon_sym_TILDE_GT_GT] = ACTIONS(2666), - [anon_sym_LT_TILDE] = ACTIONS(2666), - [anon_sym_TILDE_GT] = ACTIONS(2666), - [anon_sym_LT_TILDE_GT] = ACTIONS(2666), - [anon_sym_LT_PIPE_GT] = ACTIONS(2666), - [anon_sym_in] = ACTIONS(2666), - [anon_sym_PLUS_PLUS] = ACTIONS(2666), - [anon_sym_DASH_DASH] = ACTIONS(2666), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2666), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2666), - [anon_sym_DOT_DOT] = ACTIONS(2666), - [anon_sym_LT_GT] = ACTIONS(2666), - [anon_sym_STAR] = ACTIONS(2666), - [anon_sym_STAR_STAR] = ACTIONS(2666), - [anon_sym_CARET_CARET] = ACTIONS(2666), - [anon_sym_DASH_GT] = ACTIONS(2666), - [anon_sym_DOT] = ACTIONS(2666), - [anon_sym_after] = ACTIONS(2666), - [anon_sym_catch] = ACTIONS(2666), - [anon_sym_else] = ACTIONS(2666), - [anon_sym_end] = ACTIONS(2666), - [anon_sym_fn] = ACTIONS(2666), - [anon_sym_rescue] = ACTIONS(2666), + [anon_sym_LPAREN] = ACTIONS(2659), + [aux_sym_identifier_token1] = ACTIONS(2659), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2659), + [sym_unused_identifier] = ACTIONS(2659), + [anon_sym___MODULE__] = ACTIONS(2659), + [anon_sym___DIR__] = ACTIONS(2659), + [anon_sym___ENV__] = ACTIONS(2659), + [anon_sym___CALLER__] = ACTIONS(2659), + [anon_sym___STACKTRACE__] = ACTIONS(2659), + [sym_alias] = ACTIONS(2659), + [sym_integer] = ACTIONS(2659), + [sym_float] = ACTIONS(2659), + [sym_char] = ACTIONS(2659), + [anon_sym_true] = ACTIONS(2659), + [anon_sym_false] = ACTIONS(2659), + [anon_sym_nil] = ACTIONS(2659), + [sym_atom] = ACTIONS(2659), + [anon_sym_DQUOTE] = ACTIONS(2659), + [anon_sym_SQUOTE] = ACTIONS(2659), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2659), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2659), + [anon_sym_LBRACE] = ACTIONS(2659), + [anon_sym_LBRACK] = ACTIONS(2659), + [anon_sym_LT] = ACTIONS(2659), + [anon_sym_GT] = ACTIONS(2659), + [anon_sym_PIPE] = ACTIONS(2659), + [anon_sym_SLASH] = ACTIONS(2659), + [anon_sym_TILDE] = ACTIONS(2659), + [anon_sym_LT_LT] = ACTIONS(2659), + [anon_sym_PERCENT] = ACTIONS(2659), + [anon_sym_AMP] = ACTIONS(2659), + [anon_sym_PLUS] = ACTIONS(2659), + [anon_sym_DASH] = ACTIONS(2659), + [anon_sym_BANG] = ACTIONS(2659), + [anon_sym_CARET] = ACTIONS(2659), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2659), + [anon_sym_not] = ACTIONS(2659), + [anon_sym_AT] = ACTIONS(2659), + [anon_sym_LT_DASH] = ACTIONS(2659), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2659), + [anon_sym_when] = ACTIONS(2659), + [anon_sym_COLON_COLON] = ACTIONS(2659), + [anon_sym_EQ] = ACTIONS(2659), + [anon_sym_PIPE_PIPE] = ACTIONS(2659), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2659), + [anon_sym_or] = ACTIONS(2659), + [anon_sym_AMP_AMP] = ACTIONS(2659), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2659), + [anon_sym_and] = ACTIONS(2659), + [anon_sym_EQ_EQ] = ACTIONS(2659), + [anon_sym_BANG_EQ] = ACTIONS(2659), + [anon_sym_EQ_TILDE] = ACTIONS(2659), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2659), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2659), + [anon_sym_LT_EQ] = ACTIONS(2659), + [anon_sym_GT_EQ] = ACTIONS(2659), + [anon_sym_PIPE_GT] = ACTIONS(2659), + [anon_sym_LT_LT_LT] = ACTIONS(2659), + [anon_sym_GT_GT_GT] = ACTIONS(2659), + [anon_sym_LT_LT_TILDE] = ACTIONS(2659), + [anon_sym_TILDE_GT_GT] = ACTIONS(2659), + [anon_sym_LT_TILDE] = ACTIONS(2659), + [anon_sym_TILDE_GT] = ACTIONS(2659), + [anon_sym_LT_TILDE_GT] = ACTIONS(2659), + [anon_sym_LT_PIPE_GT] = ACTIONS(2659), + [anon_sym_in] = ACTIONS(2659), + [anon_sym_PLUS_PLUS] = ACTIONS(2659), + [anon_sym_DASH_DASH] = ACTIONS(2659), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2659), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2659), + [anon_sym_DOT_DOT] = ACTIONS(2659), + [anon_sym_LT_GT] = ACTIONS(2659), + [anon_sym_STAR] = ACTIONS(2659), + [anon_sym_STAR_STAR] = ACTIONS(2659), + [anon_sym_CARET_CARET] = ACTIONS(2659), + [anon_sym_DASH_GT] = ACTIONS(2659), + [anon_sym_DOT] = ACTIONS(2659), + [anon_sym_after] = ACTIONS(2659), + [anon_sym_catch] = ACTIONS(2659), + [anon_sym_else] = ACTIONS(2659), + [anon_sym_end] = ACTIONS(2659), + [anon_sym_fn] = ACTIONS(2659), + [anon_sym_rescue] = ACTIONS(2659), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2668), - [sym__not_in] = ACTIONS(2668), - [sym__quoted_atom_start] = ACTIONS(2668), + [sym__before_unary_op] = ACTIONS(2661), + [sym__not_in] = ACTIONS(2661), + [sym__quoted_atom_start] = ACTIONS(2661), }, [1023] = { - [aux_sym__terminator_token1] = ACTIONS(2679), - [anon_sym_SEMI] = ACTIONS(2681), - [anon_sym_LPAREN] = ACTIONS(2681), - [aux_sym_identifier_token1] = ACTIONS(2681), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2681), - [sym_unused_identifier] = ACTIONS(2681), - [anon_sym___MODULE__] = ACTIONS(2681), - [anon_sym___DIR__] = ACTIONS(2681), - [anon_sym___ENV__] = ACTIONS(2681), - [anon_sym___CALLER__] = ACTIONS(2681), - [anon_sym___STACKTRACE__] = ACTIONS(2681), - [sym_alias] = ACTIONS(2681), - [sym_integer] = ACTIONS(2681), - [sym_float] = ACTIONS(2681), - [sym_char] = ACTIONS(2681), - [anon_sym_true] = ACTIONS(2681), - [anon_sym_false] = ACTIONS(2681), - [anon_sym_nil] = ACTIONS(2681), - [sym_atom] = ACTIONS(2681), - [anon_sym_DQUOTE] = ACTIONS(2681), - [anon_sym_SQUOTE] = ACTIONS(2681), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2681), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2681), - [anon_sym_LBRACE] = ACTIONS(2681), - [anon_sym_LBRACK] = ACTIONS(2681), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_GT] = ACTIONS(2681), - [anon_sym_PIPE] = ACTIONS(2681), - [anon_sym_SLASH] = ACTIONS(2681), - [anon_sym_TILDE] = ACTIONS(2681), - [anon_sym_LT_LT] = ACTIONS(2681), - [anon_sym_PERCENT] = ACTIONS(2681), - [anon_sym_AMP] = ACTIONS(2681), - [anon_sym_PLUS] = ACTIONS(2681), - [anon_sym_DASH] = ACTIONS(2681), - [anon_sym_BANG] = ACTIONS(2681), - [anon_sym_CARET] = ACTIONS(2681), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2681), - [anon_sym_not] = ACTIONS(2681), - [anon_sym_AT] = ACTIONS(2681), - [anon_sym_LT_DASH] = ACTIONS(2681), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2681), - [anon_sym_when] = ACTIONS(2681), - [anon_sym_COLON_COLON] = ACTIONS(2681), - [anon_sym_EQ] = ACTIONS(2681), - [anon_sym_PIPE_PIPE] = ACTIONS(2681), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2681), - [anon_sym_or] = ACTIONS(2681), - [anon_sym_AMP_AMP] = ACTIONS(2681), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2681), - [anon_sym_and] = ACTIONS(2681), - [anon_sym_EQ_EQ] = ACTIONS(2681), - [anon_sym_BANG_EQ] = ACTIONS(2681), - [anon_sym_EQ_TILDE] = ACTIONS(2681), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2681), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2681), - [anon_sym_LT_EQ] = ACTIONS(2681), - [anon_sym_GT_EQ] = ACTIONS(2681), - [anon_sym_PIPE_GT] = ACTIONS(2681), - [anon_sym_LT_LT_LT] = ACTIONS(2681), - [anon_sym_GT_GT_GT] = ACTIONS(2681), - [anon_sym_LT_LT_TILDE] = ACTIONS(2681), - [anon_sym_TILDE_GT_GT] = ACTIONS(2681), - [anon_sym_LT_TILDE] = ACTIONS(2681), - [anon_sym_TILDE_GT] = ACTIONS(2681), - [anon_sym_LT_TILDE_GT] = ACTIONS(2681), - [anon_sym_LT_PIPE_GT] = ACTIONS(2681), - [anon_sym_in] = ACTIONS(2681), - [anon_sym_PLUS_PLUS] = ACTIONS(2681), - [anon_sym_DASH_DASH] = ACTIONS(2681), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2681), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2681), - [anon_sym_DOT_DOT] = ACTIONS(2681), - [anon_sym_LT_GT] = ACTIONS(2681), - [anon_sym_STAR] = ACTIONS(2681), - [anon_sym_STAR_STAR] = ACTIONS(2681), - [anon_sym_CARET_CARET] = ACTIONS(2681), - [anon_sym_DASH_GT] = ACTIONS(2681), - [anon_sym_DOT] = ACTIONS(2681), - [anon_sym_after] = ACTIONS(2681), - [anon_sym_catch] = ACTIONS(2681), - [anon_sym_else] = ACTIONS(2681), - [anon_sym_end] = ACTIONS(2681), - [anon_sym_fn] = ACTIONS(2681), - [anon_sym_rescue] = ACTIONS(2681), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2679), + [aux_sym_identifier_token1] = ACTIONS(2679), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2679), + [sym_unused_identifier] = ACTIONS(2679), + [anon_sym___MODULE__] = ACTIONS(2679), + [anon_sym___DIR__] = ACTIONS(2679), + [anon_sym___ENV__] = ACTIONS(2679), + [anon_sym___CALLER__] = ACTIONS(2679), + [anon_sym___STACKTRACE__] = ACTIONS(2679), + [sym_alias] = ACTIONS(2679), + [sym_integer] = ACTIONS(2679), + [sym_float] = ACTIONS(2679), + [sym_char] = ACTIONS(2679), + [anon_sym_true] = ACTIONS(2679), + [anon_sym_false] = ACTIONS(2679), + [anon_sym_nil] = ACTIONS(2679), + [sym_atom] = ACTIONS(2679), + [anon_sym_DQUOTE] = ACTIONS(2679), + [anon_sym_SQUOTE] = ACTIONS(2679), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2679), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2679), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_LT] = ACTIONS(2679), + [anon_sym_GT] = ACTIONS(2679), + [anon_sym_PIPE] = ACTIONS(2679), + [anon_sym_SLASH] = ACTIONS(2679), + [anon_sym_TILDE] = ACTIONS(2679), + [sym_keyword] = ACTIONS(2679), + [anon_sym_LT_LT] = ACTIONS(2679), + [anon_sym_PERCENT] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2679), + [anon_sym_PLUS] = ACTIONS(2679), + [anon_sym_DASH] = ACTIONS(2679), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_CARET] = ACTIONS(2679), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2679), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AT] = ACTIONS(2679), + [anon_sym_LT_DASH] = ACTIONS(2679), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2679), + [anon_sym_when] = ACTIONS(2679), + [anon_sym_COLON_COLON] = ACTIONS(2679), + [anon_sym_EQ] = ACTIONS(2679), + [anon_sym_PIPE_PIPE] = ACTIONS(2679), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2679), + [anon_sym_or] = ACTIONS(2679), + [anon_sym_AMP_AMP] = ACTIONS(2679), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2679), + [anon_sym_and] = ACTIONS(2679), + [anon_sym_EQ_EQ] = ACTIONS(2679), + [anon_sym_BANG_EQ] = ACTIONS(2679), + [anon_sym_EQ_TILDE] = ACTIONS(2679), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2679), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2679), + [anon_sym_LT_EQ] = ACTIONS(2679), + [anon_sym_GT_EQ] = ACTIONS(2679), + [anon_sym_PIPE_GT] = ACTIONS(2679), + [anon_sym_LT_LT_LT] = ACTIONS(2679), + [anon_sym_GT_GT_GT] = ACTIONS(2679), + [anon_sym_LT_LT_TILDE] = ACTIONS(2679), + [anon_sym_TILDE_GT_GT] = ACTIONS(2679), + [anon_sym_LT_TILDE] = ACTIONS(2679), + [anon_sym_TILDE_GT] = ACTIONS(2679), + [anon_sym_LT_TILDE_GT] = ACTIONS(2679), + [anon_sym_LT_PIPE_GT] = ACTIONS(2679), + [anon_sym_in] = ACTIONS(2679), + [anon_sym_PLUS_PLUS] = ACTIONS(2679), + [anon_sym_DASH_DASH] = ACTIONS(2679), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2679), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2679), + [anon_sym_DOT_DOT] = ACTIONS(2679), + [anon_sym_LT_GT] = ACTIONS(2679), + [anon_sym_STAR] = ACTIONS(2679), + [anon_sym_STAR_STAR] = ACTIONS(2679), + [anon_sym_CARET_CARET] = ACTIONS(2679), + [anon_sym_DASH_GT] = ACTIONS(2679), + [anon_sym_DOT] = ACTIONS(2679), + [anon_sym_after] = ACTIONS(2679), + [anon_sym_catch] = ACTIONS(2679), + [anon_sym_else] = ACTIONS(2679), + [anon_sym_end] = ACTIONS(2679), + [anon_sym_fn] = ACTIONS(2679), + [anon_sym_rescue] = ACTIONS(2679), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2679), - [sym__not_in] = ACTIONS(2679), - [sym__quoted_atom_start] = ACTIONS(2679), + [sym__before_unary_op] = ACTIONS(2681), + [sym__not_in] = ACTIONS(2681), + [sym__quoted_atom_start] = ACTIONS(2681), }, [1024] = { - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2681), - [aux_sym_identifier_token1] = ACTIONS(2681), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2681), - [sym_unused_identifier] = ACTIONS(2681), - [anon_sym___MODULE__] = ACTIONS(2681), - [anon_sym___DIR__] = ACTIONS(2681), - [anon_sym___ENV__] = ACTIONS(2681), - [anon_sym___CALLER__] = ACTIONS(2681), - [anon_sym___STACKTRACE__] = ACTIONS(2681), - [sym_alias] = ACTIONS(2681), - [sym_integer] = ACTIONS(2681), - [sym_float] = ACTIONS(2681), - [sym_char] = ACTIONS(2681), - [anon_sym_true] = ACTIONS(2681), - [anon_sym_false] = ACTIONS(2681), - [anon_sym_nil] = ACTIONS(2681), - [sym_atom] = ACTIONS(2681), - [anon_sym_DQUOTE] = ACTIONS(2681), - [anon_sym_SQUOTE] = ACTIONS(2681), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2681), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2681), - [anon_sym_LBRACE] = ACTIONS(2681), - [anon_sym_LBRACK] = ACTIONS(2681), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_GT] = ACTIONS(2681), - [anon_sym_PIPE] = ACTIONS(2681), - [anon_sym_SLASH] = ACTIONS(2681), - [anon_sym_TILDE] = ACTIONS(2681), - [sym_keyword] = ACTIONS(2681), - [anon_sym_LT_LT] = ACTIONS(2681), - [anon_sym_PERCENT] = ACTIONS(2681), - [anon_sym_AMP] = ACTIONS(2681), - [anon_sym_PLUS] = ACTIONS(2681), - [anon_sym_DASH] = ACTIONS(2681), - [anon_sym_BANG] = ACTIONS(2681), - [anon_sym_CARET] = ACTIONS(2681), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2681), - [anon_sym_not] = ACTIONS(2681), - [anon_sym_AT] = ACTIONS(2681), - [anon_sym_LT_DASH] = ACTIONS(2681), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2681), - [anon_sym_when] = ACTIONS(2681), - [anon_sym_COLON_COLON] = ACTIONS(2681), - [anon_sym_EQ] = ACTIONS(2681), - [anon_sym_PIPE_PIPE] = ACTIONS(2681), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2681), - [anon_sym_or] = ACTIONS(2681), - [anon_sym_AMP_AMP] = ACTIONS(2681), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2681), - [anon_sym_and] = ACTIONS(2681), - [anon_sym_EQ_EQ] = ACTIONS(2681), - [anon_sym_BANG_EQ] = ACTIONS(2681), - [anon_sym_EQ_TILDE] = ACTIONS(2681), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2681), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2681), - [anon_sym_LT_EQ] = ACTIONS(2681), - [anon_sym_GT_EQ] = ACTIONS(2681), - [anon_sym_PIPE_GT] = ACTIONS(2681), - [anon_sym_LT_LT_LT] = ACTIONS(2681), - [anon_sym_GT_GT_GT] = ACTIONS(2681), - [anon_sym_LT_LT_TILDE] = ACTIONS(2681), - [anon_sym_TILDE_GT_GT] = ACTIONS(2681), - [anon_sym_LT_TILDE] = ACTIONS(2681), - [anon_sym_TILDE_GT] = ACTIONS(2681), - [anon_sym_LT_TILDE_GT] = ACTIONS(2681), - [anon_sym_LT_PIPE_GT] = ACTIONS(2681), - [anon_sym_in] = ACTIONS(2681), - [anon_sym_PLUS_PLUS] = ACTIONS(2681), - [anon_sym_DASH_DASH] = ACTIONS(2681), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2681), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2681), - [anon_sym_DOT_DOT] = ACTIONS(2681), - [anon_sym_LT_GT] = ACTIONS(2681), - [anon_sym_STAR] = ACTIONS(2681), - [anon_sym_STAR_STAR] = ACTIONS(2681), - [anon_sym_CARET_CARET] = ACTIONS(2681), - [anon_sym_DASH_GT] = ACTIONS(2681), - [anon_sym_DOT] = ACTIONS(2681), - [anon_sym_after] = ACTIONS(2681), - [anon_sym_catch] = ACTIONS(2681), - [anon_sym_else] = ACTIONS(2681), - [anon_sym_end] = ACTIONS(2681), - [anon_sym_fn] = ACTIONS(2681), - [anon_sym_rescue] = ACTIONS(2681), + [aux_sym__terminator_token1] = ACTIONS(2681), + [anon_sym_SEMI] = ACTIONS(2679), + [anon_sym_LPAREN] = ACTIONS(2679), + [aux_sym_identifier_token1] = ACTIONS(2679), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2679), + [sym_unused_identifier] = ACTIONS(2679), + [anon_sym___MODULE__] = ACTIONS(2679), + [anon_sym___DIR__] = ACTIONS(2679), + [anon_sym___ENV__] = ACTIONS(2679), + [anon_sym___CALLER__] = ACTIONS(2679), + [anon_sym___STACKTRACE__] = ACTIONS(2679), + [sym_alias] = ACTIONS(2679), + [sym_integer] = ACTIONS(2679), + [sym_float] = ACTIONS(2679), + [sym_char] = ACTIONS(2679), + [anon_sym_true] = ACTIONS(2679), + [anon_sym_false] = ACTIONS(2679), + [anon_sym_nil] = ACTIONS(2679), + [sym_atom] = ACTIONS(2679), + [anon_sym_DQUOTE] = ACTIONS(2679), + [anon_sym_SQUOTE] = ACTIONS(2679), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2679), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2679), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_LT] = ACTIONS(2679), + [anon_sym_GT] = ACTIONS(2679), + [anon_sym_PIPE] = ACTIONS(2679), + [anon_sym_SLASH] = ACTIONS(2679), + [anon_sym_TILDE] = ACTIONS(2679), + [anon_sym_LT_LT] = ACTIONS(2679), + [anon_sym_PERCENT] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2679), + [anon_sym_PLUS] = ACTIONS(2679), + [anon_sym_DASH] = ACTIONS(2679), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_CARET] = ACTIONS(2679), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2679), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AT] = ACTIONS(2679), + [anon_sym_LT_DASH] = ACTIONS(2679), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2679), + [anon_sym_when] = ACTIONS(2679), + [anon_sym_COLON_COLON] = ACTIONS(2679), + [anon_sym_EQ] = ACTIONS(2679), + [anon_sym_PIPE_PIPE] = ACTIONS(2679), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2679), + [anon_sym_or] = ACTIONS(2679), + [anon_sym_AMP_AMP] = ACTIONS(2679), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2679), + [anon_sym_and] = ACTIONS(2679), + [anon_sym_EQ_EQ] = ACTIONS(2679), + [anon_sym_BANG_EQ] = ACTIONS(2679), + [anon_sym_EQ_TILDE] = ACTIONS(2679), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2679), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2679), + [anon_sym_LT_EQ] = ACTIONS(2679), + [anon_sym_GT_EQ] = ACTIONS(2679), + [anon_sym_PIPE_GT] = ACTIONS(2679), + [anon_sym_LT_LT_LT] = ACTIONS(2679), + [anon_sym_GT_GT_GT] = ACTIONS(2679), + [anon_sym_LT_LT_TILDE] = ACTIONS(2679), + [anon_sym_TILDE_GT_GT] = ACTIONS(2679), + [anon_sym_LT_TILDE] = ACTIONS(2679), + [anon_sym_TILDE_GT] = ACTIONS(2679), + [anon_sym_LT_TILDE_GT] = ACTIONS(2679), + [anon_sym_LT_PIPE_GT] = ACTIONS(2679), + [anon_sym_in] = ACTIONS(2679), + [anon_sym_PLUS_PLUS] = ACTIONS(2679), + [anon_sym_DASH_DASH] = ACTIONS(2679), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2679), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2679), + [anon_sym_DOT_DOT] = ACTIONS(2679), + [anon_sym_LT_GT] = ACTIONS(2679), + [anon_sym_STAR] = ACTIONS(2679), + [anon_sym_STAR_STAR] = ACTIONS(2679), + [anon_sym_CARET_CARET] = ACTIONS(2679), + [anon_sym_DASH_GT] = ACTIONS(2679), + [anon_sym_DOT] = ACTIONS(2679), + [anon_sym_after] = ACTIONS(2679), + [anon_sym_catch] = ACTIONS(2679), + [anon_sym_else] = ACTIONS(2679), + [anon_sym_end] = ACTIONS(2679), + [anon_sym_fn] = ACTIONS(2679), + [anon_sym_rescue] = ACTIONS(2679), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2679), - [sym__not_in] = ACTIONS(2679), - [sym__quoted_atom_start] = ACTIONS(2679), + [sym__before_unary_op] = ACTIONS(2681), + [sym__not_in] = ACTIONS(2681), + [sym__quoted_atom_start] = ACTIONS(2681), }, [1025] = { [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2681), - [aux_sym_identifier_token1] = ACTIONS(2681), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2681), - [sym_unused_identifier] = ACTIONS(2681), - [anon_sym___MODULE__] = ACTIONS(2681), - [anon_sym___DIR__] = ACTIONS(2681), - [anon_sym___ENV__] = ACTIONS(2681), - [anon_sym___CALLER__] = ACTIONS(2681), - [anon_sym___STACKTRACE__] = ACTIONS(2681), - [sym_alias] = ACTIONS(2681), - [sym_integer] = ACTIONS(2681), - [sym_float] = ACTIONS(2681), - [sym_char] = ACTIONS(2681), - [anon_sym_true] = ACTIONS(2681), - [anon_sym_false] = ACTIONS(2681), - [anon_sym_nil] = ACTIONS(2681), - [sym_atom] = ACTIONS(2681), - [anon_sym_DQUOTE] = ACTIONS(2681), - [anon_sym_SQUOTE] = ACTIONS(2681), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2681), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2681), - [anon_sym_LBRACE] = ACTIONS(2681), - [anon_sym_LBRACK] = ACTIONS(2681), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_GT] = ACTIONS(2681), - [anon_sym_PIPE] = ACTIONS(2681), - [anon_sym_SLASH] = ACTIONS(2681), - [anon_sym_TILDE] = ACTIONS(2681), - [anon_sym_LT_LT] = ACTIONS(2681), - [anon_sym_PERCENT] = ACTIONS(2681), - [anon_sym_AMP] = ACTIONS(2681), - [anon_sym_PLUS] = ACTIONS(2681), - [anon_sym_DASH] = ACTIONS(2681), - [anon_sym_BANG] = ACTIONS(2681), - [anon_sym_CARET] = ACTIONS(2681), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2681), - [anon_sym_not] = ACTIONS(2681), - [anon_sym_AT] = ACTIONS(2681), - [anon_sym_LT_DASH] = ACTIONS(2681), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2681), - [anon_sym_when] = ACTIONS(2681), - [anon_sym_COLON_COLON] = ACTIONS(2681), - [anon_sym_EQ] = ACTIONS(2681), - [anon_sym_PIPE_PIPE] = ACTIONS(2681), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2681), - [anon_sym_or] = ACTIONS(2681), - [anon_sym_AMP_AMP] = ACTIONS(2681), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2681), - [anon_sym_and] = ACTIONS(2681), - [anon_sym_EQ_EQ] = ACTIONS(2681), - [anon_sym_BANG_EQ] = ACTIONS(2681), - [anon_sym_EQ_TILDE] = ACTIONS(2681), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2681), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2681), - [anon_sym_LT_EQ] = ACTIONS(2681), - [anon_sym_GT_EQ] = ACTIONS(2681), - [anon_sym_PIPE_GT] = ACTIONS(2681), - [anon_sym_LT_LT_LT] = ACTIONS(2681), - [anon_sym_GT_GT_GT] = ACTIONS(2681), - [anon_sym_LT_LT_TILDE] = ACTIONS(2681), - [anon_sym_TILDE_GT_GT] = ACTIONS(2681), - [anon_sym_LT_TILDE] = ACTIONS(2681), - [anon_sym_TILDE_GT] = ACTIONS(2681), - [anon_sym_LT_TILDE_GT] = ACTIONS(2681), - [anon_sym_LT_PIPE_GT] = ACTIONS(2681), - [anon_sym_in] = ACTIONS(2681), - [anon_sym_PLUS_PLUS] = ACTIONS(2681), - [anon_sym_DASH_DASH] = ACTIONS(2681), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2681), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2681), - [anon_sym_DOT_DOT] = ACTIONS(2681), - [anon_sym_LT_GT] = ACTIONS(2681), - [anon_sym_STAR] = ACTIONS(2681), - [anon_sym_STAR_STAR] = ACTIONS(2681), - [anon_sym_CARET_CARET] = ACTIONS(2681), - [anon_sym_DASH_GT] = ACTIONS(2681), - [anon_sym_DOT] = ACTIONS(2681), - [anon_sym_after] = ACTIONS(2681), - [anon_sym_catch] = ACTIONS(2681), - [anon_sym_else] = ACTIONS(2681), - [anon_sym_end] = ACTIONS(2681), - [anon_sym_fn] = ACTIONS(2681), - [anon_sym_rescue] = ACTIONS(2681), + [anon_sym_LPAREN] = ACTIONS(2679), + [aux_sym_identifier_token1] = ACTIONS(2679), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2679), + [sym_unused_identifier] = ACTIONS(2679), + [anon_sym___MODULE__] = ACTIONS(2679), + [anon_sym___DIR__] = ACTIONS(2679), + [anon_sym___ENV__] = ACTIONS(2679), + [anon_sym___CALLER__] = ACTIONS(2679), + [anon_sym___STACKTRACE__] = ACTIONS(2679), + [sym_alias] = ACTIONS(2679), + [sym_integer] = ACTIONS(2679), + [sym_float] = ACTIONS(2679), + [sym_char] = ACTIONS(2679), + [anon_sym_true] = ACTIONS(2679), + [anon_sym_false] = ACTIONS(2679), + [anon_sym_nil] = ACTIONS(2679), + [sym_atom] = ACTIONS(2679), + [anon_sym_DQUOTE] = ACTIONS(2679), + [anon_sym_SQUOTE] = ACTIONS(2679), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2679), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2679), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_LT] = ACTIONS(2679), + [anon_sym_GT] = ACTIONS(2679), + [anon_sym_PIPE] = ACTIONS(2679), + [anon_sym_SLASH] = ACTIONS(2679), + [anon_sym_TILDE] = ACTIONS(2679), + [anon_sym_LT_LT] = ACTIONS(2679), + [anon_sym_PERCENT] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2679), + [anon_sym_PLUS] = ACTIONS(2679), + [anon_sym_DASH] = ACTIONS(2679), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_CARET] = ACTIONS(2679), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2679), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AT] = ACTIONS(2679), + [anon_sym_LT_DASH] = ACTIONS(2679), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2679), + [anon_sym_when] = ACTIONS(2679), + [anon_sym_COLON_COLON] = ACTIONS(2679), + [anon_sym_EQ] = ACTIONS(2679), + [anon_sym_PIPE_PIPE] = ACTIONS(2679), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2679), + [anon_sym_or] = ACTIONS(2679), + [anon_sym_AMP_AMP] = ACTIONS(2679), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2679), + [anon_sym_and] = ACTIONS(2679), + [anon_sym_EQ_EQ] = ACTIONS(2679), + [anon_sym_BANG_EQ] = ACTIONS(2679), + [anon_sym_EQ_TILDE] = ACTIONS(2679), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2679), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2679), + [anon_sym_LT_EQ] = ACTIONS(2679), + [anon_sym_GT_EQ] = ACTIONS(2679), + [anon_sym_PIPE_GT] = ACTIONS(2679), + [anon_sym_LT_LT_LT] = ACTIONS(2679), + [anon_sym_GT_GT_GT] = ACTIONS(2679), + [anon_sym_LT_LT_TILDE] = ACTIONS(2679), + [anon_sym_TILDE_GT_GT] = ACTIONS(2679), + [anon_sym_LT_TILDE] = ACTIONS(2679), + [anon_sym_TILDE_GT] = ACTIONS(2679), + [anon_sym_LT_TILDE_GT] = ACTIONS(2679), + [anon_sym_LT_PIPE_GT] = ACTIONS(2679), + [anon_sym_in] = ACTIONS(2679), + [anon_sym_PLUS_PLUS] = ACTIONS(2679), + [anon_sym_DASH_DASH] = ACTIONS(2679), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2679), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2679), + [anon_sym_DOT_DOT] = ACTIONS(2679), + [anon_sym_LT_GT] = ACTIONS(2679), + [anon_sym_STAR] = ACTIONS(2679), + [anon_sym_STAR_STAR] = ACTIONS(2679), + [anon_sym_CARET_CARET] = ACTIONS(2679), + [anon_sym_DASH_GT] = ACTIONS(2679), + [anon_sym_DOT] = ACTIONS(2679), + [anon_sym_after] = ACTIONS(2679), + [anon_sym_catch] = ACTIONS(2679), + [anon_sym_else] = ACTIONS(2679), + [anon_sym_end] = ACTIONS(2679), + [anon_sym_fn] = ACTIONS(2679), + [anon_sym_rescue] = ACTIONS(2679), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2679), - [sym__not_in] = ACTIONS(2679), - [sym__quoted_atom_start] = ACTIONS(2679), + [sym__before_unary_op] = ACTIONS(2681), + [sym__not_in] = ACTIONS(2681), + [sym__quoted_atom_start] = ACTIONS(2681), }, [1026] = { [aux_sym__terminator_repeat1] = STATE(1027), [aux_sym__terminator_token1] = ACTIONS(2683), [anon_sym_SEMI] = ACTIONS(2685), + [anon_sym_LPAREN] = ACTIONS(2659), + [anon_sym_RPAREN] = ACTIONS(2659), + [aux_sym_identifier_token1] = ACTIONS(2659), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2659), + [sym_unused_identifier] = ACTIONS(2659), + [anon_sym___MODULE__] = ACTIONS(2659), + [anon_sym___DIR__] = ACTIONS(2659), + [anon_sym___ENV__] = ACTIONS(2659), + [anon_sym___CALLER__] = ACTIONS(2659), + [anon_sym___STACKTRACE__] = ACTIONS(2659), + [sym_alias] = ACTIONS(2659), + [sym_integer] = ACTIONS(2659), + [sym_float] = ACTIONS(2659), + [sym_char] = ACTIONS(2659), + [anon_sym_true] = ACTIONS(2659), + [anon_sym_false] = ACTIONS(2659), + [anon_sym_nil] = ACTIONS(2659), + [sym_atom] = ACTIONS(2659), + [anon_sym_DQUOTE] = ACTIONS(2659), + [anon_sym_SQUOTE] = ACTIONS(2659), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2659), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2659), + [anon_sym_LBRACE] = ACTIONS(2659), + [anon_sym_LBRACK] = ACTIONS(2659), + [anon_sym_LT] = ACTIONS(2659), + [anon_sym_GT] = ACTIONS(2659), + [anon_sym_PIPE] = ACTIONS(2659), + [anon_sym_SLASH] = ACTIONS(2659), + [anon_sym_TILDE] = ACTIONS(2659), + [sym_keyword] = ACTIONS(2659), + [anon_sym_LT_LT] = ACTIONS(2659), + [anon_sym_PERCENT] = ACTIONS(2659), + [anon_sym_AMP] = ACTIONS(2659), + [anon_sym_PLUS] = ACTIONS(2659), + [anon_sym_DASH] = ACTIONS(2659), + [anon_sym_BANG] = ACTIONS(2659), + [anon_sym_CARET] = ACTIONS(2659), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2659), + [anon_sym_not] = ACTIONS(2659), + [anon_sym_AT] = ACTIONS(2659), + [anon_sym_LT_DASH] = ACTIONS(2659), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2659), + [anon_sym_when] = ACTIONS(2659), + [anon_sym_COLON_COLON] = ACTIONS(2659), + [anon_sym_EQ] = ACTIONS(2659), + [anon_sym_PIPE_PIPE] = ACTIONS(2659), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2659), + [anon_sym_or] = ACTIONS(2659), + [anon_sym_AMP_AMP] = ACTIONS(2659), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2659), + [anon_sym_and] = ACTIONS(2659), + [anon_sym_EQ_EQ] = ACTIONS(2659), + [anon_sym_BANG_EQ] = ACTIONS(2659), + [anon_sym_EQ_TILDE] = ACTIONS(2659), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2659), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2659), + [anon_sym_LT_EQ] = ACTIONS(2659), + [anon_sym_GT_EQ] = ACTIONS(2659), + [anon_sym_PIPE_GT] = ACTIONS(2659), + [anon_sym_LT_LT_LT] = ACTIONS(2659), + [anon_sym_GT_GT_GT] = ACTIONS(2659), + [anon_sym_LT_LT_TILDE] = ACTIONS(2659), + [anon_sym_TILDE_GT_GT] = ACTIONS(2659), + [anon_sym_LT_TILDE] = ACTIONS(2659), + [anon_sym_TILDE_GT] = ACTIONS(2659), + [anon_sym_LT_TILDE_GT] = ACTIONS(2659), + [anon_sym_LT_PIPE_GT] = ACTIONS(2659), + [anon_sym_in] = ACTIONS(2659), + [anon_sym_PLUS_PLUS] = ACTIONS(2659), + [anon_sym_DASH_DASH] = ACTIONS(2659), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2659), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2659), + [anon_sym_DOT_DOT] = ACTIONS(2659), + [anon_sym_LT_GT] = ACTIONS(2659), + [anon_sym_STAR] = ACTIONS(2659), + [anon_sym_STAR_STAR] = ACTIONS(2659), + [anon_sym_CARET_CARET] = ACTIONS(2659), + [anon_sym_DASH_GT] = ACTIONS(2659), + [anon_sym_DOT] = ACTIONS(2659), + [anon_sym_fn] = ACTIONS(2659), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2661), + [sym__not_in] = ACTIONS(2661), + [sym__quoted_atom_start] = ACTIONS(2661), + }, + [1027] = { + [aux_sym__terminator_repeat1] = STATE(1027), + [aux_sym__terminator_token1] = ACTIONS(2687), + [anon_sym_SEMI] = ACTIONS(2666), [anon_sym_LPAREN] = ACTIONS(2666), [anon_sym_RPAREN] = ACTIONS(2666), [aux_sym_identifier_token1] = ACTIONS(2666), @@ -152154,101 +152883,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2668), [sym__quoted_atom_start] = ACTIONS(2668), }, - [1027] = { - [aux_sym__terminator_repeat1] = STATE(1027), - [aux_sym__terminator_token1] = ACTIONS(2687), - [anon_sym_SEMI] = ACTIONS(2658), - [anon_sym_LPAREN] = ACTIONS(2658), - [anon_sym_RPAREN] = ACTIONS(2658), - [aux_sym_identifier_token1] = ACTIONS(2658), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2658), - [sym_unused_identifier] = ACTIONS(2658), - [anon_sym___MODULE__] = ACTIONS(2658), - [anon_sym___DIR__] = ACTIONS(2658), - [anon_sym___ENV__] = ACTIONS(2658), - [anon_sym___CALLER__] = ACTIONS(2658), - [anon_sym___STACKTRACE__] = ACTIONS(2658), - [sym_alias] = ACTIONS(2658), - [sym_integer] = ACTIONS(2658), - [sym_float] = ACTIONS(2658), - [sym_char] = ACTIONS(2658), - [anon_sym_true] = ACTIONS(2658), - [anon_sym_false] = ACTIONS(2658), - [anon_sym_nil] = ACTIONS(2658), - [sym_atom] = ACTIONS(2658), - [anon_sym_DQUOTE] = ACTIONS(2658), - [anon_sym_SQUOTE] = ACTIONS(2658), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2658), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2658), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_LBRACK] = ACTIONS(2658), - [anon_sym_LT] = ACTIONS(2658), - [anon_sym_GT] = ACTIONS(2658), - [anon_sym_PIPE] = ACTIONS(2658), - [anon_sym_SLASH] = ACTIONS(2658), - [anon_sym_TILDE] = ACTIONS(2658), - [sym_keyword] = ACTIONS(2658), - [anon_sym_LT_LT] = ACTIONS(2658), - [anon_sym_PERCENT] = ACTIONS(2658), - [anon_sym_AMP] = ACTIONS(2658), - [anon_sym_PLUS] = ACTIONS(2658), - [anon_sym_DASH] = ACTIONS(2658), - [anon_sym_BANG] = ACTIONS(2658), - [anon_sym_CARET] = ACTIONS(2658), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2658), - [anon_sym_not] = ACTIONS(2658), - [anon_sym_AT] = ACTIONS(2658), - [anon_sym_LT_DASH] = ACTIONS(2658), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2658), - [anon_sym_when] = ACTIONS(2658), - [anon_sym_COLON_COLON] = ACTIONS(2658), - [anon_sym_EQ] = ACTIONS(2658), - [anon_sym_PIPE_PIPE] = ACTIONS(2658), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2658), - [anon_sym_or] = ACTIONS(2658), - [anon_sym_AMP_AMP] = ACTIONS(2658), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2658), - [anon_sym_and] = ACTIONS(2658), - [anon_sym_EQ_EQ] = ACTIONS(2658), - [anon_sym_BANG_EQ] = ACTIONS(2658), - [anon_sym_EQ_TILDE] = ACTIONS(2658), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2658), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2658), - [anon_sym_LT_EQ] = ACTIONS(2658), - [anon_sym_GT_EQ] = ACTIONS(2658), - [anon_sym_PIPE_GT] = ACTIONS(2658), - [anon_sym_LT_LT_LT] = ACTIONS(2658), - [anon_sym_GT_GT_GT] = ACTIONS(2658), - [anon_sym_LT_LT_TILDE] = ACTIONS(2658), - [anon_sym_TILDE_GT_GT] = ACTIONS(2658), - [anon_sym_LT_TILDE] = ACTIONS(2658), - [anon_sym_TILDE_GT] = ACTIONS(2658), - [anon_sym_LT_TILDE_GT] = ACTIONS(2658), - [anon_sym_LT_PIPE_GT] = ACTIONS(2658), - [anon_sym_in] = ACTIONS(2658), - [anon_sym_PLUS_PLUS] = ACTIONS(2658), - [anon_sym_DASH_DASH] = ACTIONS(2658), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2658), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2658), - [anon_sym_DOT_DOT] = ACTIONS(2658), - [anon_sym_LT_GT] = ACTIONS(2658), - [anon_sym_STAR] = ACTIONS(2658), - [anon_sym_STAR_STAR] = ACTIONS(2658), - [anon_sym_CARET_CARET] = ACTIONS(2658), - [anon_sym_DASH_GT] = ACTIONS(2658), - [anon_sym_DOT] = ACTIONS(2658), - [anon_sym_fn] = ACTIONS(2658), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2660), - [sym__not_in] = ACTIONS(2660), - [sym__quoted_atom_start] = ACTIONS(2660), - }, [1028] = { - [aux_sym__terminator_repeat1] = STATE(1032), + [aux_sym__terminator_repeat1] = STATE(1028), [aux_sym__terminator_token1] = ACTIONS(2690), - [anon_sym_SEMI] = ACTIONS(2692), + [anon_sym_SEMI] = ACTIONS(2666), [anon_sym_LPAREN] = ACTIONS(2666), [anon_sym_RPAREN] = ACTIONS(2666), [aux_sym_identifier_token1] = ACTIONS(2666), @@ -152336,100 +152974,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(2668), }, [1029] = { - [aux_sym__terminator_repeat1] = STATE(1029), - [ts_builtin_sym_end] = ACTIONS(2660), - [aux_sym__terminator_token1] = ACTIONS(2694), - [anon_sym_SEMI] = ACTIONS(2658), - [anon_sym_LPAREN] = ACTIONS(2658), - [aux_sym_identifier_token1] = ACTIONS(2658), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2658), - [sym_unused_identifier] = ACTIONS(2658), - [anon_sym___MODULE__] = ACTIONS(2658), - [anon_sym___DIR__] = ACTIONS(2658), - [anon_sym___ENV__] = ACTIONS(2658), - [anon_sym___CALLER__] = ACTIONS(2658), - [anon_sym___STACKTRACE__] = ACTIONS(2658), - [sym_alias] = ACTIONS(2658), - [sym_integer] = ACTIONS(2658), - [sym_float] = ACTIONS(2658), - [sym_char] = ACTIONS(2658), - [anon_sym_true] = ACTIONS(2658), - [anon_sym_false] = ACTIONS(2658), - [anon_sym_nil] = ACTIONS(2658), - [sym_atom] = ACTIONS(2658), - [anon_sym_DQUOTE] = ACTIONS(2658), - [anon_sym_SQUOTE] = ACTIONS(2658), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2658), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2658), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_LBRACK] = ACTIONS(2658), - [anon_sym_LT] = ACTIONS(2658), - [anon_sym_GT] = ACTIONS(2658), - [anon_sym_PIPE] = ACTIONS(2658), - [anon_sym_SLASH] = ACTIONS(2658), - [anon_sym_TILDE] = ACTIONS(2658), - [anon_sym_LT_LT] = ACTIONS(2658), - [anon_sym_PERCENT] = ACTIONS(2658), - [anon_sym_AMP] = ACTIONS(2658), - [anon_sym_PLUS] = ACTIONS(2658), - [anon_sym_DASH] = ACTIONS(2658), - [anon_sym_BANG] = ACTIONS(2658), - [anon_sym_CARET] = ACTIONS(2658), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2658), - [anon_sym_not] = ACTIONS(2658), - [anon_sym_AT] = ACTIONS(2658), - [anon_sym_LT_DASH] = ACTIONS(2658), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2658), - [anon_sym_when] = ACTIONS(2658), - [anon_sym_COLON_COLON] = ACTIONS(2658), - [anon_sym_EQ] = ACTIONS(2658), - [anon_sym_PIPE_PIPE] = ACTIONS(2658), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2658), - [anon_sym_or] = ACTIONS(2658), - [anon_sym_AMP_AMP] = ACTIONS(2658), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2658), - [anon_sym_and] = ACTIONS(2658), - [anon_sym_EQ_EQ] = ACTIONS(2658), - [anon_sym_BANG_EQ] = ACTIONS(2658), - [anon_sym_EQ_TILDE] = ACTIONS(2658), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2658), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2658), - [anon_sym_LT_EQ] = ACTIONS(2658), - [anon_sym_GT_EQ] = ACTIONS(2658), - [anon_sym_PIPE_GT] = ACTIONS(2658), - [anon_sym_LT_LT_LT] = ACTIONS(2658), - [anon_sym_GT_GT_GT] = ACTIONS(2658), - [anon_sym_LT_LT_TILDE] = ACTIONS(2658), - [anon_sym_TILDE_GT_GT] = ACTIONS(2658), - [anon_sym_LT_TILDE] = ACTIONS(2658), - [anon_sym_TILDE_GT] = ACTIONS(2658), - [anon_sym_LT_TILDE_GT] = ACTIONS(2658), - [anon_sym_LT_PIPE_GT] = ACTIONS(2658), - [anon_sym_in] = ACTIONS(2658), - [anon_sym_PLUS_PLUS] = ACTIONS(2658), - [anon_sym_DASH_DASH] = ACTIONS(2658), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2658), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2658), - [anon_sym_DOT_DOT] = ACTIONS(2658), - [anon_sym_LT_GT] = ACTIONS(2658), - [anon_sym_STAR] = ACTIONS(2658), - [anon_sym_STAR_STAR] = ACTIONS(2658), - [anon_sym_CARET_CARET] = ACTIONS(2658), - [anon_sym_DASH_GT] = ACTIONS(2658), - [anon_sym_DOT] = ACTIONS(2658), - [anon_sym_fn] = ACTIONS(2658), + [aux_sym__terminator_repeat1] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(2661), + [aux_sym__terminator_token1] = ACTIONS(2693), + [anon_sym_SEMI] = ACTIONS(2695), + [anon_sym_LPAREN] = ACTIONS(2659), + [aux_sym_identifier_token1] = ACTIONS(2659), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2659), + [sym_unused_identifier] = ACTIONS(2659), + [anon_sym___MODULE__] = ACTIONS(2659), + [anon_sym___DIR__] = ACTIONS(2659), + [anon_sym___ENV__] = ACTIONS(2659), + [anon_sym___CALLER__] = ACTIONS(2659), + [anon_sym___STACKTRACE__] = ACTIONS(2659), + [sym_alias] = ACTIONS(2659), + [sym_integer] = ACTIONS(2659), + [sym_float] = ACTIONS(2659), + [sym_char] = ACTIONS(2659), + [anon_sym_true] = ACTIONS(2659), + [anon_sym_false] = ACTIONS(2659), + [anon_sym_nil] = ACTIONS(2659), + [sym_atom] = ACTIONS(2659), + [anon_sym_DQUOTE] = ACTIONS(2659), + [anon_sym_SQUOTE] = ACTIONS(2659), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2659), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2659), + [anon_sym_LBRACE] = ACTIONS(2659), + [anon_sym_LBRACK] = ACTIONS(2659), + [anon_sym_LT] = ACTIONS(2659), + [anon_sym_GT] = ACTIONS(2659), + [anon_sym_PIPE] = ACTIONS(2659), + [anon_sym_SLASH] = ACTIONS(2659), + [anon_sym_TILDE] = ACTIONS(2659), + [anon_sym_LT_LT] = ACTIONS(2659), + [anon_sym_PERCENT] = ACTIONS(2659), + [anon_sym_AMP] = ACTIONS(2659), + [anon_sym_PLUS] = ACTIONS(2659), + [anon_sym_DASH] = ACTIONS(2659), + [anon_sym_BANG] = ACTIONS(2659), + [anon_sym_CARET] = ACTIONS(2659), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2659), + [anon_sym_not] = ACTIONS(2659), + [anon_sym_AT] = ACTIONS(2659), + [anon_sym_LT_DASH] = ACTIONS(2659), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2659), + [anon_sym_when] = ACTIONS(2659), + [anon_sym_COLON_COLON] = ACTIONS(2659), + [anon_sym_EQ] = ACTIONS(2659), + [anon_sym_PIPE_PIPE] = ACTIONS(2659), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2659), + [anon_sym_or] = ACTIONS(2659), + [anon_sym_AMP_AMP] = ACTIONS(2659), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2659), + [anon_sym_and] = ACTIONS(2659), + [anon_sym_EQ_EQ] = ACTIONS(2659), + [anon_sym_BANG_EQ] = ACTIONS(2659), + [anon_sym_EQ_TILDE] = ACTIONS(2659), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2659), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2659), + [anon_sym_LT_EQ] = ACTIONS(2659), + [anon_sym_GT_EQ] = ACTIONS(2659), + [anon_sym_PIPE_GT] = ACTIONS(2659), + [anon_sym_LT_LT_LT] = ACTIONS(2659), + [anon_sym_GT_GT_GT] = ACTIONS(2659), + [anon_sym_LT_LT_TILDE] = ACTIONS(2659), + [anon_sym_TILDE_GT_GT] = ACTIONS(2659), + [anon_sym_LT_TILDE] = ACTIONS(2659), + [anon_sym_TILDE_GT] = ACTIONS(2659), + [anon_sym_LT_TILDE_GT] = ACTIONS(2659), + [anon_sym_LT_PIPE_GT] = ACTIONS(2659), + [anon_sym_in] = ACTIONS(2659), + [anon_sym_PLUS_PLUS] = ACTIONS(2659), + [anon_sym_DASH_DASH] = ACTIONS(2659), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2659), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2659), + [anon_sym_DOT_DOT] = ACTIONS(2659), + [anon_sym_LT_GT] = ACTIONS(2659), + [anon_sym_STAR] = ACTIONS(2659), + [anon_sym_STAR_STAR] = ACTIONS(2659), + [anon_sym_CARET_CARET] = ACTIONS(2659), + [anon_sym_DASH_GT] = ACTIONS(2659), + [anon_sym_DOT] = ACTIONS(2659), + [anon_sym_fn] = ACTIONS(2659), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2660), - [sym__not_in] = ACTIONS(2660), - [sym__quoted_atom_start] = ACTIONS(2660), + [sym__before_unary_op] = ACTIONS(2661), + [sym__not_in] = ACTIONS(2661), + [sym__quoted_atom_start] = ACTIONS(2661), }, [1030] = { - [aux_sym__terminator_repeat1] = STATE(1029), + [aux_sym__terminator_repeat1] = STATE(1030), [ts_builtin_sym_end] = ACTIONS(2668), [aux_sym__terminator_token1] = ACTIONS(2697), - [anon_sym_SEMI] = ACTIONS(2699), + [anon_sym_SEMI] = ACTIONS(2666), [anon_sym_LPAREN] = ACTIONS(2666), [aux_sym_identifier_token1] = ACTIONS(2666), [anon_sym_DOT_DOT_DOT] = ACTIONS(2666), @@ -152516,9 +153154,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(2668), }, [1031] = { - [aux_sym__terminator_repeat1] = STATE(1034), - [aux_sym__terminator_token1] = ACTIONS(2701), - [anon_sym_SEMI] = ACTIONS(2703), + [aux_sym__terminator_repeat1] = STATE(1028), + [aux_sym__terminator_token1] = ACTIONS(2700), + [anon_sym_SEMI] = ACTIONS(2702), + [anon_sym_LPAREN] = ACTIONS(2659), + [anon_sym_RPAREN] = ACTIONS(2659), + [aux_sym_identifier_token1] = ACTIONS(2659), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2659), + [sym_unused_identifier] = ACTIONS(2659), + [anon_sym___MODULE__] = ACTIONS(2659), + [anon_sym___DIR__] = ACTIONS(2659), + [anon_sym___ENV__] = ACTIONS(2659), + [anon_sym___CALLER__] = ACTIONS(2659), + [anon_sym___STACKTRACE__] = ACTIONS(2659), + [sym_alias] = ACTIONS(2659), + [sym_integer] = ACTIONS(2659), + [sym_float] = ACTIONS(2659), + [sym_char] = ACTIONS(2659), + [anon_sym_true] = ACTIONS(2659), + [anon_sym_false] = ACTIONS(2659), + [anon_sym_nil] = ACTIONS(2659), + [sym_atom] = ACTIONS(2659), + [anon_sym_DQUOTE] = ACTIONS(2659), + [anon_sym_SQUOTE] = ACTIONS(2659), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2659), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2659), + [anon_sym_LBRACE] = ACTIONS(2659), + [anon_sym_LBRACK] = ACTIONS(2659), + [anon_sym_LT] = ACTIONS(2659), + [anon_sym_GT] = ACTIONS(2659), + [anon_sym_PIPE] = ACTIONS(2659), + [anon_sym_SLASH] = ACTIONS(2659), + [anon_sym_TILDE] = ACTIONS(2659), + [anon_sym_LT_LT] = ACTIONS(2659), + [anon_sym_PERCENT] = ACTIONS(2659), + [anon_sym_AMP] = ACTIONS(2659), + [anon_sym_PLUS] = ACTIONS(2659), + [anon_sym_DASH] = ACTIONS(2659), + [anon_sym_BANG] = ACTIONS(2659), + [anon_sym_CARET] = ACTIONS(2659), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2659), + [anon_sym_not] = ACTIONS(2659), + [anon_sym_AT] = ACTIONS(2659), + [anon_sym_LT_DASH] = ACTIONS(2659), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2659), + [anon_sym_when] = ACTIONS(2659), + [anon_sym_COLON_COLON] = ACTIONS(2659), + [anon_sym_EQ] = ACTIONS(2659), + [anon_sym_PIPE_PIPE] = ACTIONS(2659), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2659), + [anon_sym_or] = ACTIONS(2659), + [anon_sym_AMP_AMP] = ACTIONS(2659), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2659), + [anon_sym_and] = ACTIONS(2659), + [anon_sym_EQ_EQ] = ACTIONS(2659), + [anon_sym_BANG_EQ] = ACTIONS(2659), + [anon_sym_EQ_TILDE] = ACTIONS(2659), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2659), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2659), + [anon_sym_LT_EQ] = ACTIONS(2659), + [anon_sym_GT_EQ] = ACTIONS(2659), + [anon_sym_PIPE_GT] = ACTIONS(2659), + [anon_sym_LT_LT_LT] = ACTIONS(2659), + [anon_sym_GT_GT_GT] = ACTIONS(2659), + [anon_sym_LT_LT_TILDE] = ACTIONS(2659), + [anon_sym_TILDE_GT_GT] = ACTIONS(2659), + [anon_sym_LT_TILDE] = ACTIONS(2659), + [anon_sym_TILDE_GT] = ACTIONS(2659), + [anon_sym_LT_TILDE_GT] = ACTIONS(2659), + [anon_sym_LT_PIPE_GT] = ACTIONS(2659), + [anon_sym_in] = ACTIONS(2659), + [anon_sym_PLUS_PLUS] = ACTIONS(2659), + [anon_sym_DASH_DASH] = ACTIONS(2659), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2659), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2659), + [anon_sym_DOT_DOT] = ACTIONS(2659), + [anon_sym_LT_GT] = ACTIONS(2659), + [anon_sym_STAR] = ACTIONS(2659), + [anon_sym_STAR_STAR] = ACTIONS(2659), + [anon_sym_CARET_CARET] = ACTIONS(2659), + [anon_sym_DASH_GT] = ACTIONS(2659), + [anon_sym_DOT] = ACTIONS(2659), + [anon_sym_fn] = ACTIONS(2659), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2661), + [sym__not_in] = ACTIONS(2661), + [sym__quoted_atom_start] = ACTIONS(2661), + }, + [1032] = { + [aux_sym__terminator_repeat1] = STATE(1032), + [aux_sym__terminator_token1] = ACTIONS(2704), + [anon_sym_SEMI] = ACTIONS(2666), [anon_sym_LPAREN] = ACTIONS(2666), [aux_sym_identifier_token1] = ACTIONS(2666), [anon_sym_DOT_DOT_DOT] = ACTIONS(2666), @@ -152605,568 +153333,478 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2668), [sym__quoted_atom_start] = ACTIONS(2668), }, - [1032] = { - [aux_sym__terminator_repeat1] = STATE(1032), - [aux_sym__terminator_token1] = ACTIONS(2705), - [anon_sym_SEMI] = ACTIONS(2658), - [anon_sym_LPAREN] = ACTIONS(2658), - [anon_sym_RPAREN] = ACTIONS(2658), - [aux_sym_identifier_token1] = ACTIONS(2658), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2658), - [sym_unused_identifier] = ACTIONS(2658), - [anon_sym___MODULE__] = ACTIONS(2658), - [anon_sym___DIR__] = ACTIONS(2658), - [anon_sym___ENV__] = ACTIONS(2658), - [anon_sym___CALLER__] = ACTIONS(2658), - [anon_sym___STACKTRACE__] = ACTIONS(2658), - [sym_alias] = ACTIONS(2658), - [sym_integer] = ACTIONS(2658), - [sym_float] = ACTIONS(2658), - [sym_char] = ACTIONS(2658), - [anon_sym_true] = ACTIONS(2658), - [anon_sym_false] = ACTIONS(2658), - [anon_sym_nil] = ACTIONS(2658), - [sym_atom] = ACTIONS(2658), - [anon_sym_DQUOTE] = ACTIONS(2658), - [anon_sym_SQUOTE] = ACTIONS(2658), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2658), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2658), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_LBRACK] = ACTIONS(2658), - [anon_sym_LT] = ACTIONS(2658), - [anon_sym_GT] = ACTIONS(2658), - [anon_sym_PIPE] = ACTIONS(2658), - [anon_sym_SLASH] = ACTIONS(2658), - [anon_sym_TILDE] = ACTIONS(2658), - [anon_sym_LT_LT] = ACTIONS(2658), - [anon_sym_PERCENT] = ACTIONS(2658), - [anon_sym_AMP] = ACTIONS(2658), - [anon_sym_PLUS] = ACTIONS(2658), - [anon_sym_DASH] = ACTIONS(2658), - [anon_sym_BANG] = ACTIONS(2658), - [anon_sym_CARET] = ACTIONS(2658), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2658), - [anon_sym_not] = ACTIONS(2658), - [anon_sym_AT] = ACTIONS(2658), - [anon_sym_LT_DASH] = ACTIONS(2658), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2658), - [anon_sym_when] = ACTIONS(2658), - [anon_sym_COLON_COLON] = ACTIONS(2658), - [anon_sym_EQ] = ACTIONS(2658), - [anon_sym_PIPE_PIPE] = ACTIONS(2658), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2658), - [anon_sym_or] = ACTIONS(2658), - [anon_sym_AMP_AMP] = ACTIONS(2658), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2658), - [anon_sym_and] = ACTIONS(2658), - [anon_sym_EQ_EQ] = ACTIONS(2658), - [anon_sym_BANG_EQ] = ACTIONS(2658), - [anon_sym_EQ_TILDE] = ACTIONS(2658), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2658), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2658), - [anon_sym_LT_EQ] = ACTIONS(2658), - [anon_sym_GT_EQ] = ACTIONS(2658), - [anon_sym_PIPE_GT] = ACTIONS(2658), - [anon_sym_LT_LT_LT] = ACTIONS(2658), - [anon_sym_GT_GT_GT] = ACTIONS(2658), - [anon_sym_LT_LT_TILDE] = ACTIONS(2658), - [anon_sym_TILDE_GT_GT] = ACTIONS(2658), - [anon_sym_LT_TILDE] = ACTIONS(2658), - [anon_sym_TILDE_GT] = ACTIONS(2658), - [anon_sym_LT_TILDE_GT] = ACTIONS(2658), - [anon_sym_LT_PIPE_GT] = ACTIONS(2658), - [anon_sym_in] = ACTIONS(2658), - [anon_sym_PLUS_PLUS] = ACTIONS(2658), - [anon_sym_DASH_DASH] = ACTIONS(2658), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2658), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2658), - [anon_sym_DOT_DOT] = ACTIONS(2658), - [anon_sym_LT_GT] = ACTIONS(2658), - [anon_sym_STAR] = ACTIONS(2658), - [anon_sym_STAR_STAR] = ACTIONS(2658), - [anon_sym_CARET_CARET] = ACTIONS(2658), - [anon_sym_DASH_GT] = ACTIONS(2658), - [anon_sym_DOT] = ACTIONS(2658), - [anon_sym_fn] = ACTIONS(2658), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2660), - [sym__not_in] = ACTIONS(2660), - [sym__quoted_atom_start] = ACTIONS(2660), - }, [1033] = { - [aux_sym__terminator_repeat1] = STATE(1032), - [aux_sym__terminator_token1] = ACTIONS(2690), - [anon_sym_SEMI] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(2666), - [anon_sym_RPAREN] = ACTIONS(2666), - [aux_sym_identifier_token1] = ACTIONS(2666), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2666), - [sym_unused_identifier] = ACTIONS(2666), - [anon_sym___MODULE__] = ACTIONS(2666), - [anon_sym___DIR__] = ACTIONS(2666), - [anon_sym___ENV__] = ACTIONS(2666), - [anon_sym___CALLER__] = ACTIONS(2666), - [anon_sym___STACKTRACE__] = ACTIONS(2666), - [sym_alias] = ACTIONS(2666), - [sym_integer] = ACTIONS(2666), - [sym_float] = ACTIONS(2666), - [sym_char] = ACTIONS(2666), - [anon_sym_true] = ACTIONS(2666), - [anon_sym_false] = ACTIONS(2666), - [anon_sym_nil] = ACTIONS(2666), - [sym_atom] = ACTIONS(2666), - [anon_sym_DQUOTE] = ACTIONS(2666), - [anon_sym_SQUOTE] = ACTIONS(2666), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2666), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2666), - [anon_sym_LBRACE] = ACTIONS(2666), - [anon_sym_LBRACK] = ACTIONS(2666), - [anon_sym_LT] = ACTIONS(2666), - [anon_sym_GT] = ACTIONS(2666), - [anon_sym_PIPE] = ACTIONS(2666), - [anon_sym_SLASH] = ACTIONS(2666), - [anon_sym_TILDE] = ACTIONS(2666), - [anon_sym_LT_LT] = ACTIONS(2666), - [anon_sym_PERCENT] = ACTIONS(2666), - [anon_sym_AMP] = ACTIONS(2666), - [anon_sym_PLUS] = ACTIONS(2666), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_BANG] = ACTIONS(2666), - [anon_sym_CARET] = ACTIONS(2666), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2666), - [anon_sym_not] = ACTIONS(2666), - [anon_sym_AT] = ACTIONS(2666), - [anon_sym_LT_DASH] = ACTIONS(2666), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2666), - [anon_sym_when] = ACTIONS(2666), - [anon_sym_COLON_COLON] = ACTIONS(2666), - [anon_sym_EQ] = ACTIONS(2666), - [anon_sym_PIPE_PIPE] = ACTIONS(2666), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2666), - [anon_sym_or] = ACTIONS(2666), - [anon_sym_AMP_AMP] = ACTIONS(2666), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2666), - [anon_sym_and] = ACTIONS(2666), - [anon_sym_EQ_EQ] = ACTIONS(2666), - [anon_sym_BANG_EQ] = ACTIONS(2666), - [anon_sym_EQ_TILDE] = ACTIONS(2666), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2666), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2666), - [anon_sym_LT_EQ] = ACTIONS(2666), - [anon_sym_GT_EQ] = ACTIONS(2666), - [anon_sym_PIPE_GT] = ACTIONS(2666), - [anon_sym_LT_LT_LT] = ACTIONS(2666), - [anon_sym_GT_GT_GT] = ACTIONS(2666), - [anon_sym_LT_LT_TILDE] = ACTIONS(2666), - [anon_sym_TILDE_GT_GT] = ACTIONS(2666), - [anon_sym_LT_TILDE] = ACTIONS(2666), - [anon_sym_TILDE_GT] = ACTIONS(2666), - [anon_sym_LT_TILDE_GT] = ACTIONS(2666), - [anon_sym_LT_PIPE_GT] = ACTIONS(2666), - [anon_sym_in] = ACTIONS(2666), - [anon_sym_PLUS_PLUS] = ACTIONS(2666), - [anon_sym_DASH_DASH] = ACTIONS(2666), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2666), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2666), - [anon_sym_DOT_DOT] = ACTIONS(2666), - [anon_sym_LT_GT] = ACTIONS(2666), - [anon_sym_STAR] = ACTIONS(2666), - [anon_sym_STAR_STAR] = ACTIONS(2666), - [anon_sym_CARET_CARET] = ACTIONS(2666), - [anon_sym_DASH_GT] = ACTIONS(2666), - [anon_sym_DOT] = ACTIONS(2666), - [anon_sym_fn] = ACTIONS(2666), + [aux_sym__terminator_repeat1] = STATE(1028), + [aux_sym__terminator_token1] = ACTIONS(2700), + [anon_sym_SEMI] = ACTIONS(2707), + [anon_sym_LPAREN] = ACTIONS(2659), + [anon_sym_RPAREN] = ACTIONS(2659), + [aux_sym_identifier_token1] = ACTIONS(2659), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2659), + [sym_unused_identifier] = ACTIONS(2659), + [anon_sym___MODULE__] = ACTIONS(2659), + [anon_sym___DIR__] = ACTIONS(2659), + [anon_sym___ENV__] = ACTIONS(2659), + [anon_sym___CALLER__] = ACTIONS(2659), + [anon_sym___STACKTRACE__] = ACTIONS(2659), + [sym_alias] = ACTIONS(2659), + [sym_integer] = ACTIONS(2659), + [sym_float] = ACTIONS(2659), + [sym_char] = ACTIONS(2659), + [anon_sym_true] = ACTIONS(2659), + [anon_sym_false] = ACTIONS(2659), + [anon_sym_nil] = ACTIONS(2659), + [sym_atom] = ACTIONS(2659), + [anon_sym_DQUOTE] = ACTIONS(2659), + [anon_sym_SQUOTE] = ACTIONS(2659), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2659), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2659), + [anon_sym_LBRACE] = ACTIONS(2659), + [anon_sym_LBRACK] = ACTIONS(2659), + [anon_sym_LT] = ACTIONS(2659), + [anon_sym_GT] = ACTIONS(2659), + [anon_sym_PIPE] = ACTIONS(2659), + [anon_sym_SLASH] = ACTIONS(2659), + [anon_sym_TILDE] = ACTIONS(2659), + [anon_sym_LT_LT] = ACTIONS(2659), + [anon_sym_PERCENT] = ACTIONS(2659), + [anon_sym_AMP] = ACTIONS(2659), + [anon_sym_PLUS] = ACTIONS(2659), + [anon_sym_DASH] = ACTIONS(2659), + [anon_sym_BANG] = ACTIONS(2659), + [anon_sym_CARET] = ACTIONS(2659), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2659), + [anon_sym_not] = ACTIONS(2659), + [anon_sym_AT] = ACTIONS(2659), + [anon_sym_LT_DASH] = ACTIONS(2659), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2659), + [anon_sym_when] = ACTIONS(2659), + [anon_sym_COLON_COLON] = ACTIONS(2659), + [anon_sym_EQ] = ACTIONS(2659), + [anon_sym_PIPE_PIPE] = ACTIONS(2659), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2659), + [anon_sym_or] = ACTIONS(2659), + [anon_sym_AMP_AMP] = ACTIONS(2659), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2659), + [anon_sym_and] = ACTIONS(2659), + [anon_sym_EQ_EQ] = ACTIONS(2659), + [anon_sym_BANG_EQ] = ACTIONS(2659), + [anon_sym_EQ_TILDE] = ACTIONS(2659), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2659), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2659), + [anon_sym_LT_EQ] = ACTIONS(2659), + [anon_sym_GT_EQ] = ACTIONS(2659), + [anon_sym_PIPE_GT] = ACTIONS(2659), + [anon_sym_LT_LT_LT] = ACTIONS(2659), + [anon_sym_GT_GT_GT] = ACTIONS(2659), + [anon_sym_LT_LT_TILDE] = ACTIONS(2659), + [anon_sym_TILDE_GT_GT] = ACTIONS(2659), + [anon_sym_LT_TILDE] = ACTIONS(2659), + [anon_sym_TILDE_GT] = ACTIONS(2659), + [anon_sym_LT_TILDE_GT] = ACTIONS(2659), + [anon_sym_LT_PIPE_GT] = ACTIONS(2659), + [anon_sym_in] = ACTIONS(2659), + [anon_sym_PLUS_PLUS] = ACTIONS(2659), + [anon_sym_DASH_DASH] = ACTIONS(2659), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2659), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2659), + [anon_sym_DOT_DOT] = ACTIONS(2659), + [anon_sym_LT_GT] = ACTIONS(2659), + [anon_sym_STAR] = ACTIONS(2659), + [anon_sym_STAR_STAR] = ACTIONS(2659), + [anon_sym_CARET_CARET] = ACTIONS(2659), + [anon_sym_DASH_GT] = ACTIONS(2659), + [anon_sym_DOT] = ACTIONS(2659), + [anon_sym_fn] = ACTIONS(2659), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2668), - [sym__not_in] = ACTIONS(2668), - [sym__quoted_atom_start] = ACTIONS(2668), + [sym__before_unary_op] = ACTIONS(2661), + [sym__not_in] = ACTIONS(2661), + [sym__quoted_atom_start] = ACTIONS(2661), }, [1034] = { - [aux_sym__terminator_repeat1] = STATE(1034), - [aux_sym__terminator_token1] = ACTIONS(2710), - [anon_sym_SEMI] = ACTIONS(2658), - [anon_sym_LPAREN] = ACTIONS(2658), - [aux_sym_identifier_token1] = ACTIONS(2658), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2658), - [sym_unused_identifier] = ACTIONS(2658), - [anon_sym___MODULE__] = ACTIONS(2658), - [anon_sym___DIR__] = ACTIONS(2658), - [anon_sym___ENV__] = ACTIONS(2658), - [anon_sym___CALLER__] = ACTIONS(2658), - [anon_sym___STACKTRACE__] = ACTIONS(2658), - [sym_alias] = ACTIONS(2658), - [sym_integer] = ACTIONS(2658), - [sym_float] = ACTIONS(2658), - [sym_char] = ACTIONS(2658), - [anon_sym_true] = ACTIONS(2658), - [anon_sym_false] = ACTIONS(2658), - [anon_sym_nil] = ACTIONS(2658), - [sym_atom] = ACTIONS(2658), - [anon_sym_DQUOTE] = ACTIONS(2658), - [anon_sym_SQUOTE] = ACTIONS(2658), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2658), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2658), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_LBRACK] = ACTIONS(2658), - [anon_sym_LT] = ACTIONS(2658), - [anon_sym_GT] = ACTIONS(2658), - [anon_sym_PIPE] = ACTIONS(2658), - [anon_sym_SLASH] = ACTIONS(2658), - [anon_sym_TILDE] = ACTIONS(2658), - [anon_sym_LT_LT] = ACTIONS(2658), - [anon_sym_PERCENT] = ACTIONS(2658), - [anon_sym_AMP] = ACTIONS(2658), - [anon_sym_PLUS] = ACTIONS(2658), - [anon_sym_DASH] = ACTIONS(2658), - [anon_sym_BANG] = ACTIONS(2658), - [anon_sym_CARET] = ACTIONS(2658), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2658), - [anon_sym_not] = ACTIONS(2658), - [anon_sym_AT] = ACTIONS(2658), - [anon_sym_LT_DASH] = ACTIONS(2658), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2658), - [anon_sym_when] = ACTIONS(2658), - [anon_sym_COLON_COLON] = ACTIONS(2658), - [anon_sym_EQ] = ACTIONS(2658), - [anon_sym_PIPE_PIPE] = ACTIONS(2658), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2658), - [anon_sym_or] = ACTIONS(2658), - [anon_sym_AMP_AMP] = ACTIONS(2658), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2658), - [anon_sym_and] = ACTIONS(2658), - [anon_sym_EQ_EQ] = ACTIONS(2658), - [anon_sym_BANG_EQ] = ACTIONS(2658), - [anon_sym_EQ_TILDE] = ACTIONS(2658), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2658), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2658), - [anon_sym_LT_EQ] = ACTIONS(2658), - [anon_sym_GT_EQ] = ACTIONS(2658), - [anon_sym_PIPE_GT] = ACTIONS(2658), - [anon_sym_LT_LT_LT] = ACTIONS(2658), - [anon_sym_GT_GT_GT] = ACTIONS(2658), - [anon_sym_LT_LT_TILDE] = ACTIONS(2658), - [anon_sym_TILDE_GT_GT] = ACTIONS(2658), - [anon_sym_LT_TILDE] = ACTIONS(2658), - [anon_sym_TILDE_GT] = ACTIONS(2658), - [anon_sym_LT_TILDE_GT] = ACTIONS(2658), - [anon_sym_LT_PIPE_GT] = ACTIONS(2658), - [anon_sym_in] = ACTIONS(2658), - [anon_sym_PLUS_PLUS] = ACTIONS(2658), - [anon_sym_DASH_DASH] = ACTIONS(2658), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2658), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2658), - [anon_sym_DOT_DOT] = ACTIONS(2658), - [anon_sym_LT_GT] = ACTIONS(2658), - [anon_sym_STAR] = ACTIONS(2658), - [anon_sym_STAR_STAR] = ACTIONS(2658), - [anon_sym_CARET_CARET] = ACTIONS(2658), - [anon_sym_DASH_GT] = ACTIONS(2658), - [anon_sym_DOT] = ACTIONS(2658), - [anon_sym_end] = ACTIONS(2658), - [anon_sym_fn] = ACTIONS(2658), + [aux_sym__terminator_repeat1] = STATE(1032), + [aux_sym__terminator_token1] = ACTIONS(2709), + [anon_sym_SEMI] = ACTIONS(2711), + [anon_sym_LPAREN] = ACTIONS(2659), + [aux_sym_identifier_token1] = ACTIONS(2659), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2659), + [sym_unused_identifier] = ACTIONS(2659), + [anon_sym___MODULE__] = ACTIONS(2659), + [anon_sym___DIR__] = ACTIONS(2659), + [anon_sym___ENV__] = ACTIONS(2659), + [anon_sym___CALLER__] = ACTIONS(2659), + [anon_sym___STACKTRACE__] = ACTIONS(2659), + [sym_alias] = ACTIONS(2659), + [sym_integer] = ACTIONS(2659), + [sym_float] = ACTIONS(2659), + [sym_char] = ACTIONS(2659), + [anon_sym_true] = ACTIONS(2659), + [anon_sym_false] = ACTIONS(2659), + [anon_sym_nil] = ACTIONS(2659), + [sym_atom] = ACTIONS(2659), + [anon_sym_DQUOTE] = ACTIONS(2659), + [anon_sym_SQUOTE] = ACTIONS(2659), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2659), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2659), + [anon_sym_LBRACE] = ACTIONS(2659), + [anon_sym_LBRACK] = ACTIONS(2659), + [anon_sym_LT] = ACTIONS(2659), + [anon_sym_GT] = ACTIONS(2659), + [anon_sym_PIPE] = ACTIONS(2659), + [anon_sym_SLASH] = ACTIONS(2659), + [anon_sym_TILDE] = ACTIONS(2659), + [anon_sym_LT_LT] = ACTIONS(2659), + [anon_sym_PERCENT] = ACTIONS(2659), + [anon_sym_AMP] = ACTIONS(2659), + [anon_sym_PLUS] = ACTIONS(2659), + [anon_sym_DASH] = ACTIONS(2659), + [anon_sym_BANG] = ACTIONS(2659), + [anon_sym_CARET] = ACTIONS(2659), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2659), + [anon_sym_not] = ACTIONS(2659), + [anon_sym_AT] = ACTIONS(2659), + [anon_sym_LT_DASH] = ACTIONS(2659), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2659), + [anon_sym_when] = ACTIONS(2659), + [anon_sym_COLON_COLON] = ACTIONS(2659), + [anon_sym_EQ] = ACTIONS(2659), + [anon_sym_PIPE_PIPE] = ACTIONS(2659), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2659), + [anon_sym_or] = ACTIONS(2659), + [anon_sym_AMP_AMP] = ACTIONS(2659), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2659), + [anon_sym_and] = ACTIONS(2659), + [anon_sym_EQ_EQ] = ACTIONS(2659), + [anon_sym_BANG_EQ] = ACTIONS(2659), + [anon_sym_EQ_TILDE] = ACTIONS(2659), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2659), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2659), + [anon_sym_LT_EQ] = ACTIONS(2659), + [anon_sym_GT_EQ] = ACTIONS(2659), + [anon_sym_PIPE_GT] = ACTIONS(2659), + [anon_sym_LT_LT_LT] = ACTIONS(2659), + [anon_sym_GT_GT_GT] = ACTIONS(2659), + [anon_sym_LT_LT_TILDE] = ACTIONS(2659), + [anon_sym_TILDE_GT_GT] = ACTIONS(2659), + [anon_sym_LT_TILDE] = ACTIONS(2659), + [anon_sym_TILDE_GT] = ACTIONS(2659), + [anon_sym_LT_TILDE_GT] = ACTIONS(2659), + [anon_sym_LT_PIPE_GT] = ACTIONS(2659), + [anon_sym_in] = ACTIONS(2659), + [anon_sym_PLUS_PLUS] = ACTIONS(2659), + [anon_sym_DASH_DASH] = ACTIONS(2659), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2659), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2659), + [anon_sym_DOT_DOT] = ACTIONS(2659), + [anon_sym_LT_GT] = ACTIONS(2659), + [anon_sym_STAR] = ACTIONS(2659), + [anon_sym_STAR_STAR] = ACTIONS(2659), + [anon_sym_CARET_CARET] = ACTIONS(2659), + [anon_sym_DASH_GT] = ACTIONS(2659), + [anon_sym_DOT] = ACTIONS(2659), + [anon_sym_end] = ACTIONS(2659), + [anon_sym_fn] = ACTIONS(2659), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2660), - [sym__not_in] = ACTIONS(2660), - [sym__quoted_atom_start] = ACTIONS(2660), + [sym__before_unary_op] = ACTIONS(2661), + [sym__not_in] = ACTIONS(2661), + [sym__quoted_atom_start] = ACTIONS(2661), }, [1035] = { - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2681), - [anon_sym_RPAREN] = ACTIONS(2681), - [aux_sym_identifier_token1] = ACTIONS(2681), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2681), - [sym_unused_identifier] = ACTIONS(2681), - [anon_sym___MODULE__] = ACTIONS(2681), - [anon_sym___DIR__] = ACTIONS(2681), - [anon_sym___ENV__] = ACTIONS(2681), - [anon_sym___CALLER__] = ACTIONS(2681), - [anon_sym___STACKTRACE__] = ACTIONS(2681), - [sym_alias] = ACTIONS(2681), - [sym_integer] = ACTIONS(2681), - [sym_float] = ACTIONS(2681), - [sym_char] = ACTIONS(2681), - [anon_sym_true] = ACTIONS(2681), - [anon_sym_false] = ACTIONS(2681), - [anon_sym_nil] = ACTIONS(2681), - [sym_atom] = ACTIONS(2681), - [anon_sym_DQUOTE] = ACTIONS(2681), - [anon_sym_SQUOTE] = ACTIONS(2681), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2681), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2681), - [anon_sym_LBRACE] = ACTIONS(2681), - [anon_sym_LBRACK] = ACTIONS(2681), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_GT] = ACTIONS(2681), - [anon_sym_PIPE] = ACTIONS(2681), - [anon_sym_SLASH] = ACTIONS(2681), - [anon_sym_TILDE] = ACTIONS(2681), - [sym_keyword] = ACTIONS(2681), - [anon_sym_LT_LT] = ACTIONS(2681), - [anon_sym_PERCENT] = ACTIONS(2681), - [anon_sym_AMP] = ACTIONS(2681), - [anon_sym_PLUS] = ACTIONS(2681), - [anon_sym_DASH] = ACTIONS(2681), - [anon_sym_BANG] = ACTIONS(2681), - [anon_sym_CARET] = ACTIONS(2681), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2681), - [anon_sym_not] = ACTIONS(2681), - [anon_sym_AT] = ACTIONS(2681), - [anon_sym_LT_DASH] = ACTIONS(2681), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2681), - [anon_sym_when] = ACTIONS(2681), - [anon_sym_COLON_COLON] = ACTIONS(2681), - [anon_sym_EQ] = ACTIONS(2681), - [anon_sym_PIPE_PIPE] = ACTIONS(2681), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2681), - [anon_sym_or] = ACTIONS(2681), - [anon_sym_AMP_AMP] = ACTIONS(2681), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2681), - [anon_sym_and] = ACTIONS(2681), - [anon_sym_EQ_EQ] = ACTIONS(2681), - [anon_sym_BANG_EQ] = ACTIONS(2681), - [anon_sym_EQ_TILDE] = ACTIONS(2681), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2681), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2681), - [anon_sym_LT_EQ] = ACTIONS(2681), - [anon_sym_GT_EQ] = ACTIONS(2681), - [anon_sym_PIPE_GT] = ACTIONS(2681), - [anon_sym_LT_LT_LT] = ACTIONS(2681), - [anon_sym_GT_GT_GT] = ACTIONS(2681), - [anon_sym_LT_LT_TILDE] = ACTIONS(2681), - [anon_sym_TILDE_GT_GT] = ACTIONS(2681), - [anon_sym_LT_TILDE] = ACTIONS(2681), - [anon_sym_TILDE_GT] = ACTIONS(2681), - [anon_sym_LT_TILDE_GT] = ACTIONS(2681), - [anon_sym_LT_PIPE_GT] = ACTIONS(2681), - [anon_sym_in] = ACTIONS(2681), - [anon_sym_PLUS_PLUS] = ACTIONS(2681), - [anon_sym_DASH_DASH] = ACTIONS(2681), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2681), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2681), - [anon_sym_DOT_DOT] = ACTIONS(2681), - [anon_sym_LT_GT] = ACTIONS(2681), - [anon_sym_STAR] = ACTIONS(2681), - [anon_sym_STAR_STAR] = ACTIONS(2681), - [anon_sym_CARET_CARET] = ACTIONS(2681), - [anon_sym_DASH_GT] = ACTIONS(2681), - [anon_sym_DOT] = ACTIONS(2681), - [anon_sym_fn] = ACTIONS(2681), + [aux_sym__terminator_token1] = ACTIONS(2681), + [anon_sym_SEMI] = ACTIONS(2679), + [anon_sym_LPAREN] = ACTIONS(2679), + [aux_sym_identifier_token1] = ACTIONS(2679), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2679), + [sym_unused_identifier] = ACTIONS(2679), + [anon_sym___MODULE__] = ACTIONS(2679), + [anon_sym___DIR__] = ACTIONS(2679), + [anon_sym___ENV__] = ACTIONS(2679), + [anon_sym___CALLER__] = ACTIONS(2679), + [anon_sym___STACKTRACE__] = ACTIONS(2679), + [sym_alias] = ACTIONS(2679), + [sym_integer] = ACTIONS(2679), + [sym_float] = ACTIONS(2679), + [sym_char] = ACTIONS(2679), + [anon_sym_true] = ACTIONS(2679), + [anon_sym_false] = ACTIONS(2679), + [anon_sym_nil] = ACTIONS(2679), + [sym_atom] = ACTIONS(2679), + [anon_sym_DQUOTE] = ACTIONS(2679), + [anon_sym_SQUOTE] = ACTIONS(2679), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2679), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2679), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_LT] = ACTIONS(2679), + [anon_sym_GT] = ACTIONS(2679), + [anon_sym_PIPE] = ACTIONS(2679), + [anon_sym_SLASH] = ACTIONS(2679), + [anon_sym_TILDE] = ACTIONS(2679), + [anon_sym_LT_LT] = ACTIONS(2679), + [anon_sym_PERCENT] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2679), + [anon_sym_PLUS] = ACTIONS(2679), + [anon_sym_DASH] = ACTIONS(2679), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_CARET] = ACTIONS(2679), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2679), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AT] = ACTIONS(2679), + [anon_sym_LT_DASH] = ACTIONS(2679), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2679), + [anon_sym_when] = ACTIONS(2679), + [anon_sym_COLON_COLON] = ACTIONS(2679), + [anon_sym_EQ] = ACTIONS(2679), + [anon_sym_PIPE_PIPE] = ACTIONS(2679), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2679), + [anon_sym_or] = ACTIONS(2679), + [anon_sym_AMP_AMP] = ACTIONS(2679), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2679), + [anon_sym_and] = ACTIONS(2679), + [anon_sym_EQ_EQ] = ACTIONS(2679), + [anon_sym_BANG_EQ] = ACTIONS(2679), + [anon_sym_EQ_TILDE] = ACTIONS(2679), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2679), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2679), + [anon_sym_LT_EQ] = ACTIONS(2679), + [anon_sym_GT_EQ] = ACTIONS(2679), + [anon_sym_PIPE_GT] = ACTIONS(2679), + [anon_sym_LT_LT_LT] = ACTIONS(2679), + [anon_sym_GT_GT_GT] = ACTIONS(2679), + [anon_sym_LT_LT_TILDE] = ACTIONS(2679), + [anon_sym_TILDE_GT_GT] = ACTIONS(2679), + [anon_sym_LT_TILDE] = ACTIONS(2679), + [anon_sym_TILDE_GT] = ACTIONS(2679), + [anon_sym_LT_TILDE_GT] = ACTIONS(2679), + [anon_sym_LT_PIPE_GT] = ACTIONS(2679), + [anon_sym_in] = ACTIONS(2679), + [anon_sym_PLUS_PLUS] = ACTIONS(2679), + [anon_sym_DASH_DASH] = ACTIONS(2679), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2679), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2679), + [anon_sym_DOT_DOT] = ACTIONS(2679), + [anon_sym_LT_GT] = ACTIONS(2679), + [anon_sym_STAR] = ACTIONS(2679), + [anon_sym_STAR_STAR] = ACTIONS(2679), + [anon_sym_CARET_CARET] = ACTIONS(2679), + [anon_sym_DASH_GT] = ACTIONS(2679), + [anon_sym_DOT] = ACTIONS(2679), + [anon_sym_end] = ACTIONS(2679), + [anon_sym_fn] = ACTIONS(2679), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2679), - [sym__not_in] = ACTIONS(2679), - [sym__quoted_atom_start] = ACTIONS(2679), + [sym__before_unary_op] = ACTIONS(2681), + [sym__not_in] = ACTIONS(2681), + [sym__quoted_atom_start] = ACTIONS(2681), }, [1036] = { - [aux_sym__terminator_token1] = ACTIONS(2679), - [anon_sym_SEMI] = ACTIONS(2681), - [anon_sym_LPAREN] = ACTIONS(2681), - [aux_sym_identifier_token1] = ACTIONS(2681), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2681), - [sym_unused_identifier] = ACTIONS(2681), - [anon_sym___MODULE__] = ACTIONS(2681), - [anon_sym___DIR__] = ACTIONS(2681), - [anon_sym___ENV__] = ACTIONS(2681), - [anon_sym___CALLER__] = ACTIONS(2681), - [anon_sym___STACKTRACE__] = ACTIONS(2681), - [sym_alias] = ACTIONS(2681), - [sym_integer] = ACTIONS(2681), - [sym_float] = ACTIONS(2681), - [sym_char] = ACTIONS(2681), - [anon_sym_true] = ACTIONS(2681), - [anon_sym_false] = ACTIONS(2681), - [anon_sym_nil] = ACTIONS(2681), - [sym_atom] = ACTIONS(2681), - [anon_sym_DQUOTE] = ACTIONS(2681), - [anon_sym_SQUOTE] = ACTIONS(2681), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2681), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2681), - [anon_sym_LBRACE] = ACTIONS(2681), - [anon_sym_LBRACK] = ACTIONS(2681), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_GT] = ACTIONS(2681), - [anon_sym_PIPE] = ACTIONS(2681), - [anon_sym_SLASH] = ACTIONS(2681), - [anon_sym_TILDE] = ACTIONS(2681), - [anon_sym_LT_LT] = ACTIONS(2681), - [anon_sym_PERCENT] = ACTIONS(2681), - [anon_sym_AMP] = ACTIONS(2681), - [anon_sym_PLUS] = ACTIONS(2681), - [anon_sym_DASH] = ACTIONS(2681), - [anon_sym_BANG] = ACTIONS(2681), - [anon_sym_CARET] = ACTIONS(2681), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2681), - [anon_sym_not] = ACTIONS(2681), - [anon_sym_AT] = ACTIONS(2681), - [anon_sym_LT_DASH] = ACTIONS(2681), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2681), - [anon_sym_when] = ACTIONS(2681), - [anon_sym_COLON_COLON] = ACTIONS(2681), - [anon_sym_EQ] = ACTIONS(2681), - [anon_sym_PIPE_PIPE] = ACTIONS(2681), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2681), - [anon_sym_or] = ACTIONS(2681), - [anon_sym_AMP_AMP] = ACTIONS(2681), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2681), - [anon_sym_and] = ACTIONS(2681), - [anon_sym_EQ_EQ] = ACTIONS(2681), - [anon_sym_BANG_EQ] = ACTIONS(2681), - [anon_sym_EQ_TILDE] = ACTIONS(2681), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2681), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2681), - [anon_sym_LT_EQ] = ACTIONS(2681), - [anon_sym_GT_EQ] = ACTIONS(2681), - [anon_sym_PIPE_GT] = ACTIONS(2681), - [anon_sym_LT_LT_LT] = ACTIONS(2681), - [anon_sym_GT_GT_GT] = ACTIONS(2681), - [anon_sym_LT_LT_TILDE] = ACTIONS(2681), - [anon_sym_TILDE_GT_GT] = ACTIONS(2681), - [anon_sym_LT_TILDE] = ACTIONS(2681), - [anon_sym_TILDE_GT] = ACTIONS(2681), - [anon_sym_LT_TILDE_GT] = ACTIONS(2681), - [anon_sym_LT_PIPE_GT] = ACTIONS(2681), - [anon_sym_in] = ACTIONS(2681), - [anon_sym_PLUS_PLUS] = ACTIONS(2681), - [anon_sym_DASH_DASH] = ACTIONS(2681), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2681), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2681), - [anon_sym_DOT_DOT] = ACTIONS(2681), - [anon_sym_LT_GT] = ACTIONS(2681), - [anon_sym_STAR] = ACTIONS(2681), - [anon_sym_STAR_STAR] = ACTIONS(2681), - [anon_sym_CARET_CARET] = ACTIONS(2681), - [anon_sym_DASH_GT] = ACTIONS(2681), - [anon_sym_DOT] = ACTIONS(2681), - [anon_sym_end] = ACTIONS(2681), - [anon_sym_fn] = ACTIONS(2681), + [aux_sym__terminator_token1] = ACTIONS(2681), + [anon_sym_SEMI] = ACTIONS(2679), + [anon_sym_LPAREN] = ACTIONS(2679), + [anon_sym_RPAREN] = ACTIONS(2679), + [aux_sym_identifier_token1] = ACTIONS(2679), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2679), + [sym_unused_identifier] = ACTIONS(2679), + [anon_sym___MODULE__] = ACTIONS(2679), + [anon_sym___DIR__] = ACTIONS(2679), + [anon_sym___ENV__] = ACTIONS(2679), + [anon_sym___CALLER__] = ACTIONS(2679), + [anon_sym___STACKTRACE__] = ACTIONS(2679), + [sym_alias] = ACTIONS(2679), + [sym_integer] = ACTIONS(2679), + [sym_float] = ACTIONS(2679), + [sym_char] = ACTIONS(2679), + [anon_sym_true] = ACTIONS(2679), + [anon_sym_false] = ACTIONS(2679), + [anon_sym_nil] = ACTIONS(2679), + [sym_atom] = ACTIONS(2679), + [anon_sym_DQUOTE] = ACTIONS(2679), + [anon_sym_SQUOTE] = ACTIONS(2679), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2679), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2679), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_LT] = ACTIONS(2679), + [anon_sym_GT] = ACTIONS(2679), + [anon_sym_PIPE] = ACTIONS(2679), + [anon_sym_SLASH] = ACTIONS(2679), + [anon_sym_TILDE] = ACTIONS(2679), + [anon_sym_LT_LT] = ACTIONS(2679), + [anon_sym_PERCENT] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2679), + [anon_sym_PLUS] = ACTIONS(2679), + [anon_sym_DASH] = ACTIONS(2679), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_CARET] = ACTIONS(2679), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2679), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AT] = ACTIONS(2679), + [anon_sym_LT_DASH] = ACTIONS(2679), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2679), + [anon_sym_when] = ACTIONS(2679), + [anon_sym_COLON_COLON] = ACTIONS(2679), + [anon_sym_EQ] = ACTIONS(2679), + [anon_sym_PIPE_PIPE] = ACTIONS(2679), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2679), + [anon_sym_or] = ACTIONS(2679), + [anon_sym_AMP_AMP] = ACTIONS(2679), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2679), + [anon_sym_and] = ACTIONS(2679), + [anon_sym_EQ_EQ] = ACTIONS(2679), + [anon_sym_BANG_EQ] = ACTIONS(2679), + [anon_sym_EQ_TILDE] = ACTIONS(2679), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2679), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2679), + [anon_sym_LT_EQ] = ACTIONS(2679), + [anon_sym_GT_EQ] = ACTIONS(2679), + [anon_sym_PIPE_GT] = ACTIONS(2679), + [anon_sym_LT_LT_LT] = ACTIONS(2679), + [anon_sym_GT_GT_GT] = ACTIONS(2679), + [anon_sym_LT_LT_TILDE] = ACTIONS(2679), + [anon_sym_TILDE_GT_GT] = ACTIONS(2679), + [anon_sym_LT_TILDE] = ACTIONS(2679), + [anon_sym_TILDE_GT] = ACTIONS(2679), + [anon_sym_LT_TILDE_GT] = ACTIONS(2679), + [anon_sym_LT_PIPE_GT] = ACTIONS(2679), + [anon_sym_in] = ACTIONS(2679), + [anon_sym_PLUS_PLUS] = ACTIONS(2679), + [anon_sym_DASH_DASH] = ACTIONS(2679), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2679), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2679), + [anon_sym_DOT_DOT] = ACTIONS(2679), + [anon_sym_LT_GT] = ACTIONS(2679), + [anon_sym_STAR] = ACTIONS(2679), + [anon_sym_STAR_STAR] = ACTIONS(2679), + [anon_sym_CARET_CARET] = ACTIONS(2679), + [anon_sym_DASH_GT] = ACTIONS(2679), + [anon_sym_DOT] = ACTIONS(2679), + [anon_sym_fn] = ACTIONS(2679), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2679), - [sym__not_in] = ACTIONS(2679), - [sym__quoted_atom_start] = ACTIONS(2679), + [sym__before_unary_op] = ACTIONS(2681), + [sym__not_in] = ACTIONS(2681), + [sym__quoted_atom_start] = ACTIONS(2681), }, [1037] = { - [aux_sym__terminator_token1] = ACTIONS(2679), - [anon_sym_SEMI] = ACTIONS(2681), - [anon_sym_LPAREN] = ACTIONS(2681), - [anon_sym_RPAREN] = ACTIONS(2681), - [aux_sym_identifier_token1] = ACTIONS(2681), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2681), - [sym_unused_identifier] = ACTIONS(2681), - [anon_sym___MODULE__] = ACTIONS(2681), - [anon_sym___DIR__] = ACTIONS(2681), - [anon_sym___ENV__] = ACTIONS(2681), - [anon_sym___CALLER__] = ACTIONS(2681), - [anon_sym___STACKTRACE__] = ACTIONS(2681), - [sym_alias] = ACTIONS(2681), - [sym_integer] = ACTIONS(2681), - [sym_float] = ACTIONS(2681), - [sym_char] = ACTIONS(2681), - [anon_sym_true] = ACTIONS(2681), - [anon_sym_false] = ACTIONS(2681), - [anon_sym_nil] = ACTIONS(2681), - [sym_atom] = ACTIONS(2681), - [anon_sym_DQUOTE] = ACTIONS(2681), - [anon_sym_SQUOTE] = ACTIONS(2681), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2681), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2681), - [anon_sym_LBRACE] = ACTIONS(2681), - [anon_sym_LBRACK] = ACTIONS(2681), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_GT] = ACTIONS(2681), - [anon_sym_PIPE] = ACTIONS(2681), - [anon_sym_SLASH] = ACTIONS(2681), - [anon_sym_TILDE] = ACTIONS(2681), - [anon_sym_LT_LT] = ACTIONS(2681), - [anon_sym_PERCENT] = ACTIONS(2681), - [anon_sym_AMP] = ACTIONS(2681), - [anon_sym_PLUS] = ACTIONS(2681), - [anon_sym_DASH] = ACTIONS(2681), - [anon_sym_BANG] = ACTIONS(2681), - [anon_sym_CARET] = ACTIONS(2681), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2681), - [anon_sym_not] = ACTIONS(2681), - [anon_sym_AT] = ACTIONS(2681), - [anon_sym_LT_DASH] = ACTIONS(2681), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2681), - [anon_sym_when] = ACTIONS(2681), - [anon_sym_COLON_COLON] = ACTIONS(2681), - [anon_sym_EQ] = ACTIONS(2681), - [anon_sym_PIPE_PIPE] = ACTIONS(2681), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2681), - [anon_sym_or] = ACTIONS(2681), - [anon_sym_AMP_AMP] = ACTIONS(2681), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2681), - [anon_sym_and] = ACTIONS(2681), - [anon_sym_EQ_EQ] = ACTIONS(2681), - [anon_sym_BANG_EQ] = ACTIONS(2681), - [anon_sym_EQ_TILDE] = ACTIONS(2681), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2681), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2681), - [anon_sym_LT_EQ] = ACTIONS(2681), - [anon_sym_GT_EQ] = ACTIONS(2681), - [anon_sym_PIPE_GT] = ACTIONS(2681), - [anon_sym_LT_LT_LT] = ACTIONS(2681), - [anon_sym_GT_GT_GT] = ACTIONS(2681), - [anon_sym_LT_LT_TILDE] = ACTIONS(2681), - [anon_sym_TILDE_GT_GT] = ACTIONS(2681), - [anon_sym_LT_TILDE] = ACTIONS(2681), - [anon_sym_TILDE_GT] = ACTIONS(2681), - [anon_sym_LT_TILDE_GT] = ACTIONS(2681), - [anon_sym_LT_PIPE_GT] = ACTIONS(2681), - [anon_sym_in] = ACTIONS(2681), - [anon_sym_PLUS_PLUS] = ACTIONS(2681), - [anon_sym_DASH_DASH] = ACTIONS(2681), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2681), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2681), - [anon_sym_DOT_DOT] = ACTIONS(2681), - [anon_sym_LT_GT] = ACTIONS(2681), - [anon_sym_STAR] = ACTIONS(2681), - [anon_sym_STAR_STAR] = ACTIONS(2681), - [anon_sym_CARET_CARET] = ACTIONS(2681), - [anon_sym_DASH_GT] = ACTIONS(2681), - [anon_sym_DOT] = ACTIONS(2681), - [anon_sym_fn] = ACTIONS(2681), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2679), + [anon_sym_RPAREN] = ACTIONS(2679), + [aux_sym_identifier_token1] = ACTIONS(2679), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2679), + [sym_unused_identifier] = ACTIONS(2679), + [anon_sym___MODULE__] = ACTIONS(2679), + [anon_sym___DIR__] = ACTIONS(2679), + [anon_sym___ENV__] = ACTIONS(2679), + [anon_sym___CALLER__] = ACTIONS(2679), + [anon_sym___STACKTRACE__] = ACTIONS(2679), + [sym_alias] = ACTIONS(2679), + [sym_integer] = ACTIONS(2679), + [sym_float] = ACTIONS(2679), + [sym_char] = ACTIONS(2679), + [anon_sym_true] = ACTIONS(2679), + [anon_sym_false] = ACTIONS(2679), + [anon_sym_nil] = ACTIONS(2679), + [sym_atom] = ACTIONS(2679), + [anon_sym_DQUOTE] = ACTIONS(2679), + [anon_sym_SQUOTE] = ACTIONS(2679), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2679), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2679), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_LT] = ACTIONS(2679), + [anon_sym_GT] = ACTIONS(2679), + [anon_sym_PIPE] = ACTIONS(2679), + [anon_sym_SLASH] = ACTIONS(2679), + [anon_sym_TILDE] = ACTIONS(2679), + [sym_keyword] = ACTIONS(2679), + [anon_sym_LT_LT] = ACTIONS(2679), + [anon_sym_PERCENT] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2679), + [anon_sym_PLUS] = ACTIONS(2679), + [anon_sym_DASH] = ACTIONS(2679), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_CARET] = ACTIONS(2679), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2679), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AT] = ACTIONS(2679), + [anon_sym_LT_DASH] = ACTIONS(2679), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2679), + [anon_sym_when] = ACTIONS(2679), + [anon_sym_COLON_COLON] = ACTIONS(2679), + [anon_sym_EQ] = ACTIONS(2679), + [anon_sym_PIPE_PIPE] = ACTIONS(2679), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2679), + [anon_sym_or] = ACTIONS(2679), + [anon_sym_AMP_AMP] = ACTIONS(2679), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2679), + [anon_sym_and] = ACTIONS(2679), + [anon_sym_EQ_EQ] = ACTIONS(2679), + [anon_sym_BANG_EQ] = ACTIONS(2679), + [anon_sym_EQ_TILDE] = ACTIONS(2679), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2679), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2679), + [anon_sym_LT_EQ] = ACTIONS(2679), + [anon_sym_GT_EQ] = ACTIONS(2679), + [anon_sym_PIPE_GT] = ACTIONS(2679), + [anon_sym_LT_LT_LT] = ACTIONS(2679), + [anon_sym_GT_GT_GT] = ACTIONS(2679), + [anon_sym_LT_LT_TILDE] = ACTIONS(2679), + [anon_sym_TILDE_GT_GT] = ACTIONS(2679), + [anon_sym_LT_TILDE] = ACTIONS(2679), + [anon_sym_TILDE_GT] = ACTIONS(2679), + [anon_sym_LT_TILDE_GT] = ACTIONS(2679), + [anon_sym_LT_PIPE_GT] = ACTIONS(2679), + [anon_sym_in] = ACTIONS(2679), + [anon_sym_PLUS_PLUS] = ACTIONS(2679), + [anon_sym_DASH_DASH] = ACTIONS(2679), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2679), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2679), + [anon_sym_DOT_DOT] = ACTIONS(2679), + [anon_sym_LT_GT] = ACTIONS(2679), + [anon_sym_STAR] = ACTIONS(2679), + [anon_sym_STAR_STAR] = ACTIONS(2679), + [anon_sym_CARET_CARET] = ACTIONS(2679), + [anon_sym_DASH_GT] = ACTIONS(2679), + [anon_sym_DOT] = ACTIONS(2679), + [anon_sym_fn] = ACTIONS(2679), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2679), - [sym__not_in] = ACTIONS(2679), - [sym__quoted_atom_start] = ACTIONS(2679), + [sym__before_unary_op] = ACTIONS(2681), + [sym__not_in] = ACTIONS(2681), + [sym__quoted_atom_start] = ACTIONS(2681), }, [1038] = { - [sym__identifier] = STATE(968), - [sym_identifier] = STATE(968), - [sym_special_identifier] = STATE(968), - [sym__quoted_i_double] = STATE(944), - [sym__quoted_i_single] = STATE(966), - [sym_tuple] = STATE(1607), - [sym_operator_identifier] = STATE(968), + [sym__identifier] = STATE(956), + [sym_identifier] = STATE(956), + [sym_special_identifier] = STATE(956), + [sym__quoted_i_double] = STATE(957), + [sym__quoted_i_single] = STATE(958), + [sym_tuple] = STATE(1253), + [sym_operator_identifier] = STATE(956), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(2713), - [aux_sym_identifier_token1] = ACTIONS(456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), [sym_unused_identifier] = ACTIONS(2715), - [anon_sym___MODULE__] = ACTIONS(460), - [anon_sym___DIR__] = ACTIONS(460), - [anon_sym___ENV__] = ACTIONS(460), - [anon_sym___CALLER__] = ACTIONS(460), - [anon_sym___STACKTRACE__] = ACTIONS(460), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), [sym_alias] = ACTIONS(2717), [anon_sym_true] = ACTIONS(2719), [anon_sym_false] = ACTIONS(2719), [anon_sym_nil] = ACTIONS(2719), [anon_sym_DQUOTE] = ACTIONS(2721), [anon_sym_SQUOTE] = ACTIONS(2723), - [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(215), [anon_sym_LT] = ACTIONS(2725), [anon_sym_GT] = ACTIONS(2725), [anon_sym_PIPE] = ACTIONS(2725), @@ -153231,30 +153869,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2737), }, [1039] = { - [sym__identifier] = STATE(978), - [sym_identifier] = STATE(978), - [sym_special_identifier] = STATE(978), - [sym__quoted_i_double] = STATE(970), - [sym__quoted_i_single] = STATE(965), - [sym_tuple] = STATE(1223), - [sym_operator_identifier] = STATE(978), + [sym__identifier] = STATE(917), + [sym_identifier] = STATE(917), + [sym_special_identifier] = STATE(917), + [sym__quoted_i_double] = STATE(913), + [sym__quoted_i_single] = STATE(914), + [sym_tuple] = STATE(1434), + [sym_operator_identifier] = STATE(917), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(2713), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), [sym_unused_identifier] = ACTIONS(2739), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), [sym_alias] = ACTIONS(2741), [anon_sym_true] = ACTIONS(2743), [anon_sym_false] = ACTIONS(2743), [anon_sym_nil] = ACTIONS(2743), [anon_sym_DQUOTE] = ACTIONS(2745), [anon_sym_SQUOTE] = ACTIONS(2747), - [anon_sym_LBRACE] = ACTIONS(272), + [anon_sym_LBRACE] = ACTIONS(267), [anon_sym_LT] = ACTIONS(2749), [anon_sym_GT] = ACTIONS(2749), [anon_sym_PIPE] = ACTIONS(2749), @@ -153319,118 +153957,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2761), }, [1040] = { - [ts_builtin_sym_end] = ACTIONS(2679), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2681), - [aux_sym_identifier_token1] = ACTIONS(2681), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2681), - [sym_unused_identifier] = ACTIONS(2681), - [anon_sym___MODULE__] = ACTIONS(2681), - [anon_sym___DIR__] = ACTIONS(2681), - [anon_sym___ENV__] = ACTIONS(2681), - [anon_sym___CALLER__] = ACTIONS(2681), - [anon_sym___STACKTRACE__] = ACTIONS(2681), - [sym_alias] = ACTIONS(2681), - [sym_integer] = ACTIONS(2681), - [sym_float] = ACTIONS(2681), - [sym_char] = ACTIONS(2681), - [anon_sym_true] = ACTIONS(2681), - [anon_sym_false] = ACTIONS(2681), - [anon_sym_nil] = ACTIONS(2681), - [sym_atom] = ACTIONS(2681), - [anon_sym_DQUOTE] = ACTIONS(2681), - [anon_sym_SQUOTE] = ACTIONS(2681), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2681), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2681), - [anon_sym_LBRACE] = ACTIONS(2681), - [anon_sym_LBRACK] = ACTIONS(2681), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_GT] = ACTIONS(2681), - [anon_sym_PIPE] = ACTIONS(2681), - [anon_sym_SLASH] = ACTIONS(2681), - [anon_sym_TILDE] = ACTIONS(2681), - [anon_sym_LT_LT] = ACTIONS(2681), - [anon_sym_PERCENT] = ACTIONS(2681), - [anon_sym_AMP] = ACTIONS(2681), - [anon_sym_PLUS] = ACTIONS(2681), - [anon_sym_DASH] = ACTIONS(2681), - [anon_sym_BANG] = ACTIONS(2681), - [anon_sym_CARET] = ACTIONS(2681), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2681), - [anon_sym_not] = ACTIONS(2681), - [anon_sym_AT] = ACTIONS(2681), - [anon_sym_LT_DASH] = ACTIONS(2681), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2681), - [anon_sym_when] = ACTIONS(2681), - [anon_sym_COLON_COLON] = ACTIONS(2681), - [anon_sym_EQ] = ACTIONS(2681), - [anon_sym_PIPE_PIPE] = ACTIONS(2681), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2681), - [anon_sym_or] = ACTIONS(2681), - [anon_sym_AMP_AMP] = ACTIONS(2681), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2681), - [anon_sym_and] = ACTIONS(2681), - [anon_sym_EQ_EQ] = ACTIONS(2681), - [anon_sym_BANG_EQ] = ACTIONS(2681), - [anon_sym_EQ_TILDE] = ACTIONS(2681), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2681), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2681), - [anon_sym_LT_EQ] = ACTIONS(2681), - [anon_sym_GT_EQ] = ACTIONS(2681), - [anon_sym_PIPE_GT] = ACTIONS(2681), - [anon_sym_LT_LT_LT] = ACTIONS(2681), - [anon_sym_GT_GT_GT] = ACTIONS(2681), - [anon_sym_LT_LT_TILDE] = ACTIONS(2681), - [anon_sym_TILDE_GT_GT] = ACTIONS(2681), - [anon_sym_LT_TILDE] = ACTIONS(2681), - [anon_sym_TILDE_GT] = ACTIONS(2681), - [anon_sym_LT_TILDE_GT] = ACTIONS(2681), - [anon_sym_LT_PIPE_GT] = ACTIONS(2681), - [anon_sym_in] = ACTIONS(2681), - [anon_sym_PLUS_PLUS] = ACTIONS(2681), - [anon_sym_DASH_DASH] = ACTIONS(2681), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2681), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2681), - [anon_sym_DOT_DOT] = ACTIONS(2681), - [anon_sym_LT_GT] = ACTIONS(2681), - [anon_sym_STAR] = ACTIONS(2681), - [anon_sym_STAR_STAR] = ACTIONS(2681), - [anon_sym_CARET_CARET] = ACTIONS(2681), - [anon_sym_DASH_GT] = ACTIONS(2681), - [anon_sym_DOT] = ACTIONS(2681), - [anon_sym_fn] = ACTIONS(2681), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2679), - [sym__not_in] = ACTIONS(2679), - [sym__quoted_atom_start] = ACTIONS(2679), - }, - [1041] = { - [sym__identifier] = STATE(915), - [sym_identifier] = STATE(915), - [sym_special_identifier] = STATE(915), - [sym__quoted_i_double] = STATE(914), - [sym__quoted_i_single] = STATE(913), - [sym_tuple] = STATE(1369), - [sym_operator_identifier] = STATE(915), + [sym__identifier] = STATE(933), + [sym_identifier] = STATE(933), + [sym_special_identifier] = STATE(933), + [sym__quoted_i_double] = STATE(932), + [sym__quoted_i_single] = STATE(931), + [sym_tuple] = STATE(2089), + [sym_operator_identifier] = STATE(933), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(2713), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), [sym_unused_identifier] = ACTIONS(2763), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), [sym_alias] = ACTIONS(2765), [anon_sym_true] = ACTIONS(2767), [anon_sym_false] = ACTIONS(2767), [anon_sym_nil] = ACTIONS(2767), [anon_sym_DQUOTE] = ACTIONS(2769), [anon_sym_SQUOTE] = ACTIONS(2771), - [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACE] = ACTIONS(385), + [anon_sym_LT] = ACTIONS(2773), + [anon_sym_GT] = ACTIONS(2773), + [anon_sym_PIPE] = ACTIONS(2773), + [anon_sym_SLASH] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2775), + [anon_sym_PLUS] = ACTIONS(2777), + [anon_sym_DASH] = ACTIONS(2777), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_CARET] = ACTIONS(2777), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2777), + [anon_sym_not] = ACTIONS(2779), + [anon_sym_AT] = ACTIONS(2781), + [anon_sym_LT_DASH] = ACTIONS(2773), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2773), + [anon_sym_when] = ACTIONS(2783), + [anon_sym_COLON_COLON] = ACTIONS(2773), + [anon_sym_EQ] = ACTIONS(2773), + [anon_sym_PIPE_PIPE] = ACTIONS(2773), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2773), + [anon_sym_or] = ACTIONS(2783), + [anon_sym_AMP_AMP] = ACTIONS(2773), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2773), + [anon_sym_and] = ACTIONS(2783), + [anon_sym_EQ_EQ] = ACTIONS(2773), + [anon_sym_BANG_EQ] = ACTIONS(2773), + [anon_sym_EQ_TILDE] = ACTIONS(2773), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2773), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2773), + [anon_sym_LT_EQ] = ACTIONS(2773), + [anon_sym_GT_EQ] = ACTIONS(2773), + [anon_sym_PIPE_GT] = ACTIONS(2773), + [anon_sym_LT_LT_LT] = ACTIONS(2773), + [anon_sym_GT_GT_GT] = ACTIONS(2773), + [anon_sym_LT_LT_TILDE] = ACTIONS(2773), + [anon_sym_TILDE_GT_GT] = ACTIONS(2773), + [anon_sym_LT_TILDE] = ACTIONS(2773), + [anon_sym_TILDE_GT] = ACTIONS(2773), + [anon_sym_LT_TILDE_GT] = ACTIONS(2773), + [anon_sym_LT_PIPE_GT] = ACTIONS(2773), + [anon_sym_in] = ACTIONS(2783), + [anon_sym_PLUS_PLUS] = ACTIONS(2773), + [anon_sym_DASH_DASH] = ACTIONS(2773), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2773), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2773), + [anon_sym_DOT_DOT] = ACTIONS(2773), + [anon_sym_LT_GT] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2773), + [anon_sym_STAR_STAR] = ACTIONS(2773), + [anon_sym_CARET_CARET] = ACTIONS(2773), + [anon_sym_DASH_GT] = ACTIONS(2773), + [anon_sym_DOT] = ACTIONS(2773), + [anon_sym_after] = ACTIONS(2767), + [anon_sym_catch] = ACTIONS(2767), + [anon_sym_do] = ACTIONS(2767), + [anon_sym_else] = ACTIONS(2767), + [anon_sym_end] = ACTIONS(2767), + [anon_sym_fn] = ACTIONS(2767), + [anon_sym_rescue] = ACTIONS(2767), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2785), + }, + [1041] = { + [sym__identifier] = STATE(933), + [sym_identifier] = STATE(933), + [sym_special_identifier] = STATE(933), + [sym__quoted_i_double] = STATE(932), + [sym__quoted_i_single] = STATE(931), + [sym_tuple] = STATE(3082), + [sym_operator_identifier] = STATE(933), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2713), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(2763), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(2787), + [anon_sym_true] = ACTIONS(2767), + [anon_sym_false] = ACTIONS(2767), + [anon_sym_nil] = ACTIONS(2767), + [anon_sym_DQUOTE] = ACTIONS(2769), + [anon_sym_SQUOTE] = ACTIONS(2771), + [anon_sym_LBRACE] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(2773), [anon_sym_GT] = ACTIONS(2773), [anon_sym_PIPE] = ACTIONS(2773), @@ -153495,294 +154133,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2785), }, [1042] = { - [sym__identifier] = STATE(915), - [sym_identifier] = STATE(915), - [sym_special_identifier] = STATE(915), - [sym__quoted_i_double] = STATE(914), - [sym__quoted_i_single] = STATE(913), - [sym_tuple] = STATE(1223), - [sym_operator_identifier] = STATE(915), + [sym__identifier] = STATE(917), + [sym_identifier] = STATE(917), + [sym_special_identifier] = STATE(917), + [sym__quoted_i_double] = STATE(913), + [sym__quoted_i_single] = STATE(914), + [sym_tuple] = STATE(1877), + [sym_operator_identifier] = STATE(917), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(2713), [aux_sym_identifier_token1] = ACTIONS(195), [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(2763), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), - [sym_alias] = ACTIONS(2741), - [anon_sym_true] = ACTIONS(2767), - [anon_sym_false] = ACTIONS(2767), - [anon_sym_nil] = ACTIONS(2767), - [anon_sym_DQUOTE] = ACTIONS(2769), - [anon_sym_SQUOTE] = ACTIONS(2771), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_LT] = ACTIONS(2773), - [anon_sym_GT] = ACTIONS(2773), - [anon_sym_PIPE] = ACTIONS(2773), - [anon_sym_SLASH] = ACTIONS(2773), - [anon_sym_AMP] = ACTIONS(2775), - [anon_sym_PLUS] = ACTIONS(2777), - [anon_sym_DASH] = ACTIONS(2777), - [anon_sym_BANG] = ACTIONS(2777), - [anon_sym_CARET] = ACTIONS(2777), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2777), - [anon_sym_not] = ACTIONS(2779), - [anon_sym_AT] = ACTIONS(2781), - [anon_sym_LT_DASH] = ACTIONS(2773), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2773), - [anon_sym_when] = ACTIONS(2783), - [anon_sym_COLON_COLON] = ACTIONS(2773), - [anon_sym_EQ] = ACTIONS(2773), - [anon_sym_PIPE_PIPE] = ACTIONS(2773), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2773), - [anon_sym_or] = ACTIONS(2783), - [anon_sym_AMP_AMP] = ACTIONS(2773), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2773), - [anon_sym_and] = ACTIONS(2783), - [anon_sym_EQ_EQ] = ACTIONS(2773), - [anon_sym_BANG_EQ] = ACTIONS(2773), - [anon_sym_EQ_TILDE] = ACTIONS(2773), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2773), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2773), - [anon_sym_LT_EQ] = ACTIONS(2773), - [anon_sym_GT_EQ] = ACTIONS(2773), - [anon_sym_PIPE_GT] = ACTIONS(2773), - [anon_sym_LT_LT_LT] = ACTIONS(2773), - [anon_sym_GT_GT_GT] = ACTIONS(2773), - [anon_sym_LT_LT_TILDE] = ACTIONS(2773), - [anon_sym_TILDE_GT_GT] = ACTIONS(2773), - [anon_sym_LT_TILDE] = ACTIONS(2773), - [anon_sym_TILDE_GT] = ACTIONS(2773), - [anon_sym_LT_TILDE_GT] = ACTIONS(2773), - [anon_sym_LT_PIPE_GT] = ACTIONS(2773), - [anon_sym_in] = ACTIONS(2783), - [anon_sym_PLUS_PLUS] = ACTIONS(2773), - [anon_sym_DASH_DASH] = ACTIONS(2773), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2773), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2773), - [anon_sym_DOT_DOT] = ACTIONS(2773), - [anon_sym_LT_GT] = ACTIONS(2773), - [anon_sym_STAR] = ACTIONS(2773), - [anon_sym_STAR_STAR] = ACTIONS(2773), - [anon_sym_CARET_CARET] = ACTIONS(2773), - [anon_sym_DASH_GT] = ACTIONS(2773), - [anon_sym_DOT] = ACTIONS(2773), - [anon_sym_after] = ACTIONS(2767), - [anon_sym_catch] = ACTIONS(2767), - [anon_sym_do] = ACTIONS(2767), - [anon_sym_else] = ACTIONS(2767), - [anon_sym_end] = ACTIONS(2767), - [anon_sym_fn] = ACTIONS(2767), - [anon_sym_rescue] = ACTIONS(2767), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2785), - }, - [1043] = { - [sym__identifier] = STATE(915), - [sym_identifier] = STATE(915), - [sym_special_identifier] = STATE(915), - [sym__quoted_i_double] = STATE(914), - [sym__quoted_i_single] = STATE(913), - [sym_tuple] = STATE(1607), - [sym_operator_identifier] = STATE(915), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2713), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), - [sym_unused_identifier] = ACTIONS(2763), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), - [sym_alias] = ACTIONS(2717), - [anon_sym_true] = ACTIONS(2767), - [anon_sym_false] = ACTIONS(2767), - [anon_sym_nil] = ACTIONS(2767), - [anon_sym_DQUOTE] = ACTIONS(2769), - [anon_sym_SQUOTE] = ACTIONS(2771), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LT] = ACTIONS(2773), - [anon_sym_GT] = ACTIONS(2773), - [anon_sym_PIPE] = ACTIONS(2773), - [anon_sym_SLASH] = ACTIONS(2773), - [anon_sym_AMP] = ACTIONS(2775), - [anon_sym_PLUS] = ACTIONS(2777), - [anon_sym_DASH] = ACTIONS(2777), - [anon_sym_BANG] = ACTIONS(2777), - [anon_sym_CARET] = ACTIONS(2777), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2777), - [anon_sym_not] = ACTIONS(2779), - [anon_sym_AT] = ACTIONS(2781), - [anon_sym_LT_DASH] = ACTIONS(2773), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2773), - [anon_sym_when] = ACTIONS(2783), - [anon_sym_COLON_COLON] = ACTIONS(2773), - [anon_sym_EQ] = ACTIONS(2773), - [anon_sym_PIPE_PIPE] = ACTIONS(2773), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2773), - [anon_sym_or] = ACTIONS(2783), - [anon_sym_AMP_AMP] = ACTIONS(2773), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2773), - [anon_sym_and] = ACTIONS(2783), - [anon_sym_EQ_EQ] = ACTIONS(2773), - [anon_sym_BANG_EQ] = ACTIONS(2773), - [anon_sym_EQ_TILDE] = ACTIONS(2773), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2773), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2773), - [anon_sym_LT_EQ] = ACTIONS(2773), - [anon_sym_GT_EQ] = ACTIONS(2773), - [anon_sym_PIPE_GT] = ACTIONS(2773), - [anon_sym_LT_LT_LT] = ACTIONS(2773), - [anon_sym_GT_GT_GT] = ACTIONS(2773), - [anon_sym_LT_LT_TILDE] = ACTIONS(2773), - [anon_sym_TILDE_GT_GT] = ACTIONS(2773), - [anon_sym_LT_TILDE] = ACTIONS(2773), - [anon_sym_TILDE_GT] = ACTIONS(2773), - [anon_sym_LT_TILDE_GT] = ACTIONS(2773), - [anon_sym_LT_PIPE_GT] = ACTIONS(2773), - [anon_sym_in] = ACTIONS(2783), - [anon_sym_PLUS_PLUS] = ACTIONS(2773), - [anon_sym_DASH_DASH] = ACTIONS(2773), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2773), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2773), - [anon_sym_DOT_DOT] = ACTIONS(2773), - [anon_sym_LT_GT] = ACTIONS(2773), - [anon_sym_STAR] = ACTIONS(2773), - [anon_sym_STAR_STAR] = ACTIONS(2773), - [anon_sym_CARET_CARET] = ACTIONS(2773), - [anon_sym_DASH_GT] = ACTIONS(2773), - [anon_sym_DOT] = ACTIONS(2773), - [anon_sym_after] = ACTIONS(2767), - [anon_sym_catch] = ACTIONS(2767), - [anon_sym_do] = ACTIONS(2767), - [anon_sym_else] = ACTIONS(2767), - [anon_sym_end] = ACTIONS(2767), - [anon_sym_fn] = ACTIONS(2767), - [anon_sym_rescue] = ACTIONS(2767), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2785), - }, - [1044] = { - [sym__identifier] = STATE(968), - [sym_identifier] = STATE(968), - [sym_special_identifier] = STATE(968), - [sym__quoted_i_double] = STATE(944), - [sym__quoted_i_single] = STATE(966), - [sym_tuple] = STATE(1369), - [sym_operator_identifier] = STATE(968), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2713), - [aux_sym_identifier_token1] = ACTIONS(456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(456), - [sym_unused_identifier] = ACTIONS(2715), - [anon_sym___MODULE__] = ACTIONS(460), - [anon_sym___DIR__] = ACTIONS(460), - [anon_sym___ENV__] = ACTIONS(460), - [anon_sym___CALLER__] = ACTIONS(460), - [anon_sym___STACKTRACE__] = ACTIONS(460), - [sym_alias] = ACTIONS(2765), - [anon_sym_true] = ACTIONS(2719), - [anon_sym_false] = ACTIONS(2719), - [anon_sym_nil] = ACTIONS(2719), - [anon_sym_DQUOTE] = ACTIONS(2721), - [anon_sym_SQUOTE] = ACTIONS(2723), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_GT] = ACTIONS(2725), - [anon_sym_PIPE] = ACTIONS(2725), - [anon_sym_SLASH] = ACTIONS(2725), - [anon_sym_AMP] = ACTIONS(2727), - [anon_sym_PLUS] = ACTIONS(2729), - [anon_sym_DASH] = ACTIONS(2729), - [anon_sym_BANG] = ACTIONS(2729), - [anon_sym_CARET] = ACTIONS(2729), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2729), - [anon_sym_not] = ACTIONS(2731), - [anon_sym_AT] = ACTIONS(2733), - [anon_sym_LT_DASH] = ACTIONS(2725), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2725), - [anon_sym_when] = ACTIONS(2735), - [anon_sym_COLON_COLON] = ACTIONS(2725), - [anon_sym_EQ] = ACTIONS(2725), - [anon_sym_PIPE_PIPE] = ACTIONS(2725), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2725), - [anon_sym_or] = ACTIONS(2735), - [anon_sym_AMP_AMP] = ACTIONS(2725), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2725), - [anon_sym_and] = ACTIONS(2735), - [anon_sym_EQ_EQ] = ACTIONS(2725), - [anon_sym_BANG_EQ] = ACTIONS(2725), - [anon_sym_EQ_TILDE] = ACTIONS(2725), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2725), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2725), - [anon_sym_LT_EQ] = ACTIONS(2725), - [anon_sym_GT_EQ] = ACTIONS(2725), - [anon_sym_PIPE_GT] = ACTIONS(2725), - [anon_sym_LT_LT_LT] = ACTIONS(2725), - [anon_sym_GT_GT_GT] = ACTIONS(2725), - [anon_sym_LT_LT_TILDE] = ACTIONS(2725), - [anon_sym_TILDE_GT_GT] = ACTIONS(2725), - [anon_sym_LT_TILDE] = ACTIONS(2725), - [anon_sym_TILDE_GT] = ACTIONS(2725), - [anon_sym_LT_TILDE_GT] = ACTIONS(2725), - [anon_sym_LT_PIPE_GT] = ACTIONS(2725), - [anon_sym_in] = ACTIONS(2735), - [anon_sym_PLUS_PLUS] = ACTIONS(2725), - [anon_sym_DASH_DASH] = ACTIONS(2725), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2725), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2725), - [anon_sym_DOT_DOT] = ACTIONS(2725), - [anon_sym_LT_GT] = ACTIONS(2725), - [anon_sym_STAR] = ACTIONS(2725), - [anon_sym_STAR_STAR] = ACTIONS(2725), - [anon_sym_CARET_CARET] = ACTIONS(2725), - [anon_sym_DASH_GT] = ACTIONS(2725), - [anon_sym_DOT] = ACTIONS(2725), - [anon_sym_after] = ACTIONS(2719), - [anon_sym_catch] = ACTIONS(2719), - [anon_sym_do] = ACTIONS(2719), - [anon_sym_else] = ACTIONS(2719), - [anon_sym_end] = ACTIONS(2719), - [anon_sym_fn] = ACTIONS(2719), - [anon_sym_rescue] = ACTIONS(2719), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2737), - }, - [1045] = { - [sym__identifier] = STATE(978), - [sym_identifier] = STATE(978), - [sym_special_identifier] = STATE(978), - [sym__quoted_i_double] = STATE(970), - [sym__quoted_i_single] = STATE(965), - [sym_tuple] = STATE(1369), - [sym_operator_identifier] = STATE(978), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2713), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), [sym_unused_identifier] = ACTIONS(2739), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(2765), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2789), [anon_sym_true] = ACTIONS(2743), [anon_sym_false] = ACTIONS(2743), [anon_sym_nil] = ACTIONS(2743), [anon_sym_DQUOTE] = ACTIONS(2745), [anon_sym_SQUOTE] = ACTIONS(2747), - [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACE] = ACTIONS(960), [anon_sym_LT] = ACTIONS(2749), [anon_sym_GT] = ACTIONS(2749), [anon_sym_PIPE] = ACTIONS(2749), @@ -153846,295 +154220,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline_before_comment] = ACTIONS(3), [sym__not_in] = ACTIONS(2761), }, - [1046] = { - [sym__identifier] = STATE(941), - [sym_identifier] = STATE(941), - [sym_special_identifier] = STATE(941), - [sym__quoted_i_double] = STATE(940), - [sym__quoted_i_single] = STATE(933), - [sym_tuple] = STATE(1963), - [sym_operator_identifier] = STATE(941), + [1043] = { + [ts_builtin_sym_end] = ACTIONS(2681), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2713), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(2787), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(2789), - [anon_sym_true] = ACTIONS(2791), - [anon_sym_false] = ACTIONS(2791), - [anon_sym_nil] = ACTIONS(2791), - [anon_sym_DQUOTE] = ACTIONS(2793), - [anon_sym_SQUOTE] = ACTIONS(2795), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_LT] = ACTIONS(2797), - [anon_sym_GT] = ACTIONS(2797), - [anon_sym_PIPE] = ACTIONS(2797), - [anon_sym_SLASH] = ACTIONS(2797), - [anon_sym_AMP] = ACTIONS(2799), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_BANG] = ACTIONS(2801), - [anon_sym_CARET] = ACTIONS(2801), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2801), - [anon_sym_not] = ACTIONS(2803), - [anon_sym_AT] = ACTIONS(2805), - [anon_sym_LT_DASH] = ACTIONS(2797), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2797), - [anon_sym_when] = ACTIONS(2807), - [anon_sym_COLON_COLON] = ACTIONS(2797), - [anon_sym_EQ] = ACTIONS(2797), - [anon_sym_PIPE_PIPE] = ACTIONS(2797), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2797), - [anon_sym_or] = ACTIONS(2807), - [anon_sym_AMP_AMP] = ACTIONS(2797), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2797), - [anon_sym_and] = ACTIONS(2807), - [anon_sym_EQ_EQ] = ACTIONS(2797), - [anon_sym_BANG_EQ] = ACTIONS(2797), - [anon_sym_EQ_TILDE] = ACTIONS(2797), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2797), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2797), - [anon_sym_LT_EQ] = ACTIONS(2797), - [anon_sym_GT_EQ] = ACTIONS(2797), - [anon_sym_PIPE_GT] = ACTIONS(2797), - [anon_sym_LT_LT_LT] = ACTIONS(2797), - [anon_sym_GT_GT_GT] = ACTIONS(2797), - [anon_sym_LT_LT_TILDE] = ACTIONS(2797), - [anon_sym_TILDE_GT_GT] = ACTIONS(2797), - [anon_sym_LT_TILDE] = ACTIONS(2797), - [anon_sym_TILDE_GT] = ACTIONS(2797), - [anon_sym_LT_TILDE_GT] = ACTIONS(2797), - [anon_sym_LT_PIPE_GT] = ACTIONS(2797), - [anon_sym_in] = ACTIONS(2807), - [anon_sym_PLUS_PLUS] = ACTIONS(2797), - [anon_sym_DASH_DASH] = ACTIONS(2797), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2797), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2797), - [anon_sym_DOT_DOT] = ACTIONS(2797), - [anon_sym_LT_GT] = ACTIONS(2797), - [anon_sym_STAR] = ACTIONS(2797), - [anon_sym_STAR_STAR] = ACTIONS(2797), - [anon_sym_CARET_CARET] = ACTIONS(2797), - [anon_sym_DASH_GT] = ACTIONS(2797), - [anon_sym_DOT] = ACTIONS(2797), - [anon_sym_after] = ACTIONS(2791), - [anon_sym_catch] = ACTIONS(2791), - [anon_sym_do] = ACTIONS(2791), - [anon_sym_else] = ACTIONS(2791), - [anon_sym_end] = ACTIONS(2791), - [anon_sym_fn] = ACTIONS(2791), - [anon_sym_rescue] = ACTIONS(2791), + [anon_sym_LPAREN] = ACTIONS(2679), + [aux_sym_identifier_token1] = ACTIONS(2679), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2679), + [sym_unused_identifier] = ACTIONS(2679), + [anon_sym___MODULE__] = ACTIONS(2679), + [anon_sym___DIR__] = ACTIONS(2679), + [anon_sym___ENV__] = ACTIONS(2679), + [anon_sym___CALLER__] = ACTIONS(2679), + [anon_sym___STACKTRACE__] = ACTIONS(2679), + [sym_alias] = ACTIONS(2679), + [sym_integer] = ACTIONS(2679), + [sym_float] = ACTIONS(2679), + [sym_char] = ACTIONS(2679), + [anon_sym_true] = ACTIONS(2679), + [anon_sym_false] = ACTIONS(2679), + [anon_sym_nil] = ACTIONS(2679), + [sym_atom] = ACTIONS(2679), + [anon_sym_DQUOTE] = ACTIONS(2679), + [anon_sym_SQUOTE] = ACTIONS(2679), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2679), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2679), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_LT] = ACTIONS(2679), + [anon_sym_GT] = ACTIONS(2679), + [anon_sym_PIPE] = ACTIONS(2679), + [anon_sym_SLASH] = ACTIONS(2679), + [anon_sym_TILDE] = ACTIONS(2679), + [anon_sym_LT_LT] = ACTIONS(2679), + [anon_sym_PERCENT] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2679), + [anon_sym_PLUS] = ACTIONS(2679), + [anon_sym_DASH] = ACTIONS(2679), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_CARET] = ACTIONS(2679), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2679), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AT] = ACTIONS(2679), + [anon_sym_LT_DASH] = ACTIONS(2679), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2679), + [anon_sym_when] = ACTIONS(2679), + [anon_sym_COLON_COLON] = ACTIONS(2679), + [anon_sym_EQ] = ACTIONS(2679), + [anon_sym_PIPE_PIPE] = ACTIONS(2679), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2679), + [anon_sym_or] = ACTIONS(2679), + [anon_sym_AMP_AMP] = ACTIONS(2679), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2679), + [anon_sym_and] = ACTIONS(2679), + [anon_sym_EQ_EQ] = ACTIONS(2679), + [anon_sym_BANG_EQ] = ACTIONS(2679), + [anon_sym_EQ_TILDE] = ACTIONS(2679), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2679), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2679), + [anon_sym_LT_EQ] = ACTIONS(2679), + [anon_sym_GT_EQ] = ACTIONS(2679), + [anon_sym_PIPE_GT] = ACTIONS(2679), + [anon_sym_LT_LT_LT] = ACTIONS(2679), + [anon_sym_GT_GT_GT] = ACTIONS(2679), + [anon_sym_LT_LT_TILDE] = ACTIONS(2679), + [anon_sym_TILDE_GT_GT] = ACTIONS(2679), + [anon_sym_LT_TILDE] = ACTIONS(2679), + [anon_sym_TILDE_GT] = ACTIONS(2679), + [anon_sym_LT_TILDE_GT] = ACTIONS(2679), + [anon_sym_LT_PIPE_GT] = ACTIONS(2679), + [anon_sym_in] = ACTIONS(2679), + [anon_sym_PLUS_PLUS] = ACTIONS(2679), + [anon_sym_DASH_DASH] = ACTIONS(2679), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2679), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2679), + [anon_sym_DOT_DOT] = ACTIONS(2679), + [anon_sym_LT_GT] = ACTIONS(2679), + [anon_sym_STAR] = ACTIONS(2679), + [anon_sym_STAR_STAR] = ACTIONS(2679), + [anon_sym_CARET_CARET] = ACTIONS(2679), + [anon_sym_DASH_GT] = ACTIONS(2679), + [anon_sym_DOT] = ACTIONS(2679), + [anon_sym_fn] = ACTIONS(2679), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2809), + [sym__before_unary_op] = ACTIONS(2681), + [sym__not_in] = ACTIONS(2681), + [sym__quoted_atom_start] = ACTIONS(2681), }, - [1047] = { - [sym__identifier] = STATE(950), - [sym_identifier] = STATE(950), - [sym_special_identifier] = STATE(950), - [sym__quoted_i_double] = STATE(947), - [sym__quoted_i_single] = STATE(946), - [sym_tuple] = STATE(2628), - [sym_operator_identifier] = STATE(950), + [1044] = { [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2713), - [aux_sym_identifier_token1] = ACTIONS(481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(481), - [sym_unused_identifier] = ACTIONS(2811), - [anon_sym___MODULE__] = ACTIONS(485), - [anon_sym___DIR__] = ACTIONS(485), - [anon_sym___ENV__] = ACTIONS(485), - [anon_sym___CALLER__] = ACTIONS(485), - [anon_sym___STACKTRACE__] = ACTIONS(485), - [sym_alias] = ACTIONS(2813), - [anon_sym_true] = ACTIONS(2815), - [anon_sym_false] = ACTIONS(2815), - [anon_sym_nil] = ACTIONS(2815), - [anon_sym_DQUOTE] = ACTIONS(2817), - [anon_sym_SQUOTE] = ACTIONS(2819), - [anon_sym_LBRACE] = ACTIONS(501), - [anon_sym_LT] = ACTIONS(2821), - [anon_sym_GT] = ACTIONS(2821), - [anon_sym_PIPE] = ACTIONS(2821), - [anon_sym_SLASH] = ACTIONS(2821), - [anon_sym_AMP] = ACTIONS(2823), - [anon_sym_PLUS] = ACTIONS(2825), - [anon_sym_DASH] = ACTIONS(2825), - [anon_sym_BANG] = ACTIONS(2825), - [anon_sym_CARET] = ACTIONS(2825), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2825), - [anon_sym_not] = ACTIONS(2827), - [anon_sym_AT] = ACTIONS(2829), - [anon_sym_LT_DASH] = ACTIONS(2821), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2821), - [anon_sym_when] = ACTIONS(2831), - [anon_sym_COLON_COLON] = ACTIONS(2821), - [anon_sym_EQ] = ACTIONS(2821), - [anon_sym_PIPE_PIPE] = ACTIONS(2821), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2821), - [anon_sym_or] = ACTIONS(2831), - [anon_sym_AMP_AMP] = ACTIONS(2821), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2821), - [anon_sym_and] = ACTIONS(2831), - [anon_sym_EQ_EQ] = ACTIONS(2821), - [anon_sym_BANG_EQ] = ACTIONS(2821), - [anon_sym_EQ_TILDE] = ACTIONS(2821), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2821), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2821), - [anon_sym_LT_EQ] = ACTIONS(2821), - [anon_sym_GT_EQ] = ACTIONS(2821), - [anon_sym_PIPE_GT] = ACTIONS(2821), - [anon_sym_LT_LT_LT] = ACTIONS(2821), - [anon_sym_GT_GT_GT] = ACTIONS(2821), - [anon_sym_LT_LT_TILDE] = ACTIONS(2821), - [anon_sym_TILDE_GT_GT] = ACTIONS(2821), - [anon_sym_LT_TILDE] = ACTIONS(2821), - [anon_sym_TILDE_GT] = ACTIONS(2821), - [anon_sym_LT_TILDE_GT] = ACTIONS(2821), - [anon_sym_LT_PIPE_GT] = ACTIONS(2821), - [anon_sym_in] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2821), - [anon_sym_DASH_DASH] = ACTIONS(2821), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2821), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2821), - [anon_sym_DOT_DOT] = ACTIONS(2821), - [anon_sym_LT_GT] = ACTIONS(2821), - [anon_sym_STAR] = ACTIONS(2821), - [anon_sym_STAR_STAR] = ACTIONS(2821), - [anon_sym_CARET_CARET] = ACTIONS(2821), - [anon_sym_DASH_GT] = ACTIONS(2821), - [anon_sym_DOT] = ACTIONS(2821), - [anon_sym_after] = ACTIONS(2815), - [anon_sym_catch] = ACTIONS(2815), - [anon_sym_do] = ACTIONS(2815), - [anon_sym_else] = ACTIONS(2815), - [anon_sym_end] = ACTIONS(2815), - [anon_sym_fn] = ACTIONS(2815), - [anon_sym_rescue] = ACTIONS(2815), + [anon_sym_LPAREN] = ACTIONS(2679), + [anon_sym_RPAREN] = ACTIONS(2679), + [aux_sym_identifier_token1] = ACTIONS(2679), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2679), + [sym_unused_identifier] = ACTIONS(2679), + [anon_sym___MODULE__] = ACTIONS(2679), + [anon_sym___DIR__] = ACTIONS(2679), + [anon_sym___ENV__] = ACTIONS(2679), + [anon_sym___CALLER__] = ACTIONS(2679), + [anon_sym___STACKTRACE__] = ACTIONS(2679), + [sym_alias] = ACTIONS(2679), + [sym_integer] = ACTIONS(2679), + [sym_float] = ACTIONS(2679), + [sym_char] = ACTIONS(2679), + [anon_sym_true] = ACTIONS(2679), + [anon_sym_false] = ACTIONS(2679), + [anon_sym_nil] = ACTIONS(2679), + [sym_atom] = ACTIONS(2679), + [anon_sym_DQUOTE] = ACTIONS(2679), + [anon_sym_SQUOTE] = ACTIONS(2679), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2679), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2679), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_LT] = ACTIONS(2679), + [anon_sym_GT] = ACTIONS(2679), + [anon_sym_PIPE] = ACTIONS(2679), + [anon_sym_SLASH] = ACTIONS(2679), + [anon_sym_TILDE] = ACTIONS(2679), + [anon_sym_LT_LT] = ACTIONS(2679), + [anon_sym_PERCENT] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2679), + [anon_sym_PLUS] = ACTIONS(2679), + [anon_sym_DASH] = ACTIONS(2679), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_CARET] = ACTIONS(2679), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2679), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AT] = ACTIONS(2679), + [anon_sym_LT_DASH] = ACTIONS(2679), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2679), + [anon_sym_when] = ACTIONS(2679), + [anon_sym_COLON_COLON] = ACTIONS(2679), + [anon_sym_EQ] = ACTIONS(2679), + [anon_sym_PIPE_PIPE] = ACTIONS(2679), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2679), + [anon_sym_or] = ACTIONS(2679), + [anon_sym_AMP_AMP] = ACTIONS(2679), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2679), + [anon_sym_and] = ACTIONS(2679), + [anon_sym_EQ_EQ] = ACTIONS(2679), + [anon_sym_BANG_EQ] = ACTIONS(2679), + [anon_sym_EQ_TILDE] = ACTIONS(2679), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2679), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2679), + [anon_sym_LT_EQ] = ACTIONS(2679), + [anon_sym_GT_EQ] = ACTIONS(2679), + [anon_sym_PIPE_GT] = ACTIONS(2679), + [anon_sym_LT_LT_LT] = ACTIONS(2679), + [anon_sym_GT_GT_GT] = ACTIONS(2679), + [anon_sym_LT_LT_TILDE] = ACTIONS(2679), + [anon_sym_TILDE_GT_GT] = ACTIONS(2679), + [anon_sym_LT_TILDE] = ACTIONS(2679), + [anon_sym_TILDE_GT] = ACTIONS(2679), + [anon_sym_LT_TILDE_GT] = ACTIONS(2679), + [anon_sym_LT_PIPE_GT] = ACTIONS(2679), + [anon_sym_in] = ACTIONS(2679), + [anon_sym_PLUS_PLUS] = ACTIONS(2679), + [anon_sym_DASH_DASH] = ACTIONS(2679), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2679), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2679), + [anon_sym_DOT_DOT] = ACTIONS(2679), + [anon_sym_LT_GT] = ACTIONS(2679), + [anon_sym_STAR] = ACTIONS(2679), + [anon_sym_STAR_STAR] = ACTIONS(2679), + [anon_sym_CARET_CARET] = ACTIONS(2679), + [anon_sym_DASH_GT] = ACTIONS(2679), + [anon_sym_DOT] = ACTIONS(2679), + [anon_sym_fn] = ACTIONS(2679), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2833), + [sym__before_unary_op] = ACTIONS(2681), + [sym__not_in] = ACTIONS(2681), + [sym__quoted_atom_start] = ACTIONS(2681), }, - [1048] = { - [sym__identifier] = STATE(994), - [sym_identifier] = STATE(994), - [sym_special_identifier] = STATE(994), - [sym__quoted_i_double] = STATE(995), - [sym__quoted_i_single] = STATE(1000), - [sym_tuple] = STATE(3481), - [sym_operator_identifier] = STATE(994), + [1045] = { + [sym__identifier] = STATE(933), + [sym_identifier] = STATE(933), + [sym_special_identifier] = STATE(933), + [sym__quoted_i_double] = STATE(932), + [sym__quoted_i_single] = STATE(931), + [sym_tuple] = STATE(3773), + [sym_operator_identifier] = STATE(933), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(2713), - [aux_sym_identifier_token1] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(606), - [sym_unused_identifier] = ACTIONS(2835), - [anon_sym___MODULE__] = ACTIONS(610), - [anon_sym___DIR__] = ACTIONS(610), - [anon_sym___ENV__] = ACTIONS(610), - [anon_sym___CALLER__] = ACTIONS(610), - [anon_sym___STACKTRACE__] = ACTIONS(610), - [sym_alias] = ACTIONS(2837), - [anon_sym_true] = ACTIONS(2839), - [anon_sym_false] = ACTIONS(2839), - [anon_sym_nil] = ACTIONS(2839), - [anon_sym_DQUOTE] = ACTIONS(2841), - [anon_sym_SQUOTE] = ACTIONS(2843), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LT] = ACTIONS(2845), - [anon_sym_GT] = ACTIONS(2845), - [anon_sym_PIPE] = ACTIONS(2845), - [anon_sym_SLASH] = ACTIONS(2845), - [anon_sym_AMP] = ACTIONS(2847), - [anon_sym_PLUS] = ACTIONS(2849), - [anon_sym_DASH] = ACTIONS(2849), - [anon_sym_BANG] = ACTIONS(2849), - [anon_sym_CARET] = ACTIONS(2849), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2849), - [anon_sym_not] = ACTIONS(2851), - [anon_sym_AT] = ACTIONS(2853), - [anon_sym_LT_DASH] = ACTIONS(2845), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2845), - [anon_sym_when] = ACTIONS(2855), - [anon_sym_COLON_COLON] = ACTIONS(2845), - [anon_sym_EQ] = ACTIONS(2845), - [anon_sym_PIPE_PIPE] = ACTIONS(2845), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2845), - [anon_sym_or] = ACTIONS(2855), - [anon_sym_AMP_AMP] = ACTIONS(2845), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2845), - [anon_sym_and] = ACTIONS(2855), - [anon_sym_EQ_EQ] = ACTIONS(2845), - [anon_sym_BANG_EQ] = ACTIONS(2845), - [anon_sym_EQ_TILDE] = ACTIONS(2845), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2845), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2845), - [anon_sym_LT_EQ] = ACTIONS(2845), - [anon_sym_GT_EQ] = ACTIONS(2845), - [anon_sym_PIPE_GT] = ACTIONS(2845), - [anon_sym_LT_LT_LT] = ACTIONS(2845), - [anon_sym_GT_GT_GT] = ACTIONS(2845), - [anon_sym_LT_LT_TILDE] = ACTIONS(2845), - [anon_sym_TILDE_GT_GT] = ACTIONS(2845), - [anon_sym_LT_TILDE] = ACTIONS(2845), - [anon_sym_TILDE_GT] = ACTIONS(2845), - [anon_sym_LT_TILDE_GT] = ACTIONS(2845), - [anon_sym_LT_PIPE_GT] = ACTIONS(2845), - [anon_sym_in] = ACTIONS(2855), - [anon_sym_PLUS_PLUS] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2845), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2845), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2845), - [anon_sym_DOT_DOT] = ACTIONS(2845), - [anon_sym_LT_GT] = ACTIONS(2845), - [anon_sym_STAR] = ACTIONS(2845), - [anon_sym_STAR_STAR] = ACTIONS(2845), - [anon_sym_CARET_CARET] = ACTIONS(2845), - [anon_sym_DASH_GT] = ACTIONS(2845), - [anon_sym_DOT] = ACTIONS(2845), - [anon_sym_after] = ACTIONS(2839), - [anon_sym_catch] = ACTIONS(2839), - [anon_sym_do] = ACTIONS(2839), - [anon_sym_else] = ACTIONS(2839), - [anon_sym_end] = ACTIONS(2839), - [anon_sym_fn] = ACTIONS(2839), - [anon_sym_rescue] = ACTIONS(2839), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2857), - }, - [1049] = { - [sym__identifier] = STATE(915), - [sym_identifier] = STATE(915), - [sym_special_identifier] = STATE(915), - [sym__quoted_i_double] = STATE(914), - [sym__quoted_i_single] = STATE(913), - [sym_tuple] = STATE(1539), - [sym_operator_identifier] = STATE(915), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2713), - [aux_sym_identifier_token1] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), [sym_unused_identifier] = ACTIONS(2763), - [anon_sym___MODULE__] = ACTIONS(199), - [anon_sym___DIR__] = ACTIONS(199), - [anon_sym___ENV__] = ACTIONS(199), - [anon_sym___CALLER__] = ACTIONS(199), - [anon_sym___STACKTRACE__] = ACTIONS(199), - [sym_alias] = ACTIONS(2859), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(2791), [anon_sym_true] = ACTIONS(2767), [anon_sym_false] = ACTIONS(2767), [anon_sym_nil] = ACTIONS(2767), [anon_sym_DQUOTE] = ACTIONS(2769), [anon_sym_SQUOTE] = ACTIONS(2771), - [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_LT] = ACTIONS(2773), [anon_sym_GT] = ACTIONS(2773), [anon_sym_PIPE] = ACTIONS(2773), @@ -154198,207 +154484,559 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline_before_comment] = ACTIONS(3), [sym__not_in] = ACTIONS(2785), }, - [1050] = { - [sym__identifier] = STATE(941), - [sym_identifier] = STATE(941), - [sym_special_identifier] = STATE(941), - [sym__quoted_i_double] = STATE(940), - [sym__quoted_i_single] = STATE(933), - [sym_tuple] = STATE(2591), - [sym_operator_identifier] = STATE(941), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2713), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(2787), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(2861), - [anon_sym_true] = ACTIONS(2791), - [anon_sym_false] = ACTIONS(2791), - [anon_sym_nil] = ACTIONS(2791), - [anon_sym_DQUOTE] = ACTIONS(2793), - [anon_sym_SQUOTE] = ACTIONS(2795), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(2797), - [anon_sym_GT] = ACTIONS(2797), - [anon_sym_PIPE] = ACTIONS(2797), - [anon_sym_SLASH] = ACTIONS(2797), - [anon_sym_AMP] = ACTIONS(2799), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_BANG] = ACTIONS(2801), - [anon_sym_CARET] = ACTIONS(2801), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2801), - [anon_sym_not] = ACTIONS(2803), - [anon_sym_AT] = ACTIONS(2805), - [anon_sym_LT_DASH] = ACTIONS(2797), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2797), - [anon_sym_when] = ACTIONS(2807), - [anon_sym_COLON_COLON] = ACTIONS(2797), - [anon_sym_EQ] = ACTIONS(2797), - [anon_sym_PIPE_PIPE] = ACTIONS(2797), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2797), - [anon_sym_or] = ACTIONS(2807), - [anon_sym_AMP_AMP] = ACTIONS(2797), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2797), - [anon_sym_and] = ACTIONS(2807), - [anon_sym_EQ_EQ] = ACTIONS(2797), - [anon_sym_BANG_EQ] = ACTIONS(2797), - [anon_sym_EQ_TILDE] = ACTIONS(2797), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2797), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2797), - [anon_sym_LT_EQ] = ACTIONS(2797), - [anon_sym_GT_EQ] = ACTIONS(2797), - [anon_sym_PIPE_GT] = ACTIONS(2797), - [anon_sym_LT_LT_LT] = ACTIONS(2797), - [anon_sym_GT_GT_GT] = ACTIONS(2797), - [anon_sym_LT_LT_TILDE] = ACTIONS(2797), - [anon_sym_TILDE_GT_GT] = ACTIONS(2797), - [anon_sym_LT_TILDE] = ACTIONS(2797), - [anon_sym_TILDE_GT] = ACTIONS(2797), - [anon_sym_LT_TILDE_GT] = ACTIONS(2797), - [anon_sym_LT_PIPE_GT] = ACTIONS(2797), - [anon_sym_in] = ACTIONS(2807), - [anon_sym_PLUS_PLUS] = ACTIONS(2797), - [anon_sym_DASH_DASH] = ACTIONS(2797), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2797), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2797), - [anon_sym_DOT_DOT] = ACTIONS(2797), - [anon_sym_LT_GT] = ACTIONS(2797), - [anon_sym_STAR] = ACTIONS(2797), - [anon_sym_STAR_STAR] = ACTIONS(2797), - [anon_sym_CARET_CARET] = ACTIONS(2797), - [anon_sym_DASH_GT] = ACTIONS(2797), - [anon_sym_DOT] = ACTIONS(2797), - [anon_sym_after] = ACTIONS(2791), - [anon_sym_catch] = ACTIONS(2791), - [anon_sym_do] = ACTIONS(2791), - [anon_sym_else] = ACTIONS(2791), - [anon_sym_end] = ACTIONS(2791), - [anon_sym_fn] = ACTIONS(2791), - [anon_sym_rescue] = ACTIONS(2791), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2809), - }, - [1051] = { - [sym__identifier] = STATE(941), - [sym_identifier] = STATE(941), - [sym_special_identifier] = STATE(941), - [sym__quoted_i_double] = STATE(940), - [sym__quoted_i_single] = STATE(933), - [sym_tuple] = STATE(3317), - [sym_operator_identifier] = STATE(941), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2713), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(2787), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(2863), - [anon_sym_true] = ACTIONS(2791), - [anon_sym_false] = ACTIONS(2791), - [anon_sym_nil] = ACTIONS(2791), - [anon_sym_DQUOTE] = ACTIONS(2793), - [anon_sym_SQUOTE] = ACTIONS(2795), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_LT] = ACTIONS(2797), - [anon_sym_GT] = ACTIONS(2797), - [anon_sym_PIPE] = ACTIONS(2797), - [anon_sym_SLASH] = ACTIONS(2797), - [anon_sym_AMP] = ACTIONS(2799), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_BANG] = ACTIONS(2801), - [anon_sym_CARET] = ACTIONS(2801), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2801), - [anon_sym_not] = ACTIONS(2803), - [anon_sym_AT] = ACTIONS(2805), - [anon_sym_LT_DASH] = ACTIONS(2797), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2797), - [anon_sym_when] = ACTIONS(2807), - [anon_sym_COLON_COLON] = ACTIONS(2797), - [anon_sym_EQ] = ACTIONS(2797), - [anon_sym_PIPE_PIPE] = ACTIONS(2797), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2797), - [anon_sym_or] = ACTIONS(2807), - [anon_sym_AMP_AMP] = ACTIONS(2797), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2797), - [anon_sym_and] = ACTIONS(2807), - [anon_sym_EQ_EQ] = ACTIONS(2797), - [anon_sym_BANG_EQ] = ACTIONS(2797), - [anon_sym_EQ_TILDE] = ACTIONS(2797), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2797), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2797), - [anon_sym_LT_EQ] = ACTIONS(2797), - [anon_sym_GT_EQ] = ACTIONS(2797), - [anon_sym_PIPE_GT] = ACTIONS(2797), - [anon_sym_LT_LT_LT] = ACTIONS(2797), - [anon_sym_GT_GT_GT] = ACTIONS(2797), - [anon_sym_LT_LT_TILDE] = ACTIONS(2797), - [anon_sym_TILDE_GT_GT] = ACTIONS(2797), - [anon_sym_LT_TILDE] = ACTIONS(2797), - [anon_sym_TILDE_GT] = ACTIONS(2797), - [anon_sym_LT_TILDE_GT] = ACTIONS(2797), - [anon_sym_LT_PIPE_GT] = ACTIONS(2797), - [anon_sym_in] = ACTIONS(2807), - [anon_sym_PLUS_PLUS] = ACTIONS(2797), - [anon_sym_DASH_DASH] = ACTIONS(2797), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2797), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2797), - [anon_sym_DOT_DOT] = ACTIONS(2797), - [anon_sym_LT_GT] = ACTIONS(2797), - [anon_sym_STAR] = ACTIONS(2797), - [anon_sym_STAR_STAR] = ACTIONS(2797), - [anon_sym_CARET_CARET] = ACTIONS(2797), - [anon_sym_DASH_GT] = ACTIONS(2797), - [anon_sym_DOT] = ACTIONS(2797), - [anon_sym_after] = ACTIONS(2791), - [anon_sym_catch] = ACTIONS(2791), - [anon_sym_do] = ACTIONS(2791), - [anon_sym_else] = ACTIONS(2791), - [anon_sym_end] = ACTIONS(2791), - [anon_sym_fn] = ACTIONS(2791), - [anon_sym_rescue] = ACTIONS(2791), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2809), - }, - [1052] = { - [sym__identifier] = STATE(978), - [sym_identifier] = STATE(978), - [sym_special_identifier] = STATE(978), - [sym__quoted_i_double] = STATE(970), - [sym__quoted_i_single] = STATE(965), - [sym_tuple] = STATE(1539), - [sym_operator_identifier] = STATE(978), + [1046] = { + [sym__identifier] = STATE(989), + [sym_identifier] = STATE(989), + [sym_special_identifier] = STATE(989), + [sym__quoted_i_double] = STATE(990), + [sym__quoted_i_single] = STATE(991), + [sym_tuple] = STATE(1877), + [sym_operator_identifier] = STATE(989), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(2713), [aux_sym_identifier_token1] = ACTIONS(436), [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_unused_identifier] = ACTIONS(2739), + [sym_unused_identifier] = ACTIONS(2793), [anon_sym___MODULE__] = ACTIONS(440), [anon_sym___DIR__] = ACTIONS(440), [anon_sym___ENV__] = ACTIONS(440), [anon_sym___CALLER__] = ACTIONS(440), [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(2859), + [sym_alias] = ACTIONS(2789), + [anon_sym_true] = ACTIONS(2795), + [anon_sym_false] = ACTIONS(2795), + [anon_sym_nil] = ACTIONS(2795), + [anon_sym_DQUOTE] = ACTIONS(2797), + [anon_sym_SQUOTE] = ACTIONS(2799), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(2801), + [anon_sym_GT] = ACTIONS(2801), + [anon_sym_PIPE] = ACTIONS(2801), + [anon_sym_SLASH] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_BANG] = ACTIONS(2805), + [anon_sym_CARET] = ACTIONS(2805), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2805), + [anon_sym_not] = ACTIONS(2807), + [anon_sym_AT] = ACTIONS(2809), + [anon_sym_LT_DASH] = ACTIONS(2801), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2801), + [anon_sym_when] = ACTIONS(2811), + [anon_sym_COLON_COLON] = ACTIONS(2801), + [anon_sym_EQ] = ACTIONS(2801), + [anon_sym_PIPE_PIPE] = ACTIONS(2801), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2801), + [anon_sym_or] = ACTIONS(2811), + [anon_sym_AMP_AMP] = ACTIONS(2801), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2801), + [anon_sym_and] = ACTIONS(2811), + [anon_sym_EQ_EQ] = ACTIONS(2801), + [anon_sym_BANG_EQ] = ACTIONS(2801), + [anon_sym_EQ_TILDE] = ACTIONS(2801), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2801), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2801), + [anon_sym_LT_EQ] = ACTIONS(2801), + [anon_sym_GT_EQ] = ACTIONS(2801), + [anon_sym_PIPE_GT] = ACTIONS(2801), + [anon_sym_LT_LT_LT] = ACTIONS(2801), + [anon_sym_GT_GT_GT] = ACTIONS(2801), + [anon_sym_LT_LT_TILDE] = ACTIONS(2801), + [anon_sym_TILDE_GT_GT] = ACTIONS(2801), + [anon_sym_LT_TILDE] = ACTIONS(2801), + [anon_sym_TILDE_GT] = ACTIONS(2801), + [anon_sym_LT_TILDE_GT] = ACTIONS(2801), + [anon_sym_LT_PIPE_GT] = ACTIONS(2801), + [anon_sym_in] = ACTIONS(2811), + [anon_sym_PLUS_PLUS] = ACTIONS(2801), + [anon_sym_DASH_DASH] = ACTIONS(2801), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2801), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2801), + [anon_sym_DOT_DOT] = ACTIONS(2801), + [anon_sym_LT_GT] = ACTIONS(2801), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_STAR_STAR] = ACTIONS(2801), + [anon_sym_CARET_CARET] = ACTIONS(2801), + [anon_sym_DASH_GT] = ACTIONS(2801), + [anon_sym_DOT] = ACTIONS(2801), + [anon_sym_after] = ACTIONS(2795), + [anon_sym_catch] = ACTIONS(2795), + [anon_sym_do] = ACTIONS(2795), + [anon_sym_else] = ACTIONS(2795), + [anon_sym_end] = ACTIONS(2795), + [anon_sym_fn] = ACTIONS(2795), + [anon_sym_rescue] = ACTIONS(2795), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2813), + }, + [1047] = { + [sym__identifier] = STATE(973), + [sym_identifier] = STATE(973), + [sym_special_identifier] = STATE(973), + [sym__quoted_i_double] = STATE(970), + [sym__quoted_i_single] = STATE(975), + [sym_tuple] = STATE(3960), + [sym_operator_identifier] = STATE(973), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2713), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(2815), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(2817), + [anon_sym_true] = ACTIONS(2819), + [anon_sym_false] = ACTIONS(2819), + [anon_sym_nil] = ACTIONS(2819), + [anon_sym_DQUOTE] = ACTIONS(2821), + [anon_sym_SQUOTE] = ACTIONS(2823), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(2825), + [anon_sym_GT] = ACTIONS(2825), + [anon_sym_PIPE] = ACTIONS(2825), + [anon_sym_SLASH] = ACTIONS(2825), + [anon_sym_AMP] = ACTIONS(2827), + [anon_sym_PLUS] = ACTIONS(2829), + [anon_sym_DASH] = ACTIONS(2829), + [anon_sym_BANG] = ACTIONS(2829), + [anon_sym_CARET] = ACTIONS(2829), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2829), + [anon_sym_not] = ACTIONS(2831), + [anon_sym_AT] = ACTIONS(2833), + [anon_sym_LT_DASH] = ACTIONS(2825), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2825), + [anon_sym_when] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2825), + [anon_sym_EQ] = ACTIONS(2825), + [anon_sym_PIPE_PIPE] = ACTIONS(2825), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2825), + [anon_sym_or] = ACTIONS(2835), + [anon_sym_AMP_AMP] = ACTIONS(2825), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2825), + [anon_sym_and] = ACTIONS(2835), + [anon_sym_EQ_EQ] = ACTIONS(2825), + [anon_sym_BANG_EQ] = ACTIONS(2825), + [anon_sym_EQ_TILDE] = ACTIONS(2825), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2825), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2825), + [anon_sym_LT_EQ] = ACTIONS(2825), + [anon_sym_GT_EQ] = ACTIONS(2825), + [anon_sym_PIPE_GT] = ACTIONS(2825), + [anon_sym_LT_LT_LT] = ACTIONS(2825), + [anon_sym_GT_GT_GT] = ACTIONS(2825), + [anon_sym_LT_LT_TILDE] = ACTIONS(2825), + [anon_sym_TILDE_GT_GT] = ACTIONS(2825), + [anon_sym_LT_TILDE] = ACTIONS(2825), + [anon_sym_TILDE_GT] = ACTIONS(2825), + [anon_sym_LT_TILDE_GT] = ACTIONS(2825), + [anon_sym_LT_PIPE_GT] = ACTIONS(2825), + [anon_sym_in] = ACTIONS(2835), + [anon_sym_PLUS_PLUS] = ACTIONS(2825), + [anon_sym_DASH_DASH] = ACTIONS(2825), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2825), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2825), + [anon_sym_DOT_DOT] = ACTIONS(2825), + [anon_sym_LT_GT] = ACTIONS(2825), + [anon_sym_STAR] = ACTIONS(2825), + [anon_sym_STAR_STAR] = ACTIONS(2825), + [anon_sym_CARET_CARET] = ACTIONS(2825), + [anon_sym_DASH_GT] = ACTIONS(2825), + [anon_sym_DOT] = ACTIONS(2825), + [anon_sym_after] = ACTIONS(2819), + [anon_sym_catch] = ACTIONS(2819), + [anon_sym_do] = ACTIONS(2819), + [anon_sym_else] = ACTIONS(2819), + [anon_sym_end] = ACTIONS(2819), + [anon_sym_fn] = ACTIONS(2819), + [anon_sym_rescue] = ACTIONS(2819), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2837), + }, + [1048] = { + [sym__identifier] = STATE(956), + [sym_identifier] = STATE(956), + [sym_special_identifier] = STATE(956), + [sym__quoted_i_double] = STATE(957), + [sym__quoted_i_single] = STATE(958), + [sym_tuple] = STATE(1877), + [sym_operator_identifier] = STATE(956), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2713), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(2715), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), + [sym_alias] = ACTIONS(2789), + [anon_sym_true] = ACTIONS(2719), + [anon_sym_false] = ACTIONS(2719), + [anon_sym_nil] = ACTIONS(2719), + [anon_sym_DQUOTE] = ACTIONS(2721), + [anon_sym_SQUOTE] = ACTIONS(2723), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(2725), + [anon_sym_GT] = ACTIONS(2725), + [anon_sym_PIPE] = ACTIONS(2725), + [anon_sym_SLASH] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2727), + [anon_sym_PLUS] = ACTIONS(2729), + [anon_sym_DASH] = ACTIONS(2729), + [anon_sym_BANG] = ACTIONS(2729), + [anon_sym_CARET] = ACTIONS(2729), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2729), + [anon_sym_not] = ACTIONS(2731), + [anon_sym_AT] = ACTIONS(2733), + [anon_sym_LT_DASH] = ACTIONS(2725), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2725), + [anon_sym_when] = ACTIONS(2735), + [anon_sym_COLON_COLON] = ACTIONS(2725), + [anon_sym_EQ] = ACTIONS(2725), + [anon_sym_PIPE_PIPE] = ACTIONS(2725), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2725), + [anon_sym_or] = ACTIONS(2735), + [anon_sym_AMP_AMP] = ACTIONS(2725), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2725), + [anon_sym_and] = ACTIONS(2735), + [anon_sym_EQ_EQ] = ACTIONS(2725), + [anon_sym_BANG_EQ] = ACTIONS(2725), + [anon_sym_EQ_TILDE] = ACTIONS(2725), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2725), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2725), + [anon_sym_LT_EQ] = ACTIONS(2725), + [anon_sym_GT_EQ] = ACTIONS(2725), + [anon_sym_PIPE_GT] = ACTIONS(2725), + [anon_sym_LT_LT_LT] = ACTIONS(2725), + [anon_sym_GT_GT_GT] = ACTIONS(2725), + [anon_sym_LT_LT_TILDE] = ACTIONS(2725), + [anon_sym_TILDE_GT_GT] = ACTIONS(2725), + [anon_sym_LT_TILDE] = ACTIONS(2725), + [anon_sym_TILDE_GT] = ACTIONS(2725), + [anon_sym_LT_TILDE_GT] = ACTIONS(2725), + [anon_sym_LT_PIPE_GT] = ACTIONS(2725), + [anon_sym_in] = ACTIONS(2735), + [anon_sym_PLUS_PLUS] = ACTIONS(2725), + [anon_sym_DASH_DASH] = ACTIONS(2725), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2725), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2725), + [anon_sym_DOT_DOT] = ACTIONS(2725), + [anon_sym_LT_GT] = ACTIONS(2725), + [anon_sym_STAR] = ACTIONS(2725), + [anon_sym_STAR_STAR] = ACTIONS(2725), + [anon_sym_CARET_CARET] = ACTIONS(2725), + [anon_sym_DASH_GT] = ACTIONS(2725), + [anon_sym_DOT] = ACTIONS(2725), + [anon_sym_after] = ACTIONS(2719), + [anon_sym_catch] = ACTIONS(2719), + [anon_sym_do] = ACTIONS(2719), + [anon_sym_else] = ACTIONS(2719), + [anon_sym_end] = ACTIONS(2719), + [anon_sym_fn] = ACTIONS(2719), + [anon_sym_rescue] = ACTIONS(2719), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2737), + }, + [1049] = { + [sym__identifier] = STATE(1014), + [sym_identifier] = STATE(1014), + [sym_special_identifier] = STATE(1014), + [sym__quoted_i_double] = STATE(1011), + [sym__quoted_i_single] = STATE(995), + [sym_tuple] = STATE(3228), + [sym_operator_identifier] = STATE(1014), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2713), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(2839), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(2841), + [anon_sym_true] = ACTIONS(2843), + [anon_sym_false] = ACTIONS(2843), + [anon_sym_nil] = ACTIONS(2843), + [anon_sym_DQUOTE] = ACTIONS(2845), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LT] = ACTIONS(2849), + [anon_sym_GT] = ACTIONS(2849), + [anon_sym_PIPE] = ACTIONS(2849), + [anon_sym_SLASH] = ACTIONS(2849), + [anon_sym_AMP] = ACTIONS(2851), + [anon_sym_PLUS] = ACTIONS(2853), + [anon_sym_DASH] = ACTIONS(2853), + [anon_sym_BANG] = ACTIONS(2853), + [anon_sym_CARET] = ACTIONS(2853), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2853), + [anon_sym_not] = ACTIONS(2855), + [anon_sym_AT] = ACTIONS(2857), + [anon_sym_LT_DASH] = ACTIONS(2849), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2849), + [anon_sym_when] = ACTIONS(2859), + [anon_sym_COLON_COLON] = ACTIONS(2849), + [anon_sym_EQ] = ACTIONS(2849), + [anon_sym_PIPE_PIPE] = ACTIONS(2849), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2849), + [anon_sym_or] = ACTIONS(2859), + [anon_sym_AMP_AMP] = ACTIONS(2849), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2849), + [anon_sym_and] = ACTIONS(2859), + [anon_sym_EQ_EQ] = ACTIONS(2849), + [anon_sym_BANG_EQ] = ACTIONS(2849), + [anon_sym_EQ_TILDE] = ACTIONS(2849), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2849), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2849), + [anon_sym_LT_EQ] = ACTIONS(2849), + [anon_sym_GT_EQ] = ACTIONS(2849), + [anon_sym_PIPE_GT] = ACTIONS(2849), + [anon_sym_LT_LT_LT] = ACTIONS(2849), + [anon_sym_GT_GT_GT] = ACTIONS(2849), + [anon_sym_LT_LT_TILDE] = ACTIONS(2849), + [anon_sym_TILDE_GT_GT] = ACTIONS(2849), + [anon_sym_LT_TILDE] = ACTIONS(2849), + [anon_sym_TILDE_GT] = ACTIONS(2849), + [anon_sym_LT_TILDE_GT] = ACTIONS(2849), + [anon_sym_LT_PIPE_GT] = ACTIONS(2849), + [anon_sym_in] = ACTIONS(2859), + [anon_sym_PLUS_PLUS] = ACTIONS(2849), + [anon_sym_DASH_DASH] = ACTIONS(2849), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2849), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2849), + [anon_sym_DOT_DOT] = ACTIONS(2849), + [anon_sym_LT_GT] = ACTIONS(2849), + [anon_sym_STAR] = ACTIONS(2849), + [anon_sym_STAR_STAR] = ACTIONS(2849), + [anon_sym_CARET_CARET] = ACTIONS(2849), + [anon_sym_DASH_GT] = ACTIONS(2849), + [anon_sym_DOT] = ACTIONS(2849), + [anon_sym_after] = ACTIONS(2843), + [anon_sym_catch] = ACTIONS(2843), + [anon_sym_do] = ACTIONS(2843), + [anon_sym_else] = ACTIONS(2843), + [anon_sym_end] = ACTIONS(2843), + [anon_sym_fn] = ACTIONS(2843), + [anon_sym_rescue] = ACTIONS(2843), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2861), + }, + [1050] = { + [sym__identifier] = STATE(956), + [sym_identifier] = STATE(956), + [sym_special_identifier] = STATE(956), + [sym__quoted_i_double] = STATE(957), + [sym__quoted_i_single] = STATE(958), + [sym_tuple] = STATE(1689), + [sym_operator_identifier] = STATE(956), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2713), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(2715), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), + [sym_alias] = ACTIONS(2863), + [anon_sym_true] = ACTIONS(2719), + [anon_sym_false] = ACTIONS(2719), + [anon_sym_nil] = ACTIONS(2719), + [anon_sym_DQUOTE] = ACTIONS(2721), + [anon_sym_SQUOTE] = ACTIONS(2723), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LT] = ACTIONS(2725), + [anon_sym_GT] = ACTIONS(2725), + [anon_sym_PIPE] = ACTIONS(2725), + [anon_sym_SLASH] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2727), + [anon_sym_PLUS] = ACTIONS(2729), + [anon_sym_DASH] = ACTIONS(2729), + [anon_sym_BANG] = ACTIONS(2729), + [anon_sym_CARET] = ACTIONS(2729), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2729), + [anon_sym_not] = ACTIONS(2731), + [anon_sym_AT] = ACTIONS(2733), + [anon_sym_LT_DASH] = ACTIONS(2725), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2725), + [anon_sym_when] = ACTIONS(2735), + [anon_sym_COLON_COLON] = ACTIONS(2725), + [anon_sym_EQ] = ACTIONS(2725), + [anon_sym_PIPE_PIPE] = ACTIONS(2725), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2725), + [anon_sym_or] = ACTIONS(2735), + [anon_sym_AMP_AMP] = ACTIONS(2725), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2725), + [anon_sym_and] = ACTIONS(2735), + [anon_sym_EQ_EQ] = ACTIONS(2725), + [anon_sym_BANG_EQ] = ACTIONS(2725), + [anon_sym_EQ_TILDE] = ACTIONS(2725), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2725), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2725), + [anon_sym_LT_EQ] = ACTIONS(2725), + [anon_sym_GT_EQ] = ACTIONS(2725), + [anon_sym_PIPE_GT] = ACTIONS(2725), + [anon_sym_LT_LT_LT] = ACTIONS(2725), + [anon_sym_GT_GT_GT] = ACTIONS(2725), + [anon_sym_LT_LT_TILDE] = ACTIONS(2725), + [anon_sym_TILDE_GT_GT] = ACTIONS(2725), + [anon_sym_LT_TILDE] = ACTIONS(2725), + [anon_sym_TILDE_GT] = ACTIONS(2725), + [anon_sym_LT_TILDE_GT] = ACTIONS(2725), + [anon_sym_LT_PIPE_GT] = ACTIONS(2725), + [anon_sym_in] = ACTIONS(2735), + [anon_sym_PLUS_PLUS] = ACTIONS(2725), + [anon_sym_DASH_DASH] = ACTIONS(2725), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2725), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2725), + [anon_sym_DOT_DOT] = ACTIONS(2725), + [anon_sym_LT_GT] = ACTIONS(2725), + [anon_sym_STAR] = ACTIONS(2725), + [anon_sym_STAR_STAR] = ACTIONS(2725), + [anon_sym_CARET_CARET] = ACTIONS(2725), + [anon_sym_DASH_GT] = ACTIONS(2725), + [anon_sym_DOT] = ACTIONS(2725), + [anon_sym_after] = ACTIONS(2719), + [anon_sym_catch] = ACTIONS(2719), + [anon_sym_do] = ACTIONS(2719), + [anon_sym_else] = ACTIONS(2719), + [anon_sym_end] = ACTIONS(2719), + [anon_sym_fn] = ACTIONS(2719), + [anon_sym_rescue] = ACTIONS(2719), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2737), + }, + [1051] = { + [sym__identifier] = STATE(933), + [sym_identifier] = STATE(933), + [sym_special_identifier] = STATE(933), + [sym__quoted_i_double] = STATE(932), + [sym__quoted_i_single] = STATE(931), + [sym_tuple] = STATE(2749), + [sym_operator_identifier] = STATE(933), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2713), + [aux_sym_identifier_token1] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(365), + [sym_unused_identifier] = ACTIONS(2763), + [anon_sym___MODULE__] = ACTIONS(369), + [anon_sym___DIR__] = ACTIONS(369), + [anon_sym___ENV__] = ACTIONS(369), + [anon_sym___CALLER__] = ACTIONS(369), + [anon_sym___STACKTRACE__] = ACTIONS(369), + [sym_alias] = ACTIONS(2865), + [anon_sym_true] = ACTIONS(2767), + [anon_sym_false] = ACTIONS(2767), + [anon_sym_nil] = ACTIONS(2767), + [anon_sym_DQUOTE] = ACTIONS(2769), + [anon_sym_SQUOTE] = ACTIONS(2771), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LT] = ACTIONS(2773), + [anon_sym_GT] = ACTIONS(2773), + [anon_sym_PIPE] = ACTIONS(2773), + [anon_sym_SLASH] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2775), + [anon_sym_PLUS] = ACTIONS(2777), + [anon_sym_DASH] = ACTIONS(2777), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_CARET] = ACTIONS(2777), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2777), + [anon_sym_not] = ACTIONS(2779), + [anon_sym_AT] = ACTIONS(2781), + [anon_sym_LT_DASH] = ACTIONS(2773), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2773), + [anon_sym_when] = ACTIONS(2783), + [anon_sym_COLON_COLON] = ACTIONS(2773), + [anon_sym_EQ] = ACTIONS(2773), + [anon_sym_PIPE_PIPE] = ACTIONS(2773), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2773), + [anon_sym_or] = ACTIONS(2783), + [anon_sym_AMP_AMP] = ACTIONS(2773), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2773), + [anon_sym_and] = ACTIONS(2783), + [anon_sym_EQ_EQ] = ACTIONS(2773), + [anon_sym_BANG_EQ] = ACTIONS(2773), + [anon_sym_EQ_TILDE] = ACTIONS(2773), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2773), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2773), + [anon_sym_LT_EQ] = ACTIONS(2773), + [anon_sym_GT_EQ] = ACTIONS(2773), + [anon_sym_PIPE_GT] = ACTIONS(2773), + [anon_sym_LT_LT_LT] = ACTIONS(2773), + [anon_sym_GT_GT_GT] = ACTIONS(2773), + [anon_sym_LT_LT_TILDE] = ACTIONS(2773), + [anon_sym_TILDE_GT_GT] = ACTIONS(2773), + [anon_sym_LT_TILDE] = ACTIONS(2773), + [anon_sym_TILDE_GT] = ACTIONS(2773), + [anon_sym_LT_TILDE_GT] = ACTIONS(2773), + [anon_sym_LT_PIPE_GT] = ACTIONS(2773), + [anon_sym_in] = ACTIONS(2783), + [anon_sym_PLUS_PLUS] = ACTIONS(2773), + [anon_sym_DASH_DASH] = ACTIONS(2773), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2773), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2773), + [anon_sym_DOT_DOT] = ACTIONS(2773), + [anon_sym_LT_GT] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2773), + [anon_sym_STAR_STAR] = ACTIONS(2773), + [anon_sym_CARET_CARET] = ACTIONS(2773), + [anon_sym_DASH_GT] = ACTIONS(2773), + [anon_sym_DOT] = ACTIONS(2773), + [anon_sym_after] = ACTIONS(2767), + [anon_sym_catch] = ACTIONS(2767), + [anon_sym_do] = ACTIONS(2767), + [anon_sym_else] = ACTIONS(2767), + [anon_sym_end] = ACTIONS(2767), + [anon_sym_fn] = ACTIONS(2767), + [anon_sym_rescue] = ACTIONS(2767), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2785), + }, + [1052] = { + [sym__identifier] = STATE(917), + [sym_identifier] = STATE(917), + [sym_special_identifier] = STATE(917), + [sym__quoted_i_double] = STATE(913), + [sym__quoted_i_single] = STATE(914), + [sym_tuple] = STATE(1253), + [sym_operator_identifier] = STATE(917), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2713), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(2739), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2717), [anon_sym_true] = ACTIONS(2743), [anon_sym_false] = ACTIONS(2743), [anon_sym_nil] = ACTIONS(2743), [anon_sym_DQUOTE] = ACTIONS(2745), [anon_sym_SQUOTE] = ACTIONS(2747), - [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACE] = ACTIONS(215), [anon_sym_LT] = ACTIONS(2749), [anon_sym_GT] = ACTIONS(2749), [anon_sym_PIPE] = ACTIONS(2749), @@ -154463,118 +155101,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2761), }, [1053] = { - [sym__identifier] = STATE(994), - [sym_identifier] = STATE(994), - [sym_special_identifier] = STATE(994), - [sym__quoted_i_double] = STATE(995), - [sym__quoted_i_single] = STATE(1000), - [sym_tuple] = STATE(2924), - [sym_operator_identifier] = STATE(994), + [sym__identifier] = STATE(917), + [sym_identifier] = STATE(917), + [sym_special_identifier] = STATE(917), + [sym__quoted_i_double] = STATE(913), + [sym__quoted_i_single] = STATE(914), + [sym_tuple] = STATE(1689), + [sym_operator_identifier] = STATE(917), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(2713), - [aux_sym_identifier_token1] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(606), - [sym_unused_identifier] = ACTIONS(2835), - [anon_sym___MODULE__] = ACTIONS(610), - [anon_sym___DIR__] = ACTIONS(610), - [anon_sym___ENV__] = ACTIONS(610), - [anon_sym___CALLER__] = ACTIONS(610), - [anon_sym___STACKTRACE__] = ACTIONS(610), - [sym_alias] = ACTIONS(2865), - [anon_sym_true] = ACTIONS(2839), - [anon_sym_false] = ACTIONS(2839), - [anon_sym_nil] = ACTIONS(2839), - [anon_sym_DQUOTE] = ACTIONS(2841), - [anon_sym_SQUOTE] = ACTIONS(2843), - [anon_sym_LBRACE] = ACTIONS(626), - [anon_sym_LT] = ACTIONS(2845), - [anon_sym_GT] = ACTIONS(2845), - [anon_sym_PIPE] = ACTIONS(2845), - [anon_sym_SLASH] = ACTIONS(2845), - [anon_sym_AMP] = ACTIONS(2847), - [anon_sym_PLUS] = ACTIONS(2849), - [anon_sym_DASH] = ACTIONS(2849), - [anon_sym_BANG] = ACTIONS(2849), - [anon_sym_CARET] = ACTIONS(2849), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2849), - [anon_sym_not] = ACTIONS(2851), - [anon_sym_AT] = ACTIONS(2853), - [anon_sym_LT_DASH] = ACTIONS(2845), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2845), - [anon_sym_when] = ACTIONS(2855), - [anon_sym_COLON_COLON] = ACTIONS(2845), - [anon_sym_EQ] = ACTIONS(2845), - [anon_sym_PIPE_PIPE] = ACTIONS(2845), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2845), - [anon_sym_or] = ACTIONS(2855), - [anon_sym_AMP_AMP] = ACTIONS(2845), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2845), - [anon_sym_and] = ACTIONS(2855), - [anon_sym_EQ_EQ] = ACTIONS(2845), - [anon_sym_BANG_EQ] = ACTIONS(2845), - [anon_sym_EQ_TILDE] = ACTIONS(2845), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2845), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2845), - [anon_sym_LT_EQ] = ACTIONS(2845), - [anon_sym_GT_EQ] = ACTIONS(2845), - [anon_sym_PIPE_GT] = ACTIONS(2845), - [anon_sym_LT_LT_LT] = ACTIONS(2845), - [anon_sym_GT_GT_GT] = ACTIONS(2845), - [anon_sym_LT_LT_TILDE] = ACTIONS(2845), - [anon_sym_TILDE_GT_GT] = ACTIONS(2845), - [anon_sym_LT_TILDE] = ACTIONS(2845), - [anon_sym_TILDE_GT] = ACTIONS(2845), - [anon_sym_LT_TILDE_GT] = ACTIONS(2845), - [anon_sym_LT_PIPE_GT] = ACTIONS(2845), - [anon_sym_in] = ACTIONS(2855), - [anon_sym_PLUS_PLUS] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2845), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2845), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2845), - [anon_sym_DOT_DOT] = ACTIONS(2845), - [anon_sym_LT_GT] = ACTIONS(2845), - [anon_sym_STAR] = ACTIONS(2845), - [anon_sym_STAR_STAR] = ACTIONS(2845), - [anon_sym_CARET_CARET] = ACTIONS(2845), - [anon_sym_DASH_GT] = ACTIONS(2845), - [anon_sym_DOT] = ACTIONS(2845), - [anon_sym_after] = ACTIONS(2839), - [anon_sym_catch] = ACTIONS(2839), - [anon_sym_do] = ACTIONS(2839), - [anon_sym_else] = ACTIONS(2839), - [anon_sym_end] = ACTIONS(2839), - [anon_sym_fn] = ACTIONS(2839), - [anon_sym_rescue] = ACTIONS(2839), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2857), - }, - [1054] = { - [sym__identifier] = STATE(978), - [sym_identifier] = STATE(978), - [sym_special_identifier] = STATE(978), - [sym__quoted_i_double] = STATE(970), - [sym__quoted_i_single] = STATE(965), - [sym_tuple] = STATE(1607), - [sym_operator_identifier] = STATE(978), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2713), - [aux_sym_identifier_token1] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), [sym_unused_identifier] = ACTIONS(2739), - [anon_sym___MODULE__] = ACTIONS(440), - [anon_sym___DIR__] = ACTIONS(440), - [anon_sym___ENV__] = ACTIONS(440), - [anon_sym___CALLER__] = ACTIONS(440), - [anon_sym___STACKTRACE__] = ACTIONS(440), - [sym_alias] = ACTIONS(2717), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2863), [anon_sym_true] = ACTIONS(2743), [anon_sym_false] = ACTIONS(2743), [anon_sym_nil] = ACTIONS(2743), [anon_sym_DQUOTE] = ACTIONS(2745), [anon_sym_SQUOTE] = ACTIONS(2747), - [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(87), [anon_sym_LT] = ACTIONS(2749), [anon_sym_GT] = ACTIONS(2749), [anon_sym_PIPE] = ACTIONS(2749), @@ -154638,269 +155188,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline_before_comment] = ACTIONS(3), [sym__not_in] = ACTIONS(2761), }, - [1055] = { - [sym__identifier] = STATE(950), - [sym_identifier] = STATE(950), - [sym_special_identifier] = STATE(950), - [sym__quoted_i_double] = STATE(947), - [sym__quoted_i_single] = STATE(946), - [sym_tuple] = STATE(3295), - [sym_operator_identifier] = STATE(950), + [1054] = { + [sym__identifier] = STATE(1014), + [sym_identifier] = STATE(1014), + [sym_special_identifier] = STATE(1014), + [sym__quoted_i_double] = STATE(1011), + [sym__quoted_i_single] = STATE(995), + [sym_tuple] = STATE(4029), + [sym_operator_identifier] = STATE(1014), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(2713), - [aux_sym_identifier_token1] = ACTIONS(481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(481), - [sym_unused_identifier] = ACTIONS(2811), - [anon_sym___MODULE__] = ACTIONS(485), - [anon_sym___DIR__] = ACTIONS(485), - [anon_sym___ENV__] = ACTIONS(485), - [anon_sym___CALLER__] = ACTIONS(485), - [anon_sym___STACKTRACE__] = ACTIONS(485), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(2839), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), [sym_alias] = ACTIONS(2867), - [anon_sym_true] = ACTIONS(2815), - [anon_sym_false] = ACTIONS(2815), - [anon_sym_nil] = ACTIONS(2815), - [anon_sym_DQUOTE] = ACTIONS(2817), - [anon_sym_SQUOTE] = ACTIONS(2819), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_LT] = ACTIONS(2821), - [anon_sym_GT] = ACTIONS(2821), - [anon_sym_PIPE] = ACTIONS(2821), - [anon_sym_SLASH] = ACTIONS(2821), - [anon_sym_AMP] = ACTIONS(2823), - [anon_sym_PLUS] = ACTIONS(2825), - [anon_sym_DASH] = ACTIONS(2825), - [anon_sym_BANG] = ACTIONS(2825), - [anon_sym_CARET] = ACTIONS(2825), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2825), - [anon_sym_not] = ACTIONS(2827), - [anon_sym_AT] = ACTIONS(2829), - [anon_sym_LT_DASH] = ACTIONS(2821), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2821), - [anon_sym_when] = ACTIONS(2831), - [anon_sym_COLON_COLON] = ACTIONS(2821), - [anon_sym_EQ] = ACTIONS(2821), - [anon_sym_PIPE_PIPE] = ACTIONS(2821), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2821), - [anon_sym_or] = ACTIONS(2831), - [anon_sym_AMP_AMP] = ACTIONS(2821), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2821), - [anon_sym_and] = ACTIONS(2831), - [anon_sym_EQ_EQ] = ACTIONS(2821), - [anon_sym_BANG_EQ] = ACTIONS(2821), - [anon_sym_EQ_TILDE] = ACTIONS(2821), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2821), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2821), - [anon_sym_LT_EQ] = ACTIONS(2821), - [anon_sym_GT_EQ] = ACTIONS(2821), - [anon_sym_PIPE_GT] = ACTIONS(2821), - [anon_sym_LT_LT_LT] = ACTIONS(2821), - [anon_sym_GT_GT_GT] = ACTIONS(2821), - [anon_sym_LT_LT_TILDE] = ACTIONS(2821), - [anon_sym_TILDE_GT_GT] = ACTIONS(2821), - [anon_sym_LT_TILDE] = ACTIONS(2821), - [anon_sym_TILDE_GT] = ACTIONS(2821), - [anon_sym_LT_TILDE_GT] = ACTIONS(2821), - [anon_sym_LT_PIPE_GT] = ACTIONS(2821), - [anon_sym_in] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2821), - [anon_sym_DASH_DASH] = ACTIONS(2821), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2821), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2821), - [anon_sym_DOT_DOT] = ACTIONS(2821), - [anon_sym_LT_GT] = ACTIONS(2821), - [anon_sym_STAR] = ACTIONS(2821), - [anon_sym_STAR_STAR] = ACTIONS(2821), - [anon_sym_CARET_CARET] = ACTIONS(2821), - [anon_sym_DASH_GT] = ACTIONS(2821), - [anon_sym_DOT] = ACTIONS(2821), - [anon_sym_after] = ACTIONS(2815), - [anon_sym_catch] = ACTIONS(2815), - [anon_sym_do] = ACTIONS(2815), - [anon_sym_else] = ACTIONS(2815), - [anon_sym_end] = ACTIONS(2815), - [anon_sym_fn] = ACTIONS(2815), - [anon_sym_rescue] = ACTIONS(2815), + [anon_sym_true] = ACTIONS(2843), + [anon_sym_false] = ACTIONS(2843), + [anon_sym_nil] = ACTIONS(2843), + [anon_sym_DQUOTE] = ACTIONS(2845), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_LT] = ACTIONS(2849), + [anon_sym_GT] = ACTIONS(2849), + [anon_sym_PIPE] = ACTIONS(2849), + [anon_sym_SLASH] = ACTIONS(2849), + [anon_sym_AMP] = ACTIONS(2851), + [anon_sym_PLUS] = ACTIONS(2853), + [anon_sym_DASH] = ACTIONS(2853), + [anon_sym_BANG] = ACTIONS(2853), + [anon_sym_CARET] = ACTIONS(2853), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2853), + [anon_sym_not] = ACTIONS(2855), + [anon_sym_AT] = ACTIONS(2857), + [anon_sym_LT_DASH] = ACTIONS(2849), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2849), + [anon_sym_when] = ACTIONS(2859), + [anon_sym_COLON_COLON] = ACTIONS(2849), + [anon_sym_EQ] = ACTIONS(2849), + [anon_sym_PIPE_PIPE] = ACTIONS(2849), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2849), + [anon_sym_or] = ACTIONS(2859), + [anon_sym_AMP_AMP] = ACTIONS(2849), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2849), + [anon_sym_and] = ACTIONS(2859), + [anon_sym_EQ_EQ] = ACTIONS(2849), + [anon_sym_BANG_EQ] = ACTIONS(2849), + [anon_sym_EQ_TILDE] = ACTIONS(2849), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2849), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2849), + [anon_sym_LT_EQ] = ACTIONS(2849), + [anon_sym_GT_EQ] = ACTIONS(2849), + [anon_sym_PIPE_GT] = ACTIONS(2849), + [anon_sym_LT_LT_LT] = ACTIONS(2849), + [anon_sym_GT_GT_GT] = ACTIONS(2849), + [anon_sym_LT_LT_TILDE] = ACTIONS(2849), + [anon_sym_TILDE_GT_GT] = ACTIONS(2849), + [anon_sym_LT_TILDE] = ACTIONS(2849), + [anon_sym_TILDE_GT] = ACTIONS(2849), + [anon_sym_LT_TILDE_GT] = ACTIONS(2849), + [anon_sym_LT_PIPE_GT] = ACTIONS(2849), + [anon_sym_in] = ACTIONS(2859), + [anon_sym_PLUS_PLUS] = ACTIONS(2849), + [anon_sym_DASH_DASH] = ACTIONS(2849), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2849), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2849), + [anon_sym_DOT_DOT] = ACTIONS(2849), + [anon_sym_LT_GT] = ACTIONS(2849), + [anon_sym_STAR] = ACTIONS(2849), + [anon_sym_STAR_STAR] = ACTIONS(2849), + [anon_sym_CARET_CARET] = ACTIONS(2849), + [anon_sym_DASH_GT] = ACTIONS(2849), + [anon_sym_DOT] = ACTIONS(2849), + [anon_sym_after] = ACTIONS(2843), + [anon_sym_catch] = ACTIONS(2843), + [anon_sym_do] = ACTIONS(2843), + [anon_sym_else] = ACTIONS(2843), + [anon_sym_end] = ACTIONS(2843), + [anon_sym_fn] = ACTIONS(2843), + [anon_sym_rescue] = ACTIONS(2843), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2833), + [sym__not_in] = ACTIONS(2861), + }, + [1055] = { + [sym__identifier] = STATE(956), + [sym_identifier] = STATE(956), + [sym_special_identifier] = STATE(956), + [sym__quoted_i_double] = STATE(957), + [sym__quoted_i_single] = STATE(958), + [sym_tuple] = STATE(1434), + [sym_operator_identifier] = STATE(956), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2713), + [aux_sym_identifier_token1] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_unused_identifier] = ACTIONS(2715), + [anon_sym___MODULE__] = ACTIONS(463), + [anon_sym___DIR__] = ACTIONS(463), + [anon_sym___ENV__] = ACTIONS(463), + [anon_sym___CALLER__] = ACTIONS(463), + [anon_sym___STACKTRACE__] = ACTIONS(463), + [sym_alias] = ACTIONS(2741), + [anon_sym_true] = ACTIONS(2719), + [anon_sym_false] = ACTIONS(2719), + [anon_sym_nil] = ACTIONS(2719), + [anon_sym_DQUOTE] = ACTIONS(2721), + [anon_sym_SQUOTE] = ACTIONS(2723), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(2725), + [anon_sym_GT] = ACTIONS(2725), + [anon_sym_PIPE] = ACTIONS(2725), + [anon_sym_SLASH] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2727), + [anon_sym_PLUS] = ACTIONS(2729), + [anon_sym_DASH] = ACTIONS(2729), + [anon_sym_BANG] = ACTIONS(2729), + [anon_sym_CARET] = ACTIONS(2729), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2729), + [anon_sym_not] = ACTIONS(2731), + [anon_sym_AT] = ACTIONS(2733), + [anon_sym_LT_DASH] = ACTIONS(2725), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2725), + [anon_sym_when] = ACTIONS(2735), + [anon_sym_COLON_COLON] = ACTIONS(2725), + [anon_sym_EQ] = ACTIONS(2725), + [anon_sym_PIPE_PIPE] = ACTIONS(2725), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2725), + [anon_sym_or] = ACTIONS(2735), + [anon_sym_AMP_AMP] = ACTIONS(2725), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2725), + [anon_sym_and] = ACTIONS(2735), + [anon_sym_EQ_EQ] = ACTIONS(2725), + [anon_sym_BANG_EQ] = ACTIONS(2725), + [anon_sym_EQ_TILDE] = ACTIONS(2725), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2725), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2725), + [anon_sym_LT_EQ] = ACTIONS(2725), + [anon_sym_GT_EQ] = ACTIONS(2725), + [anon_sym_PIPE_GT] = ACTIONS(2725), + [anon_sym_LT_LT_LT] = ACTIONS(2725), + [anon_sym_GT_GT_GT] = ACTIONS(2725), + [anon_sym_LT_LT_TILDE] = ACTIONS(2725), + [anon_sym_TILDE_GT_GT] = ACTIONS(2725), + [anon_sym_LT_TILDE] = ACTIONS(2725), + [anon_sym_TILDE_GT] = ACTIONS(2725), + [anon_sym_LT_TILDE_GT] = ACTIONS(2725), + [anon_sym_LT_PIPE_GT] = ACTIONS(2725), + [anon_sym_in] = ACTIONS(2735), + [anon_sym_PLUS_PLUS] = ACTIONS(2725), + [anon_sym_DASH_DASH] = ACTIONS(2725), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2725), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2725), + [anon_sym_DOT_DOT] = ACTIONS(2725), + [anon_sym_LT_GT] = ACTIONS(2725), + [anon_sym_STAR] = ACTIONS(2725), + [anon_sym_STAR_STAR] = ACTIONS(2725), + [anon_sym_CARET_CARET] = ACTIONS(2725), + [anon_sym_DASH_GT] = ACTIONS(2725), + [anon_sym_DOT] = ACTIONS(2725), + [anon_sym_after] = ACTIONS(2719), + [anon_sym_catch] = ACTIONS(2719), + [anon_sym_do] = ACTIONS(2719), + [anon_sym_else] = ACTIONS(2719), + [anon_sym_end] = ACTIONS(2719), + [anon_sym_fn] = ACTIONS(2719), + [anon_sym_rescue] = ACTIONS(2719), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2737), }, [1056] = { - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2681), - [anon_sym_RPAREN] = ACTIONS(2681), - [aux_sym_identifier_token1] = ACTIONS(2681), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2681), - [sym_unused_identifier] = ACTIONS(2681), - [anon_sym___MODULE__] = ACTIONS(2681), - [anon_sym___DIR__] = ACTIONS(2681), - [anon_sym___ENV__] = ACTIONS(2681), - [anon_sym___CALLER__] = ACTIONS(2681), - [anon_sym___STACKTRACE__] = ACTIONS(2681), - [sym_alias] = ACTIONS(2681), - [sym_integer] = ACTIONS(2681), - [sym_float] = ACTIONS(2681), - [sym_char] = ACTIONS(2681), - [anon_sym_true] = ACTIONS(2681), - [anon_sym_false] = ACTIONS(2681), - [anon_sym_nil] = ACTIONS(2681), - [sym_atom] = ACTIONS(2681), - [anon_sym_DQUOTE] = ACTIONS(2681), - [anon_sym_SQUOTE] = ACTIONS(2681), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2681), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2681), - [anon_sym_LBRACE] = ACTIONS(2681), - [anon_sym_LBRACK] = ACTIONS(2681), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_GT] = ACTIONS(2681), - [anon_sym_PIPE] = ACTIONS(2681), - [anon_sym_SLASH] = ACTIONS(2681), - [anon_sym_TILDE] = ACTIONS(2681), - [anon_sym_LT_LT] = ACTIONS(2681), - [anon_sym_PERCENT] = ACTIONS(2681), - [anon_sym_AMP] = ACTIONS(2681), - [anon_sym_PLUS] = ACTIONS(2681), - [anon_sym_DASH] = ACTIONS(2681), - [anon_sym_BANG] = ACTIONS(2681), - [anon_sym_CARET] = ACTIONS(2681), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2681), - [anon_sym_not] = ACTIONS(2681), - [anon_sym_AT] = ACTIONS(2681), - [anon_sym_LT_DASH] = ACTIONS(2681), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2681), - [anon_sym_when] = ACTIONS(2681), - [anon_sym_COLON_COLON] = ACTIONS(2681), - [anon_sym_EQ] = ACTIONS(2681), - [anon_sym_PIPE_PIPE] = ACTIONS(2681), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2681), - [anon_sym_or] = ACTIONS(2681), - [anon_sym_AMP_AMP] = ACTIONS(2681), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2681), - [anon_sym_and] = ACTIONS(2681), - [anon_sym_EQ_EQ] = ACTIONS(2681), - [anon_sym_BANG_EQ] = ACTIONS(2681), - [anon_sym_EQ_TILDE] = ACTIONS(2681), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2681), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2681), - [anon_sym_LT_EQ] = ACTIONS(2681), - [anon_sym_GT_EQ] = ACTIONS(2681), - [anon_sym_PIPE_GT] = ACTIONS(2681), - [anon_sym_LT_LT_LT] = ACTIONS(2681), - [anon_sym_GT_GT_GT] = ACTIONS(2681), - [anon_sym_LT_LT_TILDE] = ACTIONS(2681), - [anon_sym_TILDE_GT_GT] = ACTIONS(2681), - [anon_sym_LT_TILDE] = ACTIONS(2681), - [anon_sym_TILDE_GT] = ACTIONS(2681), - [anon_sym_LT_TILDE_GT] = ACTIONS(2681), - [anon_sym_LT_PIPE_GT] = ACTIONS(2681), - [anon_sym_in] = ACTIONS(2681), - [anon_sym_PLUS_PLUS] = ACTIONS(2681), - [anon_sym_DASH_DASH] = ACTIONS(2681), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2681), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2681), - [anon_sym_DOT_DOT] = ACTIONS(2681), - [anon_sym_LT_GT] = ACTIONS(2681), - [anon_sym_STAR] = ACTIONS(2681), - [anon_sym_STAR_STAR] = ACTIONS(2681), - [anon_sym_CARET_CARET] = ACTIONS(2681), - [anon_sym_DASH_GT] = ACTIONS(2681), - [anon_sym_DOT] = ACTIONS(2681), - [anon_sym_fn] = ACTIONS(2681), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2679), - [sym__not_in] = ACTIONS(2679), - [sym__quoted_atom_start] = ACTIONS(2679), - }, - [1057] = { - [sym__identifier] = STATE(941), - [sym_identifier] = STATE(941), - [sym_special_identifier] = STATE(941), - [sym__quoted_i_double] = STATE(940), - [sym__quoted_i_single] = STATE(933), - [sym_tuple] = STATE(2373), - [sym_operator_identifier] = STATE(941), + [sym__identifier] = STATE(989), + [sym_identifier] = STATE(989), + [sym_special_identifier] = STATE(989), + [sym__quoted_i_double] = STATE(990), + [sym__quoted_i_single] = STATE(991), + [sym_tuple] = STATE(1434), + [sym_operator_identifier] = STATE(989), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(2713), - [aux_sym_identifier_token1] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(359), - [sym_unused_identifier] = ACTIONS(2787), - [anon_sym___MODULE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [anon_sym___ENV__] = ACTIONS(363), - [anon_sym___CALLER__] = ACTIONS(363), - [anon_sym___STACKTRACE__] = ACTIONS(363), - [sym_alias] = ACTIONS(2869), - [anon_sym_true] = ACTIONS(2791), - [anon_sym_false] = ACTIONS(2791), - [anon_sym_nil] = ACTIONS(2791), - [anon_sym_DQUOTE] = ACTIONS(2793), - [anon_sym_SQUOTE] = ACTIONS(2795), - [anon_sym_LBRACE] = ACTIONS(574), - [anon_sym_LT] = ACTIONS(2797), - [anon_sym_GT] = ACTIONS(2797), - [anon_sym_PIPE] = ACTIONS(2797), - [anon_sym_SLASH] = ACTIONS(2797), - [anon_sym_AMP] = ACTIONS(2799), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_BANG] = ACTIONS(2801), - [anon_sym_CARET] = ACTIONS(2801), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2801), - [anon_sym_not] = ACTIONS(2803), - [anon_sym_AT] = ACTIONS(2805), - [anon_sym_LT_DASH] = ACTIONS(2797), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2797), - [anon_sym_when] = ACTIONS(2807), - [anon_sym_COLON_COLON] = ACTIONS(2797), - [anon_sym_EQ] = ACTIONS(2797), - [anon_sym_PIPE_PIPE] = ACTIONS(2797), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2797), - [anon_sym_or] = ACTIONS(2807), - [anon_sym_AMP_AMP] = ACTIONS(2797), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2797), - [anon_sym_and] = ACTIONS(2807), - [anon_sym_EQ_EQ] = ACTIONS(2797), - [anon_sym_BANG_EQ] = ACTIONS(2797), - [anon_sym_EQ_TILDE] = ACTIONS(2797), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2797), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2797), - [anon_sym_LT_EQ] = ACTIONS(2797), - [anon_sym_GT_EQ] = ACTIONS(2797), - [anon_sym_PIPE_GT] = ACTIONS(2797), - [anon_sym_LT_LT_LT] = ACTIONS(2797), - [anon_sym_GT_GT_GT] = ACTIONS(2797), - [anon_sym_LT_LT_TILDE] = ACTIONS(2797), - [anon_sym_TILDE_GT_GT] = ACTIONS(2797), - [anon_sym_LT_TILDE] = ACTIONS(2797), - [anon_sym_TILDE_GT] = ACTIONS(2797), - [anon_sym_LT_TILDE_GT] = ACTIONS(2797), - [anon_sym_LT_PIPE_GT] = ACTIONS(2797), - [anon_sym_in] = ACTIONS(2807), - [anon_sym_PLUS_PLUS] = ACTIONS(2797), - [anon_sym_DASH_DASH] = ACTIONS(2797), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2797), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2797), - [anon_sym_DOT_DOT] = ACTIONS(2797), - [anon_sym_LT_GT] = ACTIONS(2797), - [anon_sym_STAR] = ACTIONS(2797), - [anon_sym_STAR_STAR] = ACTIONS(2797), - [anon_sym_CARET_CARET] = ACTIONS(2797), - [anon_sym_DASH_GT] = ACTIONS(2797), - [anon_sym_DOT] = ACTIONS(2797), - [anon_sym_after] = ACTIONS(2791), - [anon_sym_catch] = ACTIONS(2791), - [anon_sym_do] = ACTIONS(2791), - [anon_sym_else] = ACTIONS(2791), - [anon_sym_end] = ACTIONS(2791), - [anon_sym_fn] = ACTIONS(2791), - [anon_sym_rescue] = ACTIONS(2791), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(2793), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(2741), + [anon_sym_true] = ACTIONS(2795), + [anon_sym_false] = ACTIONS(2795), + [anon_sym_nil] = ACTIONS(2795), + [anon_sym_DQUOTE] = ACTIONS(2797), + [anon_sym_SQUOTE] = ACTIONS(2799), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(2801), + [anon_sym_GT] = ACTIONS(2801), + [anon_sym_PIPE] = ACTIONS(2801), + [anon_sym_SLASH] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_BANG] = ACTIONS(2805), + [anon_sym_CARET] = ACTIONS(2805), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2805), + [anon_sym_not] = ACTIONS(2807), + [anon_sym_AT] = ACTIONS(2809), + [anon_sym_LT_DASH] = ACTIONS(2801), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2801), + [anon_sym_when] = ACTIONS(2811), + [anon_sym_COLON_COLON] = ACTIONS(2801), + [anon_sym_EQ] = ACTIONS(2801), + [anon_sym_PIPE_PIPE] = ACTIONS(2801), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2801), + [anon_sym_or] = ACTIONS(2811), + [anon_sym_AMP_AMP] = ACTIONS(2801), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2801), + [anon_sym_and] = ACTIONS(2811), + [anon_sym_EQ_EQ] = ACTIONS(2801), + [anon_sym_BANG_EQ] = ACTIONS(2801), + [anon_sym_EQ_TILDE] = ACTIONS(2801), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2801), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2801), + [anon_sym_LT_EQ] = ACTIONS(2801), + [anon_sym_GT_EQ] = ACTIONS(2801), + [anon_sym_PIPE_GT] = ACTIONS(2801), + [anon_sym_LT_LT_LT] = ACTIONS(2801), + [anon_sym_GT_GT_GT] = ACTIONS(2801), + [anon_sym_LT_LT_TILDE] = ACTIONS(2801), + [anon_sym_TILDE_GT_GT] = ACTIONS(2801), + [anon_sym_LT_TILDE] = ACTIONS(2801), + [anon_sym_TILDE_GT] = ACTIONS(2801), + [anon_sym_LT_TILDE_GT] = ACTIONS(2801), + [anon_sym_LT_PIPE_GT] = ACTIONS(2801), + [anon_sym_in] = ACTIONS(2811), + [anon_sym_PLUS_PLUS] = ACTIONS(2801), + [anon_sym_DASH_DASH] = ACTIONS(2801), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2801), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2801), + [anon_sym_DOT_DOT] = ACTIONS(2801), + [anon_sym_LT_GT] = ACTIONS(2801), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_STAR_STAR] = ACTIONS(2801), + [anon_sym_CARET_CARET] = ACTIONS(2801), + [anon_sym_DASH_GT] = ACTIONS(2801), + [anon_sym_DOT] = ACTIONS(2801), + [anon_sym_after] = ACTIONS(2795), + [anon_sym_catch] = ACTIONS(2795), + [anon_sym_do] = ACTIONS(2795), + [anon_sym_else] = ACTIONS(2795), + [anon_sym_end] = ACTIONS(2795), + [anon_sym_fn] = ACTIONS(2795), + [anon_sym_rescue] = ACTIONS(2795), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2809), + [sym__not_in] = ACTIONS(2813), + }, + [1057] = { + [sym__identifier] = STATE(973), + [sym_identifier] = STATE(973), + [sym_special_identifier] = STATE(973), + [sym__quoted_i_double] = STATE(970), + [sym__quoted_i_single] = STATE(975), + [sym_tuple] = STATE(2684), + [sym_operator_identifier] = STATE(973), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2713), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(2815), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(2869), + [anon_sym_true] = ACTIONS(2819), + [anon_sym_false] = ACTIONS(2819), + [anon_sym_nil] = ACTIONS(2819), + [anon_sym_DQUOTE] = ACTIONS(2821), + [anon_sym_SQUOTE] = ACTIONS(2823), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LT] = ACTIONS(2825), + [anon_sym_GT] = ACTIONS(2825), + [anon_sym_PIPE] = ACTIONS(2825), + [anon_sym_SLASH] = ACTIONS(2825), + [anon_sym_AMP] = ACTIONS(2827), + [anon_sym_PLUS] = ACTIONS(2829), + [anon_sym_DASH] = ACTIONS(2829), + [anon_sym_BANG] = ACTIONS(2829), + [anon_sym_CARET] = ACTIONS(2829), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2829), + [anon_sym_not] = ACTIONS(2831), + [anon_sym_AT] = ACTIONS(2833), + [anon_sym_LT_DASH] = ACTIONS(2825), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2825), + [anon_sym_when] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2825), + [anon_sym_EQ] = ACTIONS(2825), + [anon_sym_PIPE_PIPE] = ACTIONS(2825), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2825), + [anon_sym_or] = ACTIONS(2835), + [anon_sym_AMP_AMP] = ACTIONS(2825), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2825), + [anon_sym_and] = ACTIONS(2835), + [anon_sym_EQ_EQ] = ACTIONS(2825), + [anon_sym_BANG_EQ] = ACTIONS(2825), + [anon_sym_EQ_TILDE] = ACTIONS(2825), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2825), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2825), + [anon_sym_LT_EQ] = ACTIONS(2825), + [anon_sym_GT_EQ] = ACTIONS(2825), + [anon_sym_PIPE_GT] = ACTIONS(2825), + [anon_sym_LT_LT_LT] = ACTIONS(2825), + [anon_sym_GT_GT_GT] = ACTIONS(2825), + [anon_sym_LT_LT_TILDE] = ACTIONS(2825), + [anon_sym_TILDE_GT_GT] = ACTIONS(2825), + [anon_sym_LT_TILDE] = ACTIONS(2825), + [anon_sym_TILDE_GT] = ACTIONS(2825), + [anon_sym_LT_TILDE_GT] = ACTIONS(2825), + [anon_sym_LT_PIPE_GT] = ACTIONS(2825), + [anon_sym_in] = ACTIONS(2835), + [anon_sym_PLUS_PLUS] = ACTIONS(2825), + [anon_sym_DASH_DASH] = ACTIONS(2825), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2825), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2825), + [anon_sym_DOT_DOT] = ACTIONS(2825), + [anon_sym_LT_GT] = ACTIONS(2825), + [anon_sym_STAR] = ACTIONS(2825), + [anon_sym_STAR_STAR] = ACTIONS(2825), + [anon_sym_CARET_CARET] = ACTIONS(2825), + [anon_sym_DASH_GT] = ACTIONS(2825), + [anon_sym_DOT] = ACTIONS(2825), + [anon_sym_after] = ACTIONS(2819), + [anon_sym_catch] = ACTIONS(2819), + [anon_sym_do] = ACTIONS(2819), + [anon_sym_else] = ACTIONS(2819), + [anon_sym_end] = ACTIONS(2819), + [anon_sym_fn] = ACTIONS(2819), + [anon_sym_rescue] = ACTIONS(2819), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2837), }, [1058] = { [aux_sym__terminator_token1] = ACTIONS(3), @@ -154990,15 +155628,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(2873), }, [1059] = { - [sym__terminator] = STATE(166), - [sym_after_block] = STATE(3679), - [sym_rescue_block] = STATE(3679), - [sym_catch_block] = STATE(3679), - [sym_else_block] = STATE(3679), - [aux_sym__terminator_repeat1] = STATE(1020), - [aux_sym_block_repeat2] = STATE(3652), - [aux_sym_do_block_repeat1] = STATE(3679), - [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(4529), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2871), + [aux_sym_identifier_token1] = ACTIONS(2871), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2871), + [sym_unused_identifier] = ACTIONS(2871), + [anon_sym___MODULE__] = ACTIONS(2871), + [anon_sym___DIR__] = ACTIONS(2871), + [anon_sym___ENV__] = ACTIONS(2871), + [anon_sym___CALLER__] = ACTIONS(2871), + [anon_sym___STACKTRACE__] = ACTIONS(2871), + [sym_alias] = ACTIONS(2871), + [sym_integer] = ACTIONS(2871), + [sym_float] = ACTIONS(2871), + [sym_char] = ACTIONS(2871), + [anon_sym_true] = ACTIONS(2871), + [anon_sym_false] = ACTIONS(2871), + [anon_sym_nil] = ACTIONS(2871), + [sym_atom] = ACTIONS(2871), + [anon_sym_DQUOTE] = ACTIONS(2871), + [anon_sym_SQUOTE] = ACTIONS(2871), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2871), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_LT] = ACTIONS(2871), + [anon_sym_GT] = ACTIONS(2871), + [anon_sym_PIPE] = ACTIONS(2871), + [anon_sym_SLASH] = ACTIONS(2871), + [anon_sym_TILDE] = ACTIONS(2871), + [anon_sym_LT_LT] = ACTIONS(2871), + [anon_sym_PERCENT] = ACTIONS(2871), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_BANG] = ACTIONS(2871), + [anon_sym_CARET] = ACTIONS(2871), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_AT] = ACTIONS(2871), + [anon_sym_LT_DASH] = ACTIONS(2871), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2871), + [anon_sym_when] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2871), + [anon_sym_EQ] = ACTIONS(2871), + [anon_sym_PIPE_PIPE] = ACTIONS(2871), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2871), + [anon_sym_or] = ACTIONS(2871), + [anon_sym_AMP_AMP] = ACTIONS(2871), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2871), + [anon_sym_and] = ACTIONS(2871), + [anon_sym_EQ_EQ] = ACTIONS(2871), + [anon_sym_BANG_EQ] = ACTIONS(2871), + [anon_sym_EQ_TILDE] = ACTIONS(2871), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2871), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2871), + [anon_sym_LT_EQ] = ACTIONS(2871), + [anon_sym_GT_EQ] = ACTIONS(2871), + [anon_sym_PIPE_GT] = ACTIONS(2871), + [anon_sym_LT_LT_LT] = ACTIONS(2871), + [anon_sym_GT_GT_GT] = ACTIONS(2871), + [anon_sym_LT_LT_TILDE] = ACTIONS(2871), + [anon_sym_TILDE_GT_GT] = ACTIONS(2871), + [anon_sym_LT_TILDE] = ACTIONS(2871), + [anon_sym_TILDE_GT] = ACTIONS(2871), + [anon_sym_LT_TILDE_GT] = ACTIONS(2871), + [anon_sym_LT_PIPE_GT] = ACTIONS(2871), + [anon_sym_in] = ACTIONS(2871), + [anon_sym_PLUS_PLUS] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2871), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2871), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2871), + [anon_sym_DOT_DOT] = ACTIONS(2871), + [anon_sym_LT_GT] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2871), + [anon_sym_STAR_STAR] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2871), + [anon_sym_DASH_GT] = ACTIONS(2871), + [anon_sym_DOT] = ACTIONS(2871), + [anon_sym_fn] = ACTIONS(2871), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2873), + [sym__not_in] = ACTIONS(2873), + [sym__quoted_atom_start] = ACTIONS(2873), + }, + [1060] = { + [sym__terminator] = STATE(163), + [sym_after_block] = STATE(4280), + [sym_rescue_block] = STATE(4280), + [sym_catch_block] = STATE(4280), + [sym_else_block] = STATE(4280), + [aux_sym__terminator_repeat1] = STATE(1021), + [aux_sym_block_repeat2] = STATE(4202), + [aux_sym_do_block_repeat1] = STATE(4280), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(5161), [aux_sym__terminator_token1] = ACTIONS(2875), [anon_sym_SEMI] = ACTIONS(2877), [anon_sym_LT] = ACTIONS(2879), @@ -155052,78 +155777,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_after] = ACTIONS(107), [anon_sym_catch] = ACTIONS(109), [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(1042), - [anon_sym_rescue] = ACTIONS(117), - [anon_sym_LBRACK2] = ACTIONS(2922), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2924), - }, - [1060] = { - [sym__terminator] = STATE(161), - [sym_after_block] = STATE(3721), - [sym_rescue_block] = STATE(3721), - [sym_catch_block] = STATE(3721), - [sym_else_block] = STATE(3721), - [aux_sym__terminator_repeat1] = STATE(1020), - [aux_sym_block_repeat2] = STATE(3622), - [aux_sym_do_block_repeat1] = STATE(3721), - [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(4529), - [aux_sym__terminator_token1] = ACTIONS(2875), - [anon_sym_SEMI] = ACTIONS(2926), - [anon_sym_LT] = ACTIONS(2879), - [anon_sym_GT] = ACTIONS(2879), - [anon_sym_PIPE] = ACTIONS(2881), - [anon_sym_SLASH] = ACTIONS(2883), - [anon_sym_COMMA] = ACTIONS(2885), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2889), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2889), - [anon_sym_when] = ACTIONS(2891), - [anon_sym_COLON_COLON] = ACTIONS(2894), - [anon_sym_EQ_GT] = ACTIONS(2896), - [anon_sym_EQ] = ACTIONS(2898), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_or] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2902), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2902), - [anon_sym_and] = ACTIONS(2902), - [anon_sym_EQ_EQ] = ACTIONS(2904), - [anon_sym_BANG_EQ] = ACTIONS(2904), - [anon_sym_EQ_TILDE] = ACTIONS(2904), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2904), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2904), - [anon_sym_LT_EQ] = ACTIONS(2879), - [anon_sym_GT_EQ] = ACTIONS(2879), - [anon_sym_PIPE_GT] = ACTIONS(2906), - [anon_sym_LT_LT_LT] = ACTIONS(2906), - [anon_sym_GT_GT_GT] = ACTIONS(2906), - [anon_sym_LT_LT_TILDE] = ACTIONS(2906), - [anon_sym_TILDE_GT_GT] = ACTIONS(2906), - [anon_sym_LT_TILDE] = ACTIONS(2906), - [anon_sym_TILDE_GT] = ACTIONS(2906), - [anon_sym_LT_TILDE_GT] = ACTIONS(2906), - [anon_sym_LT_PIPE_GT] = ACTIONS(2906), - [anon_sym_in] = ACTIONS(2908), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2910), - [anon_sym_SLASH_SLASH] = ACTIONS(2912), - [anon_sym_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_DASH_DASH] = ACTIONS(2914), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2914), - [anon_sym_DOT_DOT] = ACTIONS(2914), - [anon_sym_LT_GT] = ACTIONS(2914), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_STAR_STAR] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(2918), - [anon_sym_DOT] = ACTIONS(2920), - [anon_sym_after] = ACTIONS(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(1052), + [anon_sym_end] = ACTIONS(1024), [anon_sym_rescue] = ACTIONS(117), [anon_sym_LBRACK2] = ACTIONS(2922), [sym_comment] = ACTIONS(5), @@ -155132,1011 +155786,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2924), }, [1061] = { - [sym__terminator] = STATE(151), - [sym_after_block] = STATE(3667), - [sym_rescue_block] = STATE(3667), - [sym_catch_block] = STATE(3667), - [sym_else_block] = STATE(3667), - [aux_sym__terminator_repeat1] = STATE(1020), - [aux_sym_block_repeat2] = STATE(3590), - [aux_sym_do_block_repeat1] = STATE(3667), - [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(4529), + [sym__terminator] = STATE(152), + [sym_after_block] = STATE(4279), + [sym_rescue_block] = STATE(4279), + [sym_catch_block] = STATE(4279), + [sym_else_block] = STATE(4279), + [aux_sym__terminator_repeat1] = STATE(1021), + [aux_sym_block_repeat2] = STATE(4260), + [aux_sym_do_block_repeat1] = STATE(4279), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(5161), [aux_sym__terminator_token1] = ACTIONS(2875), - [anon_sym_SEMI] = ACTIONS(2928), - [anon_sym_LT] = ACTIONS(2879), - [anon_sym_GT] = ACTIONS(2879), - [anon_sym_PIPE] = ACTIONS(2881), - [anon_sym_SLASH] = ACTIONS(2883), - [anon_sym_COMMA] = ACTIONS(2885), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2889), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2889), - [anon_sym_when] = ACTIONS(2891), - [anon_sym_COLON_COLON] = ACTIONS(2894), - [anon_sym_EQ_GT] = ACTIONS(2896), - [anon_sym_EQ] = ACTIONS(2898), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_or] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2902), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2902), - [anon_sym_and] = ACTIONS(2902), - [anon_sym_EQ_EQ] = ACTIONS(2904), - [anon_sym_BANG_EQ] = ACTIONS(2904), - [anon_sym_EQ_TILDE] = ACTIONS(2904), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2904), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2904), - [anon_sym_LT_EQ] = ACTIONS(2879), - [anon_sym_GT_EQ] = ACTIONS(2879), - [anon_sym_PIPE_GT] = ACTIONS(2906), - [anon_sym_LT_LT_LT] = ACTIONS(2906), - [anon_sym_GT_GT_GT] = ACTIONS(2906), - [anon_sym_LT_LT_TILDE] = ACTIONS(2906), - [anon_sym_TILDE_GT_GT] = ACTIONS(2906), - [anon_sym_LT_TILDE] = ACTIONS(2906), - [anon_sym_TILDE_GT] = ACTIONS(2906), - [anon_sym_LT_TILDE_GT] = ACTIONS(2906), - [anon_sym_LT_PIPE_GT] = ACTIONS(2906), - [anon_sym_in] = ACTIONS(2908), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2910), - [anon_sym_SLASH_SLASH] = ACTIONS(2912), - [anon_sym_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_DASH_DASH] = ACTIONS(2914), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2914), - [anon_sym_DOT_DOT] = ACTIONS(2914), - [anon_sym_LT_GT] = ACTIONS(2914), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_STAR_STAR] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(2918), - [anon_sym_DOT] = ACTIONS(2920), - [anon_sym_after] = ACTIONS(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(1002), - [anon_sym_rescue] = ACTIONS(117), - [anon_sym_LBRACK2] = ACTIONS(2922), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2924), - }, - [1062] = { - [sym__terminator] = STATE(175), - [sym_after_block] = STATE(3717), - [sym_rescue_block] = STATE(3717), - [sym_catch_block] = STATE(3717), - [sym_else_block] = STATE(3717), - [aux_sym__terminator_repeat1] = STATE(1020), - [aux_sym_block_repeat2] = STATE(3630), - [aux_sym_do_block_repeat1] = STATE(3717), - [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(4529), - [aux_sym__terminator_token1] = ACTIONS(2875), - [anon_sym_SEMI] = ACTIONS(2930), - [anon_sym_LT] = ACTIONS(2879), - [anon_sym_GT] = ACTIONS(2879), - [anon_sym_PIPE] = ACTIONS(2881), - [anon_sym_SLASH] = ACTIONS(2883), - [anon_sym_COMMA] = ACTIONS(2885), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2889), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2889), - [anon_sym_when] = ACTIONS(2891), - [anon_sym_COLON_COLON] = ACTIONS(2894), - [anon_sym_EQ_GT] = ACTIONS(2896), - [anon_sym_EQ] = ACTIONS(2898), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_or] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2902), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2902), - [anon_sym_and] = ACTIONS(2902), - [anon_sym_EQ_EQ] = ACTIONS(2904), - [anon_sym_BANG_EQ] = ACTIONS(2904), - [anon_sym_EQ_TILDE] = ACTIONS(2904), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2904), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2904), - [anon_sym_LT_EQ] = ACTIONS(2879), - [anon_sym_GT_EQ] = ACTIONS(2879), - [anon_sym_PIPE_GT] = ACTIONS(2906), - [anon_sym_LT_LT_LT] = ACTIONS(2906), - [anon_sym_GT_GT_GT] = ACTIONS(2906), - [anon_sym_LT_LT_TILDE] = ACTIONS(2906), - [anon_sym_TILDE_GT_GT] = ACTIONS(2906), - [anon_sym_LT_TILDE] = ACTIONS(2906), - [anon_sym_TILDE_GT] = ACTIONS(2906), - [anon_sym_LT_TILDE_GT] = ACTIONS(2906), - [anon_sym_LT_PIPE_GT] = ACTIONS(2906), - [anon_sym_in] = ACTIONS(2908), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2910), - [anon_sym_SLASH_SLASH] = ACTIONS(2912), - [anon_sym_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_DASH_DASH] = ACTIONS(2914), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2914), - [anon_sym_DOT_DOT] = ACTIONS(2914), - [anon_sym_LT_GT] = ACTIONS(2914), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_STAR_STAR] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(2918), - [anon_sym_DOT] = ACTIONS(2920), - [anon_sym_after] = ACTIONS(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(315), - [anon_sym_rescue] = ACTIONS(117), - [anon_sym_LBRACK2] = ACTIONS(2922), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2924), - }, - [1063] = { - [sym__terminator] = STATE(150), - [sym_after_block] = STATE(3678), - [sym_rescue_block] = STATE(3678), - [sym_catch_block] = STATE(3678), - [sym_else_block] = STATE(3678), - [aux_sym__terminator_repeat1] = STATE(1020), - [aux_sym_block_repeat2] = STATE(3642), - [aux_sym_do_block_repeat1] = STATE(3678), - [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(4529), - [aux_sym__terminator_token1] = ACTIONS(2875), - [anon_sym_SEMI] = ACTIONS(2932), - [anon_sym_LT] = ACTIONS(2879), - [anon_sym_GT] = ACTIONS(2879), - [anon_sym_PIPE] = ACTIONS(2881), - [anon_sym_SLASH] = ACTIONS(2883), - [anon_sym_COMMA] = ACTIONS(2885), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2889), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2889), - [anon_sym_when] = ACTIONS(2891), - [anon_sym_COLON_COLON] = ACTIONS(2894), - [anon_sym_EQ_GT] = ACTIONS(2896), - [anon_sym_EQ] = ACTIONS(2898), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_or] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2902), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2902), - [anon_sym_and] = ACTIONS(2902), - [anon_sym_EQ_EQ] = ACTIONS(2904), - [anon_sym_BANG_EQ] = ACTIONS(2904), - [anon_sym_EQ_TILDE] = ACTIONS(2904), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2904), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2904), - [anon_sym_LT_EQ] = ACTIONS(2879), - [anon_sym_GT_EQ] = ACTIONS(2879), - [anon_sym_PIPE_GT] = ACTIONS(2906), - [anon_sym_LT_LT_LT] = ACTIONS(2906), - [anon_sym_GT_GT_GT] = ACTIONS(2906), - [anon_sym_LT_LT_TILDE] = ACTIONS(2906), - [anon_sym_TILDE_GT_GT] = ACTIONS(2906), - [anon_sym_LT_TILDE] = ACTIONS(2906), - [anon_sym_TILDE_GT] = ACTIONS(2906), - [anon_sym_LT_TILDE_GT] = ACTIONS(2906), - [anon_sym_LT_PIPE_GT] = ACTIONS(2906), - [anon_sym_in] = ACTIONS(2908), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2910), - [anon_sym_SLASH_SLASH] = ACTIONS(2912), - [anon_sym_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_DASH_DASH] = ACTIONS(2914), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2914), - [anon_sym_DOT_DOT] = ACTIONS(2914), - [anon_sym_LT_GT] = ACTIONS(2914), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_STAR_STAR] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(2918), - [anon_sym_DOT] = ACTIONS(2920), - [anon_sym_after] = ACTIONS(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(335), - [anon_sym_rescue] = ACTIONS(117), - [anon_sym_LBRACK2] = ACTIONS(2922), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2924), - }, - [1064] = { - [sym__terminator] = STATE(146), - [sym_after_block] = STATE(3705), - [sym_rescue_block] = STATE(3705), - [sym_catch_block] = STATE(3705), - [sym_else_block] = STATE(3705), - [aux_sym__terminator_repeat1] = STATE(1020), - [aux_sym_block_repeat2] = STATE(3613), - [aux_sym_do_block_repeat1] = STATE(3705), - [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(4529), - [aux_sym__terminator_token1] = ACTIONS(2875), - [anon_sym_SEMI] = ACTIONS(2934), - [anon_sym_LT] = ACTIONS(2879), - [anon_sym_GT] = ACTIONS(2879), - [anon_sym_PIPE] = ACTIONS(2881), - [anon_sym_SLASH] = ACTIONS(2883), - [anon_sym_COMMA] = ACTIONS(2885), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2889), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2889), - [anon_sym_when] = ACTIONS(2891), - [anon_sym_COLON_COLON] = ACTIONS(2894), - [anon_sym_EQ_GT] = ACTIONS(2896), - [anon_sym_EQ] = ACTIONS(2898), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_or] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2902), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2902), - [anon_sym_and] = ACTIONS(2902), - [anon_sym_EQ_EQ] = ACTIONS(2904), - [anon_sym_BANG_EQ] = ACTIONS(2904), - [anon_sym_EQ_TILDE] = ACTIONS(2904), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2904), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2904), - [anon_sym_LT_EQ] = ACTIONS(2879), - [anon_sym_GT_EQ] = ACTIONS(2879), - [anon_sym_PIPE_GT] = ACTIONS(2906), - [anon_sym_LT_LT_LT] = ACTIONS(2906), - [anon_sym_GT_GT_GT] = ACTIONS(2906), - [anon_sym_LT_LT_TILDE] = ACTIONS(2906), - [anon_sym_TILDE_GT_GT] = ACTIONS(2906), - [anon_sym_LT_TILDE] = ACTIONS(2906), - [anon_sym_TILDE_GT] = ACTIONS(2906), - [anon_sym_LT_TILDE_GT] = ACTIONS(2906), - [anon_sym_LT_PIPE_GT] = ACTIONS(2906), - [anon_sym_in] = ACTIONS(2908), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2910), - [anon_sym_SLASH_SLASH] = ACTIONS(2912), - [anon_sym_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_DASH_DASH] = ACTIONS(2914), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2914), - [anon_sym_DOT_DOT] = ACTIONS(2914), - [anon_sym_LT_GT] = ACTIONS(2914), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_STAR_STAR] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(2918), - [anon_sym_DOT] = ACTIONS(2920), - [anon_sym_after] = ACTIONS(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(998), - [anon_sym_rescue] = ACTIONS(117), - [anon_sym_LBRACK2] = ACTIONS(2922), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2924), - }, - [1065] = { - [sym__terminator] = STATE(148), - [sym_after_block] = STATE(3694), - [sym_rescue_block] = STATE(3694), - [sym_catch_block] = STATE(3694), - [sym_else_block] = STATE(3694), - [aux_sym__terminator_repeat1] = STATE(1020), - [aux_sym_block_repeat2] = STATE(3608), - [aux_sym_do_block_repeat1] = STATE(3694), - [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(4529), - [aux_sym__terminator_token1] = ACTIONS(2875), - [anon_sym_SEMI] = ACTIONS(2936), - [anon_sym_LT] = ACTIONS(2879), - [anon_sym_GT] = ACTIONS(2879), - [anon_sym_PIPE] = ACTIONS(2881), - [anon_sym_SLASH] = ACTIONS(2883), - [anon_sym_COMMA] = ACTIONS(2885), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2889), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2889), - [anon_sym_when] = ACTIONS(2891), - [anon_sym_COLON_COLON] = ACTIONS(2894), - [anon_sym_EQ_GT] = ACTIONS(2896), - [anon_sym_EQ] = ACTIONS(2898), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_or] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2902), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2902), - [anon_sym_and] = ACTIONS(2902), - [anon_sym_EQ_EQ] = ACTIONS(2904), - [anon_sym_BANG_EQ] = ACTIONS(2904), - [anon_sym_EQ_TILDE] = ACTIONS(2904), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2904), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2904), - [anon_sym_LT_EQ] = ACTIONS(2879), - [anon_sym_GT_EQ] = ACTIONS(2879), - [anon_sym_PIPE_GT] = ACTIONS(2906), - [anon_sym_LT_LT_LT] = ACTIONS(2906), - [anon_sym_GT_GT_GT] = ACTIONS(2906), - [anon_sym_LT_LT_TILDE] = ACTIONS(2906), - [anon_sym_TILDE_GT_GT] = ACTIONS(2906), - [anon_sym_LT_TILDE] = ACTIONS(2906), - [anon_sym_TILDE_GT] = ACTIONS(2906), - [anon_sym_LT_TILDE_GT] = ACTIONS(2906), - [anon_sym_LT_PIPE_GT] = ACTIONS(2906), - [anon_sym_in] = ACTIONS(2908), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2910), - [anon_sym_SLASH_SLASH] = ACTIONS(2912), - [anon_sym_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_DASH_DASH] = ACTIONS(2914), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2914), - [anon_sym_DOT_DOT] = ACTIONS(2914), - [anon_sym_LT_GT] = ACTIONS(2914), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_STAR_STAR] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(2918), - [anon_sym_DOT] = ACTIONS(2920), - [anon_sym_after] = ACTIONS(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(331), - [anon_sym_rescue] = ACTIONS(117), - [anon_sym_LBRACK2] = ACTIONS(2922), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2924), - }, - [1066] = { - [sym__terminator] = STATE(153), - [sym_after_block] = STATE(3718), - [sym_rescue_block] = STATE(3718), - [sym_catch_block] = STATE(3718), - [sym_else_block] = STATE(3718), - [aux_sym__terminator_repeat1] = STATE(1020), - [aux_sym_block_repeat2] = STATE(3620), - [aux_sym_do_block_repeat1] = STATE(3718), - [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(4529), - [aux_sym__terminator_token1] = ACTIONS(2875), - [anon_sym_SEMI] = ACTIONS(2938), - [anon_sym_LT] = ACTIONS(2879), - [anon_sym_GT] = ACTIONS(2879), - [anon_sym_PIPE] = ACTIONS(2881), - [anon_sym_SLASH] = ACTIONS(2883), - [anon_sym_COMMA] = ACTIONS(2885), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2889), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2889), - [anon_sym_when] = ACTIONS(2891), - [anon_sym_COLON_COLON] = ACTIONS(2894), - [anon_sym_EQ_GT] = ACTIONS(2896), - [anon_sym_EQ] = ACTIONS(2898), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_or] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2902), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2902), - [anon_sym_and] = ACTIONS(2902), - [anon_sym_EQ_EQ] = ACTIONS(2904), - [anon_sym_BANG_EQ] = ACTIONS(2904), - [anon_sym_EQ_TILDE] = ACTIONS(2904), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2904), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2904), - [anon_sym_LT_EQ] = ACTIONS(2879), - [anon_sym_GT_EQ] = ACTIONS(2879), - [anon_sym_PIPE_GT] = ACTIONS(2906), - [anon_sym_LT_LT_LT] = ACTIONS(2906), - [anon_sym_GT_GT_GT] = ACTIONS(2906), - [anon_sym_LT_LT_TILDE] = ACTIONS(2906), - [anon_sym_TILDE_GT_GT] = ACTIONS(2906), - [anon_sym_LT_TILDE] = ACTIONS(2906), - [anon_sym_TILDE_GT] = ACTIONS(2906), - [anon_sym_LT_TILDE_GT] = ACTIONS(2906), - [anon_sym_LT_PIPE_GT] = ACTIONS(2906), - [anon_sym_in] = ACTIONS(2908), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2910), - [anon_sym_SLASH_SLASH] = ACTIONS(2912), - [anon_sym_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_DASH_DASH] = ACTIONS(2914), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2914), - [anon_sym_DOT_DOT] = ACTIONS(2914), - [anon_sym_LT_GT] = ACTIONS(2914), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_STAR_STAR] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(2918), - [anon_sym_DOT] = ACTIONS(2920), - [anon_sym_after] = ACTIONS(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(992), - [anon_sym_rescue] = ACTIONS(117), - [anon_sym_LBRACK2] = ACTIONS(2922), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2924), - }, - [1067] = { - [sym__terminator] = STATE(163), - [sym_after_block] = STATE(3702), - [sym_rescue_block] = STATE(3702), - [sym_catch_block] = STATE(3702), - [sym_else_block] = STATE(3702), - [aux_sym__terminator_repeat1] = STATE(1020), - [aux_sym_block_repeat2] = STATE(3632), - [aux_sym_do_block_repeat1] = STATE(3702), - [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(4529), - [aux_sym__terminator_token1] = ACTIONS(2875), - [anon_sym_SEMI] = ACTIONS(2940), - [anon_sym_LT] = ACTIONS(2879), - [anon_sym_GT] = ACTIONS(2879), - [anon_sym_PIPE] = ACTIONS(2881), - [anon_sym_SLASH] = ACTIONS(2883), - [anon_sym_COMMA] = ACTIONS(2885), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2889), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2889), - [anon_sym_when] = ACTIONS(2891), - [anon_sym_COLON_COLON] = ACTIONS(2894), - [anon_sym_EQ_GT] = ACTIONS(2896), - [anon_sym_EQ] = ACTIONS(2898), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_or] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2902), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2902), - [anon_sym_and] = ACTIONS(2902), - [anon_sym_EQ_EQ] = ACTIONS(2904), - [anon_sym_BANG_EQ] = ACTIONS(2904), - [anon_sym_EQ_TILDE] = ACTIONS(2904), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2904), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2904), - [anon_sym_LT_EQ] = ACTIONS(2879), - [anon_sym_GT_EQ] = ACTIONS(2879), - [anon_sym_PIPE_GT] = ACTIONS(2906), - [anon_sym_LT_LT_LT] = ACTIONS(2906), - [anon_sym_GT_GT_GT] = ACTIONS(2906), - [anon_sym_LT_LT_TILDE] = ACTIONS(2906), - [anon_sym_TILDE_GT_GT] = ACTIONS(2906), - [anon_sym_LT_TILDE] = ACTIONS(2906), - [anon_sym_TILDE_GT] = ACTIONS(2906), - [anon_sym_LT_TILDE_GT] = ACTIONS(2906), - [anon_sym_LT_PIPE_GT] = ACTIONS(2906), - [anon_sym_in] = ACTIONS(2908), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2910), - [anon_sym_SLASH_SLASH] = ACTIONS(2912), - [anon_sym_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_DASH_DASH] = ACTIONS(2914), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2914), - [anon_sym_DOT_DOT] = ACTIONS(2914), - [anon_sym_LT_GT] = ACTIONS(2914), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_STAR_STAR] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(2918), - [anon_sym_DOT] = ACTIONS(2920), - [anon_sym_after] = ACTIONS(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(1026), - [anon_sym_rescue] = ACTIONS(117), - [anon_sym_LBRACK2] = ACTIONS(2922), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2924), - }, - [1068] = { - [sym__terminator] = STATE(171), - [sym_after_block] = STATE(3684), - [sym_rescue_block] = STATE(3684), - [sym_catch_block] = STATE(3684), - [sym_else_block] = STATE(3684), - [aux_sym__terminator_repeat1] = STATE(1020), - [aux_sym_block_repeat2] = STATE(3612), - [aux_sym_do_block_repeat1] = STATE(3684), - [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(4529), - [aux_sym__terminator_token1] = ACTIONS(2875), - [anon_sym_SEMI] = ACTIONS(2942), - [anon_sym_LT] = ACTIONS(2879), - [anon_sym_GT] = ACTIONS(2879), - [anon_sym_PIPE] = ACTIONS(2881), - [anon_sym_SLASH] = ACTIONS(2883), - [anon_sym_COMMA] = ACTIONS(2885), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2889), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2889), - [anon_sym_when] = ACTIONS(2891), - [anon_sym_COLON_COLON] = ACTIONS(2894), - [anon_sym_EQ_GT] = ACTIONS(2896), - [anon_sym_EQ] = ACTIONS(2898), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_or] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2902), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2902), - [anon_sym_and] = ACTIONS(2902), - [anon_sym_EQ_EQ] = ACTIONS(2904), - [anon_sym_BANG_EQ] = ACTIONS(2904), - [anon_sym_EQ_TILDE] = ACTIONS(2904), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2904), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2904), - [anon_sym_LT_EQ] = ACTIONS(2879), - [anon_sym_GT_EQ] = ACTIONS(2879), - [anon_sym_PIPE_GT] = ACTIONS(2906), - [anon_sym_LT_LT_LT] = ACTIONS(2906), - [anon_sym_GT_GT_GT] = ACTIONS(2906), - [anon_sym_LT_LT_TILDE] = ACTIONS(2906), - [anon_sym_TILDE_GT_GT] = ACTIONS(2906), - [anon_sym_LT_TILDE] = ACTIONS(2906), - [anon_sym_TILDE_GT] = ACTIONS(2906), - [anon_sym_LT_TILDE_GT] = ACTIONS(2906), - [anon_sym_LT_PIPE_GT] = ACTIONS(2906), - [anon_sym_in] = ACTIONS(2908), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2910), - [anon_sym_SLASH_SLASH] = ACTIONS(2912), - [anon_sym_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_DASH_DASH] = ACTIONS(2914), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2914), - [anon_sym_DOT_DOT] = ACTIONS(2914), - [anon_sym_LT_GT] = ACTIONS(2914), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_STAR_STAR] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(2918), - [anon_sym_DOT] = ACTIONS(2920), - [anon_sym_after] = ACTIONS(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(347), - [anon_sym_rescue] = ACTIONS(117), - [anon_sym_LBRACK2] = ACTIONS(2922), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2924), - }, - [1069] = { - [sym__terminator] = STATE(143), - [sym_after_block] = STATE(3692), - [sym_rescue_block] = STATE(3692), - [sym_catch_block] = STATE(3692), - [sym_else_block] = STATE(3692), - [aux_sym__terminator_repeat1] = STATE(1020), - [aux_sym_block_repeat2] = STATE(3597), - [aux_sym_do_block_repeat1] = STATE(3692), - [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(4529), - [aux_sym__terminator_token1] = ACTIONS(2875), - [anon_sym_SEMI] = ACTIONS(2944), - [anon_sym_LT] = ACTIONS(2879), - [anon_sym_GT] = ACTIONS(2879), - [anon_sym_PIPE] = ACTIONS(2881), - [anon_sym_SLASH] = ACTIONS(2883), - [anon_sym_COMMA] = ACTIONS(2885), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2889), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2889), - [anon_sym_when] = ACTIONS(2891), - [anon_sym_COLON_COLON] = ACTIONS(2894), - [anon_sym_EQ_GT] = ACTIONS(2896), - [anon_sym_EQ] = ACTIONS(2898), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_or] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2902), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2902), - [anon_sym_and] = ACTIONS(2902), - [anon_sym_EQ_EQ] = ACTIONS(2904), - [anon_sym_BANG_EQ] = ACTIONS(2904), - [anon_sym_EQ_TILDE] = ACTIONS(2904), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2904), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2904), - [anon_sym_LT_EQ] = ACTIONS(2879), - [anon_sym_GT_EQ] = ACTIONS(2879), - [anon_sym_PIPE_GT] = ACTIONS(2906), - [anon_sym_LT_LT_LT] = ACTIONS(2906), - [anon_sym_GT_GT_GT] = ACTIONS(2906), - [anon_sym_LT_LT_TILDE] = ACTIONS(2906), - [anon_sym_TILDE_GT_GT] = ACTIONS(2906), - [anon_sym_LT_TILDE] = ACTIONS(2906), - [anon_sym_TILDE_GT] = ACTIONS(2906), - [anon_sym_LT_TILDE_GT] = ACTIONS(2906), - [anon_sym_LT_PIPE_GT] = ACTIONS(2906), - [anon_sym_in] = ACTIONS(2908), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2910), - [anon_sym_SLASH_SLASH] = ACTIONS(2912), - [anon_sym_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_DASH_DASH] = ACTIONS(2914), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2914), - [anon_sym_DOT_DOT] = ACTIONS(2914), - [anon_sym_LT_GT] = ACTIONS(2914), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_STAR_STAR] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(2918), - [anon_sym_DOT] = ACTIONS(2920), - [anon_sym_after] = ACTIONS(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(1018), - [anon_sym_rescue] = ACTIONS(117), - [anon_sym_LBRACK2] = ACTIONS(2922), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2924), - }, - [1070] = { - [sym__terminator] = STATE(149), - [sym_after_block] = STATE(3669), - [sym_rescue_block] = STATE(3669), - [sym_catch_block] = STATE(3669), - [sym_else_block] = STATE(3669), - [aux_sym__terminator_repeat1] = STATE(1020), - [aux_sym_block_repeat2] = STATE(3647), - [aux_sym_do_block_repeat1] = STATE(3669), - [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(4529), - [aux_sym__terminator_token1] = ACTIONS(2875), - [anon_sym_SEMI] = ACTIONS(2946), - [anon_sym_LT] = ACTIONS(2879), - [anon_sym_GT] = ACTIONS(2879), - [anon_sym_PIPE] = ACTIONS(2881), - [anon_sym_SLASH] = ACTIONS(2883), - [anon_sym_COMMA] = ACTIONS(2885), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2889), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2889), - [anon_sym_when] = ACTIONS(2891), - [anon_sym_COLON_COLON] = ACTIONS(2894), - [anon_sym_EQ_GT] = ACTIONS(2896), - [anon_sym_EQ] = ACTIONS(2898), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_or] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2902), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2902), - [anon_sym_and] = ACTIONS(2902), - [anon_sym_EQ_EQ] = ACTIONS(2904), - [anon_sym_BANG_EQ] = ACTIONS(2904), - [anon_sym_EQ_TILDE] = ACTIONS(2904), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2904), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2904), - [anon_sym_LT_EQ] = ACTIONS(2879), - [anon_sym_GT_EQ] = ACTIONS(2879), - [anon_sym_PIPE_GT] = ACTIONS(2906), - [anon_sym_LT_LT_LT] = ACTIONS(2906), - [anon_sym_GT_GT_GT] = ACTIONS(2906), - [anon_sym_LT_LT_TILDE] = ACTIONS(2906), - [anon_sym_TILDE_GT_GT] = ACTIONS(2906), - [anon_sym_LT_TILDE] = ACTIONS(2906), - [anon_sym_TILDE_GT] = ACTIONS(2906), - [anon_sym_LT_TILDE_GT] = ACTIONS(2906), - [anon_sym_LT_PIPE_GT] = ACTIONS(2906), - [anon_sym_in] = ACTIONS(2908), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2910), - [anon_sym_SLASH_SLASH] = ACTIONS(2912), - [anon_sym_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_DASH_DASH] = ACTIONS(2914), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2914), - [anon_sym_DOT_DOT] = ACTIONS(2914), - [anon_sym_LT_GT] = ACTIONS(2914), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_STAR_STAR] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(2918), - [anon_sym_DOT] = ACTIONS(2920), - [anon_sym_after] = ACTIONS(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(339), - [anon_sym_rescue] = ACTIONS(117), - [anon_sym_LBRACK2] = ACTIONS(2922), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2924), - }, - [1071] = { - [sym__terminator] = STATE(162), - [sym_after_block] = STATE(3711), - [sym_rescue_block] = STATE(3711), - [sym_catch_block] = STATE(3711), - [sym_else_block] = STATE(3711), - [aux_sym__terminator_repeat1] = STATE(1020), - [aux_sym_block_repeat2] = STATE(3628), - [aux_sym_do_block_repeat1] = STATE(3711), - [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(4529), - [aux_sym__terminator_token1] = ACTIONS(2875), - [anon_sym_SEMI] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2879), - [anon_sym_GT] = ACTIONS(2879), - [anon_sym_PIPE] = ACTIONS(2881), - [anon_sym_SLASH] = ACTIONS(2883), - [anon_sym_COMMA] = ACTIONS(2885), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2889), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2889), - [anon_sym_when] = ACTIONS(2891), - [anon_sym_COLON_COLON] = ACTIONS(2894), - [anon_sym_EQ_GT] = ACTIONS(2896), - [anon_sym_EQ] = ACTIONS(2898), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_or] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2902), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2902), - [anon_sym_and] = ACTIONS(2902), - [anon_sym_EQ_EQ] = ACTIONS(2904), - [anon_sym_BANG_EQ] = ACTIONS(2904), - [anon_sym_EQ_TILDE] = ACTIONS(2904), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2904), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2904), - [anon_sym_LT_EQ] = ACTIONS(2879), - [anon_sym_GT_EQ] = ACTIONS(2879), - [anon_sym_PIPE_GT] = ACTIONS(2906), - [anon_sym_LT_LT_LT] = ACTIONS(2906), - [anon_sym_GT_GT_GT] = ACTIONS(2906), - [anon_sym_LT_LT_TILDE] = ACTIONS(2906), - [anon_sym_TILDE_GT_GT] = ACTIONS(2906), - [anon_sym_LT_TILDE] = ACTIONS(2906), - [anon_sym_TILDE_GT] = ACTIONS(2906), - [anon_sym_LT_TILDE_GT] = ACTIONS(2906), - [anon_sym_LT_PIPE_GT] = ACTIONS(2906), - [anon_sym_in] = ACTIONS(2908), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2910), - [anon_sym_SLASH_SLASH] = ACTIONS(2912), - [anon_sym_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_DASH_DASH] = ACTIONS(2914), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2914), - [anon_sym_DOT_DOT] = ACTIONS(2914), - [anon_sym_LT_GT] = ACTIONS(2914), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_STAR_STAR] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(2918), - [anon_sym_DOT] = ACTIONS(2920), - [anon_sym_after] = ACTIONS(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(343), - [anon_sym_rescue] = ACTIONS(117), - [anon_sym_LBRACK2] = ACTIONS(2922), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2924), - }, - [1072] = { - [sym__terminator] = STATE(142), - [sym_after_block] = STATE(3672), - [sym_rescue_block] = STATE(3672), - [sym_catch_block] = STATE(3672), - [sym_else_block] = STATE(3672), - [aux_sym__terminator_repeat1] = STATE(1020), - [aux_sym_block_repeat2] = STATE(3653), - [aux_sym_do_block_repeat1] = STATE(3672), - [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(4529), - [aux_sym__terminator_token1] = ACTIONS(2875), - [anon_sym_SEMI] = ACTIONS(2950), - [anon_sym_LT] = ACTIONS(2879), - [anon_sym_GT] = ACTIONS(2879), - [anon_sym_PIPE] = ACTIONS(2881), - [anon_sym_SLASH] = ACTIONS(2883), - [anon_sym_COMMA] = ACTIONS(2885), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2889), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2889), - [anon_sym_when] = ACTIONS(2891), - [anon_sym_COLON_COLON] = ACTIONS(2894), - [anon_sym_EQ_GT] = ACTIONS(2896), - [anon_sym_EQ] = ACTIONS(2898), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_or] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2902), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2902), - [anon_sym_and] = ACTIONS(2902), - [anon_sym_EQ_EQ] = ACTIONS(2904), - [anon_sym_BANG_EQ] = ACTIONS(2904), - [anon_sym_EQ_TILDE] = ACTIONS(2904), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2904), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2904), - [anon_sym_LT_EQ] = ACTIONS(2879), - [anon_sym_GT_EQ] = ACTIONS(2879), - [anon_sym_PIPE_GT] = ACTIONS(2906), - [anon_sym_LT_LT_LT] = ACTIONS(2906), - [anon_sym_GT_GT_GT] = ACTIONS(2906), - [anon_sym_LT_LT_TILDE] = ACTIONS(2906), - [anon_sym_TILDE_GT_GT] = ACTIONS(2906), - [anon_sym_LT_TILDE] = ACTIONS(2906), - [anon_sym_TILDE_GT] = ACTIONS(2906), - [anon_sym_LT_TILDE_GT] = ACTIONS(2906), - [anon_sym_LT_PIPE_GT] = ACTIONS(2906), - [anon_sym_in] = ACTIONS(2908), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2910), - [anon_sym_SLASH_SLASH] = ACTIONS(2912), - [anon_sym_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_DASH_DASH] = ACTIONS(2914), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2914), - [anon_sym_DOT_DOT] = ACTIONS(2914), - [anon_sym_LT_GT] = ACTIONS(2914), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_STAR_STAR] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(2918), - [anon_sym_DOT] = ACTIONS(2920), - [anon_sym_after] = ACTIONS(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(1000), - [anon_sym_rescue] = ACTIONS(117), - [anon_sym_LBRACK2] = ACTIONS(2922), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2924), - }, - [1073] = { - [sym__terminator] = STATE(158), - [sym_after_block] = STATE(3698), - [sym_rescue_block] = STATE(3698), - [sym_catch_block] = STATE(3698), - [sym_else_block] = STATE(3698), - [aux_sym__terminator_repeat1] = STATE(1020), - [aux_sym_block_repeat2] = STATE(3604), - [aux_sym_do_block_repeat1] = STATE(3698), - [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(4529), - [aux_sym__terminator_token1] = ACTIONS(2875), - [anon_sym_SEMI] = ACTIONS(2952), - [anon_sym_LT] = ACTIONS(2879), - [anon_sym_GT] = ACTIONS(2879), - [anon_sym_PIPE] = ACTIONS(2881), - [anon_sym_SLASH] = ACTIONS(2883), - [anon_sym_COMMA] = ACTIONS(2885), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2889), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2889), - [anon_sym_when] = ACTIONS(2891), - [anon_sym_COLON_COLON] = ACTIONS(2894), - [anon_sym_EQ_GT] = ACTIONS(2896), - [anon_sym_EQ] = ACTIONS(2898), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_or] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2902), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2902), - [anon_sym_and] = ACTIONS(2902), - [anon_sym_EQ_EQ] = ACTIONS(2904), - [anon_sym_BANG_EQ] = ACTIONS(2904), - [anon_sym_EQ_TILDE] = ACTIONS(2904), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2904), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2904), - [anon_sym_LT_EQ] = ACTIONS(2879), - [anon_sym_GT_EQ] = ACTIONS(2879), - [anon_sym_PIPE_GT] = ACTIONS(2906), - [anon_sym_LT_LT_LT] = ACTIONS(2906), - [anon_sym_GT_GT_GT] = ACTIONS(2906), - [anon_sym_LT_LT_TILDE] = ACTIONS(2906), - [anon_sym_TILDE_GT_GT] = ACTIONS(2906), - [anon_sym_LT_TILDE] = ACTIONS(2906), - [anon_sym_TILDE_GT] = ACTIONS(2906), - [anon_sym_LT_TILDE_GT] = ACTIONS(2906), - [anon_sym_LT_PIPE_GT] = ACTIONS(2906), - [anon_sym_in] = ACTIONS(2908), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2910), - [anon_sym_SLASH_SLASH] = ACTIONS(2912), - [anon_sym_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_DASH_DASH] = ACTIONS(2914), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2914), - [anon_sym_DOT_DOT] = ACTIONS(2914), - [anon_sym_LT_GT] = ACTIONS(2914), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_STAR_STAR] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(2918), - [anon_sym_DOT] = ACTIONS(2920), - [anon_sym_after] = ACTIONS(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(323), - [anon_sym_rescue] = ACTIONS(117), - [anon_sym_LBRACK2] = ACTIONS(2922), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2924), - }, - [1074] = { - [sym__terminator] = STATE(164), - [sym_after_block] = STATE(3691), - [sym_rescue_block] = STATE(3691), - [sym_catch_block] = STATE(3691), - [sym_else_block] = STATE(3691), - [aux_sym__terminator_repeat1] = STATE(1020), - [aux_sym_block_repeat2] = STATE(3598), - [aux_sym_do_block_repeat1] = STATE(3691), - [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(4529), - [aux_sym__terminator_token1] = ACTIONS(2875), - [anon_sym_SEMI] = ACTIONS(2954), - [anon_sym_LT] = ACTIONS(2879), - [anon_sym_GT] = ACTIONS(2879), - [anon_sym_PIPE] = ACTIONS(2881), - [anon_sym_SLASH] = ACTIONS(2883), - [anon_sym_COMMA] = ACTIONS(2885), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2889), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2889), - [anon_sym_when] = ACTIONS(2891), - [anon_sym_COLON_COLON] = ACTIONS(2894), - [anon_sym_EQ_GT] = ACTIONS(2896), - [anon_sym_EQ] = ACTIONS(2898), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_or] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2902), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2902), - [anon_sym_and] = ACTIONS(2902), - [anon_sym_EQ_EQ] = ACTIONS(2904), - [anon_sym_BANG_EQ] = ACTIONS(2904), - [anon_sym_EQ_TILDE] = ACTIONS(2904), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2904), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2904), - [anon_sym_LT_EQ] = ACTIONS(2879), - [anon_sym_GT_EQ] = ACTIONS(2879), - [anon_sym_PIPE_GT] = ACTIONS(2906), - [anon_sym_LT_LT_LT] = ACTIONS(2906), - [anon_sym_GT_GT_GT] = ACTIONS(2906), - [anon_sym_LT_LT_TILDE] = ACTIONS(2906), - [anon_sym_TILDE_GT_GT] = ACTIONS(2906), - [anon_sym_LT_TILDE] = ACTIONS(2906), - [anon_sym_TILDE_GT] = ACTIONS(2906), - [anon_sym_LT_TILDE_GT] = ACTIONS(2906), - [anon_sym_LT_PIPE_GT] = ACTIONS(2906), - [anon_sym_in] = ACTIONS(2908), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2910), - [anon_sym_SLASH_SLASH] = ACTIONS(2912), - [anon_sym_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_DASH_DASH] = ACTIONS(2914), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2914), - [anon_sym_DOT_DOT] = ACTIONS(2914), - [anon_sym_LT_GT] = ACTIONS(2914), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_STAR_STAR] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(2918), - [anon_sym_DOT] = ACTIONS(2920), - [anon_sym_after] = ACTIONS(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(1032), - [anon_sym_rescue] = ACTIONS(117), - [anon_sym_LBRACK2] = ACTIONS(2922), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2924), - }, - [1075] = { - [sym__terminator] = STATE(165), - [sym_after_block] = STATE(3695), - [sym_rescue_block] = STATE(3695), - [sym_catch_block] = STATE(3695), - [sym_else_block] = STATE(3695), - [aux_sym__terminator_repeat1] = STATE(1020), - [aux_sym_block_repeat2] = STATE(3601), - [aux_sym_do_block_repeat1] = STATE(3695), - [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(4529), - [aux_sym__terminator_token1] = ACTIONS(2875), - [anon_sym_SEMI] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(2926), [anon_sym_LT] = ACTIONS(2879), [anon_sym_GT] = ACTIONS(2879), [anon_sym_PIPE] = ACTIONS(2881), @@ -156196,18 +155856,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline_before_comment] = ACTIONS(3), [sym__not_in] = ACTIONS(2924), }, - [1076] = { - [sym__terminator] = STATE(145), - [sym_after_block] = STATE(3696), - [sym_rescue_block] = STATE(3696), - [sym_catch_block] = STATE(3696), - [sym_else_block] = STATE(3696), - [aux_sym__terminator_repeat1] = STATE(1020), - [aux_sym_block_repeat2] = STATE(3607), - [aux_sym_do_block_repeat1] = STATE(3696), - [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(4529), + [1062] = { + [sym__terminator] = STATE(160), + [sym_after_block] = STATE(4286), + [sym_rescue_block] = STATE(4286), + [sym_catch_block] = STATE(4286), + [sym_else_block] = STATE(4286), + [aux_sym__terminator_repeat1] = STATE(1021), + [aux_sym_block_repeat2] = STATE(4196), + [aux_sym_do_block_repeat1] = STATE(4286), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(5161), [aux_sym__terminator_token1] = ACTIONS(2875), - [anon_sym_SEMI] = ACTIONS(2958), + [anon_sym_SEMI] = ACTIONS(2928), [anon_sym_LT] = ACTIONS(2879), [anon_sym_GT] = ACTIONS(2879), [anon_sym_PIPE] = ACTIONS(2881), @@ -156259,7 +155919,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_after] = ACTIONS(107), [anon_sym_catch] = ACTIONS(109), [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(311), + [anon_sym_end] = ACTIONS(1026), [anon_sym_rescue] = ACTIONS(117), [anon_sym_LBRACK2] = ACTIONS(2922), [sym_comment] = ACTIONS(5), @@ -156267,302 +155927,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline_before_comment] = ACTIONS(3), [sym__not_in] = ACTIONS(2924), }, - [1077] = { - [sym__terminator] = STATE(170), - [sym_after_block] = STATE(3677), - [sym_rescue_block] = STATE(3677), - [sym_catch_block] = STATE(3677), - [sym_else_block] = STATE(3677), - [aux_sym__terminator_repeat1] = STATE(1020), - [aux_sym_block_repeat2] = STATE(3645), - [aux_sym_do_block_repeat1] = STATE(3677), - [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(4529), - [aux_sym__terminator_token1] = ACTIONS(2875), - [anon_sym_SEMI] = ACTIONS(2960), - [anon_sym_LT] = ACTIONS(2879), - [anon_sym_GT] = ACTIONS(2879), - [anon_sym_PIPE] = ACTIONS(2881), - [anon_sym_SLASH] = ACTIONS(2883), - [anon_sym_COMMA] = ACTIONS(2885), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2889), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2889), - [anon_sym_when] = ACTIONS(2891), - [anon_sym_COLON_COLON] = ACTIONS(2894), - [anon_sym_EQ_GT] = ACTIONS(2896), - [anon_sym_EQ] = ACTIONS(2898), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_or] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2902), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2902), - [anon_sym_and] = ACTIONS(2902), - [anon_sym_EQ_EQ] = ACTIONS(2904), - [anon_sym_BANG_EQ] = ACTIONS(2904), - [anon_sym_EQ_TILDE] = ACTIONS(2904), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2904), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2904), - [anon_sym_LT_EQ] = ACTIONS(2879), - [anon_sym_GT_EQ] = ACTIONS(2879), - [anon_sym_PIPE_GT] = ACTIONS(2906), - [anon_sym_LT_LT_LT] = ACTIONS(2906), - [anon_sym_GT_GT_GT] = ACTIONS(2906), - [anon_sym_LT_LT_TILDE] = ACTIONS(2906), - [anon_sym_TILDE_GT_GT] = ACTIONS(2906), - [anon_sym_LT_TILDE] = ACTIONS(2906), - [anon_sym_TILDE_GT] = ACTIONS(2906), - [anon_sym_LT_TILDE_GT] = ACTIONS(2906), - [anon_sym_LT_PIPE_GT] = ACTIONS(2906), - [anon_sym_in] = ACTIONS(2908), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2910), - [anon_sym_SLASH_SLASH] = ACTIONS(2912), - [anon_sym_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_DASH_DASH] = ACTIONS(2914), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2914), - [anon_sym_DOT_DOT] = ACTIONS(2914), - [anon_sym_LT_GT] = ACTIONS(2914), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_STAR_STAR] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(2918), - [anon_sym_DOT] = ACTIONS(2920), - [anon_sym_after] = ACTIONS(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(319), - [anon_sym_rescue] = ACTIONS(117), - [anon_sym_LBRACK2] = ACTIONS(2922), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2924), - }, - [1078] = { + [1063] = { [sym__terminator] = STATE(169), - [sym_after_block] = STATE(3697), - [sym_rescue_block] = STATE(3697), - [sym_catch_block] = STATE(3697), - [sym_else_block] = STATE(3697), - [aux_sym__terminator_repeat1] = STATE(1020), - [aux_sym_block_repeat2] = STATE(3639), - [aux_sym_do_block_repeat1] = STATE(3697), - [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(4529), + [sym_after_block] = STATE(4309), + [sym_rescue_block] = STATE(4309), + [sym_catch_block] = STATE(4309), + [sym_else_block] = STATE(4309), + [aux_sym__terminator_repeat1] = STATE(1021), + [aux_sym_block_repeat2] = STATE(4217), + [aux_sym_do_block_repeat1] = STATE(4309), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(5161), [aux_sym__terminator_token1] = ACTIONS(2875), - [anon_sym_SEMI] = ACTIONS(2962), - [anon_sym_LT] = ACTIONS(2879), - [anon_sym_GT] = ACTIONS(2879), - [anon_sym_PIPE] = ACTIONS(2881), - [anon_sym_SLASH] = ACTIONS(2883), - [anon_sym_COMMA] = ACTIONS(2885), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2889), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2889), - [anon_sym_when] = ACTIONS(2891), - [anon_sym_COLON_COLON] = ACTIONS(2894), - [anon_sym_EQ_GT] = ACTIONS(2896), - [anon_sym_EQ] = ACTIONS(2898), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_or] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2902), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2902), - [anon_sym_and] = ACTIONS(2902), - [anon_sym_EQ_EQ] = ACTIONS(2904), - [anon_sym_BANG_EQ] = ACTIONS(2904), - [anon_sym_EQ_TILDE] = ACTIONS(2904), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2904), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2904), - [anon_sym_LT_EQ] = ACTIONS(2879), - [anon_sym_GT_EQ] = ACTIONS(2879), - [anon_sym_PIPE_GT] = ACTIONS(2906), - [anon_sym_LT_LT_LT] = ACTIONS(2906), - [anon_sym_GT_GT_GT] = ACTIONS(2906), - [anon_sym_LT_LT_TILDE] = ACTIONS(2906), - [anon_sym_TILDE_GT_GT] = ACTIONS(2906), - [anon_sym_LT_TILDE] = ACTIONS(2906), - [anon_sym_TILDE_GT] = ACTIONS(2906), - [anon_sym_LT_TILDE_GT] = ACTIONS(2906), - [anon_sym_LT_PIPE_GT] = ACTIONS(2906), - [anon_sym_in] = ACTIONS(2908), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2910), - [anon_sym_SLASH_SLASH] = ACTIONS(2912), - [anon_sym_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_DASH_DASH] = ACTIONS(2914), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2914), - [anon_sym_DOT_DOT] = ACTIONS(2914), - [anon_sym_LT_GT] = ACTIONS(2914), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_STAR_STAR] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(2918), - [anon_sym_DOT] = ACTIONS(2920), - [anon_sym_after] = ACTIONS(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(1050), - [anon_sym_rescue] = ACTIONS(117), - [anon_sym_LBRACK2] = ACTIONS(2922), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2924), - }, - [1079] = { - [sym__terminator] = STATE(174), - [sym_after_block] = STATE(3670), - [sym_rescue_block] = STATE(3670), - [sym_catch_block] = STATE(3670), - [sym_else_block] = STATE(3670), - [aux_sym__terminator_repeat1] = STATE(1020), - [aux_sym_block_repeat2] = STATE(3649), - [aux_sym_do_block_repeat1] = STATE(3670), - [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(4529), - [aux_sym__terminator_token1] = ACTIONS(2875), - [anon_sym_SEMI] = ACTIONS(2964), - [anon_sym_LT] = ACTIONS(2879), - [anon_sym_GT] = ACTIONS(2879), - [anon_sym_PIPE] = ACTIONS(2881), - [anon_sym_SLASH] = ACTIONS(2883), - [anon_sym_COMMA] = ACTIONS(2885), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2889), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2889), - [anon_sym_when] = ACTIONS(2891), - [anon_sym_COLON_COLON] = ACTIONS(2894), - [anon_sym_EQ_GT] = ACTIONS(2896), - [anon_sym_EQ] = ACTIONS(2898), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_or] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2902), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2902), - [anon_sym_and] = ACTIONS(2902), - [anon_sym_EQ_EQ] = ACTIONS(2904), - [anon_sym_BANG_EQ] = ACTIONS(2904), - [anon_sym_EQ_TILDE] = ACTIONS(2904), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2904), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2904), - [anon_sym_LT_EQ] = ACTIONS(2879), - [anon_sym_GT_EQ] = ACTIONS(2879), - [anon_sym_PIPE_GT] = ACTIONS(2906), - [anon_sym_LT_LT_LT] = ACTIONS(2906), - [anon_sym_GT_GT_GT] = ACTIONS(2906), - [anon_sym_LT_LT_TILDE] = ACTIONS(2906), - [anon_sym_TILDE_GT_GT] = ACTIONS(2906), - [anon_sym_LT_TILDE] = ACTIONS(2906), - [anon_sym_TILDE_GT] = ACTIONS(2906), - [anon_sym_LT_TILDE_GT] = ACTIONS(2906), - [anon_sym_LT_PIPE_GT] = ACTIONS(2906), - [anon_sym_in] = ACTIONS(2908), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2910), - [anon_sym_SLASH_SLASH] = ACTIONS(2912), - [anon_sym_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_DASH_DASH] = ACTIONS(2914), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2914), - [anon_sym_DOT_DOT] = ACTIONS(2914), - [anon_sym_LT_GT] = ACTIONS(2914), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_STAR_STAR] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(2918), - [anon_sym_DOT] = ACTIONS(2920), - [anon_sym_after] = ACTIONS(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(327), - [anon_sym_rescue] = ACTIONS(117), - [anon_sym_LBRACK2] = ACTIONS(2922), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2924), - }, - [1080] = { - [sym__terminator] = STATE(140), - [sym_after_block] = STATE(3690), - [sym_rescue_block] = STATE(3690), - [sym_catch_block] = STATE(3690), - [sym_else_block] = STATE(3690), - [aux_sym__terminator_repeat1] = STATE(1020), - [aux_sym_block_repeat2] = STATE(3636), - [aux_sym_do_block_repeat1] = STATE(3690), - [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(4529), - [aux_sym__terminator_token1] = ACTIONS(2875), - [anon_sym_SEMI] = ACTIONS(2966), - [anon_sym_LT] = ACTIONS(2879), - [anon_sym_GT] = ACTIONS(2879), - [anon_sym_PIPE] = ACTIONS(2881), - [anon_sym_SLASH] = ACTIONS(2883), - [anon_sym_COMMA] = ACTIONS(2885), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2889), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2889), - [anon_sym_when] = ACTIONS(2891), - [anon_sym_COLON_COLON] = ACTIONS(2894), - [anon_sym_EQ_GT] = ACTIONS(2896), - [anon_sym_EQ] = ACTIONS(2898), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_or] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2902), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2902), - [anon_sym_and] = ACTIONS(2902), - [anon_sym_EQ_EQ] = ACTIONS(2904), - [anon_sym_BANG_EQ] = ACTIONS(2904), - [anon_sym_EQ_TILDE] = ACTIONS(2904), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2904), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2904), - [anon_sym_LT_EQ] = ACTIONS(2879), - [anon_sym_GT_EQ] = ACTIONS(2879), - [anon_sym_PIPE_GT] = ACTIONS(2906), - [anon_sym_LT_LT_LT] = ACTIONS(2906), - [anon_sym_GT_GT_GT] = ACTIONS(2906), - [anon_sym_LT_LT_TILDE] = ACTIONS(2906), - [anon_sym_TILDE_GT_GT] = ACTIONS(2906), - [anon_sym_LT_TILDE] = ACTIONS(2906), - [anon_sym_TILDE_GT] = ACTIONS(2906), - [anon_sym_LT_TILDE_GT] = ACTIONS(2906), - [anon_sym_LT_PIPE_GT] = ACTIONS(2906), - [anon_sym_in] = ACTIONS(2908), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2910), - [anon_sym_SLASH_SLASH] = ACTIONS(2912), - [anon_sym_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_DASH_DASH] = ACTIONS(2914), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2914), - [anon_sym_DOT_DOT] = ACTIONS(2914), - [anon_sym_LT_GT] = ACTIONS(2914), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_STAR_STAR] = ACTIONS(2916), - [anon_sym_DASH_GT] = ACTIONS(2918), - [anon_sym_DOT] = ACTIONS(2920), - [anon_sym_after] = ACTIONS(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(351), - [anon_sym_rescue] = ACTIONS(117), - [anon_sym_LBRACK2] = ACTIONS(2922), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2924), - }, - [1081] = { - [sym__terminator] = STATE(172), - [sym_after_block] = STATE(3712), - [sym_rescue_block] = STATE(3712), - [sym_catch_block] = STATE(3712), - [sym_else_block] = STATE(3712), - [aux_sym__terminator_repeat1] = STATE(1020), - [aux_sym_block_repeat2] = STATE(3615), - [aux_sym_do_block_repeat1] = STATE(3712), - [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(4529), - [aux_sym__terminator_token1] = ACTIONS(2875), - [anon_sym_SEMI] = ACTIONS(2968), + [anon_sym_SEMI] = ACTIONS(2930), [anon_sym_LT] = ACTIONS(2879), [anon_sym_GT] = ACTIONS(2879), [anon_sym_PIPE] = ACTIONS(2881), @@ -156622,16 +155998,1365 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline_before_comment] = ACTIONS(3), [sym__not_in] = ACTIONS(2924), }, - [1082] = { + [1064] = { + [sym__terminator] = STATE(143), + [sym_after_block] = STATE(4302), + [sym_rescue_block] = STATE(4302), + [sym_catch_block] = STATE(4302), + [sym_else_block] = STATE(4302), + [aux_sym__terminator_repeat1] = STATE(1021), + [aux_sym_block_repeat2] = STATE(4205), + [aux_sym_do_block_repeat1] = STATE(4302), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(5161), + [aux_sym__terminator_token1] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2932), + [anon_sym_LT] = ACTIONS(2879), + [anon_sym_GT] = ACTIONS(2879), + [anon_sym_PIPE] = ACTIONS(2881), + [anon_sym_SLASH] = ACTIONS(2883), + [anon_sym_COMMA] = ACTIONS(2885), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2889), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2889), + [anon_sym_when] = ACTIONS(2891), + [anon_sym_COLON_COLON] = ACTIONS(2894), + [anon_sym_EQ_GT] = ACTIONS(2896), + [anon_sym_EQ] = ACTIONS(2898), + [anon_sym_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_or] = ACTIONS(2900), + [anon_sym_AMP_AMP] = ACTIONS(2902), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2902), + [anon_sym_and] = ACTIONS(2902), + [anon_sym_EQ_EQ] = ACTIONS(2904), + [anon_sym_BANG_EQ] = ACTIONS(2904), + [anon_sym_EQ_TILDE] = ACTIONS(2904), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2904), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2904), + [anon_sym_LT_EQ] = ACTIONS(2879), + [anon_sym_GT_EQ] = ACTIONS(2879), + [anon_sym_PIPE_GT] = ACTIONS(2906), + [anon_sym_LT_LT_LT] = ACTIONS(2906), + [anon_sym_GT_GT_GT] = ACTIONS(2906), + [anon_sym_LT_LT_TILDE] = ACTIONS(2906), + [anon_sym_TILDE_GT_GT] = ACTIONS(2906), + [anon_sym_LT_TILDE] = ACTIONS(2906), + [anon_sym_TILDE_GT] = ACTIONS(2906), + [anon_sym_LT_TILDE_GT] = ACTIONS(2906), + [anon_sym_LT_PIPE_GT] = ACTIONS(2906), + [anon_sym_in] = ACTIONS(2908), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2910), + [anon_sym_SLASH_SLASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH] = ACTIONS(2914), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2914), + [anon_sym_DOT_DOT] = ACTIONS(2914), + [anon_sym_LT_GT] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_STAR_STAR] = ACTIONS(2916), + [anon_sym_DASH_GT] = ACTIONS(2918), + [anon_sym_DOT] = ACTIONS(2920), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(327), + [anon_sym_rescue] = ACTIONS(117), + [anon_sym_LBRACK2] = ACTIONS(2922), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2924), + }, + [1065] = { + [sym__terminator] = STATE(144), + [sym_after_block] = STATE(4314), + [sym_rescue_block] = STATE(4314), + [sym_catch_block] = STATE(4314), + [sym_else_block] = STATE(4314), + [aux_sym__terminator_repeat1] = STATE(1021), + [aux_sym_block_repeat2] = STATE(4210), + [aux_sym_do_block_repeat1] = STATE(4314), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(5161), + [aux_sym__terminator_token1] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2934), + [anon_sym_LT] = ACTIONS(2879), + [anon_sym_GT] = ACTIONS(2879), + [anon_sym_PIPE] = ACTIONS(2881), + [anon_sym_SLASH] = ACTIONS(2883), + [anon_sym_COMMA] = ACTIONS(2885), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2889), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2889), + [anon_sym_when] = ACTIONS(2891), + [anon_sym_COLON_COLON] = ACTIONS(2894), + [anon_sym_EQ_GT] = ACTIONS(2896), + [anon_sym_EQ] = ACTIONS(2898), + [anon_sym_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_or] = ACTIONS(2900), + [anon_sym_AMP_AMP] = ACTIONS(2902), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2902), + [anon_sym_and] = ACTIONS(2902), + [anon_sym_EQ_EQ] = ACTIONS(2904), + [anon_sym_BANG_EQ] = ACTIONS(2904), + [anon_sym_EQ_TILDE] = ACTIONS(2904), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2904), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2904), + [anon_sym_LT_EQ] = ACTIONS(2879), + [anon_sym_GT_EQ] = ACTIONS(2879), + [anon_sym_PIPE_GT] = ACTIONS(2906), + [anon_sym_LT_LT_LT] = ACTIONS(2906), + [anon_sym_GT_GT_GT] = ACTIONS(2906), + [anon_sym_LT_LT_TILDE] = ACTIONS(2906), + [anon_sym_TILDE_GT_GT] = ACTIONS(2906), + [anon_sym_LT_TILDE] = ACTIONS(2906), + [anon_sym_TILDE_GT] = ACTIONS(2906), + [anon_sym_LT_TILDE_GT] = ACTIONS(2906), + [anon_sym_LT_PIPE_GT] = ACTIONS(2906), + [anon_sym_in] = ACTIONS(2908), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2910), + [anon_sym_SLASH_SLASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH] = ACTIONS(2914), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2914), + [anon_sym_DOT_DOT] = ACTIONS(2914), + [anon_sym_LT_GT] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_STAR_STAR] = ACTIONS(2916), + [anon_sym_DASH_GT] = ACTIONS(2918), + [anon_sym_DOT] = ACTIONS(2920), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(988), + [anon_sym_rescue] = ACTIONS(117), + [anon_sym_LBRACK2] = ACTIONS(2922), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2924), + }, + [1066] = { + [sym__terminator] = STATE(167), + [sym_after_block] = STATE(4275), + [sym_rescue_block] = STATE(4275), + [sym_catch_block] = STATE(4275), + [sym_else_block] = STATE(4275), + [aux_sym__terminator_repeat1] = STATE(1021), + [aux_sym_block_repeat2] = STATE(4262), + [aux_sym_do_block_repeat1] = STATE(4275), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(5161), + [aux_sym__terminator_token1] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2936), + [anon_sym_LT] = ACTIONS(2879), + [anon_sym_GT] = ACTIONS(2879), + [anon_sym_PIPE] = ACTIONS(2881), + [anon_sym_SLASH] = ACTIONS(2883), + [anon_sym_COMMA] = ACTIONS(2885), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2889), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2889), + [anon_sym_when] = ACTIONS(2891), + [anon_sym_COLON_COLON] = ACTIONS(2894), + [anon_sym_EQ_GT] = ACTIONS(2896), + [anon_sym_EQ] = ACTIONS(2898), + [anon_sym_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_or] = ACTIONS(2900), + [anon_sym_AMP_AMP] = ACTIONS(2902), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2902), + [anon_sym_and] = ACTIONS(2902), + [anon_sym_EQ_EQ] = ACTIONS(2904), + [anon_sym_BANG_EQ] = ACTIONS(2904), + [anon_sym_EQ_TILDE] = ACTIONS(2904), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2904), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2904), + [anon_sym_LT_EQ] = ACTIONS(2879), + [anon_sym_GT_EQ] = ACTIONS(2879), + [anon_sym_PIPE_GT] = ACTIONS(2906), + [anon_sym_LT_LT_LT] = ACTIONS(2906), + [anon_sym_GT_GT_GT] = ACTIONS(2906), + [anon_sym_LT_LT_TILDE] = ACTIONS(2906), + [anon_sym_TILDE_GT_GT] = ACTIONS(2906), + [anon_sym_LT_TILDE] = ACTIONS(2906), + [anon_sym_TILDE_GT] = ACTIONS(2906), + [anon_sym_LT_TILDE_GT] = ACTIONS(2906), + [anon_sym_LT_PIPE_GT] = ACTIONS(2906), + [anon_sym_in] = ACTIONS(2908), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2910), + [anon_sym_SLASH_SLASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH] = ACTIONS(2914), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2914), + [anon_sym_DOT_DOT] = ACTIONS(2914), + [anon_sym_LT_GT] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_STAR_STAR] = ACTIONS(2916), + [anon_sym_DASH_GT] = ACTIONS(2918), + [anon_sym_DOT] = ACTIONS(2920), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(1030), + [anon_sym_rescue] = ACTIONS(117), + [anon_sym_LBRACK2] = ACTIONS(2922), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2924), + }, + [1067] = { + [sym__terminator] = STATE(171), + [sym_after_block] = STATE(4290), + [sym_rescue_block] = STATE(4290), + [sym_catch_block] = STATE(4290), + [sym_else_block] = STATE(4290), + [aux_sym__terminator_repeat1] = STATE(1021), + [aux_sym_block_repeat2] = STATE(4242), + [aux_sym_do_block_repeat1] = STATE(4290), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(5161), + [aux_sym__terminator_token1] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2938), + [anon_sym_LT] = ACTIONS(2879), + [anon_sym_GT] = ACTIONS(2879), + [anon_sym_PIPE] = ACTIONS(2881), + [anon_sym_SLASH] = ACTIONS(2883), + [anon_sym_COMMA] = ACTIONS(2885), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2889), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2889), + [anon_sym_when] = ACTIONS(2891), + [anon_sym_COLON_COLON] = ACTIONS(2894), + [anon_sym_EQ_GT] = ACTIONS(2896), + [anon_sym_EQ] = ACTIONS(2898), + [anon_sym_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_or] = ACTIONS(2900), + [anon_sym_AMP_AMP] = ACTIONS(2902), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2902), + [anon_sym_and] = ACTIONS(2902), + [anon_sym_EQ_EQ] = ACTIONS(2904), + [anon_sym_BANG_EQ] = ACTIONS(2904), + [anon_sym_EQ_TILDE] = ACTIONS(2904), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2904), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2904), + [anon_sym_LT_EQ] = ACTIONS(2879), + [anon_sym_GT_EQ] = ACTIONS(2879), + [anon_sym_PIPE_GT] = ACTIONS(2906), + [anon_sym_LT_LT_LT] = ACTIONS(2906), + [anon_sym_GT_GT_GT] = ACTIONS(2906), + [anon_sym_LT_LT_TILDE] = ACTIONS(2906), + [anon_sym_TILDE_GT_GT] = ACTIONS(2906), + [anon_sym_LT_TILDE] = ACTIONS(2906), + [anon_sym_TILDE_GT] = ACTIONS(2906), + [anon_sym_LT_TILDE_GT] = ACTIONS(2906), + [anon_sym_LT_PIPE_GT] = ACTIONS(2906), + [anon_sym_in] = ACTIONS(2908), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2910), + [anon_sym_SLASH_SLASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH] = ACTIONS(2914), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2914), + [anon_sym_DOT_DOT] = ACTIONS(2914), + [anon_sym_LT_GT] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_STAR_STAR] = ACTIONS(2916), + [anon_sym_DASH_GT] = ACTIONS(2918), + [anon_sym_DOT] = ACTIONS(2920), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(339), + [anon_sym_rescue] = ACTIONS(117), + [anon_sym_LBRACK2] = ACTIONS(2922), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2924), + }, + [1068] = { + [sym__terminator] = STATE(157), + [sym_after_block] = STATE(4299), + [sym_rescue_block] = STATE(4299), + [sym_catch_block] = STATE(4299), + [sym_else_block] = STATE(4299), + [aux_sym__terminator_repeat1] = STATE(1021), + [aux_sym_block_repeat2] = STATE(4215), + [aux_sym_do_block_repeat1] = STATE(4299), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(5161), + [aux_sym__terminator_token1] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2940), + [anon_sym_LT] = ACTIONS(2879), + [anon_sym_GT] = ACTIONS(2879), + [anon_sym_PIPE] = ACTIONS(2881), + [anon_sym_SLASH] = ACTIONS(2883), + [anon_sym_COMMA] = ACTIONS(2885), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2889), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2889), + [anon_sym_when] = ACTIONS(2891), + [anon_sym_COLON_COLON] = ACTIONS(2894), + [anon_sym_EQ_GT] = ACTIONS(2896), + [anon_sym_EQ] = ACTIONS(2898), + [anon_sym_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_or] = ACTIONS(2900), + [anon_sym_AMP_AMP] = ACTIONS(2902), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2902), + [anon_sym_and] = ACTIONS(2902), + [anon_sym_EQ_EQ] = ACTIONS(2904), + [anon_sym_BANG_EQ] = ACTIONS(2904), + [anon_sym_EQ_TILDE] = ACTIONS(2904), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2904), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2904), + [anon_sym_LT_EQ] = ACTIONS(2879), + [anon_sym_GT_EQ] = ACTIONS(2879), + [anon_sym_PIPE_GT] = ACTIONS(2906), + [anon_sym_LT_LT_LT] = ACTIONS(2906), + [anon_sym_GT_GT_GT] = ACTIONS(2906), + [anon_sym_LT_LT_TILDE] = ACTIONS(2906), + [anon_sym_TILDE_GT_GT] = ACTIONS(2906), + [anon_sym_LT_TILDE] = ACTIONS(2906), + [anon_sym_TILDE_GT] = ACTIONS(2906), + [anon_sym_LT_TILDE_GT] = ACTIONS(2906), + [anon_sym_LT_PIPE_GT] = ACTIONS(2906), + [anon_sym_in] = ACTIONS(2908), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2910), + [anon_sym_SLASH_SLASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH] = ACTIONS(2914), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2914), + [anon_sym_DOT_DOT] = ACTIONS(2914), + [anon_sym_LT_GT] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_STAR_STAR] = ACTIONS(2916), + [anon_sym_DASH_GT] = ACTIONS(2918), + [anon_sym_DOT] = ACTIONS(2920), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(335), + [anon_sym_rescue] = ACTIONS(117), + [anon_sym_LBRACK2] = ACTIONS(2922), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2924), + }, + [1069] = { + [sym__terminator] = STATE(154), + [sym_after_block] = STATE(4295), + [sym_rescue_block] = STATE(4295), + [sym_catch_block] = STATE(4295), + [sym_else_block] = STATE(4295), + [aux_sym__terminator_repeat1] = STATE(1021), + [aux_sym_block_repeat2] = STATE(4239), + [aux_sym_do_block_repeat1] = STATE(4295), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(5161), + [aux_sym__terminator_token1] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2942), + [anon_sym_LT] = ACTIONS(2879), + [anon_sym_GT] = ACTIONS(2879), + [anon_sym_PIPE] = ACTIONS(2881), + [anon_sym_SLASH] = ACTIONS(2883), + [anon_sym_COMMA] = ACTIONS(2885), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2889), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2889), + [anon_sym_when] = ACTIONS(2891), + [anon_sym_COLON_COLON] = ACTIONS(2894), + [anon_sym_EQ_GT] = ACTIONS(2896), + [anon_sym_EQ] = ACTIONS(2898), + [anon_sym_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_or] = ACTIONS(2900), + [anon_sym_AMP_AMP] = ACTIONS(2902), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2902), + [anon_sym_and] = ACTIONS(2902), + [anon_sym_EQ_EQ] = ACTIONS(2904), + [anon_sym_BANG_EQ] = ACTIONS(2904), + [anon_sym_EQ_TILDE] = ACTIONS(2904), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2904), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2904), + [anon_sym_LT_EQ] = ACTIONS(2879), + [anon_sym_GT_EQ] = ACTIONS(2879), + [anon_sym_PIPE_GT] = ACTIONS(2906), + [anon_sym_LT_LT_LT] = ACTIONS(2906), + [anon_sym_GT_GT_GT] = ACTIONS(2906), + [anon_sym_LT_LT_TILDE] = ACTIONS(2906), + [anon_sym_TILDE_GT_GT] = ACTIONS(2906), + [anon_sym_LT_TILDE] = ACTIONS(2906), + [anon_sym_TILDE_GT] = ACTIONS(2906), + [anon_sym_LT_TILDE_GT] = ACTIONS(2906), + [anon_sym_LT_PIPE_GT] = ACTIONS(2906), + [anon_sym_in] = ACTIONS(2908), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2910), + [anon_sym_SLASH_SLASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH] = ACTIONS(2914), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2914), + [anon_sym_DOT_DOT] = ACTIONS(2914), + [anon_sym_LT_GT] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_STAR_STAR] = ACTIONS(2916), + [anon_sym_DASH_GT] = ACTIONS(2918), + [anon_sym_DOT] = ACTIONS(2920), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(351), + [anon_sym_rescue] = ACTIONS(117), + [anon_sym_LBRACK2] = ACTIONS(2922), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2924), + }, + [1070] = { + [sym__terminator] = STATE(158), + [sym_after_block] = STATE(4321), + [sym_rescue_block] = STATE(4321), + [sym_catch_block] = STATE(4321), + [sym_else_block] = STATE(4321), + [aux_sym__terminator_repeat1] = STATE(1021), + [aux_sym_block_repeat2] = STATE(4209), + [aux_sym_do_block_repeat1] = STATE(4321), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(5161), + [aux_sym__terminator_token1] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2944), + [anon_sym_LT] = ACTIONS(2879), + [anon_sym_GT] = ACTIONS(2879), + [anon_sym_PIPE] = ACTIONS(2881), + [anon_sym_SLASH] = ACTIONS(2883), + [anon_sym_COMMA] = ACTIONS(2885), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2889), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2889), + [anon_sym_when] = ACTIONS(2891), + [anon_sym_COLON_COLON] = ACTIONS(2894), + [anon_sym_EQ_GT] = ACTIONS(2896), + [anon_sym_EQ] = ACTIONS(2898), + [anon_sym_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_or] = ACTIONS(2900), + [anon_sym_AMP_AMP] = ACTIONS(2902), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2902), + [anon_sym_and] = ACTIONS(2902), + [anon_sym_EQ_EQ] = ACTIONS(2904), + [anon_sym_BANG_EQ] = ACTIONS(2904), + [anon_sym_EQ_TILDE] = ACTIONS(2904), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2904), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2904), + [anon_sym_LT_EQ] = ACTIONS(2879), + [anon_sym_GT_EQ] = ACTIONS(2879), + [anon_sym_PIPE_GT] = ACTIONS(2906), + [anon_sym_LT_LT_LT] = ACTIONS(2906), + [anon_sym_GT_GT_GT] = ACTIONS(2906), + [anon_sym_LT_LT_TILDE] = ACTIONS(2906), + [anon_sym_TILDE_GT_GT] = ACTIONS(2906), + [anon_sym_LT_TILDE] = ACTIONS(2906), + [anon_sym_TILDE_GT] = ACTIONS(2906), + [anon_sym_LT_TILDE_GT] = ACTIONS(2906), + [anon_sym_LT_PIPE_GT] = ACTIONS(2906), + [anon_sym_in] = ACTIONS(2908), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2910), + [anon_sym_SLASH_SLASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH] = ACTIONS(2914), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2914), + [anon_sym_DOT_DOT] = ACTIONS(2914), + [anon_sym_LT_GT] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_STAR_STAR] = ACTIONS(2916), + [anon_sym_DASH_GT] = ACTIONS(2918), + [anon_sym_DOT] = ACTIONS(2920), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(1016), + [anon_sym_rescue] = ACTIONS(117), + [anon_sym_LBRACK2] = ACTIONS(2922), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2924), + }, + [1071] = { + [sym__terminator] = STATE(147), + [sym_after_block] = STATE(4296), + [sym_rescue_block] = STATE(4296), + [sym_catch_block] = STATE(4296), + [sym_else_block] = STATE(4296), + [aux_sym__terminator_repeat1] = STATE(1021), + [aux_sym_block_repeat2] = STATE(4237), + [aux_sym_do_block_repeat1] = STATE(4296), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(5161), + [aux_sym__terminator_token1] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2946), + [anon_sym_LT] = ACTIONS(2879), + [anon_sym_GT] = ACTIONS(2879), + [anon_sym_PIPE] = ACTIONS(2881), + [anon_sym_SLASH] = ACTIONS(2883), + [anon_sym_COMMA] = ACTIONS(2885), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2889), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2889), + [anon_sym_when] = ACTIONS(2891), + [anon_sym_COLON_COLON] = ACTIONS(2894), + [anon_sym_EQ_GT] = ACTIONS(2896), + [anon_sym_EQ] = ACTIONS(2898), + [anon_sym_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_or] = ACTIONS(2900), + [anon_sym_AMP_AMP] = ACTIONS(2902), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2902), + [anon_sym_and] = ACTIONS(2902), + [anon_sym_EQ_EQ] = ACTIONS(2904), + [anon_sym_BANG_EQ] = ACTIONS(2904), + [anon_sym_EQ_TILDE] = ACTIONS(2904), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2904), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2904), + [anon_sym_LT_EQ] = ACTIONS(2879), + [anon_sym_GT_EQ] = ACTIONS(2879), + [anon_sym_PIPE_GT] = ACTIONS(2906), + [anon_sym_LT_LT_LT] = ACTIONS(2906), + [anon_sym_GT_GT_GT] = ACTIONS(2906), + [anon_sym_LT_LT_TILDE] = ACTIONS(2906), + [anon_sym_TILDE_GT_GT] = ACTIONS(2906), + [anon_sym_LT_TILDE] = ACTIONS(2906), + [anon_sym_TILDE_GT] = ACTIONS(2906), + [anon_sym_LT_TILDE_GT] = ACTIONS(2906), + [anon_sym_LT_PIPE_GT] = ACTIONS(2906), + [anon_sym_in] = ACTIONS(2908), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2910), + [anon_sym_SLASH_SLASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH] = ACTIONS(2914), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2914), + [anon_sym_DOT_DOT] = ACTIONS(2914), + [anon_sym_LT_GT] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_STAR_STAR] = ACTIONS(2916), + [anon_sym_DASH_GT] = ACTIONS(2918), + [anon_sym_DOT] = ACTIONS(2920), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(323), + [anon_sym_rescue] = ACTIONS(117), + [anon_sym_LBRACK2] = ACTIONS(2922), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2924), + }, + [1072] = { + [sym__terminator] = STATE(151), + [sym_after_block] = STATE(4315), + [sym_rescue_block] = STATE(4315), + [sym_catch_block] = STATE(4315), + [sym_else_block] = STATE(4315), + [aux_sym__terminator_repeat1] = STATE(1021), + [aux_sym_block_repeat2] = STATE(4218), + [aux_sym_do_block_repeat1] = STATE(4315), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(5161), + [aux_sym__terminator_token1] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2948), + [anon_sym_LT] = ACTIONS(2879), + [anon_sym_GT] = ACTIONS(2879), + [anon_sym_PIPE] = ACTIONS(2881), + [anon_sym_SLASH] = ACTIONS(2883), + [anon_sym_COMMA] = ACTIONS(2885), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2889), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2889), + [anon_sym_when] = ACTIONS(2891), + [anon_sym_COLON_COLON] = ACTIONS(2894), + [anon_sym_EQ_GT] = ACTIONS(2896), + [anon_sym_EQ] = ACTIONS(2898), + [anon_sym_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_or] = ACTIONS(2900), + [anon_sym_AMP_AMP] = ACTIONS(2902), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2902), + [anon_sym_and] = ACTIONS(2902), + [anon_sym_EQ_EQ] = ACTIONS(2904), + [anon_sym_BANG_EQ] = ACTIONS(2904), + [anon_sym_EQ_TILDE] = ACTIONS(2904), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2904), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2904), + [anon_sym_LT_EQ] = ACTIONS(2879), + [anon_sym_GT_EQ] = ACTIONS(2879), + [anon_sym_PIPE_GT] = ACTIONS(2906), + [anon_sym_LT_LT_LT] = ACTIONS(2906), + [anon_sym_GT_GT_GT] = ACTIONS(2906), + [anon_sym_LT_LT_TILDE] = ACTIONS(2906), + [anon_sym_TILDE_GT_GT] = ACTIONS(2906), + [anon_sym_LT_TILDE] = ACTIONS(2906), + [anon_sym_TILDE_GT] = ACTIONS(2906), + [anon_sym_LT_TILDE_GT] = ACTIONS(2906), + [anon_sym_LT_PIPE_GT] = ACTIONS(2906), + [anon_sym_in] = ACTIONS(2908), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2910), + [anon_sym_SLASH_SLASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH] = ACTIONS(2914), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2914), + [anon_sym_DOT_DOT] = ACTIONS(2914), + [anon_sym_LT_GT] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_STAR_STAR] = ACTIONS(2916), + [anon_sym_DASH_GT] = ACTIONS(2918), + [anon_sym_DOT] = ACTIONS(2920), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(996), + [anon_sym_rescue] = ACTIONS(117), + [anon_sym_LBRACK2] = ACTIONS(2922), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2924), + }, + [1073] = { [sym__terminator] = STATE(156), - [sym_after_block] = STATE(3700), - [sym_rescue_block] = STATE(3700), - [sym_catch_block] = STATE(3700), - [sym_else_block] = STATE(3700), - [aux_sym__terminator_repeat1] = STATE(1020), - [aux_sym_block_repeat2] = STATE(3634), - [aux_sym_do_block_repeat1] = STATE(3700), - [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(4529), + [sym_after_block] = STATE(4274), + [sym_rescue_block] = STATE(4274), + [sym_catch_block] = STATE(4274), + [sym_else_block] = STATE(4274), + [aux_sym__terminator_repeat1] = STATE(1021), + [aux_sym_block_repeat2] = STATE(4263), + [aux_sym_do_block_repeat1] = STATE(4274), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(5161), + [aux_sym__terminator_token1] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2950), + [anon_sym_LT] = ACTIONS(2879), + [anon_sym_GT] = ACTIONS(2879), + [anon_sym_PIPE] = ACTIONS(2881), + [anon_sym_SLASH] = ACTIONS(2883), + [anon_sym_COMMA] = ACTIONS(2885), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2889), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2889), + [anon_sym_when] = ACTIONS(2891), + [anon_sym_COLON_COLON] = ACTIONS(2894), + [anon_sym_EQ_GT] = ACTIONS(2896), + [anon_sym_EQ] = ACTIONS(2898), + [anon_sym_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_or] = ACTIONS(2900), + [anon_sym_AMP_AMP] = ACTIONS(2902), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2902), + [anon_sym_and] = ACTIONS(2902), + [anon_sym_EQ_EQ] = ACTIONS(2904), + [anon_sym_BANG_EQ] = ACTIONS(2904), + [anon_sym_EQ_TILDE] = ACTIONS(2904), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2904), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2904), + [anon_sym_LT_EQ] = ACTIONS(2879), + [anon_sym_GT_EQ] = ACTIONS(2879), + [anon_sym_PIPE_GT] = ACTIONS(2906), + [anon_sym_LT_LT_LT] = ACTIONS(2906), + [anon_sym_GT_GT_GT] = ACTIONS(2906), + [anon_sym_LT_LT_TILDE] = ACTIONS(2906), + [anon_sym_TILDE_GT_GT] = ACTIONS(2906), + [anon_sym_LT_TILDE] = ACTIONS(2906), + [anon_sym_TILDE_GT] = ACTIONS(2906), + [anon_sym_LT_TILDE_GT] = ACTIONS(2906), + [anon_sym_LT_PIPE_GT] = ACTIONS(2906), + [anon_sym_in] = ACTIONS(2908), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2910), + [anon_sym_SLASH_SLASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH] = ACTIONS(2914), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2914), + [anon_sym_DOT_DOT] = ACTIONS(2914), + [anon_sym_LT_GT] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_STAR_STAR] = ACTIONS(2916), + [anon_sym_DASH_GT] = ACTIONS(2918), + [anon_sym_DOT] = ACTIONS(2920), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(1046), + [anon_sym_rescue] = ACTIONS(117), + [anon_sym_LBRACK2] = ACTIONS(2922), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2924), + }, + [1074] = { + [sym__terminator] = STATE(161), + [sym_after_block] = STATE(4287), + [sym_rescue_block] = STATE(4287), + [sym_catch_block] = STATE(4287), + [sym_else_block] = STATE(4287), + [aux_sym__terminator_repeat1] = STATE(1021), + [aux_sym_block_repeat2] = STATE(4225), + [aux_sym_do_block_repeat1] = STATE(4287), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(5161), + [aux_sym__terminator_token1] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2952), + [anon_sym_LT] = ACTIONS(2879), + [anon_sym_GT] = ACTIONS(2879), + [anon_sym_PIPE] = ACTIONS(2881), + [anon_sym_SLASH] = ACTIONS(2883), + [anon_sym_COMMA] = ACTIONS(2885), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2889), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2889), + [anon_sym_when] = ACTIONS(2891), + [anon_sym_COLON_COLON] = ACTIONS(2894), + [anon_sym_EQ_GT] = ACTIONS(2896), + [anon_sym_EQ] = ACTIONS(2898), + [anon_sym_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_or] = ACTIONS(2900), + [anon_sym_AMP_AMP] = ACTIONS(2902), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2902), + [anon_sym_and] = ACTIONS(2902), + [anon_sym_EQ_EQ] = ACTIONS(2904), + [anon_sym_BANG_EQ] = ACTIONS(2904), + [anon_sym_EQ_TILDE] = ACTIONS(2904), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2904), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2904), + [anon_sym_LT_EQ] = ACTIONS(2879), + [anon_sym_GT_EQ] = ACTIONS(2879), + [anon_sym_PIPE_GT] = ACTIONS(2906), + [anon_sym_LT_LT_LT] = ACTIONS(2906), + [anon_sym_GT_GT_GT] = ACTIONS(2906), + [anon_sym_LT_LT_TILDE] = ACTIONS(2906), + [anon_sym_TILDE_GT_GT] = ACTIONS(2906), + [anon_sym_LT_TILDE] = ACTIONS(2906), + [anon_sym_TILDE_GT] = ACTIONS(2906), + [anon_sym_LT_TILDE_GT] = ACTIONS(2906), + [anon_sym_LT_PIPE_GT] = ACTIONS(2906), + [anon_sym_in] = ACTIONS(2908), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2910), + [anon_sym_SLASH_SLASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH] = ACTIONS(2914), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2914), + [anon_sym_DOT_DOT] = ACTIONS(2914), + [anon_sym_LT_GT] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_STAR_STAR] = ACTIONS(2916), + [anon_sym_DASH_GT] = ACTIONS(2918), + [anon_sym_DOT] = ACTIONS(2920), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(347), + [anon_sym_rescue] = ACTIONS(117), + [anon_sym_LBRACK2] = ACTIONS(2922), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2924), + }, + [1075] = { + [sym__terminator] = STATE(145), + [sym_after_block] = STATE(4328), + [sym_rescue_block] = STATE(4328), + [sym_catch_block] = STATE(4328), + [sym_else_block] = STATE(4328), + [aux_sym__terminator_repeat1] = STATE(1021), + [aux_sym_block_repeat2] = STATE(4230), + [aux_sym_do_block_repeat1] = STATE(4328), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(5161), + [aux_sym__terminator_token1] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2879), + [anon_sym_GT] = ACTIONS(2879), + [anon_sym_PIPE] = ACTIONS(2881), + [anon_sym_SLASH] = ACTIONS(2883), + [anon_sym_COMMA] = ACTIONS(2885), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2889), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2889), + [anon_sym_when] = ACTIONS(2891), + [anon_sym_COLON_COLON] = ACTIONS(2894), + [anon_sym_EQ_GT] = ACTIONS(2896), + [anon_sym_EQ] = ACTIONS(2898), + [anon_sym_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_or] = ACTIONS(2900), + [anon_sym_AMP_AMP] = ACTIONS(2902), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2902), + [anon_sym_and] = ACTIONS(2902), + [anon_sym_EQ_EQ] = ACTIONS(2904), + [anon_sym_BANG_EQ] = ACTIONS(2904), + [anon_sym_EQ_TILDE] = ACTIONS(2904), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2904), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2904), + [anon_sym_LT_EQ] = ACTIONS(2879), + [anon_sym_GT_EQ] = ACTIONS(2879), + [anon_sym_PIPE_GT] = ACTIONS(2906), + [anon_sym_LT_LT_LT] = ACTIONS(2906), + [anon_sym_GT_GT_GT] = ACTIONS(2906), + [anon_sym_LT_LT_TILDE] = ACTIONS(2906), + [anon_sym_TILDE_GT_GT] = ACTIONS(2906), + [anon_sym_LT_TILDE] = ACTIONS(2906), + [anon_sym_TILDE_GT] = ACTIONS(2906), + [anon_sym_LT_TILDE_GT] = ACTIONS(2906), + [anon_sym_LT_PIPE_GT] = ACTIONS(2906), + [anon_sym_in] = ACTIONS(2908), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2910), + [anon_sym_SLASH_SLASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH] = ACTIONS(2914), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2914), + [anon_sym_DOT_DOT] = ACTIONS(2914), + [anon_sym_LT_GT] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_STAR_STAR] = ACTIONS(2916), + [anon_sym_DASH_GT] = ACTIONS(2918), + [anon_sym_DOT] = ACTIONS(2920), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(331), + [anon_sym_rescue] = ACTIONS(117), + [anon_sym_LBRACK2] = ACTIONS(2922), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2924), + }, + [1076] = { + [sym__terminator] = STATE(146), + [sym_after_block] = STATE(4306), + [sym_rescue_block] = STATE(4306), + [sym_catch_block] = STATE(4306), + [sym_else_block] = STATE(4306), + [aux_sym__terminator_repeat1] = STATE(1021), + [aux_sym_block_repeat2] = STATE(4220), + [aux_sym_do_block_repeat1] = STATE(4306), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(5161), + [aux_sym__terminator_token1] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2956), + [anon_sym_LT] = ACTIONS(2879), + [anon_sym_GT] = ACTIONS(2879), + [anon_sym_PIPE] = ACTIONS(2881), + [anon_sym_SLASH] = ACTIONS(2883), + [anon_sym_COMMA] = ACTIONS(2885), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2889), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2889), + [anon_sym_when] = ACTIONS(2891), + [anon_sym_COLON_COLON] = ACTIONS(2894), + [anon_sym_EQ_GT] = ACTIONS(2896), + [anon_sym_EQ] = ACTIONS(2898), + [anon_sym_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_or] = ACTIONS(2900), + [anon_sym_AMP_AMP] = ACTIONS(2902), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2902), + [anon_sym_and] = ACTIONS(2902), + [anon_sym_EQ_EQ] = ACTIONS(2904), + [anon_sym_BANG_EQ] = ACTIONS(2904), + [anon_sym_EQ_TILDE] = ACTIONS(2904), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2904), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2904), + [anon_sym_LT_EQ] = ACTIONS(2879), + [anon_sym_GT_EQ] = ACTIONS(2879), + [anon_sym_PIPE_GT] = ACTIONS(2906), + [anon_sym_LT_LT_LT] = ACTIONS(2906), + [anon_sym_GT_GT_GT] = ACTIONS(2906), + [anon_sym_LT_LT_TILDE] = ACTIONS(2906), + [anon_sym_TILDE_GT_GT] = ACTIONS(2906), + [anon_sym_LT_TILDE] = ACTIONS(2906), + [anon_sym_TILDE_GT] = ACTIONS(2906), + [anon_sym_LT_TILDE_GT] = ACTIONS(2906), + [anon_sym_LT_PIPE_GT] = ACTIONS(2906), + [anon_sym_in] = ACTIONS(2908), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2910), + [anon_sym_SLASH_SLASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH] = ACTIONS(2914), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2914), + [anon_sym_DOT_DOT] = ACTIONS(2914), + [anon_sym_LT_GT] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_STAR_STAR] = ACTIONS(2916), + [anon_sym_DASH_GT] = ACTIONS(2918), + [anon_sym_DOT] = ACTIONS(2920), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(992), + [anon_sym_rescue] = ACTIONS(117), + [anon_sym_LBRACK2] = ACTIONS(2922), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2924), + }, + [1077] = { + [sym__terminator] = STATE(175), + [sym_after_block] = STATE(4278), + [sym_rescue_block] = STATE(4278), + [sym_catch_block] = STATE(4278), + [sym_else_block] = STATE(4278), + [aux_sym__terminator_repeat1] = STATE(1021), + [aux_sym_block_repeat2] = STATE(4222), + [aux_sym_do_block_repeat1] = STATE(4278), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(5161), + [aux_sym__terminator_token1] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2958), + [anon_sym_LT] = ACTIONS(2879), + [anon_sym_GT] = ACTIONS(2879), + [anon_sym_PIPE] = ACTIONS(2881), + [anon_sym_SLASH] = ACTIONS(2883), + [anon_sym_COMMA] = ACTIONS(2885), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2889), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2889), + [anon_sym_when] = ACTIONS(2891), + [anon_sym_COLON_COLON] = ACTIONS(2894), + [anon_sym_EQ_GT] = ACTIONS(2896), + [anon_sym_EQ] = ACTIONS(2898), + [anon_sym_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_or] = ACTIONS(2900), + [anon_sym_AMP_AMP] = ACTIONS(2902), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2902), + [anon_sym_and] = ACTIONS(2902), + [anon_sym_EQ_EQ] = ACTIONS(2904), + [anon_sym_BANG_EQ] = ACTIONS(2904), + [anon_sym_EQ_TILDE] = ACTIONS(2904), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2904), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2904), + [anon_sym_LT_EQ] = ACTIONS(2879), + [anon_sym_GT_EQ] = ACTIONS(2879), + [anon_sym_PIPE_GT] = ACTIONS(2906), + [anon_sym_LT_LT_LT] = ACTIONS(2906), + [anon_sym_GT_GT_GT] = ACTIONS(2906), + [anon_sym_LT_LT_TILDE] = ACTIONS(2906), + [anon_sym_TILDE_GT_GT] = ACTIONS(2906), + [anon_sym_LT_TILDE] = ACTIONS(2906), + [anon_sym_TILDE_GT] = ACTIONS(2906), + [anon_sym_LT_TILDE_GT] = ACTIONS(2906), + [anon_sym_LT_PIPE_GT] = ACTIONS(2906), + [anon_sym_in] = ACTIONS(2908), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2910), + [anon_sym_SLASH_SLASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH] = ACTIONS(2914), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2914), + [anon_sym_DOT_DOT] = ACTIONS(2914), + [anon_sym_LT_GT] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_STAR_STAR] = ACTIONS(2916), + [anon_sym_DASH_GT] = ACTIONS(2918), + [anon_sym_DOT] = ACTIONS(2920), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(343), + [anon_sym_rescue] = ACTIONS(117), + [anon_sym_LBRACK2] = ACTIONS(2922), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2924), + }, + [1078] = { + [sym__terminator] = STATE(172), + [sym_after_block] = STATE(4281), + [sym_rescue_block] = STATE(4281), + [sym_catch_block] = STATE(4281), + [sym_else_block] = STATE(4281), + [aux_sym__terminator_repeat1] = STATE(1021), + [aux_sym_block_repeat2] = STATE(4257), + [aux_sym_do_block_repeat1] = STATE(4281), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(5161), + [aux_sym__terminator_token1] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2960), + [anon_sym_LT] = ACTIONS(2879), + [anon_sym_GT] = ACTIONS(2879), + [anon_sym_PIPE] = ACTIONS(2881), + [anon_sym_SLASH] = ACTIONS(2883), + [anon_sym_COMMA] = ACTIONS(2885), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2889), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2889), + [anon_sym_when] = ACTIONS(2891), + [anon_sym_COLON_COLON] = ACTIONS(2894), + [anon_sym_EQ_GT] = ACTIONS(2896), + [anon_sym_EQ] = ACTIONS(2898), + [anon_sym_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_or] = ACTIONS(2900), + [anon_sym_AMP_AMP] = ACTIONS(2902), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2902), + [anon_sym_and] = ACTIONS(2902), + [anon_sym_EQ_EQ] = ACTIONS(2904), + [anon_sym_BANG_EQ] = ACTIONS(2904), + [anon_sym_EQ_TILDE] = ACTIONS(2904), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2904), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2904), + [anon_sym_LT_EQ] = ACTIONS(2879), + [anon_sym_GT_EQ] = ACTIONS(2879), + [anon_sym_PIPE_GT] = ACTIONS(2906), + [anon_sym_LT_LT_LT] = ACTIONS(2906), + [anon_sym_GT_GT_GT] = ACTIONS(2906), + [anon_sym_LT_LT_TILDE] = ACTIONS(2906), + [anon_sym_TILDE_GT_GT] = ACTIONS(2906), + [anon_sym_LT_TILDE] = ACTIONS(2906), + [anon_sym_TILDE_GT] = ACTIONS(2906), + [anon_sym_LT_TILDE_GT] = ACTIONS(2906), + [anon_sym_LT_PIPE_GT] = ACTIONS(2906), + [anon_sym_in] = ACTIONS(2908), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2910), + [anon_sym_SLASH_SLASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH] = ACTIONS(2914), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2914), + [anon_sym_DOT_DOT] = ACTIONS(2914), + [anon_sym_LT_GT] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_STAR_STAR] = ACTIONS(2916), + [anon_sym_DASH_GT] = ACTIONS(2918), + [anon_sym_DOT] = ACTIONS(2920), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(311), + [anon_sym_rescue] = ACTIONS(117), + [anon_sym_LBRACK2] = ACTIONS(2922), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2924), + }, + [1079] = { + [sym__terminator] = STATE(162), + [sym_after_block] = STATE(4319), + [sym_rescue_block] = STATE(4319), + [sym_catch_block] = STATE(4319), + [sym_else_block] = STATE(4319), + [aux_sym__terminator_repeat1] = STATE(1021), + [aux_sym_block_repeat2] = STATE(4227), + [aux_sym_do_block_repeat1] = STATE(4319), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(5161), + [aux_sym__terminator_token1] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2962), + [anon_sym_LT] = ACTIONS(2879), + [anon_sym_GT] = ACTIONS(2879), + [anon_sym_PIPE] = ACTIONS(2881), + [anon_sym_SLASH] = ACTIONS(2883), + [anon_sym_COMMA] = ACTIONS(2885), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2889), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2889), + [anon_sym_when] = ACTIONS(2891), + [anon_sym_COLON_COLON] = ACTIONS(2894), + [anon_sym_EQ_GT] = ACTIONS(2896), + [anon_sym_EQ] = ACTIONS(2898), + [anon_sym_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_or] = ACTIONS(2900), + [anon_sym_AMP_AMP] = ACTIONS(2902), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2902), + [anon_sym_and] = ACTIONS(2902), + [anon_sym_EQ_EQ] = ACTIONS(2904), + [anon_sym_BANG_EQ] = ACTIONS(2904), + [anon_sym_EQ_TILDE] = ACTIONS(2904), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2904), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2904), + [anon_sym_LT_EQ] = ACTIONS(2879), + [anon_sym_GT_EQ] = ACTIONS(2879), + [anon_sym_PIPE_GT] = ACTIONS(2906), + [anon_sym_LT_LT_LT] = ACTIONS(2906), + [anon_sym_GT_GT_GT] = ACTIONS(2906), + [anon_sym_LT_LT_TILDE] = ACTIONS(2906), + [anon_sym_TILDE_GT_GT] = ACTIONS(2906), + [anon_sym_LT_TILDE] = ACTIONS(2906), + [anon_sym_TILDE_GT] = ACTIONS(2906), + [anon_sym_LT_TILDE_GT] = ACTIONS(2906), + [anon_sym_LT_PIPE_GT] = ACTIONS(2906), + [anon_sym_in] = ACTIONS(2908), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2910), + [anon_sym_SLASH_SLASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH] = ACTIONS(2914), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2914), + [anon_sym_DOT_DOT] = ACTIONS(2914), + [anon_sym_LT_GT] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_STAR_STAR] = ACTIONS(2916), + [anon_sym_DASH_GT] = ACTIONS(2918), + [anon_sym_DOT] = ACTIONS(2920), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(315), + [anon_sym_rescue] = ACTIONS(117), + [anon_sym_LBRACK2] = ACTIONS(2922), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2924), + }, + [1080] = { + [sym__terminator] = STATE(164), + [sym_after_block] = STATE(4271), + [sym_rescue_block] = STATE(4271), + [sym_catch_block] = STATE(4271), + [sym_else_block] = STATE(4271), + [aux_sym__terminator_repeat1] = STATE(1021), + [aux_sym_block_repeat2] = STATE(4249), + [aux_sym_do_block_repeat1] = STATE(4271), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(5161), + [aux_sym__terminator_token1] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2964), + [anon_sym_LT] = ACTIONS(2879), + [anon_sym_GT] = ACTIONS(2879), + [anon_sym_PIPE] = ACTIONS(2881), + [anon_sym_SLASH] = ACTIONS(2883), + [anon_sym_COMMA] = ACTIONS(2885), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2889), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2889), + [anon_sym_when] = ACTIONS(2891), + [anon_sym_COLON_COLON] = ACTIONS(2894), + [anon_sym_EQ_GT] = ACTIONS(2896), + [anon_sym_EQ] = ACTIONS(2898), + [anon_sym_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_or] = ACTIONS(2900), + [anon_sym_AMP_AMP] = ACTIONS(2902), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2902), + [anon_sym_and] = ACTIONS(2902), + [anon_sym_EQ_EQ] = ACTIONS(2904), + [anon_sym_BANG_EQ] = ACTIONS(2904), + [anon_sym_EQ_TILDE] = ACTIONS(2904), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2904), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2904), + [anon_sym_LT_EQ] = ACTIONS(2879), + [anon_sym_GT_EQ] = ACTIONS(2879), + [anon_sym_PIPE_GT] = ACTIONS(2906), + [anon_sym_LT_LT_LT] = ACTIONS(2906), + [anon_sym_GT_GT_GT] = ACTIONS(2906), + [anon_sym_LT_LT_TILDE] = ACTIONS(2906), + [anon_sym_TILDE_GT_GT] = ACTIONS(2906), + [anon_sym_LT_TILDE] = ACTIONS(2906), + [anon_sym_TILDE_GT] = ACTIONS(2906), + [anon_sym_LT_TILDE_GT] = ACTIONS(2906), + [anon_sym_LT_PIPE_GT] = ACTIONS(2906), + [anon_sym_in] = ACTIONS(2908), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2910), + [anon_sym_SLASH_SLASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH] = ACTIONS(2914), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2914), + [anon_sym_DOT_DOT] = ACTIONS(2914), + [anon_sym_LT_GT] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_STAR_STAR] = ACTIONS(2916), + [anon_sym_DASH_GT] = ACTIONS(2918), + [anon_sym_DOT] = ACTIONS(2920), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(319), + [anon_sym_rescue] = ACTIONS(117), + [anon_sym_LBRACK2] = ACTIONS(2922), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2924), + }, + [1081] = { + [sym__terminator] = STATE(173), + [sym_after_block] = STATE(4324), + [sym_rescue_block] = STATE(4324), + [sym_catch_block] = STATE(4324), + [sym_else_block] = STATE(4324), + [aux_sym__terminator_repeat1] = STATE(1021), + [aux_sym_block_repeat2] = STATE(4221), + [aux_sym_do_block_repeat1] = STATE(4324), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(5161), + [aux_sym__terminator_token1] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2879), + [anon_sym_GT] = ACTIONS(2879), + [anon_sym_PIPE] = ACTIONS(2881), + [anon_sym_SLASH] = ACTIONS(2883), + [anon_sym_COMMA] = ACTIONS(2885), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2889), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2889), + [anon_sym_when] = ACTIONS(2891), + [anon_sym_COLON_COLON] = ACTIONS(2894), + [anon_sym_EQ_GT] = ACTIONS(2896), + [anon_sym_EQ] = ACTIONS(2898), + [anon_sym_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_or] = ACTIONS(2900), + [anon_sym_AMP_AMP] = ACTIONS(2902), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2902), + [anon_sym_and] = ACTIONS(2902), + [anon_sym_EQ_EQ] = ACTIONS(2904), + [anon_sym_BANG_EQ] = ACTIONS(2904), + [anon_sym_EQ_TILDE] = ACTIONS(2904), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2904), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2904), + [anon_sym_LT_EQ] = ACTIONS(2879), + [anon_sym_GT_EQ] = ACTIONS(2879), + [anon_sym_PIPE_GT] = ACTIONS(2906), + [anon_sym_LT_LT_LT] = ACTIONS(2906), + [anon_sym_GT_GT_GT] = ACTIONS(2906), + [anon_sym_LT_LT_TILDE] = ACTIONS(2906), + [anon_sym_TILDE_GT_GT] = ACTIONS(2906), + [anon_sym_LT_TILDE] = ACTIONS(2906), + [anon_sym_TILDE_GT] = ACTIONS(2906), + [anon_sym_LT_TILDE_GT] = ACTIONS(2906), + [anon_sym_LT_PIPE_GT] = ACTIONS(2906), + [anon_sym_in] = ACTIONS(2908), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2910), + [anon_sym_SLASH_SLASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH] = ACTIONS(2914), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2914), + [anon_sym_DOT_DOT] = ACTIONS(2914), + [anon_sym_LT_GT] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_STAR_STAR] = ACTIONS(2916), + [anon_sym_DASH_GT] = ACTIONS(2918), + [anon_sym_DOT] = ACTIONS(2920), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(1052), + [anon_sym_rescue] = ACTIONS(117), + [anon_sym_LBRACK2] = ACTIONS(2922), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2924), + }, + [1082] = { + [sym__terminator] = STATE(150), + [sym_after_block] = STATE(4317), + [sym_rescue_block] = STATE(4317), + [sym_catch_block] = STATE(4317), + [sym_else_block] = STATE(4317), + [aux_sym__terminator_repeat1] = STATE(1021), + [aux_sym_block_repeat2] = STATE(4267), + [aux_sym_do_block_repeat1] = STATE(4317), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(5161), + [aux_sym__terminator_token1] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2968), + [anon_sym_LT] = ACTIONS(2879), + [anon_sym_GT] = ACTIONS(2879), + [anon_sym_PIPE] = ACTIONS(2881), + [anon_sym_SLASH] = ACTIONS(2883), + [anon_sym_COMMA] = ACTIONS(2885), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2889), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2889), + [anon_sym_when] = ACTIONS(2891), + [anon_sym_COLON_COLON] = ACTIONS(2894), + [anon_sym_EQ_GT] = ACTIONS(2896), + [anon_sym_EQ] = ACTIONS(2898), + [anon_sym_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_or] = ACTIONS(2900), + [anon_sym_AMP_AMP] = ACTIONS(2902), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2902), + [anon_sym_and] = ACTIONS(2902), + [anon_sym_EQ_EQ] = ACTIONS(2904), + [anon_sym_BANG_EQ] = ACTIONS(2904), + [anon_sym_EQ_TILDE] = ACTIONS(2904), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2904), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2904), + [anon_sym_LT_EQ] = ACTIONS(2879), + [anon_sym_GT_EQ] = ACTIONS(2879), + [anon_sym_PIPE_GT] = ACTIONS(2906), + [anon_sym_LT_LT_LT] = ACTIONS(2906), + [anon_sym_GT_GT_GT] = ACTIONS(2906), + [anon_sym_LT_LT_TILDE] = ACTIONS(2906), + [anon_sym_TILDE_GT_GT] = ACTIONS(2906), + [anon_sym_LT_TILDE] = ACTIONS(2906), + [anon_sym_TILDE_GT] = ACTIONS(2906), + [anon_sym_LT_TILDE_GT] = ACTIONS(2906), + [anon_sym_LT_PIPE_GT] = ACTIONS(2906), + [anon_sym_in] = ACTIONS(2908), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2910), + [anon_sym_SLASH_SLASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH] = ACTIONS(2914), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2914), + [anon_sym_DOT_DOT] = ACTIONS(2914), + [anon_sym_LT_GT] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_STAR_STAR] = ACTIONS(2916), + [anon_sym_DASH_GT] = ACTIONS(2918), + [anon_sym_DOT] = ACTIONS(2920), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(1006), + [anon_sym_rescue] = ACTIONS(117), + [anon_sym_LBRACK2] = ACTIONS(2922), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2924), + }, + [1083] = { + [sym__terminator] = STATE(165), + [sym_after_block] = STATE(4325), + [sym_rescue_block] = STATE(4325), + [sym_catch_block] = STATE(4325), + [sym_else_block] = STATE(4325), + [aux_sym__terminator_repeat1] = STATE(1021), + [aux_sym_block_repeat2] = STATE(4226), + [aux_sym_do_block_repeat1] = STATE(4325), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(5161), [aux_sym__terminator_token1] = ACTIONS(2875), [anon_sym_SEMI] = ACTIONS(2970), [anon_sym_LT] = ACTIONS(2879), @@ -156685,7 +157410,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_after] = ACTIONS(107), [anon_sym_catch] = ACTIONS(109), [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(976), + [anon_sym_end] = ACTIONS(1010), [anon_sym_rescue] = ACTIONS(117), [anon_sym_LBRACK2] = ACTIONS(2922), [sym_comment] = ACTIONS(5), @@ -156693,75 +157418,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline_before_comment] = ACTIONS(3), [sym__not_in] = ACTIONS(2924), }, - [1083] = { - [sym__call_arguments_with_parentheses] = STATE(1123), - [aux_sym__terminator_token1] = ACTIONS(2972), - [anon_sym_SEMI] = ACTIONS(2974), - [anon_sym_LPAREN] = ACTIONS(2976), - [anon_sym_RPAREN] = ACTIONS(2974), - [anon_sym_LT] = ACTIONS(2974), - [anon_sym_GT] = ACTIONS(2974), - [anon_sym_PIPE] = ACTIONS(2974), - [anon_sym_SLASH] = ACTIONS(2974), - [anon_sym_COMMA] = ACTIONS(2974), - [anon_sym_PLUS] = ACTIONS(2974), - [anon_sym_DASH] = ACTIONS(2974), - [anon_sym_LT_DASH] = ACTIONS(2974), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2974), - [anon_sym_when] = ACTIONS(2974), - [anon_sym_COLON_COLON] = ACTIONS(2974), - [anon_sym_EQ_GT] = ACTIONS(2974), - [anon_sym_EQ] = ACTIONS(2974), - [anon_sym_PIPE_PIPE] = ACTIONS(2974), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2974), - [anon_sym_or] = ACTIONS(2974), - [anon_sym_AMP_AMP] = ACTIONS(2974), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2974), - [anon_sym_and] = ACTIONS(2974), - [anon_sym_EQ_EQ] = ACTIONS(2974), - [anon_sym_BANG_EQ] = ACTIONS(2974), - [anon_sym_EQ_TILDE] = ACTIONS(2974), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2974), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2974), - [anon_sym_LT_EQ] = ACTIONS(2974), - [anon_sym_GT_EQ] = ACTIONS(2974), - [anon_sym_PIPE_GT] = ACTIONS(2974), - [anon_sym_LT_LT_LT] = ACTIONS(2974), - [anon_sym_GT_GT_GT] = ACTIONS(2974), - [anon_sym_LT_LT_TILDE] = ACTIONS(2974), - [anon_sym_TILDE_GT_GT] = ACTIONS(2974), - [anon_sym_LT_TILDE] = ACTIONS(2974), - [anon_sym_TILDE_GT] = ACTIONS(2974), - [anon_sym_LT_TILDE_GT] = ACTIONS(2974), - [anon_sym_LT_PIPE_GT] = ACTIONS(2974), - [anon_sym_in] = ACTIONS(2974), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2974), - [anon_sym_SLASH_SLASH] = ACTIONS(2974), - [anon_sym_PLUS_PLUS] = ACTIONS(2974), - [anon_sym_DASH_DASH] = ACTIONS(2974), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2974), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2974), - [anon_sym_DOT_DOT] = ACTIONS(2974), - [anon_sym_LT_GT] = ACTIONS(2974), - [anon_sym_STAR] = ACTIONS(2974), - [anon_sym_STAR_STAR] = ACTIONS(2974), - [anon_sym_DASH_GT] = ACTIONS(2974), - [anon_sym_DOT] = ACTIONS(2974), - [anon_sym_after] = ACTIONS(2974), - [anon_sym_catch] = ACTIONS(2974), - [anon_sym_do] = ACTIONS(2974), - [anon_sym_else] = ACTIONS(2974), - [anon_sym_end] = ACTIONS(2974), - [anon_sym_rescue] = ACTIONS(2974), - [anon_sym_LBRACK2] = ACTIONS(2972), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2972), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2972), - }, [1084] = { - [sym__call_arguments_with_parentheses] = STATE(1119), + [sym__call_arguments_with_parentheses] = STATE(1129), [aux_sym__terminator_token1] = ACTIONS(2972), [anon_sym_SEMI] = ACTIONS(2974), [anon_sym_LPAREN] = ACTIONS(2976), @@ -156828,7 +157486,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2972), }, [1085] = { - [sym__call_arguments_with_parentheses] = STATE(1118), + [sym_do_block] = STATE(1368), + [aux_sym__terminator_token1] = ACTIONS(2978), + [anon_sym_SEMI] = ACTIONS(2980), + [anon_sym_LPAREN] = ACTIONS(2980), + [anon_sym_RPAREN] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2980), + [anon_sym_GT] = ACTIONS(2980), + [anon_sym_PIPE] = ACTIONS(2980), + [anon_sym_SLASH] = ACTIONS(2980), + [anon_sym_COMMA] = ACTIONS(2980), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_LT_DASH] = ACTIONS(2980), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2980), + [anon_sym_when] = ACTIONS(2980), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_EQ_GT] = ACTIONS(2980), + [anon_sym_EQ] = ACTIONS(2980), + [anon_sym_PIPE_PIPE] = ACTIONS(2980), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2980), + [anon_sym_or] = ACTIONS(2980), + [anon_sym_AMP_AMP] = ACTIONS(2980), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2980), + [anon_sym_and] = ACTIONS(2980), + [anon_sym_EQ_EQ] = ACTIONS(2980), + [anon_sym_BANG_EQ] = ACTIONS(2980), + [anon_sym_EQ_TILDE] = ACTIONS(2980), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2980), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2980), + [anon_sym_LT_EQ] = ACTIONS(2980), + [anon_sym_GT_EQ] = ACTIONS(2980), + [anon_sym_PIPE_GT] = ACTIONS(2980), + [anon_sym_LT_LT_LT] = ACTIONS(2980), + [anon_sym_GT_GT_GT] = ACTIONS(2980), + [anon_sym_LT_LT_TILDE] = ACTIONS(2980), + [anon_sym_TILDE_GT_GT] = ACTIONS(2980), + [anon_sym_LT_TILDE] = ACTIONS(2980), + [anon_sym_TILDE_GT] = ACTIONS(2980), + [anon_sym_LT_TILDE_GT] = ACTIONS(2980), + [anon_sym_LT_PIPE_GT] = ACTIONS(2980), + [anon_sym_in] = ACTIONS(2980), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2980), + [anon_sym_SLASH_SLASH] = ACTIONS(2980), + [anon_sym_PLUS_PLUS] = ACTIONS(2980), + [anon_sym_DASH_DASH] = ACTIONS(2980), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2980), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2980), + [anon_sym_DOT_DOT] = ACTIONS(2980), + [anon_sym_LT_GT] = ACTIONS(2980), + [anon_sym_STAR] = ACTIONS(2980), + [anon_sym_STAR_STAR] = ACTIONS(2980), + [anon_sym_DASH_GT] = ACTIONS(2980), + [anon_sym_DOT] = ACTIONS(2980), + [anon_sym_after] = ACTIONS(2980), + [anon_sym_catch] = ACTIONS(2980), + [anon_sym_do] = ACTIONS(233), + [anon_sym_else] = ACTIONS(2980), + [anon_sym_end] = ACTIONS(2980), + [anon_sym_rescue] = ACTIONS(2980), + [anon_sym_LBRACK2] = ACTIONS(2978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2982), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2978), + }, + [1086] = { + [sym__call_arguments_with_parentheses] = STATE(1136), [aux_sym__terminator_token1] = ACTIONS(2972), [anon_sym_SEMI] = ACTIONS(2974), [anon_sym_LPAREN] = ACTIONS(2976), @@ -156894,8 +157619,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline_before_comment] = ACTIONS(3), [sym__not_in] = ACTIONS(2972), }, - [1086] = { - [sym_do_block] = STATE(1098), + [1087] = { + [sym_do_block] = STATE(1380), + [aux_sym__terminator_token1] = ACTIONS(2984), + [anon_sym_SEMI] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(2986), + [anon_sym_RPAREN] = ACTIONS(2986), + [anon_sym_LT] = ACTIONS(2986), + [anon_sym_GT] = ACTIONS(2986), + [anon_sym_PIPE] = ACTIONS(2986), + [anon_sym_SLASH] = ACTIONS(2986), + [anon_sym_COMMA] = ACTIONS(2986), + [anon_sym_PLUS] = ACTIONS(2986), + [anon_sym_DASH] = ACTIONS(2986), + [anon_sym_LT_DASH] = ACTIONS(2986), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2986), + [anon_sym_when] = ACTIONS(2986), + [anon_sym_COLON_COLON] = ACTIONS(2986), + [anon_sym_EQ_GT] = ACTIONS(2986), + [anon_sym_EQ] = ACTIONS(2986), + [anon_sym_PIPE_PIPE] = ACTIONS(2986), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2986), + [anon_sym_or] = ACTIONS(2986), + [anon_sym_AMP_AMP] = ACTIONS(2986), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2986), + [anon_sym_and] = ACTIONS(2986), + [anon_sym_EQ_EQ] = ACTIONS(2986), + [anon_sym_BANG_EQ] = ACTIONS(2986), + [anon_sym_EQ_TILDE] = ACTIONS(2986), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2986), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2986), + [anon_sym_LT_EQ] = ACTIONS(2986), + [anon_sym_GT_EQ] = ACTIONS(2986), + [anon_sym_PIPE_GT] = ACTIONS(2986), + [anon_sym_LT_LT_LT] = ACTIONS(2986), + [anon_sym_GT_GT_GT] = ACTIONS(2986), + [anon_sym_LT_LT_TILDE] = ACTIONS(2986), + [anon_sym_TILDE_GT_GT] = ACTIONS(2986), + [anon_sym_LT_TILDE] = ACTIONS(2986), + [anon_sym_TILDE_GT] = ACTIONS(2986), + [anon_sym_LT_TILDE_GT] = ACTIONS(2986), + [anon_sym_LT_PIPE_GT] = ACTIONS(2986), + [anon_sym_in] = ACTIONS(2986), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2986), + [anon_sym_SLASH_SLASH] = ACTIONS(2986), + [anon_sym_PLUS_PLUS] = ACTIONS(2986), + [anon_sym_DASH_DASH] = ACTIONS(2986), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2986), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2986), + [anon_sym_DOT_DOT] = ACTIONS(2986), + [anon_sym_LT_GT] = ACTIONS(2986), + [anon_sym_STAR] = ACTIONS(2986), + [anon_sym_STAR_STAR] = ACTIONS(2986), + [anon_sym_DASH_GT] = ACTIONS(2986), + [anon_sym_DOT] = ACTIONS(2986), + [anon_sym_after] = ACTIONS(2986), + [anon_sym_catch] = ACTIONS(2986), + [anon_sym_do] = ACTIONS(233), + [anon_sym_else] = ACTIONS(2986), + [anon_sym_end] = ACTIONS(2986), + [anon_sym_rescue] = ACTIONS(2986), + [anon_sym_LBRACK2] = ACTIONS(2984), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2988), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2984), + }, + [1088] = { + [sym_do_block] = STATE(1094), [aux_sym__terminator_token1] = ACTIONS(2978), [anon_sym_SEMI] = ACTIONS(2980), [anon_sym_LPAREN] = ACTIONS(2980), @@ -156961,422 +157753,227 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline_before_comment] = ACTIONS(3), [sym__not_in] = ACTIONS(2978), }, - [1087] = { - [sym_do_block] = STATE(1102), - [aux_sym__terminator_token1] = ACTIONS(2982), - [anon_sym_SEMI] = ACTIONS(2984), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_RPAREN] = ACTIONS(2984), - [anon_sym_LT] = ACTIONS(2984), - [anon_sym_GT] = ACTIONS(2984), - [anon_sym_PIPE] = ACTIONS(2984), - [anon_sym_SLASH] = ACTIONS(2984), - [anon_sym_COMMA] = ACTIONS(2984), - [anon_sym_PLUS] = ACTIONS(2984), - [anon_sym_DASH] = ACTIONS(2984), - [anon_sym_LT_DASH] = ACTIONS(2984), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2984), - [anon_sym_when] = ACTIONS(2984), - [anon_sym_COLON_COLON] = ACTIONS(2984), - [anon_sym_EQ_GT] = ACTIONS(2984), - [anon_sym_EQ] = ACTIONS(2984), - [anon_sym_PIPE_PIPE] = ACTIONS(2984), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2984), - [anon_sym_or] = ACTIONS(2984), - [anon_sym_AMP_AMP] = ACTIONS(2984), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2984), - [anon_sym_and] = ACTIONS(2984), - [anon_sym_EQ_EQ] = ACTIONS(2984), - [anon_sym_BANG_EQ] = ACTIONS(2984), - [anon_sym_EQ_TILDE] = ACTIONS(2984), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2984), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2984), - [anon_sym_LT_EQ] = ACTIONS(2984), - [anon_sym_GT_EQ] = ACTIONS(2984), - [anon_sym_PIPE_GT] = ACTIONS(2984), - [anon_sym_LT_LT_LT] = ACTIONS(2984), - [anon_sym_GT_GT_GT] = ACTIONS(2984), - [anon_sym_LT_LT_TILDE] = ACTIONS(2984), - [anon_sym_TILDE_GT_GT] = ACTIONS(2984), - [anon_sym_LT_TILDE] = ACTIONS(2984), - [anon_sym_TILDE_GT] = ACTIONS(2984), - [anon_sym_LT_TILDE_GT] = ACTIONS(2984), - [anon_sym_LT_PIPE_GT] = ACTIONS(2984), - [anon_sym_in] = ACTIONS(2984), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2984), - [anon_sym_SLASH_SLASH] = ACTIONS(2984), - [anon_sym_PLUS_PLUS] = ACTIONS(2984), - [anon_sym_DASH_DASH] = ACTIONS(2984), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2984), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2984), - [anon_sym_DOT_DOT] = ACTIONS(2984), - [anon_sym_LT_GT] = ACTIONS(2984), - [anon_sym_STAR] = ACTIONS(2984), - [anon_sym_STAR_STAR] = ACTIONS(2984), - [anon_sym_DASH_GT] = ACTIONS(2984), - [anon_sym_DOT] = ACTIONS(2984), - [anon_sym_after] = ACTIONS(2984), - [anon_sym_catch] = ACTIONS(2984), - [anon_sym_do] = ACTIONS(2984), - [anon_sym_else] = ACTIONS(2984), - [anon_sym_end] = ACTIONS(2984), - [anon_sym_rescue] = ACTIONS(2984), - [anon_sym_LBRACK2] = ACTIONS(2982), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2982), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2982), - }, - [1088] = { - [sym_do_block] = STATE(1374), - [aux_sym__terminator_token1] = ACTIONS(2978), - [anon_sym_SEMI] = ACTIONS(2980), - [anon_sym_LPAREN] = ACTIONS(2980), - [anon_sym_RPAREN] = ACTIONS(2980), - [anon_sym_LT] = ACTIONS(2980), - [anon_sym_GT] = ACTIONS(2980), - [anon_sym_PIPE] = ACTIONS(2980), - [anon_sym_SLASH] = ACTIONS(2980), - [anon_sym_COMMA] = ACTIONS(2980), - [anon_sym_PLUS] = ACTIONS(2980), - [anon_sym_DASH] = ACTIONS(2980), - [anon_sym_LT_DASH] = ACTIONS(2980), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2980), - [anon_sym_when] = ACTIONS(2980), - [anon_sym_COLON_COLON] = ACTIONS(2980), - [anon_sym_EQ_GT] = ACTIONS(2980), - [anon_sym_EQ] = ACTIONS(2980), - [anon_sym_PIPE_PIPE] = ACTIONS(2980), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2980), - [anon_sym_or] = ACTIONS(2980), - [anon_sym_AMP_AMP] = ACTIONS(2980), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2980), - [anon_sym_and] = ACTIONS(2980), - [anon_sym_EQ_EQ] = ACTIONS(2980), - [anon_sym_BANG_EQ] = ACTIONS(2980), - [anon_sym_EQ_TILDE] = ACTIONS(2980), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2980), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2980), - [anon_sym_LT_EQ] = ACTIONS(2980), - [anon_sym_GT_EQ] = ACTIONS(2980), - [anon_sym_PIPE_GT] = ACTIONS(2980), - [anon_sym_LT_LT_LT] = ACTIONS(2980), - [anon_sym_GT_GT_GT] = ACTIONS(2980), - [anon_sym_LT_LT_TILDE] = ACTIONS(2980), - [anon_sym_TILDE_GT_GT] = ACTIONS(2980), - [anon_sym_LT_TILDE] = ACTIONS(2980), - [anon_sym_TILDE_GT] = ACTIONS(2980), - [anon_sym_LT_TILDE_GT] = ACTIONS(2980), - [anon_sym_LT_PIPE_GT] = ACTIONS(2980), - [anon_sym_in] = ACTIONS(2980), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2980), - [anon_sym_SLASH_SLASH] = ACTIONS(2980), - [anon_sym_PLUS_PLUS] = ACTIONS(2980), - [anon_sym_DASH_DASH] = ACTIONS(2980), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2980), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2980), - [anon_sym_DOT_DOT] = ACTIONS(2980), - [anon_sym_LT_GT] = ACTIONS(2980), - [anon_sym_STAR] = ACTIONS(2980), - [anon_sym_STAR_STAR] = ACTIONS(2980), - [anon_sym_DASH_GT] = ACTIONS(2980), - [anon_sym_DOT] = ACTIONS(2980), - [anon_sym_after] = ACTIONS(2980), - [anon_sym_catch] = ACTIONS(2980), - [anon_sym_do] = ACTIONS(298), - [anon_sym_else] = ACTIONS(2980), - [anon_sym_end] = ACTIONS(2980), - [anon_sym_rescue] = ACTIONS(2980), - [anon_sym_LBRACK2] = ACTIONS(2978), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2986), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2978), - }, [1089] = { - [sym_do_block] = STATE(1384), - [aux_sym__terminator_token1] = ACTIONS(2982), - [anon_sym_SEMI] = ACTIONS(2984), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_RPAREN] = ACTIONS(2984), - [anon_sym_LT] = ACTIONS(2984), - [anon_sym_GT] = ACTIONS(2984), - [anon_sym_PIPE] = ACTIONS(2984), - [anon_sym_SLASH] = ACTIONS(2984), - [anon_sym_COMMA] = ACTIONS(2984), - [anon_sym_PLUS] = ACTIONS(2984), - [anon_sym_DASH] = ACTIONS(2984), - [anon_sym_LT_DASH] = ACTIONS(2984), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2984), - [anon_sym_when] = ACTIONS(2984), - [anon_sym_COLON_COLON] = ACTIONS(2984), - [anon_sym_EQ_GT] = ACTIONS(2984), - [anon_sym_EQ] = ACTIONS(2984), - [anon_sym_PIPE_PIPE] = ACTIONS(2984), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2984), - [anon_sym_or] = ACTIONS(2984), - [anon_sym_AMP_AMP] = ACTIONS(2984), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2984), - [anon_sym_and] = ACTIONS(2984), - [anon_sym_EQ_EQ] = ACTIONS(2984), - [anon_sym_BANG_EQ] = ACTIONS(2984), - [anon_sym_EQ_TILDE] = ACTIONS(2984), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2984), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2984), - [anon_sym_LT_EQ] = ACTIONS(2984), - [anon_sym_GT_EQ] = ACTIONS(2984), - [anon_sym_PIPE_GT] = ACTIONS(2984), - [anon_sym_LT_LT_LT] = ACTIONS(2984), - [anon_sym_GT_GT_GT] = ACTIONS(2984), - [anon_sym_LT_LT_TILDE] = ACTIONS(2984), - [anon_sym_TILDE_GT_GT] = ACTIONS(2984), - [anon_sym_LT_TILDE] = ACTIONS(2984), - [anon_sym_TILDE_GT] = ACTIONS(2984), - [anon_sym_LT_TILDE_GT] = ACTIONS(2984), - [anon_sym_LT_PIPE_GT] = ACTIONS(2984), - [anon_sym_in] = ACTIONS(2984), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2984), - [anon_sym_SLASH_SLASH] = ACTIONS(2984), - [anon_sym_PLUS_PLUS] = ACTIONS(2984), - [anon_sym_DASH_DASH] = ACTIONS(2984), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2984), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2984), - [anon_sym_DOT_DOT] = ACTIONS(2984), - [anon_sym_LT_GT] = ACTIONS(2984), - [anon_sym_STAR] = ACTIONS(2984), - [anon_sym_STAR_STAR] = ACTIONS(2984), - [anon_sym_DASH_GT] = ACTIONS(2984), - [anon_sym_DOT] = ACTIONS(2984), - [anon_sym_after] = ACTIONS(2984), - [anon_sym_catch] = ACTIONS(2984), - [anon_sym_do] = ACTIONS(298), - [anon_sym_else] = ACTIONS(2984), - [anon_sym_end] = ACTIONS(2984), - [anon_sym_rescue] = ACTIONS(2984), - [anon_sym_LBRACK2] = ACTIONS(2982), + [sym_do_block] = STATE(1092), + [aux_sym__terminator_token1] = ACTIONS(2984), + [anon_sym_SEMI] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(2986), + [anon_sym_RPAREN] = ACTIONS(2986), + [anon_sym_LT] = ACTIONS(2986), + [anon_sym_GT] = ACTIONS(2986), + [anon_sym_PIPE] = ACTIONS(2986), + [anon_sym_SLASH] = ACTIONS(2986), + [anon_sym_COMMA] = ACTIONS(2986), + [anon_sym_PLUS] = ACTIONS(2986), + [anon_sym_DASH] = ACTIONS(2986), + [anon_sym_LT_DASH] = ACTIONS(2986), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2986), + [anon_sym_when] = ACTIONS(2986), + [anon_sym_COLON_COLON] = ACTIONS(2986), + [anon_sym_EQ_GT] = ACTIONS(2986), + [anon_sym_EQ] = ACTIONS(2986), + [anon_sym_PIPE_PIPE] = ACTIONS(2986), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2986), + [anon_sym_or] = ACTIONS(2986), + [anon_sym_AMP_AMP] = ACTIONS(2986), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2986), + [anon_sym_and] = ACTIONS(2986), + [anon_sym_EQ_EQ] = ACTIONS(2986), + [anon_sym_BANG_EQ] = ACTIONS(2986), + [anon_sym_EQ_TILDE] = ACTIONS(2986), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2986), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2986), + [anon_sym_LT_EQ] = ACTIONS(2986), + [anon_sym_GT_EQ] = ACTIONS(2986), + [anon_sym_PIPE_GT] = ACTIONS(2986), + [anon_sym_LT_LT_LT] = ACTIONS(2986), + [anon_sym_GT_GT_GT] = ACTIONS(2986), + [anon_sym_LT_LT_TILDE] = ACTIONS(2986), + [anon_sym_TILDE_GT_GT] = ACTIONS(2986), + [anon_sym_LT_TILDE] = ACTIONS(2986), + [anon_sym_TILDE_GT] = ACTIONS(2986), + [anon_sym_LT_TILDE_GT] = ACTIONS(2986), + [anon_sym_LT_PIPE_GT] = ACTIONS(2986), + [anon_sym_in] = ACTIONS(2986), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2986), + [anon_sym_SLASH_SLASH] = ACTIONS(2986), + [anon_sym_PLUS_PLUS] = ACTIONS(2986), + [anon_sym_DASH_DASH] = ACTIONS(2986), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2986), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2986), + [anon_sym_DOT_DOT] = ACTIONS(2986), + [anon_sym_LT_GT] = ACTIONS(2986), + [anon_sym_STAR] = ACTIONS(2986), + [anon_sym_STAR_STAR] = ACTIONS(2986), + [anon_sym_DASH_GT] = ACTIONS(2986), + [anon_sym_DOT] = ACTIONS(2986), + [anon_sym_after] = ACTIONS(2986), + [anon_sym_catch] = ACTIONS(2986), + [anon_sym_do] = ACTIONS(2986), + [anon_sym_else] = ACTIONS(2986), + [anon_sym_end] = ACTIONS(2986), + [anon_sym_rescue] = ACTIONS(2986), + [anon_sym_LBRACK2] = ACTIONS(2984), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2988), + [sym__newline_before_do] = ACTIONS(2984), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2982), + [sym__not_in] = ACTIONS(2984), + }, + [1090] = { + [sym__call_arguments_with_parentheses] = STATE(1128), + [aux_sym__terminator_token1] = ACTIONS(2972), + [anon_sym_SEMI] = ACTIONS(2974), + [anon_sym_LPAREN] = ACTIONS(2976), + [anon_sym_RPAREN] = ACTIONS(2974), + [anon_sym_LT] = ACTIONS(2974), + [anon_sym_GT] = ACTIONS(2974), + [anon_sym_PIPE] = ACTIONS(2974), + [anon_sym_SLASH] = ACTIONS(2974), + [anon_sym_COMMA] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_LT_DASH] = ACTIONS(2974), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2974), + [anon_sym_when] = ACTIONS(2974), + [anon_sym_COLON_COLON] = ACTIONS(2974), + [anon_sym_EQ_GT] = ACTIONS(2974), + [anon_sym_EQ] = ACTIONS(2974), + [anon_sym_PIPE_PIPE] = ACTIONS(2974), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2974), + [anon_sym_or] = ACTIONS(2974), + [anon_sym_AMP_AMP] = ACTIONS(2974), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2974), + [anon_sym_and] = ACTIONS(2974), + [anon_sym_EQ_EQ] = ACTIONS(2974), + [anon_sym_BANG_EQ] = ACTIONS(2974), + [anon_sym_EQ_TILDE] = ACTIONS(2974), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2974), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2974), + [anon_sym_LT_EQ] = ACTIONS(2974), + [anon_sym_GT_EQ] = ACTIONS(2974), + [anon_sym_PIPE_GT] = ACTIONS(2974), + [anon_sym_LT_LT_LT] = ACTIONS(2974), + [anon_sym_GT_GT_GT] = ACTIONS(2974), + [anon_sym_LT_LT_TILDE] = ACTIONS(2974), + [anon_sym_TILDE_GT_GT] = ACTIONS(2974), + [anon_sym_LT_TILDE] = ACTIONS(2974), + [anon_sym_TILDE_GT] = ACTIONS(2974), + [anon_sym_LT_TILDE_GT] = ACTIONS(2974), + [anon_sym_LT_PIPE_GT] = ACTIONS(2974), + [anon_sym_in] = ACTIONS(2974), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2974), + [anon_sym_SLASH_SLASH] = ACTIONS(2974), + [anon_sym_PLUS_PLUS] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(2974), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2974), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2974), + [anon_sym_DOT_DOT] = ACTIONS(2974), + [anon_sym_LT_GT] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(2974), + [anon_sym_STAR_STAR] = ACTIONS(2974), + [anon_sym_DASH_GT] = ACTIONS(2974), + [anon_sym_DOT] = ACTIONS(2974), + [anon_sym_after] = ACTIONS(2974), + [anon_sym_catch] = ACTIONS(2974), + [anon_sym_do] = ACTIONS(2974), + [anon_sym_else] = ACTIONS(2974), + [anon_sym_end] = ACTIONS(2974), + [anon_sym_rescue] = ACTIONS(2974), + [anon_sym_LBRACK2] = ACTIONS(2972), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2972), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2972), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 32, + [0] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(2875), 1, - aux_sym__terminator_token1, - ACTIONS(2881), 1, - anon_sym_PIPE, - ACTIONS(2885), 1, - anon_sym_COMMA, - ACTIONS(2891), 1, - anon_sym_when, - ACTIONS(2894), 1, - anon_sym_COLON_COLON, - ACTIONS(2896), 1, - anon_sym_EQ_GT, - ACTIONS(2898), 1, - anon_sym_EQ, - ACTIONS(2908), 1, - anon_sym_in, - ACTIONS(2910), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2912), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2916), 1, - anon_sym_STAR_STAR, - ACTIONS(2918), 1, - anon_sym_DASH_GT, - ACTIONS(2920), 1, - anon_sym_DOT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(2924), 1, - sym__not_in, - ACTIONS(2990), 1, - anon_sym_SEMI, - STATE(271), 1, - sym__terminator, - STATE(1020), 1, - aux_sym__terminator_repeat1, - STATE(3735), 1, - aux_sym_block_repeat2, - STATE(4529), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2883), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2887), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2889), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(2900), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(2902), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2879), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(696), 5, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - ACTIONS(2904), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2914), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(2906), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [129] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2875), 1, - aux_sym__terminator_token1, - ACTIONS(2881), 1, - anon_sym_PIPE, - ACTIONS(2885), 1, - anon_sym_COMMA, - ACTIONS(2891), 1, - anon_sym_when, - ACTIONS(2894), 1, - anon_sym_COLON_COLON, - ACTIONS(2896), 1, - anon_sym_EQ_GT, - ACTIONS(2898), 1, - anon_sym_EQ, - ACTIONS(2908), 1, - anon_sym_in, - ACTIONS(2910), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2912), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2916), 1, - anon_sym_STAR_STAR, - ACTIONS(2918), 1, - anon_sym_DASH_GT, - ACTIONS(2920), 1, - anon_sym_DOT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(2924), 1, - sym__not_in, - ACTIONS(2992), 1, - anon_sym_SEMI, - STATE(333), 1, - sym__terminator, - STATE(1020), 1, - aux_sym__terminator_repeat1, - STATE(3746), 1, - aux_sym_block_repeat2, - STATE(4529), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2883), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2887), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2889), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(2900), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(2902), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2879), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1375), 5, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - ACTIONS(2904), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2914), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(2906), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [258] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(298), 1, - anon_sym_do, - ACTIONS(2998), 1, - sym__newline_before_do, - STATE(1574), 1, + STATE(1219), 1, sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2994), 3, + ACTIONS(2984), 4, + sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2996), 55, + ACTIONS(2986), 56, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [75] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2990), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2992), 57, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -157428,26 +158025,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [337] = 7, + [148] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(298), 1, + ACTIONS(2875), 1, + aux_sym__terminator_token1, + ACTIONS(2881), 1, + anon_sym_PIPE, + ACTIONS(2885), 1, + anon_sym_COMMA, + ACTIONS(2891), 1, + anon_sym_when, + ACTIONS(2894), 1, + anon_sym_COLON_COLON, + ACTIONS(2896), 1, + anon_sym_EQ_GT, + ACTIONS(2898), 1, + anon_sym_EQ, + ACTIONS(2908), 1, + anon_sym_in, + ACTIONS(2910), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2912), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2916), 1, + anon_sym_STAR_STAR, + ACTIONS(2918), 1, + anon_sym_DASH_GT, + ACTIONS(2920), 1, + anon_sym_DOT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(2924), 1, + sym__not_in, + ACTIONS(2994), 1, + anon_sym_SEMI, + STATE(279), 1, + sym__terminator, + STATE(1021), 1, + aux_sym__terminator_repeat1, + STATE(4353), 1, + aux_sym_block_repeat2, + STATE(5161), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2883), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2887), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2889), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2900), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2902), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2879), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(686), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(2904), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2914), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(2906), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [277] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2996), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2998), 57, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [350] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(3004), 1, - sym__newline_before_do, - STATE(1571), 1, - sym_do_block, + aux_sym_quoted_keyword_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3000), 3, + ACTIONS(3000), 4, + sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3002), 55, + ACTIONS(3002), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -157500,26 +158261,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [416] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(298), 1, anon_sym_do, - ACTIONS(3006), 1, - sym__newline_before_do, - STATE(1545), 1, - sym_do_block, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [425] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3010), 1, + aux_sym_quoted_keyword_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3000), 3, + ACTIONS(3006), 4, + sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3002), 55, + ACTIONS(3008), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -157572,85 +158331,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [495] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(298), 1, anon_sym_do, - ACTIONS(3012), 1, - sym__newline_before_do, - STATE(1540), 1, - sym_do_block, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3008), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3010), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [574] = 5, + [500] = 5, ACTIONS(5), 1, sym_comment, - STATE(1157), 1, + STATE(1180), 1, sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -157717,90 +158405,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [649] = 5, + [575] = 7, ACTIONS(5), 1, sym_comment, - STATE(1160), 1, + ACTIONS(233), 1, + anon_sym_do, + ACTIONS(3016), 1, + sym__newline_before_do, + STATE(1646), 1, sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2982), 4, - sym__newline_before_do, + ACTIONS(3012), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2984), 56, + ACTIONS(3014), 55, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [724] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3014), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3016), 57, - anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -157852,11 +158474,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [797] = 4, + [654] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -157925,21 +158546,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [870] = 5, + [727] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(3026), 1, - aux_sym_quoted_keyword_token1, + ACTIONS(2875), 1, + aux_sym__terminator_token1, + ACTIONS(2881), 1, + anon_sym_PIPE, + ACTIONS(2885), 1, + anon_sym_COMMA, + ACTIONS(2891), 1, + anon_sym_when, + ACTIONS(2894), 1, + anon_sym_COLON_COLON, + ACTIONS(2896), 1, + anon_sym_EQ_GT, + ACTIONS(2898), 1, + anon_sym_EQ, + ACTIONS(2908), 1, + anon_sym_in, + ACTIONS(2910), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2912), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2916), 1, + anon_sym_STAR_STAR, + ACTIONS(2918), 1, + anon_sym_DASH_GT, + ACTIONS(2920), 1, + anon_sym_DOT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(2924), 1, + sym__not_in, + ACTIONS(3022), 1, + anon_sym_SEMI, + STATE(286), 1, + sym__terminator, + STATE(1021), 1, + aux_sym__terminator_repeat1, + STATE(4358), 1, + aux_sym_block_repeat2, + STATE(5161), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3022), 4, + ACTIONS(2883), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2887), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2889), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2900), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2902), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2879), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(696), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(2904), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2914), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(2906), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [856] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2875), 1, + aux_sym__terminator_token1, + ACTIONS(2881), 1, + anon_sym_PIPE, + ACTIONS(2885), 1, + anon_sym_COMMA, + ACTIONS(2891), 1, + anon_sym_when, + ACTIONS(2894), 1, + anon_sym_COLON_COLON, + ACTIONS(2896), 1, + anon_sym_EQ_GT, + ACTIONS(2898), 1, + anon_sym_EQ, + ACTIONS(2908), 1, + anon_sym_in, + ACTIONS(2910), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2912), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2916), 1, + anon_sym_STAR_STAR, + ACTIONS(2918), 1, + anon_sym_DASH_GT, + ACTIONS(2920), 1, + anon_sym_DOT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(2924), 1, + sym__not_in, + ACTIONS(3024), 1, + anon_sym_SEMI, + STATE(329), 1, + sym__terminator, + STATE(1021), 1, + aux_sym__terminator_repeat1, + STATE(4336), 1, + aux_sym_block_repeat2, + STATE(5161), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2883), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2887), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2889), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2900), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2902), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2879), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1383), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(2904), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2914), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(2906), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [985] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3026), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3024), 56, + ACTIONS(3028), 57, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -157995,19 +158809,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [945] = 4, + [1058] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2635), 5, + ACTIONS(2651), 5, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2637), 56, + ACTIONS(2653), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -158064,661 +158878,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [1018] = 4, + [1131] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3028), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3030), 57, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [1091] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2875), 1, - aux_sym__terminator_token1, - ACTIONS(2881), 1, - anon_sym_PIPE, - ACTIONS(2885), 1, - anon_sym_COMMA, - ACTIONS(2891), 1, - anon_sym_when, - ACTIONS(2894), 1, - anon_sym_COLON_COLON, - ACTIONS(2896), 1, - anon_sym_EQ_GT, - ACTIONS(2898), 1, - anon_sym_EQ, - ACTIONS(2908), 1, - anon_sym_in, - ACTIONS(2910), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2912), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2916), 1, - anon_sym_STAR_STAR, - ACTIONS(2918), 1, - anon_sym_DASH_GT, - ACTIONS(2920), 1, - anon_sym_DOT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(2924), 1, - sym__not_in, - ACTIONS(3032), 1, - anon_sym_SEMI, - STATE(280), 1, - sym__terminator, - STATE(1020), 1, - aux_sym__terminator_repeat1, - STATE(3752), 1, - aux_sym_block_repeat2, - STATE(4529), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2883), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2887), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2889), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(2900), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(2902), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2879), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(692), 5, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - ACTIONS(2904), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2914), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(2906), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [1220] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3034), 1, - anon_sym_LPAREN, - STATE(1154), 1, - sym__call_arguments_with_parentheses, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2972), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2974), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [1297] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3034), 1, - anon_sym_LPAREN, - STATE(1152), 1, - sym__call_arguments_with_parentheses, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2972), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2974), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [1374] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3034), 1, - anon_sym_LPAREN, - STATE(1150), 1, - sym__call_arguments_with_parentheses, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2972), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2974), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [1451] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2875), 1, - aux_sym__terminator_token1, - ACTIONS(2881), 1, - anon_sym_PIPE, - ACTIONS(2885), 1, - anon_sym_COMMA, - ACTIONS(2891), 1, - anon_sym_when, - ACTIONS(2894), 1, - anon_sym_COLON_COLON, - ACTIONS(2896), 1, - anon_sym_EQ_GT, - ACTIONS(2898), 1, - anon_sym_EQ, - ACTIONS(2908), 1, - anon_sym_in, - ACTIONS(2910), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2912), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2916), 1, - anon_sym_STAR_STAR, - ACTIONS(2918), 1, - anon_sym_DASH_GT, - ACTIONS(2920), 1, - anon_sym_DOT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(2924), 1, - sym__not_in, - ACTIONS(3036), 1, - anon_sym_SEMI, - STATE(282), 1, - sym__terminator, - STATE(1020), 1, - aux_sym__terminator_repeat1, - STATE(3750), 1, - aux_sym_block_repeat2, - STATE(4529), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2883), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2887), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2889), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(2900), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(2902), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2879), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(682), 5, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - ACTIONS(2904), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2914), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(2906), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [1580] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2875), 1, - aux_sym__terminator_token1, - ACTIONS(2881), 1, - anon_sym_PIPE, - ACTIONS(2885), 1, - anon_sym_COMMA, - ACTIONS(2891), 1, - anon_sym_when, - ACTIONS(2894), 1, - anon_sym_COLON_COLON, - ACTIONS(2896), 1, - anon_sym_EQ_GT, - ACTIONS(2898), 1, - anon_sym_EQ, - ACTIONS(2908), 1, - anon_sym_in, - ACTIONS(2910), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2912), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2916), 1, - anon_sym_STAR_STAR, - ACTIONS(2918), 1, - anon_sym_DASH_GT, - ACTIONS(2920), 1, - anon_sym_DOT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(2924), 1, - sym__not_in, - ACTIONS(3038), 1, - anon_sym_SEMI, - STATE(284), 1, - sym__terminator, - STATE(1020), 1, - aux_sym__terminator_repeat1, - STATE(3734), 1, - aux_sym_block_repeat2, - STATE(4529), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2883), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2887), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2889), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(2900), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(2902), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2879), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(678), 5, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - ACTIONS(2904), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2914), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(2906), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [1709] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3040), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3042), 57, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [1782] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2639), 5, + ACTIONS(2631), 5, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2641), 56, + ACTIONS(2633), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -158775,1166 +158947,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [1855] = 4, + [1204] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3044), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3046), 57, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [1928] = 5, - ACTIONS(5), 1, - sym_comment, - STATE(1222), 1, - sym_do_block, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3008), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3010), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [2003] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(298), 1, - anon_sym_do, - ACTIONS(3048), 1, - sym__newline_before_do, - STATE(1585), 1, - sym_do_block, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3000), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3002), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [2082] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3026), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3050), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3052), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [2157] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(305), 1, - anon_sym_do, - ACTIONS(3054), 1, - sym__newline_before_do, - STATE(1580), 1, - sym_do_block, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2982), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2984), 55, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [2236] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(305), 1, - anon_sym_do, - ACTIONS(3056), 1, - sym__newline_before_do, - STATE(1582), 1, - sym_do_block, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2978), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2980), 55, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [2315] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3058), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3060), 57, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [2388] = 5, - ACTIONS(5), 1, - sym_comment, - STATE(1220), 1, - sym_do_block, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3000), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3002), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [2463] = 5, - ACTIONS(5), 1, - sym_comment, - STATE(1219), 1, - sym_do_block, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3000), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3002), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [2538] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3062), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3064), 57, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [2611] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3066), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3068), 57, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [2684] = 5, - ACTIONS(5), 1, - sym_comment, - STATE(1217), 1, - sym_do_block, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2994), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2996), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [2759] = 5, - ACTIONS(5), 1, - sym_comment, - STATE(1216), 1, - sym_do_block, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3000), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3002), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [2834] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2875), 1, - aux_sym__terminator_token1, - ACTIONS(2881), 1, - anon_sym_PIPE, - ACTIONS(2885), 1, - anon_sym_COMMA, - ACTIONS(2891), 1, - anon_sym_when, - ACTIONS(2894), 1, - anon_sym_COLON_COLON, - ACTIONS(2896), 1, - anon_sym_EQ_GT, - ACTIONS(2898), 1, - anon_sym_EQ, - ACTIONS(2908), 1, - anon_sym_in, - ACTIONS(2910), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2912), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2916), 1, - anon_sym_STAR_STAR, - ACTIONS(2918), 1, - anon_sym_DASH_GT, - ACTIONS(2920), 1, - anon_sym_DOT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(2924), 1, - sym__not_in, - ACTIONS(3070), 1, - anon_sym_SEMI, - STATE(331), 1, - sym__terminator, - STATE(1020), 1, - aux_sym__terminator_repeat1, - STATE(3743), 1, - aux_sym_block_repeat2, - STATE(4529), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2883), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2887), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2889), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(2900), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(2902), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2879), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1373), 5, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - ACTIONS(2904), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2914), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(2906), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [2963] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3072), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3074), 57, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [3036] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3076), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3078), 57, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [3109] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2643), 5, + ACTIONS(2611), 5, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2645), 56, + ACTIONS(2613), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -159991,408 +159016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [3182] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3080), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3082), 57, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [3255] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2875), 1, - aux_sym__terminator_token1, - ACTIONS(2881), 1, - anon_sym_PIPE, - ACTIONS(2885), 1, - anon_sym_COMMA, - ACTIONS(2891), 1, - anon_sym_when, - ACTIONS(2894), 1, - anon_sym_COLON_COLON, - ACTIONS(2896), 1, - anon_sym_EQ_GT, - ACTIONS(2898), 1, - anon_sym_EQ, - ACTIONS(2908), 1, - anon_sym_in, - ACTIONS(2910), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2912), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2916), 1, - anon_sym_STAR_STAR, - ACTIONS(2918), 1, - anon_sym_DASH_GT, - ACTIONS(2920), 1, - anon_sym_DOT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(2924), 1, - sym__not_in, - ACTIONS(3084), 1, - anon_sym_SEMI, - STATE(319), 1, - sym__terminator, - STATE(1020), 1, - aux_sym__terminator_repeat1, - STATE(3741), 1, - aux_sym_block_repeat2, - STATE(4529), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2883), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2887), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2889), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(2900), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(2902), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2879), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1369), 5, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - ACTIONS(2904), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2914), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(2906), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [3384] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3086), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3088), 57, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [3457] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3090), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3092), 57, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [3530] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2875), 1, - aux_sym__terminator_token1, - ACTIONS(2881), 1, - anon_sym_PIPE, - ACTIONS(2885), 1, - anon_sym_COMMA, - ACTIONS(2891), 1, - anon_sym_when, - ACTIONS(2894), 1, - anon_sym_COLON_COLON, - ACTIONS(2896), 1, - anon_sym_EQ_GT, - ACTIONS(2898), 1, - anon_sym_EQ, - ACTIONS(2908), 1, - anon_sym_in, - ACTIONS(2910), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2912), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2916), 1, - anon_sym_STAR_STAR, - ACTIONS(2918), 1, - anon_sym_DASH_GT, - ACTIONS(2920), 1, - anon_sym_DOT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(2924), 1, - sym__not_in, - ACTIONS(3094), 1, - anon_sym_SEMI, - STATE(311), 1, - sym__terminator, - STATE(1020), 1, - aux_sym__terminator_repeat1, - STATE(3739), 1, - aux_sym_block_repeat2, - STATE(4529), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2883), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2887), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2889), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(2900), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(2902), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2879), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1353), 5, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - ACTIONS(2904), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2914), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(2906), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [3659] = 4, + [1277] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -160461,18 +159085,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [3732] = 4, + [1350] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3096), 4, + ACTIONS(3030), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3098), 57, + ACTIONS(3032), 57, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -160530,18 +159154,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [3805] = 4, + [1423] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3100), 4, + ACTIONS(3034), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3102), 57, + ACTIONS(3036), 57, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -160599,23 +159223,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [3878] = 7, + [1496] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(305), 1, + ACTIONS(233), 1, anon_sym_do, - ACTIONS(3104), 1, + ACTIONS(3042), 1, sym__newline_before_do, - STATE(1618), 1, + STATE(1644), 1, sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3000), 3, + ACTIONS(3038), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3002), 54, + ACTIONS(3040), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -160664,13 +159288,2043 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [1575] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3044), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3046), 57, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [1648] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3048), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3050), 57, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [1721] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3052), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3054), 57, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [1794] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(233), 1, + anon_sym_do, + ACTIONS(3056), 1, + sym__newline_before_do, + STATE(1643), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3038), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3040), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [1873] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3058), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3060), 57, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [1946] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3062), 1, + anon_sym_LPAREN, + STATE(1192), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2972), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2974), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [2023] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(1139), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3064), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3066), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [2098] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2875), 1, + aux_sym__terminator_token1, + ACTIONS(2881), 1, + anon_sym_PIPE, + ACTIONS(2885), 1, + anon_sym_COMMA, + ACTIONS(2891), 1, + anon_sym_when, + ACTIONS(2894), 1, + anon_sym_COLON_COLON, + ACTIONS(2896), 1, + anon_sym_EQ_GT, + ACTIONS(2898), 1, + anon_sym_EQ, + ACTIONS(2908), 1, + anon_sym_in, + ACTIONS(2910), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2912), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2916), 1, + anon_sym_STAR_STAR, + ACTIONS(2918), 1, + anon_sym_DASH_GT, + ACTIONS(2920), 1, + anon_sym_DOT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(2924), 1, + sym__not_in, + ACTIONS(3068), 1, + anon_sym_SEMI, + STATE(332), 1, + sym__terminator, + STATE(1021), 1, + aux_sym__terminator_repeat1, + STATE(4347), 1, + aux_sym_block_repeat2, + STATE(5161), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2883), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2887), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2889), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2900), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2902), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2879), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1395), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(2904), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2914), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(2906), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [2227] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(305), 1, + anon_sym_do, + ACTIONS(3070), 1, + sym__newline_before_do, + STATE(1666), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2984), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2986), 55, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [3956] = 4, + [2306] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3062), 1, + anon_sym_LPAREN, + STATE(1247), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2972), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2974), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [2383] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(233), 1, + anon_sym_do, + ACTIONS(3072), 1, + sym__newline_before_do, + STATE(1636), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3064), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3066), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [2462] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3062), 1, + anon_sym_LPAREN, + STATE(1238), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2972), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2974), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [2539] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3074), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3076), 57, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [2612] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(1241), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3012), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3014), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [2687] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3078), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3080), 57, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [2760] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(233), 1, + anon_sym_do, + ACTIONS(3082), 1, + sym__newline_before_do, + STATE(1632), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3038), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3040), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [2839] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(305), 1, + anon_sym_do, + ACTIONS(3084), 1, + sym__newline_before_do, + STATE(1667), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2978), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2980), 55, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [2918] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2875), 1, + aux_sym__terminator_token1, + ACTIONS(2881), 1, + anon_sym_PIPE, + ACTIONS(2885), 1, + anon_sym_COMMA, + ACTIONS(2891), 1, + anon_sym_when, + ACTIONS(2894), 1, + anon_sym_COLON_COLON, + ACTIONS(2896), 1, + anon_sym_EQ_GT, + ACTIONS(2898), 1, + anon_sym_EQ, + ACTIONS(2908), 1, + anon_sym_in, + ACTIONS(2910), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2912), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2916), 1, + anon_sym_STAR_STAR, + ACTIONS(2918), 1, + anon_sym_DASH_GT, + ACTIONS(2920), 1, + anon_sym_DOT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(2924), 1, + sym__not_in, + ACTIONS(3086), 1, + anon_sym_SEMI, + STATE(292), 1, + sym__terminator, + STATE(1021), 1, + aux_sym__terminator_repeat1, + STATE(4359), 1, + aux_sym_block_repeat2, + STATE(5161), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2883), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2887), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2889), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2900), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2902), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2879), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(664), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(2904), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2914), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(2906), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [3047] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(1204), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3038), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3040), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [3122] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(1205), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3038), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3040), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [3197] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2875), 1, + aux_sym__terminator_token1, + ACTIONS(2881), 1, + anon_sym_PIPE, + ACTIONS(2885), 1, + anon_sym_COMMA, + ACTIONS(2891), 1, + anon_sym_when, + ACTIONS(2894), 1, + anon_sym_COLON_COLON, + ACTIONS(2896), 1, + anon_sym_EQ_GT, + ACTIONS(2898), 1, + anon_sym_EQ, + ACTIONS(2908), 1, + anon_sym_in, + ACTIONS(2910), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2912), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2916), 1, + anon_sym_STAR_STAR, + ACTIONS(2918), 1, + anon_sym_DASH_GT, + ACTIONS(2920), 1, + anon_sym_DOT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(2924), 1, + sym__not_in, + ACTIONS(3088), 1, + anon_sym_SEMI, + STATE(303), 1, + sym__terminator, + STATE(1021), 1, + aux_sym__terminator_repeat1, + STATE(4344), 1, + aux_sym_block_repeat2, + STATE(5161), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2883), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2887), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2889), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2900), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2902), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2879), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(668), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(2904), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2914), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(2906), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [3326] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3090), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3092), 57, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [3399] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3094), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3096), 57, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [3472] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3098), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3100), 57, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [3545] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2875), 1, + aux_sym__terminator_token1, + ACTIONS(2881), 1, + anon_sym_PIPE, + ACTIONS(2885), 1, + anon_sym_COMMA, + ACTIONS(2891), 1, + anon_sym_when, + ACTIONS(2894), 1, + anon_sym_COLON_COLON, + ACTIONS(2896), 1, + anon_sym_EQ_GT, + ACTIONS(2898), 1, + anon_sym_EQ, + ACTIONS(2908), 1, + anon_sym_in, + ACTIONS(2910), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2912), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2916), 1, + anon_sym_STAR_STAR, + ACTIONS(2918), 1, + anon_sym_DASH_GT, + ACTIONS(2920), 1, + anon_sym_DOT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(2924), 1, + sym__not_in, + ACTIONS(3102), 1, + anon_sym_SEMI, + STATE(342), 1, + sym__terminator, + STATE(1021), 1, + aux_sym__terminator_repeat1, + STATE(4340), 1, + aux_sym_block_repeat2, + STATE(5161), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2883), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2887), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2889), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2900), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2902), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2879), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1431), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(2904), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2914), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(2906), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [3674] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2875), 1, + aux_sym__terminator_token1, + ACTIONS(2881), 1, + anon_sym_PIPE, + ACTIONS(2885), 1, + anon_sym_COMMA, + ACTIONS(2891), 1, + anon_sym_when, + ACTIONS(2894), 1, + anon_sym_COLON_COLON, + ACTIONS(2896), 1, + anon_sym_EQ_GT, + ACTIONS(2898), 1, + anon_sym_EQ, + ACTIONS(2908), 1, + anon_sym_in, + ACTIONS(2910), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2912), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2916), 1, + anon_sym_STAR_STAR, + ACTIONS(2918), 1, + anon_sym_DASH_GT, + ACTIONS(2920), 1, + anon_sym_DOT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(2924), 1, + sym__not_in, + ACTIONS(3104), 1, + anon_sym_SEMI, + STATE(339), 1, + sym__terminator, + STATE(1021), 1, + aux_sym__terminator_repeat1, + STATE(4338), 1, + aux_sym_block_repeat2, + STATE(5161), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2883), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2887), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2889), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2900), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2902), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2879), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1407), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(2904), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2914), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(2906), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [3803] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(1141), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3038), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3040), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [3878] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -160682,6 +161336,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, anon_sym_LBRACK2, ACTIONS(3108), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [3950] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3110), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3112), 56, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -160738,27 +161460,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [4028] = 6, + [4022] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3114), 1, - anon_sym_COMMA, - STATE(1138), 1, - aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3110), 4, + ACTIONS(3114), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3112), 54, + ACTIONS(3116), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -160808,18 +161528,767 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [4104] = 4, + [4094] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3058), 4, + ACTIONS(3118), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3060), 56, + ACTIONS(3120), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [4166] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3122), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3124), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [4238] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3118), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3120), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [4310] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3126), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3128), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [4382] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3130), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3132), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [4454] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [4526] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [4598] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [4670] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [4742] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(1432), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3012), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3014), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [4816] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [4888] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3078), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3080), 56, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -160876,22 +162345,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [4176] = 6, + [4960] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3121), 1, - anon_sym_COMMA, - STATE(1138), 1, - aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3117), 4, + ACTIONS(3106), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3119), 54, + ACTIONS(3108), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [5032] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3138), 1, + anon_sym_COMMA, + STATE(1153), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3134), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3136), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -160946,18 +162483,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [4252] = 4, + [5108] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3123), 4, + ACTIONS(3141), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3125), 56, + ACTIONS(3143), 56, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -161014,18 +162551,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [4324] = 4, + [5180] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3127), 4, + ACTIONS(3145), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3129), 56, + ACTIONS(3147), 56, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -161082,24 +162619,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [4396] = 4, + [5252] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3153), 1, + anon_sym_COMMA, + STATE(1153), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3131), 4, + ACTIONS(3149), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3133), 56, + ACTIONS(3151), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [5328] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -161150,24 +162757,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [4468] = 4, + [5400] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3135), 4, + ACTIONS(3106), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3137), 56, + ACTIONS(3108), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -161218,20 +162825,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [4540] = 5, + [5472] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3026), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2651), 5, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, aux_sym_quoted_keyword_token1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3022), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3024), 55, + ACTIONS(2653), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -161287,87 +162893,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [4614] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3026), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3050), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3052), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [4688] = 4, + [5544] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3139), 4, + ACTIONS(3064), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3141), 56, + ACTIONS(3066), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -161424,7 +162961,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [4760] = 4, + [5616] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [5688] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -161492,20 +163097,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [4832] = 5, + [5760] = 4, ACTIONS(5), 1, sym_comment, - STATE(1365), 1, - sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3008), 4, + ACTIONS(3106), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3010), 55, + ACTIONS(3108), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -161554,6 +163157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -161561,20 +163165,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [4906] = 5, + [5832] = 4, ACTIONS(5), 1, sym_comment, - STATE(1360), 1, - sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3000), 4, + ACTIONS(3106), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3002), 55, + ACTIONS(3108), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -161623,6 +163225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -161630,19 +163233,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [4980] = 4, + [5904] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2643), 5, + ACTIONS(3106), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2645), 55, + ACTIONS(3108), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -161691,6 +163293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -161698,20 +163301,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [5052] = 5, + [5976] = 4, ACTIONS(5), 1, sym_comment, - STATE(1359), 1, - sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3000), 4, + ACTIONS(3106), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3002), 55, + ACTIONS(3108), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -161760,6 +163361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -161767,20 +163369,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [5126] = 5, + [6048] = 4, ACTIONS(5), 1, sym_comment, - STATE(1325), 1, - sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2994), 4, + ACTIONS(3106), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2996), 55, + ACTIONS(3108), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -161829,6 +163429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -161836,20 +163437,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [5200] = 5, + [6120] = 4, ACTIONS(5), 1, sym_comment, - STATE(1324), 1, - sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3000), 4, + ACTIONS(3155), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3002), 55, + ACTIONS(3157), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -161898,6 +163497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -161905,18 +163505,698 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [5274] = 4, + [6192] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3076), 4, + ACTIONS(3106), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3078), 56, + ACTIONS(3108), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [6264] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [6336] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [6408] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [6480] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [6552] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3159), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3161), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [6624] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3163), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3165), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [6696] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3167), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3169), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [6768] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3171), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3173), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [6840] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3175), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3177), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [6912] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3058), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3060), 56, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -161973,18 +164253,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [5346] = 4, + [6984] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3100), 4, + ACTIONS(2996), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3102), 56, + ACTIONS(2998), 56, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -162041,18 +164321,903 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [5418] = 4, + [7056] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3014), 4, + ACTIONS(3179), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3016), 56, + ACTIONS(3181), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [7128] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3183), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3185), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [7200] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3183), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3185), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [7272] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3187), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3189), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [7344] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3191), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3193), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [7416] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3183), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3185), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [7488] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3195), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3197), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [7560] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3199), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3201), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [7632] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3203), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3205), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [7704] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3207), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3209), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [7776] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3211), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3213), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [7848] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(1413), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3038), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3040), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [7922] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3215), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3217), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [7994] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3034), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3036), 56, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -162109,157 +165274,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [5490] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3147), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3143), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3145), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [5564] = 4, + [8066] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3149), 4, + ACTIONS(3191), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3151), 56, + ACTIONS(3193), 56, anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [5636] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3028), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3030), 56, - anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -162307,6 +165334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -162314,24 +165342,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [5708] = 4, + [8138] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3153), 1, + anon_sym_COMMA, + STATE(1156), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3153), 4, + ACTIONS(3219), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3155), 56, + ACTIONS(3221), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [8214] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3227), 1, aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -162382,1231 +165481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [5780] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3157), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3159), 56, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [5852] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3161), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3163), 56, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [5924] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3165), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3167), 56, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [5996] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3169), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3171), 56, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [6068] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3173), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3175), 56, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [6140] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3177), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3179), 56, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [6212] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3181), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3183), 56, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [6284] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3185), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3187), 56, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [6356] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3189), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3191), 56, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [6428] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3193), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3195), 56, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [6500] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3197), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3199), 56, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [6572] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3201), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3203), 56, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [6644] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3205), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3207), 56, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [6716] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3209), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3211), 56, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [6788] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3213), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3215), 56, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [6860] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3217), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3219), 56, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [6932] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3221), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3223), 56, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [7004] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3225), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3227), 56, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [7076] = 4, + [8288] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -163674,7 +165549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [7148] = 4, + [8360] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -163742,7 +165617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [7220] = 4, + [8432] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -163810,7 +165685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [7292] = 4, + [8504] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -163878,7 +165753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [7364] = 4, + [8576] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -163946,7 +165821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [7436] = 4, + [8648] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -163959,11 +165834,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(3251), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -164014,7 +165889,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [7508] = 4, + [8720] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3122), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3124), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [8792] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3122), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3124), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [8864] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -164082,18 +166093,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [7580] = 4, + [8936] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3257), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [9010] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3257), 4, + ACTIONS(3259), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3259), 56, + ACTIONS(3261), 56, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -164150,24 +166230,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [7652] = 4, + [9082] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3263), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3261), 4, + ACTIONS(3223), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3263), 56, + ACTIONS(3225), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -164218,7 +166299,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [7724] = 4, + [9156] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3191), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3193), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [9228] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -164231,11 +166380,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(3267), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -164286,75 +166435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [7796] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3080), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3082), 56, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [7868] = 4, + [9300] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -164366,6 +166447,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, anon_sym_LBRACK2, ACTIONS(3271), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [9372] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3273), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3275), 56, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -164422,279 +166571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [7940] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3273), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3275), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [8012] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3044), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3046), 56, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [8084] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3062), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3064), 56, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [8156] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3066), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3068), 56, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [8228] = 4, + [9444] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -164707,11 +166584,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(3279), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -164762,7 +166639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [8300] = 4, + [9516] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -164830,7 +166707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [8372] = 4, + [9588] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -164898,7 +166775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [8444] = 4, + [9660] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -164966,7 +166843,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [8516] = 4, + [9732] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3118), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3120), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [9804] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2990), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2992), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [9876] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -165034,4047 +167047,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [8588] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3297), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3299), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [8660] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3301), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3303), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [8732] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3297), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3299), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [8804] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3297), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3299), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [8876] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3305), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3307), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [8948] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2639), 5, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(2641), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [9020] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2635), 5, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(2637), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [9092] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3309), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3311), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [9164] = 27, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3315), 1, - anon_sym_PIPE, - ACTIONS(3319), 1, - anon_sym_COMMA, - ACTIONS(3325), 1, - anon_sym_when, - ACTIONS(3327), 1, - anon_sym_COLON_COLON, - ACTIONS(3329), 1, - anon_sym_EQ_GT, - ACTIONS(3331), 1, - anon_sym_EQ, - ACTIONS(3341), 1, - anon_sym_in, - ACTIONS(3343), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3345), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3349), 1, - anon_sym_STAR_STAR, - ACTIONS(3351), 1, - anon_sym_DOT, - ACTIONS(3353), 1, - anon_sym_LBRACK2, - ACTIONS(3355), 1, - sym__not_in, - STATE(1140), 1, - aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3139), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3317), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3321), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3323), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3333), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3335), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3313), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3337), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3347), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3141), 8, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - ACTIONS(3339), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [9282] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3357), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3359), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [9354] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3361), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3363), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [9426] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3365), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3367), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [9498] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3369), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3371), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [9570] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3373), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3375), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [9642] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3377), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3379), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [9714] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3381), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3383), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [9786] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3385), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3387), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [9858] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3385), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3387), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [9930] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3381), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3383), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [10002] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3381), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3383), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [10074] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3391), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [10146] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3393), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3395), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [10218] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3397), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3399), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [10290] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3391), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [10362] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3391), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [10434] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3401), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3403), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [10506] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3405), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3407), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [10578] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3409), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3411), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [10650] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3413), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3415), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [10722] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3417), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3419), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [10794] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3135), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3137), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [10866] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3131), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3133), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [10938] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3421), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3423), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [11010] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3425), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3427), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [11082] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3425), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3427), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [11154] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3425), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3427), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [11226] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3072), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3074), 56, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [11298] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2994), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2996), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [11370] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3090), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3092), 56, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [11442] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3018), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3020), 56, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [11514] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3429), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3431), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [11586] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3096), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3098), 56, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [11658] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3433), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3435), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [11730] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3433), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3435), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [11802] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3433), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3435), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [11874] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3437), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3439), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [11946] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3441), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3443), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [12018] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3445), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3447), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [12090] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3127), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3129), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [12162] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3123), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3125), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [12234] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3449), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3451), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [12306] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2972), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2974), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [12378] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3453), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3455), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [12450] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3453), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3455), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [12522] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3453), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3455), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [12594] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3457), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3459), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [12666] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3457), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3459), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [12738] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3022), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3024), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [12810] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3050), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3052), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [12882] = 6, + [9948] = 6, ACTIONS(5), 1, sym_comment, ACTIONS(2976), 1, anon_sym_LPAREN, - STATE(1094), 1, + STATE(1109), 1, sym__call_arguments_with_parentheses, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -169139,18 +167117,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [12958] = 4, + [10024] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3461), 4, + ACTIONS(3289), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3463), 56, + ACTIONS(3291), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [10096] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3285), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3287), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [10168] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3297), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3299), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -169207,18 +167321,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [13030] = 4, + [10240] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3465), 4, + ACTIONS(3297), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3467), 56, + ACTIONS(3299), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -169275,7 +167389,212 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [13102] = 6, + [10312] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3301), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [10386] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3303), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3305), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [10458] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3307), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3309), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [10530] = 6, ACTIONS(5), 1, sym_comment, ACTIONS(2976), 1, @@ -169345,12 +167664,284 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [13178] = 6, + [10606] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3114), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3116), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [10678] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2611), 5, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2613), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [10750] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2631), 5, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2633), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [10822] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3311), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3313), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [10894] = 6, ACTIONS(5), 1, sym_comment, ACTIONS(2976), 1, anon_sym_LPAREN, - STATE(1093), 1, + STATE(1125), 1, sym__call_arguments_with_parentheses, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -169415,27 +168006,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [13254] = 6, + [10970] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3473), 1, - anon_sym_COMMA, - STATE(1266), 1, - aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3469), 4, + ACTIONS(2972), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3471), 54, + ACTIONS(2974), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -169485,158 +168074,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [13330] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3473), 1, - anon_sym_COMMA, - STATE(1267), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3475), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3477), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [13406] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3483), 1, - anon_sym_COMMA, - STATE(1267), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3479), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3481), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [13482] = 4, + [11042] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2635), 4, + ACTIONS(3315), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2637), 56, + ACTIONS(3317), 56, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -169693,18 +168142,769 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [13554] = 4, + [11114] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(1414), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3064), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3066), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [11188] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(1417), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3038), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3040), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [11262] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2639), 4, + ACTIONS(3319), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2641), 56, + ACTIONS(3321), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [11334] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3319), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3321), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [11406] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3323), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3325), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [11478] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3319), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3321), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [11550] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3327), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3329), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [11622] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3327), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3329), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [11694] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3006), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3008), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [11766] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3000), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3002), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [11838] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(1422), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3038), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3040), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [11912] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3331), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3333), 56, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -169761,18 +168961,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [13626] = 4, + [11984] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2643), 4, + ACTIONS(3000), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2645), 56, + ACTIONS(3002), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [12056] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3006), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3008), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [12128] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3335), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3337), 56, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -169829,7 +169165,3251 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [13698] = 4, + [12200] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3339), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [12274] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3341), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3343), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [12346] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3345), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3347), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [12418] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3349), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [12492] = 27, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3357), 1, + anon_sym_PIPE, + ACTIONS(3361), 1, + anon_sym_COMMA, + ACTIONS(3367), 1, + anon_sym_when, + ACTIONS(3369), 1, + anon_sym_COLON_COLON, + ACTIONS(3371), 1, + anon_sym_EQ_GT, + ACTIONS(3373), 1, + anon_sym_EQ, + ACTIONS(3383), 1, + anon_sym_in, + ACTIONS(3385), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3387), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3391), 1, + anon_sym_STAR_STAR, + ACTIONS(3393), 1, + anon_sym_DOT, + ACTIONS(3395), 1, + anon_sym_LBRACK2, + ACTIONS(3397), 1, + sym__not_in, + STATE(1313), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3351), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3359), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3363), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3365), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3375), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3377), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3355), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3379), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3389), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3353), 8, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(3381), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [12610] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3074), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3076), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [12682] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3018), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3020), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [12754] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3094), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3096), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [12826] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3399), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3401), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [12898] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3030), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3032), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [12970] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3295), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [13042] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3403), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3405), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [13114] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3407), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3409), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [13186] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3098), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3100), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [13258] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3411), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3413), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [13330] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3295), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [13402] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3415), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3417), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [13474] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3351), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3353), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [13546] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3052), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3054), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [13618] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3048), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3050), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [13690] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3044), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3046), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [13762] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(305), 1, + anon_sym_do, + ACTIONS(3419), 1, + sym__newline_before_do, + STATE(1888), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3038), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3040), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [13840] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3421), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [13914] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3423), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3425), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [13986] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3010), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3006), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3008), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [14060] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3004), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3000), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3002), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [14134] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3427), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3429), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [14206] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3431), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3433), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [14278] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3435), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3437), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [14350] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(305), 1, + anon_sym_do, + ACTIONS(3439), 1, + sym__newline_before_do, + STATE(1887), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3064), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3066), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [14428] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3441), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3443), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [14500] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3445), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3447), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [14572] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3026), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3028), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [14644] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3449), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3451), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [14716] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3307), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3309), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [14788] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3303), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3305), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [14860] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3453), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [14934] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3090), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3092), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [15006] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(305), 1, + anon_sym_do, + ACTIONS(3455), 1, + sym__newline_before_do, + STATE(1884), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3038), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3040), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [15084] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3461), 1, + anon_sym_COMMA, + STATE(1291), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3457), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3459), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [15160] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(305), 1, + anon_sym_do, + ACTIONS(3464), 1, + sym__newline_before_do, + STATE(1883), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3038), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3040), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [15238] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3134), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3136), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [15310] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(305), 1, + anon_sym_do, + ACTIONS(3466), 1, + sym__newline_before_do, + STATE(1880), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3012), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3014), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [15388] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3468), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3470), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [15460] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3472), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [15534] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2651), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2653), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [15606] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3474), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [15680] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -169897,641 +172477,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [13770] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(305), 1, - anon_sym_do, - ACTIONS(3486), 1, - sym__newline_before_do, - STATE(1617), 1, - sym_do_block, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2994), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2996), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [13848] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(305), 1, - anon_sym_do, - ACTIONS(3488), 1, - sym__newline_before_do, - STATE(1614), 1, - sym_do_block, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3000), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3002), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [13926] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(305), 1, - anon_sym_do, - ACTIONS(3490), 1, - sym__newline_before_do, - STATE(1613), 1, - sym_do_block, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3000), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3002), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [14004] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(305), 1, - anon_sym_do, - ACTIONS(3492), 1, - sym__newline_before_do, - STATE(1610), 1, - sym_do_block, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3008), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3010), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [14082] = 4, + [15752] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3494), 4, + ACTIONS(2611), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3496), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [14154] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3479), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3481), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [14226] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3040), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3042), 56, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [14298] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3086), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3088), 56, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [14370] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2647), 4, - sym__not_in, - aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(2649), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [14441] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3253), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3255), 55, + ACTIONS(2613), 56, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -170580,6 +172537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -170587,7 +172545,1582 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [14512] = 4, + [15824] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2631), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2633), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [15896] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3476), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [15970] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3478), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [16044] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3480), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3482), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [16116] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3484), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [16190] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3486), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3488), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [16262] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3490), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [16336] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3492), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [16410] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3494), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [16484] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3496), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3498), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [16556] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3500), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3502), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [16628] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3504), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [16702] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_COMMA, + STATE(1291), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3506), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3508), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [16778] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3512), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [16852] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3514), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [16926] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3516), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3518), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [16998] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3520), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [17072] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3522), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3524), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [17144] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3526), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3528), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [17216] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3530), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3532), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [17288] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3534), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3536), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [17360] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3538), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [17433] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [17504] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -170599,810 +174132,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, anon_sym_LBRACK2, ACTIONS(3251), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [14583] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3245), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3247), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [14654] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3241), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3243), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [14725] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3237), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3239), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [14796] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3233), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3235), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [14867] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3229), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3231), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [14938] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3225), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3227), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [15009] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3221), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3223), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [15080] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3217), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3219), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [15151] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3213), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3215), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [15222] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3209), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3211), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [15293] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3205), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3207), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [15364] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3369), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3371), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -171458,85 +174187,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [15435] = 4, + [17575] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3365), 4, + ACTIONS(3530), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3367), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [15506] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3201), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3203), 55, + ACTIONS(3532), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -171592,152 +174254,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [15577] = 4, + [17646] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3361), 4, + ACTIONS(3411), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3363), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [15648] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3357), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3359), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [15719] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3197), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3199), 55, + ACTIONS(3413), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -171793,18 +174321,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [15790] = 4, + [17717] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3193), 4, + ACTIONS(3345), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3195), 55, + ACTIONS(3347), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -171860,891 +174388,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [15861] = 4, + [17788] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3189), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3191), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [15932] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3309), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3311), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [16003] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3305), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3307), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [16074] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3297), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3299), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [16145] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3297), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3299), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [16216] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3301), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3303), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [16287] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3297), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3299), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [16358] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3072), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3074), 56, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [16429] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3293), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3295), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [16500] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3090), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3092), 56, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [16571] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3018), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3020), 56, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [16642] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3096), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3098), 56, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [16713] = 27, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3500), 1, - anon_sym_PIPE, - ACTIONS(3504), 1, - anon_sym_COMMA, - ACTIONS(3510), 1, - anon_sym_when, - ACTIONS(3512), 1, - anon_sym_COLON_COLON, - ACTIONS(3514), 1, - anon_sym_EQ_GT, - ACTIONS(3516), 1, - anon_sym_EQ, - ACTIONS(3526), 1, - anon_sym_in, - ACTIONS(3528), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3530), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3534), 1, - anon_sym_STAR_STAR, - ACTIONS(3536), 1, - anon_sym_DOT, - ACTIONS(3538), 1, - anon_sym_LBRACK2, ACTIONS(3540), 1, - sym__not_in, - STATE(1366), 1, - aux_sym__items_with_trailing_separator_repeat1, + anon_sym_COMMA, + STATE(1426), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3139), 2, + ACTIONS(3149), 4, sym__newline_before_do, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3502), 2, + anon_sym_LBRACK2, + ACTIONS(3151), 53, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3506), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3508), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3518), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3520), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3498), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3522), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3532), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3141), 7, - anon_sym_SEMI, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - ACTIONS(3524), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -172754,7 +174439,2661 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [16830] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [17863] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3315), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3317), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [17934] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3110), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3112), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [18005] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3357), 1, + anon_sym_PIPE, + ACTIONS(3371), 1, + anon_sym_EQ_GT, + ACTIONS(3373), 1, + anon_sym_EQ, + ACTIONS(3383), 1, + anon_sym_in, + ACTIONS(3385), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3387), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3391), 1, + anon_sym_STAR_STAR, + ACTIONS(3393), 1, + anon_sym_DOT, + ACTIONS(3395), 1, + anon_sym_LBRACK2, + ACTIONS(3397), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3359), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3363), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3375), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3377), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3355), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3379), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3389), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3381), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [18112] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3540), 1, + anon_sym_COMMA, + STATE(1328), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3219), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3221), 53, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [18187] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3062), 1, + anon_sym_LPAREN, + STATE(1292), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2972), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2974), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [18262] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3062), 1, + anon_sym_LPAREN, + STATE(1290), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2972), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2974), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [18337] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3062), 1, + anon_sym_LPAREN, + STATE(1273), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2972), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2974), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [18412] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3383), 1, + anon_sym_in, + ACTIONS(3385), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3387), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3391), 1, + anon_sym_STAR_STAR, + ACTIONS(3393), 1, + anon_sym_DOT, + ACTIONS(3395), 1, + anon_sym_LBRACK2, + ACTIONS(3397), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3359), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3363), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3389), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3381), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 31, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [18505] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2631), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2633), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [18576] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3385), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3387), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3391), 1, + anon_sym_STAR_STAR, + ACTIONS(3393), 1, + anon_sym_DOT, + ACTIONS(3395), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3359), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3363), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3293), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3389), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 41, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [18663] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2631), 4, + sym__not_in, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2633), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [18734] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2611), 4, + sym__not_in, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2613), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [18805] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3357), 1, + anon_sym_PIPE, + ACTIONS(3367), 1, + anon_sym_when, + ACTIONS(3369), 1, + anon_sym_COLON_COLON, + ACTIONS(3371), 1, + anon_sym_EQ_GT, + ACTIONS(3373), 1, + anon_sym_EQ, + ACTIONS(3383), 1, + anon_sym_in, + ACTIONS(3385), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3387), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3391), 1, + anon_sym_STAR_STAR, + ACTIONS(3393), 1, + anon_sym_DOT, + ACTIONS(3395), 1, + anon_sym_LBRACK2, + ACTIONS(3397), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3359), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3363), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3375), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3377), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3355), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3379), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3389), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3381), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 11, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [18916] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2611), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2613), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [18987] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3357), 1, + anon_sym_PIPE, + ACTIONS(3367), 1, + anon_sym_when, + ACTIONS(3369), 1, + anon_sym_COLON_COLON, + ACTIONS(3371), 1, + anon_sym_EQ_GT, + ACTIONS(3373), 1, + anon_sym_EQ, + ACTIONS(3383), 1, + anon_sym_in, + ACTIONS(3385), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3387), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3391), 1, + anon_sym_STAR_STAR, + ACTIONS(3393), 1, + anon_sym_DOT, + ACTIONS(3395), 1, + anon_sym_LBRACK2, + ACTIONS(3397), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3359), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3363), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3375), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3377), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3355), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3379), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3389), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3381), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 11, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [19098] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3391), 1, + anon_sym_STAR_STAR, + ACTIONS(3393), 1, + anon_sym_DOT, + ACTIONS(3395), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3359), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3293), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3295), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [19177] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3542), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [19250] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3311), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3313), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [19321] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2647), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2649), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [19392] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2651), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2653), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [19463] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3331), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3333), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [19534] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3335), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3337), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [19605] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3399), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3401), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [19676] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3259), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3261), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [19747] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3207), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3209), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [19818] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3203), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3205), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [19889] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3199), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3201), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [19960] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3195), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3197), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [20031] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3183), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3185), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [20102] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3078), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3080), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [20173] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3187), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3189), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [20244] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3496), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3498), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [20315] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3183), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3185), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [20386] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3441), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3443), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [20457] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3183), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3185), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [20528] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3445), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3447), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [20599] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3500), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3502), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [20670] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3179), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3181), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [20741] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -172821,84 +177160,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [16901] = 4, + [20812] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3479), 4, - sym__newline_before_do, + ACTIONS(2996), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3481), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [16972] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3066), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3068), 56, + ACTIONS(2998), 56, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -172955,17 +177227,755 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [17043] = 4, + [20883] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3062), 3, + ACTIONS(3175), 4, + sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3064), 56, + ACTIONS(3177), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [20954] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3171), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3173), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [21025] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3167), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3169), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [21096] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3163), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3165), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [21167] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3407), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3409), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [21238] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3159), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3161), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [21309] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [21380] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3004), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3000), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3002), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [21453] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3253), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3255), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [21524] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3403), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3405), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [21595] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [21666] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2990), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2992), 56, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -173022,17 +178032,2047 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [17114] = 4, + [21737] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3080), 3, + ACTIONS(3106), 4, + sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3082), 56, + ACTIONS(3108), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [21808] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [21879] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [21950] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [22021] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [22092] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [22163] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2647), 4, + sym__not_in, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2649), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [22234] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2651), 4, + sym__not_in, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2653), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [22305] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [22376] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [22447] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3415), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3417), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [22518] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3480), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3482), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [22589] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [22660] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3245), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3247), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [22731] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [22802] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [22873] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3307), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3309), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [22944] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3303), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3305), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [23015] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3241), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3243), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [23086] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3010), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3006), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3008), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [23159] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3285), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3287), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [23230] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3289), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3291), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [23301] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [23372] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3357), 1, + anon_sym_PIPE, + ACTIONS(3369), 1, + anon_sym_COLON_COLON, + ACTIONS(3371), 1, + anon_sym_EQ_GT, + ACTIONS(3373), 1, + anon_sym_EQ, + ACTIONS(3383), 1, + anon_sym_in, + ACTIONS(3385), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3387), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3391), 1, + anon_sym_STAR_STAR, + ACTIONS(3393), 1, + anon_sym_DOT, + ACTIONS(3395), 1, + anon_sym_LBRACK2, + ACTIONS(3397), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3359), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3363), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3375), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3377), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3355), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3379), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3389), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3381), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [23481] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [23552] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [23623] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [23694] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [23765] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [23836] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3526), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3528), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [23907] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3026), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3028), 56, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -173089,85 +180129,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [17185] = 25, + [23978] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3315), 1, - anon_sym_PIPE, - ACTIONS(3325), 1, - anon_sym_when, - ACTIONS(3327), 1, - anon_sym_COLON_COLON, - ACTIONS(3329), 1, - anon_sym_EQ_GT, - ACTIONS(3331), 1, - anon_sym_EQ, - ACTIONS(3341), 1, - anon_sym_in, - ACTIONS(3343), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3345), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3349), 1, - anon_sym_STAR_STAR, - ACTIONS(3351), 1, - anon_sym_DOT, - ACTIONS(3353), 1, - anon_sym_LBRACK2, - ACTIONS(3355), 1, - sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3110), 2, + ACTIONS(3130), 4, sym__newline_before_do, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3317), 2, + anon_sym_LBRACK2, + ACTIONS(3132), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3321), 2, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3323), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3333), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3335), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3313), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3337), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3347), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3112), 9, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - ACTIONS(3339), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -173177,75 +180178,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [17298] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3315), 1, - anon_sym_PIPE, - ACTIONS(3325), 1, - anon_sym_when, - ACTIONS(3327), 1, - anon_sym_COLON_COLON, - ACTIONS(3329), 1, - anon_sym_EQ_GT, - ACTIONS(3331), 1, - anon_sym_EQ, - ACTIONS(3341), 1, anon_sym_in, - ACTIONS(3343), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3345), 1, anon_sym_SLASH_SLASH, - ACTIONS(3349), 1, - anon_sym_STAR_STAR, - ACTIONS(3351), 1, - anon_sym_DOT, - ACTIONS(3353), 1, - anon_sym_LBRACK2, - ACTIONS(3355), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3317), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3321), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3323), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3542), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3333), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3335), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3313), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3337), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3347), 6, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - ACTIONS(3339), 9, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [24049] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3122), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3124), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -173255,7 +180245,833 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3544), 9, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [24120] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3114), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3116), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [24191] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3486), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3488), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [24262] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3114), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3116), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [24333] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3122), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3124), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [24404] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3371), 1, + anon_sym_EQ_GT, + ACTIONS(3373), 1, + anon_sym_EQ, + ACTIONS(3383), 1, + anon_sym_in, + ACTIONS(3385), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3387), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3391), 1, + anon_sym_STAR_STAR, + ACTIONS(3393), 1, + anon_sym_DOT, + ACTIONS(3395), 1, + anon_sym_LBRACK2, + ACTIONS(3397), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3359), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3363), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3375), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3377), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3355), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3379), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3389), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3381), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 14, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [24509] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3373), 1, + anon_sym_EQ, + ACTIONS(3383), 1, + anon_sym_in, + ACTIONS(3385), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3387), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3391), 1, + anon_sym_STAR_STAR, + ACTIONS(3393), 1, + anon_sym_DOT, + ACTIONS(3395), 1, + anon_sym_LBRACK2, + ACTIONS(3397), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3359), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3363), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3375), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3377), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3355), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3379), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3389), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3381), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 15, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [24612] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3233), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3235), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [24683] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3383), 1, + anon_sym_in, + ACTIONS(3385), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3387), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3391), 1, + anon_sym_STAR_STAR, + ACTIONS(3393), 1, + anon_sym_DOT, + ACTIONS(3395), 1, + anon_sym_LBRACK2, + ACTIONS(3397), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3359), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3363), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3377), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3355), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3379), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3389), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3381), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 19, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [24782] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3122), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3124), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [24853] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3383), 1, + anon_sym_in, + ACTIONS(3385), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3387), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3391), 1, + anon_sym_STAR_STAR, + ACTIONS(3393), 1, + anon_sym_DOT, + ACTIONS(3395), 1, + anon_sym_LBRACK2, + ACTIONS(3397), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3359), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3363), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3355), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3379), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3389), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3381), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 22, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [24950] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3357), 1, + anon_sym_PIPE, + ACTIONS(3367), 1, + anon_sym_when, + ACTIONS(3369), 1, + anon_sym_COLON_COLON, + ACTIONS(3371), 1, + anon_sym_EQ_GT, + ACTIONS(3373), 1, + anon_sym_EQ, + ACTIONS(3383), 1, + anon_sym_in, + ACTIONS(3385), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3387), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3391), 1, + anon_sym_STAR_STAR, + ACTIONS(3393), 1, + anon_sym_DOT, + ACTIONS(3395), 1, + anon_sym_LBRACK2, + ACTIONS(3397), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3359), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3363), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3365), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3457), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3375), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3377), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3355), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3379), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3389), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3381), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3459), 9, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DASH_GT, @@ -173265,7 +181081,5071 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [17411] = 4, + [25063] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3357), 1, + anon_sym_PIPE, + ACTIONS(3367), 1, + anon_sym_when, + ACTIONS(3369), 1, + anon_sym_COLON_COLON, + ACTIONS(3371), 1, + anon_sym_EQ_GT, + ACTIONS(3373), 1, + anon_sym_EQ, + ACTIONS(3383), 1, + anon_sym_in, + ACTIONS(3385), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3387), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3391), 1, + anon_sym_STAR_STAR, + ACTIONS(3393), 1, + anon_sym_DOT, + ACTIONS(3395), 1, + anon_sym_LBRACK2, + ACTIONS(3397), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3359), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3363), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3365), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3544), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3375), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3377), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3355), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3379), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3389), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3381), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3546), 9, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [25176] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3548), 1, + anon_sym_COMMA, + STATE(1426), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3134), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3136), 53, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [25251] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3383), 1, + anon_sym_in, + ACTIONS(3385), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3387), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3391), 1, + anon_sym_STAR_STAR, + ACTIONS(3393), 1, + anon_sym_DOT, + ACTIONS(3395), 1, + anon_sym_LBRACK2, + ACTIONS(3397), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3359), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3363), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3355), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3389), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3381), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 27, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [25346] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3357), 1, + anon_sym_PIPE, + ACTIONS(3367), 1, + anon_sym_when, + ACTIONS(3369), 1, + anon_sym_COLON_COLON, + ACTIONS(3371), 1, + anon_sym_EQ_GT, + ACTIONS(3373), 1, + anon_sym_EQ, + ACTIONS(3383), 1, + anon_sym_in, + ACTIONS(3385), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3387), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3391), 1, + anon_sym_STAR_STAR, + ACTIONS(3393), 1, + anon_sym_DOT, + ACTIONS(3395), 1, + anon_sym_LBRACK2, + ACTIONS(3397), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3359), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3363), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3365), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3551), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3375), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3377), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3355), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3379), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3389), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3381), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3553), 9, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [25459] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3006), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3008), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [25530] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3295), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [25601] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3383), 1, + anon_sym_in, + ACTIONS(3385), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3387), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3391), 1, + anon_sym_STAR_STAR, + ACTIONS(3393), 1, + anon_sym_DOT, + ACTIONS(3395), 1, + anon_sym_LBRACK2, + ACTIONS(3397), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3359), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3363), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3389), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 40, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [25692] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3323), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3325), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [25763] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3387), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3391), 1, + anon_sym_STAR_STAR, + ACTIONS(3393), 1, + anon_sym_DOT, + ACTIONS(3395), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3359), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3363), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3293), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3389), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 42, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [25848] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3341), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3343), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [25919] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3295), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [25990] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3295), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26061] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3423), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3425), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26132] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3387), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3391), 1, + anon_sym_STAR_STAR, + ACTIONS(3393), 1, + anon_sym_DOT, + ACTIONS(3395), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3359), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3363), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3293), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3389), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 42, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26217] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3427), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3429), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26288] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3435), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3437), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26359] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3449), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3451), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26430] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3522), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3524), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26501] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3277), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3279), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26572] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3273), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3275), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26643] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3534), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3536), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26714] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3118), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3120), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26785] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3118), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3120), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26856] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3118), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3120), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26927] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3431), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3433), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26998] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3064), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3066), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [27069] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3351), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3353), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [27140] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3468), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3470), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [27211] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3155), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3157), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [27282] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3391), 1, + anon_sym_STAR_STAR, + ACTIONS(3393), 1, + anon_sym_DOT, + ACTIONS(3395), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3359), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3363), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3293), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3389), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 43, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [27365] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3237), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3239), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [27436] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3211), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3213), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [27507] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3555), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [27580] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3557), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [27653] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3074), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3076), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [27724] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3018), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3020), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [27795] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3559), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [27868] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3229), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3231), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [27939] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3215), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3217), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [28010] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3561), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [28083] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3563), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [28156] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3281), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3283), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [28227] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3126), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3128), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [28298] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3094), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3096), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [28369] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3565), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [28442] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3000), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3002), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [28513] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3000), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3002), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [28584] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3006), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3008), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [28655] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3327), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3329), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [28726] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3327), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3329), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [28797] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3319), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3321), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [28868] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3319), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3321), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [28939] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3391), 1, + anon_sym_STAR_STAR, + ACTIONS(3393), 1, + anon_sym_DOT, + ACTIONS(3395), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3295), 53, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [29016] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3319), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3321), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [29087] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3567), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [29160] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3289), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3291), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [29231] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2972), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2974), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [29302] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3285), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3287), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [29373] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3303), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3305), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [29444] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3307), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3309), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [29515] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3393), 1, + anon_sym_DOT, + ACTIONS(3395), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3191), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3193), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [29590] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3090), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3092), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [29661] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3297), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3299), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [29732] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3297), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3299), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [29803] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3516), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3518), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [29874] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3393), 1, + anon_sym_DOT, + ACTIONS(3395), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3118), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3120), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [29949] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3569), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [30022] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3393), 1, + anon_sym_DOT, + ACTIONS(3395), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3295), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [30097] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3269), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3271), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [30168] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3265), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3267), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [30239] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3191), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3193), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [30310] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3571), 1, + anon_sym_COMMA, + STATE(1496), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3457), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3459), 53, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [30385] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3574), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [30458] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3145), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3147), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [30529] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -173332,3586 +186212,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [17482] = 4, + [30600] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3373), 4, - sym__newline_before_do, + ACTIONS(3048), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3375), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [17553] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3377), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3379), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [17624] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3381), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3383), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [17695] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3385), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3387), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [17766] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3546), 1, - anon_sym_COMMA, - STATE(1362), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3475), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3477), 53, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [17841] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3289), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3291), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [17912] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3285), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3287), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [17983] = 10, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3349), 1, - anon_sym_STAR_STAR, - ACTIONS(3351), 1, - anon_sym_DOT, - ACTIONS(3353), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3317), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3321), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 3, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3347), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 43, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [18066] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3281), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3283), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [18137] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3546), 1, - anon_sym_COMMA, - STATE(1326), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3469), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3471), 53, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [18212] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3123), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3125), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [18283] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3345), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3349), 1, - anon_sym_STAR_STAR, - ACTIONS(3351), 1, - anon_sym_DOT, - ACTIONS(3353), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3317), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3321), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 3, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3347), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 42, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [18368] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3127), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3129), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [18439] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3131), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3133), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [18510] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3345), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3349), 1, - anon_sym_STAR_STAR, - ACTIONS(3351), 1, - anon_sym_DOT, - ACTIONS(3353), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3317), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3321), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 3, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3347), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 42, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [18595] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3135), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3137), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [18666] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3135), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3137), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [18737] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3131), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3133), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [18808] = 14, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3341), 1, - anon_sym_in, - ACTIONS(3343), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3345), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3349), 1, - anon_sym_STAR_STAR, - ACTIONS(3351), 1, - anon_sym_DOT, - ACTIONS(3353), 1, - anon_sym_LBRACK2, - ACTIONS(3355), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3317), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3321), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3347), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 40, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [18899] = 16, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3341), 1, - anon_sym_in, - ACTIONS(3343), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3345), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3349), 1, - anon_sym_STAR_STAR, - ACTIONS(3351), 1, - anon_sym_DOT, - ACTIONS(3353), 1, - anon_sym_LBRACK2, - ACTIONS(3355), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3317), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3321), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3313), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3347), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3339), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 27, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [18994] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3385), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3387), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [19065] = 17, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3341), 1, - anon_sym_in, - ACTIONS(3343), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3345), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3349), 1, - anon_sym_STAR_STAR, - ACTIONS(3351), 1, - anon_sym_DOT, - ACTIONS(3353), 1, - anon_sym_LBRACK2, - ACTIONS(3355), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3317), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3321), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3313), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3337), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3347), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3339), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 22, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [19162] = 18, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3341), 1, - anon_sym_in, - ACTIONS(3343), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3345), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3349), 1, - anon_sym_STAR_STAR, - ACTIONS(3351), 1, - anon_sym_DOT, - ACTIONS(3353), 1, - anon_sym_LBRACK2, - ACTIONS(3355), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3317), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3321), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3335), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3313), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3337), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3347), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3339), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 19, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [19261] = 20, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3331), 1, - anon_sym_EQ, - ACTIONS(3341), 1, - anon_sym_in, - ACTIONS(3343), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3345), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3349), 1, - anon_sym_STAR_STAR, - ACTIONS(3351), 1, - anon_sym_DOT, - ACTIONS(3353), 1, - anon_sym_LBRACK2, - ACTIONS(3355), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3317), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3321), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3333), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3335), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3313), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3337), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3347), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3339), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 15, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [19364] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3329), 1, - anon_sym_EQ_GT, - ACTIONS(3331), 1, - anon_sym_EQ, - ACTIONS(3341), 1, - anon_sym_in, - ACTIONS(3343), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3345), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3349), 1, - anon_sym_STAR_STAR, - ACTIONS(3351), 1, - anon_sym_DOT, - ACTIONS(3353), 1, - anon_sym_LBRACK2, - ACTIONS(3355), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3317), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3321), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3333), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3335), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3313), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3337), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3347), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3339), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 14, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [19469] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3315), 1, - anon_sym_PIPE, - ACTIONS(3327), 1, - anon_sym_COLON_COLON, - ACTIONS(3329), 1, - anon_sym_EQ_GT, - ACTIONS(3331), 1, - anon_sym_EQ, - ACTIONS(3341), 1, - anon_sym_in, - ACTIONS(3343), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3345), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3349), 1, - anon_sym_STAR_STAR, - ACTIONS(3351), 1, - anon_sym_DOT, - ACTIONS(3353), 1, - anon_sym_LBRACK2, - ACTIONS(3355), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3317), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3321), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3333), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3335), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3313), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3337), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3347), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3339), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [19578] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3315), 1, - anon_sym_PIPE, - ACTIONS(3325), 1, - anon_sym_when, - ACTIONS(3327), 1, - anon_sym_COLON_COLON, - ACTIONS(3329), 1, - anon_sym_EQ_GT, - ACTIONS(3331), 1, - anon_sym_EQ, - ACTIONS(3341), 1, - anon_sym_in, - ACTIONS(3343), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3345), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3349), 1, - anon_sym_STAR_STAR, - ACTIONS(3351), 1, - anon_sym_DOT, - ACTIONS(3353), 1, - anon_sym_LBRACK2, - ACTIONS(3355), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3317), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3321), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3333), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3335), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3313), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3337), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3347), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3339), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 11, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [19689] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3315), 1, - anon_sym_PIPE, - ACTIONS(3325), 1, - anon_sym_when, - ACTIONS(3327), 1, - anon_sym_COLON_COLON, - ACTIONS(3329), 1, - anon_sym_EQ_GT, - ACTIONS(3331), 1, - anon_sym_EQ, - ACTIONS(3341), 1, - anon_sym_in, - ACTIONS(3343), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3345), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3349), 1, - anon_sym_STAR_STAR, - ACTIONS(3351), 1, - anon_sym_DOT, - ACTIONS(3353), 1, - anon_sym_LBRACK2, - ACTIONS(3355), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3317), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3321), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3333), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3335), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3313), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3337), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3347), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3339), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 11, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [19800] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3349), 1, - anon_sym_STAR_STAR, - ACTIONS(3351), 1, - anon_sym_DOT, - ACTIONS(3353), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3317), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3389), 3, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3391), 51, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [19879] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3349), 1, - anon_sym_STAR_STAR, - ACTIONS(3351), 1, - anon_sym_DOT, - ACTIONS(3353), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 3, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3391), 53, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [19956] = 22, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3315), 1, - anon_sym_PIPE, - ACTIONS(3329), 1, - anon_sym_EQ_GT, - ACTIONS(3331), 1, - anon_sym_EQ, - ACTIONS(3341), 1, - anon_sym_in, - ACTIONS(3343), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3345), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3349), 1, - anon_sym_STAR_STAR, - ACTIONS(3351), 1, - anon_sym_DOT, - ACTIONS(3353), 1, - anon_sym_LBRACK2, - ACTIONS(3355), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3317), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3321), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3333), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3335), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3313), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3337), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3347), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3339), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [20063] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3341), 1, - anon_sym_in, - ACTIONS(3343), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3345), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3349), 1, - anon_sym_STAR_STAR, - ACTIONS(3351), 1, - anon_sym_DOT, - ACTIONS(3353), 1, - anon_sym_LBRACK2, - ACTIONS(3355), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3317), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3321), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3347), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3339), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 31, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [20156] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2639), 4, - sym__not_in, - aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(2641), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [20227] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2635), 4, - sym__not_in, - aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(2637), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [20298] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3465), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3467), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [20369] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3461), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3463), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [20440] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3343), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3345), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3349), 1, - anon_sym_STAR_STAR, - ACTIONS(3351), 1, - anon_sym_DOT, - ACTIONS(3353), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3317), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3321), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 3, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3347), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 41, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [20527] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3381), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3383), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [20598] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3381), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3383), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [20669] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3548), 1, - anon_sym_COMMA, - STATE(1361), 1, - aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3110), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3112), 53, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [20744] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3551), 1, - anon_sym_COMMA, - STATE(1362), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3479), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3481), 53, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [20819] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3139), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3141), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [20890] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3391), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [20961] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3393), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3395), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [21032] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3554), 1, - anon_sym_COMMA, - STATE(1361), 1, - aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3117), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3119), 53, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [21107] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3026), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3022), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3024), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [21180] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3026), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3050), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3052), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [21253] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3397), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3399), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [21324] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3391), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [21395] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3351), 1, - anon_sym_DOT, - ACTIONS(3353), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 3, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3391), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [21470] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3100), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3102), 56, + ACTIONS(3050), 56, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -176968,22 +186279,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [21541] = 6, + [30671] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3351), 1, - anon_sym_DOT, - ACTIONS(3353), 1, - anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3425), 3, + ACTIONS(3191), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - ACTIONS(3427), 54, + anon_sym_LBRACK2, + ACTIONS(3193), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -177030,24 +186339,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [21616] = 4, + [30742] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3014), 3, + ACTIONS(3052), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3016), 56, + ACTIONS(3054), 56, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -177104,892 +186413,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [21687] = 4, + [30813] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3389), 4, + ACTIONS(3141), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3391), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [21758] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3401), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3403), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [21829] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3405), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3407), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [21900] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3127), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3129), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [21971] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3123), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3125), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [22042] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3556), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3143), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3145), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [22115] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3409), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3411), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [22186] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3413), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3415), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [22257] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3417), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3419), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [22328] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3028), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3030), 56, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [22399] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3351), 1, - anon_sym_DOT, - ACTIONS(3353), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3433), 3, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3435), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [22474] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3421), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3423), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [22545] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3425), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3427), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [22616] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3269), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3271), 55, + ACTIONS(3143), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -178045,292 +186480,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [22687] = 4, + [30884] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3050), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3052), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [22758] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3022), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3024), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [22829] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3457), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3459), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [22900] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3425), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3427), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [22971] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2635), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2637), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, + ACTIONS(3576), 1, aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -178380,91 +186548,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [23042] = 4, + [30957] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2639), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2641), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, + ACTIONS(3578), 1, aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [23113] = 4, - ACTIONS(5), 1, - sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2643), 4, + ACTIONS(3223), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2645), 55, + ACTIONS(3225), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -178514,85 +186616,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [23184] = 4, + [31030] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2647), 4, + ACTIONS(3191), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2649), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [23255] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3425), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3427), 55, + ACTIONS(3193), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -178648,3268 +186683,1345 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [23326] = 4, + [31101] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3106), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3108), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [23397] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3149), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3151), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [23468] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3153), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3155), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [23539] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3157), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3159), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [23610] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3161), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3163), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [23681] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3165), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3167), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [23752] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3169), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3171), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [23823] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3173), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3175), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [23894] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2994), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2996), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [23965] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3257), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3259), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [24036] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3177), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3179), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [24107] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3034), 1, - anon_sym_LPAREN, - STATE(1136), 1, - sym__call_arguments_with_parentheses, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2972), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2974), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [24182] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3034), 1, - anon_sym_LPAREN, - STATE(1273), 1, - sym__call_arguments_with_parentheses, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2972), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2974), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [24257] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3034), 1, - anon_sym_LPAREN, - STATE(1274), 1, - sym__call_arguments_with_parentheses, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2972), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2974), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [24332] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3315), 1, - anon_sym_PIPE, - ACTIONS(3325), 1, - anon_sym_when, - ACTIONS(3327), 1, - anon_sym_COLON_COLON, - ACTIONS(3329), 1, - anon_sym_EQ_GT, - ACTIONS(3331), 1, - anon_sym_EQ, - ACTIONS(3341), 1, - anon_sym_in, - ACTIONS(3343), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3345), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3349), 1, - anon_sym_STAR_STAR, - ACTIONS(3351), 1, - anon_sym_DOT, - ACTIONS(3353), 1, - anon_sym_LBRACK2, - ACTIONS(3355), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3317), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3321), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3323), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3558), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3333), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3335), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3313), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3337), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3347), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3339), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3560), 9, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [24445] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3181), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3183), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [24516] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3457), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3459), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [24587] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3453), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3455), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [24658] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3277), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3279), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [24729] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3453), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3455), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [24800] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3453), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3455), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [24871] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3429), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3431), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [24942] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3076), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3078), 56, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [25013] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2643), 4, - sym__not_in, - aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(2645), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [25084] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3261), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3263), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [25155] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2972), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2974), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [25226] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3185), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3187), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [25297] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3449), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3451), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [25368] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3494), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3496), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [25439] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3445), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3447), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [25510] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3441), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3443), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [25581] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3437), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3439), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [25652] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3433), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3435), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [25723] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3433), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3435), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [25794] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3433), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3435), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [25865] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3265), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3267), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [25936] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3273), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3275), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [26007] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3526), 1, - anon_sym_in, - ACTIONS(3528), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3530), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3534), 1, - anon_sym_STAR_STAR, - ACTIONS(3536), 1, - anon_sym_DOT, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(3540), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3502), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3506), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3532), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3524), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 30, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [26099] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3265), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3267), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [26169] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3149), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3151), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [26239] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3377), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3379), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [26309] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3479), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3481), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [26379] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3185), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3187), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [26449] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3562), 2, - anon_sym_when, - anon_sym_DASH_GT, - ACTIONS(3421), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3423), 53, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [26521] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3401), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3403), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [26591] = 5, - ACTIONS(5), 1, - sym_comment, - STATE(1689), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2982), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(2984), 53, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [26663] = 5, - ACTIONS(5), 1, - sym_comment, - STATE(1690), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2978), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(2980), 53, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [26735] = 29, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3564), 1, - aux_sym__terminator_token1, - ACTIONS(3567), 1, - anon_sym_SEMI, - ACTIONS(3572), 1, - anon_sym_PIPE, ACTIONS(3580), 1, - anon_sym_when, - ACTIONS(3582), 1, - anon_sym_COLON_COLON, - ACTIONS(3584), 1, - anon_sym_EQ_GT, - ACTIONS(3586), 1, - anon_sym_EQ, - ACTIONS(3596), 1, - anon_sym_in, - ACTIONS(3598), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3600), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3604), 1, - anon_sym_STAR_STAR, - ACTIONS(3606), 1, - anon_sym_DOT, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(3610), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, sym__not_in, - STATE(259), 1, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31174] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3582), 1, + anon_sym_COMMA, + STATE(1496), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3506), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3508), 53, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31249] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3134), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3136), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31320] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3584), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31393] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3586), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31466] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3588), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31539] = 27, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3592), 1, + anon_sym_PIPE, + ACTIONS(3596), 1, + anon_sym_COMMA, + ACTIONS(3602), 1, + anon_sym_when, + ACTIONS(3604), 1, + anon_sym_COLON_COLON, + ACTIONS(3606), 1, + anon_sym_EQ_GT, + ACTIONS(3608), 1, + anon_sym_EQ, + ACTIONS(3618), 1, + anon_sym_in, + ACTIONS(3620), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3622), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3626), 1, + anon_sym_STAR_STAR, + ACTIONS(3628), 1, + anon_sym_DOT, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(3632), 1, + sym__not_in, + STATE(1508), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3351), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3594), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3598), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3600), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3610), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3612), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3590), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3614), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3624), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3353), 7, + anon_sym_SEMI, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(3616), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [31656] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3098), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3100), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31727] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3634), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31800] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3636), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31873] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3638), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31946] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3203), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3205), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [32016] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3199), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3201), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [32086] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3592), 1, + anon_sym_PIPE, + ACTIONS(3602), 1, + anon_sym_when, + ACTIONS(3604), 1, + anon_sym_COLON_COLON, + ACTIONS(3606), 1, + anon_sym_EQ_GT, + ACTIONS(3608), 1, + anon_sym_EQ, + ACTIONS(3618), 1, + anon_sym_in, + ACTIONS(3620), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3622), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3626), 1, + anon_sym_STAR_STAR, + ACTIONS(3628), 1, + anon_sym_DOT, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(3632), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3457), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3594), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3598), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3600), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3610), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3612), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3590), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3614), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3624), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3459), 8, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(3616), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [32198] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3592), 1, + anon_sym_PIPE, + ACTIONS(3602), 1, + anon_sym_when, + ACTIONS(3604), 1, + anon_sym_COLON_COLON, + ACTIONS(3606), 1, + anon_sym_EQ_GT, + ACTIONS(3608), 1, + anon_sym_EQ, + ACTIONS(3618), 1, + anon_sym_in, + ACTIONS(3620), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3622), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3626), 1, + anon_sym_STAR_STAR, + ACTIONS(3628), 1, + anon_sym_DOT, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(3632), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3544), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3594), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3598), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3600), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3610), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3612), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3590), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3614), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3624), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3546), 8, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(3616), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [32310] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3592), 1, + anon_sym_PIPE, + ACTIONS(3602), 1, + anon_sym_when, + ACTIONS(3604), 1, + anon_sym_COLON_COLON, + ACTIONS(3606), 1, + anon_sym_EQ_GT, + ACTIONS(3608), 1, + anon_sym_EQ, + ACTIONS(3618), 1, + anon_sym_in, + ACTIONS(3620), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3622), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3626), 1, + anon_sym_STAR_STAR, + ACTIONS(3628), 1, + anon_sym_DOT, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(3632), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3551), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3594), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3598), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3600), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3610), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3612), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3590), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3614), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3624), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3553), 8, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(3616), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [32422] = 33, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(2918), 1, + anon_sym_DASH_GT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3640), 1, + anon_sym_SEMI, + ACTIONS(3642), 1, + anon_sym_RPAREN, + ACTIONS(3646), 1, + anon_sym_PIPE, + ACTIONS(3650), 1, + anon_sym_COMMA, + ACTIONS(3656), 1, + anon_sym_when, + ACTIONS(3659), 1, + anon_sym_COLON_COLON, + ACTIONS(3661), 1, + anon_sym_EQ_GT, + ACTIONS(3663), 1, + anon_sym_EQ, + ACTIONS(3673), 1, + anon_sym_in, + ACTIONS(3675), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + sym__not_in, + STATE(376), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(5016), 1, + aux_sym_block_repeat2, + STATE(5161), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + STATE(5437), 1, + aux_sym__stab_clause_arguments_with_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3654), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3665), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3667), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3644), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3669), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3671), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [32550] = 29, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3687), 1, + aux_sym__terminator_token1, + ACTIONS(3690), 1, + anon_sym_SEMI, + ACTIONS(3695), 1, + anon_sym_PIPE, + ACTIONS(3703), 1, + anon_sym_when, + ACTIONS(3705), 1, + anon_sym_COLON_COLON, + ACTIONS(3707), 1, + anon_sym_EQ_GT, + ACTIONS(3709), 1, + anon_sym_EQ, + ACTIONS(3719), 1, + anon_sym_in, + ACTIONS(3721), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3723), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3727), 1, + anon_sym_STAR_STAR, + ACTIONS(3729), 1, + anon_sym_DOT, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(3733), 1, + sym__not_in, + STATE(261), 1, sym__terminator, STATE(1022), 1, aux_sym__terminator_repeat1, - STATE(3731), 1, + STATE(4349), 1, aux_sym_source_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3574), 2, + ACTIONS(3697), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3576), 2, + ACTIONS(3699), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3578), 2, + ACTIONS(3701), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3588), 3, + ACTIONS(3711), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3590), 3, + ACTIONS(3713), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3570), 4, + ACTIONS(3693), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1329), 5, + ACTIONS(1323), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - ACTIONS(3592), 5, + ACTIONS(3715), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3602), 6, + ACTIONS(3725), 6, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - ACTIONS(3594), 9, + ACTIONS(3717), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -181919,17 +188031,249 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [26855] = 4, + [32670] = 5, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3405), 3, + ACTIONS(3735), 2, + anon_sym_when, + anon_sym_DASH_GT, + ACTIONS(3516), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3407), 55, + ACTIONS(3518), 53, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [32742] = 29, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3695), 1, + anon_sym_PIPE, + ACTIONS(3703), 1, + anon_sym_when, + ACTIONS(3705), 1, + anon_sym_COLON_COLON, + ACTIONS(3707), 1, + anon_sym_EQ_GT, + ACTIONS(3709), 1, + anon_sym_EQ, + ACTIONS(3719), 1, + anon_sym_in, + ACTIONS(3721), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3723), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3727), 1, + anon_sym_STAR_STAR, + ACTIONS(3729), 1, + anon_sym_DOT, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(3733), 1, + sym__not_in, + ACTIONS(3737), 1, + aux_sym__terminator_token1, + ACTIONS(3740), 1, + anon_sym_SEMI, + STATE(259), 1, + sym__terminator, + STATE(1022), 1, + aux_sym__terminator_repeat1, + STATE(4345), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3697), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3699), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3701), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3711), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3713), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3693), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3715), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3743), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(3725), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3717), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [32862] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3620), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3622), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3626), 1, + anon_sym_STAR_STAR, + ACTIONS(3628), 1, + anon_sym_DOT, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3594), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3598), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3293), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3624), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 40, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [32948] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3207), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3209), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -181985,17 +188329,536 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [26925] = 4, + [33018] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3618), 1, + anon_sym_in, + ACTIONS(3620), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3622), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3626), 1, + anon_sym_STAR_STAR, + ACTIONS(3628), 1, + anon_sym_DOT, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(3632), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3594), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3598), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3624), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3616), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 30, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [33110] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2647), 3, + ACTIONS(3195), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2649), 55, + ACTIONS(3197), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [33180] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3592), 1, + anon_sym_PIPE, + ACTIONS(3606), 1, + anon_sym_EQ_GT, + ACTIONS(3608), 1, + anon_sym_EQ, + ACTIONS(3618), 1, + anon_sym_in, + ACTIONS(3620), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3622), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3626), 1, + anon_sym_STAR_STAR, + ACTIONS(3628), 1, + anon_sym_DOT, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(3632), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3594), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3598), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3610), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3612), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3590), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3614), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3624), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3616), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [33286] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3626), 1, + anon_sym_STAR_STAR, + ACTIONS(3628), 1, + anon_sym_DOT, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3295), 52, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [33362] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3626), 1, + anon_sym_STAR_STAR, + ACTIONS(3628), 1, + anon_sym_DOT, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3594), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3293), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3295), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [33440] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3745), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [33512] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3592), 1, + anon_sym_PIPE, + ACTIONS(3602), 1, + anon_sym_when, + ACTIONS(3604), 1, + anon_sym_COLON_COLON, + ACTIONS(3606), 1, + anon_sym_EQ_GT, + ACTIONS(3608), 1, + anon_sym_EQ, + ACTIONS(3618), 1, + anon_sym_in, + ACTIONS(3620), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3622), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3626), 1, + anon_sym_STAR_STAR, + ACTIONS(3628), 1, + anon_sym_DOT, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(3632), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3594), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3598), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3610), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3612), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3590), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3614), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3624), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3616), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 10, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [33622] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3110), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3112), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -182051,19 +188914,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [26995] = 4, + [33692] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3004), 1, + aux_sym_quoted_keyword_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3080), 3, + ACTIONS(3000), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3082), 55, + ACTIONS(3002), 54, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -182117,17 +188981,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [27065] = 4, + [33764] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3010), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3006), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3008), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [33836] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3494), 3, + ACTIONS(3183), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3496), 55, + ACTIONS(3185), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -182183,19 +189114,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [27135] = 5, + [33906] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3026), 1, - aux_sym_quoted_keyword_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3050), 3, + ACTIONS(3006), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3052), 54, + ACTIONS(3008), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -182244,25 +189173,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [27207] = 5, + [33976] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3026), 1, - aux_sym_quoted_keyword_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3022), 3, + ACTIONS(3000), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3024), 54, + ACTIONS(3002), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -182311,13 +189239,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [27279] = 4, + [34046] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -182328,72 +189257,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, anon_sym_LBRACK2, ACTIONS(3291), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [27349] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3181), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3183), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -182449,7 +189312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [27419] = 4, + [34116] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -182460,72 +189323,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, anon_sym_LBRACK2, ACTIONS(3287), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [27489] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3177), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3179), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -182581,2884 +189378,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [27559] = 4, + [34186] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3281), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3283), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3592), 1, anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(3602), 1, anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [27629] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3173), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3175), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [27699] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3169), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3171), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [27769] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3612), 1, - anon_sym_LPAREN, - STATE(1756), 1, - sym__call_arguments_with_parentheses, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2972), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(2974), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [27843] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3612), 1, - anon_sym_LPAREN, - STATE(1763), 1, - sym__call_arguments_with_parentheses, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2972), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(2974), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [27917] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3612), 1, - anon_sym_LPAREN, - STATE(1772), 1, - sym__call_arguments_with_parentheses, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2972), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(2974), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [27991] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3500), 1, - anon_sym_PIPE, - ACTIONS(3510), 1, - anon_sym_when, - ACTIONS(3512), 1, - anon_sym_COLON_COLON, - ACTIONS(3514), 1, - anon_sym_EQ_GT, - ACTIONS(3516), 1, - anon_sym_EQ, - ACTIONS(3526), 1, - anon_sym_in, - ACTIONS(3528), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3530), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3534), 1, - anon_sym_STAR_STAR, - ACTIONS(3536), 1, - anon_sym_DOT, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(3540), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3110), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3502), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3506), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3508), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3518), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3520), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3498), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3522), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3532), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3112), 8, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - ACTIONS(3524), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [28103] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3500), 1, - anon_sym_PIPE, - ACTIONS(3510), 1, - anon_sym_when, - ACTIONS(3512), 1, - anon_sym_COLON_COLON, - ACTIONS(3514), 1, - anon_sym_EQ_GT, - ACTIONS(3516), 1, - anon_sym_EQ, - ACTIONS(3526), 1, - anon_sym_in, - ACTIONS(3528), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3530), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3534), 1, - anon_sym_STAR_STAR, - ACTIONS(3536), 1, - anon_sym_DOT, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(3540), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3502), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3506), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3508), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3542), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3518), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3520), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3498), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3522), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3532), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3544), 8, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - ACTIONS(3524), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [28215] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3165), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3167), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [28285] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3500), 1, - anon_sym_PIPE, - ACTIONS(3510), 1, - anon_sym_when, - ACTIONS(3512), 1, - anon_sym_COLON_COLON, - ACTIONS(3514), 1, - anon_sym_EQ_GT, - ACTIONS(3516), 1, - anon_sym_EQ, - ACTIONS(3526), 1, - anon_sym_in, - ACTIONS(3528), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3530), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3534), 1, - anon_sym_STAR_STAR, - ACTIONS(3536), 1, - anon_sym_DOT, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(3540), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3502), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3506), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3508), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3558), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3518), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3520), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3498), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3522), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3532), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3560), 8, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - ACTIONS(3524), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [28397] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3161), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3163), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [28467] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3409), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3411), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [28537] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3293), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3295), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [28607] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3413), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3415), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [28677] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3297), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3299), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [28747] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3301), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3303), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [28817] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3297), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3299), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [28887] = 29, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3572), 1, - anon_sym_PIPE, - ACTIONS(3580), 1, - anon_sym_when, - ACTIONS(3582), 1, - anon_sym_COLON_COLON, - ACTIONS(3584), 1, - anon_sym_EQ_GT, - ACTIONS(3586), 1, - anon_sym_EQ, - ACTIONS(3596), 1, - anon_sym_in, - ACTIONS(3598), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3600), 1, - anon_sym_SLASH_SLASH, ACTIONS(3604), 1, - anon_sym_STAR_STAR, + anon_sym_COLON_COLON, ACTIONS(3606), 1, - anon_sym_DOT, + anon_sym_EQ_GT, ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(3610), 1, - sym__not_in, - ACTIONS(3614), 1, - aux_sym__terminator_token1, - ACTIONS(3617), 1, - anon_sym_SEMI, - STATE(260), 1, - sym__terminator, - STATE(1022), 1, - aux_sym__terminator_repeat1, - STATE(3733), 1, - aux_sym_source_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3574), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3576), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3578), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3588), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3590), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3570), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3592), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3620), 5, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - ACTIONS(3602), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3594), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [29007] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3297), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3299), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, + ACTIONS(3618), 1, anon_sym_in, + ACTIONS(3620), 1, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [29077] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3305), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3307), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [29147] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3417), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3419), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [29217] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3309), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3311), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [29287] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3357), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3359), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [29357] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3135), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3137), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [29427] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3131), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3133), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [29497] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3157), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3159), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [29567] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3213), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3215), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [29637] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3421), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3423), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [29707] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3425), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3427), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [29777] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3361), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3363), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [29847] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3425), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3427), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [29917] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3425), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3427), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [29987] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3391), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [30057] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2994), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2996), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [30127] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3429), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3431), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [30197] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3365), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3367), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [30267] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3369), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3371), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [30337] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3373), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3375), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [30407] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3123), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3125), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [30477] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3536), 1, - anon_sym_DOT, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3425), 3, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3427), 53, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [30551] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3127), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3129), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [30621] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3536), 1, - anon_sym_DOT, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 3, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3391), 53, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [30695] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(432), 1, - anon_sym_do, ACTIONS(3622), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3626), 1, + anon_sym_STAR_STAR, + ACTIONS(3628), 1, + anon_sym_DOT, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(3632), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, sym__newline_before_do, - STATE(2175), 1, + aux_sym__terminator_token1, + ACTIONS(3594), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3598), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3610), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3612), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3590), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3614), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3624), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3616), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 10, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [34296] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3592), 1, + anon_sym_PIPE, + ACTIONS(3604), 1, + anon_sym_COLON_COLON, + ACTIONS(3606), 1, + anon_sym_EQ_GT, + ACTIONS(3608), 1, + anon_sym_EQ, + ACTIONS(3618), 1, + anon_sym_in, + ACTIONS(3620), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3622), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3626), 1, + anon_sym_STAR_STAR, + ACTIONS(3628), 1, + anon_sym_DOT, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(3632), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3594), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3598), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3610), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3612), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3590), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3614), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3624), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3616), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 11, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [34404] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(414), 1, + anon_sym_do, + ACTIONS(3747), 1, + sym__newline_before_do, + STATE(2537), 1, sym_do_block, ACTIONS(2978), 2, sym__not_in, @@ -185520,17 +189618,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [30771] = 4, + [34480] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2635), 3, + ACTIONS(3303), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2637), 55, + ACTIONS(3305), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -185586,17 +189684,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [30841] = 4, + [34550] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2639), 3, + ACTIONS(3307), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2641), 55, + ACTIONS(3309), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -185652,1151 +189750,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [30911] = 4, + [34620] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3433), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3435), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [30981] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3433), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3435), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [31051] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3437), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3439), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [31121] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3441), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3443), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [31191] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3624), 1, - anon_sym_COMMA, - STATE(1505), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3479), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3481), 53, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [31265] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3627), 1, - anon_sym_COMMA, - STATE(1505), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3475), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3477), 53, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [31339] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3189), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3191), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [31409] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3433), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3435), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [31479] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3153), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3155), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [31549] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3445), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3447), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [31619] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2643), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2645), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [31689] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3127), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3129), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [31759] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3123), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3125), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [31829] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3193), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3195), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [31899] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3391), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [31969] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3536), 1, - anon_sym_DOT, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3433), 3, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3435), 53, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_after, - anon_sym_catch, + ACTIONS(414), 1, anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [32043] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3197), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3199), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [32113] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(432), 1, - anon_sym_do, - ACTIONS(3629), 1, + ACTIONS(3749), 1, sym__newline_before_do, - STATE(2177), 1, + STATE(2538), 1, sym_do_block, - ACTIONS(2982), 2, + ACTIONS(2984), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2984), 52, + ACTIONS(2986), 52, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -186849,17 +189819,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [32189] = 4, + [34696] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3201), 3, + ACTIONS(3187), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3203), 55, + ACTIONS(3189), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [34766] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3183), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3185), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [34836] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3311), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3313), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -186915,909 +190017,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [32259] = 6, + [34906] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3627), 1, - anon_sym_COMMA, - STATE(1506), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3469), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3471), 53, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [32333] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3631), 2, - anon_sym_when, - anon_sym_DASH_GT, - ACTIONS(3494), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3496), 53, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [32405] = 33, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(2918), 1, - anon_sym_DASH_GT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3633), 1, - anon_sym_SEMI, - ACTIONS(3635), 1, - anon_sym_RPAREN, - ACTIONS(3639), 1, - anon_sym_PIPE, - ACTIONS(3643), 1, - anon_sym_COMMA, - ACTIONS(3649), 1, - anon_sym_when, - ACTIONS(3652), 1, - anon_sym_COLON_COLON, - ACTIONS(3654), 1, - anon_sym_EQ_GT, - ACTIONS(3656), 1, - anon_sym_EQ, - ACTIONS(3666), 1, - anon_sym_in, - ACTIONS(3668), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3678), 1, - sym__not_in, - STATE(433), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4315), 1, - aux_sym_block_repeat2, - STATE(4529), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - STATE(4838), 1, - aux_sym__stab_clause_arguments_with_parentheses_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3658), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3660), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3637), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3662), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3664), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [32533] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3058), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3060), 55, - anon_sym_SEMI, + ACTIONS(3751), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [32603] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, + STATE(1814), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3096), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3098), 55, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [32673] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3018), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3020), 55, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [32743] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3090), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3092), 55, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [32813] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3072), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3074), 55, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [32883] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3205), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3207), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [32953] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2635), 4, - sym__not_in, - aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(2637), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [33023] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2639), 4, - sym__not_in, - aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(2641), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [33093] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3449), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3451), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [33163] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3131), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3133), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [33233] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, ACTIONS(2972), 3, + sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2974), 55, - anon_sym_SEMI, + ACTIONS(2974), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -187864,26 +190083,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [33303] = 4, + anon_sym_do, + [34980] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3628), 1, + anon_sym_DOT, + ACTIONS(3630), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3453), 3, + ACTIONS(3191), 3, + sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3455), 55, + ACTIONS(3193), 53, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -187930,27 +190147,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [33373] = 4, + [35054] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3066), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3068), 55, - anon_sym_SEMI, + ACTIONS(3751), 1, anon_sym_LPAREN, + STATE(1815), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2972), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2974), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -187998,91 +190220,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [33443] = 4, + anon_sym_do, + [35128] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3453), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3455), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [33513] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3062), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3064), 55, - anon_sym_SEMI, + ACTIONS(3751), 1, anon_sym_LPAREN, + STATE(1818), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2972), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2974), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -188130,88 +190288,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [33583] = 4, + anon_sym_do, + [35202] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3044), 3, + ACTIONS(3179), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3046), 55, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [33653] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3397), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3399), 55, + ACTIONS(3181), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -188267,414 +190355,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [33723] = 4, + [35272] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3393), 3, + ACTIONS(3331), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3395), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [33793] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3391), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [33863] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3680), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3143), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3145), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [33935] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3465), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3467), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [34005] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3461), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3463), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [34075] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3381), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3383), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [34145] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3209), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3211), 55, + ACTIONS(3333), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -188730,314 +190421,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [34215] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3528), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3530), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3534), 1, - anon_sym_STAR_STAR, - ACTIONS(3536), 1, - anon_sym_DOT, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3502), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3506), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 3, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3532), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 40, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [34301] = 22, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3500), 1, - anon_sym_PIPE, - ACTIONS(3514), 1, - anon_sym_EQ_GT, - ACTIONS(3516), 1, - anon_sym_EQ, - ACTIONS(3526), 1, - anon_sym_in, - ACTIONS(3528), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3530), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3534), 1, - anon_sym_STAR_STAR, - ACTIONS(3536), 1, - anon_sym_DOT, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(3540), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3502), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3506), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3518), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3520), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3498), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3522), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3532), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3524), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [34407] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3534), 1, - anon_sym_STAR_STAR, - ACTIONS(3536), 1, - anon_sym_DOT, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 3, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3391), 52, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [34483] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3534), 1, - anon_sym_STAR_STAR, - ACTIONS(3536), 1, - anon_sym_DOT, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3502), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3389), 3, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3391), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [34561] = 4, + [35342] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3050), 3, + ACTIONS(3175), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3052), 55, + ACTIONS(3177), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -189093,17 +190487,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [34631] = 4, + [35412] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3022), 3, + ACTIONS(3171), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3024), 55, + ACTIONS(3173), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -189159,17 +190553,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [34701] = 4, + [35482] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3217), 3, + ACTIONS(3335), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3219), 55, + ACTIONS(3337), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -189225,17 +190619,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [34771] = 4, + [35552] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3221), 3, + ACTIONS(3167), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3223), 55, + ACTIONS(3169), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [35622] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3163), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3165), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [35692] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3399), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3401), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -189291,17 +190817,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [34841] = 4, + [35762] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3225), 3, + ACTIONS(3441), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3227), 55, + ACTIONS(3443), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -189357,17 +190883,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [34911] = 4, + [35832] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3229), 3, + ACTIONS(3445), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3231), 55, + ACTIONS(3447), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -189423,17 +190949,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [34981] = 4, + [35902] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3233), 3, + ACTIONS(3500), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3235), 55, + ACTIONS(3502), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -189489,17 +191015,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [35051] = 4, + [35972] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3237), 3, + ACTIONS(3522), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3239), 55, + ACTIONS(3524), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -189555,17 +191081,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [35121] = 4, + [36042] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3241), 3, + ACTIONS(3526), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3243), 55, + ACTIONS(3528), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -189621,189 +191147,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [35191] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3500), 1, - anon_sym_PIPE, - ACTIONS(3510), 1, - anon_sym_when, - ACTIONS(3512), 1, - anon_sym_COLON_COLON, - ACTIONS(3514), 1, - anon_sym_EQ_GT, - ACTIONS(3516), 1, - anon_sym_EQ, - ACTIONS(3526), 1, - anon_sym_in, - ACTIONS(3528), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3530), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3534), 1, - anon_sym_STAR_STAR, - ACTIONS(3536), 1, - anon_sym_DOT, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(3540), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3502), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3506), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3518), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3520), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3498), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3522), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3532), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3524), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 10, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [35301] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3500), 1, - anon_sym_PIPE, - ACTIONS(3510), 1, - anon_sym_when, - ACTIONS(3512), 1, - anon_sym_COLON_COLON, - ACTIONS(3514), 1, - anon_sym_EQ_GT, - ACTIONS(3516), 1, - anon_sym_EQ, - ACTIONS(3526), 1, - anon_sym_in, - ACTIONS(3528), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3530), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3534), 1, - anon_sym_STAR_STAR, - ACTIONS(3536), 1, - anon_sym_DOT, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(3540), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3502), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3506), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3518), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3520), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3498), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3522), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3532), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3524), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 10, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [35411] = 4, + [36112] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3245), 3, + ACTIONS(3530), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3247), 55, + ACTIONS(3532), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -189859,178 +191213,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [35481] = 33, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(2918), 1, - anon_sym_DASH_GT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3639), 1, - anon_sym_PIPE, - ACTIONS(3643), 1, - anon_sym_COMMA, - ACTIONS(3649), 1, - anon_sym_when, - ACTIONS(3652), 1, - anon_sym_COLON_COLON, - ACTIONS(3654), 1, - anon_sym_EQ_GT, - ACTIONS(3656), 1, - anon_sym_EQ, - ACTIONS(3666), 1, - anon_sym_in, - ACTIONS(3668), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3678), 1, - sym__not_in, - ACTIONS(3682), 1, - anon_sym_SEMI, - ACTIONS(3684), 1, - anon_sym_RPAREN, - STATE(400), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4354), 1, - aux_sym_block_repeat2, - STATE(4529), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - STATE(4838), 1, - aux_sym__stab_clause_arguments_with_parentheses_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3658), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3660), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3637), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3662), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3664), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [35609] = 4, + [36182] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3457), 3, + ACTIONS(3480), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3459), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [35679] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3135), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3137), 55, + ACTIONS(3482), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -190086,102 +191279,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [35749] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3500), 1, - anon_sym_PIPE, - ACTIONS(3512), 1, - anon_sym_COLON_COLON, - ACTIONS(3514), 1, - anon_sym_EQ_GT, - ACTIONS(3516), 1, - anon_sym_EQ, - ACTIONS(3526), 1, - anon_sym_in, - ACTIONS(3528), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3530), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3534), 1, - anon_sym_STAR_STAR, - ACTIONS(3536), 1, - anon_sym_DOT, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(3540), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3502), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3506), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3518), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3520), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3498), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3522), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3532), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3524), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 11, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [35857] = 4, + [36252] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3249), 3, + ACTIONS(3415), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3251), 55, + ACTIONS(3417), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -190237,238 +191345,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [35927] = 4, + [36322] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3076), 3, + ACTIONS(3159), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3078), 55, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [35997] = 10, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3534), 1, - anon_sym_STAR_STAR, - ACTIONS(3536), 1, - anon_sym_DOT, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3502), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3506), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 3, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3532), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 42, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [36079] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3514), 1, - anon_sym_EQ_GT, - ACTIONS(3516), 1, - anon_sym_EQ, - ACTIONS(3526), 1, - anon_sym_in, - ACTIONS(3528), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3530), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3534), 1, - anon_sym_STAR_STAR, - ACTIONS(3536), 1, - anon_sym_DOT, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(3540), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3502), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3506), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3518), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3520), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3498), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3522), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3532), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3524), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 13, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [36183] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3381), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3383), 55, + ACTIONS(3161), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -190524,993 +191411,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [36253] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3530), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3534), 1, - anon_sym_STAR_STAR, - ACTIONS(3536), 1, - anon_sym_DOT, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3502), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3506), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 3, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3532), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 41, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [36337] = 4, + [36392] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3385), 3, + ACTIONS(3411), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3387), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [36407] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3385), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3387), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [36477] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3530), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3534), 1, - anon_sym_STAR_STAR, - ACTIONS(3536), 1, - anon_sym_DOT, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3502), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3506), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 3, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3532), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 41, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [36561] = 14, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3526), 1, - anon_sym_in, - ACTIONS(3528), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3530), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3534), 1, - anon_sym_STAR_STAR, - ACTIONS(3536), 1, - anon_sym_DOT, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(3540), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3502), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3506), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3532), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 39, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [36651] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2643), 4, - sym__not_in, - aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(2645), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [36721] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2647), 4, - sym__not_in, - aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(2649), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [36791] = 20, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3516), 1, - anon_sym_EQ, - ACTIONS(3526), 1, - anon_sym_in, - ACTIONS(3528), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3530), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3534), 1, - anon_sym_STAR_STAR, - ACTIONS(3536), 1, - anon_sym_DOT, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(3540), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3502), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3506), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3518), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3520), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3498), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3522), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3532), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3524), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 14, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [36893] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3028), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3030), 55, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [36963] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3453), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3455), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [37033] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3014), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3016), 55, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [37103] = 16, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3526), 1, - anon_sym_in, - ACTIONS(3528), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3530), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3534), 1, - anon_sym_STAR_STAR, - ACTIONS(3536), 1, - anon_sym_DOT, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(3540), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3502), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3506), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3498), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3532), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3524), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 26, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [37197] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3100), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3102), 55, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [37267] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3381), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3383), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [37337] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3269), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3271), 55, + ACTIONS(3413), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -191566,23 +191477,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [37407] = 4, + [36462] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3457), 3, + ACTIONS(3345), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3459), 55, + ACTIONS(3347), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -191632,67 +191543,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [37477] = 17, + [36532] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3526), 1, - anon_sym_in, - ACTIONS(3528), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3530), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3534), 1, - anon_sym_STAR_STAR, - ACTIONS(3536), 1, - anon_sym_DOT, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(3540), 1, - sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3389), 2, - sym__newline_before_do, + ACTIONS(3315), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3502), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3506), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3498), 4, + anon_sym_LBRACK2, + ACTIONS(3317), 55, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3522), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3532), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3524), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 21, - anon_sym_SEMI, anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -191705,64 +191575,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [37573] = 18, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3526), 1, - anon_sym_in, - ACTIONS(3528), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3530), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3534), 1, - anon_sym_STAR_STAR, - ACTIONS(3536), 1, - anon_sym_DOT, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(3540), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3502), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3506), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3520), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3498), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3522), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3532), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3524), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -191772,10 +191591,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3391), 18, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [36602] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3628), 1, + anon_sym_DOT, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3118), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3120), 53, anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -191785,13 +191641,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [37671] = 4, + [36676] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -191802,6 +191688,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, anon_sym_LBRACK2, ACTIONS(3108), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [36746] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3277), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3279), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -191857,7 +191809,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [37741] = 4, + [36816] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3273), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3275), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [36886] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3259), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3261), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [36956] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -191923,23 +192007,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [37811] = 4, + [37026] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3257), 3, + ACTIONS(3407), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3259), 55, + ACTIONS(3409), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -191989,23 +192073,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [37881] = 4, + [37096] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3261), 3, + ACTIONS(3403), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3263), 55, + ACTIONS(3405), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -192055,2979 +192139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [37951] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3185), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3187), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [38020] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2639), 4, - sym__newline_before_do, - sym__not_in, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(2641), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [38089] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3080), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3082), 53, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [38158] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3425), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3427), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [38227] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3391), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [38296] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3401), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3403), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [38365] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2647), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2649), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [38434] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2643), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2645), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [38503] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2639), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2641), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [38572] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2635), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2637), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [38641] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(910), 1, - anon_sym_RPAREN, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(2885), 1, - anon_sym_COMMA, - ACTIONS(2918), 1, - anon_sym_DASH_GT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3639), 1, - anon_sym_PIPE, - ACTIONS(3649), 1, - anon_sym_when, - ACTIONS(3652), 1, - anon_sym_COLON_COLON, - ACTIONS(3654), 1, - anon_sym_EQ_GT, - ACTIONS(3656), 1, - anon_sym_EQ, - ACTIONS(3666), 1, - anon_sym_in, - ACTIONS(3668), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3678), 1, - sym__not_in, - ACTIONS(3686), 1, - anon_sym_SEMI, - STATE(392), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4366), 1, - aux_sym_block_repeat2, - STATE(4529), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3658), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3660), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3637), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3662), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3664), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [38766] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(1639), 1, - anon_sym_RPAREN, - ACTIONS(2885), 1, - anon_sym_COMMA, - ACTIONS(2918), 1, - anon_sym_DASH_GT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3639), 1, - anon_sym_PIPE, - ACTIONS(3649), 1, - anon_sym_when, - ACTIONS(3652), 1, - anon_sym_COLON_COLON, - ACTIONS(3654), 1, - anon_sym_EQ_GT, - ACTIONS(3656), 1, - anon_sym_EQ, - ACTIONS(3666), 1, - anon_sym_in, - ACTIONS(3668), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3678), 1, - sym__not_in, - ACTIONS(3688), 1, - anon_sym_SEMI, - STATE(389), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4371), 1, - aux_sym_block_repeat2, - STATE(4529), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3658), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3660), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3637), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3662), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3664), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [38891] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3131), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3133), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [38960] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3397), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3399), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [39029] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3405), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3407), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [39098] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3409), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3411), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [39167] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3393), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3395), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [39236] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3391), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [39305] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3413), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3415), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [39374] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3381), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3383), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [39443] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3381), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3383), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [39512] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3385), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3387), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [39581] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3417), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3419), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [39650] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3385), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3387), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [39719] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3381), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3383), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [39788] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3377), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3379), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [39857] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(1713), 1, - anon_sym_RPAREN, - ACTIONS(2885), 1, - anon_sym_COMMA, - ACTIONS(2918), 1, - anon_sym_DASH_GT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3639), 1, - anon_sym_PIPE, - ACTIONS(3649), 1, - anon_sym_when, - ACTIONS(3652), 1, - anon_sym_COLON_COLON, - ACTIONS(3654), 1, - anon_sym_EQ_GT, - ACTIONS(3656), 1, - anon_sym_EQ, - ACTIONS(3666), 1, - anon_sym_in, - ACTIONS(3668), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3678), 1, - sym__not_in, - ACTIONS(3690), 1, - anon_sym_SEMI, - STATE(411), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4350), 1, - aux_sym_block_repeat2, - STATE(4529), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3658), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3660), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3637), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3662), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3664), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [39982] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3135), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3137), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [40051] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3131), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3133), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [40120] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3421), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3423), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [40189] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3425), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3427), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [40258] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3425), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3427), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [40327] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3257), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3259), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [40396] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2994), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2996), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [40465] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3429), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3431), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [40534] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2635), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(2637), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [40603] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3189), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3191), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [40672] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3373), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3375), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [40741] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3086), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3088), 53, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [40810] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3181), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3183), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [40879] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3177), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3179), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [40948] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3269), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3271), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [41017] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(2885), 1, - anon_sym_COMMA, - ACTIONS(2918), 1, - anon_sym_DASH_GT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3639), 1, - anon_sym_PIPE, - ACTIONS(3649), 1, - anon_sym_when, - ACTIONS(3652), 1, - anon_sym_COLON_COLON, - ACTIONS(3654), 1, - anon_sym_EQ_GT, - ACTIONS(3656), 1, - anon_sym_EQ, - ACTIONS(3666), 1, - anon_sym_in, - ACTIONS(3668), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3678), 1, - sym__not_in, - ACTIONS(3692), 1, - anon_sym_SEMI, - ACTIONS(3694), 1, - anon_sym_RPAREN, - STATE(419), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4344), 1, - aux_sym_block_repeat2, - STATE(4529), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3658), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3660), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3637), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3662), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3664), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [41142] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3209), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3211), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [41211] = 4, + [37166] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -195037,202 +192149,7 @@ static const uint16_t ts_small_parse_table[] = { sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3108), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [41280] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3265), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3267), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [41349] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3173), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3175), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [41418] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3433), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3435), 54, + ACTIONS(3108), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -195281,421 +192198,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [41487] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3369), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3371), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [41556] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3365), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3367), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [41625] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3361), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3363), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [41694] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3357), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3359), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [41763] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3309), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3311), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [41832] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2910), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2912), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2916), 1, - anon_sym_STAR_STAR, - ACTIONS(2920), 1, - anon_sym_DOT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2883), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2887), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 2, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(2914), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 40, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [41917] = 4, + [37236] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3433), 3, + ACTIONS(3106), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3435), 54, + ACTIONS(3108), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -195744,164 +192264,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [41986] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3305), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3307), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [42055] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2908), 1, - anon_sym_in, - ACTIONS(2910), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2912), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2916), 1, - anon_sym_STAR_STAR, - ACTIONS(2920), 1, - anon_sym_DOT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(2924), 1, - sym__not_in, - ACTIONS(3389), 1, - aux_sym__terminator_token1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2883), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2887), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2914), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(2906), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 30, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [42146] = 4, + [37306] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3297), 3, + ACTIONS(3000), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3299), 54, + ACTIONS(3002), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -195950,441 +192330,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [42215] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3297), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3299), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [42284] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3433), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3435), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [42353] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3301), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3303), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [42422] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3297), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3299), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [42491] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3293), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3295), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [42560] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(1741), 1, - anon_sym_RPAREN, - ACTIONS(2885), 1, - anon_sym_COMMA, - ACTIONS(2918), 1, anon_sym_DASH_GT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3639), 1, - anon_sym_PIPE, - ACTIONS(3649), 1, - anon_sym_when, - ACTIONS(3652), 1, - anon_sym_COLON_COLON, - ACTIONS(3654), 1, - anon_sym_EQ_GT, - ACTIONS(3656), 1, - anon_sym_EQ, - ACTIONS(3666), 1, - anon_sym_in, - ACTIONS(3668), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, anon_sym_DOT, - ACTIONS(3678), 1, - sym__not_in, - ACTIONS(3696), 1, - anon_sym_SEMI, - STATE(415), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4360), 1, - aux_sym_block_repeat2, - STATE(4529), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3658), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3660), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3637), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3662), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3664), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [42685] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [37376] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3437), 3, + ACTIONS(3006), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3439), 54, + ACTIONS(3008), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -196433,2140 +192396,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [42754] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3205), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3207), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [42823] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(914), 1, - anon_sym_RPAREN, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(2885), 1, - anon_sym_COMMA, - ACTIONS(2918), 1, anon_sym_DASH_GT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3639), 1, - anon_sym_PIPE, - ACTIONS(3649), 1, - anon_sym_when, - ACTIONS(3652), 1, - anon_sym_COLON_COLON, - ACTIONS(3654), 1, - anon_sym_EQ_GT, - ACTIONS(3656), 1, - anon_sym_EQ, - ACTIONS(3666), 1, - anon_sym_in, - ACTIONS(3668), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, anon_sym_DOT, - ACTIONS(3678), 1, - sym__not_in, - ACTIONS(3692), 1, - anon_sym_SEMI, - STATE(419), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4344), 1, - aux_sym_block_repeat2, - STATE(4529), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3658), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3660), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3637), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3662), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3664), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [42948] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(894), 1, - anon_sym_RPAREN, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(2885), 1, - anon_sym_COMMA, - ACTIONS(2918), 1, - anon_sym_DASH_GT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3639), 1, - anon_sym_PIPE, - ACTIONS(3649), 1, - anon_sym_when, - ACTIONS(3652), 1, - anon_sym_COLON_COLON, - ACTIONS(3654), 1, - anon_sym_EQ_GT, - ACTIONS(3656), 1, - anon_sym_EQ, - ACTIONS(3666), 1, - anon_sym_in, - ACTIONS(3668), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3678), 1, - sym__not_in, - ACTIONS(3698), 1, - anon_sym_SEMI, - STATE(424), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4323), 1, - aux_sym_block_repeat2, - STATE(4529), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3658), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3660), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3637), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3662), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3664), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [43073] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [37446] = 5, ACTIONS(5), 1, sym_comment, + STATE(1959), 1, + sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3169), 3, + ACTIONS(2978), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3171), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [43142] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3201), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3203), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [43211] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3441), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3443), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [43280] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3700), 1, - anon_sym_COMMA, - STATE(1665), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3479), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3481), 52, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [43353] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3445), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3447), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [43422] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3127), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3129), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [43491] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3165), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3167), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [43560] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3161), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3163), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [43629] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(1721), 1, - anon_sym_RPAREN, - ACTIONS(2885), 1, - anon_sym_COMMA, - ACTIONS(2918), 1, - anon_sym_DASH_GT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3639), 1, - anon_sym_PIPE, - ACTIONS(3649), 1, - anon_sym_when, - ACTIONS(3652), 1, - anon_sym_COLON_COLON, - ACTIONS(3654), 1, - anon_sym_EQ_GT, - ACTIONS(3656), 1, - anon_sym_EQ, - ACTIONS(3666), 1, - anon_sym_in, - ACTIONS(3668), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3678), 1, - sym__not_in, - ACTIONS(3703), 1, - anon_sym_SEMI, - STATE(395), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4309), 1, - aux_sym_block_repeat2, - STATE(4529), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3658), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3660), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3637), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3662), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3664), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [43754] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3197), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3199), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [43823] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3193), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3195), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [43892] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3289), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3291), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [43961] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3285), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3287), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [44030] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3123), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3125), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [44099] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3281), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3283), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [44168] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3026), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3022), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3024), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [44239] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3026), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3050), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3052), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [44310] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3157), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3159), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [44379] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3157), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3159), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [44448] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3705), 1, - anon_sym_COMMA, - STATE(1665), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3475), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3477), 52, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [44521] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3449), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3451), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [44590] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(2885), 1, - anon_sym_COMMA, - ACTIONS(2918), 1, - anon_sym_DASH_GT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3633), 1, - anon_sym_SEMI, - ACTIONS(3639), 1, - anon_sym_PIPE, - ACTIONS(3649), 1, - anon_sym_when, - ACTIONS(3652), 1, - anon_sym_COLON_COLON, - ACTIONS(3654), 1, - anon_sym_EQ_GT, - ACTIONS(3656), 1, - anon_sym_EQ, - ACTIONS(3666), 1, - anon_sym_in, - ACTIONS(3668), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3678), 1, - sym__not_in, - ACTIONS(3707), 1, - anon_sym_RPAREN, - STATE(433), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4315), 1, - aux_sym_block_repeat2, - STATE(4529), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3658), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3660), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3637), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3662), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3664), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [44715] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3153), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3155), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [44784] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3705), 1, - anon_sym_COMMA, - STATE(1681), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3469), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3471), 52, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [44857] = 22, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2881), 1, - anon_sym_PIPE, - ACTIONS(2896), 1, - anon_sym_EQ_GT, - ACTIONS(2898), 1, - anon_sym_EQ, - ACTIONS(2908), 1, - anon_sym_in, - ACTIONS(2910), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2912), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2916), 1, - anon_sym_STAR_STAR, - ACTIONS(2920), 1, - anon_sym_DOT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(2924), 1, - sym__not_in, - ACTIONS(3389), 1, - aux_sym__terminator_token1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2883), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2887), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2900), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(2902), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2879), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2904), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2914), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(2906), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [44962] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3149), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3151), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [45031] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(1623), 1, - anon_sym_RPAREN, - ACTIONS(2885), 1, - anon_sym_COMMA, - ACTIONS(2918), 1, - anon_sym_DASH_GT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3639), 1, - anon_sym_PIPE, - ACTIONS(3649), 1, - anon_sym_when, - ACTIONS(3652), 1, - anon_sym_COLON_COLON, - ACTIONS(3654), 1, - anon_sym_EQ_GT, - ACTIONS(3656), 1, - anon_sym_EQ, - ACTIONS(3666), 1, - anon_sym_in, - ACTIONS(3668), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3678), 1, - sym__not_in, - ACTIONS(3709), 1, - anon_sym_SEMI, - STATE(371), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4396), 1, - aux_sym_block_repeat2, - STATE(4529), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3658), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3660), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3637), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3662), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3664), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [45156] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3028), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3030), 53, + ACTIONS(2980), 53, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -198620,157 +192470,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [45225] = 4, + [37518] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3014), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3016), 53, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [45294] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3100), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3102), 53, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [45363] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3185), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3187), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, + ACTIONS(3753), 1, aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [37590] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(1967), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2984), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2986), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -198815,7 +192604,1308 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [45432] = 4, + [37662] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [37732] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3606), 1, + anon_sym_EQ_GT, + ACTIONS(3608), 1, + anon_sym_EQ, + ACTIONS(3618), 1, + anon_sym_in, + ACTIONS(3620), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3622), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3626), 1, + anon_sym_STAR_STAR, + ACTIONS(3628), 1, + anon_sym_DOT, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(3632), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3594), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3598), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3610), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3612), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3590), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3614), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3624), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3616), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 13, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [37836] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3134), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3136), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [37906] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [37976] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [38046] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3608), 1, + anon_sym_EQ, + ACTIONS(3618), 1, + anon_sym_in, + ACTIONS(3620), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3622), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3626), 1, + anon_sym_STAR_STAR, + ACTIONS(3628), 1, + anon_sym_DOT, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(3632), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3594), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3598), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3610), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3612), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3590), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3614), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3624), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3616), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 14, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [38148] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3327), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3329), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [38218] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3327), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3329), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [38288] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3319), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3321), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [38358] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3090), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3092), 55, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [38428] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3319), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3321), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [38498] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3618), 1, + anon_sym_in, + ACTIONS(3620), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3622), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3626), 1, + anon_sym_STAR_STAR, + ACTIONS(3628), 1, + anon_sym_DOT, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(3632), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3594), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3598), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3612), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3590), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3614), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3624), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3616), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [38596] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3319), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3321), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [38666] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [38736] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [38806] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [38876] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [38946] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [39016] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [39086] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -198825,7 +193915,7 @@ static const uint16_t ts_small_parse_table[] = { sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2974), 54, + ACTIONS(2974), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -198874,97 +193964,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [45501] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2916), 1, - anon_sym_STAR_STAR, - ACTIONS(2920), 1, - anon_sym_DOT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3391), 52, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [45576] = 4, + [39156] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3123), 3, + ACTIONS(3106), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3125), 54, + ACTIONS(3108), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -199007,443 +194030,2352 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [45645] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(918), 1, - anon_sym_RPAREN, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(2885), 1, - anon_sym_COMMA, - ACTIONS(2918), 1, anon_sym_DASH_GT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3639), 1, - anon_sym_PIPE, - ACTIONS(3649), 1, - anon_sym_when, - ACTIONS(3652), 1, - anon_sym_COLON_COLON, - ACTIONS(3654), 1, - anon_sym_EQ_GT, - ACTIONS(3656), 1, - anon_sym_EQ, - ACTIONS(3666), 1, - anon_sym_in, - ACTIONS(3668), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3678), 1, - sym__not_in, - ACTIONS(3682), 1, - anon_sym_SEMI, - STATE(400), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4354), 1, - aux_sym_block_repeat2, - STATE(4529), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3658), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3660), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3637), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3662), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3664), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [45770] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3189), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3191), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [45839] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3193), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3195), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [45908] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3197), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3199), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [45977] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3453), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3455), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [46046] = 4, + [39226] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3106), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3040), 3, + anon_sym_LBRACK2, + ACTIONS(3108), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [39296] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [39366] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3245), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3247), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [39436] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [39506] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3423), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3425), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [39576] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [39646] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3618), 1, + anon_sym_in, + ACTIONS(3620), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3622), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3626), 1, + anon_sym_STAR_STAR, + ACTIONS(3628), 1, + anon_sym_DOT, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(3632), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3594), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3598), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3590), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3614), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3624), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3616), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 21, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [39742] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [39812] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [39882] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [39952] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3628), 1, + anon_sym_DOT, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 3, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3295), 53, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [40026] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3297), 3, + sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3042), 53, + ACTIONS(3299), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [40096] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3297), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3299), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [40166] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2651), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2653), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [40236] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2647), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2649), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [40306] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2611), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2613), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [40376] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3241), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3243), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [40446] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2631), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2633), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [40516] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3130), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3132), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [40586] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3122), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3124), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [40656] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3289), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3291), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [40726] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3285), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3287), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [40796] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3281), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3283), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [40866] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3114), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3116), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [40936] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3269), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3271), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [41006] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3265), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3267), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [41076] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3191), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3193), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [41146] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3114), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3116), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [41216] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3191), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3193), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [41286] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3191), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3193), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [41356] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3122), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3124), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [41426] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3122), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3124), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [41496] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3295), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [41566] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3323), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3325), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [41636] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3155), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3157), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [41706] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3026), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3028), 55, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [46115] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3453), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3455), 54, - anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -199496,963 +196428,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [46184] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3201), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3203), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [46253] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3205), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3207), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [46322] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3453), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3455), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [46391] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(926), 1, - anon_sym_RPAREN, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(2885), 1, - anon_sym_COMMA, - ACTIONS(2918), 1, - anon_sym_DASH_GT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3639), 1, - anon_sym_PIPE, - ACTIONS(3649), 1, - anon_sym_when, - ACTIONS(3652), 1, - anon_sym_COLON_COLON, - ACTIONS(3654), 1, - anon_sym_EQ_GT, - ACTIONS(3656), 1, - anon_sym_EQ, - ACTIONS(3666), 1, - anon_sym_in, - ACTIONS(3668), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3678), 1, - sym__not_in, - ACTIONS(3711), 1, - anon_sym_SEMI, - STATE(423), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4427), 1, - aux_sym_block_repeat2, - STATE(4529), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3658), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3660), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3637), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3662), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3664), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [46516] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3457), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3459), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [46585] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3457), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3459), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [46654] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3022), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3024), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [46723] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3050), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3052), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [46792] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3181), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3183), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [46861] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3209), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3211), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [46930] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3044), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3046), 53, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [46999] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3062), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3064), 53, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [47068] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3261), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3263), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [47137] = 32, + [41776] = 33, ACTIONS(5), 1, sym_comment, ACTIONS(1054), 1, aux_sym__terminator_token1, - ACTIONS(1653), 1, - anon_sym_RPAREN, - ACTIONS(2885), 1, - anon_sym_COMMA, ACTIONS(2918), 1, anon_sym_DASH_GT, ACTIONS(2922), 1, anon_sym_LBRACK2, - ACTIONS(3639), 1, + ACTIONS(3646), 1, anon_sym_PIPE, - ACTIONS(3649), 1, - anon_sym_when, - ACTIONS(3652), 1, - anon_sym_COLON_COLON, - ACTIONS(3654), 1, - anon_sym_EQ_GT, + ACTIONS(3650), 1, + anon_sym_COMMA, ACTIONS(3656), 1, + anon_sym_when, + ACTIONS(3659), 1, + anon_sym_COLON_COLON, + ACTIONS(3661), 1, + anon_sym_EQ_GT, + ACTIONS(3663), 1, anon_sym_EQ, - ACTIONS(3666), 1, + ACTIONS(3673), 1, anon_sym_in, - ACTIONS(3668), 1, + ACTIONS(3675), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, + ACTIONS(3677), 1, anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, + ACTIONS(3681), 1, anon_sym_STAR_STAR, - ACTIONS(3676), 1, + ACTIONS(3683), 1, anon_sym_DOT, - ACTIONS(3678), 1, + ACTIONS(3685), 1, sym__not_in, - ACTIONS(3713), 1, + ACTIONS(3755), 1, anon_sym_SEMI, + ACTIONS(3757), 1, + anon_sym_RPAREN, STATE(387), 1, sym__terminator, - STATE(1028), 1, + STATE(1031), 1, aux_sym__terminator_repeat1, - STATE(4374), 1, + STATE(4958), 1, aux_sym_block_repeat2, - STATE(4529), 1, + STATE(5161), 1, aux_sym__stab_clause_arguments_without_parentheses_repeat1, + STATE(5437), 1, + aux_sym__stab_clause_arguments_with_parentheses_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3641), 2, + ACTIONS(3648), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3645), 2, + ACTIONS(3652), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3647), 2, + ACTIONS(3654), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3658), 3, + ACTIONS(3665), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3660), 3, + ACTIONS(3667), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3637), 4, + ACTIONS(3644), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3662), 5, + ACTIONS(3669), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3672), 6, + ACTIONS(3679), 6, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - ACTIONS(3664), 9, + ACTIONS(3671), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -200462,30 +196523,321 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [47262] = 4, + [41904] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3064), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3123), 3, + anon_sym_LBRACK2, + ACTIONS(3066), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [41974] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3618), 1, + anon_sym_in, + ACTIONS(3620), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3622), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3626), 1, + anon_sym_STAR_STAR, + ACTIONS(3628), 1, + anon_sym_DOT, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(3632), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3594), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3598), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3590), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3624), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3616), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 26, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [42068] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3759), 1, + anon_sym_COMMA, + STATE(1692), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3219), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3221), 53, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [42142] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3183), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3185), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [42212] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3622), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3626), 1, + anon_sym_STAR_STAR, + ACTIONS(3628), 1, + anon_sym_DOT, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3594), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3598), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3293), 3, sym__newline_before_do, sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3125), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + aux_sym__terminator_token1, + ACTIONS(3624), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 41, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -200516,34 +196868,228 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_after, + anon_sym_catch, anon_sym_do, - [47331] = 4, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [42296] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3177), 3, + ACTIONS(3516), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3179), 54, + ACTIONS(3518), 55, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [42366] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3118), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3120), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [42436] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3118), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3120), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [42506] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3044), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3046), 55, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -200592,23 +197138,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [47400] = 4, + [42576] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3173), 3, + ACTIONS(3048), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3175), 54, + ACTIONS(3050), 55, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -200657,12 +197204,4217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [47469] = 32, + [42646] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3052), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3054), 55, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [42716] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3098), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3100), 55, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [42786] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3094), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3096), 55, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [42856] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3018), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3020), 55, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [42926] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3074), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3076), 55, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [42996] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3233), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3235), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [43066] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2990), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2992), 55, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [43136] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2996), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2998), 55, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [43206] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3058), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3060), 55, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [43276] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3118), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3120), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [43346] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2631), 4, + sym__not_in, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2633), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [43416] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2611), 4, + sym__not_in, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2613), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [43486] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3229), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3231), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [43556] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3078), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3080), 55, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [43626] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3145), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3147), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [43696] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3141), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3143), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [43766] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3215), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3217), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [43836] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3211), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3213), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [43906] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3622), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3626), 1, + anon_sym_STAR_STAR, + ACTIONS(3628), 1, + anon_sym_DOT, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3594), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3598), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3293), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3624), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 41, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [43990] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3468), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3470), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [44060] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3486), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3488), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [44130] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3496), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3498), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [44200] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3237), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3239), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [44270] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3761), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [44342] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3534), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3536), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [44412] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3763), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [44484] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3765), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [44556] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3767), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [44628] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3769), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [44700] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3341), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3343), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [44770] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3771), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [44842] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3773), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [44914] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3759), 1, + anon_sym_COMMA, + STATE(1696), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3149), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3151), 53, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [44988] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3775), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [45060] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3777), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [45132] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3779), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [45204] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3781), 1, + anon_sym_COMMA, + STATE(1696), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3134), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3136), 53, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [45278] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3626), 1, + anon_sym_STAR_STAR, + ACTIONS(3628), 1, + anon_sym_DOT, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3594), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3598), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3293), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3624), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 42, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [45360] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3784), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [45432] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2647), 4, + sym__not_in, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2649), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [45502] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2651), 4, + sym__not_in, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2653), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [45572] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3786), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [45644] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3303), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3305), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [45714] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3295), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [45784] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3788), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [45856] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3295), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [45926] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3790), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [45998] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3618), 1, + anon_sym_in, + ACTIONS(3620), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3622), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3626), 1, + anon_sym_STAR_STAR, + ACTIONS(3628), 1, + anon_sym_DOT, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(3632), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3594), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3598), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3624), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 39, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [46088] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3307), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3309), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [46158] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3449), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3451), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [46228] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3435), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3437), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [46298] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3792), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [46370] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3794), 2, + anon_sym_when, + anon_sym_DASH_GT, + ACTIONS(3534), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3536), 53, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [46442] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3431), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3433), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [46512] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3427), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3429), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [46582] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3796), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [46654] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3798), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [46726] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3800), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [46798] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3303), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3305), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [46867] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3207), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3209), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [46936] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3802), 1, + anon_sym_COMMA, + STATE(1720), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3134), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3136), 52, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [47009] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3805), 1, + anon_sym_COMMA, + STATE(1720), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3149), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3151), 52, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [47082] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3805), 1, + anon_sym_COMMA, + STATE(1721), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3219), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3221), 52, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [47155] = 32, ACTIONS(5), 1, sym_comment, ACTIONS(1054), 1, aux_sym__terminator_token1, - ACTIONS(1719), 1, + ACTIONS(1575), 1, anon_sym_RPAREN, ACTIONS(2885), 1, anon_sym_COMMA, @@ -200670,77 +201422,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, ACTIONS(2922), 1, anon_sym_LBRACK2, - ACTIONS(3639), 1, + ACTIONS(3646), 1, anon_sym_PIPE, - ACTIONS(3649), 1, - anon_sym_when, - ACTIONS(3652), 1, - anon_sym_COLON_COLON, - ACTIONS(3654), 1, - anon_sym_EQ_GT, ACTIONS(3656), 1, + anon_sym_when, + ACTIONS(3659), 1, + anon_sym_COLON_COLON, + ACTIONS(3661), 1, + anon_sym_EQ_GT, + ACTIONS(3663), 1, anon_sym_EQ, - ACTIONS(3666), 1, + ACTIONS(3673), 1, anon_sym_in, - ACTIONS(3668), 1, + ACTIONS(3675), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, + ACTIONS(3677), 1, anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, + ACTIONS(3681), 1, anon_sym_STAR_STAR, - ACTIONS(3676), 1, + ACTIONS(3683), 1, anon_sym_DOT, - ACTIONS(3678), 1, + ACTIONS(3685), 1, sym__not_in, - ACTIONS(3715), 1, + ACTIONS(3807), 1, anon_sym_SEMI, - STATE(425), 1, + STATE(398), 1, sym__terminator, - STATE(1028), 1, + STATE(1031), 1, aux_sym__terminator_repeat1, - STATE(4433), 1, + STATE(4910), 1, aux_sym_block_repeat2, - STATE(4529), 1, + STATE(5161), 1, aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3641), 2, + ACTIONS(3648), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3645), 2, + ACTIONS(3652), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3647), 2, + ACTIONS(3654), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3658), 3, + ACTIONS(3665), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3660), 3, + ACTIONS(3667), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3637), 4, + ACTIONS(3644), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3662), 5, + ACTIONS(3669), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3672), 6, + ACTIONS(3679), 6, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - ACTIONS(3664), 9, + ACTIONS(3671), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -200750,79 +201502,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [47594] = 5, + [47280] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3717), 1, - aux_sym_sigil_token3, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3143), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3145), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [47665] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2912), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2916), 1, - anon_sym_STAR_STAR, ACTIONS(2920), 1, anon_sym_DOT, ACTIONS(2922), 1, @@ -200830,80 +201512,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2883), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2887), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 2, + ACTIONS(3293), 2, sym__not_in, aux_sym__terminator_token1, - ACTIONS(2914), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 41, + ACTIONS(3295), 53, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [47748] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3461), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3463), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, anon_sym_PLUS, @@ -200947,187 +201563,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [47817] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3465), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3467), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [47886] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(2885), 1, - anon_sym_COMMA, - ACTIONS(2918), 1, anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [47353] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_DOT, ACTIONS(2922), 1, anon_sym_LBRACK2, - ACTIONS(3639), 1, - anon_sym_PIPE, - ACTIONS(3649), 1, - anon_sym_when, - ACTIONS(3652), 1, - anon_sym_COLON_COLON, - ACTIONS(3654), 1, - anon_sym_EQ_GT, - ACTIONS(3656), 1, - anon_sym_EQ, - ACTIONS(3666), 1, - anon_sym_in, - ACTIONS(3668), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3678), 1, - sym__not_in, - ACTIONS(3711), 1, - anon_sym_SEMI, - ACTIONS(3719), 1, - anon_sym_RPAREN, - STATE(423), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4427), 1, - aux_sym_block_repeat2, - STATE(4529), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3658), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3660), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3637), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3662), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3664), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [48011] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3253), 3, + ACTIONS(3118), 2, sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3255), 54, + ACTIONS(3120), 53, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -201170,259 +201630,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [48080] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3249), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3251), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [48149] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(432), 1, - anon_sym_do, - ACTIONS(3721), 1, - sym__newline_before_do, - STATE(2584), 1, - sym_do_block, - ACTIONS(3000), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3002), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [48224] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(2885), 1, - anon_sym_COMMA, - ACTIONS(2918), 1, anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [47426] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_DOT, ACTIONS(2922), 1, anon_sym_LBRACK2, - ACTIONS(3639), 1, - anon_sym_PIPE, - ACTIONS(3649), 1, - anon_sym_when, - ACTIONS(3652), 1, - anon_sym_COLON_COLON, - ACTIONS(3654), 1, - anon_sym_EQ_GT, - ACTIONS(3656), 1, - anon_sym_EQ, - ACTIONS(3666), 1, - anon_sym_in, - ACTIONS(3668), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3678), 1, - sym__not_in, - ACTIONS(3686), 1, - anon_sym_SEMI, - ACTIONS(3723), 1, - anon_sym_RPAREN, - STATE(392), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4366), 1, - aux_sym_block_repeat2, - STATE(4529), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3658), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3660), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3637), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3662), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3664), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [48349] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(432), 1, - anon_sym_do, - ACTIONS(3725), 1, - sym__newline_before_do, - STATE(2599), 1, - sym_do_block, - ACTIONS(2994), 2, + ACTIONS(3191), 2, sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2996), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3193), 53, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -201469,435 +201697,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - [48424] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(1717), 1, - anon_sym_RPAREN, - ACTIONS(2885), 1, - anon_sym_COMMA, - ACTIONS(2918), 1, anon_sym_DASH_GT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3639), 1, - anon_sym_PIPE, - ACTIONS(3649), 1, - anon_sym_when, - ACTIONS(3652), 1, - anon_sym_COLON_COLON, - ACTIONS(3654), 1, - anon_sym_EQ_GT, - ACTIONS(3656), 1, - anon_sym_EQ, - ACTIONS(3666), 1, - anon_sym_in, - ACTIONS(3668), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3678), 1, - sym__not_in, - ACTIONS(3727), 1, - anon_sym_SEMI, - STATE(358), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4334), 1, - aux_sym_block_repeat2, - STATE(4529), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3658), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3660), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3637), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3662), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3664), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [48549] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(432), 1, - anon_sym_do, - ACTIONS(3729), 1, - sym__newline_before_do, - STATE(2597), 1, - sym_do_block, - ACTIONS(3000), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3002), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [48624] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(432), 1, - anon_sym_do, - ACTIONS(3731), 1, - sym__newline_before_do, - STATE(2594), 1, - sym_do_block, - ACTIONS(3000), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3002), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [48699] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3127), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3129), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [48768] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(432), 1, - anon_sym_do, - ACTIONS(3733), 1, - sym__newline_before_do, - STATE(2592), 1, - sym_do_block, - ACTIONS(3008), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3010), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [48843] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2639), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(2641), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [48912] = 4, + [47499] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, @@ -201962,19 +201768,2325 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [48981] = 4, + [47568] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2643), 4, + ACTIONS(2631), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2633), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [47637] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(2885), 1, + anon_sym_COMMA, + ACTIONS(2918), 1, + anon_sym_DASH_GT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3646), 1, + anon_sym_PIPE, + ACTIONS(3656), 1, + anon_sym_when, + ACTIONS(3659), 1, + anon_sym_COLON_COLON, + ACTIONS(3661), 1, + anon_sym_EQ_GT, + ACTIONS(3663), 1, + anon_sym_EQ, + ACTIONS(3673), 1, + anon_sym_in, + ACTIONS(3675), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + sym__not_in, + ACTIONS(3809), 1, + anon_sym_SEMI, + ACTIONS(3811), 1, + anon_sym_RPAREN, + STATE(363), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(5010), 1, + aux_sym_block_repeat2, + STATE(5161), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3654), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3665), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3667), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3644), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3669), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3671), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [47762] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(2885), 1, + anon_sym_COMMA, + ACTIONS(2918), 1, + anon_sym_DASH_GT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3646), 1, + anon_sym_PIPE, + ACTIONS(3656), 1, + anon_sym_when, + ACTIONS(3659), 1, + anon_sym_COLON_COLON, + ACTIONS(3661), 1, + anon_sym_EQ_GT, + ACTIONS(3663), 1, + anon_sym_EQ, + ACTIONS(3673), 1, + anon_sym_in, + ACTIONS(3675), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + sym__not_in, + ACTIONS(3813), 1, + anon_sym_SEMI, + ACTIONS(3815), 1, + anon_sym_RPAREN, + STATE(425), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(5040), 1, + aux_sym_block_repeat2, + STATE(5161), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3654), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3665), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3667), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3644), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3669), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3671), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [47887] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1737), 1, + anon_sym_RPAREN, + ACTIONS(2885), 1, + anon_sym_COMMA, + ACTIONS(2918), 1, + anon_sym_DASH_GT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3646), 1, + anon_sym_PIPE, + ACTIONS(3656), 1, + anon_sym_when, + ACTIONS(3659), 1, + anon_sym_COLON_COLON, + ACTIONS(3661), 1, + anon_sym_EQ_GT, + ACTIONS(3663), 1, + anon_sym_EQ, + ACTIONS(3673), 1, + anon_sym_in, + ACTIONS(3675), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + sym__not_in, + ACTIONS(3817), 1, + anon_sym_SEMI, + STATE(414), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(5020), 1, + aux_sym_block_repeat2, + STATE(5161), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3654), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3665), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3667), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3644), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3669), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3671), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [48012] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(930), 1, + anon_sym_RPAREN, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(2885), 1, + anon_sym_COMMA, + ACTIONS(2918), 1, + anon_sym_DASH_GT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3646), 1, + anon_sym_PIPE, + ACTIONS(3656), 1, + anon_sym_when, + ACTIONS(3659), 1, + anon_sym_COLON_COLON, + ACTIONS(3661), 1, + anon_sym_EQ_GT, + ACTIONS(3663), 1, + anon_sym_EQ, + ACTIONS(3673), 1, + anon_sym_in, + ACTIONS(3675), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + sym__not_in, + ACTIONS(3813), 1, + anon_sym_SEMI, + STATE(425), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(5040), 1, + aux_sym_block_repeat2, + STATE(5161), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3654), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3665), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3667), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3644), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3669), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3671), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [48137] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(2885), 1, + anon_sym_COMMA, + ACTIONS(2918), 1, + anon_sym_DASH_GT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3646), 1, + anon_sym_PIPE, + ACTIONS(3656), 1, + anon_sym_when, + ACTIONS(3659), 1, + anon_sym_COLON_COLON, + ACTIONS(3661), 1, + anon_sym_EQ_GT, + ACTIONS(3663), 1, + anon_sym_EQ, + ACTIONS(3673), 1, + anon_sym_in, + ACTIONS(3675), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + sym__not_in, + ACTIONS(3819), 1, + anon_sym_SEMI, + ACTIONS(3821), 1, + anon_sym_RPAREN, + STATE(415), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4941), 1, + aux_sym_block_repeat2, + STATE(5161), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3654), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3665), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3667), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3644), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3669), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3671), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [48262] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1713), 1, + anon_sym_RPAREN, + ACTIONS(2885), 1, + anon_sym_COMMA, + ACTIONS(2918), 1, + anon_sym_DASH_GT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3646), 1, + anon_sym_PIPE, + ACTIONS(3656), 1, + anon_sym_when, + ACTIONS(3659), 1, + anon_sym_COLON_COLON, + ACTIONS(3661), 1, + anon_sym_EQ_GT, + ACTIONS(3663), 1, + anon_sym_EQ, + ACTIONS(3673), 1, + anon_sym_in, + ACTIONS(3675), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + sym__not_in, + ACTIONS(3823), 1, + anon_sym_SEMI, + STATE(424), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(5004), 1, + aux_sym_block_repeat2, + STATE(5161), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3654), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3665), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3667), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3644), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3669), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3671), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [48387] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(910), 1, + anon_sym_RPAREN, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(2885), 1, + anon_sym_COMMA, + ACTIONS(2918), 1, + anon_sym_DASH_GT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3646), 1, + anon_sym_PIPE, + ACTIONS(3656), 1, + anon_sym_when, + ACTIONS(3659), 1, + anon_sym_COLON_COLON, + ACTIONS(3661), 1, + anon_sym_EQ_GT, + ACTIONS(3663), 1, + anon_sym_EQ, + ACTIONS(3673), 1, + anon_sym_in, + ACTIONS(3675), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + sym__not_in, + ACTIONS(3819), 1, + anon_sym_SEMI, + STATE(415), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4941), 1, + aux_sym_block_repeat2, + STATE(5161), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3654), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3665), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3667), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3644), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3669), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3671), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [48512] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(2885), 1, + anon_sym_COMMA, + ACTIONS(2918), 1, + anon_sym_DASH_GT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3646), 1, + anon_sym_PIPE, + ACTIONS(3656), 1, + anon_sym_when, + ACTIONS(3659), 1, + anon_sym_COLON_COLON, + ACTIONS(3661), 1, + anon_sym_EQ_GT, + ACTIONS(3663), 1, + anon_sym_EQ, + ACTIONS(3673), 1, + anon_sym_in, + ACTIONS(3675), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + sym__not_in, + ACTIONS(3825), 1, + anon_sym_SEMI, + ACTIONS(3827), 1, + anon_sym_RPAREN, + STATE(385), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4924), 1, + aux_sym_block_repeat2, + STATE(5161), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3654), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3665), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3667), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3644), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3669), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3671), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [48637] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1639), 1, + anon_sym_RPAREN, + ACTIONS(2885), 1, + anon_sym_COMMA, + ACTIONS(2918), 1, + anon_sym_DASH_GT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3646), 1, + anon_sym_PIPE, + ACTIONS(3656), 1, + anon_sym_when, + ACTIONS(3659), 1, + anon_sym_COLON_COLON, + ACTIONS(3661), 1, + anon_sym_EQ_GT, + ACTIONS(3663), 1, + anon_sym_EQ, + ACTIONS(3673), 1, + anon_sym_in, + ACTIONS(3675), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + sym__not_in, + ACTIONS(3829), 1, + anon_sym_SEMI, + STATE(391), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4913), 1, + aux_sym_block_repeat2, + STATE(5161), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3654), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3665), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3667), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3644), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3669), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3671), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [48762] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(918), 1, + anon_sym_RPAREN, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(2885), 1, + anon_sym_COMMA, + ACTIONS(2918), 1, + anon_sym_DASH_GT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3646), 1, + anon_sym_PIPE, + ACTIONS(3656), 1, + anon_sym_when, + ACTIONS(3659), 1, + anon_sym_COLON_COLON, + ACTIONS(3661), 1, + anon_sym_EQ_GT, + ACTIONS(3663), 1, + anon_sym_EQ, + ACTIONS(3673), 1, + anon_sym_in, + ACTIONS(3675), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + sym__not_in, + ACTIONS(3825), 1, + anon_sym_SEMI, + STATE(385), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4924), 1, + aux_sym_block_repeat2, + STATE(5161), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3654), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3665), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3667), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3644), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3669), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3671), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [48887] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(2885), 1, + anon_sym_COMMA, + ACTIONS(2918), 1, + anon_sym_DASH_GT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3646), 1, + anon_sym_PIPE, + ACTIONS(3656), 1, + anon_sym_when, + ACTIONS(3659), 1, + anon_sym_COLON_COLON, + ACTIONS(3661), 1, + anon_sym_EQ_GT, + ACTIONS(3663), 1, + anon_sym_EQ, + ACTIONS(3673), 1, + anon_sym_in, + ACTIONS(3675), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + sym__not_in, + ACTIONS(3831), 1, + anon_sym_SEMI, + ACTIONS(3833), 1, + anon_sym_RPAREN, + STATE(361), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4944), 1, + aux_sym_block_repeat2, + STATE(5161), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3654), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3665), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3667), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3644), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3669), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3671), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [49012] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1565), 1, + anon_sym_RPAREN, + ACTIONS(2885), 1, + anon_sym_COMMA, + ACTIONS(2918), 1, + anon_sym_DASH_GT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3646), 1, + anon_sym_PIPE, + ACTIONS(3656), 1, + anon_sym_when, + ACTIONS(3659), 1, + anon_sym_COLON_COLON, + ACTIONS(3661), 1, + anon_sym_EQ_GT, + ACTIONS(3663), 1, + anon_sym_EQ, + ACTIONS(3673), 1, + anon_sym_in, + ACTIONS(3675), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + sym__not_in, + ACTIONS(3835), 1, + anon_sym_SEMI, + STATE(354), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4935), 1, + aux_sym_block_repeat2, + STATE(5161), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3654), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3665), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3667), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3644), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3669), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3671), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [49137] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(898), 1, + anon_sym_RPAREN, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(2885), 1, + anon_sym_COMMA, + ACTIONS(2918), 1, + anon_sym_DASH_GT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3646), 1, + anon_sym_PIPE, + ACTIONS(3656), 1, + anon_sym_when, + ACTIONS(3659), 1, + anon_sym_COLON_COLON, + ACTIONS(3661), 1, + anon_sym_EQ_GT, + ACTIONS(3663), 1, + anon_sym_EQ, + ACTIONS(3673), 1, + anon_sym_in, + ACTIONS(3675), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + sym__not_in, + ACTIONS(3831), 1, + anon_sym_SEMI, + STATE(361), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4944), 1, + aux_sym_block_repeat2, + STATE(5161), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3654), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3665), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3667), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3644), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3669), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3671), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [49262] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1675), 1, + anon_sym_RPAREN, + ACTIONS(2885), 1, + anon_sym_COMMA, + ACTIONS(2918), 1, + anon_sym_DASH_GT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3646), 1, + anon_sym_PIPE, + ACTIONS(3656), 1, + anon_sym_when, + ACTIONS(3659), 1, + anon_sym_COLON_COLON, + ACTIONS(3661), 1, + anon_sym_EQ_GT, + ACTIONS(3663), 1, + anon_sym_EQ, + ACTIONS(3673), 1, + anon_sym_in, + ACTIONS(3675), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + sym__not_in, + ACTIONS(3837), 1, + anon_sym_SEMI, + STATE(386), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4954), 1, + aux_sym_block_repeat2, + STATE(5161), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3654), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3665), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3667), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3644), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3669), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3671), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [49387] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(902), 1, + anon_sym_RPAREN, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(2885), 1, + anon_sym_COMMA, + ACTIONS(2918), 1, + anon_sym_DASH_GT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3646), 1, + anon_sym_PIPE, + ACTIONS(3656), 1, + anon_sym_when, + ACTIONS(3659), 1, + anon_sym_COLON_COLON, + ACTIONS(3661), 1, + anon_sym_EQ_GT, + ACTIONS(3663), 1, + anon_sym_EQ, + ACTIONS(3673), 1, + anon_sym_in, + ACTIONS(3675), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + sym__not_in, + ACTIONS(3755), 1, + anon_sym_SEMI, + STATE(387), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4958), 1, + aux_sym_block_repeat2, + STATE(5161), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3654), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3665), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3667), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3644), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3669), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3671), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [49512] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(2885), 1, + anon_sym_COMMA, + ACTIONS(2918), 1, + anon_sym_DASH_GT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3646), 1, + anon_sym_PIPE, + ACTIONS(3656), 1, + anon_sym_when, + ACTIONS(3659), 1, + anon_sym_COLON_COLON, + ACTIONS(3661), 1, + anon_sym_EQ_GT, + ACTIONS(3663), 1, + anon_sym_EQ, + ACTIONS(3673), 1, + anon_sym_in, + ACTIONS(3675), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + sym__not_in, + ACTIONS(3839), 1, + anon_sym_SEMI, + ACTIONS(3841), 1, + anon_sym_RPAREN, + STATE(402), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4965), 1, + aux_sym_block_repeat2, + STATE(5161), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3654), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3665), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3667), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3644), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3669), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3671), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [49637] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(2885), 1, + anon_sym_COMMA, + ACTIONS(2918), 1, + anon_sym_DASH_GT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3646), 1, + anon_sym_PIPE, + ACTIONS(3656), 1, + anon_sym_when, + ACTIONS(3659), 1, + anon_sym_COLON_COLON, + ACTIONS(3661), 1, + anon_sym_EQ_GT, + ACTIONS(3663), 1, + anon_sym_EQ, + ACTIONS(3673), 1, + anon_sym_in, + ACTIONS(3675), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + sym__not_in, + ACTIONS(3843), 1, + anon_sym_SEMI, + ACTIONS(3845), 1, + anon_sym_RPAREN, + STATE(439), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4985), 1, + aux_sym_block_repeat2, + STATE(5161), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3654), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3665), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3667), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3644), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3669), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3671), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [49762] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1757), 1, + anon_sym_RPAREN, + ACTIONS(2885), 1, + anon_sym_COMMA, + ACTIONS(2918), 1, + anon_sym_DASH_GT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3646), 1, + anon_sym_PIPE, + ACTIONS(3656), 1, + anon_sym_when, + ACTIONS(3659), 1, + anon_sym_COLON_COLON, + ACTIONS(3661), 1, + anon_sym_EQ_GT, + ACTIONS(3663), 1, + anon_sym_EQ, + ACTIONS(3673), 1, + anon_sym_in, + ACTIONS(3675), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + sym__not_in, + ACTIONS(3847), 1, + anon_sym_SEMI, + STATE(435), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4978), 1, + aux_sym_block_repeat2, + STATE(5161), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3654), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3665), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3667), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3644), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3669), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3671), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [49887] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3407), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3409), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [49956] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3403), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3405), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [50025] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(926), 1, + anon_sym_RPAREN, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(2885), 1, + anon_sym_COMMA, + ACTIONS(2918), 1, + anon_sym_DASH_GT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3646), 1, + anon_sym_PIPE, + ACTIONS(3656), 1, + anon_sym_when, + ACTIONS(3659), 1, + anon_sym_COLON_COLON, + ACTIONS(3661), 1, + anon_sym_EQ_GT, + ACTIONS(3663), 1, + anon_sym_EQ, + ACTIONS(3673), 1, + anon_sym_in, + ACTIONS(3675), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + sym__not_in, + ACTIONS(3839), 1, + anon_sym_SEMI, + STATE(402), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4965), 1, + aux_sym_block_repeat2, + STATE(5161), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3654), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3665), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3667), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3644), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3669), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3671), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [50150] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(2885), 1, + anon_sym_COMMA, + ACTIONS(2918), 1, + anon_sym_DASH_GT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3646), 1, + anon_sym_PIPE, + ACTIONS(3656), 1, + anon_sym_when, + ACTIONS(3659), 1, + anon_sym_COLON_COLON, + ACTIONS(3661), 1, + anon_sym_EQ_GT, + ACTIONS(3663), 1, + anon_sym_EQ, + ACTIONS(3673), 1, + anon_sym_in, + ACTIONS(3675), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + sym__not_in, + ACTIONS(3849), 1, + anon_sym_SEMI, + ACTIONS(3851), 1, + anon_sym_RPAREN, + STATE(381), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(5037), 1, + aux_sym_block_repeat2, + STATE(5161), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3654), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3665), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3667), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3644), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3669), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3671), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [50275] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1631), 1, + anon_sym_RPAREN, + ACTIONS(2885), 1, + anon_sym_COMMA, + ACTIONS(2918), 1, + anon_sym_DASH_GT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3646), 1, + anon_sym_PIPE, + ACTIONS(3656), 1, + anon_sym_when, + ACTIONS(3659), 1, + anon_sym_COLON_COLON, + ACTIONS(3661), 1, + anon_sym_EQ_GT, + ACTIONS(3663), 1, + anon_sym_EQ, + ACTIONS(3673), 1, + anon_sym_in, + ACTIONS(3675), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + sym__not_in, + ACTIONS(3853), 1, + anon_sym_SEMI, + STATE(352), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(5018), 1, + aux_sym_block_repeat2, + STATE(5161), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3654), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3665), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3667), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3644), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3669), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3671), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [50400] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(906), 1, + anon_sym_RPAREN, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(2885), 1, + anon_sym_COMMA, + ACTIONS(2918), 1, + anon_sym_DASH_GT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3646), 1, + anon_sym_PIPE, + ACTIONS(3656), 1, + anon_sym_when, + ACTIONS(3659), 1, + anon_sym_COLON_COLON, + ACTIONS(3661), 1, + anon_sym_EQ_GT, + ACTIONS(3663), 1, + anon_sym_EQ, + ACTIONS(3673), 1, + anon_sym_in, + ACTIONS(3675), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + sym__not_in, + ACTIONS(3843), 1, + anon_sym_SEMI, + STATE(439), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4985), 1, + aux_sym_block_repeat2, + STATE(5161), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3654), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3665), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3667), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3644), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3669), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3671), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [50525] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2611), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2613), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [50594] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2651), 4, sym__newline_before_do, sym__not_in, aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2645), 52, + ACTIONS(2653), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -202027,1815 +204139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [49050] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2881), 1, - anon_sym_PIPE, - ACTIONS(2894), 1, - anon_sym_COLON_COLON, - ACTIONS(2896), 1, - anon_sym_EQ_GT, - ACTIONS(2898), 1, - anon_sym_EQ, - ACTIONS(2908), 1, - anon_sym_in, - ACTIONS(2910), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2912), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2916), 1, - anon_sym_STAR_STAR, - ACTIONS(2920), 1, - anon_sym_DOT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(2924), 1, - sym__not_in, - ACTIONS(3542), 1, - aux_sym__terminator_token1, - ACTIONS(3735), 1, - anon_sym_when, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2883), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2887), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2889), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(2900), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(2902), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2879), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2904), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2914), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3544), 8, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - ACTIONS(2906), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [49161] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3127), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3129), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [49230] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(2885), 1, - anon_sym_COMMA, - ACTIONS(2918), 1, - anon_sym_DASH_GT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3639), 1, - anon_sym_PIPE, - ACTIONS(3649), 1, - anon_sym_when, - ACTIONS(3652), 1, - anon_sym_COLON_COLON, - ACTIONS(3654), 1, - anon_sym_EQ_GT, - ACTIONS(3656), 1, - anon_sym_EQ, - ACTIONS(3666), 1, - anon_sym_in, - ACTIONS(3668), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3678), 1, - sym__not_in, - ACTIONS(3698), 1, - anon_sym_SEMI, - ACTIONS(3737), 1, - anon_sym_RPAREN, - STATE(424), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4323), 1, - aux_sym_block_repeat2, - STATE(4529), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3658), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3660), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3637), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3662), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3664), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [49355] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2920), 1, - anon_sym_DOT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3433), 2, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3435), 53, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [49428] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3245), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3247), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [49497] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3169), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3171), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [49566] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3165), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3167), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [49635] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3241), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3243), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [49704] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3161), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3163), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [49773] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3494), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3496), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [49842] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2916), 1, - anon_sym_STAR_STAR, - ACTIONS(2920), 1, - anon_sym_DOT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2883), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3389), 2, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3391), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [49919] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3131), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3133), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [49988] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3213), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3215), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [50057] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2920), 1, - anon_sym_DOT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3425), 2, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3427), 53, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [50130] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3135), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3137), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [50199] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3066), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3068), 53, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [50268] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3076), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3078), 53, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [50337] = 5, - ACTIONS(5), 1, - sym_comment, - STATE(1973), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3000), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3002), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [50408] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2920), 1, - anon_sym_DOT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3391), 53, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [50481] = 5, - ACTIONS(5), 1, - sym_comment, - STATE(1972), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2994), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(2996), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [50552] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3058), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3060), 53, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [50621] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(2885), 1, - anon_sym_COMMA, - ACTIONS(2918), 1, - anon_sym_DASH_GT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3639), 1, - anon_sym_PIPE, - ACTIONS(3649), 1, - anon_sym_when, - ACTIONS(3652), 1, - anon_sym_COLON_COLON, - ACTIONS(3654), 1, - anon_sym_EQ_GT, - ACTIONS(3656), 1, - anon_sym_EQ, - ACTIONS(3666), 1, - anon_sym_in, - ACTIONS(3668), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3678), 1, - sym__not_in, - ACTIONS(3682), 1, - anon_sym_SEMI, - ACTIONS(3739), 1, - anon_sym_RPAREN, - STATE(400), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4354), 1, - aux_sym_block_repeat2, - STATE(4529), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3658), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3660), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3637), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3662), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3664), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [50746] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2643), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(2645), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [50815] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(2885), 1, - anon_sym_COMMA, - ACTIONS(2918), 1, - anon_sym_DASH_GT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3639), 1, - anon_sym_PIPE, - ACTIONS(3649), 1, - anon_sym_when, - ACTIONS(3652), 1, - anon_sym_COLON_COLON, - ACTIONS(3654), 1, - anon_sym_EQ_GT, - ACTIONS(3656), 1, - anon_sym_EQ, - ACTIONS(3666), 1, - anon_sym_in, - ACTIONS(3668), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3678), 1, - sym__not_in, - ACTIONS(3741), 1, - anon_sym_SEMI, - ACTIONS(3743), 1, - anon_sym_RPAREN, - STATE(422), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4298), 1, - aux_sym_block_repeat2, - STATE(4529), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3658), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3660), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3637), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3662), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3664), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [50940] = 5, - ACTIONS(5), 1, - sym_comment, - STATE(1969), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3000), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3002), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [51011] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3237), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3239), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [51080] = 4, + [50663] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, @@ -203900,71 +204204,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [51149] = 24, + [50732] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2881), 1, - anon_sym_PIPE, - ACTIONS(2894), 1, - anon_sym_COLON_COLON, - ACTIONS(2896), 1, - anon_sym_EQ_GT, - ACTIONS(2898), 1, - anon_sym_EQ, - ACTIONS(2908), 1, - anon_sym_in, - ACTIONS(2910), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2912), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2916), 1, - anon_sym_STAR_STAR, - ACTIONS(2920), 1, - anon_sym_DOT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(2924), 1, - sym__not_in, - ACTIONS(3389), 1, - aux_sym__terminator_token1, - ACTIONS(3735), 1, - anon_sym_when, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2883), 2, + aux_sym__terminator_token1, + ACTIONS(2651), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2653), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2887), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2900), 3, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2902), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2879), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2904), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2914), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(2906), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -203974,82 +204256,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3391), 10, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [51258] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2881), 1, - anon_sym_PIPE, - ACTIONS(2894), 1, - anon_sym_COLON_COLON, - ACTIONS(2896), 1, - anon_sym_EQ_GT, - ACTIONS(2898), 1, - anon_sym_EQ, - ACTIONS(2908), 1, anon_sym_in, - ACTIONS(2910), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2912), 1, anon_sym_SLASH_SLASH, - ACTIONS(2916), 1, - anon_sym_STAR_STAR, - ACTIONS(2920), 1, - anon_sym_DOT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(2924), 1, - sym__not_in, - ACTIONS(3389), 1, - aux_sym__terminator_token1, - ACTIONS(3735), 1, - anon_sym_when, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2883), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2887), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2900), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(2902), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2879), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2904), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2914), 6, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - ACTIONS(2906), 9, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [50801] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3026), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3028), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -204059,28 +204321,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3391), 10, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [51367] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [50870] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3217), 3, + ACTIONS(3311), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3219), 54, + ACTIONS(3313), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -204135,90 +204399,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [51436] = 32, + [50939] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(2885), 1, - anon_sym_COMMA, - ACTIONS(2918), 1, - anon_sym_DASH_GT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3639), 1, - anon_sym_PIPE, - ACTIONS(3649), 1, - anon_sym_when, - ACTIONS(3652), 1, - anon_sym_COLON_COLON, - ACTIONS(3654), 1, - anon_sym_EQ_GT, - ACTIONS(3656), 1, - anon_sym_EQ, - ACTIONS(3666), 1, - anon_sym_in, - ACTIONS(3668), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3678), 1, - sym__not_in, - ACTIONS(3745), 1, - anon_sym_SEMI, - ACTIONS(3747), 1, - anon_sym_RPAREN, - STATE(385), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4432), 1, - aux_sym_block_repeat2, - STATE(4529), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3641), 2, + ACTIONS(3000), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3002), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3647), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3658), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3660), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3637), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3662), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3664), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -204228,7 +204447,2626 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [51561] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [51008] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3006), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3008), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [51077] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3327), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3329), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [51146] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3327), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3329), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [51215] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3319), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3321), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [51284] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3331), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3333), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [51353] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3319), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3321), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [51422] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3319), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3321), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [51491] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3335), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3337), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [51560] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3399), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3401), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [51629] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3441), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3443), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [51698] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2972), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2974), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [51767] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3445), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3447), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [51836] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3500), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3502), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [51905] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3522), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3524), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [51974] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3297), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3299), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [52043] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3297), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3299), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [52112] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3526), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3528), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [52181] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3010), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3006), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3008), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [52252] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3004), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3000), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3002), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [52323] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3530), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3532), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [52392] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3480), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3482), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [52461] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3415), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3417), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [52530] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3289), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3291), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [52599] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3285), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3287), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [52668] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3281), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3283), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [52737] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3269), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3271), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [52806] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3265), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3267), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [52875] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3191), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3193), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [52944] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3411), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3413), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [53013] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3191), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3193), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [53082] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3345), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3347), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [53151] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3191), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3193), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [53220] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3315), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3317), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [53289] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3110), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3112), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [53358] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3277), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3279), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [53427] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3273), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3275), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [53496] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3259), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3261), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [53565] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3253), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3255), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [53634] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3245), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3247), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [53703] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3241), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3243), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [53772] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -204293,735 +207131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [51630] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3749), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3143), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3145), 53, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [51701] = 5, - ACTIONS(5), 1, - sym_comment, - STATE(1968), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3000), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3002), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [51772] = 5, - ACTIONS(5), 1, - sym_comment, - STATE(1966), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3008), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3010), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [51843] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(2885), 1, - anon_sym_COMMA, - ACTIONS(2918), 1, - anon_sym_DASH_GT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3639), 1, - anon_sym_PIPE, - ACTIONS(3649), 1, - anon_sym_when, - ACTIONS(3652), 1, - anon_sym_COLON_COLON, - ACTIONS(3654), 1, - anon_sym_EQ_GT, - ACTIONS(3656), 1, - anon_sym_EQ, - ACTIONS(3666), 1, - anon_sym_in, - ACTIONS(3668), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3678), 1, - sym__not_in, - ACTIONS(3751), 1, - anon_sym_SEMI, - ACTIONS(3753), 1, - anon_sym_RPAREN, - STATE(380), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4417), 1, - aux_sym_block_repeat2, - STATE(4529), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3658), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3660), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3637), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3662), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3664), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [51968] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(898), 1, - anon_sym_RPAREN, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(2885), 1, - anon_sym_COMMA, - ACTIONS(2918), 1, - anon_sym_DASH_GT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3639), 1, - anon_sym_PIPE, - ACTIONS(3649), 1, - anon_sym_when, - ACTIONS(3652), 1, - anon_sym_COLON_COLON, - ACTIONS(3654), 1, - anon_sym_EQ_GT, - ACTIONS(3656), 1, - anon_sym_EQ, - ACTIONS(3666), 1, - anon_sym_in, - ACTIONS(3668), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3678), 1, - sym__not_in, - ACTIONS(3745), 1, - anon_sym_SEMI, - STATE(385), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4432), 1, - aux_sym_block_repeat2, - STATE(4529), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3658), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3660), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3637), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3662), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3664), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [52093] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(2885), 1, - anon_sym_COMMA, - ACTIONS(2918), 1, - anon_sym_DASH_GT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3639), 1, - anon_sym_PIPE, - ACTIONS(3649), 1, - anon_sym_when, - ACTIONS(3652), 1, - anon_sym_COLON_COLON, - ACTIONS(3654), 1, - anon_sym_EQ_GT, - ACTIONS(3656), 1, - anon_sym_EQ, - ACTIONS(3666), 1, - anon_sym_in, - ACTIONS(3668), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3678), 1, - sym__not_in, - ACTIONS(3755), 1, - anon_sym_SEMI, - ACTIONS(3757), 1, - anon_sym_RPAREN, - STATE(367), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4388), 1, - aux_sym_block_repeat2, - STATE(4529), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3658), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3660), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3637), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3662), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3664), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [52218] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(934), 1, - anon_sym_RPAREN, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(2885), 1, - anon_sym_COMMA, - ACTIONS(2918), 1, - anon_sym_DASH_GT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3639), 1, - anon_sym_PIPE, - ACTIONS(3649), 1, - anon_sym_when, - ACTIONS(3652), 1, - anon_sym_COLON_COLON, - ACTIONS(3654), 1, - anon_sym_EQ_GT, - ACTIONS(3656), 1, - anon_sym_EQ, - ACTIONS(3666), 1, - anon_sym_in, - ACTIONS(3668), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3678), 1, - sym__not_in, - ACTIONS(3759), 1, - anon_sym_SEMI, - STATE(399), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4333), 1, - aux_sym_block_repeat2, - STATE(4529), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3658), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3660), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3637), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3662), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3664), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [52343] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(1593), 1, - anon_sym_RPAREN, - ACTIONS(2885), 1, - anon_sym_COMMA, - ACTIONS(2918), 1, - anon_sym_DASH_GT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3639), 1, - anon_sym_PIPE, - ACTIONS(3649), 1, - anon_sym_when, - ACTIONS(3652), 1, - anon_sym_COLON_COLON, - ACTIONS(3654), 1, - anon_sym_EQ_GT, - ACTIONS(3656), 1, - anon_sym_EQ, - ACTIONS(3666), 1, - anon_sym_in, - ACTIONS(3668), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3678), 1, - sym__not_in, - ACTIONS(3761), 1, - anon_sym_SEMI, - STATE(354), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4401), 1, - aux_sym_block_repeat2, - STATE(4529), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3658), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3660), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3637), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3662), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3664), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [52468] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3221), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3223), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [52537] = 4, + [53841] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -205086,7 +207196,4005 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [52606] = 23, + [53910] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3145), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3147), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [53979] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3141), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3143), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [54048] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3215), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3217), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [54117] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3211), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3213), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [54186] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3468), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3470), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [54255] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3486), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3488), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [54324] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3496), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3498), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [54393] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3237), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3239), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [54462] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3289), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3291), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [54531] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3285), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3287), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [54600] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3155), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3157), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [54669] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(2086), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3012), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3014), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [54740] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(2084), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3038), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3040), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [54811] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(2083), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3038), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3040), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [54882] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(2080), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3064), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3066), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [54953] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3064), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3066), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [55022] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(2079), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3038), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3040), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [55093] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3078), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3080), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [55162] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3307), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3309), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [55231] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3118), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3120), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [55300] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3118), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3120), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [55369] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2611), 4, + sym__newline_before_do, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2613), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [55438] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3118), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3120), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [55507] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3534), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3536), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [55576] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2631), 4, + sym__newline_before_do, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2633), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [55645] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3855), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [55716] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3857), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [55787] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3859), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [55858] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3861), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [55929] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3307), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3309), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [55998] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3449), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3451), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [56067] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3435), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3437), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [56136] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3303), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3305), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [56205] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3863), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [56276] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3865), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 53, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [56347] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3867), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 53, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [56418] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3869), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 53, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [56489] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3871), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 53, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [56560] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3873), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 53, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [56631] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3875), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 53, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [56702] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3877), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 53, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [56773] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3879), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 53, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [56844] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3881), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 53, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [56915] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3883), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 53, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [56986] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3885), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 53, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [57057] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3887), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 53, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [57128] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3889), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 53, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [57199] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3891), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 53, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [57270] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3893), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 53, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [57341] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3895), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 53, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [57412] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3897), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 53, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [57483] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3899), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 53, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [57554] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3431), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3433), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [57623] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3427), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3429), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [57692] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3423), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3425), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [57761] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3901), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 53, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [57832] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3903), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 53, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [57903] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3905), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [57974] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3295), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [58043] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3907), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [58114] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3909), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [58185] = 25, ACTIONS(5), 1, sym_comment, ACTIONS(2881), 1, @@ -205111,7 +211219,2284 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(2924), 1, sym__not_in, - ACTIONS(3389), 1, + ACTIONS(3544), 1, + aux_sym__terminator_token1, + ACTIONS(3911), 1, + anon_sym_when, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2883), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2887), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2889), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2900), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2902), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2879), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2904), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2914), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3546), 8, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(2906), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [58296] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3289), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3291), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [58365] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3295), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [58434] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3913), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [58505] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3915), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [58576] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3917), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [58647] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3919), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [58718] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(414), 1, + anon_sym_do, + ACTIONS(3921), 1, + sym__newline_before_do, + STATE(3077), 1, + sym_do_block, + ACTIONS(3012), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3014), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [58793] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(414), 1, + anon_sym_do, + ACTIONS(3923), 1, + sym__newline_before_do, + STATE(3075), 1, + sym_do_block, + ACTIONS(3038), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3040), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [58868] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(414), 1, + anon_sym_do, + ACTIONS(3925), 1, + sym__newline_before_do, + STATE(3074), 1, + sym_do_block, + ACTIONS(3038), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3040), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [58943] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(414), 1, + anon_sym_do, + ACTIONS(3927), 1, + sym__newline_before_do, + STATE(3071), 1, + sym_do_block, + ACTIONS(3064), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3066), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [59018] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(414), 1, + anon_sym_do, + ACTIONS(3929), 1, + sym__newline_before_do, + STATE(3070), 1, + sym_do_block, + ACTIONS(3038), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3040), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [59093] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3931), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [59164] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3307), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3309), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [59233] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3341), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3343), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [59302] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(2885), 1, + anon_sym_COMMA, + ACTIONS(2918), 1, + anon_sym_DASH_GT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3646), 1, + anon_sym_PIPE, + ACTIONS(3656), 1, + anon_sym_when, + ACTIONS(3659), 1, + anon_sym_COLON_COLON, + ACTIONS(3661), 1, + anon_sym_EQ_GT, + ACTIONS(3663), 1, + anon_sym_EQ, + ACTIONS(3673), 1, + anon_sym_in, + ACTIONS(3675), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + sym__not_in, + ACTIONS(3755), 1, + anon_sym_SEMI, + ACTIONS(3933), 1, + anon_sym_RPAREN, + STATE(387), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4958), 1, + aux_sym_block_repeat2, + STATE(5161), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3654), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3665), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3667), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3644), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3669), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3671), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [59427] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3134), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3136), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [59496] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3323), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3325), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [59565] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3295), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [59634] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2916), 1, + anon_sym_STAR_STAR, + ACTIONS(2920), 1, + anon_sym_DOT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2883), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2887), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3293), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(2914), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 42, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [59715] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3122), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3124), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [59784] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3122), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3124), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [59853] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3114), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3116), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [59922] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2912), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2916), 1, + anon_sym_STAR_STAR, + ACTIONS(2920), 1, + anon_sym_DOT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2883), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2887), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3293), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(2914), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 41, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [60005] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3114), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3116), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [60074] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3122), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3124), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [60143] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3130), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3132), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [60212] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3303), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3305), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [60281] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2912), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2916), 1, + anon_sym_STAR_STAR, + ACTIONS(2920), 1, + anon_sym_DOT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2883), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2887), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3293), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(2914), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 41, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [60364] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2908), 1, + anon_sym_in, + ACTIONS(2910), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2912), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2916), 1, + anon_sym_STAR_STAR, + ACTIONS(2920), 1, + anon_sym_DOT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(2924), 1, + sym__not_in, + ACTIONS(3293), 1, + aux_sym__terminator_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2883), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2887), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2914), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 39, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [60453] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2908), 1, + anon_sym_in, + ACTIONS(2910), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2912), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2916), 1, + anon_sym_STAR_STAR, + ACTIONS(2920), 1, + anon_sym_DOT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(2924), 1, + sym__not_in, + ACTIONS(3293), 1, + aux_sym__terminator_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2883), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2887), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2879), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2914), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(2906), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 26, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [60546] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2908), 1, + anon_sym_in, + ACTIONS(2910), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2912), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2916), 1, + anon_sym_STAR_STAR, + ACTIONS(2920), 1, + anon_sym_DOT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(2924), 1, + sym__not_in, + ACTIONS(3293), 1, + aux_sym__terminator_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2883), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2887), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2879), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2904), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2914), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(2906), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 21, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [60641] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2908), 1, + anon_sym_in, + ACTIONS(2910), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2912), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2916), 1, + anon_sym_STAR_STAR, + ACTIONS(2920), 1, + anon_sym_DOT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(2924), 1, + sym__not_in, + ACTIONS(3293), 1, + aux_sym__terminator_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2883), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2887), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2902), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2879), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2904), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2914), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(2906), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [60738] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2898), 1, + anon_sym_EQ, + ACTIONS(2908), 1, + anon_sym_in, + ACTIONS(2910), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2912), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2916), 1, + anon_sym_STAR_STAR, + ACTIONS(2920), 1, + anon_sym_DOT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(2924), 1, + sym__not_in, + ACTIONS(3293), 1, aux_sym__terminator_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -205158,112 +213543,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3391), 11, + ACTIONS(3295), 14, anon_sym_SEMI, + anon_sym_PIPE, anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [52713] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(930), 1, - anon_sym_RPAREN, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(2885), 1, - anon_sym_COMMA, - ACTIONS(2918), 1, - anon_sym_DASH_GT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3639), 1, - anon_sym_PIPE, - ACTIONS(3649), 1, - anon_sym_when, - ACTIONS(3652), 1, - anon_sym_COLON_COLON, - ACTIONS(3654), 1, - anon_sym_EQ_GT, - ACTIONS(3656), 1, - anon_sym_EQ, - ACTIONS(3666), 1, - anon_sym_in, - ACTIONS(3668), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3678), 1, - sym__not_in, - ACTIONS(3763), 1, - anon_sym_SEMI, - STATE(357), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4390), 1, - aux_sym_block_repeat2, - STATE(4529), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3658), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3660), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3637), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3662), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3664), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [52838] = 21, + [60839] = 21, ACTIONS(5), 1, sym_comment, ACTIONS(2896), 1, @@ -205284,7 +213579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(2924), 1, sym__not_in, - ACTIONS(3389), 1, + ACTIONS(3293), 1, aux_sym__terminator_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -205331,7 +213626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3391), 13, + ACTIONS(3295), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_COMMA, @@ -205345,9 +213640,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [52941] = 20, + [60942] = 23, ACTIONS(5), 1, sym_comment, + ACTIONS(2881), 1, + anon_sym_PIPE, + ACTIONS(2894), 1, + anon_sym_COLON_COLON, + ACTIONS(2896), 1, + anon_sym_EQ_GT, ACTIONS(2898), 1, anon_sym_EQ, ACTIONS(2908), 1, @@ -205364,7 +213665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(2924), 1, sym__not_in, - ACTIONS(3389), 1, + ACTIONS(3293), 1, aux_sym__terminator_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -205411,182 +213712,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3391), 14, + ACTIONS(3295), 11, anon_sym_SEMI, - anon_sym_PIPE, anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [53042] = 32, + [61049] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(1667), 1, - anon_sym_RPAREN, - ACTIONS(2885), 1, - anon_sym_COMMA, - ACTIONS(2918), 1, - anon_sym_DASH_GT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3639), 1, + ACTIONS(2881), 1, anon_sym_PIPE, - ACTIONS(3649), 1, - anon_sym_when, - ACTIONS(3652), 1, + ACTIONS(2894), 1, anon_sym_COLON_COLON, - ACTIONS(3654), 1, + ACTIONS(2896), 1, anon_sym_EQ_GT, - ACTIONS(3656), 1, + ACTIONS(2898), 1, anon_sym_EQ, - ACTIONS(3666), 1, - anon_sym_in, - ACTIONS(3668), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3678), 1, - sym__not_in, - ACTIONS(3765), 1, - anon_sym_SEMI, - STATE(402), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4364), 1, - aux_sym_block_repeat2, - STATE(4529), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3658), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3660), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3637), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3662), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3664), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [53167] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3225), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3227), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [53236] = 18, - ACTIONS(5), 1, - sym_comment, ACTIONS(2908), 1, anon_sym_in, ACTIONS(2910), 1, @@ -205601,8 +213749,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(2924), 1, sym__not_in, - ACTIONS(3389), 1, + ACTIONS(3293), 1, aux_sym__terminator_token1, + ACTIONS(3911), 1, + anon_sym_when, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -205612,6 +213762,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2887), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2900), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, ACTIONS(2902), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, @@ -205644,93 +213798,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3391), 18, + ACTIONS(3295), 10, anon_sym_SEMI, - anon_sym_PIPE, anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [53333] = 4, + [61158] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3479), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3481), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2881), 1, anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, + ACTIONS(2894), 1, anon_sym_COLON_COLON, + ACTIONS(2896), 1, anon_sym_EQ_GT, + ACTIONS(2898), 1, anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [53402] = 17, - ACTIONS(5), 1, - sym_comment, ACTIONS(2908), 1, anon_sym_in, ACTIONS(2910), 1, @@ -205745,8 +213834,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(2924), 1, sym__not_in, - ACTIONS(3389), 1, + ACTIONS(3293), 1, aux_sym__terminator_token1, + ACTIONS(3911), 1, + anon_sym_when, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -205756,6 +213847,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2887), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2900), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2902), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, ACTIONS(2879), 4, anon_sym_LT, anon_sym_GT, @@ -205784,234 +213883,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3391), 21, + ACTIONS(3295), 10, anon_sym_SEMI, - anon_sym_PIPE, anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [53497] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3096), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3098), 53, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [53566] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3018), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3020), 53, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [53635] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3090), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3092), 53, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [53704] = 4, + [61267] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3389), 3, + ACTIONS(3106), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3391), 54, + ACTIONS(3108), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -206066,404 +213959,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [53773] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3072), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3074), 53, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [53842] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2635), 4, - sym__newline_before_do, - sym__not_in, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(2637), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [53911] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(1669), 1, - anon_sym_RPAREN, - ACTIONS(2885), 1, - anon_sym_COMMA, - ACTIONS(2918), 1, - anon_sym_DASH_GT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3639), 1, - anon_sym_PIPE, - ACTIONS(3649), 1, - anon_sym_when, - ACTIONS(3652), 1, - anon_sym_COLON_COLON, - ACTIONS(3654), 1, - anon_sym_EQ_GT, - ACTIONS(3656), 1, - anon_sym_EQ, - ACTIONS(3666), 1, - anon_sym_in, - ACTIONS(3668), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3678), 1, - sym__not_in, - ACTIONS(3767), 1, - anon_sym_SEMI, - STATE(409), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4341), 1, - aux_sym_block_repeat2, - STATE(4529), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3658), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3660), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3637), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3662), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3664), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [54036] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(902), 1, - anon_sym_RPAREN, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(2885), 1, - anon_sym_COMMA, - ACTIONS(2918), 1, - anon_sym_DASH_GT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3639), 1, - anon_sym_PIPE, - ACTIONS(3649), 1, - anon_sym_when, - ACTIONS(3652), 1, - anon_sym_COLON_COLON, - ACTIONS(3654), 1, - anon_sym_EQ_GT, - ACTIONS(3656), 1, - anon_sym_EQ, - ACTIONS(3666), 1, - anon_sym_in, - ACTIONS(3668), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3678), 1, - sym__not_in, - ACTIONS(3755), 1, - anon_sym_SEMI, - STATE(367), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4388), 1, - aux_sym_block_repeat2, - STATE(4529), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3658), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3660), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3637), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3662), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3664), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [54161] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3213), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3215), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [54230] = 4, + [61336] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3149), 3, + ACTIONS(3106), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3151), 54, + ACTIONS(3108), 54, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -206512,23 +214024,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [54299] = 4, + [61405] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3153), 3, + ACTIONS(3106), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3155), 54, + ACTIONS(3108), 54, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -206577,7 +214089,462 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [54368] = 10, + [61474] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [61543] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [61612] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [61681] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [61750] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [61819] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [61888] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [61957] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(2916), 1, @@ -206592,12 +214559,181 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2883), 2, anon_sym_SLASH, anon_sym_STAR, + ACTIONS(3293), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3295), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [62034] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2916), 1, + anon_sym_STAR_STAR, + ACTIONS(2920), 1, + anon_sym_DOT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3295), 52, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [62109] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2881), 1, + anon_sym_PIPE, + ACTIONS(2896), 1, + anon_sym_EQ_GT, + ACTIONS(2898), 1, + anon_sym_EQ, + ACTIONS(2908), 1, + anon_sym_in, + ACTIONS(2910), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2912), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2916), 1, + anon_sym_STAR_STAR, + ACTIONS(2920), 1, + anon_sym_DOT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(2924), 1, + sym__not_in, + ACTIONS(3293), 1, + aux_sym__terminator_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2883), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(2887), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3389), 2, - sym__not_in, - aux_sym__terminator_token1, + ACTIONS(2900), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2902), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2879), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2904), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, ACTIONS(2914), 6, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -206605,7 +214741,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - ACTIONS(3391), 42, + ACTIONS(2906), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [62214] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2908), 1, + anon_sym_in, + ACTIONS(2910), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2912), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2916), 1, + anon_sym_STAR_STAR, + ACTIONS(2920), 1, + anon_sym_DOT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(2924), 1, + sym__not_in, + ACTIONS(3293), 1, + aux_sym__terminator_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2883), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2887), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2914), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(2906), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 30, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -206630,157 +214834,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [54449] = 4, + [62305] = 12, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3269), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3271), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, + ACTIONS(2910), 1, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [54518] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3217), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3219), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [54587] = 11, - ACTIONS(5), 1, - sym_comment, ACTIONS(2912), 1, anon_sym_SLASH_SLASH, ACTIONS(2916), 1, @@ -206798,7 +214862,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2887), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3389), 2, + ACTIONS(3293), 2, sym__not_in, aux_sym__terminator_token1, ACTIONS(2914), 6, @@ -206808,7 +214872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - ACTIONS(3391), 41, + ACTIONS(3295), 40, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -206843,17 +214907,1969 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, - anon_sym_CARET_CARET_CARET, anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [54670] = 32, + [62390] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(906), 1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3030), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3032), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [62459] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3935), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [62530] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3516), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3518), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [62599] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3285), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3287), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [62668] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3034), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3036), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [62737] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [62806] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [62875] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [62944] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [63013] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [63082] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [63151] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [63220] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [63289] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [63358] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [63427] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3159), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3161), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [63496] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3163), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3165), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [63565] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3167), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3169), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [63634] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3171), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3173), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [63703] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3175), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3177), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [63772] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3937), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [63843] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3939), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [63914] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3179), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3181), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [63983] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3006), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3008), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [64052] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3183), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3185), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [64121] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3183), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3185), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [64190] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3000), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3002), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [64259] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3187), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3189), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [64328] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3183), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3185), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [64397] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3195), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3197), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [64466] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(894), 1, anon_sym_RPAREN, ACTIONS(1054), 1, aux_sym__terminator_token1, @@ -206863,77 +216879,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, ACTIONS(2922), 1, anon_sym_LBRACK2, - ACTIONS(3639), 1, - anon_sym_PIPE, - ACTIONS(3649), 1, - anon_sym_when, - ACTIONS(3652), 1, - anon_sym_COLON_COLON, - ACTIONS(3654), 1, - anon_sym_EQ_GT, - ACTIONS(3656), 1, - anon_sym_EQ, - ACTIONS(3666), 1, - anon_sym_in, - ACTIONS(3668), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3678), 1, - sym__not_in, - ACTIONS(3751), 1, + ACTIONS(3640), 1, anon_sym_SEMI, - STATE(380), 1, + ACTIONS(3646), 1, + anon_sym_PIPE, + ACTIONS(3656), 1, + anon_sym_when, + ACTIONS(3659), 1, + anon_sym_COLON_COLON, + ACTIONS(3661), 1, + anon_sym_EQ_GT, + ACTIONS(3663), 1, + anon_sym_EQ, + ACTIONS(3673), 1, + anon_sym_in, + ACTIONS(3675), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + sym__not_in, + STATE(376), 1, sym__terminator, - STATE(1028), 1, + STATE(1031), 1, aux_sym__terminator_repeat1, - STATE(4417), 1, + STATE(5016), 1, aux_sym_block_repeat2, - STATE(4529), 1, + STATE(5161), 1, aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3641), 2, + ACTIONS(3648), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3645), 2, + ACTIONS(3652), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3647), 2, + ACTIONS(3654), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3658), 3, + ACTIONS(3665), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3660), 3, + ACTIONS(3667), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3637), 4, + ACTIONS(3644), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3662), 5, + ACTIONS(3669), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3672), 6, + ACTIONS(3679), 6, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - ACTIONS(3664), 9, + ACTIONS(3671), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -206943,18 +216959,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [54795] = 4, + [64591] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3941), 1, + aux_sym_sigil_token3, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3221), 3, + ACTIONS(3223), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3223), 53, + ACTIONS(3225), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -206963,7 +216981,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -207008,18 +217025,299 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [54864] = 4, + [64662] = 32, ACTIONS(5), 1, sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1643), 1, + anon_sym_RPAREN, + ACTIONS(2885), 1, + anon_sym_COMMA, + ACTIONS(2918), 1, + anon_sym_DASH_GT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3646), 1, + anon_sym_PIPE, + ACTIONS(3656), 1, + anon_sym_when, + ACTIONS(3659), 1, + anon_sym_COLON_COLON, + ACTIONS(3661), 1, + anon_sym_EQ_GT, + ACTIONS(3663), 1, + anon_sym_EQ, + ACTIONS(3673), 1, + anon_sym_in, + ACTIONS(3675), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + sym__not_in, + ACTIONS(3943), 1, + anon_sym_SEMI, + STATE(427), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4981), 1, + aux_sym_block_repeat2, + STATE(5161), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3654), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3665), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3667), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3644), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3669), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3671), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [64787] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(2885), 1, + anon_sym_COMMA, + ACTIONS(2918), 1, + anon_sym_DASH_GT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3646), 1, + anon_sym_PIPE, + ACTIONS(3656), 1, + anon_sym_when, + ACTIONS(3659), 1, + anon_sym_COLON_COLON, + ACTIONS(3661), 1, + anon_sym_EQ_GT, + ACTIONS(3663), 1, + anon_sym_EQ, + ACTIONS(3673), 1, + anon_sym_in, + ACTIONS(3675), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + sym__not_in, + ACTIONS(3945), 1, + anon_sym_SEMI, + ACTIONS(3947), 1, + anon_sym_RPAREN, + STATE(364), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4917), 1, + aux_sym_block_repeat2, + STATE(5161), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3654), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3665), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3667), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3644), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3669), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3671), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [64912] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1577), 1, + anon_sym_RPAREN, + ACTIONS(2885), 1, + anon_sym_COMMA, + ACTIONS(2918), 1, + anon_sym_DASH_GT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3646), 1, + anon_sym_PIPE, + ACTIONS(3656), 1, + anon_sym_when, + ACTIONS(3659), 1, + anon_sym_COLON_COLON, + ACTIONS(3661), 1, + anon_sym_EQ_GT, + ACTIONS(3663), 1, + anon_sym_EQ, + ACTIONS(3673), 1, + anon_sym_in, + ACTIONS(3675), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + sym__not_in, + ACTIONS(3949), 1, + anon_sym_SEMI, + STATE(371), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4957), 1, + aux_sym_block_repeat2, + STATE(5161), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3654), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3665), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3667), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3644), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3669), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3671), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [65037] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3951), 1, + aux_sym_sigil_token3, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3225), 3, + ACTIONS(3223), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3227), 53, + ACTIONS(3225), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -207028,7 +217326,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -207073,18 +217370,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [54933] = 4, + [65108] = 32, ACTIONS(5), 1, sym_comment, + ACTIONS(922), 1, + anon_sym_RPAREN, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(2885), 1, + anon_sym_COMMA, + ACTIONS(2918), 1, + anon_sym_DASH_GT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3646), 1, + anon_sym_PIPE, + ACTIONS(3656), 1, + anon_sym_when, + ACTIONS(3659), 1, + anon_sym_COLON_COLON, + ACTIONS(3661), 1, + anon_sym_EQ_GT, + ACTIONS(3663), 1, + anon_sym_EQ, + ACTIONS(3673), 1, + anon_sym_in, + ACTIONS(3675), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + sym__not_in, + ACTIONS(3849), 1, + anon_sym_SEMI, + STATE(381), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(5037), 1, + aux_sym_block_repeat2, + STATE(5161), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3654), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3665), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3667), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3644), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3669), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3671), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [65233] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3953), 1, + aux_sym_sigil_token3, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3229), 3, + ACTIONS(3223), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3231), 53, + ACTIONS(3225), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -207093,7 +217485,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -207138,18 +217529,299 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [55002] = 4, + [65304] = 32, ACTIONS(5), 1, sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(2885), 1, + anon_sym_COMMA, + ACTIONS(2918), 1, + anon_sym_DASH_GT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3646), 1, + anon_sym_PIPE, + ACTIONS(3656), 1, + anon_sym_when, + ACTIONS(3659), 1, + anon_sym_COLON_COLON, + ACTIONS(3661), 1, + anon_sym_EQ_GT, + ACTIONS(3663), 1, + anon_sym_EQ, + ACTIONS(3673), 1, + anon_sym_in, + ACTIONS(3675), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + sym__not_in, + ACTIONS(3955), 1, + anon_sym_SEMI, + ACTIONS(3957), 1, + anon_sym_RPAREN, + STATE(351), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4994), 1, + aux_sym_block_repeat2, + STATE(5161), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3654), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3665), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3667), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3644), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3669), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3671), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [65429] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1533), 1, + anon_sym_RPAREN, + ACTIONS(2885), 1, + anon_sym_COMMA, + ACTIONS(2918), 1, + anon_sym_DASH_GT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3646), 1, + anon_sym_PIPE, + ACTIONS(3656), 1, + anon_sym_when, + ACTIONS(3659), 1, + anon_sym_COLON_COLON, + ACTIONS(3661), 1, + anon_sym_EQ_GT, + ACTIONS(3663), 1, + anon_sym_EQ, + ACTIONS(3673), 1, + anon_sym_in, + ACTIONS(3675), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + sym__not_in, + ACTIONS(3959), 1, + anon_sym_SEMI, + STATE(353), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4904), 1, + aux_sym_block_repeat2, + STATE(5161), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3654), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3665), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3667), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3644), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3669), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3671), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [65554] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(938), 1, + anon_sym_RPAREN, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(2885), 1, + anon_sym_COMMA, + ACTIONS(2918), 1, + anon_sym_DASH_GT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3646), 1, + anon_sym_PIPE, + ACTIONS(3656), 1, + anon_sym_when, + ACTIONS(3659), 1, + anon_sym_COLON_COLON, + ACTIONS(3661), 1, + anon_sym_EQ_GT, + ACTIONS(3663), 1, + anon_sym_EQ, + ACTIONS(3673), 1, + anon_sym_in, + ACTIONS(3675), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + sym__not_in, + ACTIONS(3945), 1, + anon_sym_SEMI, + STATE(364), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4917), 1, + aux_sym_block_repeat2, + STATE(5161), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3654), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3665), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3667), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3644), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3669), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3671), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [65679] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3961), 1, + aux_sym_sigil_token3, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3106), 3, + ACTIONS(3223), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3108), 53, + ACTIONS(3225), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -207158,7 +217830,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -207203,18 +217874,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [55071] = 4, + [65750] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3233), 3, + ACTIONS(3058), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3235), 53, + ACTIONS(3060), 53, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -207223,7 +217895,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -207268,7 +217939,725 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [55140] = 4, + [65819] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2996), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2998), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [65888] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2881), 1, + anon_sym_PIPE, + ACTIONS(2894), 1, + anon_sym_COLON_COLON, + ACTIONS(2896), 1, + anon_sym_EQ_GT, + ACTIONS(2898), 1, + anon_sym_EQ, + ACTIONS(2908), 1, + anon_sym_in, + ACTIONS(2910), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2912), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2916), 1, + anon_sym_STAR_STAR, + ACTIONS(2920), 1, + anon_sym_DOT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(2924), 1, + sym__not_in, + ACTIONS(3551), 1, + aux_sym__terminator_token1, + ACTIONS(3911), 1, + anon_sym_when, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2883), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2887), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2889), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2900), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2902), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2879), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2904), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2914), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3553), 8, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(2906), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [65999] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(2885), 1, + anon_sym_COMMA, + ACTIONS(2918), 1, + anon_sym_DASH_GT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3640), 1, + anon_sym_SEMI, + ACTIONS(3646), 1, + anon_sym_PIPE, + ACTIONS(3656), 1, + anon_sym_when, + ACTIONS(3659), 1, + anon_sym_COLON_COLON, + ACTIONS(3661), 1, + anon_sym_EQ_GT, + ACTIONS(3663), 1, + anon_sym_EQ, + ACTIONS(3673), 1, + anon_sym_in, + ACTIONS(3675), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + sym__not_in, + ACTIONS(3963), 1, + anon_sym_RPAREN, + STATE(376), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(5016), 1, + aux_sym_block_repeat2, + STATE(5161), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3654), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3665), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3667), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3644), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3669), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3671), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [66124] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3199), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3201), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [66193] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3203), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3205), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [66262] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1621), 1, + anon_sym_RPAREN, + ACTIONS(2885), 1, + anon_sym_COMMA, + ACTIONS(2918), 1, + anon_sym_DASH_GT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3646), 1, + anon_sym_PIPE, + ACTIONS(3656), 1, + anon_sym_when, + ACTIONS(3659), 1, + anon_sym_COLON_COLON, + ACTIONS(3661), 1, + anon_sym_EQ_GT, + ACTIONS(3663), 1, + anon_sym_EQ, + ACTIONS(3673), 1, + anon_sym_in, + ACTIONS(3675), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + sym__not_in, + ACTIONS(3965), 1, + anon_sym_SEMI, + STATE(372), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4997), 1, + aux_sym_block_repeat2, + STATE(5161), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3654), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3665), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3667), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3644), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3669), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3671), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [66387] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(934), 1, + anon_sym_RPAREN, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(2885), 1, + anon_sym_COMMA, + ACTIONS(2918), 1, + anon_sym_DASH_GT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3646), 1, + anon_sym_PIPE, + ACTIONS(3656), 1, + anon_sym_when, + ACTIONS(3659), 1, + anon_sym_COLON_COLON, + ACTIONS(3661), 1, + anon_sym_EQ_GT, + ACTIONS(3663), 1, + anon_sym_EQ, + ACTIONS(3673), 1, + anon_sym_in, + ACTIONS(3675), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + sym__not_in, + ACTIONS(3809), 1, + anon_sym_SEMI, + STATE(363), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(5010), 1, + aux_sym_block_repeat2, + STATE(5161), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3654), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3665), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3667), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3644), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3669), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3671), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [66512] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(914), 1, + anon_sym_RPAREN, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(2885), 1, + anon_sym_COMMA, + ACTIONS(2918), 1, + anon_sym_DASH_GT, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3646), 1, + anon_sym_PIPE, + ACTIONS(3656), 1, + anon_sym_when, + ACTIONS(3659), 1, + anon_sym_COLON_COLON, + ACTIONS(3661), 1, + anon_sym_EQ_GT, + ACTIONS(3663), 1, + anon_sym_EQ, + ACTIONS(3673), 1, + anon_sym_in, + ACTIONS(3675), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + sym__not_in, + ACTIONS(3955), 1, + anon_sym_SEMI, + STATE(351), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4994), 1, + aux_sym_block_repeat2, + STATE(5161), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3654), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3665), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3667), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3644), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3669), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3671), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [66637] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2990), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2992), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [66706] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, @@ -207333,7 +218722,1177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [55209] = 4, + [66775] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3496), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3498), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [66844] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3486), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3488), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [66913] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3468), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3470), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [66982] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2631), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2633), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [67051] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2611), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2613), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [67120] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2647), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2649), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [67189] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3211), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3213), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [67258] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3215), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3217), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [67327] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3141), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3143), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [67396] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3145), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3147), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [67465] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3229), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3231), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [67534] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2651), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2653), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [67603] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3090), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3092), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [67672] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3044), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3046), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [67741] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3048), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3050), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [67810] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3052), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3054), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [67879] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3235), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [67948] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3098), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3100), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [68017] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, @@ -207398,7 +219957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [55278] = 4, + [68086] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, @@ -207463,18 +220022,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [55347] = 4, + [68155] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3249), 3, + ACTIONS(3311), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3251), 53, + ACTIONS(3313), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -207528,7 +220087,982 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [55416] = 4, + [68224] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3331), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3333), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [68293] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3335), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3337), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [68362] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3399), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3401), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [68431] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3441), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3443), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [68500] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3445), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3447), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [68569] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3500), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3502), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [68638] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3522), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3524), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [68707] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3526), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3528), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [68776] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3530), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3532), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [68845] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3480), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3482), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [68914] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3415), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3417), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [68983] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3411), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3413), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [69052] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3345), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3347), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [69121] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3315), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3317), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [69190] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3110), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3112), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [69259] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, @@ -207593,251 +221127,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [55485] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3135), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3137), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [55554] = 14, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2908), 1, - anon_sym_in, - ACTIONS(2910), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2912), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2916), 1, - anon_sym_STAR_STAR, - ACTIONS(2920), 1, - anon_sym_DOT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(2924), 1, - sym__not_in, - ACTIONS(3389), 1, - aux_sym__terminator_token1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2883), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2887), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2914), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 39, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [55643] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(2885), 1, - anon_sym_COMMA, - ACTIONS(2918), 1, - anon_sym_DASH_GT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3639), 1, - anon_sym_PIPE, - ACTIONS(3649), 1, - anon_sym_when, - ACTIONS(3652), 1, - anon_sym_COLON_COLON, - ACTIONS(3654), 1, - anon_sym_EQ_GT, - ACTIONS(3656), 1, - anon_sym_EQ, - ACTIONS(3666), 1, - anon_sym_in, - ACTIONS(3668), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3678), 1, - sym__not_in, - ACTIONS(3759), 1, - anon_sym_SEMI, - ACTIONS(3769), 1, - anon_sym_RPAREN, - STATE(399), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4333), 1, - aux_sym_block_repeat2, - STATE(4529), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3658), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3660), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3637), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3662), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3664), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [55768] = 4, + [69328] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3257), 3, + ACTIONS(3259), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3259), 53, + ACTIONS(3261), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -207891,476 +221192,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [55837] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(938), 1, - anon_sym_RPAREN, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(2885), 1, - anon_sym_COMMA, - ACTIONS(2918), 1, - anon_sym_DASH_GT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3633), 1, - anon_sym_SEMI, - ACTIONS(3639), 1, - anon_sym_PIPE, - ACTIONS(3649), 1, - anon_sym_when, - ACTIONS(3652), 1, - anon_sym_COLON_COLON, - ACTIONS(3654), 1, - anon_sym_EQ_GT, - ACTIONS(3656), 1, - anon_sym_EQ, - ACTIONS(3666), 1, - anon_sym_in, - ACTIONS(3668), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3678), 1, - sym__not_in, - STATE(433), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4315), 1, - aux_sym_block_repeat2, - STATE(4529), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3658), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3660), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3637), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3662), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3664), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [55962] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(2885), 1, - anon_sym_COMMA, - ACTIONS(2918), 1, - anon_sym_DASH_GT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3639), 1, - anon_sym_PIPE, - ACTIONS(3649), 1, - anon_sym_when, - ACTIONS(3652), 1, - anon_sym_COLON_COLON, - ACTIONS(3654), 1, - anon_sym_EQ_GT, - ACTIONS(3656), 1, - anon_sym_EQ, - ACTIONS(3666), 1, - anon_sym_in, - ACTIONS(3668), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3678), 1, - sym__not_in, - ACTIONS(3763), 1, - anon_sym_SEMI, - ACTIONS(3771), 1, - anon_sym_RPAREN, - STATE(357), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4390), 1, - aux_sym_block_repeat2, - STATE(4529), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3658), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3660), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3637), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3662), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3664), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [56087] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(1567), 1, - anon_sym_RPAREN, - ACTIONS(2885), 1, - anon_sym_COMMA, - ACTIONS(2918), 1, - anon_sym_DASH_GT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3639), 1, - anon_sym_PIPE, - ACTIONS(3649), 1, - anon_sym_when, - ACTIONS(3652), 1, - anon_sym_COLON_COLON, - ACTIONS(3654), 1, - anon_sym_EQ_GT, - ACTIONS(3656), 1, - anon_sym_EQ, - ACTIONS(3666), 1, - anon_sym_in, - ACTIONS(3668), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3678), 1, - sym__not_in, - ACTIONS(3773), 1, - anon_sym_SEMI, - STATE(386), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4387), 1, - aux_sym_block_repeat2, - STATE(4529), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3658), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3660), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3637), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3662), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3664), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [56212] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2881), 1, - anon_sym_PIPE, - ACTIONS(2894), 1, - anon_sym_COLON_COLON, - ACTIONS(2896), 1, - anon_sym_EQ_GT, - ACTIONS(2898), 1, - anon_sym_EQ, - ACTIONS(2908), 1, - anon_sym_in, - ACTIONS(2910), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2912), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2916), 1, - anon_sym_STAR_STAR, - ACTIONS(2920), 1, - anon_sym_DOT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(2924), 1, - sym__not_in, - ACTIONS(3558), 1, - aux_sym__terminator_token1, - ACTIONS(3735), 1, - anon_sym_when, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2883), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2887), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2889), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(2900), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(2902), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2879), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2904), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2914), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3560), 8, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - ACTIONS(2906), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [56323] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(922), 1, - anon_sym_RPAREN, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(2885), 1, - anon_sym_COMMA, - ACTIONS(2918), 1, - anon_sym_DASH_GT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3639), 1, - anon_sym_PIPE, - ACTIONS(3649), 1, - anon_sym_when, - ACTIONS(3652), 1, - anon_sym_COLON_COLON, - ACTIONS(3654), 1, - anon_sym_EQ_GT, - ACTIONS(3656), 1, - anon_sym_EQ, - ACTIONS(3666), 1, - anon_sym_in, - ACTIONS(3668), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3678), 1, - sym__not_in, - ACTIONS(3741), 1, - anon_sym_SEMI, - STATE(422), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4298), 1, - aux_sym_block_repeat2, - STATE(4529), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3658), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3660), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3637), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3662), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3664), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [56448] = 4, + [69397] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3265), 3, + ACTIONS(3273), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3267), 53, + ACTIONS(3275), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -208414,368 +221257,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [56517] = 4, + [69466] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3261), 3, + ACTIONS(3094), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3263), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [56586] = 16, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2908), 1, - anon_sym_in, - ACTIONS(2910), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2912), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2916), 1, - anon_sym_STAR_STAR, - ACTIONS(2920), 1, - anon_sym_DOT, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(2924), 1, - sym__not_in, - ACTIONS(3389), 1, - aux_sym__terminator_token1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2883), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2887), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2879), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2914), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(2906), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 26, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [56679] = 17, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - aux_sym__terminator_token1, - ACTIONS(3596), 1, - anon_sym_in, - ACTIONS(3598), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3600), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3604), 1, - anon_sym_STAR_STAR, - ACTIONS(3606), 1, - anon_sym_DOT, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(3610), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3574), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3576), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3570), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3592), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3602), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3594), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [56773] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3401), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3403), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [56841] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3205), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3207), 52, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [56909] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3612), 1, + ACTIONS(3096), 53, anon_sym_LPAREN, - STATE(1728), 1, - sym__call_arguments_with_parentheses, - ACTIONS(2972), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2974), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -208827,20 +221321,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [56981] = 4, + anon_sym_do, + [69535] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3201), 4, + aux_sym__terminator_token1, + ACTIONS(3277), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3203), 52, - anon_sym_SEMI, + ACTIONS(3279), 53, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -208888,113 +221385,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [57049] = 25, + [69604] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3558), 1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3572), 1, - anon_sym_PIPE, - ACTIONS(3580), 1, - anon_sym_when, - ACTIONS(3582), 1, - anon_sym_COLON_COLON, - ACTIONS(3584), 1, - anon_sym_EQ_GT, - ACTIONS(3586), 1, - anon_sym_EQ, - ACTIONS(3596), 1, - anon_sym_in, - ACTIONS(3598), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3600), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3604), 1, - anon_sym_STAR_STAR, - ACTIONS(3606), 1, - anon_sym_DOT, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(3610), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3574), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3576), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3578), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3588), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3590), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3570), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3592), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3602), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3560), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - ACTIONS(3594), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [57159] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3197), 4, + ACTIONS(3074), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3199), 52, - anon_sym_SEMI, + ACTIONS(3076), 53, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -209037,28 +221450,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [57227] = 4, + [69673] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3213), 4, + aux_sym__terminator_token1, + ACTIONS(3018), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3215), 52, - anon_sym_SEMI, + ACTIONS(3020), 53, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -209101,28 +221515,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [57295] = 4, + [69742] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3217), 4, + aux_sym__terminator_token1, + ACTIONS(3179), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3219), 52, - anon_sym_SEMI, + ACTIONS(3181), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -209165,28 +221579,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [57363] = 4, + [69810] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3221), 4, + aux_sym__terminator_token1, + ACTIONS(3183), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3223), 52, - anon_sym_SEMI, + ACTIONS(3185), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -209229,28 +221643,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [57431] = 4, + [69878] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3225), 4, + aux_sym__terminator_token1, + ACTIONS(3175), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3227), 52, - anon_sym_SEMI, + ACTIONS(3177), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -209293,28 +221707,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [57499] = 4, + [69946] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3229), 4, + aux_sym__terminator_token1, + ACTIONS(3171), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3231), 52, - anon_sym_SEMI, + ACTIONS(3173), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -209357,28 +221771,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [57567] = 4, + [70014] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3233), 4, + aux_sym__terminator_token1, + ACTIONS(3167), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3235), 52, - anon_sym_SEMI, + ACTIONS(3169), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -209421,28 +221835,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [57635] = 4, + [70082] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3237), 4, + aux_sym__terminator_token1, + ACTIONS(3163), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3239), 52, - anon_sym_SEMI, + ACTIONS(3165), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -209485,28 +221899,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [57703] = 4, + [70150] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3241), 4, + aux_sym__terminator_token1, + ACTIONS(3159), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3243), 52, - anon_sym_SEMI, + ACTIONS(3161), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -209549,597 +221963,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [57771] = 4, + [70218] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3245), 4, + aux_sym__terminator_token1, + ACTIONS(3106), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3247), 52, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [57839] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3249), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3251), 52, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [57907] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3253), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3255), 52, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [57975] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3257), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3259), 52, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [58043] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3261), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3263), 52, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [58111] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3265), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3267), 52, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [58179] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3106), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, ACTIONS(3108), 52, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [58247] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3269), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3271), 52, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [58315] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3193), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3195), 52, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [58383] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3479), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3481), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -210192,1553 +222029,1101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [58451] = 6, + [70286] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3612), 1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [70354] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [70422] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [70490] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [70558] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [70626] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [70694] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [70762] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [70830] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [70898] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3183), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3185), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [70966] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3187), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3189), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [71034] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3183), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3185), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [71102] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3195), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3197), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [71170] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3199), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3201), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [71238] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3203), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3205), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [71306] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3207), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3209), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [71374] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3303), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3305), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [71442] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3967), 1, anon_sym_LPAREN, - STATE(1732), 1, + STATE(2666), 1, sym__call_arguments_with_parentheses, - ACTIONS(2972), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2974), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [58523] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3775), 1, - anon_sym_COMMA, - STATE(1854), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3479), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3481), 50, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [58595] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3189), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3191), 52, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [58663] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3185), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3187), 52, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [58731] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3612), 1, - anon_sym_LPAREN, - STATE(1733), 1, - sym__call_arguments_with_parentheses, - ACTIONS(2972), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2974), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [58803] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3181), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3183), 52, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [58871] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3778), 1, - anon_sym_LPAREN, - STATE(2265), 1, - sym__call_arguments_with_parentheses, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2972), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2974), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [58943] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3465), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3467), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [59011] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3461), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3463), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [59079] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3173), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3175), 52, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [59147] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3169), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3171), 52, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [59215] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3165), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3167), 52, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [59283] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3161), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3163), 52, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [59351] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3050), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3052), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [59419] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3022), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3024), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [59487] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3457), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3459), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [59555] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3457), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3459), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [59623] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3209), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3211), 52, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [59691] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3157), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3159), 52, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [59759] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3453), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3455), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [59827] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3453), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3455), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [59895] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3153), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3155), 52, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [59963] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3149), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3151), 52, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [60031] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3289), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3291), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [60099] = 4, - ACTIONS(5), 1, - sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -211747,11 +223132,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(2974), 52, + ACTIONS(2974), 50, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -211798,20 +223180,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [60167] = 4, + [71514] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3967), 1, + anon_sym_LPAREN, + STATE(2212), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2972), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2974), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [71586] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3285), 3, + ACTIONS(3106), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3287), 52, + ACTIONS(3108), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -211864,24 +223313,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [60235] = 6, + [71654] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3778), 1, - anon_sym_LPAREN, - STATE(2266), 1, - sym__call_arguments_with_parentheses, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [71722] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(2640), 1, + sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2972), 5, + ACTIONS(2984), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2974), 49, + ACTIONS(2986), 50, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -211930,40 +223442,478 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [60307] = 10, + [71792] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3604), 1, - anon_sym_STAR_STAR, - ACTIONS(3606), 1, - anon_sym_DOT, - ACTIONS(3608), 1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, + ACTIONS(3108), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [71860] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [71928] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [71996] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [72064] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [72132] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [72200] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [72268] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(2661), 1, + sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3389), 2, + ACTIONS(2978), 5, + sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3574), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3576), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3602), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 41, + anon_sym_LBRACK2, + ACTIONS(2980), 50, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -211995,23 +223945,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [60387] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [72338] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3449), 3, + ACTIONS(3106), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3451), 52, + ACTIONS(3108), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -212064,18 +224019,1773 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [60455] = 4, + [72406] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3967), 1, + anon_sym_LPAREN, + STATE(2665), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2972), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2974), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [72478] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3285), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3287), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [72546] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(2649), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2978), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2980), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [72616] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3263), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [72686] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3257), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [72756] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3227), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [72826] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3453), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [72896] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3520), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [72966] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3421), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [73036] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3339), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [73106] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3301), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [73176] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3349), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [73246] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3472), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [73316] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3474), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [73386] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3476), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [73456] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3478), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [73526] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3484), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [73596] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3490), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [73666] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3492), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [73736] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3494), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [73806] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3504), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [73876] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3512), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [73946] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3514), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [74016] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(2648), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2984), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2986), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [74086] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3289), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3291), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [74154] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(592), 1, + anon_sym_do, + ACTIONS(3969), 1, + sym__newline_before_do, + STATE(3306), 1, + sym_do_block, + ACTIONS(2984), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2986), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [74228] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3307), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3309), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [74296] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3494), 3, + ACTIONS(3130), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3496), 52, + ACTIONS(3132), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -212128,29 +225838,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [60523] = 6, + [74364] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3780), 1, - anon_sym_COMMA, - STATE(1854), 1, - aux_sym_keywords_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3475), 3, + ACTIONS(3122), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3477), 50, + ACTIONS(3124), 52, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -212194,7 +225902,330 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [60595] = 4, + [74432] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3114), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3116), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [74500] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(592), 1, + anon_sym_do, + ACTIONS(3971), 1, + sym__newline_before_do, + STATE(3255), 1, + sym_do_block, + ACTIONS(2978), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2980), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [74574] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3114), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3116), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [74642] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3122), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3124), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [74710] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3122), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3124), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [74778] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, @@ -212258,42 +226289,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [60663] = 11, + [74846] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3600), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3604), 1, - anon_sym_STAR_STAR, - ACTIONS(3606), 1, - anon_sym_DOT, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3389), 2, - sym__not_in, aux_sym__terminator_token1, - ACTIONS(3574), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3576), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3602), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 40, - anon_sym_SEMI, + ACTIONS(3323), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3325), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -212324,27 +226342,1024 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [74914] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3973), 1, + anon_sym_COMMA, + STATE(2087), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3457), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3459), 50, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [74986] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_COMMA, + STATE(2088), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3134), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3136), 50, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [75058] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3341), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3343), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [75126] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3979), 1, + anon_sym_DOT, + ACTIONS(3981), 1, + anon_sym_LBRACK2, + ACTIONS(3293), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3295), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_do, + [75198] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3293), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3295), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [75266] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3293), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3295), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [75334] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3423), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3425), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [75402] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3427), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3429), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [75470] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3431), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3433), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [75538] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3134), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3136), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [75606] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3551), 1, + aux_sym__terminator_token1, + ACTIONS(3695), 1, + anon_sym_PIPE, + ACTIONS(3703), 1, + anon_sym_when, + ACTIONS(3705), 1, + anon_sym_COLON_COLON, + ACTIONS(3707), 1, + anon_sym_EQ_GT, + ACTIONS(3709), 1, + anon_sym_EQ, + ACTIONS(3719), 1, + anon_sym_in, + ACTIONS(3721), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3723), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3727), 1, + anon_sym_STAR_STAR, + ACTIONS(3729), 1, + anon_sym_DOT, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(3733), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3697), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3699), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3701), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3711), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3713), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3693), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3715), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3725), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3553), 7, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [60745] = 6, + ACTIONS(3717), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [75716] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3782), 1, + ACTIONS(3983), 1, anon_sym_COMMA, - STATE(1939), 1, + STATE(2088), 1, aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3149), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3151), 50, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [75788] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3983), 1, + anon_sym_COMMA, + STATE(2098), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3219), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3221), 50, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [75860] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3126), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3128), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [75928] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3249), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3251), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [75996] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_COMMA, + STATE(2102), 1, + aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3469), 4, + ACTIONS(3457), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3471), 50, + ACTIONS(3459), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -212395,7 +227410,7037 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [60817] = 4, + [76068] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3988), 1, + anon_sym_COMMA, + STATE(2103), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3134), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3136), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [76140] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3991), 1, + anon_sym_COMMA, + STATE(2087), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3506), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3508), 50, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [76212] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3993), 1, + anon_sym_COMMA, + STATE(2103), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3149), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3151), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [76284] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3351), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3353), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [76352] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3995), 1, + anon_sym_LPAREN, + STATE(2348), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2972), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2974), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [76424] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3995), 1, + anon_sym_LPAREN, + STATE(2345), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2972), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2974), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [76496] = 27, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3351), 1, + sym__newline_before_do, + ACTIONS(3979), 1, + anon_sym_DOT, + ACTIONS(3981), 1, + anon_sym_LBRACK2, + ACTIONS(3999), 1, + anon_sym_PIPE, + ACTIONS(4003), 1, + anon_sym_COMMA, + ACTIONS(4009), 1, + anon_sym_when, + ACTIONS(4011), 1, + anon_sym_COLON_COLON, + ACTIONS(4013), 1, + anon_sym_EQ_GT, + ACTIONS(4015), 1, + anon_sym_EQ, + ACTIONS(4025), 1, + anon_sym_in, + ACTIONS(4027), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4029), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4033), 1, + anon_sym_STAR_STAR, + ACTIONS(4035), 1, + sym__not_in, + STATE(2104), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(4001), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4005), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4007), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4017), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4019), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3353), 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_do, + ACTIONS(3997), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4021), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4031), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4023), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [76610] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3993), 1, + anon_sym_COMMA, + STATE(2105), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3219), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3221), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [76682] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3751), 1, + anon_sym_LPAREN, + STATE(1874), 1, + sym__call_arguments_with_parentheses, + ACTIONS(2972), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2974), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [76754] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3751), 1, + anon_sym_LPAREN, + STATE(1872), 1, + sym__call_arguments_with_parentheses, + ACTIONS(2972), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2974), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [76826] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3751), 1, + anon_sym_LPAREN, + STATE(1871), 1, + sym__call_arguments_with_parentheses, + ACTIONS(2972), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2974), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [76898] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3237), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3239), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [76966] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3496), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3498), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [77034] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3486), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3488), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [77102] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3468), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3470), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [77170] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3211), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3213), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [77238] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3215), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3217), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [77306] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3995), 1, + anon_sym_LPAREN, + STATE(2343), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2972), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2974), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [77378] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3544), 1, + aux_sym__terminator_token1, + ACTIONS(3695), 1, + anon_sym_PIPE, + ACTIONS(3703), 1, + anon_sym_when, + ACTIONS(3705), 1, + anon_sym_COLON_COLON, + ACTIONS(3707), 1, + anon_sym_EQ_GT, + ACTIONS(3709), 1, + anon_sym_EQ, + ACTIONS(3719), 1, + anon_sym_in, + ACTIONS(3721), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3723), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3727), 1, + anon_sym_STAR_STAR, + ACTIONS(3729), 1, + anon_sym_DOT, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(3733), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3697), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3699), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3701), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3711), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3713), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3693), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3715), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3725), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3546), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(3717), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [77488] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4037), 1, + anon_sym_COMMA, + STATE(2102), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3506), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3508), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [77560] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3721), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3723), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3727), 1, + anon_sym_STAR_STAR, + ACTIONS(3729), 1, + anon_sym_DOT, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3697), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3699), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3725), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 39, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [77644] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + aux_sym__terminator_token1, + ACTIONS(3719), 1, + anon_sym_in, + ACTIONS(3721), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3723), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3727), 1, + anon_sym_STAR_STAR, + ACTIONS(3729), 1, + anon_sym_DOT, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(3733), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3697), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3699), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3725), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3717), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 29, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [77734] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + aux_sym__terminator_token1, + ACTIONS(3695), 1, + anon_sym_PIPE, + ACTIONS(3707), 1, + anon_sym_EQ_GT, + ACTIONS(3709), 1, + anon_sym_EQ, + ACTIONS(3719), 1, + anon_sym_in, + ACTIONS(3721), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3723), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3727), 1, + anon_sym_STAR_STAR, + ACTIONS(3729), 1, + anon_sym_DOT, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(3733), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3697), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3699), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3711), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3713), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3693), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3715), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3725), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3717), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 11, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [77838] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3727), 1, + anon_sym_STAR_STAR, + ACTIONS(3729), 1, + anon_sym_DOT, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3295), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [77912] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3727), 1, + anon_sym_STAR_STAR, + ACTIONS(3729), 1, + anon_sym_DOT, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3697), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3295), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [77988] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + aux_sym__terminator_token1, + ACTIONS(3695), 1, + anon_sym_PIPE, + ACTIONS(3703), 1, + anon_sym_when, + ACTIONS(3705), 1, + anon_sym_COLON_COLON, + ACTIONS(3707), 1, + anon_sym_EQ_GT, + ACTIONS(3709), 1, + anon_sym_EQ, + ACTIONS(3719), 1, + anon_sym_in, + ACTIONS(3721), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3723), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3727), 1, + anon_sym_STAR_STAR, + ACTIONS(3729), 1, + anon_sym_DOT, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(3733), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3697), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3699), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3711), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3713), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3693), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3715), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3725), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 9, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(3717), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [78096] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3435), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3437), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [78164] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3141), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3143), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [78232] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3145), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3147), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [78300] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3229), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3231), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [78368] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3233), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3235), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [78436] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3241), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3243), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [78504] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3245), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3247), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [78572] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3253), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3255), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [78640] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3259), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3261), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [78708] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3273), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3275), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [78776] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3277), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3279), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [78844] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3449), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3451), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [78912] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3307), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3309), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [78980] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3303), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3305), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [79048] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + aux_sym__terminator_token1, + ACTIONS(3695), 1, + anon_sym_PIPE, + ACTIONS(3703), 1, + anon_sym_when, + ACTIONS(3705), 1, + anon_sym_COLON_COLON, + ACTIONS(3707), 1, + anon_sym_EQ_GT, + ACTIONS(3709), 1, + anon_sym_EQ, + ACTIONS(3719), 1, + anon_sym_in, + ACTIONS(3721), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3723), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3727), 1, + anon_sym_STAR_STAR, + ACTIONS(3729), 1, + anon_sym_DOT, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(3733), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3697), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3699), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3711), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3713), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3693), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3715), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3725), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 9, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(3717), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [79156] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + aux_sym__terminator_token1, + ACTIONS(3695), 1, + anon_sym_PIPE, + ACTIONS(3705), 1, + anon_sym_COLON_COLON, + ACTIONS(3707), 1, + anon_sym_EQ_GT, + ACTIONS(3709), 1, + anon_sym_EQ, + ACTIONS(3719), 1, + anon_sym_in, + ACTIONS(3721), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3723), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3727), 1, + anon_sym_STAR_STAR, + ACTIONS(3729), 1, + anon_sym_DOT, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(3733), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3697), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3699), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3711), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3713), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3693), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3715), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3725), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3717), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 10, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [79262] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + aux_sym__terminator_token1, + ACTIONS(3707), 1, + anon_sym_EQ_GT, + ACTIONS(3709), 1, + anon_sym_EQ, + ACTIONS(3719), 1, + anon_sym_in, + ACTIONS(3721), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3723), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3727), 1, + anon_sym_STAR_STAR, + ACTIONS(3729), 1, + anon_sym_DOT, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(3733), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3697), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3699), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3711), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3713), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3693), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3715), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3725), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3717), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 12, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [79364] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2651), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2653), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [79432] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2647), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2649), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [79500] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3534), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3536), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [79568] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3118), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3120), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [79636] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3979), 1, + anon_sym_DOT, + ACTIONS(3981), 1, + anon_sym_LBRACK2, + ACTIONS(3118), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3120), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_do, + [79708] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3118), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3120), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [79776] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3118), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3120), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [79844] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + aux_sym__terminator_token1, + ACTIONS(3709), 1, + anon_sym_EQ, + ACTIONS(3719), 1, + anon_sym_in, + ACTIONS(3721), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3723), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3727), 1, + anon_sym_STAR_STAR, + ACTIONS(3729), 1, + anon_sym_DOT, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(3733), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3697), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3699), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3711), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3713), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3693), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3715), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3725), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3717), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 13, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [79944] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + aux_sym__terminator_token1, + ACTIONS(3719), 1, + anon_sym_in, + ACTIONS(3721), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3723), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3727), 1, + anon_sym_STAR_STAR, + ACTIONS(3729), 1, + anon_sym_DOT, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(3733), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3697), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3699), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3713), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3693), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3715), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3725), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3717), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 17, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [80040] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3064), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3066), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [80108] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + aux_sym__terminator_token1, + ACTIONS(3719), 1, + anon_sym_in, + ACTIONS(3721), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3723), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3727), 1, + anon_sym_STAR_STAR, + ACTIONS(3729), 1, + anon_sym_DOT, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(3733), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3697), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3699), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3693), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3715), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3725), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3717), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [80202] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + aux_sym__terminator_token1, + ACTIONS(3719), 1, + anon_sym_in, + ACTIONS(3721), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3723), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3727), 1, + anon_sym_STAR_STAR, + ACTIONS(3729), 1, + anon_sym_DOT, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(3733), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3697), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3699), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3693), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3725), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3717), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 25, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [80294] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + aux_sym__terminator_token1, + ACTIONS(3719), 1, + anon_sym_in, + ACTIONS(3721), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3723), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3727), 1, + anon_sym_STAR_STAR, + ACTIONS(3729), 1, + anon_sym_DOT, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(3733), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3697), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3699), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3725), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 38, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [80382] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3155), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3157), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [80450] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3723), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3727), 1, + anon_sym_STAR_STAR, + ACTIONS(3729), 1, + anon_sym_DOT, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3697), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3699), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3725), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 40, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [80532] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3723), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3727), 1, + anon_sym_STAR_STAR, + ACTIONS(3729), 1, + anon_sym_DOT, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3697), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3699), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3725), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 40, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [80614] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3727), 1, + anon_sym_STAR_STAR, + ACTIONS(3729), 1, + anon_sym_DOT, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3697), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3699), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3725), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 41, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [80694] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3191), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3193), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [80762] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2611), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2613), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [80830] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3110), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3112), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [80898] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3315), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3317), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [80966] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3345), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3347), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [81034] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3411), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3413), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [81102] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3415), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3417), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [81170] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3480), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3482), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [81238] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3530), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3532), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [81306] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3526), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3528), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [81374] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3522), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3524), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [81442] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3500), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3502), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [81510] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3445), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3447), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [81578] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3441), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3443), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [81646] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3399), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3401), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [81714] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3335), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3337), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [81782] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3331), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3333), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [81850] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3311), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3313), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [81918] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3297), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3299), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [81986] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2631), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2633), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [82054] = 27, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3395), 1, + anon_sym_LBRACK2, + ACTIONS(4041), 1, + anon_sym_PIPE, + ACTIONS(4045), 1, + anon_sym_COMMA, + ACTIONS(4051), 1, + anon_sym_when, + ACTIONS(4053), 1, + anon_sym_COLON_COLON, + ACTIONS(4055), 1, + anon_sym_EQ_GT, + ACTIONS(4057), 1, + anon_sym_EQ, + ACTIONS(4067), 1, + anon_sym_in, + ACTIONS(4069), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4071), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4075), 1, + anon_sym_STAR_STAR, + ACTIONS(4077), 1, + anon_sym_DOT, + ACTIONS(4079), 1, + sym__not_in, + STATE(2122), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3351), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4043), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4047), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4049), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4059), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4061), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3353), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(4039), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4063), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4073), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4065), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [82168] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3297), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3299), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [82236] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3516), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3518), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [82304] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3191), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3193), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [82372] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3191), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3193), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [82440] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3729), 1, + anon_sym_DOT, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3191), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3193), 52, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [82512] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3729), 1, + anon_sym_DOT, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3118), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3120), 52, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [82584] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3407), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3409), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [82652] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3403), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3405), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [82720] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3979), 1, + anon_sym_DOT, + ACTIONS(3981), 1, + anon_sym_LBRACK2, + ACTIONS(3191), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3193), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_do, + [82792] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3729), 1, + anon_sym_DOT, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3295), 52, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [82864] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(552), 1, + anon_sym_do, + ACTIONS(4081), 1, + sym__newline_before_do, + STATE(3569), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2984), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2986), 49, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [82938] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(552), 1, + anon_sym_do, + ACTIONS(4083), 1, + sym__newline_before_do, + STATE(3573), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2978), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2980), 49, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [83012] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3006), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3008), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [83080] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3000), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3002), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [83148] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3000), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3002), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [83216] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3006), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3008), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [83284] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3327), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3329), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [83352] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3327), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3329), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [83420] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3319), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3321), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [83488] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3265), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3267), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [83556] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3319), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3321), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [83624] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3319), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3321), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [83692] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3289), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3291), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [83760] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3285), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3287), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [83828] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, @@ -212459,2113 +234504,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [60885] = 4, + [83896] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3123), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3125), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [60953] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3127), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3129), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [61021] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3445), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3447), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [61089] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3441), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3443), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [61157] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3437), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3439), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [61225] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3433), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3435), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [61293] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3297), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3299), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [61361] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3433), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3435), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [61429] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3784), 1, - anon_sym_DOT, - ACTIONS(3786), 1, - anon_sym_LBRACK2, - ACTIONS(3433), 2, - sym__newline_before_do, - sym__not_in, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3435), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_do, - [61501] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3433), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3435), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [61569] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(546), 1, - anon_sym_do, - ACTIONS(3788), 1, - sym__newline_before_do, - STATE(2826), 1, - sym_do_block, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2982), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2984), 49, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [61643] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3301), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3303), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [61711] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3600), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3604), 1, - anon_sym_STAR_STAR, - ACTIONS(3606), 1, - anon_sym_DOT, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3574), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3576), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3602), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 40, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [61793] = 22, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - aux_sym__terminator_token1, - ACTIONS(3572), 1, - anon_sym_PIPE, - ACTIONS(3584), 1, - anon_sym_EQ_GT, - ACTIONS(3586), 1, - anon_sym_EQ, - ACTIONS(3596), 1, - anon_sym_in, - ACTIONS(3598), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3600), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3604), 1, - anon_sym_STAR_STAR, - ACTIONS(3606), 1, - anon_sym_DOT, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(3610), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3574), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3576), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3588), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3590), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3570), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3592), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3602), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3594), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 11, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [61897] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - aux_sym__terminator_token1, - ACTIONS(3596), 1, - anon_sym_in, - ACTIONS(3598), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3600), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3604), 1, - anon_sym_STAR_STAR, - ACTIONS(3606), 1, - anon_sym_DOT, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(3610), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3574), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3576), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3602), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3594), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 29, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [61987] = 14, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - aux_sym__terminator_token1, - ACTIONS(3596), 1, - anon_sym_in, - ACTIONS(3598), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3600), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3604), 1, - anon_sym_STAR_STAR, - ACTIONS(3606), 1, - anon_sym_DOT, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(3610), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3574), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3576), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3602), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 38, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [62075] = 16, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - aux_sym__terminator_token1, - ACTIONS(3596), 1, - anon_sym_in, - ACTIONS(3598), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3600), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3604), 1, - anon_sym_STAR_STAR, - ACTIONS(3606), 1, - anon_sym_DOT, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(3610), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3574), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3576), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3570), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3602), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3594), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 25, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [62167] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3790), 1, - anon_sym_COMMA, - STATE(1905), 1, - aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3110), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3112), 50, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [62239] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3453), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3455), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [62307] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3604), 1, - anon_sym_STAR_STAR, - ACTIONS(3606), 1, - anon_sym_DOT, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3391), 51, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [62381] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3177), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3179), 52, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [62449] = 20, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - aux_sym__terminator_token1, - ACTIONS(3586), 1, - anon_sym_EQ, - ACTIONS(3596), 1, - anon_sym_in, - ACTIONS(3598), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3600), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3604), 1, - anon_sym_STAR_STAR, - ACTIONS(3606), 1, - anon_sym_DOT, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(3610), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3574), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3576), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3588), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3590), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3570), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3592), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3602), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3594), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 13, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [62549] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3793), 1, - anon_sym_LPAREN, - STATE(2271), 1, - sym__call_arguments_with_parentheses, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, ACTIONS(2972), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(2974), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [62621] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3598), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3600), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3604), 1, - anon_sym_STAR_STAR, - ACTIONS(3606), 1, - anon_sym_DOT, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3574), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3576), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3602), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 39, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [62705] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - aux_sym__terminator_token1, - ACTIONS(3584), 1, - anon_sym_EQ_GT, - ACTIONS(3586), 1, - anon_sym_EQ, - ACTIONS(3596), 1, - anon_sym_in, - ACTIONS(3598), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3600), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3604), 1, - anon_sym_STAR_STAR, - ACTIONS(3606), 1, - anon_sym_DOT, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(3610), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3574), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3576), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3588), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3590), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3570), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3592), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3602), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3594), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 12, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [62807] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - aux_sym__terminator_token1, - ACTIONS(3572), 1, - anon_sym_PIPE, - ACTIONS(3582), 1, - anon_sym_COLON_COLON, - ACTIONS(3584), 1, - anon_sym_EQ_GT, - ACTIONS(3586), 1, - anon_sym_EQ, - ACTIONS(3596), 1, - anon_sym_in, - ACTIONS(3598), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3600), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3604), 1, - anon_sym_STAR_STAR, - ACTIONS(3606), 1, - anon_sym_DOT, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(3610), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3574), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3576), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3588), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3590), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3570), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3592), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3602), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3594), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 10, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [62913] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - aux_sym__terminator_token1, - ACTIONS(3572), 1, - anon_sym_PIPE, - ACTIONS(3580), 1, - anon_sym_when, - ACTIONS(3582), 1, - anon_sym_COLON_COLON, - ACTIONS(3584), 1, - anon_sym_EQ_GT, - ACTIONS(3586), 1, - anon_sym_EQ, - ACTIONS(3596), 1, - anon_sym_in, - ACTIONS(3598), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3600), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3604), 1, - anon_sym_STAR_STAR, - ACTIONS(3606), 1, - anon_sym_DOT, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(3610), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3574), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3576), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3588), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3590), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3570), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3592), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3602), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 9, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - ACTIONS(3594), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [63021] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - aux_sym__terminator_token1, - ACTIONS(3572), 1, - anon_sym_PIPE, - ACTIONS(3580), 1, - anon_sym_when, - ACTIONS(3582), 1, - anon_sym_COLON_COLON, - ACTIONS(3584), 1, - anon_sym_EQ_GT, - ACTIONS(3586), 1, - anon_sym_EQ, - ACTIONS(3596), 1, - anon_sym_in, - ACTIONS(3598), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3600), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3604), 1, - anon_sym_STAR_STAR, - ACTIONS(3606), 1, - anon_sym_DOT, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(3610), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3574), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3576), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3588), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3590), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3570), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3592), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3602), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 9, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - ACTIONS(3594), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [63129] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3793), 1, - anon_sym_LPAREN, - STATE(2272), 1, - sym__call_arguments_with_parentheses, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2972), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(2974), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [63201] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(592), 1, - anon_sym_do, - ACTIONS(3795), 1, - sym__newline_before_do, - STATE(3098), 1, - sym_do_block, - ACTIONS(2982), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2984), 50, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [63275] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3429), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3431), 52, + ACTIONS(2974), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -214618,12537 +234568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [63343] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3778), 1, - anon_sym_LPAREN, - STATE(2262), 1, - sym__call_arguments_with_parentheses, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2972), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2974), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [63415] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(592), 1, - anon_sym_do, - ACTIONS(3797), 1, - sym__newline_before_do, - STATE(3102), 1, - sym_do_block, - ACTIONS(2978), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2980), 50, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [63489] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3147), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3143), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3145), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [63559] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3780), 1, - anon_sym_COMMA, - STATE(1883), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3469), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3471), 50, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [63631] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2994), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(2996), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [63699] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3542), 1, - aux_sym__terminator_token1, - ACTIONS(3572), 1, - anon_sym_PIPE, - ACTIONS(3580), 1, - anon_sym_when, - ACTIONS(3582), 1, - anon_sym_COLON_COLON, - ACTIONS(3584), 1, - anon_sym_EQ_GT, - ACTIONS(3586), 1, - anon_sym_EQ, - ACTIONS(3596), 1, - anon_sym_in, - ACTIONS(3598), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3600), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3604), 1, - anon_sym_STAR_STAR, - ACTIONS(3606), 1, - anon_sym_DOT, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(3610), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3574), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3576), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3578), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3588), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3590), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3570), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3592), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3602), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3544), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - ACTIONS(3594), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [63809] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2635), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2637), 52, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [63877] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3425), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3427), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [63945] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3425), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3427), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [64013] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3784), 1, - anon_sym_DOT, - ACTIONS(3786), 1, - anon_sym_LBRACK2, - ACTIONS(3425), 2, - sym__newline_before_do, - sym__not_in, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3427), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_do, - [64085] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3425), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3427), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [64153] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3421), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3423), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [64221] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3604), 1, - anon_sym_STAR_STAR, - ACTIONS(3606), 1, - anon_sym_DOT, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3574), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3391), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [64297] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2639), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2641), 52, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [64365] = 27, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3139), 1, - sym__newline_before_do, - ACTIONS(3784), 1, - anon_sym_DOT, - ACTIONS(3786), 1, - anon_sym_LBRACK2, - ACTIONS(3801), 1, - anon_sym_PIPE, - ACTIONS(3805), 1, - anon_sym_COMMA, - ACTIONS(3811), 1, - anon_sym_when, - ACTIONS(3813), 1, - anon_sym_COLON_COLON, - ACTIONS(3815), 1, - anon_sym_EQ_GT, - ACTIONS(3817), 1, - anon_sym_EQ, - ACTIONS(3827), 1, - anon_sym_in, - ACTIONS(3829), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3831), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3835), 1, - anon_sym_STAR_STAR, - ACTIONS(3837), 1, - sym__not_in, - STATE(1985), 1, - aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(3803), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3807), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3809), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3819), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3821), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3141), 4, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_do, - ACTIONS(3799), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3823), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3833), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3825), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [64479] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3139), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3141), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [64547] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3131), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3133), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [64615] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3135), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3137), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [64683] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3417), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3419), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [64751] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3413), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3415), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [64819] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3782), 1, - anon_sym_COMMA, - STATE(1961), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3475), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3477), 50, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [64891] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3409), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3411), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [64959] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3405), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3407), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [65027] = 18, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - aux_sym__terminator_token1, - ACTIONS(3596), 1, - anon_sym_in, - ACTIONS(3598), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3600), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3604), 1, - anon_sym_STAR_STAR, - ACTIONS(3606), 1, - anon_sym_DOT, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(3610), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3574), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3576), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3590), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3570), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3592), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3602), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3594), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 17, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [65123] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3297), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3299), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [65191] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3297), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3299), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [65259] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3305), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3307), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [65327] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3389), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3391), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [65395] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3839), 1, - anon_sym_COMMA, - STATE(1947), 1, - aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3110), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3112), 50, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [65467] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3135), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3137), 52, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [65535] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3309), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3311), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [65603] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3357), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3359), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [65671] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3389), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3391), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [65739] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3361), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3363), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [65807] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3365), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3367), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [65875] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3369), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3371), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [65943] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3131), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3133), 52, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [66011] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3273), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3275), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [66079] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3127), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3129), 52, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [66147] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3123), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3125), 52, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [66215] = 5, - ACTIONS(5), 1, - sym_comment, - STATE(2324), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2982), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(2984), 51, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [66285] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2643), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2645), 52, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [66353] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3842), 1, - anon_sym_COMMA, - STATE(1961), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3479), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3481), 50, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [66425] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3784), 1, - anon_sym_DOT, - ACTIONS(3786), 1, - anon_sym_LBRACK2, - ACTIONS(3389), 2, - sym__newline_before_do, - sym__not_in, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3391), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_do, - [66497] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3397), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3399), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [66565] = 5, - ACTIONS(5), 1, - sym_comment, - STATE(2317), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2978), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(2980), 51, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [66635] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3606), 1, - anon_sym_DOT, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3391), 52, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [66707] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3393), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3395), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [66775] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3389), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3391), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [66843] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3381), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3383), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [66911] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3381), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3383), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [66979] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3385), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3387), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [67047] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3606), 1, - anon_sym_DOT, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3425), 2, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3427), 52, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [67119] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3385), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3387), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [67187] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3381), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3383), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [67255] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3377), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3379), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [67323] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3793), 1, - anon_sym_LPAREN, - STATE(2276), 1, - sym__call_arguments_with_parentheses, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2972), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(2974), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [67395] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3277), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3279), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [67463] = 5, - ACTIONS(5), 1, - sym_comment, - STATE(2237), 1, - sym_do_block, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2978), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2980), 50, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [67533] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3606), 1, - anon_sym_DOT, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3433), 2, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3435), 52, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [67605] = 27, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3353), 1, - anon_sym_LBRACK2, - ACTIONS(3847), 1, - anon_sym_PIPE, - ACTIONS(3851), 1, - anon_sym_COMMA, - ACTIONS(3857), 1, - anon_sym_when, - ACTIONS(3859), 1, - anon_sym_COLON_COLON, - ACTIONS(3861), 1, - anon_sym_EQ_GT, - ACTIONS(3863), 1, - anon_sym_EQ, - ACTIONS(3873), 1, - anon_sym_in, - ACTIONS(3875), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3877), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3881), 1, - anon_sym_STAR_STAR, - ACTIONS(3883), 1, - anon_sym_DOT, - ACTIONS(3885), 1, - sym__not_in, - STATE(1984), 1, - aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3139), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3849), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3853), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3855), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3865), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3867), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3141), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_do, - ACTIONS(3845), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3869), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3879), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3871), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [67719] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2647), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2649), 52, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [67787] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(546), 1, - anon_sym_do, - ACTIONS(3887), 1, - sym__newline_before_do, - STATE(2832), 1, - sym_do_block, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2978), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2980), 49, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [67861] = 5, - ACTIONS(5), 1, - sym_comment, - STATE(2234), 1, - sym_do_block, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2982), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2984), 50, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [67931] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3373), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3375), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [67999] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3889), 1, - anon_sym_COMMA, - STATE(1947), 1, - aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3117), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3119), 50, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [68071] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3891), 1, - anon_sym_COMMA, - STATE(1905), 1, - aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3117), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3119), 50, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [68143] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3249), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3251), 51, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [68210] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3205), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3207), 51, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [68277] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3058), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3060), 51, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [68344] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3784), 1, - anon_sym_DOT, - ACTIONS(3786), 1, - anon_sym_LBRACK2, - ACTIONS(3829), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3831), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3835), 1, - anon_sym_STAR_STAR, - ACTIONS(3389), 2, - sym__newline_before_do, - sym__not_in, - ACTIONS(3803), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3807), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3833), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 37, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_do, - [68427] = 10, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3784), 1, - anon_sym_DOT, - ACTIONS(3786), 1, - anon_sym_LBRACK2, - ACTIONS(3835), 1, - anon_sym_STAR_STAR, - ACTIONS(3389), 2, - sym__newline_before_do, - sym__not_in, - ACTIONS(3803), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3807), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3833), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 39, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_do, - [68506] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3784), 1, - anon_sym_DOT, - ACTIONS(3786), 1, - anon_sym_LBRACK2, - ACTIONS(3831), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3835), 1, - anon_sym_STAR_STAR, - ACTIONS(3389), 2, - sym__newline_before_do, - sym__not_in, - ACTIONS(3803), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3807), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3833), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 38, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_do, - [68587] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3784), 1, - anon_sym_DOT, - ACTIONS(3786), 1, - anon_sym_LBRACK2, - ACTIONS(3831), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3835), 1, - anon_sym_STAR_STAR, - ACTIONS(3389), 2, - sym__newline_before_do, - sym__not_in, - ACTIONS(3803), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3807), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3833), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 38, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_do, - [68668] = 14, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__newline_before_do, - ACTIONS(3784), 1, - anon_sym_DOT, - ACTIONS(3786), 1, - anon_sym_LBRACK2, - ACTIONS(3827), 1, - anon_sym_in, - ACTIONS(3829), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3831), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3835), 1, - anon_sym_STAR_STAR, - ACTIONS(3837), 1, - sym__not_in, - ACTIONS(3803), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3807), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3833), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 36, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_do, - [68755] = 16, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__newline_before_do, - ACTIONS(3784), 1, - anon_sym_DOT, - ACTIONS(3786), 1, - anon_sym_LBRACK2, - ACTIONS(3827), 1, - anon_sym_in, - ACTIONS(3829), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3831), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3835), 1, - anon_sym_STAR_STAR, - ACTIONS(3837), 1, - sym__not_in, - ACTIONS(3803), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3807), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3799), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3833), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3825), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 23, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_do, - [68846] = 17, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__newline_before_do, - ACTIONS(3784), 1, - anon_sym_DOT, - ACTIONS(3786), 1, - anon_sym_LBRACK2, - ACTIONS(3827), 1, - anon_sym_in, - ACTIONS(3829), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3831), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3835), 1, - anon_sym_STAR_STAR, - ACTIONS(3837), 1, - sym__not_in, - ACTIONS(3803), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3807), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3799), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3823), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3833), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3825), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 18, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_do, - [68939] = 18, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__newline_before_do, - ACTIONS(3784), 1, - anon_sym_DOT, - ACTIONS(3786), 1, - anon_sym_LBRACK2, - ACTIONS(3827), 1, - anon_sym_in, - ACTIONS(3829), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3831), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3835), 1, - anon_sym_STAR_STAR, - ACTIONS(3837), 1, - sym__not_in, - ACTIONS(3803), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3807), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3821), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3799), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3823), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3833), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3825), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 15, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_do, - [69034] = 20, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__newline_before_do, - ACTIONS(3784), 1, - anon_sym_DOT, - ACTIONS(3786), 1, - anon_sym_LBRACK2, - ACTIONS(3817), 1, - anon_sym_EQ, - ACTIONS(3827), 1, - anon_sym_in, - ACTIONS(3829), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3831), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3835), 1, - anon_sym_STAR_STAR, - ACTIONS(3837), 1, - sym__not_in, - ACTIONS(3803), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3807), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3819), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3821), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3799), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3823), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3833), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3825), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 11, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_do, - [69133] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__newline_before_do, - ACTIONS(3784), 1, - anon_sym_DOT, - ACTIONS(3786), 1, - anon_sym_LBRACK2, - ACTIONS(3815), 1, - anon_sym_EQ_GT, - ACTIONS(3817), 1, - anon_sym_EQ, - ACTIONS(3827), 1, - anon_sym_in, - ACTIONS(3829), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3831), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3835), 1, - anon_sym_STAR_STAR, - ACTIONS(3837), 1, - sym__not_in, - ACTIONS(3803), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3807), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3819), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3821), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3799), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3823), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3833), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3825), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 10, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_do, - [69234] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__newline_before_do, - ACTIONS(3784), 1, - anon_sym_DOT, - ACTIONS(3786), 1, - anon_sym_LBRACK2, - ACTIONS(3801), 1, - anon_sym_PIPE, - ACTIONS(3813), 1, - anon_sym_COLON_COLON, - ACTIONS(3815), 1, - anon_sym_EQ_GT, - ACTIONS(3817), 1, - anon_sym_EQ, - ACTIONS(3827), 1, - anon_sym_in, - ACTIONS(3829), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3831), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3835), 1, - anon_sym_STAR_STAR, - ACTIONS(3837), 1, - sym__not_in, - ACTIONS(3803), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3807), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3819), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3821), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3799), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3823), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3833), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 8, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_do, - ACTIONS(3825), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [69339] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__newline_before_do, - ACTIONS(3784), 1, - anon_sym_DOT, - ACTIONS(3786), 1, - anon_sym_LBRACK2, - ACTIONS(3801), 1, - anon_sym_PIPE, - ACTIONS(3811), 1, - anon_sym_when, - ACTIONS(3813), 1, - anon_sym_COLON_COLON, - ACTIONS(3815), 1, - anon_sym_EQ_GT, - ACTIONS(3817), 1, - anon_sym_EQ, - ACTIONS(3827), 1, - anon_sym_in, - ACTIONS(3829), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3831), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3835), 1, - anon_sym_STAR_STAR, - ACTIONS(3837), 1, - sym__not_in, - ACTIONS(3803), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3807), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3819), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3821), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3799), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3823), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3833), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 7, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_do, - ACTIONS(3825), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [69446] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__newline_before_do, - ACTIONS(3784), 1, - anon_sym_DOT, - ACTIONS(3786), 1, - anon_sym_LBRACK2, - ACTIONS(3801), 1, - anon_sym_PIPE, - ACTIONS(3811), 1, - anon_sym_when, - ACTIONS(3813), 1, - anon_sym_COLON_COLON, - ACTIONS(3815), 1, - anon_sym_EQ_GT, - ACTIONS(3817), 1, - anon_sym_EQ, - ACTIONS(3827), 1, - anon_sym_in, - ACTIONS(3829), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3831), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3835), 1, - anon_sym_STAR_STAR, - ACTIONS(3837), 1, - sym__not_in, - ACTIONS(3803), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3807), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3819), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3821), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3799), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3823), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3833), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 7, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_do, - ACTIONS(3825), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [69553] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3784), 1, - anon_sym_DOT, - ACTIONS(3786), 1, - anon_sym_LBRACK2, - ACTIONS(3835), 1, - anon_sym_STAR_STAR, - ACTIONS(3389), 2, - sym__newline_before_do, - sym__not_in, - ACTIONS(3803), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3391), 47, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_do, - [69628] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3784), 1, - anon_sym_DOT, - ACTIONS(3786), 1, - anon_sym_LBRACK2, - ACTIONS(3835), 1, - anon_sym_STAR_STAR, - ACTIONS(3389), 2, - sym__newline_before_do, - sym__not_in, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3391), 49, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_do, - [69701] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3080), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3082), 51, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [69768] = 22, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__newline_before_do, - ACTIONS(3784), 1, - anon_sym_DOT, - ACTIONS(3786), 1, - anon_sym_LBRACK2, - ACTIONS(3801), 1, - anon_sym_PIPE, - ACTIONS(3815), 1, - anon_sym_EQ_GT, - ACTIONS(3817), 1, - anon_sym_EQ, - ACTIONS(3827), 1, - anon_sym_in, - ACTIONS(3829), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3831), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3835), 1, - anon_sym_STAR_STAR, - ACTIONS(3837), 1, - sym__not_in, - ACTIONS(3803), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3807), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3819), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3821), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3799), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3823), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3833), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 9, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_do, - ACTIONS(3825), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [69871] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__newline_before_do, - ACTIONS(3784), 1, - anon_sym_DOT, - ACTIONS(3786), 1, - anon_sym_LBRACK2, - ACTIONS(3827), 1, - anon_sym_in, - ACTIONS(3829), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3831), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3835), 1, - anon_sym_STAR_STAR, - ACTIONS(3837), 1, - sym__not_in, - ACTIONS(3803), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3807), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3833), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3825), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 27, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_do, - [69960] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3153), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3155), 51, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [70027] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3209), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3211), 51, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [70094] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3353), 1, - anon_sym_LBRACK2, - ACTIONS(3847), 1, - anon_sym_PIPE, - ACTIONS(3857), 1, - anon_sym_when, - ACTIONS(3859), 1, - anon_sym_COLON_COLON, - ACTIONS(3861), 1, - anon_sym_EQ_GT, - ACTIONS(3863), 1, - anon_sym_EQ, - ACTIONS(3873), 1, - anon_sym_in, - ACTIONS(3875), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3877), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3881), 1, - anon_sym_STAR_STAR, - ACTIONS(3883), 1, - anon_sym_DOT, - ACTIONS(3885), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3110), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3849), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3853), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3855), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3865), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3867), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3845), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3112), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_do, - ACTIONS(3869), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3879), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3871), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [70203] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3558), 1, - sym__newline_before_do, - ACTIONS(3784), 1, - anon_sym_DOT, - ACTIONS(3786), 1, - anon_sym_LBRACK2, - ACTIONS(3801), 1, - anon_sym_PIPE, - ACTIONS(3811), 1, - anon_sym_when, - ACTIONS(3813), 1, - anon_sym_COLON_COLON, - ACTIONS(3815), 1, - anon_sym_EQ_GT, - ACTIONS(3817), 1, - anon_sym_EQ, - ACTIONS(3827), 1, - anon_sym_in, - ACTIONS(3829), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3831), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3835), 1, - anon_sym_STAR_STAR, - ACTIONS(3837), 1, - sym__not_in, - ACTIONS(3803), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3807), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3809), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3819), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3821), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3799), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3560), 5, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_do, - ACTIONS(3823), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3833), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3825), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [70312] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3026), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3022), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3024), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [70381] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3026), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3050), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3052), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [70450] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3213), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3215), 51, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [70517] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3217), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3219), 51, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [70584] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3221), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3223), 51, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [70651] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3225), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3227), 51, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [70718] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3229), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3231), 51, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [70785] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3233), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3235), 51, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [70852] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3237), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3239), 51, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [70919] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3241), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3243), 51, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [70986] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3245), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3247), 51, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [71053] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3572), 1, - anon_sym_PIPE, - ACTIONS(3580), 1, - anon_sym_when, - ACTIONS(3582), 1, - anon_sym_COLON_COLON, - ACTIONS(3584), 1, - anon_sym_EQ_GT, - ACTIONS(3586), 1, - anon_sym_EQ, - ACTIONS(3596), 1, - anon_sym_in, - ACTIONS(3598), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3600), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3604), 1, - anon_sym_STAR_STAR, - ACTIONS(3606), 1, - anon_sym_DOT, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(3610), 1, - sym__not_in, - ACTIONS(3893), 1, - aux_sym__terminator_token1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3574), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3576), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3578), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3588), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3590), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3570), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3592), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3602), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3895), 6, - anon_sym_SEMI, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - ACTIONS(3594), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [71162] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3249), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3251), 51, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [71229] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3253), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3255), 51, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [71296] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3257), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3259), 51, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [71363] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3086), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3088), 51, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [71430] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3261), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3263), 51, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [71497] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2635), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2637), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [71564] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3897), 1, - anon_sym_COMMA, - STATE(2029), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3479), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3481), 49, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [71635] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3040), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3042), 50, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [71702] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(644), 1, - anon_sym_do, - ACTIONS(3900), 1, - sym__newline_before_do, - STATE(3223), 1, - sym_do_block, - ACTIONS(2982), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2984), 49, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [71775] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3157), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3159), 51, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [71842] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2639), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2641), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [71909] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3201), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3203), 51, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [71976] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3080), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3082), 50, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [72043] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3161), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3163), 51, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [72110] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(546), 1, - anon_sym_do, - ACTIONS(3902), 1, - sym__newline_before_do, - STATE(3277), 1, - sym_do_block, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2994), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2996), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [72183] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2635), 3, - sym__not_in, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(2637), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [72250] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2639), 3, - sym__not_in, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(2641), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [72317] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(644), 1, - anon_sym_do, - ACTIONS(3904), 1, - sym__newline_before_do, - STATE(3219), 1, - sym_do_block, - ACTIONS(2978), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2980), 49, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [72390] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3353), 1, - anon_sym_LBRACK2, - ACTIONS(3883), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 3, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3391), 50, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_do, - [72461] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(546), 1, - anon_sym_do, - ACTIONS(3906), 1, - sym__newline_before_do, - STATE(3279), 1, - sym_do_block, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3000), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3002), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [72534] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3123), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3125), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [72601] = 10, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3353), 1, - anon_sym_LBRACK2, - ACTIONS(3881), 1, - anon_sym_STAR_STAR, - ACTIONS(3883), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3849), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3853), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 3, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3879), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 39, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_DASH_GT, - anon_sym_do, - [72680] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3353), 1, - anon_sym_LBRACK2, - ACTIONS(3877), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3881), 1, - anon_sym_STAR_STAR, - ACTIONS(3883), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3849), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3853), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 3, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3879), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 38, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_DASH_GT, - anon_sym_do, - [72761] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3127), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3129), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [72828] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3908), 1, - anon_sym_LPAREN, - STATE(2506), 1, - sym__call_arguments_with_parentheses, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2972), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(2974), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [72899] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2635), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2637), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [72966] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2639), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2641), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [73033] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3908), 1, - anon_sym_LPAREN, - STATE(2456), 1, - sym__call_arguments_with_parentheses, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2972), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(2974), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [73104] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3353), 1, - anon_sym_LBRACK2, - ACTIONS(3877), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3881), 1, - anon_sym_STAR_STAR, - ACTIONS(3883), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3849), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3853), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 3, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3879), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 38, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_DASH_GT, - anon_sym_do, - [73185] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3908), 1, - anon_sym_LPAREN, - STATE(2503), 1, - sym__call_arguments_with_parentheses, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2972), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(2974), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [73256] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2643), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2645), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [73323] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3353), 1, - anon_sym_LBRACK2, - ACTIONS(3847), 1, - anon_sym_PIPE, - ACTIONS(3857), 1, - anon_sym_when, - ACTIONS(3859), 1, - anon_sym_COLON_COLON, - ACTIONS(3861), 1, - anon_sym_EQ_GT, - ACTIONS(3863), 1, - anon_sym_EQ, - ACTIONS(3873), 1, - anon_sym_in, - ACTIONS(3875), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3877), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3881), 1, - anon_sym_STAR_STAR, - ACTIONS(3883), 1, - anon_sym_DOT, - ACTIONS(3885), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3542), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3849), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3853), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3855), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3865), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3867), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3845), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3544), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_do, - ACTIONS(3869), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3879), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3871), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [73432] = 14, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3353), 1, - anon_sym_LBRACK2, - ACTIONS(3873), 1, - anon_sym_in, - ACTIONS(3875), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3877), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3881), 1, - anon_sym_STAR_STAR, - ACTIONS(3883), 1, - anon_sym_DOT, - ACTIONS(3885), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3849), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3853), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3879), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 36, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_DASH_GT, - anon_sym_do, - [73519] = 16, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3353), 1, - anon_sym_LBRACK2, - ACTIONS(3873), 1, - anon_sym_in, - ACTIONS(3875), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3877), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3881), 1, - anon_sym_STAR_STAR, - ACTIONS(3883), 1, - anon_sym_DOT, - ACTIONS(3885), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3849), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3853), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3845), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3879), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3871), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 23, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_DASH_GT, - anon_sym_do, - [73610] = 17, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3353), 1, - anon_sym_LBRACK2, - ACTIONS(3873), 1, - anon_sym_in, - ACTIONS(3875), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3877), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3881), 1, - anon_sym_STAR_STAR, - ACTIONS(3883), 1, - anon_sym_DOT, - ACTIONS(3885), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3849), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3853), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3845), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3869), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3879), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3871), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 18, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_DASH_GT, - anon_sym_do, - [73703] = 18, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3353), 1, - anon_sym_LBRACK2, - ACTIONS(3873), 1, - anon_sym_in, - ACTIONS(3875), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3877), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3881), 1, - anon_sym_STAR_STAR, - ACTIONS(3883), 1, - anon_sym_DOT, - ACTIONS(3885), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3849), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3853), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3867), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3845), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3869), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3879), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3871), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_DASH_GT, - anon_sym_do, - [73798] = 20, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3353), 1, - anon_sym_LBRACK2, - ACTIONS(3863), 1, - anon_sym_EQ, - ACTIONS(3873), 1, - anon_sym_in, - ACTIONS(3875), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3877), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3881), 1, - anon_sym_STAR_STAR, - ACTIONS(3883), 1, - anon_sym_DOT, - ACTIONS(3885), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3849), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3853), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3865), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3867), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3845), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3869), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3879), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3871), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - anon_sym_do, - [73897] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3149), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3151), 51, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [73964] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3197), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3199), 51, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [74031] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2647), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2649), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [74098] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3123), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3125), 51, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [74165] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3353), 1, - anon_sym_LBRACK2, - ACTIONS(3861), 1, - anon_sym_EQ_GT, - ACTIONS(3863), 1, - anon_sym_EQ, - ACTIONS(3873), 1, - anon_sym_in, - ACTIONS(3875), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3877), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3881), 1, - anon_sym_STAR_STAR, - ACTIONS(3883), 1, - anon_sym_DOT, - ACTIONS(3885), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3849), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3853), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3865), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3867), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3845), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3869), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3879), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3871), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_do, - [74266] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3127), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3129), 51, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [74333] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3131), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3133), 51, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [74400] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(592), 1, - anon_sym_do, - ACTIONS(3910), 1, - sym__newline_before_do, - STATE(3283), 1, - sym_do_block, - ACTIONS(3000), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3002), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [74473] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3353), 1, - anon_sym_LBRACK2, - ACTIONS(3847), 1, - anon_sym_PIPE, - ACTIONS(3859), 1, - anon_sym_COLON_COLON, - ACTIONS(3861), 1, - anon_sym_EQ_GT, - ACTIONS(3863), 1, - anon_sym_EQ, - ACTIONS(3873), 1, - anon_sym_in, - ACTIONS(3875), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3877), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3881), 1, - anon_sym_STAR_STAR, - ACTIONS(3883), 1, - anon_sym_DOT, - ACTIONS(3885), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3849), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3853), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3865), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3867), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3845), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3869), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3879), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 8, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_DASH_GT, - anon_sym_do, - ACTIONS(3871), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [74578] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(592), 1, - anon_sym_do, - ACTIONS(3912), 1, - sym__newline_before_do, - STATE(3286), 1, - sym_do_block, - ACTIONS(2994), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2996), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [74651] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3058), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3060), 50, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [74718] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(592), 1, - anon_sym_do, - ACTIONS(3914), 1, - sym__newline_before_do, - STATE(3310), 1, - sym_do_block, - ACTIONS(3000), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3002), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [74791] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(592), 1, - anon_sym_do, - ACTIONS(3916), 1, - sym__newline_before_do, - STATE(3313), 1, - sym_do_block, - ACTIONS(3000), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3002), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [74864] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3353), 1, - anon_sym_LBRACK2, - ACTIONS(3847), 1, - anon_sym_PIPE, - ACTIONS(3857), 1, - anon_sym_when, - ACTIONS(3859), 1, - anon_sym_COLON_COLON, - ACTIONS(3861), 1, - anon_sym_EQ_GT, - ACTIONS(3863), 1, - anon_sym_EQ, - ACTIONS(3873), 1, - anon_sym_in, - ACTIONS(3875), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3877), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3881), 1, - anon_sym_STAR_STAR, - ACTIONS(3883), 1, - anon_sym_DOT, - ACTIONS(3885), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3849), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3853), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3865), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3867), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3845), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3869), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3879), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 7, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_DASH_GT, - anon_sym_do, - ACTIONS(3871), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [74971] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3193), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3195), 51, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [75038] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3353), 1, - anon_sym_LBRACK2, - ACTIONS(3847), 1, - anon_sym_PIPE, - ACTIONS(3857), 1, - anon_sym_when, - ACTIONS(3859), 1, - anon_sym_COLON_COLON, - ACTIONS(3861), 1, - anon_sym_EQ_GT, - ACTIONS(3863), 1, - anon_sym_EQ, - ACTIONS(3873), 1, - anon_sym_in, - ACTIONS(3875), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3877), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3881), 1, - anon_sym_STAR_STAR, - ACTIONS(3883), 1, - anon_sym_DOT, - ACTIONS(3885), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3849), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3853), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3865), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3867), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3845), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3869), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3879), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 7, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_DASH_GT, - anon_sym_do, - ACTIONS(3871), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [75145] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3353), 1, - anon_sym_LBRACK2, - ACTIONS(3881), 1, - anon_sym_STAR_STAR, - ACTIONS(3883), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3849), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3389), 3, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3391), 47, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_DASH_GT, - anon_sym_do, - [75220] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3353), 1, - anon_sym_LBRACK2, - ACTIONS(3881), 1, - anon_sym_STAR_STAR, - ACTIONS(3883), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 3, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3391), 49, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_DASH_GT, - anon_sym_do, - [75293] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3269), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3271), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [75360] = 22, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3353), 1, - anon_sym_LBRACK2, - ACTIONS(3847), 1, - anon_sym_PIPE, - ACTIONS(3861), 1, - anon_sym_EQ_GT, - ACTIONS(3863), 1, - anon_sym_EQ, - ACTIONS(3873), 1, - anon_sym_in, - ACTIONS(3875), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3877), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3881), 1, - anon_sym_STAR_STAR, - ACTIONS(3883), 1, - anon_sym_DOT, - ACTIONS(3885), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3849), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3853), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3865), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3867), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3845), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3869), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3879), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_do, - ACTIONS(3871), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [75463] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3353), 1, - anon_sym_LBRACK2, - ACTIONS(3873), 1, - anon_sym_in, - ACTIONS(3875), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3877), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3881), 1, - anon_sym_STAR_STAR, - ACTIONS(3883), 1, - anon_sym_DOT, - ACTIONS(3885), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3849), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3853), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3879), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3871), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 27, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DASH_GT, - anon_sym_do, - [75552] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3189), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3191), 51, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [75619] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3185), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3187), 51, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [75686] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3181), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3183), 51, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [75753] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3177), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3179), 51, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [75820] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3173), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3175), 51, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [75887] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3353), 1, - anon_sym_LBRACK2, - ACTIONS(3875), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3877), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3881), 1, - anon_sym_STAR_STAR, - ACTIONS(3883), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3849), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3853), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 3, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3879), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 37, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_do, - [75970] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3169), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3171), 51, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [76037] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3165), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3167), 51, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [76104] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3161), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3163), 51, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [76171] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3157), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3159), 51, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [76238] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2635), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2637), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [76305] = 5, - ACTIONS(5), 1, - sym_comment, - STATE(2494), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2978), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(2980), 50, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [76374] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3153), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3155), 51, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [76441] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(592), 1, - anon_sym_do, - ACTIONS(3918), 1, - sym__newline_before_do, - STATE(3316), 1, - sym_do_block, - ACTIONS(3008), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3010), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [76514] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3149), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3151), 51, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [76581] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3106), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3108), 51, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [76648] = 5, - ACTIONS(5), 1, - sym_comment, - STATE(2491), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2982), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(2984), 50, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [76717] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3269), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3271), 51, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [76784] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3920), 1, - anon_sym_COMMA, - STATE(2232), 1, - aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3117), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3119), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [76855] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3106), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3108), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [76922] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3265), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3267), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [76989] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3265), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3267), 51, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [77056] = 27, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3139), 1, - sym__newline_before_do, - ACTIONS(3924), 1, - anon_sym_PIPE, - ACTIONS(3928), 1, - anon_sym_COMMA, - ACTIONS(3934), 1, - anon_sym_when, - ACTIONS(3936), 1, - anon_sym_COLON_COLON, - ACTIONS(3938), 1, - anon_sym_EQ_GT, - ACTIONS(3940), 1, - anon_sym_EQ, - ACTIONS(3950), 1, - anon_sym_in, - ACTIONS(3952), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3954), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3958), 1, - anon_sym_STAR_STAR, - ACTIONS(3960), 1, - anon_sym_DOT, - ACTIONS(3962), 1, - anon_sym_LBRACK2, - ACTIONS(3964), 1, - sym__not_in, - STATE(2099), 1, - aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(3926), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3930), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3932), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3141), 3, - anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_do, - ACTIONS(3942), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3944), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3922), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3946), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3956), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3948), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [77169] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3135), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3137), 51, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [77236] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3106), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3108), 51, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [77303] = 4, + [83964] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, @@ -227159,558 +234579,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3271), 51, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [77370] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3966), 1, - anon_sym_COMMA, - STATE(2029), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3475), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3477), 49, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [77441] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3572), 1, - anon_sym_PIPE, - ACTIONS(3580), 1, - anon_sym_when, - ACTIONS(3582), 1, - anon_sym_COLON_COLON, - ACTIONS(3584), 1, - anon_sym_EQ_GT, - ACTIONS(3586), 1, - anon_sym_EQ, - ACTIONS(3596), 1, - anon_sym_in, - ACTIONS(3598), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3600), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3604), 1, - anon_sym_STAR_STAR, - ACTIONS(3606), 1, - anon_sym_DOT, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(3610), 1, - sym__not_in, - ACTIONS(3968), 1, - aux_sym__terminator_token1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3574), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3576), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3578), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3588), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3590), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3570), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3592), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3602), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3970), 6, - anon_sym_SEMI, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - ACTIONS(3594), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [77550] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3353), 1, - anon_sym_LBRACK2, - ACTIONS(3883), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3425), 3, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3427), 50, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_do, - [77621] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3261), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3263), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [77688] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3257), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3259), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [77755] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3253), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3255), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [77822] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3110), 1, - sym__newline_before_do, - ACTIONS(3784), 1, - anon_sym_DOT, - ACTIONS(3786), 1, - anon_sym_LBRACK2, - ACTIONS(3801), 1, - anon_sym_PIPE, - ACTIONS(3811), 1, - anon_sym_when, - ACTIONS(3813), 1, - anon_sym_COLON_COLON, - ACTIONS(3815), 1, - anon_sym_EQ_GT, - ACTIONS(3817), 1, - anon_sym_EQ, - ACTIONS(3827), 1, - anon_sym_in, - ACTIONS(3829), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3831), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3835), 1, - anon_sym_STAR_STAR, - ACTIONS(3837), 1, - sym__not_in, - ACTIONS(3803), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3807), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3809), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3819), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3821), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3799), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3112), 5, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_do, - ACTIONS(3823), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3833), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3825), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [77931] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3026), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(3050), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3052), 51, + ACTIONS(3271), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -227762,18 +234631,278 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [78000] = 4, + anon_sym_do, + [84032] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(2759), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3064), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3066), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [84101] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(2756), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3038), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3040), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [84170] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4085), 1, + anon_sym_COMMA, + STATE(2236), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3149), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3151), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [84241] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4085), 1, + anon_sym_COMMA, + STATE(2213), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3219), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3221), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [84312] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3265), 4, + ACTIONS(3110), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3267), 51, + ACTIONS(3112), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -227824,276 +234953,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [78067] = 4, + [84379] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3076), 2, - sym__not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3078), 52, + ACTIONS(3034), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3036), 51, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [78134] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3261), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3263), 51, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [78201] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2643), 3, - sym__not_in, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(2645), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [78268] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3249), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3251), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [78335] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3353), 1, - anon_sym_LBRACK2, - ACTIONS(3883), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3433), 3, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3435), 50, - anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -228141,1827 +235014,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DASH_GT, - anon_sym_do, - [78406] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3353), 1, - anon_sym_LBRACK2, - ACTIONS(3847), 1, - anon_sym_PIPE, - ACTIONS(3857), 1, - anon_sym_when, - ACTIONS(3859), 1, - anon_sym_COLON_COLON, - ACTIONS(3861), 1, - anon_sym_EQ_GT, - ACTIONS(3863), 1, - anon_sym_EQ, - ACTIONS(3873), 1, - anon_sym_in, - ACTIONS(3875), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3877), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3881), 1, - anon_sym_STAR_STAR, - ACTIONS(3883), 1, - anon_sym_DOT, - ACTIONS(3885), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3558), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3849), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3853), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3855), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3865), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3867), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3845), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3560), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_do, - ACTIONS(3869), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3879), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3871), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [78515] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3123), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3125), 51, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [78582] = 4, + [84446] = 27, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3245), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3247), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4089), 1, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, + ACTIONS(4093), 1, anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(4099), 1, anon_sym_when, + ACTIONS(4101), 1, anon_sym_COLON_COLON, + ACTIONS(4103), 1, anon_sym_EQ_GT, + ACTIONS(4105), 1, anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, + ACTIONS(4115), 1, anon_sym_in, + ACTIONS(4117), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4119), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(4123), 1, anon_sym_STAR_STAR, + ACTIONS(4125), 1, anon_sym_DOT, - anon_sym_do, - [78649] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2647), 3, - sym__not_in, - aux_sym_quoted_keyword_token1, + ACTIONS(4127), 1, anon_sym_LBRACK2, - ACTIONS(2649), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [78716] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3966), 1, - anon_sym_COMMA, - STATE(2107), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3469), 4, - sym__newline_before_do, + ACTIONS(4129), 1, sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3471), 49, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [78787] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3257), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3259), 51, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [78854] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2643), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2645), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [78921] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3972), 1, - aux_sym_sigil_token3, - ACTIONS(3143), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3145), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [78990] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3974), 1, - anon_sym_COMMA, - STATE(2198), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3469), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3471), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [79061] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3026), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(3022), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3024), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [79130] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(546), 1, - anon_sym_do, - ACTIONS(3976), 1, - sym__newline_before_do, - STATE(3276), 1, - sym_do_block, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3000), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3002), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [79203] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3241), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3243), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [79270] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3127), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3129), 51, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [79337] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COMMA, - STATE(2134), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3479), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3481), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [79408] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3981), 1, - anon_sym_COMMA, - STATE(2134), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3475), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3477), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [79479] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3981), 1, - anon_sym_COMMA, - STATE(2135), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3469), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3471), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [79550] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3237), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3239), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [79617] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(546), 1, - anon_sym_do, - ACTIONS(3983), 1, - sym__newline_before_do, - STATE(3280), 1, - sym_do_block, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3000), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3002), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [79690] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3233), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3235), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [79757] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3229), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3231), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [79824] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3100), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3102), 52, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [79891] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2639), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2641), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [79958] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3123), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3125), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [80025] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3127), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3129), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [80092] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(546), 1, - anon_sym_do, - ACTIONS(3985), 1, - sym__newline_before_do, - STATE(3220), 1, - sym_do_block, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3008), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3010), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [80165] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3131), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3133), 51, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [80232] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3135), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3137), 51, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [80299] = 27, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3989), 1, - anon_sym_PIPE, - ACTIONS(3993), 1, - anon_sym_COMMA, - ACTIONS(3999), 1, - anon_sym_when, - ACTIONS(4001), 1, - anon_sym_COLON_COLON, - ACTIONS(4003), 1, - anon_sym_EQ_GT, - ACTIONS(4005), 1, - anon_sym_EQ, - ACTIONS(4015), 1, - anon_sym_in, - ACTIONS(4017), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4019), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4023), 1, - anon_sym_STAR_STAR, - ACTIONS(4025), 1, - anon_sym_DOT, - ACTIONS(4027), 1, - anon_sym_LBRACK2, - ACTIONS(4029), 1, - sym__not_in, - STATE(2275), 1, + STATE(2259), 1, aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3141), 2, + ACTIONS(3353), 2, anon_sym_SEMI, anon_sym_do, - ACTIONS(3991), 2, + ACTIONS(4091), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3995), 2, + ACTIONS(4095), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3997), 2, + ACTIONS(4097), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3139), 3, + ACTIONS(3351), 3, sym__newline_before_do, ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(4007), 3, + ACTIONS(4107), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4009), 3, + ACTIONS(4109), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3987), 4, + ACTIONS(4087), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4011), 5, + ACTIONS(4111), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4021), 6, + ACTIONS(4121), 6, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - ACTIONS(4013), 9, + ACTIONS(4113), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -229971,81 +235102,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [80412] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3096), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3098), 52, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [80479] = 4, + [84559] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3225), 4, + ACTIONS(3289), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3227), 51, + ACTIONS(3291), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -230097,19 +235165,530 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [80546] = 4, + [84626] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3285), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3287), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [84693] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3303), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3305), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [84760] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3307), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3309), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [84827] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3315), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3317), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [84894] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(552), 1, + anon_sym_do, + ACTIONS(4131), 1, + sym__newline_before_do, + STATE(3954), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3012), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3014), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [84967] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3289), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3291), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [85034] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3285), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3287), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [85101] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(552), 1, + anon_sym_do, + ACTIONS(4133), 1, + sym__newline_before_do, + STATE(3951), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3038), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3040), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [85174] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3010), 1, + aux_sym_quoted_keyword_token1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3040), 3, + ACTIONS(3006), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3042), 51, - anon_sym_LPAREN, + ACTIONS(3008), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -230160,17 +235739,1251 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [80613] = 4, + [85243] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(2643), 2, + ACTIONS(3004), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3000), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3002), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [85312] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(552), 1, + anon_sym_do, + ACTIONS(4135), 1, + sym__newline_before_do, + STATE(3950), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3038), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3040), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [85385] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3551), 1, + sym__newline_before_do, + ACTIONS(3979), 1, + anon_sym_DOT, + ACTIONS(3981), 1, + anon_sym_LBRACK2, + ACTIONS(3999), 1, + anon_sym_PIPE, + ACTIONS(4009), 1, + anon_sym_when, + ACTIONS(4011), 1, + anon_sym_COLON_COLON, + ACTIONS(4013), 1, + anon_sym_EQ_GT, + ACTIONS(4015), 1, + anon_sym_EQ, + ACTIONS(4025), 1, + anon_sym_in, + ACTIONS(4027), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4029), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4033), 1, + anon_sym_STAR_STAR, + ACTIONS(4035), 1, + sym__not_in, + ACTIONS(4001), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4005), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4007), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4017), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4019), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3997), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3553), 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4021), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4031), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4023), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [85494] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3345), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3347), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [85561] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3303), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3305), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [85628] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(552), 1, + anon_sym_do, + ACTIONS(4137), 1, + sym__newline_before_do, + STATE(3937), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3064), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3066), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [85701] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3411), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3413), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [85768] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(552), 1, + anon_sym_do, + ACTIONS(4139), 1, + sym__newline_before_do, + STATE(3914), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3038), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3040), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [85841] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4141), 1, + anon_sym_COMMA, + STATE(2236), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3134), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3136), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [85912] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3415), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3417), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [85979] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3480), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3482), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [86046] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3530), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3532), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [86113] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4144), 1, + anon_sym_COMMA, + STATE(2240), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3457), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3459), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [86184] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4147), 1, + anon_sym_COMMA, + STATE(2240), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3506), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3508), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [86255] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3526), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3528), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [86322] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3307), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3309), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [86389] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3522), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3524), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [86456] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3307), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3309), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [86523] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3303), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3305), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [86590] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2631), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2645), 52, + ACTIONS(2633), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -230223,7 +237036,259 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [80680] = 4, + [86657] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2611), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2613), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [86724] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3500), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3502), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [86791] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3285), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3287), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [86858] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3289), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3291), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [86925] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(2647), 2, @@ -230286,147 +237351,336 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [80747] = 4, + [86992] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3131), 5, - sym__newline_before_do, + ACTIONS(2651), 2, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3133), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [80814] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3135), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3137), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [80881] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4031), 1, - aux_sym_sigil_token3, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3143), 3, + ACTIONS(2653), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [87059] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3445), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3145), 50, - anon_sym_RPAREN, + ACTIONS(3447), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [87126] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3441), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3443), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [87193] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3399), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3401), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [87260] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3335), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3337), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [87327] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3030), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3032), 50, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -230473,1129 +237727,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [80950] = 6, + [87394] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(4033), 1, + ACTIONS(4149), 1, anon_sym_COMMA, - STATE(2157), 1, + STATE(2350), 1, aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3110), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3112), 49, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [81021] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3253), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3255), 51, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [81088] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2647), 4, - sym__newline_before_do, - sym__not_in, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(2649), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [81155] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2643), 4, - sym__newline_before_do, - sym__not_in, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(2645), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [81222] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2647), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2649), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [81289] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2635), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2637), 51, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [81356] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2639), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2641), 51, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [81423] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2643), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2645), 51, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [81490] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2647), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2649), 51, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [81557] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3221), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3223), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [81624] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3217), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3219), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [81691] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3135), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3137), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [81758] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3018), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3020), 52, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [81825] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3090), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3092), 52, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [81892] = 27, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(4038), 1, - anon_sym_PIPE, - ACTIONS(4042), 1, - anon_sym_COMMA, - ACTIONS(4048), 1, - anon_sym_when, - ACTIONS(4050), 1, - anon_sym_COLON_COLON, - ACTIONS(4052), 1, - anon_sym_EQ_GT, - ACTIONS(4054), 1, - anon_sym_EQ, - ACTIONS(4064), 1, - anon_sym_in, - ACTIONS(4066), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4068), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4072), 1, - anon_sym_STAR_STAR, - ACTIONS(4074), 1, - anon_sym_DOT, - ACTIONS(4076), 1, - sym__not_in, - STATE(2173), 1, - aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3139), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(4040), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4044), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4046), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3141), 3, - anon_sym_SEMI, - anon_sym_do, - anon_sym_end, - ACTIONS(4056), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4058), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4036), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4060), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4070), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4062), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [82005] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4078), 1, - anon_sym_COMMA, - STATE(2172), 1, - aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3110), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3112), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [82076] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4081), 1, - anon_sym_COMMA, - STATE(2172), 1, - aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3117), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3119), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [82147] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3189), 5, + ACTIONS(3506), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3191), 50, + ACTIONS(3508), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -231639,700 +237794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [82214] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3014), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3016), 52, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [82281] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3245), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3247), 51, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [82348] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3028), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3030), 52, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [82415] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3213), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3215), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [82482] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3149), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3151), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [82549] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3153), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3155), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [82616] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3157), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3159), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [82683] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3161), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3163), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [82750] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3165), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3167), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [82817] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3096), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3098), 50, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [82884] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3018), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3020), 50, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [82951] = 4, + [87465] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -232395,19 +237857,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [83018] = 4, + [87532] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3072), 5, + ACTIONS(3331), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3074), 50, + ACTIONS(3333), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [87599] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3311), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3313), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [87666] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3098), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3100), 50, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LT, @@ -232458,146 +238046,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [83085] = 4, + [87733] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3123), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3125), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [83152] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3026), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3022), 5, + ACTIONS(3211), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3024), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [83221] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3269), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3271), 50, + ACTIONS(3213), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -232648,1029 +238109,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [83288] = 4, + [87800] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3106), 5, + ACTIONS(3052), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3108), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [83355] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3265), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3267), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [83422] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3261), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3263), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [83489] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3257), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3259), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [83556] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3253), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3255), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [83623] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3249), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3251), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [83690] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3245), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3247), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [83757] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3974), 1, - anon_sym_COMMA, - STATE(2230), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3475), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3477), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [83828] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3241), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3243), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [83895] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3237), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3239), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [83962] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3233), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3235), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [84029] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3229), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3231), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [84096] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3225), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3227), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [84163] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3221), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3223), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [84230] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3217), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3219), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [84297] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3213), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3215), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [84364] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3066), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3068), 50, + ACTIONS(3054), 50, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LT, @@ -233721,82 +238172,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [84431] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3080), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3082), 52, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [84498] = 4, + [87867] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3062), 5, + ACTIONS(3048), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3064), 50, + ACTIONS(3050), 50, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LT, @@ -233847,7 +238235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [84565] = 4, + [87934] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -233910,339 +238298,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [84632] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3209), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3211), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [84699] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3205), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3207), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [84766] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3201), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3203), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [84833] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3197), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3199), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [84900] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3193), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3195), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [84967] = 4, + [88001] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2639), 4, + ACTIONS(3307), 3, sym__newline_before_do, sym__not_in, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2641), 50, + ACTIONS(3309), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -234288,147 +238361,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [85034] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4083), 1, - anon_sym_COMMA, - STATE(2217), 1, - aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3110), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3112), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [85105] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2635), 4, - sym__newline_before_do, - sym__not_in, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(2637), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [85172] = 4, + [88068] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3100), 5, + ACTIONS(3034), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3102), 50, + ACTIONS(3036), 50, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LT, @@ -234479,25 +238424,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [85239] = 4, + [88135] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3185), 5, + ACTIONS(3026), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3187), 50, + ACTIONS(3028), 50, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -234542,25 +238487,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [85306] = 4, + [88202] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3026), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3028), 52, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [88269] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3181), 5, + ACTIONS(3094), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3183), 50, + ACTIONS(3096), 50, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -234605,25 +238613,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [85373] = 4, + [88336] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3177), 5, + ACTIONS(3074), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3179), 50, + ACTIONS(3076), 50, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -234668,20 +238676,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [85440] = 4, + [88403] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3173), 5, + aux_sym__terminator_token1, + ACTIONS(3303), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3175), 50, - anon_sym_SEMI, + ACTIONS(3305), 51, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -234729,26 +238736,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [85507] = 4, + [88470] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3010), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3006), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3241), 4, - sym__newline_before_do, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3243), 51, - anon_sym_SEMI, + ACTIONS(3008), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -234792,27 +238803,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [85574] = 4, + [88539] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3004), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3000), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3169), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3171), 50, - anon_sym_SEMI, + ACTIONS(3002), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -234856,276 +238867,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [85641] = 4, + [88608] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3165), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3167), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, + ACTIONS(4151), 1, anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [85708] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3161), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3163), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [85775] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3157), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3159), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [85842] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3153), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3155), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [85909] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4086), 1, - anon_sym_COMMA, - STATE(2230), 1, + STATE(2278), 1, aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3479), 5, + ACTIONS(3219), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3481), 48, + ACTIONS(3221), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -235174,9 +238932,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [85980] = 4, + [88679] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(4151), 1, + anon_sym_COMMA, + STATE(2347), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -235186,7 +238948,259 @@ static const uint16_t ts_small_parse_table[] = { ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3151), 50, + ACTIONS(3151), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [88750] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3285), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3287), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [88817] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3289), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3291), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [88884] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4153), 1, + anon_sym_COMMA, + STATE(2281), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3134), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3136), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [88955] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3277), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3279), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -235237,27 +239251,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [86047] = 6, + [89022] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4089), 1, - anon_sym_COMMA, - STATE(2232), 1, - aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3110), 3, + ACTIONS(3273), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3112), 49, - anon_sym_RPAREN, + ACTIONS(3275), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -235299,25 +239312,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [86118] = 6, + [89089] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4092), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3259), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3261), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - STATE(2233), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [89156] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3253), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3255), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [89223] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4156), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [89292] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4158), 1, + anon_sym_COMMA, + STATE(2355), 1, aux_sym_keywords_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3479), 3, + ACTIONS(3219), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3481), 49, + ACTIONS(3221), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -235367,84 +239569,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [86189] = 4, + [89363] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3028), 5, + ACTIONS(2651), 6, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3030), 50, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [86256] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3026), 1, aux_sym_quoted_keyword_token1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3050), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3052), 49, + ACTIONS(2653), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -235494,1081 +239632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [86325] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3058), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3060), 52, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [86392] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3014), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3016), 50, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [86459] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4095), 1, - anon_sym_COMMA, - STATE(2157), 1, - aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3117), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3119), 49, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [86530] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3072), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3074), 52, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [86597] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3173), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3175), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [86664] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3177), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3179), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [86731] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3181), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3183), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [86798] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3185), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3187), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [86865] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3189), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3191), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [86932] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3193), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3195), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [86999] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3197), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3199), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [87066] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3201), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3203), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [87133] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3237), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3239), 51, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [87200] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3233), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3235), 51, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [87267] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4097), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3143), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3145), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [87336] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3229), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3231), 51, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [87403] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3225), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3227), 51, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [87470] = 4, + [89430] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -236631,25 +239695,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [87537] = 4, + [89497] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2643), 6, + ACTIONS(3245), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2645), 49, + ACTIONS(3247), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -236694,81 +239758,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [87604] = 25, + [89564] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3542), 1, - sym__newline_before_do, - ACTIONS(3784), 1, - anon_sym_DOT, - ACTIONS(3786), 1, - anon_sym_LBRACK2, - ACTIONS(3801), 1, - anon_sym_PIPE, - ACTIONS(3811), 1, - anon_sym_when, - ACTIONS(3813), 1, - anon_sym_COLON_COLON, - ACTIONS(3815), 1, - anon_sym_EQ_GT, - ACTIONS(3817), 1, - anon_sym_EQ, - ACTIONS(3827), 1, - anon_sym_in, - ACTIONS(3829), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3831), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3835), 1, - anon_sym_STAR_STAR, - ACTIONS(3837), 1, - sym__not_in, - ACTIONS(3803), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3807), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3809), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3241), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3819), 3, + anon_sym_LBRACK2, + ACTIONS(3243), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3821), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3799), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3544), 5, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_do, - ACTIONS(3823), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3833), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3825), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -236778,27 +239808,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [87713] = 6, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [89631] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(4099), 1, - anon_sym_COMMA, - STATE(2233), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 3, + ACTIONS(3395), 1, + anon_sym_LBRACK2, + ACTIONS(4077), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3475), 3, + ACTIONS(3293), 3, sym__newline_before_do, sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3477), 49, + aux_sym__terminator_token1, + ACTIONS(3295), 50, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -236841,29 +239885,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DASH_GT, - anon_sym_DOT, anon_sym_do, - [87784] = 4, + [89702] = 10, ACTIONS(5), 1, sym_comment, + ACTIONS(3395), 1, + anon_sym_LBRACK2, + ACTIONS(4075), 1, + anon_sym_STAR_STAR, + ACTIONS(4077), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3221), 4, + ACTIONS(4043), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4047), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3293), 3, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3223), 51, + ACTIONS(4073), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 39, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -236895,38 +239953,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, + anon_sym_DASH_GT, + anon_sym_do, + [89781] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3395), 1, + anon_sym_LBRACK2, + ACTIONS(4071), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4075), 1, + anon_sym_STAR_STAR, + ACTIONS(4077), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4043), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4047), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3293), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(4073), 6, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [87851] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3217), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3219), 51, + ACTIONS(3295), 38, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -236957,41 +240023,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_do, - anon_sym_end, - [87918] = 4, + [89862] = 12, ACTIONS(5), 1, sym_comment, - ACTIONS(3205), 2, - sym__not_in, + ACTIONS(3979), 1, + anon_sym_DOT, + ACTIONS(3981), 1, anon_sym_LBRACK2, + ACTIONS(4027), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4029), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4033), 1, + anon_sym_STAR_STAR, + ACTIONS(3293), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4001), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4005), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3207), 52, + ACTIONS(4031), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 37, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -237021,40 +240095,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, + anon_sym_do, + [89945] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__newline_before_do, + ACTIONS(3979), 1, + anon_sym_DOT, + ACTIONS(3981), 1, + anon_sym_LBRACK2, + ACTIONS(4025), 1, + anon_sym_in, + ACTIONS(4027), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4029), 1, anon_sym_SLASH_SLASH, + ACTIONS(4033), 1, + anon_sym_STAR_STAR, + ACTIONS(4035), 1, + sym__not_in, + ACTIONS(4001), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4005), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4031), 6, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [87985] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3209), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3211), 52, + ACTIONS(4023), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 27, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -237074,558 +240169,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [88052] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3076), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3078), 50, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, anon_sym_do, - [88119] = 5, + [90034] = 22, ACTIONS(5), 1, sym_comment, - STATE(2620), 1, - sym_do_block, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3000), 5, + ACTIONS(3293), 1, sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, + ACTIONS(3979), 1, + anon_sym_DOT, + ACTIONS(3981), 1, anon_sym_LBRACK2, - ACTIONS(3002), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3999), 1, anon_sym_PIPE, + ACTIONS(4013), 1, + anon_sym_EQ_GT, + ACTIONS(4015), 1, + anon_sym_EQ, + ACTIONS(4025), 1, + anon_sym_in, + ACTIONS(4027), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4029), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4033), 1, + anon_sym_STAR_STAR, + ACTIONS(4035), 1, + sym__not_in, + ACTIONS(4001), 2, anon_sym_SLASH, - anon_sym_COMMA, + anon_sym_STAR, + ACTIONS(4005), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [88188] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3213), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3215), 51, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [88255] = 5, - ACTIONS(5), 1, - sym_comment, - STATE(2621), 1, - sym_do_block, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2994), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2996), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [88324] = 5, - ACTIONS(5), 1, - sym_comment, - STATE(2623), 1, - sym_do_block, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3000), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3002), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [88393] = 5, - ACTIONS(5), 1, - sym_comment, - STATE(2624), 1, - sym_do_block, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3000), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3002), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [88462] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3209), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3211), 51, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [88529] = 5, - ACTIONS(5), 1, - sym_comment, - STATE(2626), 1, - sym_do_block, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3008), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3010), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [88598] = 5, - ACTIONS(5), 1, - sym_comment, - STATE(2372), 1, - sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3008), 3, + ACTIONS(4017), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4019), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3997), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4021), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4031), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 9, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_do, + ACTIONS(4023), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [90137] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3395), 1, + anon_sym_LBRACK2, + ACTIONS(4071), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4075), 1, + anon_sym_STAR_STAR, + ACTIONS(4077), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4043), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4047), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3293), 3, sym__newline_before_do, sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3010), 50, + aux_sym__terminator_token1, + ACTIONS(4073), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 38, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -237656,817 +240319,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, anon_sym_DASH_GT, - anon_sym_DOT, anon_sym_do, - [88667] = 27, + [90218] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3538), 1, + ACTIONS(3979), 1, + anon_sym_DOT, + ACTIONS(3981), 1, anon_sym_LBRACK2, - ACTIONS(4103), 1, - anon_sym_PIPE, - ACTIONS(4107), 1, - anon_sym_COMMA, - ACTIONS(4113), 1, - anon_sym_when, - ACTIONS(4115), 1, - anon_sym_COLON_COLON, - ACTIONS(4117), 1, - anon_sym_EQ_GT, - ACTIONS(4119), 1, - anon_sym_EQ, - ACTIONS(4129), 1, - anon_sym_in, - ACTIONS(4131), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4133), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4137), 1, + ACTIONS(4033), 1, anon_sym_STAR_STAR, - ACTIONS(4139), 1, - anon_sym_DOT, - ACTIONS(4141), 1, - sym__not_in, - STATE(2238), 1, - aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3139), 2, + ACTIONS(3293), 2, sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(4105), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4109), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4111), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3141), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_do, - ACTIONS(4121), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4123), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4101), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4125), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4135), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4127), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [88780] = 5, - ACTIONS(5), 1, - sym_comment, - STATE(2370), 1, - sym_do_block, + sym__not_in, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3000), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3002), 50, + ACTIONS(3295), 49, anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [88849] = 5, - ACTIONS(5), 1, - sym_comment, - STATE(2367), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3000), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3002), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [88918] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3205), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3207), 51, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [88985] = 5, - ACTIONS(5), 1, - sym_comment, - STATE(2364), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2994), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(2996), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [89054] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4143), 1, - anon_sym_COMMA, - STATE(2217), 1, - aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3117), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3119), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [89125] = 5, - ACTIONS(5), 1, - sym_comment, - STATE(2363), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3000), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3002), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [89194] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3076), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3078), 51, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [89261] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3086), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3088), 50, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [89328] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3201), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3203), 51, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [89395] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3197), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3199), 51, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [89462] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3193), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3195), 51, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [89529] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3044), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3046), 52, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_LT, @@ -238514,28 +240386,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [89596] = 4, + anon_sym_do, + [90291] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(3062), 2, - sym__not_in, + ACTIONS(3979), 1, + anon_sym_DOT, + ACTIONS(3981), 1, anon_sym_LBRACK2, + ACTIONS(4033), 1, + anon_sym_STAR_STAR, + ACTIONS(3293), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4001), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3064), 52, - anon_sym_LPAREN, + ACTIONS(3295), 47, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -238576,156 +240453,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [89663] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3189), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3191), 51, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, anon_sym_do, - anon_sym_end, - [89730] = 4, + [90366] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3185), 4, + ACTIONS(3293), 1, sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, + ACTIONS(3979), 1, + anon_sym_DOT, + ACTIONS(3981), 1, anon_sym_LBRACK2, - ACTIONS(3187), 51, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3999), 1, anon_sym_PIPE, + ACTIONS(4009), 1, + anon_sym_when, + ACTIONS(4011), 1, + anon_sym_COLON_COLON, + ACTIONS(4013), 1, + anon_sym_EQ_GT, + ACTIONS(4015), 1, + anon_sym_EQ, + ACTIONS(4025), 1, + anon_sym_in, + ACTIONS(4027), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4029), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4033), 1, + anon_sym_STAR_STAR, + ACTIONS(4035), 1, + sym__not_in, + ACTIONS(4001), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, + anon_sym_STAR, + ACTIONS(4005), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [89797] = 4, - ACTIONS(5), 1, - sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3096), 3, + ACTIONS(4017), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4019), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3997), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4021), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4031), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + ACTIONS(4023), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [90473] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, sym__newline_before_do, - sym__not_in, + ACTIONS(3979), 1, + anon_sym_DOT, + ACTIONS(3981), 1, anon_sym_LBRACK2, - ACTIONS(3098), 51, - anon_sym_LPAREN, + ACTIONS(3999), 1, + anon_sym_PIPE, + ACTIONS(4009), 1, + anon_sym_when, + ACTIONS(4011), 1, + anon_sym_COLON_COLON, + ACTIONS(4013), 1, + anon_sym_EQ_GT, + ACTIONS(4015), 1, + anon_sym_EQ, + ACTIONS(4025), 1, + anon_sym_in, + ACTIONS(4027), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4029), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4033), 1, + anon_sym_STAR_STAR, + ACTIONS(4035), 1, + sym__not_in, + ACTIONS(4001), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4005), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4017), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4019), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3997), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4021), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4031), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + ACTIONS(4023), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [90580] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3395), 1, + anon_sym_LBRACK2, + ACTIONS(4067), 1, + anon_sym_in, + ACTIONS(4069), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4071), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4075), 1, + anon_sym_STAR_STAR, + ACTIONS(4077), 1, + anon_sym_DOT, + ACTIONS(4079), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4043), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4047), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4073), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 36, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -238754,41 +240691,459 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, anon_sym_DASH_GT, - anon_sym_DOT, anon_sym_do, - [89864] = 4, + [90667] = 23, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3181), 4, + ACTIONS(3293), 1, sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, + ACTIONS(3979), 1, + anon_sym_DOT, + ACTIONS(3981), 1, anon_sym_LBRACK2, - ACTIONS(3183), 51, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3999), 1, anon_sym_PIPE, + ACTIONS(4011), 1, + anon_sym_COLON_COLON, + ACTIONS(4013), 1, + anon_sym_EQ_GT, + ACTIONS(4015), 1, + anon_sym_EQ, + ACTIONS(4025), 1, + anon_sym_in, + ACTIONS(4027), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4029), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4033), 1, + anon_sym_STAR_STAR, + ACTIONS(4035), 1, + sym__not_in, + ACTIONS(4001), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, + anon_sym_STAR, + ACTIONS(4005), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4017), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4019), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3997), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4021), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4031), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_do, + ACTIONS(4023), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [90772] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__newline_before_do, + ACTIONS(3979), 1, + anon_sym_DOT, + ACTIONS(3981), 1, + anon_sym_LBRACK2, + ACTIONS(4013), 1, + anon_sym_EQ_GT, + ACTIONS(4015), 1, + anon_sym_EQ, + ACTIONS(4025), 1, + anon_sym_in, + ACTIONS(4027), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4029), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4033), 1, + anon_sym_STAR_STAR, + ACTIONS(4035), 1, + sym__not_in, + ACTIONS(4001), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4005), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4017), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4019), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3997), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4021), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4031), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4023), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 10, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_do, + [90873] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__newline_before_do, + ACTIONS(3979), 1, + anon_sym_DOT, + ACTIONS(3981), 1, + anon_sym_LBRACK2, + ACTIONS(4015), 1, + anon_sym_EQ, + ACTIONS(4025), 1, + anon_sym_in, + ACTIONS(4027), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4029), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4033), 1, + anon_sym_STAR_STAR, + ACTIONS(4035), 1, + sym__not_in, + ACTIONS(4001), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4005), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4017), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4019), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3997), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4021), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4031), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4023), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 11, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_do, + [90972] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__newline_before_do, + ACTIONS(3979), 1, + anon_sym_DOT, + ACTIONS(3981), 1, + anon_sym_LBRACK2, + ACTIONS(4025), 1, + anon_sym_in, + ACTIONS(4027), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4029), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4033), 1, + anon_sym_STAR_STAR, + ACTIONS(4035), 1, + sym__not_in, + ACTIONS(4001), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4005), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4019), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3997), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4021), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4031), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4023), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 15, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_do, + [91067] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__newline_before_do, + ACTIONS(3979), 1, + anon_sym_DOT, + ACTIONS(3981), 1, + anon_sym_LBRACK2, + ACTIONS(4025), 1, + anon_sym_in, + ACTIONS(4027), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4029), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4033), 1, + anon_sym_STAR_STAR, + ACTIONS(4035), 1, + sym__not_in, + ACTIONS(4001), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4005), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3997), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4021), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4031), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4023), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 18, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_do, + [91160] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__newline_before_do, + ACTIONS(3979), 1, + anon_sym_DOT, + ACTIONS(3981), 1, + anon_sym_LBRACK2, + ACTIONS(4025), 1, + anon_sym_in, + ACTIONS(4027), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4029), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4033), 1, + anon_sym_STAR_STAR, + ACTIONS(4035), 1, + sym__not_in, + ACTIONS(4001), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4005), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3997), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4031), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4023), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 23, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -238806,54 +241161,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, + anon_sym_do, + [91251] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__newline_before_do, + ACTIONS(3979), 1, + anon_sym_DOT, + ACTIONS(3981), 1, + anon_sym_LBRACK2, + ACTIONS(4025), 1, anon_sym_in, + ACTIONS(4027), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4029), 1, anon_sym_SLASH_SLASH, + ACTIONS(4033), 1, + anon_sym_STAR_STAR, + ACTIONS(4035), 1, + sym__not_in, + ACTIONS(4001), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4005), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4031), 6, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [89931] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3066), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3068), 52, - anon_sym_LPAREN, + ACTIONS(3295), 36, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -238882,39 +241234,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [89998] = 4, + anon_sym_do, + [91338] = 11, ACTIONS(5), 1, sym_comment, + ACTIONS(3979), 1, + anon_sym_DOT, + ACTIONS(3981), 1, + anon_sym_LBRACK2, + ACTIONS(4029), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4033), 1, + anon_sym_STAR_STAR, + ACTIONS(3293), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4001), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4005), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3018), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3020), 51, - anon_sym_LPAREN, + ACTIONS(4031), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 38, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_do, + [91419] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3979), 1, + anon_sym_DOT, + ACTIONS(3981), 1, + anon_sym_LBRACK2, + ACTIONS(4029), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4033), 1, + anon_sym_STAR_STAR, + ACTIONS(3293), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4001), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4005), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4031), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 38, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_do, + [91500] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3979), 1, + anon_sym_DOT, + ACTIONS(3981), 1, + anon_sym_LBRACK2, + ACTIONS(4033), 1, + anon_sym_STAR_STAR, + ACTIONS(3293), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4001), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4005), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4031), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 39, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -238946,18 +241443,477 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, + anon_sym_do, + [91579] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3395), 1, + anon_sym_LBRACK2, + ACTIONS(4067), 1, + anon_sym_in, + ACTIONS(4069), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4071), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4075), 1, + anon_sym_STAR_STAR, + ACTIONS(4077), 1, + anon_sym_DOT, + ACTIONS(4079), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4043), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4047), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4039), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4073), 6, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, + ACTIONS(4065), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 23, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_DASH_GT, - anon_sym_DOT, anon_sym_do, - [90065] = 4, + [91670] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3395), 1, + anon_sym_LBRACK2, + ACTIONS(4067), 1, + anon_sym_in, + ACTIONS(4069), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4071), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4075), 1, + anon_sym_STAR_STAR, + ACTIONS(4077), 1, + anon_sym_DOT, + ACTIONS(4079), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4043), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4047), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4039), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4063), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4073), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4065), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 18, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_do, + [91763] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3395), 1, + anon_sym_LBRACK2, + ACTIONS(4067), 1, + anon_sym_in, + ACTIONS(4069), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4071), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4075), 1, + anon_sym_STAR_STAR, + ACTIONS(4077), 1, + anon_sym_DOT, + ACTIONS(4079), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4043), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4047), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4061), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4039), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4063), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4073), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4065), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_DASH_GT, + anon_sym_do, + [91858] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3395), 1, + anon_sym_LBRACK2, + ACTIONS(4057), 1, + anon_sym_EQ, + ACTIONS(4067), 1, + anon_sym_in, + ACTIONS(4069), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4071), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4075), 1, + anon_sym_STAR_STAR, + ACTIONS(4077), 1, + anon_sym_DOT, + ACTIONS(4079), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4043), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4047), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4059), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4061), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4039), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4063), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4073), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4065), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 11, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + anon_sym_do, + [91957] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3395), 1, + anon_sym_LBRACK2, + ACTIONS(4055), 1, + anon_sym_EQ_GT, + ACTIONS(4057), 1, + anon_sym_EQ, + ACTIONS(4067), 1, + anon_sym_in, + ACTIONS(4069), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4071), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4075), 1, + anon_sym_STAR_STAR, + ACTIONS(4077), 1, + anon_sym_DOT, + ACTIONS(4079), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4043), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4047), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4059), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4061), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4039), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4063), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4073), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4065), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_do, + [92058] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3395), 1, + anon_sym_LBRACK2, + ACTIONS(4041), 1, + anon_sym_PIPE, + ACTIONS(4053), 1, + anon_sym_COLON_COLON, + ACTIONS(4055), 1, + anon_sym_EQ_GT, + ACTIONS(4057), 1, + anon_sym_EQ, + ACTIONS(4067), 1, + anon_sym_in, + ACTIONS(4069), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4071), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4075), 1, + anon_sym_STAR_STAR, + ACTIONS(4077), 1, + anon_sym_DOT, + ACTIONS(4079), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4043), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4047), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4059), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4061), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4039), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4063), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4073), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 8, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(4065), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [92163] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, @@ -239020,18 +241976,2030 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [90132] = 4, + [92230] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3177), 4, + ACTIONS(3233), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3235), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [92297] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3395), 1, + anon_sym_LBRACK2, + ACTIONS(4041), 1, + anon_sym_PIPE, + ACTIONS(4051), 1, + anon_sym_when, + ACTIONS(4053), 1, + anon_sym_COLON_COLON, + ACTIONS(4055), 1, + anon_sym_EQ_GT, + ACTIONS(4057), 1, + anon_sym_EQ, + ACTIONS(4067), 1, + anon_sym_in, + ACTIONS(4069), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4071), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4075), 1, + anon_sym_STAR_STAR, + ACTIONS(4077), 1, + anon_sym_DOT, + ACTIONS(4079), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4043), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4047), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4059), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4061), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4039), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4063), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4073), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(4065), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [92404] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3395), 1, + anon_sym_LBRACK2, + ACTIONS(4041), 1, + anon_sym_PIPE, + ACTIONS(4051), 1, + anon_sym_when, + ACTIONS(4053), 1, + anon_sym_COLON_COLON, + ACTIONS(4055), 1, + anon_sym_EQ_GT, + ACTIONS(4057), 1, + anon_sym_EQ, + ACTIONS(4067), 1, + anon_sym_in, + ACTIONS(4069), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4071), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4075), 1, + anon_sym_STAR_STAR, + ACTIONS(4077), 1, + anon_sym_DOT, + ACTIONS(4079), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4043), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4047), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4059), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4061), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4039), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4063), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4073), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(4065), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [92511] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3395), 1, + anon_sym_LBRACK2, + ACTIONS(4075), 1, + anon_sym_STAR_STAR, + ACTIONS(4077), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4043), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3293), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3295), 47, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_DASH_GT, + anon_sym_do, + [92586] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3395), 1, + anon_sym_LBRACK2, + ACTIONS(4075), 1, + anon_sym_STAR_STAR, + ACTIONS(4077), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3295), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_DASH_GT, + anon_sym_do, + [92659] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3229), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3231), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [92726] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3395), 1, + anon_sym_LBRACK2, + ACTIONS(4041), 1, + anon_sym_PIPE, + ACTIONS(4055), 1, + anon_sym_EQ_GT, + ACTIONS(4057), 1, + anon_sym_EQ, + ACTIONS(4067), 1, + anon_sym_in, + ACTIONS(4069), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4071), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4075), 1, + anon_sym_STAR_STAR, + ACTIONS(4077), 1, + anon_sym_DOT, + ACTIONS(4079), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4043), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4047), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4059), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4061), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4039), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4063), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4073), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(4065), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [92829] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3145), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3147), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [92896] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3141), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3143), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [92963] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3395), 1, + anon_sym_LBRACK2, + ACTIONS(4067), 1, + anon_sym_in, + ACTIONS(4069), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4071), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4075), 1, + anon_sym_STAR_STAR, + ACTIONS(4077), 1, + anon_sym_DOT, + ACTIONS(4079), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4043), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4047), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4073), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4065), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 27, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DASH_GT, + anon_sym_do, + [93052] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3395), 1, + anon_sym_LBRACK2, + ACTIONS(4069), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4071), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4075), 1, + anon_sym_STAR_STAR, + ACTIONS(4077), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4043), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4047), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3293), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(4073), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 37, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_do, + [93135] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3215), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3217), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [93202] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3468), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3470), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [93269] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3486), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3488), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [93336] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3496), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3498), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [93403] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3237), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3239), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [93470] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4160), 1, + anon_sym_COMMA, + STATE(2337), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3457), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3459), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [93541] = 27, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(4165), 1, + anon_sym_PIPE, + ACTIONS(4169), 1, + anon_sym_COMMA, + ACTIONS(4175), 1, + anon_sym_when, + ACTIONS(4177), 1, + anon_sym_COLON_COLON, + ACTIONS(4179), 1, + anon_sym_EQ_GT, + ACTIONS(4181), 1, + anon_sym_EQ, + ACTIONS(4191), 1, + anon_sym_in, + ACTIONS(4193), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4195), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4199), 1, + anon_sym_STAR_STAR, + ACTIONS(4201), 1, + anon_sym_DOT, + ACTIONS(4203), 1, + sym__not_in, + STATE(2664), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3351), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4167), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4171), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4173), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3353), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_do, + ACTIONS(4183), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4185), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4163), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4187), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4197), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4189), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [93654] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(2690), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3012), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3014), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [93723] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3018), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3020), 50, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [93790] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4205), 1, + anon_sym_COMMA, + STATE(2281), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3149), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3179), 51, + ACTIONS(3151), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [93861] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2631), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2633), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [93928] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(2739), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3038), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3040), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [93997] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3395), 1, + anon_sym_LBRACK2, + ACTIONS(4077), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3118), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3120), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_do, + [94068] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(2742), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3038), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3040), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [94137] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(2908), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3064), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3066), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [94206] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4207), 1, + anon_sym_COMMA, + STATE(2347), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3134), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3136), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [94277] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(2993), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3038), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3040), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [94346] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3078), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3080), 50, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [94413] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4210), 1, + anon_sym_COMMA, + STATE(2350), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3457), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3459), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [94484] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3311), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3313), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -239083,18 +244051,1501 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [90199] = 4, + [94551] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3331), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3333), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [94618] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3335), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3337), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [94685] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3399), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3401), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [94752] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4158), 1, + anon_sym_COMMA, + STATE(2532), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3149), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3151), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [94823] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3544), 1, + sym__newline_before_do, + ACTIONS(3979), 1, + anon_sym_DOT, + ACTIONS(3981), 1, + anon_sym_LBRACK2, + ACTIONS(3999), 1, + anon_sym_PIPE, + ACTIONS(4009), 1, + anon_sym_when, + ACTIONS(4011), 1, + anon_sym_COLON_COLON, + ACTIONS(4013), 1, + anon_sym_EQ_GT, + ACTIONS(4015), 1, + anon_sym_EQ, + ACTIONS(4025), 1, + anon_sym_in, + ACTIONS(4027), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4029), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4033), 1, + anon_sym_STAR_STAR, + ACTIONS(4035), 1, + sym__not_in, + ACTIONS(4001), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4005), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4007), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4017), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4019), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3997), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3546), 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4021), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4031), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4023), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [94932] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2611), 6, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2613), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [94999] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2631), 6, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2633), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [95066] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3441), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3443), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [95133] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3445), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3447), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [95200] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3500), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3502), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [95267] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3522), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3524), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [95334] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4213), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [95403] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4215), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [95472] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4217), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [95541] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4219), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [95610] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4221), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [95679] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4223), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [95748] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4225), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [95817] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4227), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [95886] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3526), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3528), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [95953] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4229), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [96022] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4231), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [96091] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4233), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [96160] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3072), 3, + ACTIONS(3026), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3074), 51, + ACTIONS(3028), 51, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, @@ -239146,18 +245597,679 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [90266] = 4, + [96227] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4235), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [96296] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3395), 1, + anon_sym_LBRACK2, + ACTIONS(4077), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3191), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3193), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_do, + [96367] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4237), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [96436] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3395), 1, + anon_sym_LBRACK2, + ACTIONS(4041), 1, + anon_sym_PIPE, + ACTIONS(4051), 1, + anon_sym_when, + ACTIONS(4053), 1, + anon_sym_COLON_COLON, + ACTIONS(4055), 1, + anon_sym_EQ_GT, + ACTIONS(4057), 1, + anon_sym_EQ, + ACTIONS(4067), 1, + anon_sym_in, + ACTIONS(4069), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4071), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4075), 1, + anon_sym_STAR_STAR, + ACTIONS(4077), 1, + anon_sym_DOT, + ACTIONS(4079), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3551), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4043), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4047), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4049), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4059), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4061), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4039), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3553), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(4063), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4073), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4065), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [96545] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4239), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [96614] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4241), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [96683] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4243), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [96752] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4245), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [96821] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4247), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [96890] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4249), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [96959] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3173), 4, + ACTIONS(3530), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3175), 51, + ACTIONS(3532), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -239209,17 +246321,3027 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [90333] = 4, + [97026] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3213), 2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3480), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3482), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [97093] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4205), 1, + anon_sym_COMMA, + STATE(2341), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3219), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3221), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [97164] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3415), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3417), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [97231] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3411), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3413), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [97298] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3345), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3347), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [97365] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3315), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3317), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [97432] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3110), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3112), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [97499] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3277), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3279), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [97566] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3273), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3275), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [97633] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3259), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3261), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [97700] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3253), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3255), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [97767] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3245), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3247), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [97834] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3241), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3243), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [97901] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3233), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3235), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [97968] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3229), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3231), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [98035] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3145), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3147), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [98102] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3141), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3143), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [98169] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3215), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3217), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [98236] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3211), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3213), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [98303] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3468), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3470), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [98370] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3486), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3488), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [98437] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3496), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3498), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [98504] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3237), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3239), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [98571] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3580), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [98640] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3588), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [98709] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3634), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [98778] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3636), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [98847] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3638), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [98916] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3586), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [98985] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3584), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [99054] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3578), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [99123] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3576), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [99192] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3538), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [99261] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4251), 1, + anon_sym_LPAREN, + STATE(3152), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2972), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2974), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [99332] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3574), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [99401] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3569), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [99470] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4251), 1, + anon_sym_LPAREN, + STATE(3113), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2972), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2974), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [99541] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3457), 1, + sym__newline_before_do, + ACTIONS(3979), 1, + anon_sym_DOT, + ACTIONS(3981), 1, + anon_sym_LBRACK2, + ACTIONS(3999), 1, + anon_sym_PIPE, + ACTIONS(4009), 1, + anon_sym_when, + ACTIONS(4011), 1, + anon_sym_COLON_COLON, + ACTIONS(4013), 1, + anon_sym_EQ_GT, + ACTIONS(4015), 1, + anon_sym_EQ, + ACTIONS(4025), 1, + anon_sym_in, + ACTIONS(4027), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4029), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4033), 1, + anon_sym_STAR_STAR, + ACTIONS(4035), 1, + sym__not_in, + ACTIONS(4001), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4005), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4007), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4017), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4019), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3997), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3459), 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4021), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4031), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4023), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [99650] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4251), 1, + anon_sym_LPAREN, + STATE(3115), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2972), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2974), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [99721] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3567), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [99790] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3565), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [99859] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3563), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [99928] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3542), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [99997] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3561), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [100066] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3559), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [100135] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3557), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [100204] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3555), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [100273] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3307), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3215), 52, + ACTIONS(3309), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -239272,17 +249394,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [90400] = 4, + [100340] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3217), 2, + ACTIONS(3303), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3219), 52, + ACTIONS(3305), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -239335,152 +249457,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [90467] = 4, + [100407] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3285), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3169), 4, - sym__newline_before_do, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3171), 51, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [90534] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3165), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3167), 51, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [90601] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3556), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3143), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3145), 50, - anon_sym_SEMI, + ACTIONS(3287), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -239524,19 +249520,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [90670] = 4, + [100474] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3289), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3291), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [100541] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3149), 4, + ACTIONS(3311), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3151), 51, + ACTIONS(3313), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -239588,7 +249646,954 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [90737] = 4, + [100608] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3331), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3333), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [100675] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3335), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3337), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [100742] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3399), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3401), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [100809] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3441), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3443), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [100876] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3445), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3447), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [100943] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3500), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3502), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [101010] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3522), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3524), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [101077] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3526), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3528), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [101144] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3530), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3532), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [101211] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3480), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3482), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [101278] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2651), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2653), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [101345] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3415), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3417), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [101412] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4253), 1, + anon_sym_COMMA, + STATE(2337), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3506), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3508), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [101483] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3030), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3032), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [101550] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3411), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3413), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [101617] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, @@ -239651,18 +250656,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [90804] = 4, + [101684] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2643), 3, + ACTIONS(2611), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(2645), 51, + ACTIONS(2613), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -239714,207 +250719,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [90871] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3153), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3155), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [90938] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3157), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3159), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [91005] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2639), 6, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(2641), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [91072] = 4, + [101751] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2639), 3, + ACTIONS(2631), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(2641), 51, + ACTIONS(2633), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -239966,279 +250782,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [91139] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2635), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(2637), 51, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [91206] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3131), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3133), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [91273] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3135), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3137), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [91340] = 4, + [101818] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2635), 6, + ACTIONS(2651), 4, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2637), 49, + ACTIONS(2653), 51, anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [91407] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4099), 1, - anon_sym_COMMA, - STATE(2256), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3469), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3471), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -240280,28 +250843,215 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [91478] = 5, + [101885] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3556), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3143), 4, + ACTIONS(2647), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3145), 50, + ACTIONS(2649), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [101952] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2611), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2613), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [102019] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2631), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2633), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [102086] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2651), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2653), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -240347,18 +251097,207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [91547] = 4, + [102153] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3127), 4, + ACTIONS(2647), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3129), 51, + ACTIONS(2649), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [102220] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2611), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2613), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [102287] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2631), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2633), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [102354] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3345), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3347), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -240410,27 +251349,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [91614] = 4, + [102421] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3221), 2, - sym__not_in, - anon_sym_LBRACK2, + STATE(3123), 1, + sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3223), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(2978), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2980), 50, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -240473,81 +251412,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [91681] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3225), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3227), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [91748] = 4, + anon_sym_do, + [102490] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3161), 4, + ACTIONS(3315), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3163), 51, + ACTIONS(3317), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -240599,151 +251476,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [91815] = 4, + [102557] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3100), 3, + ACTIONS(3110), 4, sym__newline_before_do, sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3102), 51, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [91882] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3014), 3, - sym__newline_before_do, - sym__not_in, anon_sym_LBRACK2, - ACTIONS(3016), 51, - anon_sym_LPAREN, + ACTIONS(3112), 51, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [91949] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3229), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3231), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, @@ -240788,21 +251538,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [92016] = 4, + anon_sym_do, + [102624] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3233), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3277), 4, + sym__newline_before_do, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3235), 52, + anon_sym_LBRACK2, + ACTIONS(3279), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -240851,7 +251601,4400 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [92083] = 4, + anon_sym_do, + [102691] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3273), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3275), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [102758] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(3061), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2984), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2986), 50, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [102827] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3259), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3261), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [102894] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3253), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3255), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [102961] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3245), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3247), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [103028] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3241), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3243), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [103095] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3233), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3235), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [103162] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3229), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3231), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [103229] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3145), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3147), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [103296] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3141), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3143), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [103363] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3215), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3217), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [103430] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3211), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3213), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [103497] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3468), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3470), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [103564] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3486), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3488), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [103631] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3496), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3498), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [103698] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3237), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3239), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [103765] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3580), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [103834] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3588), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [103903] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3634), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [103972] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3636), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [104041] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3638), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [104110] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3586), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [104179] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3584), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [104248] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3578), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [104317] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3576), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [104386] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3538), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [104455] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3574), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [104524] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3569), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [104593] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3567), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [104662] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3565), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [104731] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3563), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [104800] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3542), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [104869] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3561), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [104938] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3559), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [105007] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3557), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [105076] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3555), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [105145] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2647), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2649), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [105212] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2651), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2653), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [105279] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2651), 3, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2653), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [105346] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2647), 3, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2649), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [105413] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3078), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3080), 52, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [105480] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2611), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2613), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [105547] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2611), 3, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2613), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [105614] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2631), 3, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2633), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [105681] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4255), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [105750] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4257), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [105819] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4259), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [105888] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4261), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [105957] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4263), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [106026] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4265), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [106095] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4267), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [106164] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4269), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [106233] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4271), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [106302] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4273), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [106371] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4275), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [106440] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4277), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [106509] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4279), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [106578] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4281), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [106647] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4283), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [106716] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4285), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [106785] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4287), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [106854] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4289), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [106923] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4291), 1, + anon_sym_COMMA, + STATE(2532), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3134), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3136), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [106994] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4294), 1, + anon_sym_COMMA, + STATE(2533), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3457), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3459), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [107065] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4297), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [107134] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4299), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [107203] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3058), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3060), 52, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [107270] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2996), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2998), 52, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [107337] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2990), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2992), 52, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [107404] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3237), 2, @@ -240914,20 +256057,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [92150] = 4, + [107471] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3496), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3131), 4, - sym__newline_before_do, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3133), 51, - anon_sym_SEMI, + ACTIONS(3498), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -240976,8 +256120,1519 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, + [107538] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3486), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3488), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [107605] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3468), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3470), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [107672] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3211), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3213), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [107739] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3215), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3217), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [107806] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3311), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3313), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_do, - [92217] = 4, + [107873] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3331), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3333), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [107940] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3335), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3337), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [108007] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3399), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3401), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [108074] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3441), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3443), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [108141] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3445), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3447), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [108208] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3500), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3502), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [108275] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3522), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3524), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [108342] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3526), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3528), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [108409] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3530), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3532), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [108476] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3480), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3482), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [108543] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3415), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3417), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [108610] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3411), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3413), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [108677] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3345), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3347), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [108744] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3315), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3317), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [108811] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3110), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3112), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [108878] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3141), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3143), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [108945] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3145), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3147), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [109012] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3229), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3231), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [109079] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3233), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3235), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [109146] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3241), 2, @@ -241040,133 +257695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [92284] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3165), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3167), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [92351] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3028), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3030), 51, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [92418] = 4, + [109213] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3245), 2, @@ -241229,574 +257758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [92485] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3169), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3171), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [92552] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3066), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3068), 51, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [92619] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3173), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3175), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [92686] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3177), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3179), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [92753] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3181), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3183), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [92820] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3185), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3187), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [92887] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3189), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3191), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [92954] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3193), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3195), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [93021] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3249), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3251), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [93088] = 4, + [109280] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3253), 2, @@ -241859,17 +257821,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [93155] = 4, + [109347] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3257), 2, + ACTIONS(3259), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3259), 52, + ACTIONS(3261), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -241922,17 +257884,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [93222] = 4, + [109414] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3169), 2, + ACTIONS(3273), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3171), 52, + ACTIONS(3275), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -241985,25 +257947,4547 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [93289] = 4, + [109481] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3277), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3279), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [109548] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3277), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3279), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [109615] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3273), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3275), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [109682] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3259), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3261), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [109749] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3253), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3255), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [109816] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3245), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3247), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [109883] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3241), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3243), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [109950] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3235), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [110017] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3229), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3231), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [110084] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3145), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3147), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [110151] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3141), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3143), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [110218] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3074), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3076), 52, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [110285] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3018), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3020), 52, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [110352] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3094), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3096), 52, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [110419] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3215), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3217), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [110486] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3211), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3213), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [110553] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3468), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3470), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [110620] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3486), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3488), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [110687] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3496), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3498), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [110754] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3237), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3239), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [110821] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3110), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3112), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [110888] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3315), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3317), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [110955] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3345), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3347), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [111022] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3411), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3413), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [111089] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3415), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3417), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [111156] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3480), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3482), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [111223] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3530), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3532), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [111290] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3526), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3528), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [111357] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3522), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3524), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [111424] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3500), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3502), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [111491] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3445), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3447), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [111558] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3441), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3443), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [111625] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3399), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3401), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [111692] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3335), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3337), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [111759] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3331), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3333), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [111826] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3311), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3313), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [111893] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4301), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [111962] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4303), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [112031] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4305), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [112100] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4307), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [112169] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4309), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [112238] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4311), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [112307] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4313), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [112376] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4315), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [112445] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4317), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [112514] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4319), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [112583] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4321), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [112652] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4323), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [112721] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4325), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [112790] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4327), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [112859] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4329), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [112928] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4331), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [112997] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4333), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [113066] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4335), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [113135] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4337), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [113204] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4339), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [113273] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3098), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3100), 52, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [113340] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2631), 4, + sym__newline_before_do, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2633), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [113407] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2611), 4, + sym__newline_before_do, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2613), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [113474] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3052), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3054), 52, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [113541] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3048), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3050), 52, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [113608] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3044), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3046), 52, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [113675] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(647), 1, + anon_sym_do, + ACTIONS(4341), 1, + sym__newline_before_do, + STATE(3983), 1, + sym_do_block, + ACTIONS(2978), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2980), 49, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [113748] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3695), 1, + anon_sym_PIPE, + ACTIONS(3703), 1, + anon_sym_when, + ACTIONS(3705), 1, + anon_sym_COLON_COLON, + ACTIONS(3707), 1, + anon_sym_EQ_GT, + ACTIONS(3709), 1, + anon_sym_EQ, + ACTIONS(3719), 1, + anon_sym_in, + ACTIONS(3721), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3723), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3727), 1, + anon_sym_STAR_STAR, + ACTIONS(3729), 1, + anon_sym_DOT, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(3733), 1, + sym__not_in, + ACTIONS(4343), 1, + aux_sym__terminator_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3697), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3699), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3701), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3711), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3713), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3693), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3715), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3725), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4345), 6, + anon_sym_SEMI, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(3717), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [113857] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(647), 1, + anon_sym_do, + ACTIONS(4347), 1, + sym__newline_before_do, + STATE(3984), 1, + sym_do_block, + ACTIONS(2984), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2986), 49, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [113930] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2647), 4, + sym__newline_before_do, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2649), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [113997] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2651), 4, + sym__newline_before_do, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2653), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [114064] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3395), 1, + anon_sym_LBRACK2, + ACTIONS(4041), 1, + anon_sym_PIPE, + ACTIONS(4051), 1, + anon_sym_when, + ACTIONS(4053), 1, + anon_sym_COLON_COLON, + ACTIONS(4055), 1, + anon_sym_EQ_GT, + ACTIONS(4057), 1, + anon_sym_EQ, + ACTIONS(4067), 1, + anon_sym_in, + ACTIONS(4069), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4071), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4075), 1, + anon_sym_STAR_STAR, + ACTIONS(4077), 1, + anon_sym_DOT, + ACTIONS(4079), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3457), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4043), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4047), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4049), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4059), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4061), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4039), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3459), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(4063), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4073), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4065), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [114173] = 27, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(4351), 1, + anon_sym_PIPE, + ACTIONS(4355), 1, + anon_sym_COMMA, + ACTIONS(4361), 1, + anon_sym_when, + ACTIONS(4363), 1, + anon_sym_COLON_COLON, + ACTIONS(4365), 1, + anon_sym_EQ_GT, + ACTIONS(4367), 1, + anon_sym_EQ, + ACTIONS(4377), 1, + anon_sym_in, + ACTIONS(4379), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4381), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4385), 1, + anon_sym_STAR_STAR, + ACTIONS(4387), 1, + anon_sym_DOT, + ACTIONS(4389), 1, + sym__not_in, + STATE(2241), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3351), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4353), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4359), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3353), 3, + anon_sym_SEMI, + anon_sym_do, + anon_sym_end, + ACTIONS(4369), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4371), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4349), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4373), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4383), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4375), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [114286] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3695), 1, + anon_sym_PIPE, + ACTIONS(3703), 1, + anon_sym_when, + ACTIONS(3705), 1, + anon_sym_COLON_COLON, + ACTIONS(3707), 1, + anon_sym_EQ_GT, + ACTIONS(3709), 1, + anon_sym_EQ, + ACTIONS(3719), 1, + anon_sym_in, + ACTIONS(3721), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3723), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3727), 1, + anon_sym_STAR_STAR, + ACTIONS(3729), 1, + anon_sym_DOT, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(3733), 1, + sym__not_in, + ACTIONS(4391), 1, + aux_sym__terminator_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3697), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3699), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3701), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3711), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3713), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3693), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3715), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3725), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4393), 6, + anon_sym_SEMI, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(3717), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [114395] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3197), 4, + ACTIONS(2990), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3199), 51, + ACTIONS(2992), 50, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -242048,448 +262532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [93356] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3201), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3203), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [93423] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3265), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3267), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [93490] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3106), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3108), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [93557] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3269), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3271), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [93624] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3205), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3207), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [93691] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3209), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3211), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [93758] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3261), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3263), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [93825] = 4, + [114462] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, @@ -242552,18 +262595,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [93892] = 4, + [114529] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3062), 3, + ACTIONS(3048), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3064), 51, + ACTIONS(3050), 51, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, @@ -242615,4933 +262658,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [93959] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3391), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [94025] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3361), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3363), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [94091] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3357), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3359), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [94157] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3309), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3311), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [94223] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3373), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3375), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [94289] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3369), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3371), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [94355] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3305), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3307), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [94421] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3365), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3367), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [94487] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3297), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3299), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [94553] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3297), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3299), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [94619] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3401), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3403), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [94685] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3301), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3303), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [94751] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3297), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3299), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [94817] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3293), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3295), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [94883] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3377), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3379), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [94949] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3381), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3383), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [95015] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3385), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3387), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [95081] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3385), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3387), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [95147] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4145), 1, - anon_sym_COMMA, - STATE(2366), 1, - aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3110), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3112), 48, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [95217] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3381), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3383), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [95283] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4148), 1, - anon_sym_COMMA, - STATE(2366), 1, - aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3117), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3119), 48, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [95353] = 27, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3139), 1, - sym__newline_before_do, - ACTIONS(3784), 1, - anon_sym_DOT, - ACTIONS(3786), 1, - anon_sym_LBRACK2, - ACTIONS(4152), 1, - anon_sym_PIPE, - ACTIONS(4156), 1, - anon_sym_COMMA, - ACTIONS(4162), 1, - anon_sym_when, - ACTIONS(4164), 1, - anon_sym_COLON_COLON, - ACTIONS(4166), 1, - anon_sym_EQ_GT, - ACTIONS(4168), 1, - anon_sym_EQ, - ACTIONS(4178), 1, - anon_sym_in, - ACTIONS(4180), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4182), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4186), 1, - anon_sym_STAR_STAR, - ACTIONS(4188), 1, - sym__not_in, - STATE(2368), 1, - aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(3141), 2, - anon_sym_LBRACE, - anon_sym_do, - ACTIONS(4154), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4158), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4160), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4170), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4172), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4150), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4174), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4184), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4176), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [95465] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3381), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3383), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [95531] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3389), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3391), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [95597] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3393), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3395), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [95663] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3397), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3399), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [95729] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3960), 1, - anon_sym_DOT, - ACTIONS(3962), 1, - anon_sym_LBRACK2, - ACTIONS(3389), 2, - sym__newline_before_do, - sym__not_in, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3391), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_do, - [95799] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3389), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3391), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [95865] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3389), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3391), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [95931] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3189), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3191), 50, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [95997] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3289), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3291), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [96063] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3285), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3287), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [96129] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3405), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3407), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [96195] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3281), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3283), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [96261] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3409), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3411), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [96327] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3413), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3415), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [96393] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3417), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3419), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [96459] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2647), 4, - sym__newline_before_do, - sym__not_in, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(2649), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [96525] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2643), 4, - sym__newline_before_do, - sym__not_in, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(2645), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [96591] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3421), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3423), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [96657] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3425), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3427), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [96723] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3960), 1, - anon_sym_DOT, - ACTIONS(3962), 1, - anon_sym_LBRACK2, - ACTIONS(3425), 2, - sym__newline_before_do, - sym__not_in, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3427), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_do, - [96793] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3425), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3427), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [96859] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3425), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3427), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [96925] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2994), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(2996), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [96991] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3429), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3431), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [97057] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3433), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3435), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [97123] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3960), 1, - anon_sym_DOT, - ACTIONS(3962), 1, - anon_sym_LBRACK2, - ACTIONS(3433), 2, - sym__newline_before_do, - sym__not_in, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3435), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_do, - [97193] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3433), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3435), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [97259] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3558), 1, - sym__newline_before_do, - ACTIONS(3924), 1, - anon_sym_PIPE, - ACTIONS(3934), 1, - anon_sym_when, - ACTIONS(3936), 1, - anon_sym_COLON_COLON, - ACTIONS(3938), 1, - anon_sym_EQ_GT, - ACTIONS(3940), 1, - anon_sym_EQ, - ACTIONS(3950), 1, - anon_sym_in, - ACTIONS(3952), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3954), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3958), 1, - anon_sym_STAR_STAR, - ACTIONS(3960), 1, - anon_sym_DOT, - ACTIONS(3962), 1, - anon_sym_LBRACK2, - ACTIONS(3964), 1, - sym__not_in, - ACTIONS(3926), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3930), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3932), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3942), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3944), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3560), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_do, - ACTIONS(3922), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3946), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3956), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3948), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [97367] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3433), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3435), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [97433] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3437), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3439), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [97499] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3441), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3443), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [97565] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3445), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3447), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [97631] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2639), 4, - sym__newline_before_do, - sym__not_in, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(2641), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [97697] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2635), 4, - sym__newline_before_do, - sym__not_in, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(2637), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [97763] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3494), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3496), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [97829] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3449), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3451), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [97895] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3479), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3481), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [97961] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2972), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(2974), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [98027] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3453), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3455), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [98093] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3453), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3455), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [98159] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3453), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3455), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [98225] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3457), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3459), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [98291] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3457), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3459), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [98357] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3022), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3024), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [98423] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3050), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3052), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [98489] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3123), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3125), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [98555] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3127), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3129), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [98621] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3149), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3151), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [98687] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3153), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3155), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [98753] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3461), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3463), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [98819] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3465), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3467), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [98885] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(4103), 1, - anon_sym_PIPE, - ACTIONS(4113), 1, - anon_sym_when, - ACTIONS(4115), 1, - anon_sym_COLON_COLON, - ACTIONS(4117), 1, - anon_sym_EQ_GT, - ACTIONS(4119), 1, - anon_sym_EQ, - ACTIONS(4129), 1, - anon_sym_in, - ACTIONS(4131), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4133), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4137), 1, - anon_sym_STAR_STAR, - ACTIONS(4139), 1, - anon_sym_DOT, - ACTIONS(4141), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3558), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(4105), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4109), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4111), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(4121), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4123), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3560), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_do, - ACTIONS(4101), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4125), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4135), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4127), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [98993] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3161), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3163), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [99059] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(4139), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3433), 3, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3435), 49, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_do, - [99129] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3157), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3159), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [99195] = 4, + [114596] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3096), 3, + ACTIONS(3052), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3098), 50, + ACTIONS(3054), 51, anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [99261] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3680), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3143), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3145), 50, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -247591,7 +262720,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [99329] = 4, + anon_sym_do, + [114663] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3098), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3100), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [114730] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3094), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3096), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [114797] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, @@ -247602,1772 +262858,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3020), 50, + ACTIONS(3020), 51, anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [99395] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3090), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3092), 50, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [99461] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3072), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3074), 50, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [99527] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3269), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3271), 50, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [99593] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3106), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3108), 50, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [99659] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3265), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3267), 50, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [99725] = 29, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1329), 1, - anon_sym_RPAREN, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(4190), 1, - aux_sym__terminator_token1, - ACTIONS(4193), 1, - anon_sym_SEMI, - ACTIONS(4198), 1, - anon_sym_PIPE, - ACTIONS(4206), 1, - anon_sym_when, - ACTIONS(4208), 1, - anon_sym_COLON_COLON, - ACTIONS(4210), 1, - anon_sym_EQ_GT, - ACTIONS(4212), 1, - anon_sym_EQ, - ACTIONS(4222), 1, - anon_sym_in, - ACTIONS(4224), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4226), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4230), 1, - anon_sym_STAR_STAR, - ACTIONS(4232), 1, - anon_sym_DOT, - ACTIONS(4234), 1, - sym__not_in, - STATE(348), 1, - sym__terminator, - STATE(1033), 1, - aux_sym__terminator_repeat1, - STATE(4369), 1, - aux_sym_source_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4200), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4202), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4204), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(4214), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4216), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4196), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4218), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4228), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4220), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [99841] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3261), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3263), 50, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [99907] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3257), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3259), 50, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [99973] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3253), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3255), 50, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [100039] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3249), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3251), 50, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [100105] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3245), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3247), 50, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [100171] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3241), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3243), 50, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [100237] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3237), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3239), 50, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [100303] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3233), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3235), 50, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [100369] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3229), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3231), 50, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [100435] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3225), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3227), 50, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [100501] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3221), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3223), 50, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [100567] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3217), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3219), 50, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [100633] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3213), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3215), 50, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [100699] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3066), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3068), 50, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [100765] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3062), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3064), 50, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [100831] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3044), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3046), 50, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [100897] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3209), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3211), 50, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [100963] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3205), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3207), 50, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [101029] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3201), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3203), 50, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [101095] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3197), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3199), 50, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [101161] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3193), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3195), 50, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [101227] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(4139), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3425), 3, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3427), 49, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -249415,832 +262907,345 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_do, - [101297] = 5, + [114864] = 4, ACTIONS(5), 1, sym_comment, - STATE(2915), 1, - sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3000), 3, + ACTIONS(3074), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, + ACTIONS(3076), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [114931] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2990), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2992), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [114998] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2996), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2998), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [115065] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3058), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3060), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [115132] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3010), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3006), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3008), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [115201] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3004), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3000), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, ACTIONS(3002), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [101365] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3185), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3187), 50, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [101431] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3181), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3183), 50, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [101497] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3177), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3179), 50, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [101563] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3173), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3175), 50, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [101629] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3169), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3171), 50, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [101695] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3131), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3133), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [101761] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3135), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3137), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [101827] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3165), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3167), 50, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [101893] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3161), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3163), 50, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [101959] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3157), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3159), 50, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [102025] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3153), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3155), 50, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [102091] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3149), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3151), 50, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [102157] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3169), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3171), 51, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -250283,115 +263288,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [102223] = 12, + anon_sym_do, + [115270] = 27, ACTIONS(5), 1, sym_comment, - ACTIONS(3952), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3954), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3958), 1, - anon_sym_STAR_STAR, - ACTIONS(3960), 1, - anon_sym_DOT, - ACTIONS(3962), 1, - anon_sym_LBRACK2, - ACTIONS(3389), 2, + ACTIONS(3351), 1, sym__newline_before_do, + ACTIONS(4397), 1, + anon_sym_PIPE, + ACTIONS(4401), 1, + anon_sym_COMMA, + ACTIONS(4407), 1, + anon_sym_when, + ACTIONS(4409), 1, + anon_sym_COLON_COLON, + ACTIONS(4411), 1, + anon_sym_EQ_GT, + ACTIONS(4413), 1, + anon_sym_EQ, + ACTIONS(4423), 1, + anon_sym_in, + ACTIONS(4425), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4427), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4431), 1, + anon_sym_STAR_STAR, + ACTIONS(4433), 1, + anon_sym_DOT, + ACTIONS(4435), 1, + anon_sym_LBRACK2, + ACTIONS(4437), 1, sym__not_in, - ACTIONS(3926), 2, + STATE(2451), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(4399), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3930), 2, + ACTIONS(4403), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4405), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3956), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 36, + ACTIONS(3353), 3, anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, anon_sym_DASH_GT, anon_sym_do, - [102305] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__newline_before_do, - ACTIONS(3950), 1, - anon_sym_in, - ACTIONS(3952), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3954), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3958), 1, - anon_sym_STAR_STAR, - ACTIONS(3960), 1, - anon_sym_DOT, - ACTIONS(3962), 1, - anon_sym_LBRACK2, - ACTIONS(3964), 1, - sym__not_in, - ACTIONS(3926), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3930), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3956), 6, + ACTIONS(4415), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4417), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4395), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4419), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4429), 6, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - ACTIONS(3948), 9, + ACTIONS(4421), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -250401,194 +263376,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3391), 26, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DASH_GT, + [115383] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(592), 1, anon_sym_do, - [102393] = 22, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, + ACTIONS(4439), 1, sym__newline_before_do, - ACTIONS(3924), 1, - anon_sym_PIPE, - ACTIONS(3938), 1, - anon_sym_EQ_GT, - ACTIONS(3940), 1, - anon_sym_EQ, - ACTIONS(3950), 1, - anon_sym_in, - ACTIONS(3952), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3954), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3958), 1, - anon_sym_STAR_STAR, - ACTIONS(3960), 1, - anon_sym_DOT, - ACTIONS(3962), 1, - anon_sym_LBRACK2, - ACTIONS(3964), 1, + STATE(3660), 1, + sym_do_block, + ACTIONS(3012), 2, sym__not_in, - ACTIONS(3926), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3930), 2, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3942), 3, + ACTIONS(3014), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3944), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3922), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3946), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3956), 6, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - ACTIONS(3391), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_STAR_STAR, anon_sym_DASH_GT, + anon_sym_DOT, + [115456] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(592), 1, anon_sym_do, - ACTIONS(3948), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [102495] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4236), 1, - anon_sym_COMMA, - STATE(2473), 1, - aux_sym_keywords_repeat1, - ACTIONS(3479), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3481), 49, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [102565] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3958), 1, - anon_sym_STAR_STAR, - ACTIONS(3960), 1, - anon_sym_DOT, - ACTIONS(3962), 1, - anon_sym_LBRACK2, - ACTIONS(3389), 2, + ACTIONS(4441), 1, sym__newline_before_do, + STATE(3771), 1, + sym_do_block, + ACTIONS(3038), 2, sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3391), 48, + ACTIONS(3040), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -250635,32 +263505,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_DASH_GT, - anon_sym_do, - [102637] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3958), 1, anon_sym_STAR_STAR, - ACTIONS(3960), 1, + anon_sym_DASH_GT, anon_sym_DOT, - ACTIONS(3962), 1, - anon_sym_LBRACK2, - ACTIONS(3389), 2, + [115529] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(592), 1, + anon_sym_do, + ACTIONS(4443), 1, sym__newline_before_do, + STATE(3770), 1, + sym_do_block, + ACTIONS(3038), 2, sym__not_in, - ACTIONS(3926), 2, - anon_sym_SLASH, - anon_sym_STAR, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3391), 46, + ACTIONS(3040), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -250701,183 +263570,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_DASH_GT, - anon_sym_do, - [102711] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__newline_before_do, - ACTIONS(3924), 1, - anon_sym_PIPE, - ACTIONS(3934), 1, - anon_sym_when, - ACTIONS(3936), 1, - anon_sym_COLON_COLON, - ACTIONS(3938), 1, - anon_sym_EQ_GT, - ACTIONS(3940), 1, - anon_sym_EQ, - ACTIONS(3950), 1, - anon_sym_in, - ACTIONS(3952), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3954), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3958), 1, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3960), 1, - anon_sym_DOT, - ACTIONS(3962), 1, - anon_sym_LBRACK2, - ACTIONS(3964), 1, - sym__not_in, - ACTIONS(3926), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3930), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3942), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3944), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3922), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3946), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3391), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, anon_sym_DASH_GT, - anon_sym_do, - ACTIONS(3956), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3948), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [102817] = 24, + anon_sym_DOT, + [115602] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3389), 1, - sym__newline_before_do, - ACTIONS(3924), 1, - anon_sym_PIPE, - ACTIONS(3934), 1, - anon_sym_when, - ACTIONS(3936), 1, - anon_sym_COLON_COLON, - ACTIONS(3938), 1, - anon_sym_EQ_GT, - ACTIONS(3940), 1, - anon_sym_EQ, - ACTIONS(3950), 1, - anon_sym_in, - ACTIONS(3952), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3954), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3958), 1, - anon_sym_STAR_STAR, - ACTIONS(3960), 1, - anon_sym_DOT, - ACTIONS(3962), 1, - anon_sym_LBRACK2, - ACTIONS(3964), 1, - sym__not_in, - ACTIONS(3926), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3930), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3942), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3944), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3922), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3946), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3391), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_DASH_GT, - anon_sym_do, - ACTIONS(3956), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3948), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [102923] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3479), 2, + ACTIONS(3090), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3481), 51, + ACTIONS(3092), 52, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -250929,714 +263637,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [102989] = 23, + [115669] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3389), 1, - sym__newline_before_do, - ACTIONS(3924), 1, - anon_sym_PIPE, - ACTIONS(3936), 1, - anon_sym_COLON_COLON, - ACTIONS(3938), 1, - anon_sym_EQ_GT, - ACTIONS(3940), 1, - anon_sym_EQ, - ACTIONS(3950), 1, - anon_sym_in, - ACTIONS(3952), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3954), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3958), 1, - anon_sym_STAR_STAR, - ACTIONS(3960), 1, - anon_sym_DOT, - ACTIONS(3962), 1, - anon_sym_LBRACK2, - ACTIONS(3964), 1, - sym__not_in, - ACTIONS(3926), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3930), 2, - anon_sym_PLUS, - anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3942), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3944), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3922), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3946), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3956), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_DASH_GT, - anon_sym_do, - ACTIONS(3948), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [103093] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, + ACTIONS(3078), 3, sym__newline_before_do, - ACTIONS(3938), 1, - anon_sym_EQ_GT, - ACTIONS(3940), 1, - anon_sym_EQ, - ACTIONS(3950), 1, - anon_sym_in, - ACTIONS(3952), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3954), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3958), 1, - anon_sym_STAR_STAR, - ACTIONS(3960), 1, - anon_sym_DOT, - ACTIONS(3962), 1, - anon_sym_LBRACK2, - ACTIONS(3964), 1, sym__not_in, - ACTIONS(3926), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3930), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3942), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3944), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3922), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3946), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3956), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 9, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_do, - ACTIONS(3948), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [103193] = 20, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__newline_before_do, - ACTIONS(3940), 1, - anon_sym_EQ, - ACTIONS(3950), 1, - anon_sym_in, - ACTIONS(3952), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3954), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3958), 1, - anon_sym_STAR_STAR, - ACTIONS(3960), 1, - anon_sym_DOT, - ACTIONS(3962), 1, anon_sym_LBRACK2, - ACTIONS(3964), 1, - sym__not_in, - ACTIONS(3926), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3930), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3942), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3944), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3922), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3946), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3956), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3948), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 10, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - anon_sym_do, - [103291] = 18, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__newline_before_do, - ACTIONS(3950), 1, - anon_sym_in, - ACTIONS(3952), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3954), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3958), 1, - anon_sym_STAR_STAR, - ACTIONS(3960), 1, - anon_sym_DOT, - ACTIONS(3962), 1, - anon_sym_LBRACK2, - ACTIONS(3964), 1, - sym__not_in, - ACTIONS(3926), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3930), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3944), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3922), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3946), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3956), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3948), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 14, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_DASH_GT, - anon_sym_do, - [103385] = 17, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__newline_before_do, - ACTIONS(3950), 1, - anon_sym_in, - ACTIONS(3952), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3954), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3958), 1, - anon_sym_STAR_STAR, - ACTIONS(3960), 1, - anon_sym_DOT, - ACTIONS(3962), 1, - anon_sym_LBRACK2, - ACTIONS(3964), 1, - sym__not_in, - ACTIONS(3926), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3930), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3922), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3946), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3956), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3948), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 17, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_DASH_GT, - anon_sym_do, - [103477] = 16, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__newline_before_do, - ACTIONS(3950), 1, - anon_sym_in, - ACTIONS(3952), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3954), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3958), 1, - anon_sym_STAR_STAR, - ACTIONS(3960), 1, - anon_sym_DOT, - ACTIONS(3962), 1, - anon_sym_LBRACK2, - ACTIONS(3964), 1, - sym__not_in, - ACTIONS(3926), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3930), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3922), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3956), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3948), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 22, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_DASH_GT, - anon_sym_do, - [103567] = 14, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__newline_before_do, - ACTIONS(3950), 1, - anon_sym_in, - ACTIONS(3952), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3954), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3958), 1, - anon_sym_STAR_STAR, - ACTIONS(3960), 1, - anon_sym_DOT, - ACTIONS(3962), 1, - anon_sym_LBRACK2, - ACTIONS(3964), 1, - sym__not_in, - ACTIONS(3926), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3930), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3956), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 35, + ACTIONS(3080), 51, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_DASH_GT, - anon_sym_do, - [103653] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3954), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3958), 1, - anon_sym_STAR_STAR, - ACTIONS(3960), 1, - anon_sym_DOT, - ACTIONS(3962), 1, - anon_sym_LBRACK2, - ACTIONS(3389), 2, - sym__newline_before_do, - sym__not_in, - ACTIONS(3926), 2, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3930), 2, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3956), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 37, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_DASH_GT, - anon_sym_do, - [103733] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3954), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3958), 1, - anon_sym_STAR_STAR, - ACTIONS(3960), 1, - anon_sym_DOT, - ACTIONS(3962), 1, - anon_sym_LBRACK2, - ACTIONS(3389), 2, - sym__newline_before_do, - sym__not_in, - ACTIONS(3926), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3930), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3956), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 37, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_DASH_GT, - anon_sym_do, - [103813] = 10, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3958), 1, - anon_sym_STAR_STAR, - ACTIONS(3960), 1, - anon_sym_DOT, - ACTIONS(3962), 1, - anon_sym_LBRACK2, - ACTIONS(3389), 2, - sym__newline_before_do, - sym__not_in, - ACTIONS(3926), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3930), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3956), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 38, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -251668,155 +263689,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_do, - [103891] = 6, + [115736] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3538), 1, + ACTIONS(592), 1, + anon_sym_do, + ACTIONS(4445), 1, + sym__newline_before_do, + STATE(3767), 1, + sym_do_block, + ACTIONS(3038), 2, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(4139), 1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3040), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, + [115809] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(592), 1, + anon_sym_do, + ACTIONS(4447), 1, + sym__newline_before_do, + STATE(3768), 1, + sym_do_block, + ACTIONS(3064), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3066), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [115882] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3389), 3, + ACTIONS(2996), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3391), 49, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_do, - [103961] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3538), 1, anon_sym_LBRACK2, - ACTIONS(4074), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3433), 3, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3435), 49, + ACTIONS(2998), 50, anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_do, - anon_sym_end, - [104031] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3028), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3030), 50, anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -251860,153 +263895,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [104097] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(4074), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3425), 3, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3427), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_do, - anon_sym_end, - [104167] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(4074), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 3, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3391), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_do, - anon_sym_end, - [104237] = 4, + [115949] = 5, ACTIONS(5), 1, sym_comment, + STATE(2752), 1, + sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3014), 3, + ACTIONS(3012), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3016), 50, + ACTIONS(3014), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [116018] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3058), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3060), 50, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -252050,443 +264022,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [104303] = 4, + [116085] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3100), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3102), 50, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, + ACTIONS(4449), 1, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [104369] = 29, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(3620), 1, - anon_sym_RPAREN, - ACTIONS(4198), 1, - anon_sym_PIPE, - ACTIONS(4206), 1, - anon_sym_when, - ACTIONS(4208), 1, - anon_sym_COLON_COLON, - ACTIONS(4210), 1, - anon_sym_EQ_GT, - ACTIONS(4212), 1, - anon_sym_EQ, - ACTIONS(4222), 1, - anon_sym_in, - ACTIONS(4224), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4226), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4230), 1, - anon_sym_STAR_STAR, - ACTIONS(4232), 1, - anon_sym_DOT, - ACTIONS(4234), 1, - sym__not_in, - ACTIONS(4239), 1, - aux_sym__terminator_token1, - ACTIONS(4242), 1, - anon_sym_SEMI, - STATE(349), 1, - sym__terminator, - STATE(1033), 1, - aux_sym__terminator_repeat1, - STATE(4312), 1, - aux_sym_source_repeat1, + STATE(2533), 1, + aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4200), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4202), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4204), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(4214), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4216), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4196), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4218), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4228), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4220), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [104485] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2647), 3, + ACTIONS(3506), 4, sym__newline_before_do, sym__not_in, - anon_sym_LBRACK2, - ACTIONS(2649), 50, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [104551] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2643), 3, - sym__newline_before_do, - sym__not_in, anon_sym_LBRACK2, - ACTIONS(2645), 50, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [104617] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4245), 1, - aux_sym_sigil_token3, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3143), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3145), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [104685] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(4103), 1, - anon_sym_PIPE, - ACTIONS(4113), 1, - anon_sym_when, - ACTIONS(4115), 1, - anon_sym_COLON_COLON, - ACTIONS(4117), 1, - anon_sym_EQ_GT, - ACTIONS(4119), 1, - anon_sym_EQ, - ACTIONS(4129), 1, - anon_sym_in, - ACTIONS(4131), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4133), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4137), 1, - anon_sym_STAR_STAR, - ACTIONS(4139), 1, - anon_sym_DOT, - ACTIONS(4141), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3542), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(4105), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4109), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4111), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(4121), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4123), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3544), 4, + ACTIONS(3508), 49, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_do, - ACTIONS(4101), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4125), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4135), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4127), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [104793] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4247), 1, - anon_sym_COMMA, - STATE(2473), 1, - aux_sym_keywords_repeat1, - ACTIONS(3475), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3477), 49, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -252533,88 +264086,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [104863] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3076), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3078), 50, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, anon_sym_do, - [104929] = 5, + [116156] = 5, ACTIONS(5), 1, sym_comment, - STATE(2909), 1, + STATE(2760), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3000), 3, + ACTIONS(3038), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3002), 49, + ACTIONS(3040), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -252656,28 +264148,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [104997] = 5, + [116225] = 5, ACTIONS(5), 1, sym_comment, - STATE(2911), 1, + STATE(2755), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2994), 3, + ACTIONS(3038), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(2996), 49, + ACTIONS(3040), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -252719,176 +264212,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [105065] = 6, + [116294] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(4247), 1, - anon_sym_COMMA, - STATE(2501), 1, - aux_sym_keywords_repeat1, - ACTIONS(3469), 2, - sym__not_in, + ACTIONS(3395), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3471), 49, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4041), 1, anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(4051), 1, anon_sym_when, + ACTIONS(4053), 1, anon_sym_COLON_COLON, + ACTIONS(4055), 1, anon_sym_EQ_GT, + ACTIONS(4057), 1, anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, + ACTIONS(4067), 1, anon_sym_in, + ACTIONS(4069), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4071), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(4075), 1, anon_sym_STAR_STAR, + ACTIONS(4077), 1, anon_sym_DOT, - [105135] = 5, - ACTIONS(5), 1, - sym_comment, - STATE(2917), 1, - sym_do_block, - ACTIONS(3), 3, + ACTIONS(4079), 1, + sym__not_in, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3000), 3, + ACTIONS(3544), 2, sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3002), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + aux_sym__terminator_token1, + ACTIONS(4043), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_STAR, + ACTIONS(4047), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4049), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(4059), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4061), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + ACTIONS(4039), 4, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + ACTIONS(3546), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_do, - [105203] = 5, - ACTIONS(5), 1, - sym_comment, - STATE(2923), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3008), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3010), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, + ACTIONS(4063), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4073), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4065), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -252898,702 +264299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [105271] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3173), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3175), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [105337] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3177), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3179), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [105403] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3181), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3183), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [105469] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3185), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3187), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [105535] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3189), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3191), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [105601] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3193), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3195), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [105667] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3197), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3199), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [105733] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3201), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3203), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [105799] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3205), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3207), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [105865] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3209), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3211), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [105931] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3165), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3167), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [105997] = 4, + [116403] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -253655,3112 +264361,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [106063] = 4, + [116469] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3213), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3215), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [106129] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4249), 1, - anon_sym_COMMA, - STATE(2521), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3479), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3481), 49, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [106199] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3221), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3223), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [106265] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4252), 1, - anon_sym_COMMA, - STATE(2521), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3475), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3477), 49, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [106335] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3225), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3227), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [106401] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3229), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3231), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [106467] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3233), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3235), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [106533] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3237), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3239), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [106599] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3241), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3243), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [106665] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(4103), 1, - anon_sym_PIPE, - ACTIONS(4113), 1, - anon_sym_when, - ACTIONS(4115), 1, - anon_sym_COLON_COLON, - ACTIONS(4117), 1, - anon_sym_EQ_GT, - ACTIONS(4119), 1, - anon_sym_EQ, - ACTIONS(4129), 1, - anon_sym_in, - ACTIONS(4131), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4133), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4137), 1, - anon_sym_STAR_STAR, - ACTIONS(4139), 1, - anon_sym_DOT, - ACTIONS(4141), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3110), 2, + ACTIONS(3098), 3, sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(4105), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4109), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4111), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(4121), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4123), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3112), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_do, - ACTIONS(4101), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4125), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4135), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4127), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [106773] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3249), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3251), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [106839] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3253), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3255), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [106905] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3257), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3259), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [106971] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3261), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3263), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [107037] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3265), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3267), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [107103] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3106), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3108), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [107169] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3269), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3271), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [107235] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4252), 1, - anon_sym_COMMA, - STATE(2523), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3469), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3471), 49, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [107305] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3465), 2, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3467), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [107371] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3461), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3463), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [107437] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3050), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3052), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [107503] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3022), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3024), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [107569] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3457), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3459), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [107635] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3457), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3459), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [107701] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3453), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3455), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [107767] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3453), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3455), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [107833] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3453), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3455), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [107899] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2972), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2974), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [107965] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3449), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3451), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [108031] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3217), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3219), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [108097] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3778), 1, + ACTIONS(3100), 50, anon_sym_LPAREN, - STATE(2138), 1, - sym__call_arguments_with_parentheses, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2972), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2974), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [108167] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3123), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3125), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [108233] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3127), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3129), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [108299] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3542), 1, - sym__newline_before_do, - ACTIONS(3924), 1, - anon_sym_PIPE, - ACTIONS(3934), 1, - anon_sym_when, - ACTIONS(3936), 1, - anon_sym_COLON_COLON, - ACTIONS(3938), 1, - anon_sym_EQ_GT, - ACTIONS(3940), 1, - anon_sym_EQ, - ACTIONS(3950), 1, - anon_sym_in, - ACTIONS(3952), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3954), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3958), 1, - anon_sym_STAR_STAR, - ACTIONS(3960), 1, - anon_sym_DOT, - ACTIONS(3962), 1, - anon_sym_LBRACK2, - ACTIONS(3964), 1, - sym__not_in, - ACTIONS(3926), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3930), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3932), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3942), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3944), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3544), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_do, - ACTIONS(3922), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3946), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3956), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3948), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [108407] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3445), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3447), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [108473] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3441), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3443), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [108539] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3437), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3439), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [108605] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3433), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3435), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [108671] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3433), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3435), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [108737] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3433), 1, - sym__not_in, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3435), 50, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - [108807] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3433), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3435), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [108873] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3429), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3431), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [108939] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2994), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2996), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [109005] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3425), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3427), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [109071] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3425), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3427), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [109137] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3425), 1, - sym__not_in, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3427), 50, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - [109207] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3425), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3427), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [109273] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3421), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3423), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [109339] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3131), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3133), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [109405] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3026), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3022), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3024), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -256810,87 +264423,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [109473] = 5, + [116535] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3026), 1, - aux_sym_quoted_keyword_token1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3050), 3, + ACTIONS(3265), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3052), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [109541] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3123), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3125), 51, - anon_sym_SEMI, + ACTIONS(3267), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -256935,24 +264484,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [109607] = 4, + anon_sym_do, + [116601] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3127), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3191), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3129), 51, - anon_sym_SEMI, + ACTIONS(3193), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -256997,47 +264546,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [109673] = 4, + anon_sym_do, + [116667] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3135), 2, - sym__not_in, + ACTIONS(3551), 1, + sym__newline_before_do, + ACTIONS(4397), 1, + anon_sym_PIPE, + ACTIONS(4407), 1, + anon_sym_when, + ACTIONS(4409), 1, + anon_sym_COLON_COLON, + ACTIONS(4411), 1, + anon_sym_EQ_GT, + ACTIONS(4413), 1, + anon_sym_EQ, + ACTIONS(4423), 1, + anon_sym_in, + ACTIONS(4425), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4427), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4431), 1, + anon_sym_STAR_STAR, + ACTIONS(4433), 1, + anon_sym_DOT, + ACTIONS(4435), 1, anon_sym_LBRACK2, + ACTIONS(4437), 1, + sym__not_in, + ACTIONS(4399), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4403), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4405), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3137), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(4415), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4417), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3553), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(4395), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4419), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4429), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4421), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -257047,404 +264630,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [109739] = 4, + [116775] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3417), 2, - sym__not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3419), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [109805] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3413), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3415), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [109871] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3409), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3411), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [109937] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3405), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3407), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [110003] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3494), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3496), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [110069] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3391), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [110135] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3139), 5, + ACTIONS(3191), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3141), 49, - anon_sym_SEMI, + ACTIONS(3193), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -257491,86 +264689,403 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [116841] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4433), 1, + anon_sym_DOT, + ACTIONS(4435), 1, + anon_sym_LBRACK2, + ACTIONS(3191), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3193), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_do, + [116911] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3191), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3193), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [116977] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3249), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3251), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [117043] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4451), 1, + anon_sym_COMMA, + STATE(2677), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3134), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3136), 48, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [110201] = 29, + [117113] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4454), 1, + anon_sym_COMMA, + STATE(2677), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3149), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3151), 48, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [117183] = 29, ACTIONS(5), 1, sym_comment, ACTIONS(9), 1, aux_sym__terminator_token1, - ACTIONS(1659), 1, + ACTIONS(1729), 1, ts_builtin_sym_end, - ACTIONS(4258), 1, + ACTIONS(4456), 1, anon_sym_SEMI, - ACTIONS(4262), 1, + ACTIONS(4460), 1, anon_sym_PIPE, - ACTIONS(4270), 1, + ACTIONS(4468), 1, anon_sym_when, - ACTIONS(4272), 1, + ACTIONS(4470), 1, anon_sym_COLON_COLON, - ACTIONS(4274), 1, + ACTIONS(4472), 1, anon_sym_EQ_GT, - ACTIONS(4276), 1, + ACTIONS(4474), 1, anon_sym_EQ, - ACTIONS(4286), 1, + ACTIONS(4484), 1, anon_sym_in, - ACTIONS(4288), 1, + ACTIONS(4486), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4290), 1, + ACTIONS(4488), 1, anon_sym_SLASH_SLASH, - ACTIONS(4294), 1, + ACTIONS(4492), 1, anon_sym_STAR_STAR, - ACTIONS(4296), 1, + ACTIONS(4494), 1, anon_sym_DOT, - ACTIONS(4298), 1, + ACTIONS(4496), 1, anon_sym_LBRACK2, - ACTIONS(4300), 1, + ACTIONS(4498), 1, sym__not_in, - STATE(431), 1, + STATE(360), 1, sym__terminator, - STATE(1030), 1, + STATE(1029), 1, aux_sym__terminator_repeat1, - STATE(4423), 1, + STATE(5013), 1, aux_sym_source_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4264), 2, + ACTIONS(4462), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4266), 2, + ACTIONS(4464), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4268), 2, + ACTIONS(4466), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(4278), 3, + ACTIONS(4476), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4280), 3, + ACTIONS(4478), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4260), 4, + ACTIONS(4458), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4282), 5, + ACTIONS(4480), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4292), 6, + ACTIONS(4490), 6, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - ACTIONS(4284), 9, + ACTIONS(4482), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -257580,12 +265095,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [110317] = 6, + [117299] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3778), 1, + ACTIONS(4454), 1, + anon_sym_COMMA, + STATE(2678), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3219), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3221), 48, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [117369] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3995), 1, anon_sym_LPAREN, - STATE(2131), 1, + STATE(2226), 1, sym__call_arguments_with_parentheses, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -257644,12 +265223,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [110387] = 6, + [117439] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3778), 1, + ACTIONS(3995), 1, anon_sym_LPAREN, - STATE(2042), 1, + STATE(2229), 1, sym__call_arguments_with_parentheses, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -257708,21 +265287,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [110457] = 4, + [117509] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3381), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3995), 1, + anon_sym_LPAREN, + STATE(2235), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(2972), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3383), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(2974), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -257770,24 +265351,212 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [110523] = 4, + [117579] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3080), 3, + ACTIONS(3341), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3082), 50, - anon_sym_LPAREN, + ACTIONS(3343), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [117645] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3187), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3189), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [117711] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3183), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3185), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [117777] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4500), 1, + anon_sym_COMMA, + STATE(3059), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3149), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3151), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -257832,618 +265601,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [110589] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3110), 1, - sym__newline_before_do, - ACTIONS(3924), 1, - anon_sym_PIPE, - ACTIONS(3934), 1, - anon_sym_when, - ACTIONS(3936), 1, - anon_sym_COLON_COLON, - ACTIONS(3938), 1, - anon_sym_EQ_GT, - ACTIONS(3940), 1, - anon_sym_EQ, - ACTIONS(3950), 1, - anon_sym_in, - ACTIONS(3952), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3954), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3958), 1, - anon_sym_STAR_STAR, - ACTIONS(3960), 1, - anon_sym_DOT, - ACTIONS(3962), 1, - anon_sym_LBRACK2, - ACTIONS(3964), 1, - sym__not_in, - ACTIONS(3926), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3930), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3932), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3942), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3944), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3112), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_do, - ACTIONS(3922), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3946), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3956), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3948), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [110697] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3058), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3060), 50, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [110763] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3391), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [110829] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3401), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3403), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [110895] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__not_in, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3391), 50, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - [110965] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3397), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3399), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [111031] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3393), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3395), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [111097] = 17, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(4064), 1, - anon_sym_in, - ACTIONS(4066), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4068), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4072), 1, - anon_sym_STAR_STAR, - ACTIONS(4074), 1, - anon_sym_DOT, - ACTIONS(4076), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(4040), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4044), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4036), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4060), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4070), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4062), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 17, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_do, - anon_sym_end, - [111189] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3381), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3383), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [111255] = 4, + [117847] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3131), 3, + ACTIONS(3195), 5, + sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3133), 51, + ACTIONS(3197), 49, anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [117913] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3155), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3157), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -258488,24 +265724,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [111321] = 4, + anon_sym_do, + [117979] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3135), 3, + ACTIONS(3323), 5, + sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3137), 51, + ACTIONS(3325), 49, anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [118045] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3183), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3185), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [118111] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3064), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3066), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -258550,21 +265910,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [111387] = 4, + anon_sym_do, + [118177] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3381), 2, - sym__not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3383), 51, + ACTIONS(3118), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3120), 50, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -258611,22 +265970,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [111453] = 4, + anon_sym_do, + [118243] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3385), 2, - sym__not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3387), 51, + ACTIONS(3118), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3120), 50, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -258673,22 +266032,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [111519] = 4, + anon_sym_do, + [118309] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3385), 2, - sym__not_in, + ACTIONS(4433), 1, + anon_sym_DOT, + ACTIONS(4435), 1, anon_sym_LBRACK2, + ACTIONS(3118), 2, + sym__newline_before_do, + sym__not_in, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3387), 51, + ACTIONS(3120), 49, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -258735,238 +266097,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - [111585] = 14, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4015), 1, - anon_sym_in, - ACTIONS(4017), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4019), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4023), 1, - anon_sym_STAR_STAR, - ACTIONS(4025), 1, - anon_sym_DOT, - ACTIONS(4027), 1, - anon_sym_LBRACK2, - ACTIONS(4029), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3991), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3995), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 3, - sym__newline_before_do, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(4021), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 34, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, + anon_sym_DASH_GT, anon_sym_do, - [111671] = 4, + [118379] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3377), 2, - sym__not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3379), 51, + ACTIONS(3118), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3120), 50, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [111737] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3989), 1, - anon_sym_PIPE, - ACTIONS(3999), 1, - anon_sym_when, - ACTIONS(4001), 1, - anon_sym_COLON_COLON, - ACTIONS(4003), 1, - anon_sym_EQ_GT, - ACTIONS(4005), 1, - anon_sym_EQ, - ACTIONS(4015), 1, - anon_sym_in, - ACTIONS(4017), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4019), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4023), 1, - anon_sym_STAR_STAR, - ACTIONS(4025), 1, - anon_sym_DOT, - ACTIONS(4027), 1, - anon_sym_LBRACK2, - ACTIONS(4029), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3991), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3995), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3997), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3110), 3, - sym__newline_before_do, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(3112), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_do, - ACTIONS(4007), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4009), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3987), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4011), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4021), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4013), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [111845] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3281), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3283), 49, - anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -259013,22 +266158,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [111911] = 4, + [118445] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3285), 5, + aux_sym__terminator_token1, + ACTIONS(3534), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3287), 49, - anon_sym_SEMI, + ACTIONS(3536), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -259075,71 +266220,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [111977] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3289), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3291), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [112043] = 4, + [118511] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -259201,2473 +266285,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [112109] = 4, + [118577] = 29, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3297), 5, - sym__newline_before_do, - sym__not_in, + ACTIONS(9), 1, + aux_sym__terminator_token1, + ACTIONS(1561), 1, ts_builtin_sym_end, - aux_sym__terminator_token1, + ACTIONS(4460), 1, + anon_sym_PIPE, + ACTIONS(4468), 1, + anon_sym_when, + ACTIONS(4470), 1, + anon_sym_COLON_COLON, + ACTIONS(4472), 1, + anon_sym_EQ_GT, + ACTIONS(4474), 1, + anon_sym_EQ, + ACTIONS(4484), 1, + anon_sym_in, + ACTIONS(4486), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4488), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4492), 1, + anon_sym_STAR_STAR, + ACTIONS(4494), 1, + anon_sym_DOT, + ACTIONS(4496), 1, anon_sym_LBRACK2, - ACTIONS(3299), 49, + ACTIONS(4498), 1, + sym__not_in, + ACTIONS(4502), 1, anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [112175] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3301), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3303), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [112241] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3297), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3299), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [112307] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3297), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3299), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [112373] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3305), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3307), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [112439] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3309), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3311), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [112505] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3357), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3359), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [112571] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3361), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3363), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [112637] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3365), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3367), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [112703] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3369), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3371), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [112769] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3373), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3375), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [112835] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3479), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3481), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [112901] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3377), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3379), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [112967] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3381), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3383), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [113033] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3385), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3387), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [113099] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3385), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3387), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [113165] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3381), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3383), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [113231] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3381), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3383), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [113297] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3391), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [113363] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3393), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3395), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [113429] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3373), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3375), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [113495] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3397), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3399), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [113561] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_DOT, - ACTIONS(4027), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 4, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(3391), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_do, - [113631] = 10, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4023), 1, - anon_sym_STAR_STAR, - ACTIONS(4025), 1, - anon_sym_DOT, - ACTIONS(4027), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3991), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3995), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 4, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(4021), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 37, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_do, - [113709] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4019), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4023), 1, - anon_sym_STAR_STAR, - ACTIONS(4025), 1, - anon_sym_DOT, - ACTIONS(4027), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3991), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3995), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 4, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(4021), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 36, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_do, - [113789] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4019), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4023), 1, - anon_sym_STAR_STAR, - ACTIONS(4025), 1, - anon_sym_DOT, - ACTIONS(4027), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3991), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3995), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 4, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(4021), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 36, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_do, - [113869] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4023), 1, - anon_sym_STAR_STAR, - ACTIONS(4025), 1, - anon_sym_DOT, - ACTIONS(4027), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3991), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3389), 4, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(3391), 45, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_do, - [113943] = 16, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4015), 1, - anon_sym_in, - ACTIONS(4017), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4019), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4023), 1, - anon_sym_STAR_STAR, - ACTIONS(4025), 1, - anon_sym_DOT, - ACTIONS(4027), 1, - anon_sym_LBRACK2, - ACTIONS(4029), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3991), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3995), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 3, - sym__newline_before_do, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(3987), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4021), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4013), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 21, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_do, - [114033] = 17, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4015), 1, - anon_sym_in, - ACTIONS(4017), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4019), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4023), 1, - anon_sym_STAR_STAR, - ACTIONS(4025), 1, - anon_sym_DOT, - ACTIONS(4027), 1, - anon_sym_LBRACK2, - ACTIONS(4029), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3991), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3995), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 3, - sym__newline_before_do, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(3987), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4011), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4021), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4013), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 16, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_do, - [114125] = 18, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4015), 1, - anon_sym_in, - ACTIONS(4017), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4019), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4023), 1, - anon_sym_STAR_STAR, - ACTIONS(4025), 1, - anon_sym_DOT, - ACTIONS(4027), 1, - anon_sym_LBRACK2, - ACTIONS(4029), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3991), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3995), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 3, - sym__newline_before_do, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(4009), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3987), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4011), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4021), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4013), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 13, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_do, - [114219] = 20, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4005), 1, - anon_sym_EQ, - ACTIONS(4015), 1, - anon_sym_in, - ACTIONS(4017), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4019), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4023), 1, - anon_sym_STAR_STAR, - ACTIONS(4025), 1, - anon_sym_DOT, - ACTIONS(4027), 1, - anon_sym_LBRACK2, - ACTIONS(4029), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3991), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3995), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 3, - sym__newline_before_do, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(4007), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4009), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3987), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4011), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4021), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 9, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_do, - ACTIONS(4013), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [114317] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4003), 1, - anon_sym_EQ_GT, - ACTIONS(4005), 1, - anon_sym_EQ, - ACTIONS(4015), 1, - anon_sym_in, - ACTIONS(4017), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4019), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4023), 1, - anon_sym_STAR_STAR, - ACTIONS(4025), 1, - anon_sym_DOT, - ACTIONS(4027), 1, - anon_sym_LBRACK2, - ACTIONS(4029), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3991), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3995), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 3, - sym__newline_before_do, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(4007), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4009), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3987), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4011), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4021), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 8, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_do, - ACTIONS(4013), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [114417] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3989), 1, - anon_sym_PIPE, - ACTIONS(4001), 1, - anon_sym_COLON_COLON, - ACTIONS(4003), 1, - anon_sym_EQ_GT, - ACTIONS(4005), 1, - anon_sym_EQ, - ACTIONS(4015), 1, - anon_sym_in, - ACTIONS(4017), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4019), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4023), 1, - anon_sym_STAR_STAR, - ACTIONS(4025), 1, - anon_sym_DOT, - ACTIONS(4027), 1, - anon_sym_LBRACK2, - ACTIONS(4029), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3991), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3995), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 3, - sym__newline_before_do, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(4007), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4009), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3987), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4011), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3391), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_do, - ACTIONS(4021), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4013), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [114521] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3391), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [114587] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3989), 1, - anon_sym_PIPE, - ACTIONS(3999), 1, - anon_sym_when, - ACTIONS(4001), 1, - anon_sym_COLON_COLON, - ACTIONS(4003), 1, - anon_sym_EQ_GT, - ACTIONS(4005), 1, - anon_sym_EQ, - ACTIONS(4015), 1, - anon_sym_in, - ACTIONS(4017), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4019), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4023), 1, - anon_sym_STAR_STAR, - ACTIONS(4025), 1, - anon_sym_DOT, - ACTIONS(4027), 1, - anon_sym_LBRACK2, - ACTIONS(4029), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3991), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3995), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 3, - sym__newline_before_do, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(4007), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4009), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3987), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3391), 5, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_do, - ACTIONS(4011), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4021), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4013), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [114693] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3989), 1, - anon_sym_PIPE, - ACTIONS(3999), 1, - anon_sym_when, - ACTIONS(4001), 1, - anon_sym_COLON_COLON, - ACTIONS(4003), 1, - anon_sym_EQ_GT, - ACTIONS(4005), 1, - anon_sym_EQ, - ACTIONS(4015), 1, - anon_sym_in, - ACTIONS(4017), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4019), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4023), 1, - anon_sym_STAR_STAR, - ACTIONS(4025), 1, - anon_sym_DOT, - ACTIONS(4027), 1, - anon_sym_LBRACK2, - ACTIONS(4029), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3991), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3995), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 3, - sym__newline_before_do, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(4007), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4009), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3987), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3391), 5, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_do, - ACTIONS(4011), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4021), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4013), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [114799] = 29, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(3620), 1, - anon_sym_end, - ACTIONS(4302), 1, - aux_sym__terminator_token1, - ACTIONS(4305), 1, - anon_sym_SEMI, - ACTIONS(4310), 1, - anon_sym_PIPE, - ACTIONS(4318), 1, - anon_sym_when, - ACTIONS(4320), 1, - anon_sym_COLON_COLON, - ACTIONS(4322), 1, - anon_sym_EQ_GT, - ACTIONS(4324), 1, - anon_sym_EQ, - ACTIONS(4334), 1, - anon_sym_in, - ACTIONS(4336), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4338), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4342), 1, - anon_sym_STAR_STAR, - ACTIONS(4344), 1, - anon_sym_DOT, - ACTIONS(4346), 1, - sym__not_in, - STATE(350), 1, + STATE(407), 1, sym__terminator, - STATE(1031), 1, + STATE(1029), 1, aux_sym__terminator_repeat1, - STATE(4379), 1, + STATE(4982), 1, aux_sym_source_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4312), 2, + ACTIONS(4462), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4314), 2, + ACTIONS(4464), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4316), 2, + ACTIONS(4466), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(4326), 3, + ACTIONS(4476), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4328), 3, + ACTIONS(4478), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4308), 4, + ACTIONS(4458), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4330), 5, + ACTIONS(4480), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4340), 6, + ACTIONS(4490), 6, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - ACTIONS(4332), 9, + ACTIONS(4482), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -261677,90 +266372,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [114915] = 7, + [118693] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4023), 1, - anon_sym_STAR_STAR, - ACTIONS(4025), 1, - anon_sym_DOT, - ACTIONS(4027), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3389), 4, + aux_sym__terminator_token1, + ACTIONS(2611), 4, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(3391), 47, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_do, - [114987] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3391), 49, - anon_sym_SEMI, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2613), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -261804,248 +266434,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [115053] = 22, + [118759] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3989), 1, - anon_sym_PIPE, - ACTIONS(4003), 1, - anon_sym_EQ_GT, - ACTIONS(4005), 1, - anon_sym_EQ, - ACTIONS(4015), 1, - anon_sym_in, - ACTIONS(4017), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4019), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4023), 1, - anon_sym_STAR_STAR, - ACTIONS(4025), 1, - anon_sym_DOT, - ACTIONS(4027), 1, - anon_sym_LBRACK2, - ACTIONS(4029), 1, - sym__not_in, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3991), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3995), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 3, - sym__newline_before_do, - ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(4007), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4009), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3987), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4011), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4021), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_do, - ACTIONS(4013), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [115155] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4015), 1, - anon_sym_in, - ACTIONS(4017), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4019), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4023), 1, - anon_sym_STAR_STAR, - ACTIONS(4025), 1, - anon_sym_DOT, - ACTIONS(4027), 1, - anon_sym_LBRACK2, - ACTIONS(4029), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3991), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3995), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 3, - sym__newline_before_do, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(4021), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4013), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 25, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_do, - [115243] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4017), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4019), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4023), 1, - anon_sym_STAR_STAR, - ACTIONS(4025), 1, - anon_sym_DOT, - ACTIONS(4027), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3991), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3995), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 4, + ACTIONS(2631), 4, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(4021), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 35, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_do, - [115325] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3401), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3403), 49, - anon_sym_SEMI, + ACTIONS(2633), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -262089,459 +266496,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [115391] = 4, + [118825] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3405), 5, + aux_sym__terminator_token1, + ACTIONS(2651), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3407), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [115457] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3409), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3411), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [115523] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3413), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3415), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [115589] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3277), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3279), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [115655] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3417), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3419), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [115721] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3135), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3137), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [115787] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3131), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3133), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [115853] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2635), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2637), 51, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2653), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [118891] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3351), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3353), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [118957] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3449), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3451), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -262585,24 +266681,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [115919] = 4, + anon_sym_do, + [119023] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2639), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3435), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(2641), 51, - anon_sym_SEMI, + ACTIONS(3437), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -262647,1393 +266743,1166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [115985] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3421), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3423), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, anon_sym_do, - [116051] = 4, + [119089] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3425), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3427), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [116117] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_DOT, - ACTIONS(4027), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3425), 4, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(3427), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_do, - [116187] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3425), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3427), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [116253] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3425), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3427), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [116319] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2994), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2996), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [116385] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3429), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3431), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [116451] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3369), 2, - sym__not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3371), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [116517] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3365), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3367), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [116583] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3361), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3363), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [116649] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3357), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3359), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [116715] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3309), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3311), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [116781] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3305), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3307), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [116847] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3297), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3299), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [116913] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3297), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3299), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [116979] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3301), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3303), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [117045] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3297), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3299), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [117111] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3293), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3295), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [117177] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3433), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3435), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [117243] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_DOT, - ACTIONS(4027), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3433), 4, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(3435), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_do, - [117313] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3433), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3435), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [117379] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2643), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2645), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [117445] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, ACTIONS(2647), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2649), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [119155] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2611), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2613), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [119221] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4504), 1, + anon_sym_COMMA, + STATE(2721), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3219), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2649), 51, + ACTIONS(3221), 49, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [119291] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2631), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2633), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [119357] = 29, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(3743), 1, + anon_sym_RPAREN, + ACTIONS(4506), 1, + aux_sym__terminator_token1, + ACTIONS(4509), 1, + anon_sym_SEMI, + ACTIONS(4514), 1, + anon_sym_PIPE, + ACTIONS(4522), 1, + anon_sym_when, + ACTIONS(4524), 1, + anon_sym_COLON_COLON, + ACTIONS(4526), 1, + anon_sym_EQ_GT, + ACTIONS(4528), 1, + anon_sym_EQ, + ACTIONS(4538), 1, + anon_sym_in, + ACTIONS(4540), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4542), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4546), 1, + anon_sym_STAR_STAR, + ACTIONS(4548), 1, + anon_sym_DOT, + ACTIONS(4550), 1, + sym__not_in, + STATE(346), 1, + sym__terminator, + STATE(1033), 1, + aux_sym__terminator_repeat1, + STATE(4916), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4516), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4518), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4520), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4530), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4532), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4512), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4534), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4544), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4536), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [119473] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(4387), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3295), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_do, + anon_sym_end, + [119543] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(4387), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3118), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3120), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_do, + anon_sym_end, + [119613] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(4387), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3191), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3193), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_do, + anon_sym_end, + [119683] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4552), 1, + anon_sym_COMMA, + STATE(2714), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3457), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3459), 48, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [119753] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4555), 1, + anon_sym_COMMA, + STATE(2714), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3506), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3508), 48, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [119823] = 27, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3351), 1, + sym__newline_before_do, + ACTIONS(3979), 1, + anon_sym_DOT, + ACTIONS(3981), 1, + anon_sym_LBRACK2, + ACTIONS(4559), 1, + anon_sym_PIPE, + ACTIONS(4563), 1, + anon_sym_COMMA, + ACTIONS(4569), 1, + anon_sym_when, + ACTIONS(4571), 1, + anon_sym_COLON_COLON, + ACTIONS(4573), 1, + anon_sym_EQ_GT, + ACTIONS(4575), 1, + anon_sym_EQ, + ACTIONS(4585), 1, + anon_sym_in, + ACTIONS(4587), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4589), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4593), 1, + anon_sym_STAR_STAR, + ACTIONS(4595), 1, + sym__not_in, + STATE(2715), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3353), 2, + anon_sym_LBRACE, + anon_sym_do, + ACTIONS(4561), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4565), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4567), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4577), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4579), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4557), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4581), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4591), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4583), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [119935] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3297), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3299), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [120001] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3199), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3201), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [120067] = 29, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1323), 1, + anon_sym_RPAREN, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(4514), 1, + anon_sym_PIPE, + ACTIONS(4522), 1, + anon_sym_when, + ACTIONS(4524), 1, + anon_sym_COLON_COLON, + ACTIONS(4526), 1, + anon_sym_EQ_GT, + ACTIONS(4528), 1, + anon_sym_EQ, + ACTIONS(4538), 1, + anon_sym_in, + ACTIONS(4540), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4542), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4546), 1, + anon_sym_STAR_STAR, + ACTIONS(4548), 1, + anon_sym_DOT, + ACTIONS(4550), 1, + sym__not_in, + ACTIONS(4597), 1, + aux_sym__terminator_token1, + ACTIONS(4600), 1, + anon_sym_SEMI, + STATE(347), 1, + sym__terminator, + STATE(1033), 1, + aux_sym__terminator_repeat1, + STATE(4975), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4516), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4518), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4520), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4530), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4532), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4512), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4534), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4544), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4536), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [120183] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3203), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3205), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [120249] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4504), 1, + anon_sym_COMMA, + STATE(2854), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3149), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3151), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [120319] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3207), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3209), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [120385] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3126), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3128), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -264077,102 +267946,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [117511] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3989), 1, - anon_sym_PIPE, - ACTIONS(3999), 1, - anon_sym_when, - ACTIONS(4001), 1, - anon_sym_COLON_COLON, - ACTIONS(4003), 1, - anon_sym_EQ_GT, - ACTIONS(4005), 1, - anon_sym_EQ, - ACTIONS(4015), 1, - anon_sym_in, - ACTIONS(4017), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4019), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4023), 1, - anon_sym_STAR_STAR, - ACTIONS(4025), 1, - anon_sym_DOT, - ACTIONS(4027), 1, - anon_sym_LBRACK2, - ACTIONS(4029), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3991), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3995), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3997), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3558), 3, - sym__newline_before_do, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(3560), 3, - anon_sym_SEMI, - anon_sym_COMMA, anon_sym_do, - ACTIONS(4007), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4009), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3987), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4011), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4021), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4013), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [117619] = 4, + [120451] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3433), 5, + ACTIONS(3249), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3435), 49, + ACTIONS(3251), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -264222,19 +268009,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [117685] = 4, + [120517] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3437), 5, + ACTIONS(3183), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3439), 49, + ACTIONS(3185), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -264284,46 +268071,2665 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [117751] = 12, + [120583] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(4131), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4133), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4137), 1, - anon_sym_STAR_STAR, - ACTIONS(4139), 1, - anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4105), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4109), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 3, + aux_sym__terminator_token1, + ACTIONS(3431), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, - ACTIONS(4135), 6, + anon_sym_LBRACK2, + ACTIONS(3433), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - ACTIONS(3391), 36, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [120649] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3427), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3429), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [120715] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3423), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3425), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [120781] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3297), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3299), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [120847] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3281), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3283), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [120913] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3179), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3181), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [120979] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3293), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3295), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [121045] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3403), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3405), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [121111] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3175), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3177), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [121177] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3126), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3128), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [121243] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3171), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3173), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [121309] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3293), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3295), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [121375] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3006), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3008), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [121441] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3122), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3124), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [121507] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3351), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3353), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [121573] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2647), 4, + sym__newline_before_do, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2649), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [121639] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3122), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3124), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [121705] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3006), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3008), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [121771] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3000), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3002), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [121837] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4500), 1, + anon_sym_COMMA, + STATE(2687), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3219), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3221), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [121907] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2651), 4, + sym__newline_before_do, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2653), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [121973] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3114), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3116), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [122039] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4433), 1, + anon_sym_DOT, + ACTIONS(4435), 1, + anon_sym_LBRACK2, + ACTIONS(3293), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3295), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_do, + [122109] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3341), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3343), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [122175] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3516), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3518), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [122241] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3000), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3002), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [122307] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3323), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3325), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [122373] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3293), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3295), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [122439] = 29, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(3743), 1, + anon_sym_end, + ACTIONS(4603), 1, + aux_sym__terminator_token1, + ACTIONS(4606), 1, + anon_sym_SEMI, + ACTIONS(4611), 1, + anon_sym_PIPE, + ACTIONS(4619), 1, + anon_sym_when, + ACTIONS(4621), 1, + anon_sym_COLON_COLON, + ACTIONS(4623), 1, + anon_sym_EQ_GT, + ACTIONS(4625), 1, + anon_sym_EQ, + ACTIONS(4635), 1, + anon_sym_in, + ACTIONS(4637), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4639), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4643), 1, + anon_sym_STAR_STAR, + ACTIONS(4645), 1, + anon_sym_DOT, + ACTIONS(4647), 1, + sym__not_in, + STATE(348), 1, + sym__terminator, + STATE(1034), 1, + aux_sym__terminator_repeat1, + STATE(4998), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4613), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4615), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4617), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4627), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4629), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4609), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4631), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4641), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4633), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [122555] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3122), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3124), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [122621] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3122), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3124), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [122687] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3114), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3116), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [122753] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3516), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3518), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [122819] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3114), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3116), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [122885] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3122), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3124), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [122951] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3130), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3132), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [123017] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3967), 1, + anon_sym_LPAREN, + STATE(2656), 1, + sym__call_arguments_with_parentheses, + ACTIONS(2972), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2974), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [123087] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3967), 1, + anon_sym_LPAREN, + STATE(2655), 1, + sym__call_arguments_with_parentheses, + ACTIONS(2972), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2974), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [123157] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3327), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3329), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [123223] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3327), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3329), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [123289] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3000), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3002), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [123355] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3319), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3321), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [123421] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3796), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -264353,44 +270759,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, - anon_sym_do, - [117833] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(4129), 1, - anon_sym_in, - ACTIONS(4131), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4133), 1, anon_sym_SLASH_SLASH, - ACTIONS(4137), 1, - anon_sym_STAR_STAR, - ACTIONS(4139), 1, - anon_sym_DOT, - ACTIONS(4141), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(4105), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4109), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4135), 6, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - ACTIONS(4127), 9, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [123489] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3798), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -264400,12 +270821,4266 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3391), 26, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [123557] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [123623] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [123689] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [123755] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [123821] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [123887] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [123953] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [124019] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [124085] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [124151] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [124217] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3800), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [124285] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3753), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [124353] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3745), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [124421] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3792), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [124489] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3790), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [124557] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3788), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [124625] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3786), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [124693] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3784), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [124761] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3779), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [124829] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3777), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [124897] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [124963] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [125029] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [125095] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [125161] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [125227] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [125293] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [125359] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [125425] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [125491] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [125557] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3159), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3161), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [125623] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3163), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3165), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [125689] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3167), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3169), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [125755] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3171), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3173), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [125821] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3175), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3177), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [125887] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3006), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3008), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [125953] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3297), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3299), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [126019] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3179), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3181), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [126085] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(4351), 1, + anon_sym_PIPE, + ACTIONS(4361), 1, + anon_sym_when, + ACTIONS(4363), 1, + anon_sym_COLON_COLON, + ACTIONS(4365), 1, + anon_sym_EQ_GT, + ACTIONS(4367), 1, + anon_sym_EQ, + ACTIONS(4377), 1, + anon_sym_in, + ACTIONS(4379), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4381), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4385), 1, + anon_sym_STAR_STAR, + ACTIONS(4387), 1, + anon_sym_DOT, + ACTIONS(4389), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3544), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4353), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4359), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4369), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4371), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3546), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + ACTIONS(4349), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4373), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4383), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4375), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [126193] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3183), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3185), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [126259] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3183), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3185), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [126325] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3775), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [126393] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3187), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3189), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [126459] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3183), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3185), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [126525] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3195), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3197), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [126591] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3773), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [126659] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3771), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [126727] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3769), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [126795] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3767), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [126863] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3765), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [126931] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3167), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3169), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [126997] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3163), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3165), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [127063] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3159), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3161), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [127129] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [127195] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [127261] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [127327] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [127393] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [127459] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [127525] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [127591] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(4165), 1, + anon_sym_PIPE, + ACTIONS(4175), 1, + anon_sym_when, + ACTIONS(4177), 1, + anon_sym_COLON_COLON, + ACTIONS(4179), 1, + anon_sym_EQ_GT, + ACTIONS(4181), 1, + anon_sym_EQ, + ACTIONS(4191), 1, + anon_sym_in, + ACTIONS(4193), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4195), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4199), 1, + anon_sym_STAR_STAR, + ACTIONS(4201), 1, + anon_sym_DOT, + ACTIONS(4203), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3457), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4167), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4171), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4173), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4183), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4185), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3459), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4163), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4187), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4197), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4189), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [127699] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3199), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3201), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [127765] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3203), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3205), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [127831] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3319), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3321), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [127897] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3207), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3209), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [127963] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [128029] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2972), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2974), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [128095] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4123), 1, + anon_sym_STAR_STAR, + ACTIONS(4125), 1, + anon_sym_DOT, + ACTIONS(4127), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4091), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4095), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3293), 4, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4121), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 37, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, @@ -264426,951 +275101,266 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_do, - [117921] = 22, + [128173] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3538), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(4103), 1, + ACTIONS(3108), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(4117), 1, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [128239] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3967), 1, + anon_sym_LPAREN, + STATE(2659), 1, + sym__call_arguments_with_parentheses, + ACTIONS(2972), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2974), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [128309] = 29, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1323), 1, + anon_sym_end, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(4611), 1, + anon_sym_PIPE, + ACTIONS(4619), 1, + anon_sym_when, + ACTIONS(4621), 1, + anon_sym_COLON_COLON, + ACTIONS(4623), 1, + anon_sym_EQ_GT, + ACTIONS(4625), 1, + anon_sym_EQ, + ACTIONS(4635), 1, + anon_sym_in, + ACTIONS(4637), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4639), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4643), 1, + anon_sym_STAR_STAR, + ACTIONS(4645), 1, + anon_sym_DOT, + ACTIONS(4647), 1, + sym__not_in, + ACTIONS(4649), 1, + aux_sym__terminator_token1, + ACTIONS(4652), 1, + anon_sym_SEMI, + STATE(350), 1, + sym__terminator, + STATE(1034), 1, + aux_sym__terminator_repeat1, + STATE(4938), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4613), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4615), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4617), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4627), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4629), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4609), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4631), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4641), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4633), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [128425] = 11, + ACTIONS(5), 1, + sym_comment, ACTIONS(4119), 1, - anon_sym_EQ, - ACTIONS(4129), 1, - anon_sym_in, - ACTIONS(4131), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4133), 1, anon_sym_SLASH_SLASH, - ACTIONS(4137), 1, + ACTIONS(4123), 1, anon_sym_STAR_STAR, - ACTIONS(4139), 1, + ACTIONS(4125), 1, anon_sym_DOT, - ACTIONS(4141), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(4105), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4109), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4121), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4123), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4101), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4125), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4135), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 8, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_do, - ACTIONS(4127), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [118023] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3538), 1, + ACTIONS(4127), 1, anon_sym_LBRACK2, - ACTIONS(4137), 1, - anon_sym_STAR_STAR, - ACTIONS(4139), 1, - anon_sym_DOT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3389), 3, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3391), 48, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(4091), 2, anon_sym_SLASH, - anon_sym_COMMA, + anon_sym_STAR, + ACTIONS(4095), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, + ACTIONS(3293), 4, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4121), 6, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_do, - [118095] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(4137), 1, - anon_sym_STAR_STAR, - ACTIONS(4139), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4105), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3389), 3, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3391), 46, + ACTIONS(3295), 36, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_do, - [118169] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(4103), 1, - anon_sym_PIPE, - ACTIONS(4113), 1, - anon_sym_when, - ACTIONS(4115), 1, - anon_sym_COLON_COLON, - ACTIONS(4117), 1, - anon_sym_EQ_GT, - ACTIONS(4119), 1, - anon_sym_EQ, - ACTIONS(4129), 1, - anon_sym_in, - ACTIONS(4131), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4133), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4137), 1, - anon_sym_STAR_STAR, - ACTIONS(4139), 1, - anon_sym_DOT, - ACTIONS(4141), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(4105), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4109), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4121), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4123), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4101), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4125), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3391), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_do, - ACTIONS(4135), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4127), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [118275] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(4103), 1, - anon_sym_PIPE, - ACTIONS(4113), 1, - anon_sym_when, - ACTIONS(4115), 1, - anon_sym_COLON_COLON, - ACTIONS(4117), 1, - anon_sym_EQ_GT, - ACTIONS(4119), 1, - anon_sym_EQ, - ACTIONS(4129), 1, - anon_sym_in, - ACTIONS(4131), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4133), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4137), 1, - anon_sym_STAR_STAR, - ACTIONS(4139), 1, - anon_sym_DOT, - ACTIONS(4141), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(4105), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4109), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4121), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4123), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4101), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4125), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3391), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_do, - ACTIONS(4135), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4127), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [118381] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(4103), 1, - anon_sym_PIPE, - ACTIONS(4115), 1, - anon_sym_COLON_COLON, - ACTIONS(4117), 1, - anon_sym_EQ_GT, - ACTIONS(4119), 1, - anon_sym_EQ, - ACTIONS(4129), 1, - anon_sym_in, - ACTIONS(4131), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4133), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4137), 1, - anon_sym_STAR_STAR, - ACTIONS(4139), 1, - anon_sym_DOT, - ACTIONS(4141), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(4105), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4109), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4121), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4123), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4101), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4125), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4135), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 7, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_do, - ACTIONS(4127), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [118485] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(4117), 1, - anon_sym_EQ_GT, - ACTIONS(4119), 1, - anon_sym_EQ, - ACTIONS(4129), 1, - anon_sym_in, - ACTIONS(4131), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4133), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4137), 1, - anon_sym_STAR_STAR, - ACTIONS(4139), 1, - anon_sym_DOT, - ACTIONS(4141), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(4105), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4109), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4121), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4123), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4101), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4125), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4135), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_do, - ACTIONS(4127), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [118585] = 20, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(4119), 1, - anon_sym_EQ, - ACTIONS(4129), 1, - anon_sym_in, - ACTIONS(4131), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4133), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4137), 1, - anon_sym_STAR_STAR, - ACTIONS(4139), 1, - anon_sym_DOT, - ACTIONS(4141), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(4105), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4109), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4121), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4123), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4101), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4125), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4135), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4127), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_do, - [118683] = 18, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(4129), 1, - anon_sym_in, - ACTIONS(4131), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4133), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4137), 1, - anon_sym_STAR_STAR, - ACTIONS(4139), 1, - anon_sym_DOT, - ACTIONS(4141), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(4105), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4109), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4123), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4101), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4125), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4135), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4127), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 14, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_do, - [118777] = 17, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(4129), 1, - anon_sym_in, - ACTIONS(4131), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4133), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4137), 1, - anon_sym_STAR_STAR, - ACTIONS(4139), 1, - anon_sym_DOT, - ACTIONS(4141), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(4105), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4109), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4101), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4125), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4135), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4127), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 17, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_do, - [118869] = 16, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(4129), 1, - anon_sym_in, - ACTIONS(4131), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4133), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4137), 1, - anon_sym_STAR_STAR, - ACTIONS(4139), 1, - anon_sym_DOT, - ACTIONS(4141), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(4105), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4109), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4101), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4135), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4127), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 22, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_do, - [118959] = 14, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(4129), 1, - anon_sym_in, - ACTIONS(4131), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4133), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4137), 1, - anon_sym_STAR_STAR, - ACTIONS(4139), 1, - anon_sym_DOT, - ACTIONS(4141), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(4105), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4109), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4135), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 35, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_do, - [119045] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(4133), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4137), 1, - anon_sym_STAR_STAR, - ACTIONS(4139), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4105), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4109), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 3, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(4135), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 37, - anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -265406,156 +275396,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_do, - [119125] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(4133), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4137), 1, - anon_sym_STAR_STAR, - ACTIONS(4139), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4105), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4109), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 3, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(4135), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 37, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_do, - [119205] = 10, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(4137), 1, - anon_sym_STAR_STAR, - ACTIONS(4139), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4105), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4109), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 3, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(4135), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 38, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_do, - [119283] = 4, + [128505] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3441), 5, + ACTIONS(3106), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3443), 49, + ACTIONS(3108), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -265605,19 +275458,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [119349] = 4, + [128571] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3445), 5, + ACTIONS(3319), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3447), 49, + ACTIONS(3321), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -265667,193 +275520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [119415] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3127), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3129), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [119481] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3123), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3125), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [119547] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3449), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3451), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [119613] = 4, + [128637] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -265915,19 +275582,226 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [119679] = 4, + [128703] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3034), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3036), 50, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [128769] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3319), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3321), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [128835] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(4351), 1, + anon_sym_PIPE, + ACTIONS(4361), 1, + anon_sym_when, + ACTIONS(4363), 1, + anon_sym_COLON_COLON, + ACTIONS(4365), 1, + anon_sym_EQ_GT, + ACTIONS(4367), 1, + anon_sym_EQ, + ACTIONS(4377), 1, + anon_sym_in, + ACTIONS(4379), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4381), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4385), 1, + anon_sym_STAR_STAR, + ACTIONS(4387), 1, + anon_sym_DOT, + ACTIONS(4389), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3457), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4353), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4359), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4369), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4371), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3459), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + ACTIONS(4349), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4373), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4383), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4375), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [128943] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3453), 5, + ACTIONS(3297), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3455), 49, + ACTIONS(3299), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -265977,19 +275851,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [119745] = 4, + [129009] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3453), 5, + ACTIONS(3289), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3455), 49, + ACTIONS(3291), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -266039,19 +275913,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [119811] = 4, + [129075] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3453), 5, + ACTIONS(3285), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3455), 49, + ACTIONS(3287), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -266101,19 +275975,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [119877] = 4, + [129141] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3457), 5, + ACTIONS(3281), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3459), 49, + ACTIONS(3283), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -266163,19 +276037,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [119943] = 4, + [129207] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3457), 5, + ACTIONS(3006), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3459), 49, + ACTIONS(3008), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -266225,19 +276099,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [120009] = 4, + [129273] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3319), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3321), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [129339] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4655), 1, + anon_sym_COMMA, + STATE(2854), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3134), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3136), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [129409] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3022), 5, + ACTIONS(3265), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3024), 49, + ACTIONS(3267), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -266287,19 +276287,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [120075] = 4, + [129475] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3050), 5, + ACTIONS(3106), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3052), 49, + ACTIONS(3108), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -266349,19 +276349,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [120141] = 4, + [129541] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3461), 5, + ACTIONS(3106), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3463), 49, + ACTIONS(3108), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -266411,19 +276411,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [120207] = 4, + [129607] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3465), 5, + ACTIONS(3106), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3467), 49, + ACTIONS(3108), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -266473,17 +276473,3270 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [120273] = 4, + [129673] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3289), 2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [129739] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [129805] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [129871] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [129937] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [130003] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [130069] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [130135] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3191), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3193), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [130201] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4658), 1, + anon_sym_COMMA, + STATE(3058), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3506), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3508), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [130271] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4089), 1, + anon_sym_PIPE, + ACTIONS(4099), 1, + anon_sym_when, + ACTIONS(4101), 1, + anon_sym_COLON_COLON, + ACTIONS(4103), 1, + anon_sym_EQ_GT, + ACTIONS(4105), 1, + anon_sym_EQ, + ACTIONS(4115), 1, + anon_sym_in, + ACTIONS(4117), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4119), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4123), 1, + anon_sym_STAR_STAR, + ACTIONS(4125), 1, + anon_sym_DOT, + ACTIONS(4127), 1, + anon_sym_LBRACK2, + ACTIONS(4129), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4091), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4095), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4097), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3551), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3553), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4107), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4109), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4087), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4111), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4121), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4113), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [130379] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4125), 1, + anon_sym_DOT, + ACTIONS(4127), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 4, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3295), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_do, + [130449] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3319), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3321), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [130515] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3289), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3291), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [130581] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3285), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3287), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [130647] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3030), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3032), 50, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [130713] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3191), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3193), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [130779] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4125), 1, + anon_sym_DOT, + ACTIONS(4127), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3191), 4, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3193), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_do, + [130849] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3327), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3329), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [130915] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(4165), 1, + anon_sym_PIPE, + ACTIONS(4175), 1, + anon_sym_when, + ACTIONS(4177), 1, + anon_sym_COLON_COLON, + ACTIONS(4179), 1, + anon_sym_EQ_GT, + ACTIONS(4181), 1, + anon_sym_EQ, + ACTIONS(4191), 1, + anon_sym_in, + ACTIONS(4193), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4195), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4199), 1, + anon_sym_STAR_STAR, + ACTIONS(4201), 1, + anon_sym_DOT, + ACTIONS(4203), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3551), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4167), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4171), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4173), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4183), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4185), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3553), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4163), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4187), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4197), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4189), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [131023] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(4351), 1, + anon_sym_PIPE, + ACTIONS(4361), 1, + anon_sym_when, + ACTIONS(4363), 1, + anon_sym_COLON_COLON, + ACTIONS(4365), 1, + anon_sym_EQ_GT, + ACTIONS(4367), 1, + anon_sym_EQ, + ACTIONS(4377), 1, + anon_sym_in, + ACTIONS(4379), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4381), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4385), 1, + anon_sym_STAR_STAR, + ACTIONS(4387), 1, + anon_sym_DOT, + ACTIONS(4389), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3551), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4353), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4359), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4369), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4371), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3553), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + ACTIONS(4349), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4373), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4383), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4375), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [131131] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(4201), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3191), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3193), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_do, + [131201] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3191), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3193), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [131267] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3544), 1, + sym__newline_before_do, + ACTIONS(4397), 1, + anon_sym_PIPE, + ACTIONS(4407), 1, + anon_sym_when, + ACTIONS(4409), 1, + anon_sym_COLON_COLON, + ACTIONS(4411), 1, + anon_sym_EQ_GT, + ACTIONS(4413), 1, + anon_sym_EQ, + ACTIONS(4423), 1, + anon_sym_in, + ACTIONS(4425), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4427), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4431), 1, + anon_sym_STAR_STAR, + ACTIONS(4433), 1, + anon_sym_DOT, + ACTIONS(4435), 1, + anon_sym_LBRACK2, + ACTIONS(4437), 1, + sym__not_in, + ACTIONS(4399), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4403), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4405), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4415), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4417), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3546), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(4395), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4419), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4429), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4421), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [131375] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3407), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3409), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [131441] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3327), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3329), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [131507] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3761), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [131575] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3763), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [131643] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4089), 1, + anon_sym_PIPE, + ACTIONS(4099), 1, + anon_sym_when, + ACTIONS(4101), 1, + anon_sym_COLON_COLON, + ACTIONS(4103), 1, + anon_sym_EQ_GT, + ACTIONS(4105), 1, + anon_sym_EQ, + ACTIONS(4115), 1, + anon_sym_in, + ACTIONS(4117), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4119), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4123), 1, + anon_sym_STAR_STAR, + ACTIONS(4125), 1, + anon_sym_DOT, + ACTIONS(4127), 1, + anon_sym_LBRACK2, + ACTIONS(4129), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4091), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4095), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4097), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3544), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3546), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4107), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4109), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4087), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4111), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4121), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4113), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [131751] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3064), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3066), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [131817] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3134), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3136), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [131883] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3118), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3120), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [131949] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(647), 1, + anon_sym_do, + ACTIONS(4660), 1, + sym__newline_before_do, + STATE(4019), 1, + sym_do_block, + ACTIONS(3038), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3291), 51, + ACTIONS(3040), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [132021] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(647), 1, + anon_sym_do, + ACTIONS(4662), 1, + sym__newline_before_do, + STATE(4020), 1, + sym_do_block, + ACTIONS(3064), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3066), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [132093] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3118), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3120), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [132159] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(647), 1, + anon_sym_do, + ACTIONS(4664), 1, + sym__newline_before_do, + STATE(4023), 1, + sym_do_block, + ACTIONS(3038), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3040), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [132231] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(647), 1, + anon_sym_do, + ACTIONS(4666), 1, + sym__newline_before_do, + STATE(4024), 1, + sym_do_block, + ACTIONS(3038), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3040), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [132303] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(647), 1, + anon_sym_do, + ACTIONS(4668), 1, + sym__newline_before_do, + STATE(4026), 1, + sym_do_block, + ACTIONS(3012), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3014), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [132375] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3237), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3239), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [132441] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3496), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3498), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [132507] = 27, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3351), 1, + sym__newline_before_do, + ACTIONS(4672), 1, + anon_sym_PIPE, + ACTIONS(4676), 1, + anon_sym_COMMA, + ACTIONS(4682), 1, + anon_sym_when, + ACTIONS(4684), 1, + anon_sym_COLON_COLON, + ACTIONS(4686), 1, + anon_sym_EQ_GT, + ACTIONS(4688), 1, + anon_sym_EQ, + ACTIONS(4698), 1, + anon_sym_in, + ACTIONS(4700), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4702), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4706), 1, + anon_sym_STAR_STAR, + ACTIONS(4708), 1, + anon_sym_DOT, + ACTIONS(4710), 1, + anon_sym_LBRACK2, + ACTIONS(4712), 1, + sym__not_in, + STATE(2867), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3353), 2, + anon_sym_GT_GT, + anon_sym_do, + ACTIONS(4674), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4678), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4680), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4690), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4692), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4670), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4694), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4704), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4696), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [132619] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3486), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3488), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [132685] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3468), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3470), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [132751] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3211), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3213), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [132817] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3516), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3518), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [132883] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3215), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3217), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [132949] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3141), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3143), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [133015] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3145), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3147), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [133081] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3229), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3231), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [133147] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3233), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3235), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [133213] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3114), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3116), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [133279] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -266535,18 +279788,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [120339] = 4, + [133345] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3277), 3, + ACTIONS(3000), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3279), 50, + ACTIONS(3002), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -266597,7 +279850,17599 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [120405] = 4, + [133411] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(4201), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3118), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3120), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_do, + [133481] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3000), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3002), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [133547] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3006), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3008), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [133613] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4125), 1, + anon_sym_DOT, + ACTIONS(4127), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3118), 4, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3120), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_do, + [133683] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3207), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3209), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [133749] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3118), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3120), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [133815] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3534), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3536), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [133881] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3303), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3305), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [133947] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3307), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3309), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [134013] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3026), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3028), 50, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [134079] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3303), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3305), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [134145] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3307), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3309), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [134211] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3403), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3405), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [134277] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3407), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3409), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [134343] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3449), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3451), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [134409] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3435), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3437), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [134475] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3044), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3046), 50, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [134541] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3048), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3050), 50, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [134607] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3052), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3054), 50, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [134673] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4115), 1, + anon_sym_in, + ACTIONS(4117), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4119), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4123), 1, + anon_sym_STAR_STAR, + ACTIONS(4125), 1, + anon_sym_DOT, + ACTIONS(4127), 1, + anon_sym_LBRACK2, + ACTIONS(4129), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4091), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4095), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3293), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4121), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 34, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_do, + [134759] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4714), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [134827] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3431), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3433), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [134893] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3427), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3429), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [134959] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3311), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3313), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [135025] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3331), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3333), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [135091] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3335), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3337), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [135157] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3399), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3401), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [135223] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3441), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3443), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [135289] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3445), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3447), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [135355] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3500), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3502), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [135421] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3522), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3524), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [135487] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3203), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3205), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [135553] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3199), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3201), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [135619] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3526), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3528), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [135685] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4425), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4427), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4431), 1, + anon_sym_STAR_STAR, + ACTIONS(4433), 1, + anon_sym_DOT, + ACTIONS(4435), 1, + anon_sym_LBRACK2, + ACTIONS(3293), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4399), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4403), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4429), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 36, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_do, + [135767] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__newline_before_do, + ACTIONS(4423), 1, + anon_sym_in, + ACTIONS(4425), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4427), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4431), 1, + anon_sym_STAR_STAR, + ACTIONS(4433), 1, + anon_sym_DOT, + ACTIONS(4435), 1, + anon_sym_LBRACK2, + ACTIONS(4437), 1, + sym__not_in, + ACTIONS(4399), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4403), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4429), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4421), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 26, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DASH_GT, + anon_sym_do, + [135855] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__newline_before_do, + ACTIONS(4397), 1, + anon_sym_PIPE, + ACTIONS(4411), 1, + anon_sym_EQ_GT, + ACTIONS(4413), 1, + anon_sym_EQ, + ACTIONS(4423), 1, + anon_sym_in, + ACTIONS(4425), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4427), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4431), 1, + anon_sym_STAR_STAR, + ACTIONS(4433), 1, + anon_sym_DOT, + ACTIONS(4435), 1, + anon_sym_LBRACK2, + ACTIONS(4437), 1, + sym__not_in, + ACTIONS(4399), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4403), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4415), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4417), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4395), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4419), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4429), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(4421), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [135957] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3530), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3532), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [136023] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4431), 1, + anon_sym_STAR_STAR, + ACTIONS(4433), 1, + anon_sym_DOT, + ACTIONS(4435), 1, + anon_sym_LBRACK2, + ACTIONS(3293), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3295), 48, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_DASH_GT, + anon_sym_do, + [136095] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4431), 1, + anon_sym_STAR_STAR, + ACTIONS(4433), 1, + anon_sym_DOT, + ACTIONS(4435), 1, + anon_sym_LBRACK2, + ACTIONS(3293), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4399), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3295), 46, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_DASH_GT, + anon_sym_do, + [136169] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__newline_before_do, + ACTIONS(4397), 1, + anon_sym_PIPE, + ACTIONS(4407), 1, + anon_sym_when, + ACTIONS(4409), 1, + anon_sym_COLON_COLON, + ACTIONS(4411), 1, + anon_sym_EQ_GT, + ACTIONS(4413), 1, + anon_sym_EQ, + ACTIONS(4423), 1, + anon_sym_in, + ACTIONS(4425), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4427), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4431), 1, + anon_sym_STAR_STAR, + ACTIONS(4433), 1, + anon_sym_DOT, + ACTIONS(4435), 1, + anon_sym_LBRACK2, + ACTIONS(4437), 1, + sym__not_in, + ACTIONS(4399), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4403), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4415), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4417), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4395), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4419), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3295), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(4429), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4421), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [136275] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__newline_before_do, + ACTIONS(4397), 1, + anon_sym_PIPE, + ACTIONS(4407), 1, + anon_sym_when, + ACTIONS(4409), 1, + anon_sym_COLON_COLON, + ACTIONS(4411), 1, + anon_sym_EQ_GT, + ACTIONS(4413), 1, + anon_sym_EQ, + ACTIONS(4423), 1, + anon_sym_in, + ACTIONS(4425), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4427), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4431), 1, + anon_sym_STAR_STAR, + ACTIONS(4433), 1, + anon_sym_DOT, + ACTIONS(4435), 1, + anon_sym_LBRACK2, + ACTIONS(4437), 1, + sym__not_in, + ACTIONS(4399), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4403), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4415), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4417), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4395), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4419), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3295), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(4429), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4421), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [136381] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3480), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3482), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [136447] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__newline_before_do, + ACTIONS(4397), 1, + anon_sym_PIPE, + ACTIONS(4409), 1, + anon_sym_COLON_COLON, + ACTIONS(4411), 1, + anon_sym_EQ_GT, + ACTIONS(4413), 1, + anon_sym_EQ, + ACTIONS(4423), 1, + anon_sym_in, + ACTIONS(4425), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4427), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4431), 1, + anon_sym_STAR_STAR, + ACTIONS(4433), 1, + anon_sym_DOT, + ACTIONS(4435), 1, + anon_sym_LBRACK2, + ACTIONS(4437), 1, + sym__not_in, + ACTIONS(4399), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4403), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4415), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4417), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4395), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4419), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4429), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(4421), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [136551] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__newline_before_do, + ACTIONS(4411), 1, + anon_sym_EQ_GT, + ACTIONS(4413), 1, + anon_sym_EQ, + ACTIONS(4423), 1, + anon_sym_in, + ACTIONS(4425), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4427), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4431), 1, + anon_sym_STAR_STAR, + ACTIONS(4433), 1, + anon_sym_DOT, + ACTIONS(4435), 1, + anon_sym_LBRACK2, + ACTIONS(4437), 1, + sym__not_in, + ACTIONS(4399), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4403), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4415), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4417), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4395), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4419), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4429), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 9, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(4421), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [136651] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__newline_before_do, + ACTIONS(4413), 1, + anon_sym_EQ, + ACTIONS(4423), 1, + anon_sym_in, + ACTIONS(4425), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4427), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4431), 1, + anon_sym_STAR_STAR, + ACTIONS(4433), 1, + anon_sym_DOT, + ACTIONS(4435), 1, + anon_sym_LBRACK2, + ACTIONS(4437), 1, + sym__not_in, + ACTIONS(4399), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4403), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4415), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4417), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4395), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4419), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4429), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4421), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 10, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + anon_sym_do, + [136749] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__newline_before_do, + ACTIONS(4423), 1, + anon_sym_in, + ACTIONS(4425), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4427), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4431), 1, + anon_sym_STAR_STAR, + ACTIONS(4433), 1, + anon_sym_DOT, + ACTIONS(4435), 1, + anon_sym_LBRACK2, + ACTIONS(4437), 1, + sym__not_in, + ACTIONS(4399), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4403), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4417), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4395), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4419), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4429), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4421), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 14, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_DASH_GT, + anon_sym_do, + [136843] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__newline_before_do, + ACTIONS(4423), 1, + anon_sym_in, + ACTIONS(4425), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4427), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4431), 1, + anon_sym_STAR_STAR, + ACTIONS(4433), 1, + anon_sym_DOT, + ACTIONS(4435), 1, + anon_sym_LBRACK2, + ACTIONS(4437), 1, + sym__not_in, + ACTIONS(4399), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4403), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4395), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4419), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4429), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4421), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 17, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_do, + [136935] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__newline_before_do, + ACTIONS(4423), 1, + anon_sym_in, + ACTIONS(4425), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4427), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4431), 1, + anon_sym_STAR_STAR, + ACTIONS(4433), 1, + anon_sym_DOT, + ACTIONS(4435), 1, + anon_sym_LBRACK2, + ACTIONS(4437), 1, + sym__not_in, + ACTIONS(4399), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4403), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4395), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4429), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4421), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 22, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_DASH_GT, + anon_sym_do, + [137025] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__newline_before_do, + ACTIONS(4423), 1, + anon_sym_in, + ACTIONS(4425), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4427), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4431), 1, + anon_sym_STAR_STAR, + ACTIONS(4433), 1, + anon_sym_DOT, + ACTIONS(4435), 1, + anon_sym_LBRACK2, + ACTIONS(4437), 1, + sym__not_in, + ACTIONS(4399), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4403), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4429), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 35, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_DASH_GT, + anon_sym_do, + [137111] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4427), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4431), 1, + anon_sym_STAR_STAR, + ACTIONS(4433), 1, + anon_sym_DOT, + ACTIONS(4435), 1, + anon_sym_LBRACK2, + ACTIONS(3293), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4399), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4403), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4429), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 37, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_DASH_GT, + anon_sym_do, + [137191] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4427), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4431), 1, + anon_sym_STAR_STAR, + ACTIONS(4433), 1, + anon_sym_DOT, + ACTIONS(4435), 1, + anon_sym_LBRACK2, + ACTIONS(3293), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4399), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4403), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4429), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 37, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_DASH_GT, + anon_sym_do, + [137271] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4431), 1, + anon_sym_STAR_STAR, + ACTIONS(4433), 1, + anon_sym_DOT, + ACTIONS(4435), 1, + anon_sym_LBRACK2, + ACTIONS(3293), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4399), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4403), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4429), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 38, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_DASH_GT, + anon_sym_do, + [137349] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(4201), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3295), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_do, + [137419] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3415), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3417), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [137485] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3411), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3413), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [137551] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3345), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3347), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [137617] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3315), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3317), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [137683] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3110), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3112), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [137749] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3004), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3000), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3002), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [137817] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3259), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3261), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [137883] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3010), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3006), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3008), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [137951] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3094), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3096), 50, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [138017] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3269), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3271), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [138083] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4117), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4119), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4123), 1, + anon_sym_STAR_STAR, + ACTIONS(4125), 1, + anon_sym_DOT, + ACTIONS(4127), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4091), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4095), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3293), 4, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4121), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 35, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_do, + [138165] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4115), 1, + anon_sym_in, + ACTIONS(4117), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4119), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4123), 1, + anon_sym_STAR_STAR, + ACTIONS(4125), 1, + anon_sym_DOT, + ACTIONS(4127), 1, + anon_sym_LBRACK2, + ACTIONS(4129), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4091), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4095), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3293), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4121), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4113), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 25, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_do, + [138253] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4089), 1, + anon_sym_PIPE, + ACTIONS(4103), 1, + anon_sym_EQ_GT, + ACTIONS(4105), 1, + anon_sym_EQ, + ACTIONS(4115), 1, + anon_sym_in, + ACTIONS(4117), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4119), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4123), 1, + anon_sym_STAR_STAR, + ACTIONS(4125), 1, + anon_sym_DOT, + ACTIONS(4127), 1, + anon_sym_LBRACK2, + ACTIONS(4129), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4091), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4095), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3293), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4107), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4109), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4087), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4111), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4121), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_do, + ACTIONS(4113), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [138355] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3195), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3197), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [138421] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3295), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [138487] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3018), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3020), 50, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [138553] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3074), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3076), 50, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [138619] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4123), 1, + anon_sym_STAR_STAR, + ACTIONS(4125), 1, + anon_sym_DOT, + ACTIONS(4127), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 4, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3295), 47, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_do, + [138691] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4123), 1, + anon_sym_STAR_STAR, + ACTIONS(4125), 1, + anon_sym_DOT, + ACTIONS(4127), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4091), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3293), 4, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3295), 45, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_do, + [138765] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4089), 1, + anon_sym_PIPE, + ACTIONS(4099), 1, + anon_sym_when, + ACTIONS(4101), 1, + anon_sym_COLON_COLON, + ACTIONS(4103), 1, + anon_sym_EQ_GT, + ACTIONS(4105), 1, + anon_sym_EQ, + ACTIONS(4115), 1, + anon_sym_in, + ACTIONS(4117), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4119), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4123), 1, + anon_sym_STAR_STAR, + ACTIONS(4125), 1, + anon_sym_DOT, + ACTIONS(4127), 1, + anon_sym_LBRACK2, + ACTIONS(4129), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4091), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4095), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3293), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4107), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4109), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4087), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3295), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + ACTIONS(4111), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4121), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4113), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [138871] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4089), 1, + anon_sym_PIPE, + ACTIONS(4099), 1, + anon_sym_when, + ACTIONS(4101), 1, + anon_sym_COLON_COLON, + ACTIONS(4103), 1, + anon_sym_EQ_GT, + ACTIONS(4105), 1, + anon_sym_EQ, + ACTIONS(4115), 1, + anon_sym_in, + ACTIONS(4117), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4119), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4123), 1, + anon_sym_STAR_STAR, + ACTIONS(4125), 1, + anon_sym_DOT, + ACTIONS(4127), 1, + anon_sym_LBRACK2, + ACTIONS(4129), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4091), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4095), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3293), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4107), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4109), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4087), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3295), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + ACTIONS(4111), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4121), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4113), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [138977] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3183), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3185), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [139043] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3187), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3189), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [139109] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3295), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [139175] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3183), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3185), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [139241] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3183), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3185), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [139307] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3179), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3181), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [139373] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4089), 1, + anon_sym_PIPE, + ACTIONS(4101), 1, + anon_sym_COLON_COLON, + ACTIONS(4103), 1, + anon_sym_EQ_GT, + ACTIONS(4105), 1, + anon_sym_EQ, + ACTIONS(4115), 1, + anon_sym_in, + ACTIONS(4117), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4119), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4123), 1, + anon_sym_STAR_STAR, + ACTIONS(4125), 1, + anon_sym_DOT, + ACTIONS(4127), 1, + anon_sym_LBRACK2, + ACTIONS(4129), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4091), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4095), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3293), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4107), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4109), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4087), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4111), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3295), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_do, + ACTIONS(4121), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4113), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [139477] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3122), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3124), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [139543] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3130), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3132), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [139609] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4103), 1, + anon_sym_EQ_GT, + ACTIONS(4105), 1, + anon_sym_EQ, + ACTIONS(4115), 1, + anon_sym_in, + ACTIONS(4117), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4119), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4123), 1, + anon_sym_STAR_STAR, + ACTIONS(4125), 1, + anon_sym_DOT, + ACTIONS(4127), 1, + anon_sym_LBRACK2, + ACTIONS(4129), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4091), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4095), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3293), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4107), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4109), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4087), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4111), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4121), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 8, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_do, + ACTIONS(4113), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [139709] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4105), 1, + anon_sym_EQ, + ACTIONS(4115), 1, + anon_sym_in, + ACTIONS(4117), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4119), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4123), 1, + anon_sym_STAR_STAR, + ACTIONS(4125), 1, + anon_sym_DOT, + ACTIONS(4127), 1, + anon_sym_LBRACK2, + ACTIONS(4129), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4091), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4095), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3293), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4107), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4109), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4087), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4111), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4121), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 9, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_do, + ACTIONS(4113), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [139807] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4115), 1, + anon_sym_in, + ACTIONS(4117), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4119), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4123), 1, + anon_sym_STAR_STAR, + ACTIONS(4125), 1, + anon_sym_DOT, + ACTIONS(4127), 1, + anon_sym_LBRACK2, + ACTIONS(4129), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4091), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4095), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3293), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4109), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4087), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4111), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4121), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4113), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 13, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_do, + [139901] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4115), 1, + anon_sym_in, + ACTIONS(4117), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4119), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4123), 1, + anon_sym_STAR_STAR, + ACTIONS(4125), 1, + anon_sym_DOT, + ACTIONS(4127), 1, + anon_sym_LBRACK2, + ACTIONS(4129), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4091), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4095), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3293), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4087), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4111), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4121), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4113), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 16, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_do, + [139993] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(4385), 1, + anon_sym_STAR_STAR, + ACTIONS(4387), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4353), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3293), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(4383), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 38, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_do, + anon_sym_end, + [140071] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(4381), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4385), 1, + anon_sym_STAR_STAR, + ACTIONS(4387), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4353), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3293), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(4383), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 37, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_do, + anon_sym_end, + [140151] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(4381), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4385), 1, + anon_sym_STAR_STAR, + ACTIONS(4387), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4353), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3293), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(4383), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 37, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_do, + anon_sym_end, + [140231] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(4377), 1, + anon_sym_in, + ACTIONS(4379), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4381), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4385), 1, + anon_sym_STAR_STAR, + ACTIONS(4387), 1, + anon_sym_DOT, + ACTIONS(4389), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4353), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4383), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 35, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_do, + anon_sym_end, + [140317] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(4377), 1, + anon_sym_in, + ACTIONS(4379), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4381), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4385), 1, + anon_sym_STAR_STAR, + ACTIONS(4387), 1, + anon_sym_DOT, + ACTIONS(4389), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4353), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4349), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4383), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4375), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 22, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_do, + anon_sym_end, + [140407] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3277), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3279), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [140473] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3273), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3275), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [140539] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3175), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3177), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [140605] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3171), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3173), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [140671] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3167), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3169), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [140737] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3163), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3165), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [140803] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3159), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3161), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [140869] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [140935] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [141001] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [141067] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [141133] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [141199] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [141265] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [141331] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [141397] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [141463] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(4377), 1, + anon_sym_in, + ACTIONS(4379), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4381), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4385), 1, + anon_sym_STAR_STAR, + ACTIONS(4387), 1, + anon_sym_DOT, + ACTIONS(4389), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4353), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4349), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4373), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4383), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4375), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 17, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_do, + anon_sym_end, + [141555] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(4377), 1, + anon_sym_in, + ACTIONS(4379), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4381), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4385), 1, + anon_sym_STAR_STAR, + ACTIONS(4387), 1, + anon_sym_DOT, + ACTIONS(4389), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4353), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4371), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4349), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4373), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4383), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4375), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 14, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_do, + anon_sym_end, + [141649] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3253), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3255), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [141715] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3245), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3247), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [141781] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3241), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3243), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [141847] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3235), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [141913] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3229), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3231), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [141979] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3145), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3147), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [142045] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3141), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3143), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [142111] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(4367), 1, + anon_sym_EQ, + ACTIONS(4377), 1, + anon_sym_in, + ACTIONS(4379), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4381), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4385), 1, + anon_sym_STAR_STAR, + ACTIONS(4387), 1, + anon_sym_DOT, + ACTIONS(4389), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4353), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4369), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4371), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4349), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4373), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4383), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4375), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 10, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_do, + anon_sym_end, + [142209] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(4365), 1, + anon_sym_EQ_GT, + ACTIONS(4367), 1, + anon_sym_EQ, + ACTIONS(4377), 1, + anon_sym_in, + ACTIONS(4379), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4381), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4385), 1, + anon_sym_STAR_STAR, + ACTIONS(4387), 1, + anon_sym_DOT, + ACTIONS(4389), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4353), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4369), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4371), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4349), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4373), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4383), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 9, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_do, + anon_sym_end, + ACTIONS(4375), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [142309] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(4351), 1, + anon_sym_PIPE, + ACTIONS(4363), 1, + anon_sym_COLON_COLON, + ACTIONS(4365), 1, + anon_sym_EQ_GT, + ACTIONS(4367), 1, + anon_sym_EQ, + ACTIONS(4377), 1, + anon_sym_in, + ACTIONS(4379), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4381), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4385), 1, + anon_sym_STAR_STAR, + ACTIONS(4387), 1, + anon_sym_DOT, + ACTIONS(4389), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4353), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4369), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4371), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4349), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4373), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4383), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_do, + anon_sym_end, + ACTIONS(4375), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [142413] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(4351), 1, + anon_sym_PIPE, + ACTIONS(4361), 1, + anon_sym_when, + ACTIONS(4363), 1, + anon_sym_COLON_COLON, + ACTIONS(4365), 1, + anon_sym_EQ_GT, + ACTIONS(4367), 1, + anon_sym_EQ, + ACTIONS(4377), 1, + anon_sym_in, + ACTIONS(4379), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4381), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4385), 1, + anon_sym_STAR_STAR, + ACTIONS(4387), 1, + anon_sym_DOT, + ACTIONS(4389), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4353), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4369), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4371), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4349), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4373), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3295), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + anon_sym_end, + ACTIONS(4383), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4375), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [142519] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(4351), 1, + anon_sym_PIPE, + ACTIONS(4361), 1, + anon_sym_when, + ACTIONS(4363), 1, + anon_sym_COLON_COLON, + ACTIONS(4365), 1, + anon_sym_EQ_GT, + ACTIONS(4367), 1, + anon_sym_EQ, + ACTIONS(4377), 1, + anon_sym_in, + ACTIONS(4379), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4381), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4385), 1, + anon_sym_STAR_STAR, + ACTIONS(4387), 1, + anon_sym_DOT, + ACTIONS(4389), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4353), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4369), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4371), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4349), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4373), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3295), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + anon_sym_end, + ACTIONS(4383), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4375), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [142625] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(4385), 1, + anon_sym_STAR_STAR, + ACTIONS(4387), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4353), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3293), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3295), 46, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_do, + anon_sym_end, + [142699] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(4385), 1, + anon_sym_STAR_STAR, + ACTIONS(4387), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3295), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_do, + anon_sym_end, + [142771] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(4351), 1, + anon_sym_PIPE, + ACTIONS(4365), 1, + anon_sym_EQ_GT, + ACTIONS(4367), 1, + anon_sym_EQ, + ACTIONS(4377), 1, + anon_sym_in, + ACTIONS(4379), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4381), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4385), 1, + anon_sym_STAR_STAR, + ACTIONS(4387), 1, + anon_sym_DOT, + ACTIONS(4389), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4353), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4369), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4371), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4349), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4373), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4383), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 8, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_do, + anon_sym_end, + ACTIONS(4375), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [142873] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(4377), 1, + anon_sym_in, + ACTIONS(4379), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4381), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4385), 1, + anon_sym_STAR_STAR, + ACTIONS(4387), 1, + anon_sym_DOT, + ACTIONS(4389), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4353), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4383), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4375), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 26, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_do, + anon_sym_end, + [142961] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(4379), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4381), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4385), 1, + anon_sym_STAR_STAR, + ACTIONS(4387), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4353), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3293), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(4383), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 36, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_do, + anon_sym_end, + [143043] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3215), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3217), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [143109] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3211), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3213), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [143175] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3468), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3470), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [143241] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3486), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3488), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [143307] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3496), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3498), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [143373] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3237), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3239), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [143439] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4119), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4123), 1, + anon_sym_STAR_STAR, + ACTIONS(4125), 1, + anon_sym_DOT, + ACTIONS(4127), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4091), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4095), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3293), 4, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4121), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 36, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_do, + [143519] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4716), 1, + anon_sym_COMMA, + STATE(3046), 1, + aux_sym_keywords_repeat1, + ACTIONS(3134), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3136), 49, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [143589] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [143655] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [143721] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [143787] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [143853] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [143919] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [143985] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [144051] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [144117] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [144183] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [144249] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3134), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3136), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [144315] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4719), 1, + anon_sym_COMMA, + STATE(3058), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3457), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3459), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [144385] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4722), 1, + anon_sym_COMMA, + STATE(3059), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3134), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3136), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [144455] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4725), 1, + anon_sym_COMMA, + STATE(3117), 1, + aux_sym_keywords_repeat1, + ACTIONS(3219), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3221), 49, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [144525] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2990), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2992), 50, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [144591] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3241), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3243), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [144657] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3253), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3255), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [144723] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3259), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3261), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [144789] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3289), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3291), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [144855] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3285), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3287), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [144921] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4089), 1, + anon_sym_PIPE, + ACTIONS(4099), 1, + anon_sym_when, + ACTIONS(4101), 1, + anon_sym_COLON_COLON, + ACTIONS(4103), 1, + anon_sym_EQ_GT, + ACTIONS(4105), 1, + anon_sym_EQ, + ACTIONS(4115), 1, + anon_sym_in, + ACTIONS(4117), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4119), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4123), 1, + anon_sym_STAR_STAR, + ACTIONS(4125), 1, + anon_sym_DOT, + ACTIONS(4127), 1, + anon_sym_LBRACK2, + ACTIONS(4129), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4091), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4095), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4097), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3457), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3459), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4107), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4109), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4087), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4111), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4121), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4113), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [145029] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3273), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3275), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [145095] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3130), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3132), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [145161] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3122), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3124), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [145227] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3114), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3116), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [145293] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3277), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3279), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [145359] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3114), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3116), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [145425] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3122), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3124), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [145491] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3122), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3124), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [145557] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3295), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [145623] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3323), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3325), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [145689] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3110), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3112), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [145755] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3315), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3317), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [145821] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3345), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3347), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [145887] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3411), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3413), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [145953] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3341), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3343), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [146019] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__not_in, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3295), 50, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + [146089] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3415), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3417), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [146155] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3480), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3482), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [146221] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3530), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3532), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [146287] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3526), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3528), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [146353] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3522), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3524), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [146419] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3303), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3305), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [146485] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3307), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3309), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [146551] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3500), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3502), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [146617] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3445), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3447), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [146683] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3441), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3443), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [146749] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3155), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3157), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [146815] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3335), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3337), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [146881] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3331), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3333), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [146947] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3295), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [147013] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3311), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3313), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [147079] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3435), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3437), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [147145] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3399), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3401), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [147211] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3403), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3405), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [147277] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3295), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [147343] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3000), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3002), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [147409] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3006), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3008), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [147475] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3327), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3329), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [147541] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3423), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3425), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [147607] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3427), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3429), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [147673] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3431), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3433), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [147739] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3327), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3329), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [147805] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3319), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3321), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [147871] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4115), 1, + anon_sym_in, + ACTIONS(4117), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4119), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4123), 1, + anon_sym_STAR_STAR, + ACTIONS(4125), 1, + anon_sym_DOT, + ACTIONS(4127), 1, + anon_sym_LBRACK2, + ACTIONS(4129), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4091), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4095), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3293), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4087), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4121), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4113), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 21, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_do, + [147961] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(3267), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3012), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3014), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [148029] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(3293), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3038), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3040), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [148097] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(3275), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3064), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3066), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [148165] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(3319), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3038), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3040), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [148233] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3078), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3080), 50, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [148299] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4725), 1, + anon_sym_COMMA, + STATE(3046), 1, + aux_sym_keywords_repeat1, + ACTIONS(3149), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3151), 49, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [148369] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(4165), 1, + anon_sym_PIPE, + ACTIONS(4175), 1, + anon_sym_when, + ACTIONS(4177), 1, + anon_sym_COLON_COLON, + ACTIONS(4179), 1, + anon_sym_EQ_GT, + ACTIONS(4181), 1, + anon_sym_EQ, + ACTIONS(4191), 1, + anon_sym_in, + ACTIONS(4193), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4195), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4199), 1, + anon_sym_STAR_STAR, + ACTIONS(4201), 1, + anon_sym_DOT, + ACTIONS(4203), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3544), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4167), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4171), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4173), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4183), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4185), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3546), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4163), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4187), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4197), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4189), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [148477] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(4199), 1, + anon_sym_STAR_STAR, + ACTIONS(4201), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4167), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4171), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3293), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(4197), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 38, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_do, + [148555] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(4195), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4199), 1, + anon_sym_STAR_STAR, + ACTIONS(4201), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4167), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4171), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3293), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(4197), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 37, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_do, + [148635] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(4195), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4199), 1, + anon_sym_STAR_STAR, + ACTIONS(4201), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4167), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4171), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3293), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(4197), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 37, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_do, + [148715] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(4191), 1, + anon_sym_in, + ACTIONS(4193), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4195), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4199), 1, + anon_sym_STAR_STAR, + ACTIONS(4201), 1, + anon_sym_DOT, + ACTIONS(4203), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4167), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4171), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4197), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 35, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_do, + [148801] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2996), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2998), 50, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [148867] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3457), 1, + sym__newline_before_do, + ACTIONS(4397), 1, + anon_sym_PIPE, + ACTIONS(4407), 1, + anon_sym_when, + ACTIONS(4409), 1, + anon_sym_COLON_COLON, + ACTIONS(4411), 1, + anon_sym_EQ_GT, + ACTIONS(4413), 1, + anon_sym_EQ, + ACTIONS(4423), 1, + anon_sym_in, + ACTIONS(4425), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4427), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4431), 1, + anon_sym_STAR_STAR, + ACTIONS(4433), 1, + anon_sym_DOT, + ACTIONS(4435), 1, + anon_sym_LBRACK2, + ACTIONS(4437), 1, + sym__not_in, + ACTIONS(4399), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4403), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4405), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4415), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4417), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3459), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(4395), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4419), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4429), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4421), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [148975] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3134), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3136), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [149041] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(4191), 1, + anon_sym_in, + ACTIONS(4193), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4195), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4199), 1, + anon_sym_STAR_STAR, + ACTIONS(4201), 1, + anon_sym_DOT, + ACTIONS(4203), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4167), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4171), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4163), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4197), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4189), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 22, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_do, + [149131] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3058), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3060), 50, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [149197] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3090), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3092), 50, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [149263] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(4191), 1, + anon_sym_in, + ACTIONS(4193), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4195), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4199), 1, + anon_sym_STAR_STAR, + ACTIONS(4201), 1, + anon_sym_DOT, + ACTIONS(4203), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4167), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4171), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4163), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4187), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4197), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4189), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 17, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_do, + [149355] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(4191), 1, + anon_sym_in, + ACTIONS(4193), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4195), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4199), 1, + anon_sym_STAR_STAR, + ACTIONS(4201), 1, + anon_sym_DOT, + ACTIONS(4203), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4167), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4171), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4185), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4163), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4187), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4197), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4189), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 14, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_do, + [149449] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(4181), 1, + anon_sym_EQ, + ACTIONS(4191), 1, + anon_sym_in, + ACTIONS(4193), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4195), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4199), 1, + anon_sym_STAR_STAR, + ACTIONS(4201), 1, + anon_sym_DOT, + ACTIONS(4203), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4167), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4171), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4183), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4185), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4163), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4187), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4197), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4189), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_do, + [149547] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(4179), 1, + anon_sym_EQ_GT, + ACTIONS(4181), 1, + anon_sym_EQ, + ACTIONS(4191), 1, + anon_sym_in, + ACTIONS(4193), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4195), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4199), 1, + anon_sym_STAR_STAR, + ACTIONS(4201), 1, + anon_sym_DOT, + ACTIONS(4203), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4167), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4171), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4183), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4185), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4163), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4187), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4197), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_do, + ACTIONS(4189), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [149647] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(4165), 1, + anon_sym_PIPE, + ACTIONS(4177), 1, + anon_sym_COLON_COLON, + ACTIONS(4179), 1, + anon_sym_EQ_GT, + ACTIONS(4181), 1, + anon_sym_EQ, + ACTIONS(4191), 1, + anon_sym_in, + ACTIONS(4193), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4195), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4199), 1, + anon_sym_STAR_STAR, + ACTIONS(4201), 1, + anon_sym_DOT, + ACTIONS(4203), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4167), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4171), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4183), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4185), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4163), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4187), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4197), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_do, + ACTIONS(4189), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [149751] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(4165), 1, + anon_sym_PIPE, + ACTIONS(4175), 1, + anon_sym_when, + ACTIONS(4177), 1, + anon_sym_COLON_COLON, + ACTIONS(4179), 1, + anon_sym_EQ_GT, + ACTIONS(4181), 1, + anon_sym_EQ, + ACTIONS(4191), 1, + anon_sym_in, + ACTIONS(4193), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4195), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4199), 1, + anon_sym_STAR_STAR, + ACTIONS(4201), 1, + anon_sym_DOT, + ACTIONS(4203), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4167), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4171), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4183), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4185), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4163), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4187), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3295), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + ACTIONS(4197), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4189), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [149857] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(4165), 1, + anon_sym_PIPE, + ACTIONS(4175), 1, + anon_sym_when, + ACTIONS(4177), 1, + anon_sym_COLON_COLON, + ACTIONS(4179), 1, + anon_sym_EQ_GT, + ACTIONS(4181), 1, + anon_sym_EQ, + ACTIONS(4191), 1, + anon_sym_in, + ACTIONS(4193), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4195), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4199), 1, + anon_sym_STAR_STAR, + ACTIONS(4201), 1, + anon_sym_DOT, + ACTIONS(4203), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4167), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4171), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4183), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4185), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4163), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4187), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3295), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + ACTIONS(4197), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4189), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [149963] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(4199), 1, + anon_sym_STAR_STAR, + ACTIONS(4201), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4167), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3293), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3295), 46, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_do, + [150037] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(4199), 1, + anon_sym_STAR_STAR, + ACTIONS(4201), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3295), 48, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_do, + [150109] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(4165), 1, + anon_sym_PIPE, + ACTIONS(4179), 1, + anon_sym_EQ_GT, + ACTIONS(4181), 1, + anon_sym_EQ, + ACTIONS(4191), 1, + anon_sym_in, + ACTIONS(4193), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4195), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4199), 1, + anon_sym_STAR_STAR, + ACTIONS(4201), 1, + anon_sym_DOT, + ACTIONS(4203), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4167), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4171), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4183), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4185), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4163), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4187), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4197), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 8, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_do, + ACTIONS(4189), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [150211] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(4191), 1, + anon_sym_in, + ACTIONS(4193), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4195), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4199), 1, + anon_sym_STAR_STAR, + ACTIONS(4201), 1, + anon_sym_DOT, + ACTIONS(4203), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4167), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4171), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4197), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4189), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 26, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_do, + [150299] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_LBRACK2, + ACTIONS(4193), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4195), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4199), 1, + anon_sym_STAR_STAR, + ACTIONS(4201), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4167), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4171), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3293), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(4197), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 36, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_do, + [150381] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4731), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [150449] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4733), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [150517] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4735), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [150585] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4737), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [150653] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4739), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [150721] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4741), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [150789] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4743), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [150857] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3407), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3409), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [150923] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3449), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3451), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [150989] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3307), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3309), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [151055] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3303), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3305), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [151121] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(3292), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3038), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3040), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [151189] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4745), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [151257] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4747), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [151325] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3423), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3425), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [151391] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3536), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [151457] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3118), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3120), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [151523] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3118), 1, + sym__not_in, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3120), 50, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + [151593] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3118), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3120), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [151659] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3118), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3120), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [151725] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4749), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [151793] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3269), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3271), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [151859] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3064), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3066), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [151925] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4751), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [151993] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3289), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3291), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [152059] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3285), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3287), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [152125] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3155), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3157), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [152191] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4753), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [152259] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4755), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [152327] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2651), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2653), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [152393] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2647), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2649), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [152459] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3303), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3305), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [152525] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3191), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3193), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [152591] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3191), 1, + sym__not_in, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3193), 50, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + [152661] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3191), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3193), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [152727] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4757), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [152795] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3191), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3193), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [152861] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3265), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3267), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [152927] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3269), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3271), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [152993] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3281), 2, @@ -266659,1554 +297504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [120471] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3793), 1, - anon_sym_LPAREN, - STATE(2072), 1, - sym__call_arguments_with_parentheses, - ACTIONS(2972), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2974), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [120541] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3273), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3275), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [120607] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4348), 1, - anon_sym_COMMA, - STATE(2724), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3469), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3471), 48, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [120677] = 29, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9), 1, - aux_sym__terminator_token1, - ACTIONS(1677), 1, - ts_builtin_sym_end, - ACTIONS(4262), 1, - anon_sym_PIPE, - ACTIONS(4270), 1, - anon_sym_when, - ACTIONS(4272), 1, - anon_sym_COLON_COLON, - ACTIONS(4274), 1, - anon_sym_EQ_GT, - ACTIONS(4276), 1, - anon_sym_EQ, - ACTIONS(4286), 1, - anon_sym_in, - ACTIONS(4288), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4290), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4294), 1, - anon_sym_STAR_STAR, - ACTIONS(4296), 1, - anon_sym_DOT, - ACTIONS(4298), 1, - anon_sym_LBRACK2, - ACTIONS(4300), 1, - sym__not_in, - ACTIONS(4350), 1, - anon_sym_SEMI, - STATE(396), 1, - sym__terminator, - STATE(1030), 1, - aux_sym__terminator_repeat1, - STATE(4313), 1, - aux_sym_source_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4264), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4266), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4268), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(4278), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4280), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4260), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4282), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4292), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4284), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [120793] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4348), 1, - anon_sym_COMMA, - STATE(2725), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3475), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3477), 48, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [120863] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4352), 1, - anon_sym_COMMA, - STATE(2725), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3479), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3481), 48, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [120933] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2635), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(2637), 50, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [120999] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2639), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(2641), 50, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [121065] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4355), 1, - anon_sym_COMMA, - STATE(2728), 1, - aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3110), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3112), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [121135] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4358), 1, - anon_sym_COMMA, - STATE(2729), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3479), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3481), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [121205] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3494), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3496), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [121271] = 29, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1329), 1, - anon_sym_end, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(4310), 1, - anon_sym_PIPE, - ACTIONS(4318), 1, - anon_sym_when, - ACTIONS(4320), 1, - anon_sym_COLON_COLON, - ACTIONS(4322), 1, - anon_sym_EQ_GT, - ACTIONS(4324), 1, - anon_sym_EQ, - ACTIONS(4334), 1, - anon_sym_in, - ACTIONS(4336), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4338), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4342), 1, - anon_sym_STAR_STAR, - ACTIONS(4344), 1, - anon_sym_DOT, - ACTIONS(4346), 1, - sym__not_in, - ACTIONS(4361), 1, - aux_sym__terminator_token1, - ACTIONS(4364), 1, - anon_sym_SEMI, - STATE(346), 1, - sym__terminator, - STATE(1031), 1, - aux_sym__terminator_repeat1, - STATE(4406), 1, - aux_sym_source_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4312), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4314), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4316), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(4326), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4328), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4308), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4330), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4340), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4332), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [121387] = 27, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3139), 1, - sym__newline_before_do, - ACTIONS(4369), 1, - anon_sym_PIPE, - ACTIONS(4373), 1, - anon_sym_COMMA, - ACTIONS(4379), 1, - anon_sym_when, - ACTIONS(4381), 1, - anon_sym_COLON_COLON, - ACTIONS(4383), 1, - anon_sym_EQ_GT, - ACTIONS(4385), 1, - anon_sym_EQ, - ACTIONS(4395), 1, - anon_sym_in, - ACTIONS(4397), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4399), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4403), 1, - anon_sym_STAR_STAR, - ACTIONS(4405), 1, - anon_sym_DOT, - ACTIONS(4407), 1, - anon_sym_LBRACK2, - ACTIONS(4409), 1, - sym__not_in, - STATE(2744), 1, - aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(3141), 2, - anon_sym_GT_GT, - anon_sym_do, - ACTIONS(4371), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4377), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4387), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4389), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4367), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4391), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4401), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4393), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [121499] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3123), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3125), 50, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [121565] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3127), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3129), 50, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [121631] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3131), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3133), 50, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [121697] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(644), 1, - anon_sym_do, - ACTIONS(4411), 1, - sym__newline_before_do, - STATE(3484), 1, - sym_do_block, - ACTIONS(3008), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3010), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [121769] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(644), 1, - anon_sym_do, - ACTIONS(4413), 1, - sym__newline_before_do, - STATE(3489), 1, - sym_do_block, - ACTIONS(3000), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3002), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [121841] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3273), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3275), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [121907] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(644), 1, - anon_sym_do, - ACTIONS(4415), 1, - sym__newline_before_do, - STATE(3490), 1, - sym_do_block, - ACTIONS(3000), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3002), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [121979] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(644), 1, - anon_sym_do, - ACTIONS(4417), 1, - sym__newline_before_do, - STATE(3493), 1, - sym_do_block, - ACTIONS(2994), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2996), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [122051] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(644), 1, - anon_sym_do, - ACTIONS(4419), 1, - sym__newline_before_do, - STATE(3495), 1, - sym_do_block, - ACTIONS(3000), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3002), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [122123] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3989), 1, - anon_sym_PIPE, - ACTIONS(3999), 1, - anon_sym_when, - ACTIONS(4001), 1, - anon_sym_COLON_COLON, - ACTIONS(4003), 1, - anon_sym_EQ_GT, - ACTIONS(4005), 1, - anon_sym_EQ, - ACTIONS(4015), 1, - anon_sym_in, - ACTIONS(4017), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4019), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4023), 1, - anon_sym_STAR_STAR, - ACTIONS(4025), 1, - anon_sym_DOT, - ACTIONS(4027), 1, - anon_sym_LBRACK2, - ACTIONS(4029), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3991), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3995), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3997), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3542), 3, - sym__newline_before_do, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(3544), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_do, - ACTIONS(4007), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4009), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3987), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4011), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4021), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4013), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [122231] = 4, + [153059] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3285), 2, @@ -268268,26 +297566,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [122297] = 6, + [153125] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4421), 1, - anon_sym_COMMA, - STATE(2728), 1, - aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3289), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3117), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3119), 48, + ACTIONS(3291), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [153191] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4759), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -268332,18 +297691,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [122367] = 4, + [153259] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4761), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [153327] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3135), 3, + ACTIONS(3307), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3137), 50, + ACTIONS(3309), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -268394,725 +297816,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [122433] = 4, + [153393] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(3297), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3040), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3042), 50, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [122499] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4423), 1, - anon_sym_COMMA, - STATE(2729), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3475), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3477), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [122569] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(4038), 1, - anon_sym_PIPE, - ACTIONS(4048), 1, - anon_sym_when, - ACTIONS(4050), 1, - anon_sym_COLON_COLON, - ACTIONS(4052), 1, - anon_sym_EQ_GT, - ACTIONS(4054), 1, - anon_sym_EQ, - ACTIONS(4064), 1, - anon_sym_in, - ACTIONS(4066), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4068), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4072), 1, - anon_sym_STAR_STAR, - ACTIONS(4074), 1, - anon_sym_DOT, - ACTIONS(4076), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3558), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(4040), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4044), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4046), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(4056), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4058), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3560), 4, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_do, - anon_sym_end, - ACTIONS(4036), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4060), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4070), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4062), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [122677] = 10, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(4072), 1, - anon_sym_STAR_STAR, - ACTIONS(4074), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4040), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4044), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 3, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(4070), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 38, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_do, - anon_sym_end, - [122755] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(4068), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4072), 1, - anon_sym_STAR_STAR, - ACTIONS(4074), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4040), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4044), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 3, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(4070), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 37, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_do, - anon_sym_end, - [122835] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(4068), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4072), 1, - anon_sym_STAR_STAR, - ACTIONS(4074), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4040), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4044), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 3, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(4070), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 37, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_do, - anon_sym_end, - [122915] = 14, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(4064), 1, - anon_sym_in, - ACTIONS(4066), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4068), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4072), 1, - anon_sym_STAR_STAR, - ACTIONS(4074), 1, - anon_sym_DOT, - ACTIONS(4076), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(4040), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4044), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4070), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 35, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_do, - anon_sym_end, - [123001] = 16, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(4064), 1, - anon_sym_in, - ACTIONS(4066), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4068), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4072), 1, - anon_sym_STAR_STAR, - ACTIONS(4074), 1, - anon_sym_DOT, - ACTIONS(4076), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(4040), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4044), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4036), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4070), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4062), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 22, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_do, - anon_sym_end, - [123091] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(4038), 1, - anon_sym_PIPE, - ACTIONS(4048), 1, - anon_sym_when, - ACTIONS(4050), 1, - anon_sym_COLON_COLON, - ACTIONS(4052), 1, - anon_sym_EQ_GT, - ACTIONS(4054), 1, - anon_sym_EQ, - ACTIONS(4064), 1, - anon_sym_in, - ACTIONS(4066), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4068), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4072), 1, - anon_sym_STAR_STAR, - ACTIONS(4074), 1, - anon_sym_DOT, - ACTIONS(4076), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3542), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(4040), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4044), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4046), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(4056), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4058), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3544), 4, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_do, - anon_sym_end, - ACTIONS(4036), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4060), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4070), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4062), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [123199] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3086), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3088), 50, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [123265] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3139), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3141), 50, + ACTIONS(3299), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -269159,113 +297877,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [123331] = 25, + [153459] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(4038), 1, - anon_sym_PIPE, - ACTIONS(4048), 1, - anon_sym_when, - ACTIONS(4050), 1, - anon_sym_COLON_COLON, - ACTIONS(4052), 1, - anon_sym_EQ_GT, - ACTIONS(4054), 1, - anon_sym_EQ, - ACTIONS(4064), 1, - anon_sym_in, - ACTIONS(4066), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4068), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4072), 1, - anon_sym_STAR_STAR, - ACTIONS(4074), 1, - anon_sym_DOT, - ACTIONS(4076), 1, + ACTIONS(3297), 2, sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3110), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(4040), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4044), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4046), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(4056), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4058), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3112), 4, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_do, - anon_sym_end, - ACTIONS(4036), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4060), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4070), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4062), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [123439] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4423), 1, - anon_sym_COMMA, - STATE(2747), 1, - aux_sym_keywords_repeat1, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3469), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3471), 48, + ACTIONS(3299), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_GT_GT, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -269308,14 +297940,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [123509] = 6, + [153525] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3793), 1, - anon_sym_LPAREN, - STATE(2067), 1, - sym__call_arguments_with_parentheses, ACTIONS(2972), 2, sym__not_in, anon_sym_LBRACK2, @@ -269323,3798 +297950,37 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2974), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [123579] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3793), 1, - anon_sym_LPAREN, - STATE(2071), 1, - sym__call_arguments_with_parentheses, - ACTIONS(2972), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2974), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [123649] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(4066), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4068), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4072), 1, - anon_sym_STAR_STAR, - ACTIONS(4074), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4040), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4044), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 3, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(4070), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 36, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_do, - anon_sym_end, - [123731] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(4064), 1, - anon_sym_in, - ACTIONS(4066), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4068), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4072), 1, - anon_sym_STAR_STAR, - ACTIONS(4074), 1, - anon_sym_DOT, - ACTIONS(4076), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(4040), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4044), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4070), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4062), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 26, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_do, - anon_sym_end, - [123819] = 22, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(4038), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_EQ_GT, - ACTIONS(4054), 1, - anon_sym_EQ, - ACTIONS(4064), 1, - anon_sym_in, - ACTIONS(4066), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4068), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4072), 1, - anon_sym_STAR_STAR, - ACTIONS(4074), 1, - anon_sym_DOT, - ACTIONS(4076), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(4040), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4044), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4056), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4058), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4036), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4060), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4070), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 8, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_do, - anon_sym_end, - ACTIONS(4062), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [123921] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(4072), 1, - anon_sym_STAR_STAR, - ACTIONS(4074), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 3, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3391), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_do, - anon_sym_end, - [123993] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(4072), 1, - anon_sym_STAR_STAR, - ACTIONS(4074), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4040), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3389), 3, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3391), 46, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_do, - anon_sym_end, - [124067] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(4038), 1, - anon_sym_PIPE, - ACTIONS(4048), 1, - anon_sym_when, - ACTIONS(4050), 1, - anon_sym_COLON_COLON, - ACTIONS(4052), 1, - anon_sym_EQ_GT, - ACTIONS(4054), 1, - anon_sym_EQ, - ACTIONS(4064), 1, - anon_sym_in, - ACTIONS(4066), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4068), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4072), 1, - anon_sym_STAR_STAR, - ACTIONS(4074), 1, - anon_sym_DOT, - ACTIONS(4076), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(4040), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4044), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4056), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4058), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4036), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4060), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3391), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_do, - anon_sym_end, - ACTIONS(4070), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4062), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [124173] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(4038), 1, - anon_sym_PIPE, - ACTIONS(4048), 1, - anon_sym_when, - ACTIONS(4050), 1, - anon_sym_COLON_COLON, - ACTIONS(4052), 1, - anon_sym_EQ_GT, - ACTIONS(4054), 1, - anon_sym_EQ, - ACTIONS(4064), 1, - anon_sym_in, - ACTIONS(4066), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4068), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4072), 1, - anon_sym_STAR_STAR, - ACTIONS(4074), 1, - anon_sym_DOT, - ACTIONS(4076), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(4040), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4044), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4056), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4058), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4036), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4060), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3391), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_do, - anon_sym_end, - ACTIONS(4070), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4062), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [124279] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(4038), 1, - anon_sym_PIPE, - ACTIONS(4050), 1, - anon_sym_COLON_COLON, - ACTIONS(4052), 1, - anon_sym_EQ_GT, - ACTIONS(4054), 1, - anon_sym_EQ, - ACTIONS(4064), 1, - anon_sym_in, - ACTIONS(4066), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4068), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4072), 1, - anon_sym_STAR_STAR, - ACTIONS(4074), 1, - anon_sym_DOT, - ACTIONS(4076), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(4040), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4044), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4056), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4058), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4036), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4060), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4070), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_do, - anon_sym_end, - ACTIONS(4062), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [124383] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(4052), 1, - anon_sym_EQ_GT, - ACTIONS(4054), 1, - anon_sym_EQ, - ACTIONS(4064), 1, - anon_sym_in, - ACTIONS(4066), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4068), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4072), 1, - anon_sym_STAR_STAR, - ACTIONS(4074), 1, - anon_sym_DOT, - ACTIONS(4076), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(4040), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4044), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4056), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4058), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4036), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4060), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4070), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 9, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_do, - anon_sym_end, - ACTIONS(4062), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [124483] = 20, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(4054), 1, - anon_sym_EQ, - ACTIONS(4064), 1, - anon_sym_in, - ACTIONS(4066), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4068), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4072), 1, - anon_sym_STAR_STAR, - ACTIONS(4074), 1, - anon_sym_DOT, - ACTIONS(4076), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(4040), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4044), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4056), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4058), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4036), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4060), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4070), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4062), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 10, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_do, - anon_sym_end, - [124581] = 18, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3538), 1, - anon_sym_LBRACK2, - ACTIONS(4064), 1, - anon_sym_in, - ACTIONS(4066), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4068), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4072), 1, - anon_sym_STAR_STAR, - ACTIONS(4074), 1, - anon_sym_DOT, - ACTIONS(4076), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(4040), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4044), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4058), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4036), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4060), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4070), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4062), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 14, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_do, - anon_sym_end, - [124675] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3193), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3195), 50, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [124740] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3181), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3183), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [124805] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3177), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3179), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [124870] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3173), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3175), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [124935] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3185), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3187), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [125000] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3169), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3171), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [125065] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3165), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3167), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [125130] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3161), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3163), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [125195] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3157), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3159), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [125260] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3153), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3155), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [125325] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3229), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3231), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [125390] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3189), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3191), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [125455] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3193), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3195), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [125520] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3197), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3199), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [125585] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3201), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3203), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [125650] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3205), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3207), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [125715] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3209), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3211), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [125780] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3044), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3046), 49, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [125845] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3062), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3064), 49, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [125910] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3066), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3068), 49, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [125975] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3217), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3219), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [126040] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3221), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3223), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [126105] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3225), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3227), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [126170] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3433), 2, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3435), 49, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - [126239] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3233), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3235), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [126304] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3237), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3239), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [126369] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3241), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3243), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [126434] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3245), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3247), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [126499] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3249), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3251), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [126564] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3253), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3255), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [126629] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3257), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3259), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [126694] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3261), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3263), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [126759] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3265), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3267), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [126824] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3106), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3108), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [126889] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3269), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3271), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [126954] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3072), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3074), 49, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [127019] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3090), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3092), 49, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [127084] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3018), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3020), 49, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [127149] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3096), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3098), 49, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [127214] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4425), 1, - anon_sym_COMMA, - STATE(2811), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3479), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3481), 48, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [127283] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2643), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2645), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [127348] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4428), 1, - anon_sym_COMMA, - STATE(2811), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3475), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3477), 48, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [127417] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3213), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3215), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [127482] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4428), 1, - anon_sym_COMMA, - STATE(2813), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3469), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3471), 48, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [127551] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3558), 1, - aux_sym__terminator_token1, - ACTIONS(3639), 1, - anon_sym_PIPE, - ACTIONS(3652), 1, - anon_sym_COLON_COLON, - ACTIONS(3654), 1, - anon_sym_EQ_GT, - ACTIONS(3656), 1, - anon_sym_EQ, - ACTIONS(3666), 1, - anon_sym_in, - ACTIONS(3668), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3678), 1, - sym__not_in, - ACTIONS(4430), 1, - anon_sym_when, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3658), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3660), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3560), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - ACTIONS(3637), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3662), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3664), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [127658] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4434), 1, - anon_sym_PIPE, - ACTIONS(4442), 1, - anon_sym_when, - ACTIONS(4444), 1, - anon_sym_COLON_COLON, - ACTIONS(4446), 1, - anon_sym_EQ_GT, - ACTIONS(4448), 1, - anon_sym_EQ, - ACTIONS(4458), 1, - anon_sym_in, - ACTIONS(4460), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4462), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4466), 1, - anon_sym_STAR_STAR, - ACTIONS(4468), 1, - sym__not_in, - ACTIONS(4436), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4438), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4440), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4450), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4452), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3544), 4, + ACTIONS(2974), 51, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(4432), 4, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4454), 5, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4464), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4456), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -273124,263 +297990,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [127763] = 6, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [153591] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4470), 1, + ACTIONS(4763), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, - STATE(2818), 1, - aux_sym_keywords_repeat1, - ACTIONS(3479), 2, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [153659] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4765), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [153727] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3319), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3481), 48, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [127832] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3149), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3151), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [127897] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2647), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2649), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [127962] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4434), 1, - anon_sym_PIPE, - ACTIONS(4442), 1, - anon_sym_when, - ACTIONS(4444), 1, - anon_sym_COLON_COLON, - ACTIONS(4446), 1, - anon_sym_EQ_GT, - ACTIONS(4448), 1, - anon_sym_EQ, - ACTIONS(4458), 1, - anon_sym_in, - ACTIONS(4460), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4462), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4466), 1, - anon_sym_STAR_STAR, - ACTIONS(4468), 1, - sym__not_in, - ACTIONS(4436), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4438), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4440), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4450), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4452), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3112), 4, + ACTIONS(3321), 51, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(4432), 4, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4454), 5, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4464), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4456), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -273390,1837 +298178,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [128067] = 6, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [153793] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4473), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2611), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2613), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - STATE(2818), 1, - aux_sym_keywords_repeat1, - ACTIONS(3475), 2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [153859] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2631), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2633), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [153925] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3319), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3477), 48, + ACTIONS(3321), 51, anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [128136] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3425), 2, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3427), 49, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - [128205] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3749), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3143), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3145), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [128272] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4473), 1, - anon_sym_COMMA, - STATE(2822), 1, - aux_sym_keywords_repeat1, - ACTIONS(3469), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3471), 48, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [128341] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3028), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3030), 49, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [128406] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3668), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 36, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_DASH_GT, - [128487] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3389), 1, - aux_sym__terminator_token1, - ACTIONS(3666), 1, - anon_sym_in, - ACTIONS(3668), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3678), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3664), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 26, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DASH_GT, - [128574] = 22, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3389), 1, - aux_sym__terminator_token1, - ACTIONS(3639), 1, - anon_sym_PIPE, - ACTIONS(3654), 1, - anon_sym_EQ_GT, - ACTIONS(3656), 1, - anon_sym_EQ, - ACTIONS(3666), 1, - anon_sym_in, - ACTIONS(3668), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3678), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3658), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3660), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3637), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3662), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 8, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - ACTIONS(3664), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [128675] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3391), 48, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_DASH_GT, - [128746] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4475), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3143), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3145), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [128813] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3014), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3016), 49, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [128878] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3391), 46, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_DASH_GT, - [128951] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3389), 1, - aux_sym__terminator_token1, - ACTIONS(3639), 1, - anon_sym_PIPE, - ACTIONS(3652), 1, - anon_sym_COLON_COLON, - ACTIONS(3654), 1, - anon_sym_EQ_GT, - ACTIONS(3656), 1, - anon_sym_EQ, - ACTIONS(3666), 1, - anon_sym_in, - ACTIONS(3668), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3678), 1, - sym__not_in, - ACTIONS(4430), 1, - anon_sym_when, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3658), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3660), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3637), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3662), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3391), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_DASH_GT, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3664), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [129056] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3100), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3102), 49, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [129121] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3389), 1, - aux_sym__terminator_token1, - ACTIONS(3639), 1, - anon_sym_PIPE, - ACTIONS(3652), 1, - anon_sym_COLON_COLON, - ACTIONS(3654), 1, - anon_sym_EQ_GT, - ACTIONS(3656), 1, - anon_sym_EQ, - ACTIONS(3666), 1, - anon_sym_in, - ACTIONS(3668), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3678), 1, - sym__not_in, - ACTIONS(4430), 1, - anon_sym_when, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3658), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3660), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3637), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3662), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3391), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_DASH_GT, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3664), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [129226] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3389), 1, - aux_sym__terminator_token1, - ACTIONS(3639), 1, - anon_sym_PIPE, - ACTIONS(3652), 1, - anon_sym_COLON_COLON, - ACTIONS(3654), 1, - anon_sym_EQ_GT, - ACTIONS(3656), 1, - anon_sym_EQ, - ACTIONS(3666), 1, - anon_sym_in, - ACTIONS(3668), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3678), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3658), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3660), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3637), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3662), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 7, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_DASH_GT, - ACTIONS(3664), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [129329] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3269), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3271), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [129394] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3106), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3108), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [129459] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3265), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3267), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [129524] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3261), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3263), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [129589] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3257), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3259), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [129654] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3253), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3255), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [129719] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3249), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3251), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [129784] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3245), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3247), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [129849] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3241), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3243), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [129914] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3237), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3239), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [129979] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3233), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3235), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [130044] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3110), 1, - sym__newline_before_do, - ACTIONS(3784), 1, - anon_sym_DOT, - ACTIONS(3786), 1, - anon_sym_LBRACK2, - ACTIONS(4152), 1, - anon_sym_PIPE, - ACTIONS(4162), 1, - anon_sym_when, - ACTIONS(4164), 1, - anon_sym_COLON_COLON, - ACTIONS(4166), 1, - anon_sym_EQ_GT, - ACTIONS(4168), 1, - anon_sym_EQ, - ACTIONS(4178), 1, - anon_sym_in, - ACTIONS(4180), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4182), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4186), 1, - anon_sym_STAR_STAR, - ACTIONS(4188), 1, - sym__not_in, - ACTIONS(4154), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4158), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4160), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3112), 3, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, - anon_sym_do, - ACTIONS(4170), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4172), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4150), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4174), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4184), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4176), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -275230,1873 +298364,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [130151] = 25, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [153991] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3542), 1, - sym__newline_before_do, - ACTIONS(3784), 1, - anon_sym_DOT, - ACTIONS(3786), 1, - anon_sym_LBRACK2, - ACTIONS(4152), 1, - anon_sym_PIPE, - ACTIONS(4162), 1, - anon_sym_when, - ACTIONS(4164), 1, - anon_sym_COLON_COLON, - ACTIONS(4166), 1, - anon_sym_EQ_GT, - ACTIONS(4168), 1, - anon_sym_EQ, - ACTIONS(4178), 1, - anon_sym_in, - ACTIONS(4180), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4182), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4186), 1, - anon_sym_STAR_STAR, - ACTIONS(4188), 1, - sym__not_in, - ACTIONS(4154), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4158), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4160), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(4767), 1, + aux_sym_sigil_token3, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3544), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_do, - ACTIONS(4170), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4172), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4150), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4174), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4184), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4176), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [130258] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2639), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2641), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [130323] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2635), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2637), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [130388] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3229), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3231), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [130453] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3225), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3227), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [130518] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3221), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3223), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [130583] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3217), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3219), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [130648] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3213), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3215), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [130713] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3209), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3211), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [130778] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3205), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3207), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [130843] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3201), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3203), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [130908] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3197), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3199), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [130973] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3193), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3195), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [131038] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3189), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3191), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [131103] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3185), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3187), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [131168] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3181), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3183), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [131233] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3177), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3179), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [131298] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3173), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3175), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [131363] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3169), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3171), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [131428] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3165), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3167), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [131493] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3161), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3163), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [131558] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3157), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3159), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [131623] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3153), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3155), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [131688] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3149), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3151), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [131753] = 20, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3389), 1, - aux_sym__terminator_token1, - ACTIONS(3656), 1, - anon_sym_EQ, - ACTIONS(3666), 1, - anon_sym_in, - ACTIONS(3668), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3678), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3658), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3660), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3637), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3662), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3664), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [131850] = 18, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3389), 1, - aux_sym__terminator_token1, - ACTIONS(3666), 1, - anon_sym_in, - ACTIONS(3668), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3678), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3660), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3637), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3662), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3664), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 14, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_DASH_GT, - [131943] = 17, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3389), 1, - aux_sym__terminator_token1, - ACTIONS(3666), 1, - anon_sym_in, - ACTIONS(3668), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3678), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3637), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3662), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3664), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 17, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_DASH_GT, - [132034] = 16, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3389), 1, - aux_sym__terminator_token1, - ACTIONS(3666), 1, - anon_sym_in, - ACTIONS(3668), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3678), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3637), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3664), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 22, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_DASH_GT, - [132123] = 14, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3389), 1, - aux_sym__terminator_token1, - ACTIONS(3666), 1, - anon_sym_in, - ACTIONS(3668), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3678), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 35, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_DASH_GT, - [132208] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3135), 3, + ACTIONS(3223), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3137), 49, + ACTIONS(3225), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -277146,433 +298439,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [132273] = 4, + [154059] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2651), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3131), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3133), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [132338] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3542), 1, - aux_sym__terminator_token1, - ACTIONS(3639), 1, - anon_sym_PIPE, - ACTIONS(3652), 1, - anon_sym_COLON_COLON, - ACTIONS(3654), 1, - anon_sym_EQ_GT, - ACTIONS(3656), 1, - anon_sym_EQ, - ACTIONS(3666), 1, - anon_sym_in, - ACTIONS(3668), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3678), 1, - sym__not_in, - ACTIONS(4430), 1, - anon_sym_when, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3647), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3658), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3660), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3544), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - ACTIONS(3637), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3662), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3664), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [132445] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3369), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3371), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [132510] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 37, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_DASH_GT, - [132589] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 37, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_DASH_GT, - [132668] = 10, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 38, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_DASH_GT, - [132745] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3391), 49, - anon_sym_SEMI, + ACTIONS(2653), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -277616,401 +298499,220 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DASH_GT, - [132814] = 4, + anon_sym_DOT, + [154124] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3058), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3060), 49, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [132879] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3127), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3129), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [132944] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3123), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3125), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [133009] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LBRACK2, - ACTIONS(3389), 1, - aux_sym__terminator_token1, - ACTIONS(3654), 1, - anon_sym_EQ_GT, - ACTIONS(3656), 1, - anon_sym_EQ, - ACTIONS(3666), 1, - anon_sym_in, - ACTIONS(3668), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3670), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3674), 1, - anon_sym_STAR_STAR, - ACTIONS(3676), 1, - anon_sym_DOT, - ACTIONS(3678), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3641), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3658), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3660), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3637), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3662), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3672), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - ACTIONS(3664), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [133108] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3281), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3283), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [133173] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3285), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3287), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [133238] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, ACTIONS(3289), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3291), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [154189] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3285), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3287), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [154254] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(4771), 1, + anon_sym_PIPE, + ACTIONS(4777), 1, + anon_sym_COLON_COLON, + ACTIONS(4779), 1, + anon_sym_EQ_GT, + ACTIONS(4781), 1, + anon_sym_EQ, + ACTIONS(4791), 1, + anon_sym_in, + ACTIONS(4793), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4795), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4799), 1, + anon_sym_STAR_STAR, + ACTIONS(4801), 1, + sym__not_in, + ACTIONS(4773), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4775), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4783), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4785), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4769), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4787), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4797), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + ACTIONS(4789), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [154355] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3431), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3291), 49, + ACTIONS(3433), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -278060,7 +298762,534 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [133303] = 4, + [154420] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3427), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3429), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [154485] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(4771), 1, + anon_sym_PIPE, + ACTIONS(4777), 1, + anon_sym_COLON_COLON, + ACTIONS(4779), 1, + anon_sym_EQ_GT, + ACTIONS(4781), 1, + anon_sym_EQ, + ACTIONS(4791), 1, + anon_sym_in, + ACTIONS(4793), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4795), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4799), 1, + anon_sym_STAR_STAR, + ACTIONS(4801), 1, + sym__not_in, + ACTIONS(4805), 1, + anon_sym_when, + ACTIONS(4773), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4775), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4803), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4783), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4785), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3553), 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(4769), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4787), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4797), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4789), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [154590] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2631), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2633), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [154655] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2611), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2613), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [154720] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2647), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2649), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [154785] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3423), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3425), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [154850] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4700), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4702), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4706), 1, + anon_sym_STAR_STAR, + ACTIONS(4708), 1, + anon_sym_DOT, + ACTIONS(4710), 1, + anon_sym_LBRACK2, + ACTIONS(3293), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4674), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4678), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4704), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 35, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_do, + [154931] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__newline_before_do, + ACTIONS(4698), 1, + anon_sym_in, + ACTIONS(4700), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4702), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4706), 1, + anon_sym_STAR_STAR, + ACTIONS(4708), 1, + anon_sym_DOT, + ACTIONS(4710), 1, + anon_sym_LBRACK2, + ACTIONS(4712), 1, + sym__not_in, + ACTIONS(4674), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4678), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4704), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4696), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 25, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_do, + [155018] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, @@ -278121,18 +299350,309 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [133368] = 4, + [155083] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4706), 1, + anon_sym_STAR_STAR, + ACTIONS(4708), 1, + anon_sym_DOT, + ACTIONS(4710), 1, + anon_sym_LBRACK2, + ACTIONS(3293), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3295), 47, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_do, + [155154] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4706), 1, + anon_sym_STAR_STAR, + ACTIONS(4708), 1, + anon_sym_DOT, + ACTIONS(4710), 1, + anon_sym_LBRACK2, + ACTIONS(3293), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4674), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3295), 45, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_do, + [155227] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__newline_before_do, + ACTIONS(4672), 1, + anon_sym_PIPE, + ACTIONS(4682), 1, + anon_sym_when, + ACTIONS(4684), 1, + anon_sym_COLON_COLON, + ACTIONS(4686), 1, + anon_sym_EQ_GT, + ACTIONS(4688), 1, + anon_sym_EQ, + ACTIONS(4698), 1, + anon_sym_in, + ACTIONS(4700), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4702), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4706), 1, + anon_sym_STAR_STAR, + ACTIONS(4708), 1, + anon_sym_DOT, + ACTIONS(4710), 1, + anon_sym_LBRACK2, + ACTIONS(4712), 1, + sym__not_in, + ACTIONS(4674), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4678), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4690), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4692), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4670), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3295), 5, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + ACTIONS(4694), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4704), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4696), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [155332] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__newline_before_do, + ACTIONS(4672), 1, + anon_sym_PIPE, + ACTIONS(4682), 1, + anon_sym_when, + ACTIONS(4684), 1, + anon_sym_COLON_COLON, + ACTIONS(4686), 1, + anon_sym_EQ_GT, + ACTIONS(4688), 1, + anon_sym_EQ, + ACTIONS(4698), 1, + anon_sym_in, + ACTIONS(4700), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4702), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4706), 1, + anon_sym_STAR_STAR, + ACTIONS(4708), 1, + anon_sym_DOT, + ACTIONS(4710), 1, + anon_sym_LBRACK2, + ACTIONS(4712), 1, + sym__not_in, + ACTIONS(4674), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4678), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4690), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4692), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4670), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3295), 5, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + ACTIONS(4694), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4704), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4696), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [155437] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3297), 3, + ACTIONS(3293), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3299), 49, + ACTIONS(3295), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -278182,18 +299702,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [133433] = 4, + [155502] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3301), 3, + ACTIONS(3435), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3303), 49, + ACTIONS(3437), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -278243,5270 +299763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [133498] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3297), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3299), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [133563] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3297), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3299), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [133628] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3080), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3082), 50, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [133693] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3305), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3307), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [133758] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3309), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3311), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [133823] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3357), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3359), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [133888] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3361), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3363), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [133953] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3365), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3367), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [134018] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3465), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3467), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [134083] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3373), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3375), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [134148] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3377), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3379), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [134213] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3558), 1, - sym__newline_before_do, - ACTIONS(3784), 1, - anon_sym_DOT, - ACTIONS(3786), 1, - anon_sym_LBRACK2, - ACTIONS(4152), 1, - anon_sym_PIPE, - ACTIONS(4162), 1, - anon_sym_when, - ACTIONS(4164), 1, - anon_sym_COLON_COLON, - ACTIONS(4166), 1, - anon_sym_EQ_GT, - ACTIONS(4168), 1, - anon_sym_EQ, - ACTIONS(4178), 1, - anon_sym_in, - ACTIONS(4180), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4182), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4186), 1, - anon_sym_STAR_STAR, - ACTIONS(4188), 1, - sym__not_in, - ACTIONS(4154), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4158), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4160), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3560), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_do, - ACTIONS(4170), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4172), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4150), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4174), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4184), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4176), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [134320] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3381), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3383), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [134385] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2647), 5, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(2649), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [134450] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3385), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3387), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [134515] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3385), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3387), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [134580] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3123), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3125), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [134645] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3127), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3129), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [134710] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3381), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3383), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [134775] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2643), 5, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(2645), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [134840] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3381), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3383), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [134905] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4477), 1, - anon_sym_COMMA, - STATE(2919), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3469), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3471), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [134974] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4477), 1, - anon_sym_COMMA, - STATE(2920), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3475), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3477), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [135043] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4479), 1, - anon_sym_COMMA, - STATE(2920), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3479), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3481), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [135112] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3058), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3060), 50, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [135177] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3389), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3391), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [135242] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3393), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3395), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [135307] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3397), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3399), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [135372] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4405), 1, - anon_sym_DOT, - ACTIONS(4407), 1, - anon_sym_LBRACK2, - ACTIONS(3389), 2, - sym__newline_before_do, - sym__not_in, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3391), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_do, - [135441] = 10, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4403), 1, - anon_sym_STAR_STAR, - ACTIONS(4405), 1, - anon_sym_DOT, - ACTIONS(4407), 1, - anon_sym_LBRACK2, - ACTIONS(3389), 2, - sym__newline_before_do, - sym__not_in, - ACTIONS(4371), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4401), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 37, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_do, - [135518] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4399), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4403), 1, - anon_sym_STAR_STAR, - ACTIONS(4405), 1, - anon_sym_DOT, - ACTIONS(4407), 1, - anon_sym_LBRACK2, - ACTIONS(3389), 2, - sym__newline_before_do, - sym__not_in, - ACTIONS(4371), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4401), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 36, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_do, - [135597] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4399), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4403), 1, - anon_sym_STAR_STAR, - ACTIONS(4405), 1, - anon_sym_DOT, - ACTIONS(4407), 1, - anon_sym_LBRACK2, - ACTIONS(3389), 2, - sym__newline_before_do, - sym__not_in, - ACTIONS(4371), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4401), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 36, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_do, - [135676] = 14, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__newline_before_do, - ACTIONS(4395), 1, - anon_sym_in, - ACTIONS(4397), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4399), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4403), 1, - anon_sym_STAR_STAR, - ACTIONS(4405), 1, - anon_sym_DOT, - ACTIONS(4407), 1, - anon_sym_LBRACK2, - ACTIONS(4409), 1, - sym__not_in, - ACTIONS(4371), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4401), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 34, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_do, - [135761] = 16, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__newline_before_do, - ACTIONS(4395), 1, - anon_sym_in, - ACTIONS(4397), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4399), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4403), 1, - anon_sym_STAR_STAR, - ACTIONS(4405), 1, - anon_sym_DOT, - ACTIONS(4407), 1, - anon_sym_LBRACK2, - ACTIONS(4409), 1, - sym__not_in, - ACTIONS(4371), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4367), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4401), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4393), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 21, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_do, - [135850] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3076), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3078), 49, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [135915] = 17, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__newline_before_do, - ACTIONS(4395), 1, - anon_sym_in, - ACTIONS(4397), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4399), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4403), 1, - anon_sym_STAR_STAR, - ACTIONS(4405), 1, - anon_sym_DOT, - ACTIONS(4407), 1, - anon_sym_LBRACK2, - ACTIONS(4409), 1, - sym__not_in, - ACTIONS(4371), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4367), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4391), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4401), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4393), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 16, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_do, - [136006] = 18, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__newline_before_do, - ACTIONS(4395), 1, - anon_sym_in, - ACTIONS(4397), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4399), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4403), 1, - anon_sym_STAR_STAR, - ACTIONS(4405), 1, - anon_sym_DOT, - ACTIONS(4407), 1, - anon_sym_LBRACK2, - ACTIONS(4409), 1, - sym__not_in, - ACTIONS(4371), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4389), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4367), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4391), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4401), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4393), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 13, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_do, - [136099] = 20, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__newline_before_do, - ACTIONS(4385), 1, - anon_sym_EQ, - ACTIONS(4395), 1, - anon_sym_in, - ACTIONS(4397), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4399), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4403), 1, - anon_sym_STAR_STAR, - ACTIONS(4405), 1, - anon_sym_DOT, - ACTIONS(4407), 1, - anon_sym_LBRACK2, - ACTIONS(4409), 1, - sym__not_in, - ACTIONS(4371), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4387), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4389), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4367), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4391), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4401), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 9, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_do, - ACTIONS(4393), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [136196] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3131), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3133), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [136261] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3135), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3137), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [136326] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__newline_before_do, - ACTIONS(4383), 1, - anon_sym_EQ_GT, - ACTIONS(4385), 1, - anon_sym_EQ, - ACTIONS(4395), 1, - anon_sym_in, - ACTIONS(4397), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4399), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4403), 1, - anon_sym_STAR_STAR, - ACTIONS(4405), 1, - anon_sym_DOT, - ACTIONS(4407), 1, - anon_sym_LBRACK2, - ACTIONS(4409), 1, - sym__not_in, - ACTIONS(4371), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4387), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4389), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4367), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4391), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4401), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 8, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_do, - ACTIONS(4393), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [136425] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__newline_before_do, - ACTIONS(4369), 1, - anon_sym_PIPE, - ACTIONS(4381), 1, - anon_sym_COLON_COLON, - ACTIONS(4383), 1, - anon_sym_EQ_GT, - ACTIONS(4385), 1, - anon_sym_EQ, - ACTIONS(4395), 1, - anon_sym_in, - ACTIONS(4397), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4399), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4403), 1, - anon_sym_STAR_STAR, - ACTIONS(4405), 1, - anon_sym_DOT, - ACTIONS(4407), 1, - anon_sym_LBRACK2, - ACTIONS(4409), 1, - sym__not_in, - ACTIONS(4371), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4387), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4389), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4367), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4391), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3391), 6, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_do, - ACTIONS(4401), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4393), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [136528] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3389), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3391), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [136593] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__newline_before_do, - ACTIONS(4369), 1, - anon_sym_PIPE, - ACTIONS(4379), 1, - anon_sym_when, - ACTIONS(4381), 1, - anon_sym_COLON_COLON, - ACTIONS(4383), 1, - anon_sym_EQ_GT, - ACTIONS(4385), 1, - anon_sym_EQ, - ACTIONS(4395), 1, - anon_sym_in, - ACTIONS(4397), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4399), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4403), 1, - anon_sym_STAR_STAR, - ACTIONS(4405), 1, - anon_sym_DOT, - ACTIONS(4407), 1, - anon_sym_LBRACK2, - ACTIONS(4409), 1, - sym__not_in, - ACTIONS(4371), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4387), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4389), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4367), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3391), 5, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_do, - ACTIONS(4391), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4401), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4393), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [136698] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__newline_before_do, - ACTIONS(4369), 1, - anon_sym_PIPE, - ACTIONS(4379), 1, - anon_sym_when, - ACTIONS(4381), 1, - anon_sym_COLON_COLON, - ACTIONS(4383), 1, - anon_sym_EQ_GT, - ACTIONS(4385), 1, - anon_sym_EQ, - ACTIONS(4395), 1, - anon_sym_in, - ACTIONS(4397), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4399), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4403), 1, - anon_sym_STAR_STAR, - ACTIONS(4405), 1, - anon_sym_DOT, - ACTIONS(4407), 1, - anon_sym_LBRACK2, - ACTIONS(4409), 1, - sym__not_in, - ACTIONS(4371), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4387), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4389), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4367), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3391), 5, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_do, - ACTIONS(4391), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4401), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4393), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [136803] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4403), 1, - anon_sym_STAR_STAR, - ACTIONS(4405), 1, - anon_sym_DOT, - ACTIONS(4407), 1, - anon_sym_LBRACK2, - ACTIONS(3389), 2, - sym__newline_before_do, - sym__not_in, - ACTIONS(4371), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3391), 45, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_do, - [136876] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4403), 1, - anon_sym_STAR_STAR, - ACTIONS(4405), 1, - anon_sym_DOT, - ACTIONS(4407), 1, - anon_sym_LBRACK2, - ACTIONS(3389), 2, - sym__newline_before_do, - sym__not_in, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3391), 47, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_do, - [136947] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3389), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3391), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [137012] = 22, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__newline_before_do, - ACTIONS(4369), 1, - anon_sym_PIPE, - ACTIONS(4383), 1, - anon_sym_EQ_GT, - ACTIONS(4385), 1, - anon_sym_EQ, - ACTIONS(4395), 1, - anon_sym_in, - ACTIONS(4397), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4399), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4403), 1, - anon_sym_STAR_STAR, - ACTIONS(4405), 1, - anon_sym_DOT, - ACTIONS(4407), 1, - anon_sym_LBRACK2, - ACTIONS(4409), 1, - sym__not_in, - ACTIONS(4371), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4387), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4389), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4367), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4391), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4401), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 7, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_do, - ACTIONS(4393), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [137113] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__newline_before_do, - ACTIONS(4395), 1, - anon_sym_in, - ACTIONS(4397), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4399), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4403), 1, - anon_sym_STAR_STAR, - ACTIONS(4405), 1, - anon_sym_DOT, - ACTIONS(4407), 1, - anon_sym_LBRACK2, - ACTIONS(4409), 1, - sym__not_in, - ACTIONS(4371), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4401), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4393), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 25, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_do, - [137200] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4397), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4399), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4403), 1, - anon_sym_STAR_STAR, - ACTIONS(4405), 1, - anon_sym_DOT, - ACTIONS(4407), 1, - anon_sym_LBRACK2, - ACTIONS(3389), 2, - sym__newline_before_do, - sym__not_in, - ACTIONS(4371), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4401), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 35, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_do, - [137281] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3401), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3403), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [137346] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3405), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3407), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [137411] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3409), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3411), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [137476] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3413), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3415), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [137541] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3417), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3419), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [137606] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3135), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3137), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [137671] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3131), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3133), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [137736] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2647), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2649), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [137801] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2643), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2645), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [137866] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3421), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3423), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [137931] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3425), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3427), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [137996] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4405), 1, - anon_sym_DOT, - ACTIONS(4407), 1, - anon_sym_LBRACK2, - ACTIONS(3425), 2, - sym__newline_before_do, - sym__not_in, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3427), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_do, - [138065] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3425), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3427), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [138130] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3425), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3427), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [138195] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2994), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(2996), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [138260] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3429), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3431), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [138325] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3433), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3435), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [138390] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4405), 1, - anon_sym_DOT, - ACTIONS(4407), 1, - anon_sym_LBRACK2, - ACTIONS(3433), 2, - sym__newline_before_do, - sym__not_in, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3435), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_do, - [138459] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3433), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3435), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [138524] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3558), 1, - sym__newline_before_do, - ACTIONS(4369), 1, - anon_sym_PIPE, - ACTIONS(4379), 1, - anon_sym_when, - ACTIONS(4381), 1, - anon_sym_COLON_COLON, - ACTIONS(4383), 1, - anon_sym_EQ_GT, - ACTIONS(4385), 1, - anon_sym_EQ, - ACTIONS(4395), 1, - anon_sym_in, - ACTIONS(4397), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4399), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4403), 1, - anon_sym_STAR_STAR, - ACTIONS(4405), 1, - anon_sym_DOT, - ACTIONS(4407), 1, - anon_sym_LBRACK2, - ACTIONS(4409), 1, - sym__not_in, - ACTIONS(4371), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4377), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3560), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_do, - ACTIONS(4387), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4389), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4367), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4391), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4401), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4393), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [138631] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3433), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3435), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [138696] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3437), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3439), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [138761] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3441), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3443), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [138826] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3445), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3447), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [138891] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3127), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3129), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [138956] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3123), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3125), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [139021] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2639), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2641), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [139086] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2635), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2637), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [139151] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3026), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3022), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3024), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [139218] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3026), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3050), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3052), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [139285] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3494), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3496), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [139350] = 4, + [155567] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, @@ -283567,1695 +299824,945 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [139415] = 4, + [155632] = 23, ACTIONS(5), 1, sym_comment, + ACTIONS(3293), 1, + sym__newline_before_do, + ACTIONS(4672), 1, + anon_sym_PIPE, + ACTIONS(4684), 1, + anon_sym_COLON_COLON, + ACTIONS(4686), 1, + anon_sym_EQ_GT, + ACTIONS(4688), 1, + anon_sym_EQ, + ACTIONS(4698), 1, + anon_sym_in, + ACTIONS(4700), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4702), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4706), 1, + anon_sym_STAR_STAR, + ACTIONS(4708), 1, + anon_sym_DOT, + ACTIONS(4710), 1, + anon_sym_LBRACK2, + ACTIONS(4712), 1, + sym__not_in, + ACTIONS(4674), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4678), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4690), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4692), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4670), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4694), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3295), 6, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_do, + ACTIONS(4704), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4696), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [155735] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__newline_before_do, + ACTIONS(4686), 1, + anon_sym_EQ_GT, + ACTIONS(4688), 1, + anon_sym_EQ, + ACTIONS(4698), 1, + anon_sym_in, + ACTIONS(4700), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4702), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4706), 1, + anon_sym_STAR_STAR, + ACTIONS(4708), 1, + anon_sym_DOT, + ACTIONS(4710), 1, + anon_sym_LBRACK2, + ACTIONS(4712), 1, + sym__not_in, + ACTIONS(4674), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4678), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4690), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4692), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4670), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4694), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4704), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 8, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_do, + ACTIONS(4696), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [155834] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__newline_before_do, + ACTIONS(4688), 1, + anon_sym_EQ, + ACTIONS(4698), 1, + anon_sym_in, + ACTIONS(4700), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4702), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4706), 1, + anon_sym_STAR_STAR, + ACTIONS(4708), 1, + anon_sym_DOT, + ACTIONS(4710), 1, + anon_sym_LBRACK2, + ACTIONS(4712), 1, + sym__not_in, + ACTIONS(4674), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4678), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4690), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4692), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4670), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4694), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4704), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 9, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_do, + ACTIONS(4696), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [155931] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__newline_before_do, + ACTIONS(4698), 1, + anon_sym_in, + ACTIONS(4700), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4702), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4706), 1, + anon_sym_STAR_STAR, + ACTIONS(4708), 1, + anon_sym_DOT, + ACTIONS(4710), 1, + anon_sym_LBRACK2, + ACTIONS(4712), 1, + sym__not_in, + ACTIONS(4674), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4678), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4692), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4670), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4694), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4704), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4696), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 13, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_do, + [156024] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__newline_before_do, + ACTIONS(4698), 1, + anon_sym_in, + ACTIONS(4700), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4702), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4706), 1, + anon_sym_STAR_STAR, + ACTIONS(4708), 1, + anon_sym_DOT, + ACTIONS(4710), 1, + anon_sym_LBRACK2, + ACTIONS(4712), 1, + sym__not_in, + ACTIONS(4674), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4678), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4670), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4694), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4704), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4696), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 16, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_do, + [156115] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__newline_before_do, + ACTIONS(4698), 1, + anon_sym_in, + ACTIONS(4700), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4702), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4706), 1, + anon_sym_STAR_STAR, + ACTIONS(4708), 1, + anon_sym_DOT, + ACTIONS(4710), 1, + anon_sym_LBRACK2, + ACTIONS(4712), 1, + sym__not_in, + ACTIONS(4674), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4678), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4670), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4704), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4696), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 21, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_do, + [156204] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__newline_before_do, + ACTIONS(4698), 1, + anon_sym_in, + ACTIONS(4700), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4702), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4706), 1, + anon_sym_STAR_STAR, + ACTIONS(4708), 1, + anon_sym_DOT, + ACTIONS(4710), 1, + anon_sym_LBRACK2, + ACTIONS(4712), 1, + sym__not_in, + ACTIONS(4674), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4678), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4704), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 34, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_do, + [156289] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4702), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4706), 1, + anon_sym_STAR_STAR, + ACTIONS(4708), 1, + anon_sym_DOT, + ACTIONS(4710), 1, + anon_sym_LBRACK2, + ACTIONS(3293), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4674), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4678), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4704), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 36, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_do, + [156368] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4702), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4706), 1, + anon_sym_STAR_STAR, + ACTIONS(4708), 1, + anon_sym_DOT, + ACTIONS(4710), 1, + anon_sym_LBRACK2, + ACTIONS(3293), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4674), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4678), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4704), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 36, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_do, + [156447] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4706), 1, + anon_sym_STAR_STAR, + ACTIONS(4708), 1, + anon_sym_DOT, + ACTIONS(4710), 1, + anon_sym_LBRACK2, + ACTIONS(3293), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4674), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4678), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4704), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 37, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_do, + [156524] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4708), 1, + anon_sym_DOT, + ACTIONS(4710), 1, + anon_sym_LBRACK2, + ACTIONS(3293), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3295), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_do, + [156593] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3341), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3343), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [156658] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4807), 1, + anon_sym_COMMA, + STATE(3229), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3080), 4, + ACTIONS(3134), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3136), 48, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [156727] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4810), 1, + anon_sym_COMMA, + STATE(3230), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3134), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3082), 49, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [139480] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2972), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(2974), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [139545] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3453), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3455), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [139610] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3453), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3455), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [139675] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3453), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3455), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [139740] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3457), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3459), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [139805] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3457), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3459), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [139870] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3022), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3024), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [139935] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3050), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3052), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [140000] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3461), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3463), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [140065] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3233), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3235), 50, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [140130] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4434), 1, - anon_sym_PIPE, - ACTIONS(4442), 1, - anon_sym_when, - ACTIONS(4444), 1, - anon_sym_COLON_COLON, - ACTIONS(4446), 1, - anon_sym_EQ_GT, - ACTIONS(4448), 1, - anon_sym_EQ, - ACTIONS(4458), 1, - anon_sym_in, - ACTIONS(4460), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4462), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4466), 1, - anon_sym_STAR_STAR, - ACTIONS(4468), 1, - sym__not_in, - ACTIONS(4436), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4438), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4440), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4450), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4452), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3560), 4, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(4432), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4454), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4464), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4456), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [140235] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__not_in, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4460), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4462), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4466), 1, - anon_sym_STAR_STAR, - ACTIONS(4436), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4438), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4464), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 36, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - [140316] = 14, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4458), 1, - anon_sym_in, - ACTIONS(4460), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4462), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4466), 1, - anon_sym_STAR_STAR, - ACTIONS(4468), 1, - sym__not_in, - ACTIONS(4436), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4438), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4464), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4456), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 26, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [140401] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4434), 1, - anon_sym_PIPE, - ACTIONS(4446), 1, - anon_sym_EQ_GT, - ACTIONS(4448), 1, - anon_sym_EQ, - ACTIONS(4458), 1, - anon_sym_in, - ACTIONS(4460), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4462), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4466), 1, - anon_sym_STAR_STAR, - ACTIONS(4468), 1, - sym__not_in, - ACTIONS(4436), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4438), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4450), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4452), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4432), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4454), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4464), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 8, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - ACTIONS(4456), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [140500] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__not_in, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4466), 1, - anon_sym_STAR_STAR, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3391), 48, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - [140571] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__not_in, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4466), 1, - anon_sym_STAR_STAR, - ACTIONS(4436), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3391), 46, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - [140644] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3269), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3271), 50, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [140709] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3106), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3108), 50, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [140774] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3265), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3267), 50, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [140839] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3261), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3263), 50, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [140904] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3257), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3259), 50, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [140969] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3253), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3255), 50, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [141034] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3249), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3251), 50, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [141099] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3245), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3247), 50, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [141164] = 26, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4434), 1, - anon_sym_PIPE, - ACTIONS(4442), 1, - anon_sym_when, - ACTIONS(4444), 1, - anon_sym_COLON_COLON, - ACTIONS(4446), 1, - anon_sym_EQ_GT, - ACTIONS(4448), 1, - anon_sym_EQ, - ACTIONS(4458), 1, - anon_sym_in, - ACTIONS(4460), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4462), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4466), 1, - anon_sym_STAR_STAR, - ACTIONS(4468), 1, - sym__not_in, - ACTIONS(4484), 1, - anon_sym_COMMA, - STATE(4574), 1, - aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(4436), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4438), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4440), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(4482), 2, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4450), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4452), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4432), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4454), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4464), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4456), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [141273] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2639), 5, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(2641), 48, + ACTIONS(3136), 47, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -285298,129 +300805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [141338] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2635), 5, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(2637), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [141403] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3241), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3243), 50, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [141468] = 4, + [156796] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -285481,17 +300866,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [141533] = 4, + [156861] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3213), 3, + ACTIONS(3496), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3215), 50, + ACTIONS(3498), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -285542,7 +300927,985 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [141598] = 4, + [156926] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3486), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3488), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [156991] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3307), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3309), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [157056] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3303), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3305), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [157121] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2631), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2633), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [157186] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2611), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2613), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [157251] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3468), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3470), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [157316] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3211), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3213), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [157381] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3534), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3536), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [157446] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3118), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3120), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [157511] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4708), 1, + anon_sym_DOT, + ACTIONS(4710), 1, + anon_sym_LBRACK2, + ACTIONS(3118), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3120), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_do, + [157580] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3118), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3120), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [157645] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3118), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3120), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [157710] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3215), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3217), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [157775] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3141), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3143), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [157840] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3064), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3066), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [157905] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3145), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3147), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [157970] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -285603,210 +301966,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [141663] = 4, + [158035] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3225), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3227), 50, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [141728] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3221), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3223), 50, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [141793] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3217), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3219), 50, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [141858] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4486), 1, - anon_sym_COMMA, - STATE(3037), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3469), 4, + ACTIONS(3289), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3471), 47, + ACTIONS(3291), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -285849,17 +302027,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [141927] = 4, + [158100] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3155), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3157), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [158165] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3209), 3, + ACTIONS(3233), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3211), 50, + ACTIONS(3235), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -285910,17 +302149,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [141992] = 4, + [158230] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3205), 3, + ACTIONS(3241), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3207), 50, + ACTIONS(3243), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -285971,24 +302210,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [142057] = 4, + [158295] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3058), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3201), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3203), 50, - anon_sym_SEMI, + ACTIONS(3060), 50, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -286031,25 +302269,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [142122] = 4, + [158360] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2996), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3197), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3199), 50, - anon_sym_SEMI, + ACTIONS(2998), 50, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -286092,30 +302330,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [142187] = 7, + [158425] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3784), 1, - anon_sym_DOT, - ACTIONS(3786), 1, + ACTIONS(4813), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(4186), 1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3389), 2, + anon_sym_DASH_GT, + anon_sym_DOT, + [158492] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3191), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3193), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [158557] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4708), 1, + anon_sym_DOT, + ACTIONS(4710), 1, + anon_sym_LBRACK2, + ACTIONS(3191), 2, sym__newline_before_do, sym__not_in, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3391), 47, - anon_sym_LBRACE, + ACTIONS(3193), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -286156,18 +302516,467 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_GT, anon_sym_STAR, + anon_sym_STAR_STAR, anon_sym_do, - [142258] = 4, + [158626] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3191), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3193), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [158691] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3551), 1, + sym__newline_before_do, + ACTIONS(4672), 1, + anon_sym_PIPE, + ACTIONS(4682), 1, + anon_sym_when, + ACTIONS(4684), 1, + anon_sym_COLON_COLON, + ACTIONS(4686), 1, + anon_sym_EQ_GT, + ACTIONS(4688), 1, + anon_sym_EQ, + ACTIONS(4698), 1, + anon_sym_in, + ACTIONS(4700), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4702), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4706), 1, + anon_sym_STAR_STAR, + ACTIONS(4708), 1, + anon_sym_DOT, + ACTIONS(4710), 1, + anon_sym_LBRACK2, + ACTIONS(4712), 1, + sym__not_in, + ACTIONS(4674), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4678), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4680), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3553), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_do, + ACTIONS(4690), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4692), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4670), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4694), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4704), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4696), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [158798] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3191), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3193), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [158863] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3265), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3267), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [158928] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3269), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3271), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [158993] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3281), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3283), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [159058] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3189), 3, + ACTIONS(3285), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3287), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [159123] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3245), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3191), 50, + ACTIONS(3247), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -286218,19 +303027,706 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [142323] = 4, + [159188] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3323), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3325), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [159253] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3293), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3295), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [159318] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__not_in, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(4793), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4795), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4799), 1, + anon_sym_STAR_STAR, + ACTIONS(4773), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4775), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4797), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 36, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + [159399] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(4791), 1, + anon_sym_in, + ACTIONS(4793), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4795), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4799), 1, + anon_sym_STAR_STAR, + ACTIONS(4801), 1, + sym__not_in, + ACTIONS(4773), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4775), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4797), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4789), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 26, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [159484] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(4771), 1, + anon_sym_PIPE, + ACTIONS(4779), 1, + anon_sym_EQ_GT, + ACTIONS(4781), 1, + anon_sym_EQ, + ACTIONS(4791), 1, + anon_sym_in, + ACTIONS(4793), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4795), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4799), 1, + anon_sym_STAR_STAR, + ACTIONS(4801), 1, + sym__not_in, + ACTIONS(4773), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4775), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4783), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4785), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4769), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4787), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4797), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + ACTIONS(4789), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [159583] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__not_in, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(4799), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3295), 48, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + [159654] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__not_in, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(4799), 1, + anon_sym_STAR_STAR, + ACTIONS(4773), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3295), 46, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + [159727] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(4771), 1, + anon_sym_PIPE, + ACTIONS(4777), 1, + anon_sym_COLON_COLON, + ACTIONS(4779), 1, + anon_sym_EQ_GT, + ACTIONS(4781), 1, + anon_sym_EQ, + ACTIONS(4791), 1, + anon_sym_in, + ACTIONS(4793), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4795), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4799), 1, + anon_sym_STAR_STAR, + ACTIONS(4801), 1, + sym__not_in, + ACTIONS(4805), 1, + anon_sym_when, + ACTIONS(4773), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4775), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4783), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4785), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4769), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4787), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3295), 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4797), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4789), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [159830] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3114), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3116), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [159895] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(4779), 1, + anon_sym_EQ_GT, + ACTIONS(4781), 1, + anon_sym_EQ, + ACTIONS(4791), 1, + anon_sym_in, + ACTIONS(4793), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4795), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4799), 1, + anon_sym_STAR_STAR, + ACTIONS(4801), 1, + sym__not_in, + ACTIONS(4773), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4775), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4783), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4785), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4769), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4787), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4797), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 9, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + ACTIONS(4789), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [159992] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3185), 3, + ACTIONS(2647), 4, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3187), 50, + ACTIONS(2649), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -286279,27 +303775,478 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [142388] = 4, + [160057] = 12, ACTIONS(5), 1, sym_comment, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3675), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3181), 3, + ACTIONS(3293), 2, sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3183), 50, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 36, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_DASH_GT, + [160138] = 19, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(4781), 1, + anon_sym_EQ, + ACTIONS(4791), 1, + anon_sym_in, + ACTIONS(4793), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4795), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4799), 1, + anon_sym_STAR_STAR, + ACTIONS(4801), 1, + sym__not_in, + ACTIONS(4773), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4775), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4783), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4785), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4769), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4787), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4797), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4789), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 10, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + [160233] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(4791), 1, + anon_sym_in, + ACTIONS(4793), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4795), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4799), 1, + anon_sym_STAR_STAR, + ACTIONS(4801), 1, + sym__not_in, + ACTIONS(4773), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4775), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4785), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4769), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4787), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4797), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4789), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 14, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + [160324] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(4791), 1, + anon_sym_in, + ACTIONS(4793), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4795), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4799), 1, + anon_sym_STAR_STAR, + ACTIONS(4801), 1, + sym__not_in, + ACTIONS(4773), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4775), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4769), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4787), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4797), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4789), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 17, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + [160413] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(4791), 1, + anon_sym_in, + ACTIONS(4793), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4795), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4799), 1, + anon_sym_STAR_STAR, + ACTIONS(4801), 1, + sym__not_in, + ACTIONS(4773), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4775), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4769), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4797), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4789), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 22, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + [160500] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(4791), 1, + anon_sym_in, + ACTIONS(4793), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4795), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4799), 1, + anon_sym_STAR_STAR, + ACTIONS(4801), 1, + sym__not_in, + ACTIONS(4773), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4775), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4797), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 35, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [160583] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__not_in, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(4795), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4799), 1, + anon_sym_STAR_STAR, + ACTIONS(4773), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4775), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4797), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 37, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -286330,37 +304277,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, + [160662] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__not_in, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(4795), 1, anon_sym_SLASH_SLASH, + ACTIONS(4799), 1, + anon_sym_STAR_STAR, + ACTIONS(4773), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4775), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4797), 6, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [142453] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3177), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3179), 50, - anon_sym_SEMI, + ACTIONS(3295), 37, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -286391,385 +304345,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [142518] = 4, + [160741] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3173), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3175), 50, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, + ACTIONS(4815), 1, anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [142583] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3169), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3171), 50, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [142648] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3165), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3167), 50, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [142713] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3161), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3163), 50, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [142778] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3157), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3159), 50, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [142843] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3153), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3155), 50, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [142908] = 4, - ACTIONS(5), 1, - sym_comment, + STATE(3229), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -286777,15 +304359,13 @@ static const uint16_t ts_small_parse_table[] = { sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3151), 50, + ACTIONS(3151), 48, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -286828,1046 +304408,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [142973] = 6, + [160810] = 10, ACTIONS(5), 1, sym_comment, - ACTIONS(4488), 1, - anon_sym_COMMA, - STATE(3032), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3479), 4, + ACTIONS(3293), 1, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3481), 47, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, + ACTIONS(4727), 1, anon_sym_DOT, - [143042] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, + ACTIONS(4729), 1, anon_sym_LBRACK2, - ACTIONS(4434), 1, - anon_sym_PIPE, - ACTIONS(4442), 1, - anon_sym_when, - ACTIONS(4444), 1, - anon_sym_COLON_COLON, - ACTIONS(4446), 1, - anon_sym_EQ_GT, - ACTIONS(4448), 1, - anon_sym_EQ, - ACTIONS(4458), 1, - anon_sym_in, - ACTIONS(4460), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4462), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4466), 1, + ACTIONS(4799), 1, anon_sym_STAR_STAR, - ACTIONS(4468), 1, - sym__not_in, - ACTIONS(4436), 2, + ACTIONS(4773), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4438), 2, + ACTIONS(4775), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4450), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4452), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4432), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4454), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3391), 6, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(4464), 6, + ACTIONS(4797), 6, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - ACTIONS(4456), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [143145] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4434), 1, - anon_sym_PIPE, - ACTIONS(4442), 1, - anon_sym_when, - ACTIONS(4444), 1, - anon_sym_COLON_COLON, - ACTIONS(4446), 1, - anon_sym_EQ_GT, - ACTIONS(4448), 1, - anon_sym_EQ, - ACTIONS(4458), 1, - anon_sym_in, - ACTIONS(4460), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4462), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4466), 1, - anon_sym_STAR_STAR, - ACTIONS(4468), 1, - sym__not_in, - ACTIONS(4436), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4438), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4450), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4452), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4432), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4454), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3391), 6, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(4464), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4456), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [143248] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3749), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3143), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3145), 49, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [143315] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3542), 1, - sym__newline_before_do, - ACTIONS(4369), 1, - anon_sym_PIPE, - ACTIONS(4379), 1, - anon_sym_when, - ACTIONS(4381), 1, - anon_sym_COLON_COLON, - ACTIONS(4383), 1, - anon_sym_EQ_GT, - ACTIONS(4385), 1, - anon_sym_EQ, - ACTIONS(4395), 1, - anon_sym_in, - ACTIONS(4397), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4399), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4403), 1, - anon_sym_STAR_STAR, - ACTIONS(4405), 1, - anon_sym_DOT, - ACTIONS(4407), 1, - anon_sym_LBRACK2, - ACTIONS(4409), 1, - sym__not_in, - ACTIONS(4371), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4377), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3544), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_do, - ACTIONS(4387), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4389), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4367), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4391), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4401), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4393), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [143422] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4486), 1, - anon_sym_COMMA, - STATE(3032), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3475), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3477), 47, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [143491] = 22, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4434), 1, - anon_sym_PIPE, - ACTIONS(4444), 1, - anon_sym_COLON_COLON, - ACTIONS(4446), 1, - anon_sym_EQ_GT, - ACTIONS(4448), 1, - anon_sym_EQ, - ACTIONS(4458), 1, - anon_sym_in, - ACTIONS(4460), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4462), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4466), 1, - anon_sym_STAR_STAR, - ACTIONS(4468), 1, - sym__not_in, - ACTIONS(4436), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4438), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4450), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4452), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4432), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4454), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4464), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 7, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - ACTIONS(4456), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [143592] = 20, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4446), 1, - anon_sym_EQ_GT, - ACTIONS(4448), 1, - anon_sym_EQ, - ACTIONS(4458), 1, - anon_sym_in, - ACTIONS(4460), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4462), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4466), 1, - anon_sym_STAR_STAR, - ACTIONS(4468), 1, - sym__not_in, - ACTIONS(4436), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4438), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4450), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4452), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4432), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4454), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4464), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 9, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - ACTIONS(4456), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [143689] = 17, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4458), 1, - anon_sym_in, - ACTIONS(4460), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4462), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4466), 1, - anon_sym_STAR_STAR, - ACTIONS(4468), 1, - sym__not_in, - ACTIONS(4436), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4438), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4452), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4432), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4454), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4464), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4456), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 14, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - [143780] = 16, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4458), 1, - anon_sym_in, - ACTIONS(4460), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4462), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4466), 1, - anon_sym_STAR_STAR, - ACTIONS(4468), 1, - sym__not_in, - ACTIONS(4436), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4438), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4432), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4454), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4464), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4456), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 17, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - [143869] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4458), 1, - anon_sym_in, - ACTIONS(4460), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4462), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4466), 1, - anon_sym_STAR_STAR, - ACTIONS(4468), 1, - sym__not_in, - ACTIONS(4436), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4438), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4432), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4464), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4456), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 22, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - [143956] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4458), 1, - anon_sym_in, - ACTIONS(4460), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4462), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4466), 1, - anon_sym_STAR_STAR, - ACTIONS(4468), 1, - sym__not_in, - ACTIONS(4436), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4438), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4464), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 35, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [144039] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__not_in, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4462), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4466), 1, - anon_sym_STAR_STAR, - ACTIONS(4436), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4438), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4464), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 37, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - [144118] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__not_in, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4462), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4466), 1, - anon_sym_STAR_STAR, - ACTIONS(4436), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4438), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4464), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 37, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - [144197] = 10, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__not_in, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4466), 1, - anon_sym_STAR_STAR, - ACTIONS(4436), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4438), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4464), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 38, + ACTIONS(3295), 38, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_RBRACK, @@ -287906,348 +304475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - [144274] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3110), 1, - sym__newline_before_do, - ACTIONS(4369), 1, - anon_sym_PIPE, - ACTIONS(4379), 1, - anon_sym_when, - ACTIONS(4381), 1, - anon_sym_COLON_COLON, - ACTIONS(4383), 1, - anon_sym_EQ_GT, - ACTIONS(4385), 1, - anon_sym_EQ, - ACTIONS(4395), 1, - anon_sym_in, - ACTIONS(4397), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4399), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4403), 1, - anon_sym_STAR_STAR, - ACTIONS(4405), 1, - anon_sym_DOT, - ACTIONS(4407), 1, - anon_sym_LBRACK2, - ACTIONS(4409), 1, - sym__not_in, - ACTIONS(4371), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4377), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3112), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_do, - ACTIONS(4387), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4389), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4367), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4391), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4401), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4393), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [144381] = 19, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4448), 1, - anon_sym_EQ, - ACTIONS(4458), 1, - anon_sym_in, - ACTIONS(4460), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4462), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4466), 1, - anon_sym_STAR_STAR, - ACTIONS(4468), 1, - sym__not_in, - ACTIONS(4436), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4438), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4450), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4452), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4432), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4454), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4464), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4456), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 10, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - [144476] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3044), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3046), 50, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [144541] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3096), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3098), 50, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [144606] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3018), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3020), 50, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [144671] = 4, + [160887] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3090), 2, @@ -288308,17 +304536,1058 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [144736] = 4, + [160952] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3072), 2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3253), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3255), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [161017] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3259), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3261), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [161082] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3026), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3028), 49, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [161147] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3122), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3124), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [161212] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3122), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3124), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [161277] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3273), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3275), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [161342] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2611), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2613), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [161407] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3303), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3305), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [161472] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3110), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3074), 50, + ACTIONS(3112), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [161537] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3114), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3116), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [161602] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2651), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2653), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [161667] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4815), 1, + anon_sym_COMMA, + STATE(3286), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3219), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3221), 48, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [161736] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3004), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3000), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3002), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [161803] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3010), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3006), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3008), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [161870] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3516), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3518), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [161935] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3297), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3299), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [162000] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3297), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3299), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [162065] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2990), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2992), 50, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, @@ -288369,24 +305638,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [144801] = 4, + [162130] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3269), 2, - sym__not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3271), 50, - anon_sym_RPAREN, + ACTIONS(3134), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3136), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -288428,26 +305697,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [144866] = 4, + anon_sym_do, + [162195] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3106), 2, - sym__not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3108), 50, - anon_sym_RPAREN, + ACTIONS(3203), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3205), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -288489,26 +305758,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [144931] = 4, + anon_sym_do, + [162260] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3265), 2, - sym__not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3267), 50, - anon_sym_RPAREN, + ACTIONS(2972), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2974), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -288550,26 +305819,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [144996] = 4, + anon_sym_do, + [162325] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3261), 2, - sym__not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3263), 50, - anon_sym_RPAREN, + ACTIONS(3319), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3321), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -288611,26 +305880,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [145061] = 4, + anon_sym_do, + [162390] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3257), 2, - sym__not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3259), 50, - anon_sym_RPAREN, + ACTIONS(3319), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3321), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -288672,26 +305941,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [145126] = 4, + anon_sym_do, + [162455] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3253), 2, - sym__not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3255), 50, - anon_sym_RPAREN, + ACTIONS(3319), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3321), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -288733,26 +306002,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [145191] = 4, + anon_sym_do, + [162520] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3249), 2, - sym__not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3251), 50, - anon_sym_RPAREN, + ACTIONS(3327), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3329), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -288794,26 +306063,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [145256] = 4, + anon_sym_do, + [162585] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3245), 2, - sym__not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3247), 50, - anon_sym_RPAREN, + ACTIONS(3327), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3329), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -288855,26 +306124,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [145321] = 4, + anon_sym_do, + [162650] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3241), 2, - sym__not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3243), 50, - anon_sym_RPAREN, + ACTIONS(3006), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3008), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -288916,9 +306185,253 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [145386] = 4, + anon_sym_do, + [162715] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3000), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3002), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [162780] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3000), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3002), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [162845] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3006), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3008), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [162910] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3122), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3124), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [162975] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3237), 2, @@ -288979,17 +306492,1091 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [145451] = 4, + [163040] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3233), 2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3130), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3132), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [163105] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [163170] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [163235] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [163300] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [163365] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [163430] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [163495] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [163560] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [163625] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [163690] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [163755] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__newline_before_do, + ACTIONS(4672), 1, + anon_sym_PIPE, + ACTIONS(4686), 1, + anon_sym_EQ_GT, + ACTIONS(4688), 1, + anon_sym_EQ, + ACTIONS(4698), 1, + anon_sym_in, + ACTIONS(4700), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4702), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4706), 1, + anon_sym_STAR_STAR, + ACTIONS(4708), 1, + anon_sym_DOT, + ACTIONS(4710), 1, + anon_sym_LBRACK2, + ACTIONS(4712), 1, + sym__not_in, + ACTIONS(4674), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4678), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4690), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4692), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4670), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4694), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4704), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 7, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_do, + ACTIONS(4696), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [163856] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(4771), 1, + anon_sym_PIPE, + ACTIONS(4777), 1, + anon_sym_COLON_COLON, + ACTIONS(4779), 1, + anon_sym_EQ_GT, + ACTIONS(4781), 1, + anon_sym_EQ, + ACTIONS(4791), 1, + anon_sym_in, + ACTIONS(4793), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4795), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4799), 1, + anon_sym_STAR_STAR, + ACTIONS(4801), 1, + sym__not_in, + ACTIONS(4805), 1, + anon_sym_when, + ACTIONS(4773), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4775), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4783), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4785), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4769), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4787), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3295), 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4797), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4789), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [163959] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [164024] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [164089] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [164154] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [164219] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3496), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3235), 50, + ACTIONS(3498), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -289040,7 +307627,18300 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [145516] = 4, + [164284] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3486), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3488), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [164349] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3403), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3405), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [164414] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3407), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3409), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [164479] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3468), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3470), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [164544] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [164609] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [164674] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [164739] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [164804] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [164869] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [164934] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3159), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3161), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [164999] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3163), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3165), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [165064] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3167), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3169), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [165129] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3171), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3173), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [165194] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3175), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3177), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [165259] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4817), 1, + anon_sym_COMMA, + STATE(3354), 1, + aux_sym_keywords_repeat1, + ACTIONS(3134), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3136), 48, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [165328] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3179), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3181), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [165393] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3026), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3028), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [165458] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3183), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3185), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [165523] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3183), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3185), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [165588] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3187), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3189), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [165653] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3195), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3197), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [165718] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3199), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3201), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [165783] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3526), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3528), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [165848] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3207), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3209), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [165913] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4820), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [165980] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4822), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [166047] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4824), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [166114] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4826), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [166181] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4828), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [166248] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4830), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [166315] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4832), 1, + anon_sym_COMMA, + STATE(3354), 1, + aux_sym_keywords_repeat1, + ACTIONS(3149), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3151), 48, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [166384] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3110), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3112), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [166449] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4251), 1, + anon_sym_LPAREN, + STATE(2894), 1, + sym__call_arguments_with_parentheses, + ACTIONS(2972), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2974), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [166518] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3315), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3317), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [166583] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4251), 1, + anon_sym_LPAREN, + STATE(2893), 1, + sym__call_arguments_with_parentheses, + ACTIONS(2972), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2974), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [166652] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4251), 1, + anon_sym_LPAREN, + STATE(2890), 1, + sym__call_arguments_with_parentheses, + ACTIONS(2972), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2974), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [166721] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3010), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3006), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3008), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [166788] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3004), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3000), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3002), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [166855] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3345), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3347), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [166920] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3351), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3353), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [166985] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3183), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3185), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [167050] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3411), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3413), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [167115] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3415), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3417), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [167180] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3090), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3092), 49, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [167245] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3480), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3482), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [167310] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3295), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + [167379] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 38, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_DASH_GT, + [167456] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 37, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_DASH_GT, + [167535] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 37, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_DASH_GT, + [167614] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3293), 1, + aux_sym__terminator_token1, + ACTIONS(3673), 1, + anon_sym_in, + ACTIONS(3675), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 35, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_DASH_GT, + [167699] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3293), 1, + aux_sym__terminator_token1, + ACTIONS(3673), 1, + anon_sym_in, + ACTIONS(3675), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3644), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3671), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 22, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_DASH_GT, + [167788] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3293), 1, + aux_sym__terminator_token1, + ACTIONS(3673), 1, + anon_sym_in, + ACTIONS(3675), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3644), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3669), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3671), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 17, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_DASH_GT, + [167879] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3293), 1, + aux_sym__terminator_token1, + ACTIONS(3673), 1, + anon_sym_in, + ACTIONS(3675), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3667), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3644), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3669), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3671), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 14, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_DASH_GT, + [167972] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3293), 1, + aux_sym__terminator_token1, + ACTIONS(3663), 1, + anon_sym_EQ, + ACTIONS(3673), 1, + anon_sym_in, + ACTIONS(3675), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3665), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3667), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3644), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3669), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3671), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [168069] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3293), 1, + aux_sym__terminator_token1, + ACTIONS(3661), 1, + anon_sym_EQ_GT, + ACTIONS(3663), 1, + anon_sym_EQ, + ACTIONS(3673), 1, + anon_sym_in, + ACTIONS(3675), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3665), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3667), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3644), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3669), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + ACTIONS(3671), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [168168] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3293), 1, + aux_sym__terminator_token1, + ACTIONS(3646), 1, + anon_sym_PIPE, + ACTIONS(3659), 1, + anon_sym_COLON_COLON, + ACTIONS(3661), 1, + anon_sym_EQ_GT, + ACTIONS(3663), 1, + anon_sym_EQ, + ACTIONS(3673), 1, + anon_sym_in, + ACTIONS(3675), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3665), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3667), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3644), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3669), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_DASH_GT, + ACTIONS(3671), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [168271] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3293), 1, + aux_sym__terminator_token1, + ACTIONS(3646), 1, + anon_sym_PIPE, + ACTIONS(3659), 1, + anon_sym_COLON_COLON, + ACTIONS(3661), 1, + anon_sym_EQ_GT, + ACTIONS(3663), 1, + anon_sym_EQ, + ACTIONS(3673), 1, + anon_sym_in, + ACTIONS(3675), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + sym__not_in, + ACTIONS(4834), 1, + anon_sym_when, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3665), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3667), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3644), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3669), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3295), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_DASH_GT, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3671), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [168376] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3293), 1, + aux_sym__terminator_token1, + ACTIONS(3646), 1, + anon_sym_PIPE, + ACTIONS(3659), 1, + anon_sym_COLON_COLON, + ACTIONS(3661), 1, + anon_sym_EQ_GT, + ACTIONS(3663), 1, + anon_sym_EQ, + ACTIONS(3673), 1, + anon_sym_in, + ACTIONS(3675), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + sym__not_in, + ACTIONS(4834), 1, + anon_sym_when, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3665), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3667), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3644), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3669), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3295), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_DASH_GT, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3671), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [168481] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3295), 46, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_DASH_GT, + [168554] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3295), 48, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_DASH_GT, + [168625] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3293), 1, + aux_sym__terminator_token1, + ACTIONS(3646), 1, + anon_sym_PIPE, + ACTIONS(3661), 1, + anon_sym_EQ_GT, + ACTIONS(3663), 1, + anon_sym_EQ, + ACTIONS(3673), 1, + anon_sym_in, + ACTIONS(3675), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3665), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3667), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3644), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3669), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 8, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + ACTIONS(3671), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [168726] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3293), 1, + aux_sym__terminator_token1, + ACTIONS(3673), 1, + anon_sym_in, + ACTIONS(3675), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3671), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 26, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DASH_GT, + [168813] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3530), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3532), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [168878] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4836), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [168945] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3875), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [169012] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3307), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3309), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [169077] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2651), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2653), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [169142] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3865), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [169209] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3867), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [169276] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3869), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [169343] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3871), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [169410] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3873), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [169477] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3277), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3279), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [169542] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3877), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [169609] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3879), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [169676] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3881), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [169743] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3883), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [169810] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3885), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [169877] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3887), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [169944] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3889), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [170011] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3891), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [170078] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3893), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [170145] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3895), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [170212] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3897), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [170279] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3899), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [170346] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3901), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [170413] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3903), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [170480] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3500), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3502), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [170545] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3445), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3447), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [170610] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3441), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3443), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [170675] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3544), 1, + sym__newline_before_do, + ACTIONS(4672), 1, + anon_sym_PIPE, + ACTIONS(4682), 1, + anon_sym_when, + ACTIONS(4684), 1, + anon_sym_COLON_COLON, + ACTIONS(4686), 1, + anon_sym_EQ_GT, + ACTIONS(4688), 1, + anon_sym_EQ, + ACTIONS(4698), 1, + anon_sym_in, + ACTIONS(4700), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4702), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4706), 1, + anon_sym_STAR_STAR, + ACTIONS(4708), 1, + anon_sym_DOT, + ACTIONS(4710), 1, + anon_sym_LBRACK2, + ACTIONS(4712), 1, + sym__not_in, + ACTIONS(4674), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4678), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4680), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3546), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_do, + ACTIONS(4690), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4692), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4670), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4694), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4704), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4696), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [170782] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4838), 1, + anon_sym_COMMA, + STATE(3230), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3149), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3151), 47, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [170851] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2647), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2649), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [170916] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3979), 1, + anon_sym_DOT, + ACTIONS(3981), 1, + anon_sym_LBRACK2, + ACTIONS(4593), 1, + anon_sym_STAR_STAR, + ACTIONS(3293), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4561), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4565), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4591), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 37, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_do, + [170993] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3979), 1, + anon_sym_DOT, + ACTIONS(3981), 1, + anon_sym_LBRACK2, + ACTIONS(4589), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4593), 1, + anon_sym_STAR_STAR, + ACTIONS(3293), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4561), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4565), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4591), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 36, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_do, + [171072] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3457), 1, + sym__newline_before_do, + ACTIONS(4672), 1, + anon_sym_PIPE, + ACTIONS(4682), 1, + anon_sym_when, + ACTIONS(4684), 1, + anon_sym_COLON_COLON, + ACTIONS(4686), 1, + anon_sym_EQ_GT, + ACTIONS(4688), 1, + anon_sym_EQ, + ACTIONS(4698), 1, + anon_sym_in, + ACTIONS(4700), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4702), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4706), 1, + anon_sym_STAR_STAR, + ACTIONS(4708), 1, + anon_sym_DOT, + ACTIONS(4710), 1, + anon_sym_LBRACK2, + ACTIONS(4712), 1, + sym__not_in, + ACTIONS(4674), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4678), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4680), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3459), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_do, + ACTIONS(4690), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4692), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4670), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4694), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4704), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4696), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [171179] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4832), 1, + anon_sym_COMMA, + STATE(3370), 1, + aux_sym_keywords_repeat1, + ACTIONS(3219), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3221), 48, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [171248] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3979), 1, + anon_sym_DOT, + ACTIONS(3981), 1, + anon_sym_LBRACK2, + ACTIONS(4589), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4593), 1, + anon_sym_STAR_STAR, + ACTIONS(3293), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4561), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4565), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4591), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 36, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_do, + [171327] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__newline_before_do, + ACTIONS(3979), 1, + anon_sym_DOT, + ACTIONS(3981), 1, + anon_sym_LBRACK2, + ACTIONS(4585), 1, + anon_sym_in, + ACTIONS(4587), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4589), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4593), 1, + anon_sym_STAR_STAR, + ACTIONS(4595), 1, + sym__not_in, + ACTIONS(4561), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4565), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4591), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 34, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_do, + [171412] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__newline_before_do, + ACTIONS(3979), 1, + anon_sym_DOT, + ACTIONS(3981), 1, + anon_sym_LBRACK2, + ACTIONS(4585), 1, + anon_sym_in, + ACTIONS(4587), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4589), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4593), 1, + anon_sym_STAR_STAR, + ACTIONS(4595), 1, + sym__not_in, + ACTIONS(4561), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4565), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4557), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4591), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4583), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 21, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_do, + [171501] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__newline_before_do, + ACTIONS(3979), 1, + anon_sym_DOT, + ACTIONS(3981), 1, + anon_sym_LBRACK2, + ACTIONS(4585), 1, + anon_sym_in, + ACTIONS(4587), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4589), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4593), 1, + anon_sym_STAR_STAR, + ACTIONS(4595), 1, + sym__not_in, + ACTIONS(4561), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4565), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4557), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4581), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4591), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4583), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 16, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_do, + [171592] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__newline_before_do, + ACTIONS(3979), 1, + anon_sym_DOT, + ACTIONS(3981), 1, + anon_sym_LBRACK2, + ACTIONS(4585), 1, + anon_sym_in, + ACTIONS(4587), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4589), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4593), 1, + anon_sym_STAR_STAR, + ACTIONS(4595), 1, + sym__not_in, + ACTIONS(4561), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4565), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4579), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4557), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4581), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4591), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4583), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 13, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_do, + [171685] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__newline_before_do, + ACTIONS(3979), 1, + anon_sym_DOT, + ACTIONS(3981), 1, + anon_sym_LBRACK2, + ACTIONS(4575), 1, + anon_sym_EQ, + ACTIONS(4585), 1, + anon_sym_in, + ACTIONS(4587), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4589), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4593), 1, + anon_sym_STAR_STAR, + ACTIONS(4595), 1, + sym__not_in, + ACTIONS(4561), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4565), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4577), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4579), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4557), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4581), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4591), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 9, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_do, + ACTIONS(4583), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [171782] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__newline_before_do, + ACTIONS(3979), 1, + anon_sym_DOT, + ACTIONS(3981), 1, + anon_sym_LBRACK2, + ACTIONS(4573), 1, + anon_sym_EQ_GT, + ACTIONS(4575), 1, + anon_sym_EQ, + ACTIONS(4585), 1, + anon_sym_in, + ACTIONS(4587), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4589), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4593), 1, + anon_sym_STAR_STAR, + ACTIONS(4595), 1, + sym__not_in, + ACTIONS(4561), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4565), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4577), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4579), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4557), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4581), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4591), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 8, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_do, + ACTIONS(4583), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [171881] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__newline_before_do, + ACTIONS(3979), 1, + anon_sym_DOT, + ACTIONS(3981), 1, + anon_sym_LBRACK2, + ACTIONS(4559), 1, + anon_sym_PIPE, + ACTIONS(4571), 1, + anon_sym_COLON_COLON, + ACTIONS(4573), 1, + anon_sym_EQ_GT, + ACTIONS(4575), 1, + anon_sym_EQ, + ACTIONS(4585), 1, + anon_sym_in, + ACTIONS(4587), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4589), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4593), 1, + anon_sym_STAR_STAR, + ACTIONS(4595), 1, + sym__not_in, + ACTIONS(4561), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4565), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4577), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4579), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4557), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4581), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3295), 6, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_do, + ACTIONS(4591), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4583), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [171984] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__newline_before_do, + ACTIONS(3979), 1, + anon_sym_DOT, + ACTIONS(3981), 1, + anon_sym_LBRACK2, + ACTIONS(4559), 1, + anon_sym_PIPE, + ACTIONS(4569), 1, + anon_sym_when, + ACTIONS(4571), 1, + anon_sym_COLON_COLON, + ACTIONS(4573), 1, + anon_sym_EQ_GT, + ACTIONS(4575), 1, + anon_sym_EQ, + ACTIONS(4585), 1, + anon_sym_in, + ACTIONS(4587), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4589), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4593), 1, + anon_sym_STAR_STAR, + ACTIONS(4595), 1, + sym__not_in, + ACTIONS(4561), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4565), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4577), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4579), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4557), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3295), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + ACTIONS(4581), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4591), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4583), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [172089] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__newline_before_do, + ACTIONS(3979), 1, + anon_sym_DOT, + ACTIONS(3981), 1, + anon_sym_LBRACK2, + ACTIONS(4559), 1, + anon_sym_PIPE, + ACTIONS(4569), 1, + anon_sym_when, + ACTIONS(4571), 1, + anon_sym_COLON_COLON, + ACTIONS(4573), 1, + anon_sym_EQ_GT, + ACTIONS(4575), 1, + anon_sym_EQ, + ACTIONS(4585), 1, + anon_sym_in, + ACTIONS(4587), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4589), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4593), 1, + anon_sym_STAR_STAR, + ACTIONS(4595), 1, + sym__not_in, + ACTIONS(4561), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4565), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4577), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4579), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4557), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3295), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + ACTIONS(4581), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4591), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4583), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [172194] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3399), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3401), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [172259] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3335), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3337), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [172324] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3215), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3217), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [172389] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3979), 1, + anon_sym_DOT, + ACTIONS(3981), 1, + anon_sym_LBRACK2, + ACTIONS(4593), 1, + anon_sym_STAR_STAR, + ACTIONS(3293), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4561), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3295), 45, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_do, + [172462] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3331), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3333), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [172527] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3979), 1, + anon_sym_DOT, + ACTIONS(3981), 1, + anon_sym_LBRACK2, + ACTIONS(4593), 1, + anon_sym_STAR_STAR, + ACTIONS(3293), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3295), 47, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_do, + [172598] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__newline_before_do, + ACTIONS(3979), 1, + anon_sym_DOT, + ACTIONS(3981), 1, + anon_sym_LBRACK2, + ACTIONS(4559), 1, + anon_sym_PIPE, + ACTIONS(4573), 1, + anon_sym_EQ_GT, + ACTIONS(4575), 1, + anon_sym_EQ, + ACTIONS(4585), 1, + anon_sym_in, + ACTIONS(4587), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4589), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4593), 1, + anon_sym_STAR_STAR, + ACTIONS(4595), 1, + sym__not_in, + ACTIONS(4561), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4565), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4577), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4579), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4557), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4581), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4591), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_do, + ACTIONS(4583), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [172699] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__newline_before_do, + ACTIONS(3979), 1, + anon_sym_DOT, + ACTIONS(3981), 1, + anon_sym_LBRACK2, + ACTIONS(4585), 1, + anon_sym_in, + ACTIONS(4587), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4589), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4593), 1, + anon_sym_STAR_STAR, + ACTIONS(4595), 1, + sym__not_in, + ACTIONS(4561), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4565), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4591), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4583), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 25, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_do, + [172786] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3979), 1, + anon_sym_DOT, + ACTIONS(3981), 1, + anon_sym_LBRACK2, + ACTIONS(4587), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4589), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4593), 1, + anon_sym_STAR_STAR, + ACTIONS(3293), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4561), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4565), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4591), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 35, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_do, + [172867] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3249), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3251), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [172932] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3311), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3313), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [172997] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3126), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3128), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [173062] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3522), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3524), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [173127] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4840), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [173194] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4842), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [173261] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3311), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3313), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [173326] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3331), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3333), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [173391] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4838), 1, + anon_sym_COMMA, + STATE(3431), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3219), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3221), 47, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [173460] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3335), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3337), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [173525] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3399), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3401), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [173590] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3441), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3443), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [173655] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3445), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3447), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [173720] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3500), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3502), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [173785] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3522), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3524), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [173850] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3526), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3528), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [173915] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3530), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3532), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [173980] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3048), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3050), 49, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [174045] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3480), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3482), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [174110] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3415), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3417), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [174175] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3411), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3413), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [174240] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3345), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3347), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [174305] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3315), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3317), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [174370] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3110), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3112), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [174435] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3307), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3309), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [174500] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3277), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3279), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [174565] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3273), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3275), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [174630] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3289), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3291), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [174695] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3285), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3287), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [174760] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3259), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3261), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [174825] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3253), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3255), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [174890] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3245), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3247), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [174955] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3241), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3243), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [175020] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3233), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3235), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [175085] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3229), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3231), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [175150] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3145), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3147), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [175215] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3141), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3143), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [175280] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3215), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3217), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [175345] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(4771), 1, + anon_sym_PIPE, + ACTIONS(4777), 1, + anon_sym_COLON_COLON, + ACTIONS(4779), 1, + anon_sym_EQ_GT, + ACTIONS(4781), 1, + anon_sym_EQ, + ACTIONS(4791), 1, + anon_sym_in, + ACTIONS(4793), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4795), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4799), 1, + anon_sym_STAR_STAR, + ACTIONS(4801), 1, + sym__not_in, + ACTIONS(4805), 1, + anon_sym_when, + ACTIONS(4773), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4775), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4803), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4783), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4785), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3546), 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(4769), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4787), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4797), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4789), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [175450] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3211), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3213), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [175515] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3118), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3120), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + [175584] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3468), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3470), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [175649] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3191), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3193), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + [175718] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3551), 1, + aux_sym__terminator_token1, + ACTIONS(3646), 1, + anon_sym_PIPE, + ACTIONS(3659), 1, + anon_sym_COLON_COLON, + ACTIONS(3661), 1, + anon_sym_EQ_GT, + ACTIONS(3663), 1, + anon_sym_EQ, + ACTIONS(3673), 1, + anon_sym_in, + ACTIONS(3675), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + sym__not_in, + ACTIONS(4834), 1, + anon_sym_when, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3654), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3665), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3667), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3553), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + ACTIONS(3644), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3669), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3671), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [175825] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3486), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3488), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [175890] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3496), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3498), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [175955] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3237), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3239), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [176020] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4844), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [176087] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4846), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [176154] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3303), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3305), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [176219] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3307), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3309), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [176284] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2651), 3, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2653), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [176349] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3044), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3046), 49, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [176414] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3345), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3347), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [176479] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3052), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3054), 49, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [176544] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2647), 3, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2649), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [176609] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3289), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3291), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [176674] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3285), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3287), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [176739] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3289), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3291), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [176804] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3098), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3100), 49, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [176869] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3311), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3313), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [176934] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2631), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2633), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [176999] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3331), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3333), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [177064] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3335), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3337), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [177129] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3399), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3401), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [177194] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3441), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3443), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [177259] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3445), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3447), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [177324] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3500), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3502), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [177389] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3285), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3287), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [177454] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3522), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3524), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [177519] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3526), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3528), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [177584] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3530), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3532), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [177649] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3303), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3305), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [177714] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3480), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3482), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [177779] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3415), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3417), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [177844] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3411), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3413), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [177909] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3094), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3096), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [177974] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3315), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3317), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [178039] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3110), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3112), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [178104] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3094), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3096), 49, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [178169] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3044), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3046), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [178234] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4848), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [178301] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3018), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3020), 49, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [178366] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3865), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [178433] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3048), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3050), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [178498] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3052), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3054), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [178563] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3074), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3076), 49, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [178628] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3058), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3060), 49, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [178693] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3867), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [178760] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3277), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3279), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [178825] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3273), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3275), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [178890] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3259), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3261), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [178955] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3098), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3100), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [179020] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3253), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3255), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [179085] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3245), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3247), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [179150] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3241), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3243), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [179215] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3869), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [179282] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3233), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3235), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [179347] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3229), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3231), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [179412] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3145), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3147), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [179477] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3141), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3143), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [179542] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3215), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3217), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [179607] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3211), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3213), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [179672] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3468), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3470), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [179737] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3486), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3488), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [179802] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3311), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3313), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [179867] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3496), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3498), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [179932] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3237), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3239), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [179997] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(4771), 1, + anon_sym_PIPE, + ACTIONS(4777), 1, + anon_sym_COLON_COLON, + ACTIONS(4779), 1, + anon_sym_EQ_GT, + ACTIONS(4781), 1, + anon_sym_EQ, + ACTIONS(4791), 1, + anon_sym_in, + ACTIONS(4793), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4795), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4799), 1, + anon_sym_STAR_STAR, + ACTIONS(4801), 1, + sym__not_in, + ACTIONS(4805), 1, + anon_sym_when, + ACTIONS(4773), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4775), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4803), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4783), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4785), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3459), 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(4769), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4787), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4797), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4789), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [180102] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3871), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [180169] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3873), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [180236] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3875), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [180303] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3877), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [180370] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2990), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2992), 49, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [180435] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3331), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3333), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [180500] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3335), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3337), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [180565] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3399), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3401), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [180630] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2996), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2998), 49, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [180695] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3441), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3443), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [180760] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3445), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3447), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [180825] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3078), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3080), 49, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [180890] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3500), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3502), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [180955] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3522), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3524), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [181020] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3526), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3528), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [181085] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3530), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3532), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [181150] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4850), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [181217] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4852), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [181284] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4854), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [181351] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3211), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3213), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [181416] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3480), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3482), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [181481] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3415), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3417), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [181546] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3411), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3413), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [181611] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4856), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [181678] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4858), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [181745] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4860), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [181812] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4862), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [181879] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4864), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [181946] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4866), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [182013] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4868), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [182080] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4870), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [182147] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4872), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [182214] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4874), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [182281] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4876), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [182348] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4878), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [182415] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4880), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [182482] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4882), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [182549] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4884), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [182616] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4886), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [182683] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4888), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [182750] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3345), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3347), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [182815] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2631), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2633), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [182880] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2611), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2613), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [182945] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3315), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3317), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [183010] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3879), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [183077] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2647), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2649), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [183142] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2651), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2653), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [183207] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3881), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [183274] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3883), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [183341] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3885), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [183408] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3457), 1, + sym__newline_before_do, + ACTIONS(3979), 1, + anon_sym_DOT, + ACTIONS(3981), 1, + anon_sym_LBRACK2, + ACTIONS(4559), 1, + anon_sym_PIPE, + ACTIONS(4569), 1, + anon_sym_when, + ACTIONS(4571), 1, + anon_sym_COLON_COLON, + ACTIONS(4573), 1, + anon_sym_EQ_GT, + ACTIONS(4575), 1, + anon_sym_EQ, + ACTIONS(4585), 1, + anon_sym_in, + ACTIONS(4587), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4589), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4593), 1, + anon_sym_STAR_STAR, + ACTIONS(4595), 1, + sym__not_in, + ACTIONS(4561), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4565), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4567), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3459), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4577), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4579), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4557), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4581), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4591), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4583), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [183515] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3544), 1, + sym__newline_before_do, + ACTIONS(3979), 1, + anon_sym_DOT, + ACTIONS(3981), 1, + anon_sym_LBRACK2, + ACTIONS(4559), 1, + anon_sym_PIPE, + ACTIONS(4569), 1, + anon_sym_when, + ACTIONS(4571), 1, + anon_sym_COLON_COLON, + ACTIONS(4573), 1, + anon_sym_EQ_GT, + ACTIONS(4575), 1, + anon_sym_EQ, + ACTIONS(4585), 1, + anon_sym_in, + ACTIONS(4587), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4589), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4593), 1, + anon_sym_STAR_STAR, + ACTIONS(4595), 1, + sym__not_in, + ACTIONS(4561), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4565), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4567), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3546), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4577), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4579), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4557), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4581), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4591), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4583), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [183622] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3141), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3143), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [183687] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3145), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3147), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [183752] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2631), 5, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2633), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [183817] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2611), 5, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2613), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [183882] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3551), 1, + sym__newline_before_do, + ACTIONS(3979), 1, + anon_sym_DOT, + ACTIONS(3981), 1, + anon_sym_LBRACK2, + ACTIONS(4559), 1, + anon_sym_PIPE, + ACTIONS(4569), 1, + anon_sym_when, + ACTIONS(4571), 1, + anon_sym_COLON_COLON, + ACTIONS(4573), 1, + anon_sym_EQ_GT, + ACTIONS(4575), 1, + anon_sym_EQ, + ACTIONS(4585), 1, + anon_sym_in, + ACTIONS(4587), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4589), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4593), 1, + anon_sym_STAR_STAR, + ACTIONS(4595), 1, + sym__not_in, + ACTIONS(4561), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4565), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4567), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3553), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4577), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4579), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4557), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4581), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4591), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4583), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [183989] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3887), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [184056] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3889), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [184123] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3891), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [184190] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4890), 1, + anon_sym_COMMA, + STATE(3626), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3219), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3221), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [184259] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4890), 1, + anon_sym_COMMA, + STATE(3627), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3149), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3151), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [184328] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4892), 1, + anon_sym_COMMA, + STATE(3627), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3134), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3136), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [184397] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3229), 2, @@ -289101,2673 +325981,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [145581] = 4, + [184462] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3225), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3227), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, + ACTIONS(3893), 1, aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [145646] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3221), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3223), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [145711] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3217), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3219), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [145776] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3213), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3215), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [145841] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3066), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3068), 50, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [145906] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3062), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3064), 50, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [145971] = 22, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__newline_before_do, - ACTIONS(3784), 1, - anon_sym_DOT, - ACTIONS(3786), 1, - anon_sym_LBRACK2, - ACTIONS(4152), 1, - anon_sym_PIPE, - ACTIONS(4166), 1, - anon_sym_EQ_GT, - ACTIONS(4168), 1, - anon_sym_EQ, - ACTIONS(4178), 1, - anon_sym_in, - ACTIONS(4180), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4182), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4186), 1, - anon_sym_STAR_STAR, - ACTIONS(4188), 1, - sym__not_in, - ACTIONS(4154), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4158), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4170), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4172), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4150), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4174), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4184), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 7, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_do, - ACTIONS(4176), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [146072] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3908), 1, - anon_sym_LPAREN, - STATE(2737), 1, - sym__call_arguments_with_parentheses, - ACTIONS(2972), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2974), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [146141] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3209), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3211), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [146206] = 4, - ACTIONS(5), 1, - sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3123), 3, + ACTIONS(3223), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3125), 50, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [146271] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3127), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3129), 50, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [146336] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3205), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3207), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [146401] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3201), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3203), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [146466] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3131), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3133), 50, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [146531] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3135), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3137), 50, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [146596] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3197), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3199), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [146661] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3193), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3195), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [146726] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3189), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3191), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [146791] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3185), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3187), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [146856] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3181), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3183), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [146921] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3177), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3179), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [146986] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3173), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3175), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [147051] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3908), 1, - anon_sym_LPAREN, - STATE(2739), 1, - sym__call_arguments_with_parentheses, - ACTIONS(2972), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2974), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [147120] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3169), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3171), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [147185] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3165), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3167), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [147250] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3161), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3163), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [147315] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3157), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3159), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [147380] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3153), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3155), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [147445] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3149), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3151), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [147510] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3908), 1, - anon_sym_LPAREN, - STATE(2741), 1, - sym__call_arguments_with_parentheses, - ACTIONS(2972), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2974), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [147579] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3479), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3481), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [147644] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3026), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(3050), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3052), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [147711] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3028), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3030), 50, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [147776] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2635), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2637), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [147841] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2639), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2641), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [147906] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3026), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(3022), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3024), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [147973] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3014), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3016), 50, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [148038] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2643), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2645), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [148103] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2647), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2649), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [148168] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3100), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3102), 50, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [148233] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3139), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3141), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [148298] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4491), 1, - aux_sym_sigil_token3, - ACTIONS(3143), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3145), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [148365] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3273), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3275), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [148430] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3123), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3125), 50, + ACTIONS(3225), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -291812,18 +326043,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_end, - [148495] = 4, + [184529] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3233), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3127), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3129), 50, - anon_sym_SEMI, + ACTIONS(3235), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -291871,20 +326102,1227 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [184594] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3241), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3243), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [184659] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3245), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3247), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [184724] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3253), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3255), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [184789] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3259), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3261), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [184854] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3273), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3275), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [184919] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3277), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3279), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [184984] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3895), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_end, - [148560] = 4, + [185051] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3897), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [185118] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3899), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [185185] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3901), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [185252] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3903), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3223), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3225), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [185319] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2647), 3, + ACTIONS(3307), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3309), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [185384] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3303), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3305), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [185449] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3074), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3076), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [185514] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2922), 1, + anon_sym_LBRACK2, + ACTIONS(3544), 1, + aux_sym__terminator_token1, + ACTIONS(3646), 1, + anon_sym_PIPE, + ACTIONS(3659), 1, + anon_sym_COLON_COLON, + ACTIONS(3661), 1, + anon_sym_EQ_GT, + ACTIONS(3663), 1, + anon_sym_EQ, + ACTIONS(3673), 1, + anon_sym_in, + ACTIONS(3675), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3677), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3681), 1, + anon_sym_STAR_STAR, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + sym__not_in, + ACTIONS(4834), 1, + anon_sym_when, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3648), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3652), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3654), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3665), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3667), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3546), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + ACTIONS(3644), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3669), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3671), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [185621] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3078), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3080), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [185686] = 26, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(4771), 1, + anon_sym_PIPE, + ACTIONS(4777), 1, + anon_sym_COLON_COLON, + ACTIONS(4779), 1, + anon_sym_EQ_GT, + ACTIONS(4781), 1, + anon_sym_EQ, + ACTIONS(4791), 1, + anon_sym_in, + ACTIONS(4793), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4795), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4799), 1, + anon_sym_STAR_STAR, + ACTIONS(4801), 1, + sym__not_in, + ACTIONS(4805), 1, + anon_sym_when, + ACTIONS(4897), 1, + anon_sym_COMMA, + STATE(5183), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(4773), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4775), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4803), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4895), 2, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4783), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4785), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4769), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4787), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4797), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4789), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [185795] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2647), 5, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2649), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [185860] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2651), 5, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2653), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [185925] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2611), 3, sym__not_in, aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2649), 49, + ACTIONS(2613), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -291934,18 +327372,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [148625] = 4, + [185990] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2643), 3, + ACTIONS(2631), 3, sym__not_in, aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2645), 49, + ACTIONS(2633), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -291995,589 +327433,451 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [148690] = 4, + [186055] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3131), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3133), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, + ACTIONS(4899), 1, aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [148755] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3135), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3137), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [148820] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2635), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2637), 50, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [148885] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2639), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2641), 50, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [148950] = 10, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3784), 1, - anon_sym_DOT, - ACTIONS(3786), 1, - anon_sym_LBRACK2, - ACTIONS(4186), 1, - anon_sym_STAR_STAR, - ACTIONS(3389), 2, - sym__newline_before_do, - sym__not_in, - ACTIONS(4154), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4158), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4184), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 37, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_do, - [149027] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3784), 1, - anon_sym_DOT, - ACTIONS(3786), 1, - anon_sym_LBRACK2, - ACTIONS(4182), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4186), 1, - anon_sym_STAR_STAR, - ACTIONS(3389), 2, - sym__newline_before_do, - sym__not_in, - ACTIONS(4154), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4158), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4184), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 36, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_do, - [149106] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2643), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2645), 50, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [149171] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2647), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2649), 50, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [149236] = 14, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__newline_before_do, - ACTIONS(3784), 1, - anon_sym_DOT, - ACTIONS(3786), 1, - anon_sym_LBRACK2, - ACTIONS(4178), 1, - anon_sym_in, - ACTIONS(4180), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4182), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4186), 1, - anon_sym_STAR_STAR, - ACTIONS(4188), 1, - sym__not_in, - ACTIONS(4154), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4158), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4184), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 34, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_do, - [149321] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3076), 2, + ACTIONS(3223), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3078), 50, + ACTIONS(3225), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [186122] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4901), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [186189] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4903), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [186256] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4905), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [186323] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4907), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [186390] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4909), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [186457] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4911), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [186524] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3018), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3020), 50, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, @@ -292628,770 +327928,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [149386] = 16, + [186589] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3389), 1, - sym__newline_before_do, - ACTIONS(3784), 1, - anon_sym_DOT, - ACTIONS(3786), 1, - anon_sym_LBRACK2, - ACTIONS(4178), 1, - anon_sym_in, - ACTIONS(4180), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4182), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4186), 1, - anon_sym_STAR_STAR, - ACTIONS(4188), 1, + ACTIONS(3323), 2, sym__not_in, - ACTIONS(4154), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4158), 2, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4150), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4184), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4176), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 21, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_do, - [149475] = 17, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__newline_before_do, - ACTIONS(3784), 1, - anon_sym_DOT, - ACTIONS(3786), 1, - anon_sym_LBRACK2, - ACTIONS(4178), 1, - anon_sym_in, - ACTIONS(4180), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4182), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4186), 1, - anon_sym_STAR_STAR, - ACTIONS(4188), 1, - sym__not_in, - ACTIONS(4154), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4158), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4150), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4174), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4184), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4176), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 16, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_do, - [149566] = 18, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__newline_before_do, - ACTIONS(3784), 1, - anon_sym_DOT, - ACTIONS(3786), 1, - anon_sym_LBRACK2, - ACTIONS(4178), 1, - anon_sym_in, - ACTIONS(4180), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4182), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4186), 1, - anon_sym_STAR_STAR, - ACTIONS(4188), 1, - sym__not_in, - ACTIONS(4154), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4158), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4172), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4150), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4174), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4184), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4176), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 13, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_do, - [149659] = 20, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__newline_before_do, - ACTIONS(3784), 1, - anon_sym_DOT, - ACTIONS(3786), 1, - anon_sym_LBRACK2, - ACTIONS(4168), 1, - anon_sym_EQ, - ACTIONS(4178), 1, - anon_sym_in, - ACTIONS(4180), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4182), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4186), 1, - anon_sym_STAR_STAR, - ACTIONS(4188), 1, - sym__not_in, - ACTIONS(4154), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4158), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4170), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4172), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4150), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4174), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4184), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 9, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_do, - ACTIONS(4176), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [149756] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__newline_before_do, - ACTIONS(3784), 1, - anon_sym_DOT, - ACTIONS(3786), 1, - anon_sym_LBRACK2, - ACTIONS(4166), 1, - anon_sym_EQ_GT, - ACTIONS(4168), 1, - anon_sym_EQ, - ACTIONS(4178), 1, - anon_sym_in, - ACTIONS(4180), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4182), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4186), 1, - anon_sym_STAR_STAR, - ACTIONS(4188), 1, - sym__not_in, - ACTIONS(4154), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4158), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4170), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4172), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4150), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4174), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4184), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 8, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_do, - ACTIONS(4176), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [149855] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__newline_before_do, - ACTIONS(3784), 1, - anon_sym_DOT, - ACTIONS(3786), 1, - anon_sym_LBRACK2, - ACTIONS(4152), 1, - anon_sym_PIPE, - ACTIONS(4164), 1, - anon_sym_COLON_COLON, - ACTIONS(4166), 1, - anon_sym_EQ_GT, - ACTIONS(4168), 1, - anon_sym_EQ, - ACTIONS(4178), 1, - anon_sym_in, - ACTIONS(4180), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4182), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4186), 1, - anon_sym_STAR_STAR, - ACTIONS(4188), 1, - sym__not_in, - ACTIONS(4154), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4158), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4170), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4172), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4150), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4174), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3391), 6, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_do, - ACTIONS(4184), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4176), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [149958] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__newline_before_do, - ACTIONS(3784), 1, - anon_sym_DOT, - ACTIONS(3786), 1, - anon_sym_LBRACK2, - ACTIONS(4152), 1, - anon_sym_PIPE, - ACTIONS(4162), 1, - anon_sym_when, - ACTIONS(4164), 1, - anon_sym_COLON_COLON, - ACTIONS(4166), 1, - anon_sym_EQ_GT, - ACTIONS(4168), 1, - anon_sym_EQ, - ACTIONS(4178), 1, - anon_sym_in, - ACTIONS(4180), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4182), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4186), 1, - anon_sym_STAR_STAR, - ACTIONS(4188), 1, - sym__not_in, - ACTIONS(4154), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4158), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4170), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4172), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4150), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3391), 5, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_do, - ACTIONS(4174), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4184), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4176), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [150063] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__newline_before_do, - ACTIONS(3784), 1, - anon_sym_DOT, - ACTIONS(3786), 1, - anon_sym_LBRACK2, - ACTIONS(4152), 1, - anon_sym_PIPE, - ACTIONS(4162), 1, - anon_sym_when, - ACTIONS(4164), 1, - anon_sym_COLON_COLON, - ACTIONS(4166), 1, - anon_sym_EQ_GT, - ACTIONS(4168), 1, - anon_sym_EQ, - ACTIONS(4178), 1, - anon_sym_in, - ACTIONS(4180), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4182), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4186), 1, - anon_sym_STAR_STAR, - ACTIONS(4188), 1, - sym__not_in, - ACTIONS(4154), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4158), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4170), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4172), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4150), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3391), 5, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_do, - ACTIONS(4174), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4184), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4176), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [150168] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3784), 1, - anon_sym_DOT, - ACTIONS(3786), 1, - anon_sym_LBRACK2, - ACTIONS(4186), 1, - anon_sym_STAR_STAR, - ACTIONS(3389), 2, - sym__newline_before_do, - sym__not_in, - ACTIONS(4154), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3391), 45, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_do, - [150241] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3784), 1, - anon_sym_DOT, - ACTIONS(3786), 1, - anon_sym_LBRACK2, - ACTIONS(4182), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4186), 1, - anon_sym_STAR_STAR, - ACTIONS(3389), 2, - sym__newline_before_do, - sym__not_in, - ACTIONS(4154), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4158), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4184), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 36, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_do, - [150320] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2639), 3, - sym__not_in, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(2641), 49, + ACTIONS(3325), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -293441,413 +327988,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [150385] = 4, + [186653] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2635), 3, - sym__not_in, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(2637), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [150450] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3277), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3279), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [150515] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3784), 1, - anon_sym_DOT, - ACTIONS(3786), 1, - anon_sym_LBRACK2, - ACTIONS(4180), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4182), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4186), 1, - anon_sym_STAR_STAR, - ACTIONS(3389), 2, - sym__newline_before_do, - sym__not_in, - ACTIONS(4154), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4158), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4184), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 35, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_do, - [150596] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__newline_before_do, - ACTIONS(3784), 1, - anon_sym_DOT, - ACTIONS(3786), 1, - anon_sym_LBRACK2, - ACTIONS(4178), 1, - anon_sym_in, - ACTIONS(4180), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4182), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4186), 1, - anon_sym_STAR_STAR, - ACTIONS(4188), 1, - sym__not_in, - ACTIONS(4154), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4158), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4184), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4176), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 25, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_do, - [150683] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3357), 2, + ACTIONS(3468), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3359), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [150747] = 17, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4286), 1, - anon_sym_in, - ACTIONS(4288), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4290), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4294), 1, - anon_sym_STAR_STAR, - ACTIONS(4296), 1, - anon_sym_DOT, - ACTIONS(4298), 1, - anon_sym_LBRACK2, - ACTIONS(4300), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(4264), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4266), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4260), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4282), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4292), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4284), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 15, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - [150837] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2643), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2645), 49, + ACTIONS(3470), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -293897,198 +328048,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [150901] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2647), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2649), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [150965] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2635), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2637), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [151029] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3123), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3125), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [151093] = 4, + [186717] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3465), 4, + ACTIONS(3407), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3467), 48, + ACTIONS(3409), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -294137,18 +328108,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [151157] = 4, + [186781] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3461), 4, + ACTIONS(3403), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3463), 48, + ACTIONS(3405), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -294197,18 +328168,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [151221] = 4, + [186845] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3050), 4, + ACTIONS(3006), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3052), 48, + ACTIONS(3008), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -294257,4473 +328228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [151285] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3022), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3024), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [151349] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3135), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3137), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [151413] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3131), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3133), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [151477] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3127), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3129), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [151541] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3542), 1, - aux_sym__terminator_token1, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(4310), 1, - anon_sym_PIPE, - ACTIONS(4318), 1, - anon_sym_when, - ACTIONS(4320), 1, - anon_sym_COLON_COLON, - ACTIONS(4322), 1, - anon_sym_EQ_GT, - ACTIONS(4324), 1, - anon_sym_EQ, - ACTIONS(4334), 1, - anon_sym_in, - ACTIONS(4336), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4338), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4342), 1, - anon_sym_STAR_STAR, - ACTIONS(4344), 1, - anon_sym_DOT, - ACTIONS(4346), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4312), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4314), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4316), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3544), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_end, - ACTIONS(4326), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4328), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4308), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4330), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4340), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4332), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [151647] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3542), 1, - aux_sym__terminator_token1, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(4198), 1, - anon_sym_PIPE, - ACTIONS(4206), 1, - anon_sym_when, - ACTIONS(4208), 1, - anon_sym_COLON_COLON, - ACTIONS(4210), 1, - anon_sym_EQ_GT, - ACTIONS(4212), 1, - anon_sym_EQ, - ACTIONS(4222), 1, - anon_sym_in, - ACTIONS(4224), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4226), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4230), 1, - anon_sym_STAR_STAR, - ACTIONS(4232), 1, - anon_sym_DOT, - ACTIONS(4234), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4200), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4202), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4204), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3544), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(4214), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4216), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4196), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4218), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4228), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4220), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [151753] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3479), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3481), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [151817] = 20, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - aux_sym__terminator_token1, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(4324), 1, - anon_sym_EQ, - ACTIONS(4334), 1, - anon_sym_in, - ACTIONS(4336), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4338), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4342), 1, - anon_sym_STAR_STAR, - ACTIONS(4344), 1, - anon_sym_DOT, - ACTIONS(4346), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4312), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4314), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4326), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4328), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4308), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4330), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4340), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 9, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_end, - ACTIONS(4332), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [151913] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4493), 1, - anon_sym_COMMA, - STATE(3155), 1, - aux_sym_keywords_repeat1, - ACTIONS(3479), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3481), 47, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [151981] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3373), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3375), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [152045] = 10, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(4342), 1, - anon_sym_STAR_STAR, - ACTIONS(4344), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(4312), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4314), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4340), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 37, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_end, - [152121] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(4338), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4342), 1, - anon_sym_STAR_STAR, - ACTIONS(4344), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(4312), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4314), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4340), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 36, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_end, - [152199] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(4338), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4342), 1, - anon_sym_STAR_STAR, - ACTIONS(4344), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(4312), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4314), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4340), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 36, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_end, - [152277] = 14, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - aux_sym__terminator_token1, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(4334), 1, - anon_sym_in, - ACTIONS(4336), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4338), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4342), 1, - anon_sym_STAR_STAR, - ACTIONS(4344), 1, - anon_sym_DOT, - ACTIONS(4346), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4312), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4314), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4340), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 34, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_end, - [152361] = 16, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - aux_sym__terminator_token1, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(4334), 1, - anon_sym_in, - ACTIONS(4336), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4338), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4342), 1, - anon_sym_STAR_STAR, - ACTIONS(4344), 1, - anon_sym_DOT, - ACTIONS(4346), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4312), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4314), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4308), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4340), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4332), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 21, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_end, - [152449] = 17, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - aux_sym__terminator_token1, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(4334), 1, - anon_sym_in, - ACTIONS(4336), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4338), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4342), 1, - anon_sym_STAR_STAR, - ACTIONS(4344), 1, - anon_sym_DOT, - ACTIONS(4346), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4312), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4314), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4308), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4330), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4340), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4332), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 16, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_end, - [152539] = 18, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - aux_sym__terminator_token1, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(4334), 1, - anon_sym_in, - ACTIONS(4336), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4338), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4342), 1, - anon_sym_STAR_STAR, - ACTIONS(4344), 1, - anon_sym_DOT, - ACTIONS(4346), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4312), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4314), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4328), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4308), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4330), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4340), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4332), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 13, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_end, - [152631] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4496), 1, - anon_sym_COMMA, - STATE(3174), 1, - aux_sym_keywords_repeat1, - ACTIONS(3469), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3471), 47, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [152699] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - aux_sym__terminator_token1, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(4322), 1, - anon_sym_EQ_GT, - ACTIONS(4324), 1, - anon_sym_EQ, - ACTIONS(4334), 1, - anon_sym_in, - ACTIONS(4336), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4338), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4342), 1, - anon_sym_STAR_STAR, - ACTIONS(4344), 1, - anon_sym_DOT, - ACTIONS(4346), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4312), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4314), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4326), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4328), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4308), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4330), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4340), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 8, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_end, - ACTIONS(4332), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [152797] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - aux_sym__terminator_token1, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(4310), 1, - anon_sym_PIPE, - ACTIONS(4320), 1, - anon_sym_COLON_COLON, - ACTIONS(4322), 1, - anon_sym_EQ_GT, - ACTIONS(4324), 1, - anon_sym_EQ, - ACTIONS(4334), 1, - anon_sym_in, - ACTIONS(4336), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4338), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4342), 1, - anon_sym_STAR_STAR, - ACTIONS(4344), 1, - anon_sym_DOT, - ACTIONS(4346), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4312), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4314), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4326), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4328), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4308), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4330), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3391), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_end, - ACTIONS(4340), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4332), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [152899] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - aux_sym__terminator_token1, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(4310), 1, - anon_sym_PIPE, - ACTIONS(4318), 1, - anon_sym_when, - ACTIONS(4320), 1, - anon_sym_COLON_COLON, - ACTIONS(4322), 1, - anon_sym_EQ_GT, - ACTIONS(4324), 1, - anon_sym_EQ, - ACTIONS(4334), 1, - anon_sym_in, - ACTIONS(4336), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4338), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4342), 1, - anon_sym_STAR_STAR, - ACTIONS(4344), 1, - anon_sym_DOT, - ACTIONS(4346), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4312), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4314), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4326), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4328), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4308), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3391), 5, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_end, - ACTIONS(4330), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4340), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4332), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [153003] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - aux_sym__terminator_token1, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(4310), 1, - anon_sym_PIPE, - ACTIONS(4318), 1, - anon_sym_when, - ACTIONS(4320), 1, - anon_sym_COLON_COLON, - ACTIONS(4322), 1, - anon_sym_EQ_GT, - ACTIONS(4324), 1, - anon_sym_EQ, - ACTIONS(4334), 1, - anon_sym_in, - ACTIONS(4336), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4338), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4342), 1, - anon_sym_STAR_STAR, - ACTIONS(4344), 1, - anon_sym_DOT, - ACTIONS(4346), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4312), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4314), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4326), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4328), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4308), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3391), 5, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_end, - ACTIONS(4330), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4340), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4332), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [153107] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(4342), 1, - anon_sym_STAR_STAR, - ACTIONS(4344), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(4312), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3391), 45, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_end, - [153179] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(4342), 1, - anon_sym_STAR_STAR, - ACTIONS(4344), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3391), 47, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_end, - [153249] = 22, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - aux_sym__terminator_token1, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(4310), 1, - anon_sym_PIPE, - ACTIONS(4322), 1, - anon_sym_EQ_GT, - ACTIONS(4324), 1, - anon_sym_EQ, - ACTIONS(4334), 1, - anon_sym_in, - ACTIONS(4336), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4338), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4342), 1, - anon_sym_STAR_STAR, - ACTIONS(4344), 1, - anon_sym_DOT, - ACTIONS(4346), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4312), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4314), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4326), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4328), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4308), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4330), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4340), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_end, - ACTIONS(4332), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [153349] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - aux_sym__terminator_token1, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(4334), 1, - anon_sym_in, - ACTIONS(4336), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4338), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4342), 1, - anon_sym_STAR_STAR, - ACTIONS(4344), 1, - anon_sym_DOT, - ACTIONS(4346), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4312), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4314), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4340), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4332), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 25, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_end, - [153435] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(4336), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4338), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4342), 1, - anon_sym_STAR_STAR, - ACTIONS(4344), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(4312), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4314), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4340), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 35, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_end, - [153515] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4496), 1, - anon_sym_COMMA, - STATE(3155), 1, - aux_sym_keywords_repeat1, - ACTIONS(3475), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3477), 47, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [153583] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3457), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3459), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [153647] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4262), 1, - anon_sym_PIPE, - ACTIONS(4270), 1, - anon_sym_when, - ACTIONS(4272), 1, - anon_sym_COLON_COLON, - ACTIONS(4274), 1, - anon_sym_EQ_GT, - ACTIONS(4276), 1, - anon_sym_EQ, - ACTIONS(4286), 1, - anon_sym_in, - ACTIONS(4288), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4290), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4294), 1, - anon_sym_STAR_STAR, - ACTIONS(4296), 1, - anon_sym_DOT, - ACTIONS(4298), 1, - anon_sym_LBRACK2, - ACTIONS(4300), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3542), 2, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(3544), 2, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(4264), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4266), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4268), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(4278), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4280), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4260), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4282), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4292), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4284), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [153753] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3457), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3459), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [153817] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3453), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3455), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [153881] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3080), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3082), 49, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [153945] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3494), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3496), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [154009] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3058), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3060), 49, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [154073] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(4232), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3433), 2, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3435), 48, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - [154141] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3453), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3455), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [154205] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3479), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3481), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [154269] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(4232), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3391), 48, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - [154337] = 10, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(4230), 1, - anon_sym_STAR_STAR, - ACTIONS(4232), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(4200), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4202), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4228), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 37, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - [154413] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(4226), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4230), 1, - anon_sym_STAR_STAR, - ACTIONS(4232), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(4200), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4202), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4228), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 36, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - [154491] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(4226), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4230), 1, - anon_sym_STAR_STAR, - ACTIONS(4232), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(4200), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4202), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4228), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 36, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - [154569] = 14, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - aux_sym__terminator_token1, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(4222), 1, - anon_sym_in, - ACTIONS(4224), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4226), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4230), 1, - anon_sym_STAR_STAR, - ACTIONS(4232), 1, - anon_sym_DOT, - ACTIONS(4234), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4200), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4202), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4228), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 34, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [154653] = 16, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - aux_sym__terminator_token1, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(4222), 1, - anon_sym_in, - ACTIONS(4224), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4226), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4230), 1, - anon_sym_STAR_STAR, - ACTIONS(4232), 1, - anon_sym_DOT, - ACTIONS(4234), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4200), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4202), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4196), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4228), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4220), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 21, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - [154741] = 17, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - aux_sym__terminator_token1, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(4222), 1, - anon_sym_in, - ACTIONS(4224), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4226), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4230), 1, - anon_sym_STAR_STAR, - ACTIONS(4232), 1, - anon_sym_DOT, - ACTIONS(4234), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4200), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4202), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4196), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4218), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4228), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4220), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 16, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - [154831] = 18, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - aux_sym__terminator_token1, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(4222), 1, - anon_sym_in, - ACTIONS(4224), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4226), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4230), 1, - anon_sym_STAR_STAR, - ACTIONS(4232), 1, - anon_sym_DOT, - ACTIONS(4234), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4200), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4202), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4216), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4196), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4218), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4228), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4220), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - [154923] = 20, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - aux_sym__terminator_token1, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(4212), 1, - anon_sym_EQ, - ACTIONS(4222), 1, - anon_sym_in, - ACTIONS(4224), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4226), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4230), 1, - anon_sym_STAR_STAR, - ACTIONS(4232), 1, - anon_sym_DOT, - ACTIONS(4234), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4200), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4202), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4214), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4216), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4196), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4218), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4228), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - ACTIONS(4220), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [155019] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - aux_sym__terminator_token1, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(4210), 1, - anon_sym_EQ_GT, - ACTIONS(4212), 1, - anon_sym_EQ, - ACTIONS(4222), 1, - anon_sym_in, - ACTIONS(4224), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4226), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4230), 1, - anon_sym_STAR_STAR, - ACTIONS(4232), 1, - anon_sym_DOT, - ACTIONS(4234), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4200), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4202), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4214), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4216), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4196), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4218), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4228), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 8, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - ACTIONS(4220), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [155117] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - aux_sym__terminator_token1, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(4198), 1, - anon_sym_PIPE, - ACTIONS(4208), 1, - anon_sym_COLON_COLON, - ACTIONS(4210), 1, - anon_sym_EQ_GT, - ACTIONS(4212), 1, - anon_sym_EQ, - ACTIONS(4222), 1, - anon_sym_in, - ACTIONS(4224), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4226), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4230), 1, - anon_sym_STAR_STAR, - ACTIONS(4232), 1, - anon_sym_DOT, - ACTIONS(4234), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4200), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4202), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4214), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4216), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4196), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4218), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3391), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - ACTIONS(4228), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4220), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [155219] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - aux_sym__terminator_token1, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(4198), 1, - anon_sym_PIPE, - ACTIONS(4206), 1, - anon_sym_when, - ACTIONS(4208), 1, - anon_sym_COLON_COLON, - ACTIONS(4210), 1, - anon_sym_EQ_GT, - ACTIONS(4212), 1, - anon_sym_EQ, - ACTIONS(4222), 1, - anon_sym_in, - ACTIONS(4224), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4226), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4230), 1, - anon_sym_STAR_STAR, - ACTIONS(4232), 1, - anon_sym_DOT, - ACTIONS(4234), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4200), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4202), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4214), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4216), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4196), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3391), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(4218), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4228), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4220), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [155323] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - aux_sym__terminator_token1, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(4198), 1, - anon_sym_PIPE, - ACTIONS(4206), 1, - anon_sym_when, - ACTIONS(4208), 1, - anon_sym_COLON_COLON, - ACTIONS(4210), 1, - anon_sym_EQ_GT, - ACTIONS(4212), 1, - anon_sym_EQ, - ACTIONS(4222), 1, - anon_sym_in, - ACTIONS(4224), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4226), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4230), 1, - anon_sym_STAR_STAR, - ACTIONS(4232), 1, - anon_sym_DOT, - ACTIONS(4234), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4200), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4202), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4214), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4216), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4196), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3391), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(4218), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4228), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4220), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [155427] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(4230), 1, - anon_sym_STAR_STAR, - ACTIONS(4232), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(4200), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3391), 45, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - [155499] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3369), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3371), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [155563] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3453), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3455), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [155627] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(4230), 1, - anon_sym_STAR_STAR, - ACTIONS(4232), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3391), 47, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - [155697] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2972), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2974), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [155761] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3449), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3451), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [155825] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3494), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3496), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [155889] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3123), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3125), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [155953] = 22, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - aux_sym__terminator_token1, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(4198), 1, - anon_sym_PIPE, - ACTIONS(4210), 1, - anon_sym_EQ_GT, - ACTIONS(4212), 1, - anon_sym_EQ, - ACTIONS(4222), 1, - anon_sym_in, - ACTIONS(4224), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4226), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4230), 1, - anon_sym_STAR_STAR, - ACTIONS(4232), 1, - anon_sym_DOT, - ACTIONS(4234), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4200), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4202), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4214), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4216), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4196), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4218), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4228), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 7, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - ACTIONS(4220), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [156053] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - aux_sym__terminator_token1, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(4222), 1, - anon_sym_in, - ACTIONS(4224), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4226), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4230), 1, - anon_sym_STAR_STAR, - ACTIONS(4232), 1, - anon_sym_DOT, - ACTIONS(4234), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4200), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4202), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4228), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4220), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 25, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [156139] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(4224), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4226), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4230), 1, - anon_sym_STAR_STAR, - ACTIONS(4232), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(4200), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4202), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4228), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 35, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - [156219] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3127), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3129), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [156283] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(4232), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3425), 2, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3427), 48, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - [156351] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3445), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3447), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [156415] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3558), 1, - aux_sym__terminator_token1, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(4198), 1, - anon_sym_PIPE, - ACTIONS(4206), 1, - anon_sym_when, - ACTIONS(4208), 1, - anon_sym_COLON_COLON, - ACTIONS(4210), 1, - anon_sym_EQ_GT, - ACTIONS(4212), 1, - anon_sym_EQ, - ACTIONS(4222), 1, - anon_sym_in, - ACTIONS(4224), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4226), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4230), 1, - anon_sym_STAR_STAR, - ACTIONS(4232), 1, - anon_sym_DOT, - ACTIONS(4234), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4200), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4202), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4204), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3560), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(4214), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4216), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4196), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4218), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4228), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4220), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [156521] = 4, + [186909] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3289), 2, @@ -298734,371 +328239,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_comment, aux_sym__terminator_token1, ACTIONS(3291), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [156585] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3441), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3443), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [156649] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3365), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3367), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [156713] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3361), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3363), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [156777] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3437), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3439), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [156841] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3357), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3359), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [156905] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3014), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3016), 49, - anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_PLUS, @@ -299143,202 +328288,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [156969] = 4, + [186973] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3393), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3395), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [157033] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3433), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3435), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [157097] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3309), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3311), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [157161] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3028), 2, + ACTIONS(3307), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3030), 49, - anon_sym_LPAREN, + ACTIONS(3309), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_PLUS, @@ -299383,165 +328348,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [157225] = 25, + [187037] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4262), 1, - anon_sym_PIPE, - ACTIONS(4270), 1, - anon_sym_when, - ACTIONS(4272), 1, - anon_sym_COLON_COLON, - ACTIONS(4274), 1, - anon_sym_EQ_GT, - ACTIONS(4276), 1, - anon_sym_EQ, - ACTIONS(4286), 1, - anon_sym_in, - ACTIONS(4288), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4290), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4294), 1, - anon_sym_STAR_STAR, - ACTIONS(4296), 1, - anon_sym_DOT, - ACTIONS(4298), 1, - anon_sym_LBRACK2, - ACTIONS(4300), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3558), 2, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(3560), 2, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(4264), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4266), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4268), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(4278), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4280), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4260), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4282), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4292), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4284), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [157331] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3281), 2, + ACTIONS(3303), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3283), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [157395] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3433), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3435), 48, - anon_sym_SEMI, + ACTIONS(3305), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -299584,7 +328408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [157459] = 4, + [187101] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3285), 2, @@ -299595,1440 +328419,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_comment, aux_sym__terminator_token1, ACTIONS(3287), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [157523] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4296), 1, - anon_sym_DOT, - ACTIONS(4298), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3433), 3, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(3435), 47, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - [157591] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3293), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3295), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [157655] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3433), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3435), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [157719] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3297), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3299), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [157783] = 26, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2885), 1, - anon_sym_COMMA, - ACTIONS(2918), 1, - anon_sym_DASH_GT, - ACTIONS(4500), 1, - anon_sym_PIPE, - ACTIONS(4508), 1, - anon_sym_when, - ACTIONS(4511), 1, - anon_sym_COLON_COLON, - ACTIONS(4513), 1, - anon_sym_EQ_GT, - ACTIONS(4515), 1, - anon_sym_EQ, - ACTIONS(4525), 1, - anon_sym_in, - ACTIONS(4527), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4529), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4533), 1, - anon_sym_STAR_STAR, - ACTIONS(4535), 1, - anon_sym_DOT, - ACTIONS(4537), 1, - anon_sym_LBRACK2, - ACTIONS(4539), 1, - sym__not_in, - STATE(4529), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(4502), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4504), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4506), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4517), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4519), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4498), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4521), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4531), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4523), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [157891] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3301), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3303), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [157955] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3297), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3299), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [158019] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3297), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3299), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [158083] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3305), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3307), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [158147] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3377), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3379), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [158211] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3309), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3311), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [158275] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3429), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3431), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [158339] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3305), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3307), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [158403] = 26, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4482), 1, - anon_sym_GT_GT, - ACTIONS(4543), 1, - anon_sym_PIPE, - ACTIONS(4547), 1, - anon_sym_COMMA, - ACTIONS(4553), 1, - anon_sym_when, - ACTIONS(4555), 1, - anon_sym_COLON_COLON, - ACTIONS(4557), 1, - anon_sym_EQ_GT, - ACTIONS(4559), 1, - anon_sym_EQ, - ACTIONS(4569), 1, - anon_sym_in, - ACTIONS(4571), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4573), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4577), 1, - anon_sym_STAR_STAR, - ACTIONS(4579), 1, - anon_sym_DOT, - ACTIONS(4581), 1, - anon_sym_LBRACK2, - ACTIONS(4583), 1, - sym__not_in, - STATE(4836), 1, - aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(4545), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4549), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4551), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4561), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4563), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4541), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4565), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4575), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4567), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [158511] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2994), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2996), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [158575] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3297), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3299), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [158639] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3425), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3427), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [158703] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3425), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3427), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [158767] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4296), 1, - anon_sym_DOT, - ACTIONS(4298), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3425), 3, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(3427), 47, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - [158835] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3425), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3427), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [158899] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3297), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3299), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [158963] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3421), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3423), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [159027] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3026), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(3050), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3052), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_PLUS, @@ -301073,25 +328468,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [159093] = 5, + [187165] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3026), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(3022), 2, + ACTIONS(3544), 1, + aux_sym__terminator_token1, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(4611), 1, + anon_sym_PIPE, + ACTIONS(4619), 1, + anon_sym_when, + ACTIONS(4621), 1, + anon_sym_COLON_COLON, + ACTIONS(4623), 1, + anon_sym_EQ_GT, + ACTIONS(4625), 1, + anon_sym_EQ, + ACTIONS(4635), 1, + anon_sym_in, + ACTIONS(4637), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4639), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4643), 1, + anon_sym_STAR_STAR, + ACTIONS(4645), 1, + anon_sym_DOT, + ACTIONS(4647), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4613), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4615), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4617), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3546), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_end, + ACTIONS(4627), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4629), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4609), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4631), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4641), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4633), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [187271] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3134), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3024), 48, + ACTIONS(3136), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -301133,46 +328607,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [159159] = 4, + [187335] = 25, ACTIONS(5), 1, sym_comment, + ACTIONS(3544), 1, + aux_sym__terminator_token1, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(4514), 1, + anon_sym_PIPE, + ACTIONS(4522), 1, + anon_sym_when, + ACTIONS(4524), 1, + anon_sym_COLON_COLON, + ACTIONS(4526), 1, + anon_sym_EQ_GT, + ACTIONS(4528), 1, + anon_sym_EQ, + ACTIONS(4538), 1, + anon_sym_in, + ACTIONS(4540), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4542), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4546), 1, + anon_sym_STAR_STAR, + ACTIONS(4548), 1, + anon_sym_DOT, + ACTIONS(4550), 1, + sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3301), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3303), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(4516), 2, anon_sym_SLASH, - anon_sym_COMMA, + anon_sym_STAR, + ACTIONS(4518), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4520), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3546), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4530), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4532), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4512), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4534), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4544), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4536), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -301182,21 +328690,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [159223] = 4, + [187441] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(4913), 1, + anon_sym_COMMA, + STATE(3673), 1, + aux_sym_keywords_repeat1, ACTIONS(3149), 2, sym__not_in, anon_sym_LBRACK2, @@ -301204,13 +328704,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3151), 49, + ACTIONS(3151), 47, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -301254,286 +328752,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [159287] = 4, + [187509] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3153), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3155), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, + ACTIONS(4915), 1, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [159351] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4500), 1, - anon_sym_PIPE, - ACTIONS(4511), 1, - anon_sym_COLON_COLON, - ACTIONS(4513), 1, - anon_sym_EQ_GT, - ACTIONS(4515), 1, - anon_sym_EQ, - ACTIONS(4525), 1, - anon_sym_in, - ACTIONS(4527), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4529), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4533), 1, - anon_sym_STAR_STAR, - ACTIONS(4535), 1, - anon_sym_DOT, - ACTIONS(4537), 1, - anon_sym_LBRACK2, - ACTIONS(4539), 1, - sym__not_in, - ACTIONS(4585), 1, - anon_sym_when, - ACTIONS(4502), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4504), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4506), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3544), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - ACTIONS(4517), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4519), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4498), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4521), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4531), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4523), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [159455] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3157), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3159), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [159519] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3131), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3133), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [159583] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4587), 1, - anon_sym_COMMA, - STATE(3258), 1, + STATE(3673), 1, aux_sym_keywords_repeat1, - ACTIONS(3479), 2, + ACTIONS(3134), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3481), 47, - anon_sym_LBRACE, + ACTIONS(3136), 47, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -301576,26 +328814,1431 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [159651] = 6, + [187577] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4590), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3207), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3209), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, - STATE(3258), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [187641] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(4643), 1, + anon_sym_STAR_STAR, + ACTIONS(4645), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(4613), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4615), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4641), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 37, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_end, + [187717] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(4639), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4643), 1, + anon_sym_STAR_STAR, + ACTIONS(4645), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(4613), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4615), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4641), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 36, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_end, + [187795] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(4639), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4643), 1, + anon_sym_STAR_STAR, + ACTIONS(4645), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(4613), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4615), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4641), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 36, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_end, + [187873] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + aux_sym__terminator_token1, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(4635), 1, + anon_sym_in, + ACTIONS(4637), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4639), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4643), 1, + anon_sym_STAR_STAR, + ACTIONS(4645), 1, + anon_sym_DOT, + ACTIONS(4647), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4613), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4615), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4641), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 34, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_end, + [187957] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + aux_sym__terminator_token1, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(4635), 1, + anon_sym_in, + ACTIONS(4637), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4639), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4643), 1, + anon_sym_STAR_STAR, + ACTIONS(4645), 1, + anon_sym_DOT, + ACTIONS(4647), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4613), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4615), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4609), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4641), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4633), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 21, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_end, + [188045] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + aux_sym__terminator_token1, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(4635), 1, + anon_sym_in, + ACTIONS(4637), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4639), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4643), 1, + anon_sym_STAR_STAR, + ACTIONS(4645), 1, + anon_sym_DOT, + ACTIONS(4647), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4613), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4615), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4609), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4631), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4641), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4633), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 16, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_end, + [188135] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + aux_sym__terminator_token1, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(4635), 1, + anon_sym_in, + ACTIONS(4637), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4639), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4643), 1, + anon_sym_STAR_STAR, + ACTIONS(4645), 1, + anon_sym_DOT, + ACTIONS(4647), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4613), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4615), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4629), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4609), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4631), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4641), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4633), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 13, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_end, + [188227] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + aux_sym__terminator_token1, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(4625), 1, + anon_sym_EQ, + ACTIONS(4635), 1, + anon_sym_in, + ACTIONS(4637), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4639), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4643), 1, + anon_sym_STAR_STAR, + ACTIONS(4645), 1, + anon_sym_DOT, + ACTIONS(4647), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4613), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4615), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4627), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4629), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4609), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4631), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4641), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 9, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_end, + ACTIONS(4633), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [188323] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + aux_sym__terminator_token1, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(4623), 1, + anon_sym_EQ_GT, + ACTIONS(4625), 1, + anon_sym_EQ, + ACTIONS(4635), 1, + anon_sym_in, + ACTIONS(4637), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4639), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4643), 1, + anon_sym_STAR_STAR, + ACTIONS(4645), 1, + anon_sym_DOT, + ACTIONS(4647), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4613), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4615), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4627), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4629), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4609), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4631), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4641), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 8, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_end, + ACTIONS(4633), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [188421] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + aux_sym__terminator_token1, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(4611), 1, + anon_sym_PIPE, + ACTIONS(4621), 1, + anon_sym_COLON_COLON, + ACTIONS(4623), 1, + anon_sym_EQ_GT, + ACTIONS(4625), 1, + anon_sym_EQ, + ACTIONS(4635), 1, + anon_sym_in, + ACTIONS(4637), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4639), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4643), 1, + anon_sym_STAR_STAR, + ACTIONS(4645), 1, + anon_sym_DOT, + ACTIONS(4647), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4613), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4615), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4627), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4629), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4609), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4631), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3295), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_end, + ACTIONS(4641), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4633), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [188523] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + aux_sym__terminator_token1, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(4611), 1, + anon_sym_PIPE, + ACTIONS(4619), 1, + anon_sym_when, + ACTIONS(4621), 1, + anon_sym_COLON_COLON, + ACTIONS(4623), 1, + anon_sym_EQ_GT, + ACTIONS(4625), 1, + anon_sym_EQ, + ACTIONS(4635), 1, + anon_sym_in, + ACTIONS(4637), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4639), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4643), 1, + anon_sym_STAR_STAR, + ACTIONS(4645), 1, + anon_sym_DOT, + ACTIONS(4647), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4613), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4615), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4627), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4629), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4609), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3295), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_end, + ACTIONS(4631), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4641), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4633), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [188627] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + aux_sym__terminator_token1, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(4611), 1, + anon_sym_PIPE, + ACTIONS(4619), 1, + anon_sym_when, + ACTIONS(4621), 1, + anon_sym_COLON_COLON, + ACTIONS(4623), 1, + anon_sym_EQ_GT, + ACTIONS(4625), 1, + anon_sym_EQ, + ACTIONS(4635), 1, + anon_sym_in, + ACTIONS(4637), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4639), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4643), 1, + anon_sym_STAR_STAR, + ACTIONS(4645), 1, + anon_sym_DOT, + ACTIONS(4647), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4613), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4615), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4627), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4629), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4609), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3295), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_end, + ACTIONS(4631), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4641), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4633), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [188731] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(4643), 1, + anon_sym_STAR_STAR, + ACTIONS(4645), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(4613), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3295), 45, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_end, + [188803] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(4643), 1, + anon_sym_STAR_STAR, + ACTIONS(4645), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3295), 47, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_end, + [188873] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + aux_sym__terminator_token1, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(4611), 1, + anon_sym_PIPE, + ACTIONS(4623), 1, + anon_sym_EQ_GT, + ACTIONS(4625), 1, + anon_sym_EQ, + ACTIONS(4635), 1, + anon_sym_in, + ACTIONS(4637), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4639), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4643), 1, + anon_sym_STAR_STAR, + ACTIONS(4645), 1, + anon_sym_DOT, + ACTIONS(4647), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4613), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4615), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4627), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4629), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4609), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4631), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4641), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_end, + ACTIONS(4633), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [188973] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + aux_sym__terminator_token1, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(4635), 1, + anon_sym_in, + ACTIONS(4637), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4639), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4643), 1, + anon_sym_STAR_STAR, + ACTIONS(4645), 1, + anon_sym_DOT, + ACTIONS(4647), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4613), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4615), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4641), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4633), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 25, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_end, + [189059] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2651), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2653), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [189123] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2647), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2649), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [189187] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(4637), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4639), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4643), 1, + anon_sym_STAR_STAR, + ACTIONS(4645), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(4613), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4615), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4641), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 35, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_end, + [189267] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4913), 1, + anon_sym_COMMA, + STATE(3672), 1, aux_sym_keywords_repeat1, - ACTIONS(3475), 2, + ACTIONS(3219), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3477), 47, - anon_sym_LBRACE, + ACTIONS(3221), 47, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -301638,381 +330281,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [159719] = 6, + [189335] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4590), 1, - anon_sym_COMMA, - STATE(3259), 1, - aux_sym_keywords_repeat1, - ACTIONS(3469), 2, + ACTIONS(2611), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3471), 47, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [159787] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3135), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3137), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [159851] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3361), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3363), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [159915] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3365), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3367), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [159979] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3297), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3299), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [160043] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(4344), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3391), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_end, - [160111] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3161), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3163), 49, + ACTIONS(2613), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -302062,197 +330341,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [160175] = 4, + [189399] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3369), 2, + ACTIONS(2631), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3371), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [160239] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3373), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3375), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [160303] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3100), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3102), 49, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [160367] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3169), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3171), 49, + ACTIONS(2633), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -302302,202 +330401,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [160431] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(4344), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3425), 2, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3427), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_end, - [160499] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3429), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3431), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [160563] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(4344), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3433), 2, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3435), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_end, - [160631] = 4, + [189463] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3417), 4, + ACTIONS(3000), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3419), 48, + ACTIONS(3002), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -302546,18 +330461,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [160695] = 4, + [189527] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3413), 4, + ACTIONS(3000), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3415), 48, + ACTIONS(3002), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -302606,7905 +330521,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [160759] = 4, + [189591] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3381), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3383), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [160823] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3385), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3387), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [160887] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3385), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3387), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [160951] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3381), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3383), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [161015] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3381), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3383), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [161079] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3377), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3379), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [161143] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4592), 1, - aux_sym_sigil_token3, - ACTIONS(3143), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3145), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [161209] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3381), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3383), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [161273] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3391), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [161337] = 26, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4500), 1, - anon_sym_PIPE, - ACTIONS(4511), 1, - anon_sym_COLON_COLON, - ACTIONS(4513), 1, - anon_sym_EQ_GT, - ACTIONS(4515), 1, - anon_sym_EQ, - ACTIONS(4525), 1, - anon_sym_in, - ACTIONS(4527), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4529), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4533), 1, - anon_sym_STAR_STAR, - ACTIONS(4535), 1, - anon_sym_DOT, - ACTIONS(4537), 1, - anon_sym_LBRACK2, - ACTIONS(4539), 1, - sym__not_in, - ACTIONS(4594), 1, - anon_sym_RPAREN, - ACTIONS(4596), 1, - anon_sym_COMMA, - ACTIONS(4599), 1, - anon_sym_when, - ACTIONS(4602), 1, - anon_sym_DASH_GT, - ACTIONS(4502), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4504), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4506), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4517), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4519), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4498), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4521), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4531), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4523), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [161445] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3385), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3387), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [161509] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4296), 1, - anon_sym_DOT, - ACTIONS(4298), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 3, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(3391), 47, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - [161577] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2647), 3, - sym__not_in, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(2649), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [161641] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3173), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3175), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [161705] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2643), 3, - sym__not_in, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(2645), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [161769] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3293), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3295), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [161833] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3409), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3411), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [161897] = 26, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4434), 1, - anon_sym_PIPE, - ACTIONS(4442), 1, - anon_sym_when, - ACTIONS(4444), 1, - anon_sym_COLON_COLON, - ACTIONS(4446), 1, - anon_sym_EQ_GT, - ACTIONS(4448), 1, - anon_sym_EQ, - ACTIONS(4458), 1, - anon_sym_in, ACTIONS(4460), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4462), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4466), 1, - anon_sym_STAR_STAR, + anon_sym_PIPE, ACTIONS(4468), 1, - sym__not_in, - ACTIONS(4604), 1, - anon_sym_RPAREN, - ACTIONS(4606), 1, - anon_sym_COMMA, - STATE(4841), 1, - aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(4436), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4438), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4440), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4450), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4452), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4432), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4454), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4464), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4456), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [162005] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3177), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3179), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, anon_sym_when, + ACTIONS(4470), 1, anon_sym_COLON_COLON, + ACTIONS(4472), 1, anon_sym_EQ_GT, + ACTIONS(4474), 1, anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, + ACTIONS(4484), 1, anon_sym_in, + ACTIONS(4486), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4488), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(4492), 1, anon_sym_STAR_STAR, + ACTIONS(4494), 1, anon_sym_DOT, - [162069] = 4, - ACTIONS(5), 1, - sym_comment, + ACTIONS(4496), 1, + anon_sym_LBRACK2, + ACTIONS(4498), 1, + sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3397), 4, - sym__not_in, + ACTIONS(3544), 2, ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3399), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [162133] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2635), 3, - sym__not_in, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(2637), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [162197] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3181), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3183), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [162261] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3185), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3187), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [162325] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2639), 3, - sym__not_in, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(2641), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [162389] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3189), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3191), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [162453] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3401), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3403), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [162517] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3193), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3195), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [162581] = 10, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4294), 1, - anon_sym_STAR_STAR, - ACTIONS(4296), 1, - anon_sym_DOT, - ACTIONS(4298), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4264), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4266), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 3, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(4292), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 36, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - [162657] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4290), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4294), 1, - anon_sym_STAR_STAR, - ACTIONS(4296), 1, - anon_sym_DOT, - ACTIONS(4298), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4264), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4266), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 3, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(4292), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 35, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - [162735] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2639), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2641), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [162799] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4290), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4294), 1, - anon_sym_STAR_STAR, - ACTIONS(4296), 1, - anon_sym_DOT, - ACTIONS(4298), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4264), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4266), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 3, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(4292), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 35, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - [162877] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3385), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3387), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [162941] = 14, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4286), 1, - anon_sym_in, - ACTIONS(4288), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4290), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4294), 1, - anon_sym_STAR_STAR, - ACTIONS(4296), 1, - anon_sym_DOT, - ACTIONS(4298), 1, - anon_sym_LBRACK2, - ACTIONS(4300), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(4264), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4266), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4292), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 33, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [163025] = 16, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4286), 1, - anon_sym_in, - ACTIONS(4288), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4290), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4294), 1, - anon_sym_STAR_STAR, - ACTIONS(4296), 1, - anon_sym_DOT, - ACTIONS(4298), 1, - anon_sym_LBRACK2, - ACTIONS(4300), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(4264), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4266), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4260), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4292), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4284), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - [163113] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3381), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3383), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [163177] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3281), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3283), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [163241] = 18, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4286), 1, - anon_sym_in, - ACTIONS(4288), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4290), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4294), 1, - anon_sym_STAR_STAR, - ACTIONS(4296), 1, - anon_sym_DOT, - ACTIONS(4298), 1, - anon_sym_LBRACK2, - ACTIONS(4300), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(4264), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4266), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4280), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4260), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4282), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4292), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4284), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 12, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - [163333] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3381), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3383), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [163397] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3405), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3407), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [163461] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3391), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [163525] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3393), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3395), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [163589] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3397), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3399), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [163653] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__not_in, - ACTIONS(4535), 1, - anon_sym_DOT, - ACTIONS(4537), 1, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3391), 48, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - [163721] = 20, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4276), 1, - anon_sym_EQ, - ACTIONS(4286), 1, - anon_sym_in, - ACTIONS(4288), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4290), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4294), 1, - anon_sym_STAR_STAR, - ACTIONS(4296), 1, - anon_sym_DOT, - ACTIONS(4298), 1, - anon_sym_LBRACK2, - ACTIONS(4300), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(4264), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4266), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4278), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4280), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4260), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4282), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4292), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 8, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - ACTIONS(4284), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [163817] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4274), 1, - anon_sym_EQ_GT, - ACTIONS(4276), 1, - anon_sym_EQ, - ACTIONS(4286), 1, - anon_sym_in, - ACTIONS(4288), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4290), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4294), 1, - anon_sym_STAR_STAR, - ACTIONS(4296), 1, - anon_sym_DOT, - ACTIONS(4298), 1, - anon_sym_LBRACK2, - ACTIONS(4300), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(4264), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4266), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4278), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4280), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4260), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4282), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4292), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 7, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - ACTIONS(4284), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [163915] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3289), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3291), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [163979] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4262), 1, - anon_sym_PIPE, - ACTIONS(4272), 1, - anon_sym_COLON_COLON, - ACTIONS(4274), 1, - anon_sym_EQ_GT, - ACTIONS(4276), 1, - anon_sym_EQ, - ACTIONS(4286), 1, - anon_sym_in, - ACTIONS(4288), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4290), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4294), 1, - anon_sym_STAR_STAR, - ACTIONS(4296), 1, - anon_sym_DOT, - ACTIONS(4298), 1, - anon_sym_LBRACK2, - ACTIONS(4300), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(4264), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4266), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4278), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4280), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4260), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3391), 5, + ACTIONS(3546), 2, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - ACTIONS(4282), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4292), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4284), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [164081] = 10, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__not_in, - ACTIONS(4533), 1, - anon_sym_STAR_STAR, - ACTIONS(4535), 1, - anon_sym_DOT, - ACTIONS(4537), 1, - anon_sym_LBRACK2, - ACTIONS(4502), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4504), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4531), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 37, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_DASH_GT, - [164157] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3391), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [164221] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__not_in, - ACTIONS(4529), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4533), 1, - anon_sym_STAR_STAR, - ACTIONS(4535), 1, - anon_sym_DOT, - ACTIONS(4537), 1, - anon_sym_LBRACK2, - ACTIONS(4502), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4504), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4531), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 36, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_DASH_GT, - [164299] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__not_in, - ACTIONS(4529), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4533), 1, - anon_sym_STAR_STAR, - ACTIONS(4535), 1, - anon_sym_DOT, - ACTIONS(4537), 1, - anon_sym_LBRACK2, - ACTIONS(4502), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4504), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4531), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 36, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_DASH_GT, - [164377] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4525), 1, - anon_sym_in, - ACTIONS(4527), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4529), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4533), 1, - anon_sym_STAR_STAR, - ACTIONS(4535), 1, - anon_sym_DOT, - ACTIONS(4537), 1, - anon_sym_LBRACK2, - ACTIONS(4539), 1, - sym__not_in, - ACTIONS(4502), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4504), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4531), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 34, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_DASH_GT, - [164459] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4262), 1, - anon_sym_PIPE, - ACTIONS(4270), 1, - anon_sym_when, - ACTIONS(4272), 1, - anon_sym_COLON_COLON, - ACTIONS(4274), 1, - anon_sym_EQ_GT, - ACTIONS(4276), 1, - anon_sym_EQ, - ACTIONS(4286), 1, - anon_sym_in, - ACTIONS(4288), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4290), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4294), 1, - anon_sym_STAR_STAR, - ACTIONS(4296), 1, - anon_sym_DOT, - ACTIONS(4298), 1, - anon_sym_LBRACK2, - ACTIONS(4300), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(4264), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4266), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4278), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4280), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3391), 4, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(4260), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4282), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4292), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4284), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [164563] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3197), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3199), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [164627] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4525), 1, - anon_sym_in, - ACTIONS(4527), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4529), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4533), 1, - anon_sym_STAR_STAR, - ACTIONS(4535), 1, - anon_sym_DOT, - ACTIONS(4537), 1, - anon_sym_LBRACK2, - ACTIONS(4539), 1, - sym__not_in, - ACTIONS(4502), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4504), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4498), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4531), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4523), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 21, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_DASH_GT, - [164713] = 16, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4525), 1, - anon_sym_in, - ACTIONS(4527), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4529), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4533), 1, - anon_sym_STAR_STAR, - ACTIONS(4535), 1, - anon_sym_DOT, - ACTIONS(4537), 1, - anon_sym_LBRACK2, - ACTIONS(4539), 1, - sym__not_in, - ACTIONS(4502), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4504), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4498), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4521), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4531), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4523), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 16, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_DASH_GT, - [164801] = 17, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4525), 1, - anon_sym_in, - ACTIONS(4527), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4529), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4533), 1, - anon_sym_STAR_STAR, - ACTIONS(4535), 1, - anon_sym_DOT, - ACTIONS(4537), 1, - anon_sym_LBRACK2, - ACTIONS(4539), 1, - sym__not_in, - ACTIONS(4502), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4504), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4519), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4498), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4521), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4531), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4523), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 13, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_DASH_GT, - [164891] = 19, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4515), 1, - anon_sym_EQ, - ACTIONS(4525), 1, - anon_sym_in, - ACTIONS(4527), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4529), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4533), 1, - anon_sym_STAR_STAR, - ACTIONS(4535), 1, - anon_sym_DOT, - ACTIONS(4537), 1, - anon_sym_LBRACK2, - ACTIONS(4539), 1, - sym__not_in, - ACTIONS(4502), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4504), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4517), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4519), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4498), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4521), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4531), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 9, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - ACTIONS(4523), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [164985] = 20, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4513), 1, - anon_sym_EQ_GT, - ACTIONS(4515), 1, - anon_sym_EQ, - ACTIONS(4525), 1, - anon_sym_in, - ACTIONS(4527), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4529), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4533), 1, - anon_sym_STAR_STAR, - ACTIONS(4535), 1, - anon_sym_DOT, - ACTIONS(4537), 1, - anon_sym_LBRACK2, - ACTIONS(4539), 1, - sym__not_in, - ACTIONS(4502), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4504), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4517), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4519), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4498), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4521), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4531), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 8, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - ACTIONS(4523), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [165081] = 22, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4500), 1, - anon_sym_PIPE, - ACTIONS(4511), 1, - anon_sym_COLON_COLON, - ACTIONS(4513), 1, - anon_sym_EQ_GT, - ACTIONS(4515), 1, - anon_sym_EQ, - ACTIONS(4525), 1, - anon_sym_in, - ACTIONS(4527), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4529), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4533), 1, - anon_sym_STAR_STAR, - ACTIONS(4535), 1, - anon_sym_DOT, - ACTIONS(4537), 1, - anon_sym_LBRACK2, - ACTIONS(4539), 1, - sym__not_in, - ACTIONS(4502), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4504), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4517), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4519), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4498), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4521), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3391), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_DASH_GT, - ACTIONS(4531), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4523), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [165181] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3391), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [165245] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4500), 1, - anon_sym_PIPE, - ACTIONS(4511), 1, - anon_sym_COLON_COLON, - ACTIONS(4513), 1, - anon_sym_EQ_GT, - ACTIONS(4515), 1, - anon_sym_EQ, - ACTIONS(4525), 1, - anon_sym_in, - ACTIONS(4527), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4529), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4533), 1, - anon_sym_STAR_STAR, - ACTIONS(4535), 1, - anon_sym_DOT, - ACTIONS(4537), 1, - anon_sym_LBRACK2, - ACTIONS(4539), 1, - sym__not_in, - ACTIONS(4585), 1, - anon_sym_when, - ACTIONS(4502), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4504), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4517), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4519), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4498), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3391), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_DASH_GT, - ACTIONS(4521), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4531), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4523), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [165347] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4500), 1, - anon_sym_PIPE, - ACTIONS(4511), 1, - anon_sym_COLON_COLON, - ACTIONS(4513), 1, - anon_sym_EQ_GT, - ACTIONS(4515), 1, - anon_sym_EQ, - ACTIONS(4525), 1, - anon_sym_in, - ACTIONS(4527), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4529), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4533), 1, - anon_sym_STAR_STAR, - ACTIONS(4535), 1, - anon_sym_DOT, - ACTIONS(4537), 1, - anon_sym_LBRACK2, - ACTIONS(4539), 1, - sym__not_in, - ACTIONS(4585), 1, - anon_sym_when, - ACTIONS(4502), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4504), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4517), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4519), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4498), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3391), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_DASH_GT, - ACTIONS(4521), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4531), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4523), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [165449] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__not_in, - ACTIONS(4533), 1, - anon_sym_STAR_STAR, - ACTIONS(4535), 1, - anon_sym_DOT, - ACTIONS(4537), 1, - anon_sym_LBRACK2, - ACTIONS(4502), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3391), 45, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_DASH_GT, - [165521] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__not_in, - ACTIONS(4533), 1, - anon_sym_STAR_STAR, - ACTIONS(4535), 1, - anon_sym_DOT, - ACTIONS(4537), 1, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3391), 47, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_DASH_GT, - [165591] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3391), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [165655] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4500), 1, - anon_sym_PIPE, - ACTIONS(4513), 1, - anon_sym_EQ_GT, - ACTIONS(4515), 1, - anon_sym_EQ, - ACTIONS(4525), 1, - anon_sym_in, - ACTIONS(4527), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4529), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4533), 1, - anon_sym_STAR_STAR, - ACTIONS(4535), 1, - anon_sym_DOT, - ACTIONS(4537), 1, - anon_sym_LBRACK2, - ACTIONS(4539), 1, - sym__not_in, - ACTIONS(4502), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4504), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4517), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4519), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4498), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4521), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4531), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - ACTIONS(4523), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [165753] = 14, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4525), 1, - anon_sym_in, - ACTIONS(4527), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4529), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4533), 1, - anon_sym_STAR_STAR, - ACTIONS(4535), 1, - anon_sym_DOT, - ACTIONS(4537), 1, - anon_sym_LBRACK2, - ACTIONS(4539), 1, - sym__not_in, - ACTIONS(4502), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4504), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4531), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4523), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 25, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DASH_GT, - [165837] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__not_in, - ACTIONS(4527), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4529), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4533), 1, - anon_sym_STAR_STAR, - ACTIONS(4535), 1, - anon_sym_DOT, - ACTIONS(4537), 1, - anon_sym_LBRACK2, - ACTIONS(4502), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4504), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4531), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 35, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_DASH_GT, - [165917] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3401), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3403), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [165981] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3405), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3407), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [166045] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3409), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3411), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [166109] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3413), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3415), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [166173] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3417), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3419), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [166237] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3135), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3137), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [166301] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3131), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3133), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [166365] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3421), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3423), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [166429] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3425), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3427), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [166493] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3425), 1, - sym__not_in, - ACTIONS(4535), 1, - anon_sym_DOT, - ACTIONS(4537), 1, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3427), 48, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - [166561] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3285), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3287), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [166625] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3201), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3203), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [166689] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3205), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3207), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [166753] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3209), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3211), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [166817] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4262), 1, - anon_sym_PIPE, - ACTIONS(4270), 1, - anon_sym_when, - ACTIONS(4272), 1, - anon_sym_COLON_COLON, - ACTIONS(4274), 1, - anon_sym_EQ_GT, - ACTIONS(4276), 1, - anon_sym_EQ, - ACTIONS(4286), 1, - anon_sym_in, - ACTIONS(4288), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4290), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4294), 1, - anon_sym_STAR_STAR, - ACTIONS(4296), 1, - anon_sym_DOT, - ACTIONS(4298), 1, - anon_sym_LBRACK2, - ACTIONS(4300), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(4264), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4266), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4278), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4280), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3391), 4, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(4260), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4282), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4292), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4284), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [166921] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4294), 1, - anon_sym_STAR_STAR, - ACTIONS(4296), 1, - anon_sym_DOT, - ACTIONS(4298), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4264), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3389), 3, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(3391), 44, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - [166993] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4294), 1, - anon_sym_STAR_STAR, - ACTIONS(4296), 1, - anon_sym_DOT, - ACTIONS(4298), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 3, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(3391), 46, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - [167063] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3076), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3078), 49, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [167127] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3391), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [167191] = 22, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4262), 1, - anon_sym_PIPE, - ACTIONS(4274), 1, - anon_sym_EQ_GT, - ACTIONS(4276), 1, - anon_sym_EQ, - ACTIONS(4286), 1, - anon_sym_in, - ACTIONS(4288), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4290), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4294), 1, - anon_sym_STAR_STAR, - ACTIONS(4296), 1, - anon_sym_DOT, - ACTIONS(4298), 1, - anon_sym_LBRACK2, - ACTIONS(4300), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(4264), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4266), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4278), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4280), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4260), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4282), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3391), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - ACTIONS(4292), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4284), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [167291] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3044), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3046), 49, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [167355] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3062), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3064), 49, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [167419] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3066), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3068), 49, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [167483] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4286), 1, - anon_sym_in, - ACTIONS(4288), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4290), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4294), 1, - anon_sym_STAR_STAR, - ACTIONS(4296), 1, - anon_sym_DOT, - ACTIONS(4298), 1, - anon_sym_LBRACK2, - ACTIONS(4300), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3389), 2, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(4264), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4266), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4292), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4284), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 24, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [167569] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4288), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4290), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4294), 1, - anon_sym_STAR_STAR, - ACTIONS(4296), 1, - anon_sym_DOT, - ACTIONS(4298), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4264), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4266), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3389), 3, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(4292), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 34, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - [167649] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3213), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3215), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [167713] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3217), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3219), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [167777] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3425), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3427), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [167841] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3425), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3427), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [167905] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2994), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2996), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [167969] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3096), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3098), 49, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [168033] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3433), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3435), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [168097] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3558), 1, - aux_sym__terminator_token1, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(4310), 1, - anon_sym_PIPE, - ACTIONS(4318), 1, - anon_sym_when, - ACTIONS(4320), 1, - anon_sym_COLON_COLON, - ACTIONS(4322), 1, - anon_sym_EQ_GT, - ACTIONS(4324), 1, - anon_sym_EQ, - ACTIONS(4334), 1, - anon_sym_in, - ACTIONS(4336), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4338), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4342), 1, - anon_sym_STAR_STAR, - ACTIONS(4344), 1, - anon_sym_DOT, - ACTIONS(4346), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4312), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4314), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4316), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3560), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_end, - ACTIONS(4326), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4328), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4308), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4330), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4340), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4332), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [168203] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3433), 1, - sym__not_in, - ACTIONS(4535), 1, - anon_sym_DOT, - ACTIONS(4537), 1, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3435), 48, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - [168271] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3433), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3435), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [168335] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4500), 1, - anon_sym_PIPE, - ACTIONS(4511), 1, - anon_sym_COLON_COLON, - ACTIONS(4513), 1, - anon_sym_EQ_GT, - ACTIONS(4515), 1, - anon_sym_EQ, - ACTIONS(4525), 1, - anon_sym_in, - ACTIONS(4527), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4529), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4533), 1, - anon_sym_STAR_STAR, - ACTIONS(4535), 1, - anon_sym_DOT, - ACTIONS(4537), 1, - anon_sym_LBRACK2, - ACTIONS(4539), 1, - sym__not_in, - ACTIONS(4585), 1, - anon_sym_when, - ACTIONS(4502), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4504), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4506), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3560), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - ACTIONS(4517), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4519), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4498), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4521), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4531), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4523), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [168439] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3433), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3435), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [168503] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3437), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3439), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [168567] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3441), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3443), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [168631] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3445), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3447), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [168695] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3127), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3129), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [168759] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3123), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3125), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [168823] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3449), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3451), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [168887] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2972), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2974), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [168951] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3453), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3455), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [169015] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3453), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3455), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [169079] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3453), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3455), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [169143] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3457), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3459), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [169207] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3457), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3459), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [169271] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3022), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3024), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [169335] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3050), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3052), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(4462), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [169399] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3461), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3463), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, + ACTIONS(4464), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4466), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(4476), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4478), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [169463] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3465), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3467), 49, - anon_sym_RPAREN, + ACTIONS(4458), 4, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [169527] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3165), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3167), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, + ACTIONS(4480), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, + ACTIONS(4490), 6, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [169591] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3018), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3020), 49, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4482), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -310514,19 +330602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [169655] = 4, + [189697] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3090), 2, @@ -310586,77 +330662,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [169719] = 4, + [189761] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3221), 2, + ACTIONS(3026), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3223), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [169783] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3072), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3074), 49, + ACTIONS(3028), 49, anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, @@ -310706,24 +330722,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [169847] = 4, + [189825] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3225), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3006), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3227), 49, + anon_sym_LBRACK2, + ACTIONS(3008), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -310766,24 +330782,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [169911] = 4, + [189889] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3229), 2, + ACTIONS(3516), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3231), 49, + ACTIONS(3518), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [189953] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(4548), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3118), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3120), 48, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + [190021] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3327), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3329), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -310826,24 +330964,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [169975] = 4, + [190085] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3269), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3134), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3271), 49, + anon_sym_LBRACK2, + ACTIONS(3136), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -310886,7 +331024,1497 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [170039] = 4, + [190149] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(4548), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3295), 48, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + [190217] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(4546), 1, + anon_sym_STAR_STAR, + ACTIONS(4548), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(4516), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4518), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4544), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 37, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + [190293] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(4542), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4546), 1, + anon_sym_STAR_STAR, + ACTIONS(4548), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(4516), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4518), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4544), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 36, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + [190371] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(4542), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4546), 1, + anon_sym_STAR_STAR, + ACTIONS(4548), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(4516), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4518), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4544), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 36, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + [190449] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + aux_sym__terminator_token1, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(4538), 1, + anon_sym_in, + ACTIONS(4540), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4542), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4546), 1, + anon_sym_STAR_STAR, + ACTIONS(4548), 1, + anon_sym_DOT, + ACTIONS(4550), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4516), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4518), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4544), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 34, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [190533] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + aux_sym__terminator_token1, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(4538), 1, + anon_sym_in, + ACTIONS(4540), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4542), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4546), 1, + anon_sym_STAR_STAR, + ACTIONS(4548), 1, + anon_sym_DOT, + ACTIONS(4550), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4516), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4518), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4512), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4544), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4536), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 21, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + [190621] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + aux_sym__terminator_token1, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(4538), 1, + anon_sym_in, + ACTIONS(4540), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4542), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4546), 1, + anon_sym_STAR_STAR, + ACTIONS(4548), 1, + anon_sym_DOT, + ACTIONS(4550), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4516), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4518), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4512), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4534), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4544), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4536), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 16, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + [190711] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + aux_sym__terminator_token1, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(4538), 1, + anon_sym_in, + ACTIONS(4540), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4542), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4546), 1, + anon_sym_STAR_STAR, + ACTIONS(4548), 1, + anon_sym_DOT, + ACTIONS(4550), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4516), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4518), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4532), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4512), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4534), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4544), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4536), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + [190803] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + aux_sym__terminator_token1, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(4528), 1, + anon_sym_EQ, + ACTIONS(4538), 1, + anon_sym_in, + ACTIONS(4540), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4542), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4546), 1, + anon_sym_STAR_STAR, + ACTIONS(4548), 1, + anon_sym_DOT, + ACTIONS(4550), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4516), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4518), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4530), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4532), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4512), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4534), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4544), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + ACTIONS(4536), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [190899] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + aux_sym__terminator_token1, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(4526), 1, + anon_sym_EQ_GT, + ACTIONS(4528), 1, + anon_sym_EQ, + ACTIONS(4538), 1, + anon_sym_in, + ACTIONS(4540), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4542), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4546), 1, + anon_sym_STAR_STAR, + ACTIONS(4548), 1, + anon_sym_DOT, + ACTIONS(4550), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4516), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4518), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4530), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4532), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4512), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4534), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4544), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 8, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + ACTIONS(4536), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [190997] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + aux_sym__terminator_token1, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(4514), 1, + anon_sym_PIPE, + ACTIONS(4524), 1, + anon_sym_COLON_COLON, + ACTIONS(4526), 1, + anon_sym_EQ_GT, + ACTIONS(4528), 1, + anon_sym_EQ, + ACTIONS(4538), 1, + anon_sym_in, + ACTIONS(4540), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4542), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4546), 1, + anon_sym_STAR_STAR, + ACTIONS(4548), 1, + anon_sym_DOT, + ACTIONS(4550), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4516), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4518), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4530), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4532), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4512), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4534), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3295), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + ACTIONS(4544), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4536), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [191099] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + aux_sym__terminator_token1, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(4514), 1, + anon_sym_PIPE, + ACTIONS(4522), 1, + anon_sym_when, + ACTIONS(4524), 1, + anon_sym_COLON_COLON, + ACTIONS(4526), 1, + anon_sym_EQ_GT, + ACTIONS(4528), 1, + anon_sym_EQ, + ACTIONS(4538), 1, + anon_sym_in, + ACTIONS(4540), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4542), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4546), 1, + anon_sym_STAR_STAR, + ACTIONS(4548), 1, + anon_sym_DOT, + ACTIONS(4550), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4516), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4518), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4530), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4532), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4512), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3295), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4534), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4544), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4536), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [191203] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + aux_sym__terminator_token1, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(4514), 1, + anon_sym_PIPE, + ACTIONS(4522), 1, + anon_sym_when, + ACTIONS(4524), 1, + anon_sym_COLON_COLON, + ACTIONS(4526), 1, + anon_sym_EQ_GT, + ACTIONS(4528), 1, + anon_sym_EQ, + ACTIONS(4538), 1, + anon_sym_in, + ACTIONS(4540), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4542), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4546), 1, + anon_sym_STAR_STAR, + ACTIONS(4548), 1, + anon_sym_DOT, + ACTIONS(4550), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4516), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4518), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4530), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4532), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4512), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3295), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4534), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4544), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4536), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [191307] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(4546), 1, + anon_sym_STAR_STAR, + ACTIONS(4548), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(4516), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3295), 45, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + [191379] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(4546), 1, + anon_sym_STAR_STAR, + ACTIONS(4548), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3295), 47, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + [191449] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + aux_sym__terminator_token1, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(4514), 1, + anon_sym_PIPE, + ACTIONS(4526), 1, + anon_sym_EQ_GT, + ACTIONS(4528), 1, + anon_sym_EQ, + ACTIONS(4538), 1, + anon_sym_in, + ACTIONS(4540), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4542), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4546), 1, + anon_sym_STAR_STAR, + ACTIONS(4548), 1, + anon_sym_DOT, + ACTIONS(4550), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4516), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4518), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4530), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4532), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4512), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4534), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4544), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + ACTIONS(4536), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [191549] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + aux_sym__terminator_token1, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(4538), 1, + anon_sym_in, + ACTIONS(4540), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4542), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4546), 1, + anon_sym_STAR_STAR, + ACTIONS(4548), 1, + anon_sym_DOT, + ACTIONS(4550), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4516), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4518), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4544), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4536), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 25, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [191635] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(4540), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4542), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4546), 1, + anon_sym_STAR_STAR, + ACTIONS(4548), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(4516), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4518), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4544), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 35, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + [191715] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3327), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3329), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [191779] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(4548), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3191), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3193), 48, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + [191847] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3551), 1, + aux_sym__terminator_token1, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(4514), 1, + anon_sym_PIPE, + ACTIONS(4522), 1, + anon_sym_when, + ACTIONS(4524), 1, + anon_sym_COLON_COLON, + ACTIONS(4526), 1, + anon_sym_EQ_GT, + ACTIONS(4528), 1, + anon_sym_EQ, + ACTIONS(4538), 1, + anon_sym_in, + ACTIONS(4540), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4542), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4546), 1, + anon_sym_STAR_STAR, + ACTIONS(4548), 1, + anon_sym_DOT, + ACTIONS(4550), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4516), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4518), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4520), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3553), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4530), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4532), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4512), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4534), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4544), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4536), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [191953] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3106), 2, @@ -310897,13 +332525,155 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_comment, aux_sym__terminator_token1, ACTIONS(3108), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [192017] = 26, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4895), 1, anon_sym_GT_GT, + ACTIONS(4920), 1, + anon_sym_PIPE, + ACTIONS(4924), 1, + anon_sym_COMMA, + ACTIONS(4930), 1, + anon_sym_when, + ACTIONS(4932), 1, + anon_sym_COLON_COLON, + ACTIONS(4934), 1, + anon_sym_EQ_GT, + ACTIONS(4936), 1, + anon_sym_EQ, + ACTIONS(4946), 1, + anon_sym_in, + ACTIONS(4948), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4950), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4954), 1, + anon_sym_STAR_STAR, + ACTIONS(4956), 1, + anon_sym_DOT, + ACTIONS(4958), 1, + anon_sym_LBRACK2, + ACTIONS(4960), 1, + sym__not_in, + STATE(5445), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(4922), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4928), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4938), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4940), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4918), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4942), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4952), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4944), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [192125] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3203), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3205), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -310946,7 +332716,5567 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [170103] = 4, + [192189] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3207), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3209), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [192253] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3203), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3205), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [192317] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3199), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3201), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [192381] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3195), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3197), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [192445] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3183), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3185), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [192509] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3187), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3189), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [192573] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3183), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3185), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [192637] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3183), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3185), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [192701] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3179), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3181), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [192765] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3175), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3177), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [192829] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3171), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3173), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [192893] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3167), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3169), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [192957] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3163), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3165), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [193021] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3159), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3161), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [193085] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [193149] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [193213] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [193277] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [193341] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [193405] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3295), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [193469] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [193533] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [193597] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [193661] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [193725] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [193789] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [193853] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [193917] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [193981] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [194045] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [194109] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [194173] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [194237] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [194301] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [194365] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3319), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3321), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [194429] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3130), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3132), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [194493] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3122), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3124), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [194557] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3114), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3116), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [194621] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3114), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3116), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [194685] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3122), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3124), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [194749] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3122), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3124), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [194813] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3006), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3008), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [194877] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3341), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3343), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [194941] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__not_in, + ACTIONS(4962), 1, + anon_sym_DOT, + ACTIONS(4964), 1, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3295), 48, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + [195009] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__not_in, + ACTIONS(4962), 1, + anon_sym_DOT, + ACTIONS(4964), 1, + anon_sym_LBRACK2, + ACTIONS(4972), 1, + anon_sym_STAR_STAR, + ACTIONS(4966), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4968), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4970), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 37, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_DASH_GT, + [195085] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__not_in, + ACTIONS(4962), 1, + anon_sym_DOT, + ACTIONS(4964), 1, + anon_sym_LBRACK2, + ACTIONS(4972), 1, + anon_sym_STAR_STAR, + ACTIONS(4974), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4966), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4968), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4970), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 36, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_DASH_GT, + [195163] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__not_in, + ACTIONS(4962), 1, + anon_sym_DOT, + ACTIONS(4964), 1, + anon_sym_LBRACK2, + ACTIONS(4972), 1, + anon_sym_STAR_STAR, + ACTIONS(4974), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4966), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4968), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4970), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 36, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_DASH_GT, + [195241] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4962), 1, + anon_sym_DOT, + ACTIONS(4964), 1, + anon_sym_LBRACK2, + ACTIONS(4972), 1, + anon_sym_STAR_STAR, + ACTIONS(4974), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4976), 1, + anon_sym_in, + ACTIONS(4978), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4980), 1, + sym__not_in, + ACTIONS(4966), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4968), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4970), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 34, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_DASH_GT, + [195323] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4962), 1, + anon_sym_DOT, + ACTIONS(4964), 1, + anon_sym_LBRACK2, + ACTIONS(4972), 1, + anon_sym_STAR_STAR, + ACTIONS(4974), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4976), 1, + anon_sym_in, + ACTIONS(4978), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4980), 1, + sym__not_in, + ACTIONS(4966), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4968), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4982), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4970), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4984), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 21, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_DASH_GT, + [195409] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4962), 1, + anon_sym_DOT, + ACTIONS(4964), 1, + anon_sym_LBRACK2, + ACTIONS(4972), 1, + anon_sym_STAR_STAR, + ACTIONS(4974), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4976), 1, + anon_sym_in, + ACTIONS(4978), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4980), 1, + sym__not_in, + ACTIONS(4966), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4968), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4982), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4986), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4970), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4984), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 16, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_DASH_GT, + [195497] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4962), 1, + anon_sym_DOT, + ACTIONS(4964), 1, + anon_sym_LBRACK2, + ACTIONS(4972), 1, + anon_sym_STAR_STAR, + ACTIONS(4974), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4976), 1, + anon_sym_in, + ACTIONS(4978), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4980), 1, + sym__not_in, + ACTIONS(4966), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4968), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4988), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4982), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4986), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4970), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4984), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 13, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_DASH_GT, + [195587] = 19, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4962), 1, + anon_sym_DOT, + ACTIONS(4964), 1, + anon_sym_LBRACK2, + ACTIONS(4972), 1, + anon_sym_STAR_STAR, + ACTIONS(4974), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4976), 1, + anon_sym_in, + ACTIONS(4978), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4980), 1, + sym__not_in, + ACTIONS(4990), 1, + anon_sym_EQ, + ACTIONS(4966), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4968), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4988), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4992), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4982), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4986), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4970), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 9, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + ACTIONS(4984), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [195681] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4962), 1, + anon_sym_DOT, + ACTIONS(4964), 1, + anon_sym_LBRACK2, + ACTIONS(4972), 1, + anon_sym_STAR_STAR, + ACTIONS(4974), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4976), 1, + anon_sym_in, + ACTIONS(4978), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4980), 1, + sym__not_in, + ACTIONS(4990), 1, + anon_sym_EQ, + ACTIONS(4994), 1, + anon_sym_EQ_GT, + ACTIONS(4966), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4968), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4988), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4992), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4982), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4986), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4970), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 8, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + ACTIONS(4984), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [195777] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4962), 1, + anon_sym_DOT, + ACTIONS(4964), 1, + anon_sym_LBRACK2, + ACTIONS(4972), 1, + anon_sym_STAR_STAR, + ACTIONS(4974), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4976), 1, + anon_sym_in, + ACTIONS(4978), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4980), 1, + sym__not_in, + ACTIONS(4990), 1, + anon_sym_EQ, + ACTIONS(4994), 1, + anon_sym_EQ_GT, + ACTIONS(4996), 1, + anon_sym_PIPE, + ACTIONS(4998), 1, + anon_sym_COLON_COLON, + ACTIONS(4966), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4968), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4988), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4992), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4982), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4986), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3295), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_DASH_GT, + ACTIONS(4970), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4984), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [195877] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3295), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [195941] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4962), 1, + anon_sym_DOT, + ACTIONS(4964), 1, + anon_sym_LBRACK2, + ACTIONS(4972), 1, + anon_sym_STAR_STAR, + ACTIONS(4974), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4976), 1, + anon_sym_in, + ACTIONS(4978), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4980), 1, + sym__not_in, + ACTIONS(4990), 1, + anon_sym_EQ, + ACTIONS(4994), 1, + anon_sym_EQ_GT, + ACTIONS(4996), 1, + anon_sym_PIPE, + ACTIONS(4998), 1, + anon_sym_COLON_COLON, + ACTIONS(5000), 1, + anon_sym_when, + ACTIONS(4966), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4968), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4988), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4992), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4982), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3295), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_DASH_GT, + ACTIONS(4986), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4970), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4984), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [196043] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4962), 1, + anon_sym_DOT, + ACTIONS(4964), 1, + anon_sym_LBRACK2, + ACTIONS(4972), 1, + anon_sym_STAR_STAR, + ACTIONS(4974), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4976), 1, + anon_sym_in, + ACTIONS(4978), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4980), 1, + sym__not_in, + ACTIONS(4990), 1, + anon_sym_EQ, + ACTIONS(4994), 1, + anon_sym_EQ_GT, + ACTIONS(4996), 1, + anon_sym_PIPE, + ACTIONS(4998), 1, + anon_sym_COLON_COLON, + ACTIONS(5000), 1, + anon_sym_when, + ACTIONS(4966), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4968), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4988), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4992), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4982), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3295), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_DASH_GT, + ACTIONS(4986), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4970), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4984), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [196145] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__not_in, + ACTIONS(4962), 1, + anon_sym_DOT, + ACTIONS(4964), 1, + anon_sym_LBRACK2, + ACTIONS(4972), 1, + anon_sym_STAR_STAR, + ACTIONS(4966), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3295), 45, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_DASH_GT, + [196217] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__not_in, + ACTIONS(4962), 1, + anon_sym_DOT, + ACTIONS(4964), 1, + anon_sym_LBRACK2, + ACTIONS(4972), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3295), 47, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_DASH_GT, + [196287] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3295), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [196351] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4962), 1, + anon_sym_DOT, + ACTIONS(4964), 1, + anon_sym_LBRACK2, + ACTIONS(4972), 1, + anon_sym_STAR_STAR, + ACTIONS(4974), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4976), 1, + anon_sym_in, + ACTIONS(4978), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4980), 1, + sym__not_in, + ACTIONS(4990), 1, + anon_sym_EQ, + ACTIONS(4994), 1, + anon_sym_EQ_GT, + ACTIONS(4996), 1, + anon_sym_PIPE, + ACTIONS(4966), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4968), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4988), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4992), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4982), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4986), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4970), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + ACTIONS(4984), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [196449] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4962), 1, + anon_sym_DOT, + ACTIONS(4964), 1, + anon_sym_LBRACK2, + ACTIONS(4972), 1, + anon_sym_STAR_STAR, + ACTIONS(4974), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4976), 1, + anon_sym_in, + ACTIONS(4978), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4980), 1, + sym__not_in, + ACTIONS(4966), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4968), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4970), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4984), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 25, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DASH_GT, + [196533] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__not_in, + ACTIONS(4962), 1, + anon_sym_DOT, + ACTIONS(4964), 1, + anon_sym_LBRACK2, + ACTIONS(4972), 1, + anon_sym_STAR_STAR, + ACTIONS(4974), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4978), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4966), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4968), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4970), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 35, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_DASH_GT, + [196613] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3423), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3425), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [196677] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3427), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3429), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [196741] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3431), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3433), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [196805] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3435), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3437), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [196869] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3449), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3451), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [196933] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3307), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3309), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [196997] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3303), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3305), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [197061] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3536), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [197125] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3118), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3120), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [197189] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3118), 1, + sym__not_in, + ACTIONS(4962), 1, + anon_sym_DOT, + ACTIONS(4964), 1, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3120), 48, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + [197257] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3118), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3120), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [197321] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3118), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3120), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [197385] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3064), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3066), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [197449] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3199), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3201), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [197513] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3319), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3321), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [197577] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3155), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3157), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [197641] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3319), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3321), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [197705] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2972), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2974), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [197769] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3297), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3299), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [197833] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3297), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3299), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [197897] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3191), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3193), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [197961] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3191), 1, + sym__not_in, + ACTIONS(4962), 1, + anon_sym_DOT, + ACTIONS(4964), 1, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3193), 48, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + [198029] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3191), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3193), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [198093] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3516), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3518), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [198157] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4962), 1, + anon_sym_DOT, + ACTIONS(4964), 1, + anon_sym_LBRACK2, + ACTIONS(4972), 1, + anon_sym_STAR_STAR, + ACTIONS(4974), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4976), 1, + anon_sym_in, + ACTIONS(4978), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4980), 1, + sym__not_in, + ACTIONS(4990), 1, + anon_sym_EQ, + ACTIONS(4994), 1, + anon_sym_EQ_GT, + ACTIONS(4996), 1, + anon_sym_PIPE, + ACTIONS(4998), 1, + anon_sym_COLON_COLON, + ACTIONS(5000), 1, + anon_sym_when, + ACTIONS(4966), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4968), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5002), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3553), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + ACTIONS(4988), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4992), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4982), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4986), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4970), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4984), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [198261] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3191), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3193), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [198325] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3265), 2, @@ -310957,13 +338287,12 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_comment, aux_sym__terminator_token1, ACTIONS(3267), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -311005,25 +338334,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [170167] = 4, + [198389] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3261), 2, + ACTIONS(3269), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3263), 49, + ACTIONS(3271), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [198453] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3289), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3291), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -311066,22 +338456,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [170231] = 4, + [198517] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3257), 2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3285), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3287), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [198581] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3281), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3283), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [198645] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3269), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3271), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [198709] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3010), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3006), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3259), 49, + ACTIONS(3008), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_PLUS, @@ -311126,22 +338697,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [170295] = 4, + [198775] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3253), 2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3195), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3197), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [198839] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3265), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3267), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [198903] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3004), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3000), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3255), 49, + ACTIONS(3002), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_PLUS, @@ -311186,24 +338878,286 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [170359] = 4, + [198969] = 26, ACTIONS(5), 1, sym_comment, - ACTIONS(3249), 2, + ACTIONS(4962), 1, + anon_sym_DOT, + ACTIONS(4964), 1, + anon_sym_LBRACK2, + ACTIONS(4972), 1, + anon_sym_STAR_STAR, + ACTIONS(4974), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4976), 1, + anon_sym_in, + ACTIONS(4978), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4980), 1, + sym__not_in, + ACTIONS(4990), 1, + anon_sym_EQ, + ACTIONS(4994), 1, + anon_sym_EQ_GT, + ACTIONS(4996), 1, + anon_sym_PIPE, + ACTIONS(4998), 1, + anon_sym_COLON_COLON, + ACTIONS(5004), 1, + anon_sym_RPAREN, + ACTIONS(5006), 1, + anon_sym_COMMA, + ACTIONS(5009), 1, + anon_sym_when, + ACTIONS(5012), 1, + anon_sym_DASH_GT, + ACTIONS(4966), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4968), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5002), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4988), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4992), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4982), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4986), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4970), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4984), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [199077] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3183), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3185), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [199141] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3187), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3189), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [199205] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3281), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3251), 49, + ACTIONS(3283), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [199269] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3183), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3185), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -311246,24 +339200,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [170423] = 4, + [199333] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3245), 2, + ACTIONS(3285), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3247), 49, + ACTIONS(3287), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -311305,18 +339258,5510 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [170487] = 4, + [199397] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3241), 2, + ACTIONS(3289), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3243), 49, + ACTIONS(3291), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [199461] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3297), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3299), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [199525] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3191), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3193), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [199589] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3297), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3299), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [199653] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4460), 1, + anon_sym_PIPE, + ACTIONS(4468), 1, + anon_sym_when, + ACTIONS(4470), 1, + anon_sym_COLON_COLON, + ACTIONS(4472), 1, + anon_sym_EQ_GT, + ACTIONS(4474), 1, + anon_sym_EQ, + ACTIONS(4484), 1, + anon_sym_in, + ACTIONS(4486), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4488), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4492), 1, + anon_sym_STAR_STAR, + ACTIONS(4494), 1, + anon_sym_DOT, + ACTIONS(4496), 1, + anon_sym_LBRACK2, + ACTIONS(4498), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3551), 2, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3553), 2, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(4462), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4464), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4466), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4476), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4478), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4458), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4480), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4490), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4482), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [199759] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2972), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2974), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [199823] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3319), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3321), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [199887] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3319), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3321), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [199951] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3319), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3321), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [200015] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3191), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3193), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [200079] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3327), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3329), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [200143] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4494), 1, + anon_sym_DOT, + ACTIONS(4496), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3191), 3, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3193), 47, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + [200211] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3183), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3185), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [200275] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3191), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3193), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [200339] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3179), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3181), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [200403] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3175), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3177), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [200467] = 26, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2885), 1, + anon_sym_COMMA, + ACTIONS(2918), 1, + anon_sym_DASH_GT, + ACTIONS(4962), 1, + anon_sym_DOT, + ACTIONS(4964), 1, + anon_sym_LBRACK2, + ACTIONS(4972), 1, + anon_sym_STAR_STAR, + ACTIONS(4974), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4976), 1, + anon_sym_in, + ACTIONS(4978), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4980), 1, + sym__not_in, + ACTIONS(4990), 1, + anon_sym_EQ, + ACTIONS(4994), 1, + anon_sym_EQ_GT, + ACTIONS(4996), 1, + anon_sym_PIPE, + ACTIONS(4998), 1, + anon_sym_COLON_COLON, + ACTIONS(5014), 1, + anon_sym_when, + STATE(5161), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(4966), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4968), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5002), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4988), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4992), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4982), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4986), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4970), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4984), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [200575] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3155), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3157), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [200639] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [200703] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3064), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3066), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [200767] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3118), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3120), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [200831] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3118), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3120), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [200895] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4494), 1, + anon_sym_DOT, + ACTIONS(4496), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3118), 3, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3120), 47, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + [200963] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3118), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3120), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [201027] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3171), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3173), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [201091] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3534), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3536), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [201155] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3167), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3169), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [201219] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2651), 3, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2653), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [201283] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2647), 3, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2649), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [201347] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3163), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3165), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [201411] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3159), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3161), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [201475] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4962), 1, + anon_sym_DOT, + ACTIONS(4964), 1, + anon_sym_LBRACK2, + ACTIONS(4972), 1, + anon_sym_STAR_STAR, + ACTIONS(4974), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4976), 1, + anon_sym_in, + ACTIONS(4978), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4980), 1, + sym__not_in, + ACTIONS(4990), 1, + anon_sym_EQ, + ACTIONS(4994), 1, + anon_sym_EQ_GT, + ACTIONS(4996), 1, + anon_sym_PIPE, + ACTIONS(4998), 1, + anon_sym_COLON_COLON, + ACTIONS(5000), 1, + anon_sym_when, + ACTIONS(4966), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4968), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5002), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3546), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + ACTIONS(4988), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4992), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4982), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4986), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4970), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4984), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [201579] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [201643] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5017), 1, + anon_sym_COMMA, + STATE(3869), 1, + aux_sym_keywords_repeat1, + ACTIONS(3134), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3136), 47, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [201711] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3327), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3329), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [201775] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3006), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3008), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [201839] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5020), 1, + anon_sym_COMMA, + STATE(3869), 1, + aux_sym_keywords_repeat1, + ACTIONS(3149), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3151), 47, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [201907] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5020), 1, + anon_sym_COMMA, + STATE(3872), 1, + aux_sym_keywords_repeat1, + ACTIONS(3219), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3221), 47, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [201975] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [202039] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3000), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3002), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [202103] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3000), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3002), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [202167] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [202231] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [202295] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3303), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3305), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [202359] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [202423] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3307), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3309), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [202487] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(4645), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3295), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_end, + [202555] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(4645), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3118), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3120), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_end, + [202623] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(4645), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3191), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3193), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_end, + [202691] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [202755] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3449), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3451), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [202819] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3435), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3437), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [202883] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [202947] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3403), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3405), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [203011] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [203075] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3407), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3409), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [203139] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [203203] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [203267] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3044), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3046), 49, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [203331] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [203395] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [203459] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [203523] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [203587] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3078), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3080), 49, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [203651] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [203715] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [203779] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [203843] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [203907] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [203971] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2611), 3, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2613), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [204035] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2631), 3, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2633), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [204099] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5022), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [204165] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5024), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [204231] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5026), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [204297] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3431), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3433), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [204361] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5028), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [204427] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3130), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3132), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [204491] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3427), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3429), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [204555] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3122), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3124), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [204619] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3048), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3050), 49, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [204683] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5030), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [204749] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5032), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [204815] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3052), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3054), 49, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [204879] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5034), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [204945] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5036), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [205011] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5038), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [205077] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5040), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [205143] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3098), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3100), 49, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [205207] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5042), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [205273] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5044), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [205339] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3311), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3313), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -311366,7 +344811,3925 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [170551] = 4, + [205403] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5046), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [205469] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5048), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [205535] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5050), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [205601] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5052), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [205667] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3331), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3333), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [205731] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5054), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [205797] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3335), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3337), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [205861] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3399), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3401), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [205925] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3441), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3443), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [205989] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5056), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [206055] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3114), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3116), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [206119] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3445), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3447), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [206183] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3500), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3502), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [206247] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3522), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3524), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [206311] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3526), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3528), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [206375] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3530), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3532), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [206439] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3480), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3482), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [206503] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3415), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3417), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [206567] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3411), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3413), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [206631] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3345), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3347), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [206695] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3315), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3317), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [206759] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3110), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3112), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [206823] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3114), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3116), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [206887] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3122), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3124), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [206951] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3122), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3124), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [207015] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3094), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3096), 49, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [207079] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3295), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [207143] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3323), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3325), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [207207] = 26, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(4771), 1, + anon_sym_PIPE, + ACTIONS(4777), 1, + anon_sym_COLON_COLON, + ACTIONS(4779), 1, + anon_sym_EQ_GT, + ACTIONS(4781), 1, + anon_sym_EQ, + ACTIONS(4791), 1, + anon_sym_in, + ACTIONS(4793), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4795), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4799), 1, + anon_sym_STAR_STAR, + ACTIONS(4801), 1, + sym__not_in, + ACTIONS(4805), 1, + anon_sym_when, + ACTIONS(5058), 1, + anon_sym_RPAREN, + ACTIONS(5060), 1, + anon_sym_COMMA, + STATE(5438), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(4773), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4775), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4803), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4783), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4785), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4769), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4787), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4797), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4789), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [207315] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3018), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3020), 49, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [207379] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3074), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3076), 49, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [207443] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5062), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [207509] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4488), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4492), 1, + anon_sym_STAR_STAR, + ACTIONS(4494), 1, + anon_sym_DOT, + ACTIONS(4496), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4462), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4464), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3293), 3, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4490), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 35, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + [207587] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3341), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3343), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [207651] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4494), 1, + anon_sym_DOT, + ACTIONS(4496), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 3, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3295), 47, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + [207719] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4492), 1, + anon_sym_STAR_STAR, + ACTIONS(4494), 1, + anon_sym_DOT, + ACTIONS(4496), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4462), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4464), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3293), 3, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4490), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 36, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + [207795] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4488), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4492), 1, + anon_sym_STAR_STAR, + ACTIONS(4494), 1, + anon_sym_DOT, + ACTIONS(4496), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4462), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4464), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3293), 3, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4490), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 35, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + [207873] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4484), 1, + anon_sym_in, + ACTIONS(4486), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4488), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4492), 1, + anon_sym_STAR_STAR, + ACTIONS(4494), 1, + anon_sym_DOT, + ACTIONS(4496), 1, + anon_sym_LBRACK2, + ACTIONS(4498), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4462), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4464), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4490), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 33, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [207957] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4484), 1, + anon_sym_in, + ACTIONS(4486), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4488), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4492), 1, + anon_sym_STAR_STAR, + ACTIONS(4494), 1, + anon_sym_DOT, + ACTIONS(4496), 1, + anon_sym_LBRACK2, + ACTIONS(4498), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4462), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4464), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4458), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4490), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4482), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + [208045] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4484), 1, + anon_sym_in, + ACTIONS(4486), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4488), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4492), 1, + anon_sym_STAR_STAR, + ACTIONS(4494), 1, + anon_sym_DOT, + ACTIONS(4496), 1, + anon_sym_LBRACK2, + ACTIONS(4498), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4462), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4464), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4458), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4480), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4490), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4482), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 15, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + [208135] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4484), 1, + anon_sym_in, + ACTIONS(4486), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4488), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4492), 1, + anon_sym_STAR_STAR, + ACTIONS(4494), 1, + anon_sym_DOT, + ACTIONS(4496), 1, + anon_sym_LBRACK2, + ACTIONS(4498), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4462), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4464), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4478), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4458), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4480), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4490), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4482), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 12, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + [208227] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4474), 1, + anon_sym_EQ, + ACTIONS(4484), 1, + anon_sym_in, + ACTIONS(4486), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4488), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4492), 1, + anon_sym_STAR_STAR, + ACTIONS(4494), 1, + anon_sym_DOT, + ACTIONS(4496), 1, + anon_sym_LBRACK2, + ACTIONS(4498), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4462), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4464), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4476), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4478), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4458), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4480), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4490), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 8, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + ACTIONS(4482), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [208323] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4472), 1, + anon_sym_EQ_GT, + ACTIONS(4474), 1, + anon_sym_EQ, + ACTIONS(4484), 1, + anon_sym_in, + ACTIONS(4486), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4488), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4492), 1, + anon_sym_STAR_STAR, + ACTIONS(4494), 1, + anon_sym_DOT, + ACTIONS(4496), 1, + anon_sym_LBRACK2, + ACTIONS(4498), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4462), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4464), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4476), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4478), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4458), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4480), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4490), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 7, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + ACTIONS(4482), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [208421] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4460), 1, + anon_sym_PIPE, + ACTIONS(4470), 1, + anon_sym_COLON_COLON, + ACTIONS(4472), 1, + anon_sym_EQ_GT, + ACTIONS(4474), 1, + anon_sym_EQ, + ACTIONS(4484), 1, + anon_sym_in, + ACTIONS(4486), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4488), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4492), 1, + anon_sym_STAR_STAR, + ACTIONS(4494), 1, + anon_sym_DOT, + ACTIONS(4496), 1, + anon_sym_LBRACK2, + ACTIONS(4498), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4462), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4464), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4476), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4478), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4458), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3295), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + ACTIONS(4480), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4490), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4482), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [208523] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3295), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [208587] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4460), 1, + anon_sym_PIPE, + ACTIONS(4468), 1, + anon_sym_when, + ACTIONS(4470), 1, + anon_sym_COLON_COLON, + ACTIONS(4472), 1, + anon_sym_EQ_GT, + ACTIONS(4474), 1, + anon_sym_EQ, + ACTIONS(4484), 1, + anon_sym_in, + ACTIONS(4486), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4488), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4492), 1, + anon_sym_STAR_STAR, + ACTIONS(4494), 1, + anon_sym_DOT, + ACTIONS(4496), 1, + anon_sym_LBRACK2, + ACTIONS(4498), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4462), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4464), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4476), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4478), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3295), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4458), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4480), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4490), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4482), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [208691] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4460), 1, + anon_sym_PIPE, + ACTIONS(4468), 1, + anon_sym_when, + ACTIONS(4470), 1, + anon_sym_COLON_COLON, + ACTIONS(4472), 1, + anon_sym_EQ_GT, + ACTIONS(4474), 1, + anon_sym_EQ, + ACTIONS(4484), 1, + anon_sym_in, + ACTIONS(4486), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4488), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4492), 1, + anon_sym_STAR_STAR, + ACTIONS(4494), 1, + anon_sym_DOT, + ACTIONS(4496), 1, + anon_sym_LBRACK2, + ACTIONS(4498), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4462), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4464), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4476), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4478), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3295), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4458), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4480), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4490), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4482), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [208795] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4492), 1, + anon_sym_STAR_STAR, + ACTIONS(4494), 1, + anon_sym_DOT, + ACTIONS(4496), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4462), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3293), 3, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3295), 44, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + [208867] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4492), 1, + anon_sym_STAR_STAR, + ACTIONS(4494), 1, + anon_sym_DOT, + ACTIONS(4496), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 3, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3295), 46, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + [208937] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3295), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [209001] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5064), 1, + aux_sym_sigil_token3, + ACTIONS(3223), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3225), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [209067] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4460), 1, + anon_sym_PIPE, + ACTIONS(4472), 1, + anon_sym_EQ_GT, + ACTIONS(4474), 1, + anon_sym_EQ, + ACTIONS(4484), 1, + anon_sym_in, + ACTIONS(4486), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4488), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4492), 1, + anon_sym_STAR_STAR, + ACTIONS(4494), 1, + anon_sym_DOT, + ACTIONS(4496), 1, + anon_sym_LBRACK2, + ACTIONS(4498), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4462), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4464), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4476), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4478), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4458), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4480), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3295), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + ACTIONS(4490), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4482), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [209167] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4484), 1, + anon_sym_in, + ACTIONS(4486), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4488), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4492), 1, + anon_sym_STAR_STAR, + ACTIONS(4494), 1, + anon_sym_DOT, + ACTIONS(4496), 1, + anon_sym_LBRACK2, + ACTIONS(4498), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3293), 2, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4462), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4464), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4490), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4482), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 24, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [209253] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4486), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4488), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4492), 1, + anon_sym_STAR_STAR, + ACTIONS(4494), 1, + anon_sym_DOT, + ACTIONS(4496), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4462), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4464), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3293), 3, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4490), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 34, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + [209333] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3423), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3425), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [209397] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3058), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3060), 49, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [209461] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2996), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2998), 49, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [209525] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2990), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2992), 49, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [209589] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3551), 1, + aux_sym__terminator_token1, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(4611), 1, + anon_sym_PIPE, + ACTIONS(4619), 1, + anon_sym_when, + ACTIONS(4621), 1, + anon_sym_COLON_COLON, + ACTIONS(4623), 1, + anon_sym_EQ_GT, + ACTIONS(4625), 1, + anon_sym_EQ, + ACTIONS(4635), 1, + anon_sym_in, + ACTIONS(4637), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4639), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4643), 1, + anon_sym_STAR_STAR, + ACTIONS(4645), 1, + anon_sym_DOT, + ACTIONS(4647), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4613), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4615), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4617), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3553), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_end, + ACTIONS(4627), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4629), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4609), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4631), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4641), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4633), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [209695] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3486), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3488), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [209759] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3496), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3498), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [209823] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3237), 2, @@ -311426,7 +348789,487 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [170615] = 4, + [209887] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3215), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3217), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [209951] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3211), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3213), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [210015] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3277), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3279), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [210079] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3273), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3275), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [210143] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3259), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3261), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [210207] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3253), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3255), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [210271] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3245), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3247), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [210335] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3241), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3243), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [210399] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3233), 2, @@ -311486,17 +349329,197 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [170679] = 4, + [210463] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3373), 2, + ACTIONS(3229), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3375), 48, + ACTIONS(3231), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [210527] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3145), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3147), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [210591] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3141), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3143), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [210655] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3155), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3157), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -311545,158 +349568,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [170742] = 4, + [210718] = 20, ACTIONS(5), 1, sym_comment, - ACTIONS(3135), 2, - sym__not_in, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, anon_sym_LBRACK2, + ACTIONS(5072), 1, + anon_sym_EQ_GT, + ACTIONS(5074), 1, + anon_sym_EQ, + ACTIONS(5084), 1, + anon_sym_in, + ACTIONS(5086), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5088), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5092), 1, + anon_sym_STAR_STAR, + ACTIONS(5094), 1, + sym__not_in, + ACTIONS(5068), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(5070), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3137), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(5076), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(5078), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(5066), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5080), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, + ACTIONS(5090), 6, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [170805] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3281), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3283), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [170868] = 10, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__not_in, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4614), 1, - anon_sym_STAR_STAR, - ACTIONS(4608), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4610), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4612), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 36, + ACTIONS(3295), 7, anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + ACTIONS(5082), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [210813] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -311728,42 +349693,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - [170943] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__not_in, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4614), 1, - anon_sym_STAR_STAR, - ACTIONS(4616), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4608), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4610), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4612), 6, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - ACTIONS(3391), 35, - anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [210876] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -311794,7 +349751,1213 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - [171020] = 4, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [210939] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [211002] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [211065] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [211128] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [211191] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [211254] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [211317] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [211380] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4934), 1, + anon_sym_EQ_GT, + ACTIONS(4936), 1, + anon_sym_EQ, + ACTIONS(4946), 1, + anon_sym_in, + ACTIONS(4948), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4950), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4954), 1, + anon_sym_STAR_STAR, + ACTIONS(4956), 1, + anon_sym_DOT, + ACTIONS(4958), 1, + anon_sym_LBRACK2, + ACTIONS(4960), 1, + sym__not_in, + ACTIONS(4922), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4938), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4940), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4918), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4942), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4952), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 7, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + ACTIONS(4944), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [211475] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [211538] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [211601] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [211664] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [211727] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3536), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [211790] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3130), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3132), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [211853] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3122), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3124), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [211916] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3114), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3116), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [211979] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3000), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3002), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [212042] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3114), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3116), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [212105] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3122), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3124), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [212168] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3122), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3124), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [212231] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3293), 2, @@ -311853,17 +351016,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [171083] = 4, + [212294] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3297), 2, + ACTIONS(3323), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3299), 48, + ACTIONS(3325), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -311912,91 +351075,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [171146] = 19, + [212357] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4559), 1, - anon_sym_EQ, - ACTIONS(4569), 1, - anon_sym_in, - ACTIONS(4571), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4573), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4577), 1, - anon_sym_STAR_STAR, - ACTIONS(4579), 1, - anon_sym_DOT, - ACTIONS(4581), 1, - anon_sym_LBRACK2, - ACTIONS(4583), 1, - sym__not_in, - ACTIONS(4545), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4549), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4561), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4563), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4541), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4565), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4575), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 8, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - ACTIONS(4567), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [171239] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3479), 2, + ACTIONS(3106), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3481), 48, + ACTIONS(3108), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -312045,17 +351134,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [171302] = 4, + [212420] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3301), 2, + ACTIONS(3106), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3303), 48, + ACTIONS(3108), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -312104,83 +351193,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [171365] = 11, + [212483] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3389), 1, - sym__not_in, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4614), 1, - anon_sym_STAR_STAR, - ACTIONS(4616), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4608), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4610), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4612), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 35, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - [171442] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3433), 2, + ACTIONS(3341), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3435), 48, + ACTIONS(3343), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -312229,20 +351252,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [171505] = 6, + [212546] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(3293), 1, sym__not_in, - ACTIONS(4579), 1, + ACTIONS(4956), 1, anon_sym_DOT, - ACTIONS(4581), 1, + ACTIONS(4958), 1, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3435), 47, + ACTIONS(3295), 47, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -312290,65 +351313,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - [171572] = 13, + [212613] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4254), 1, + ACTIONS(4727), 1, anon_sym_DOT, - ACTIONS(4256), 1, + ACTIONS(4729), 1, anon_sym_LBRACK2, - ACTIONS(4614), 1, - anon_sym_STAR_STAR, - ACTIONS(4616), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4618), 1, + ACTIONS(4771), 1, + anon_sym_PIPE, + ACTIONS(4777), 1, + anon_sym_COLON_COLON, + ACTIONS(4779), 1, + anon_sym_EQ_GT, + ACTIONS(4781), 1, + anon_sym_EQ, + ACTIONS(4791), 1, anon_sym_in, - ACTIONS(4620), 1, + ACTIONS(4793), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4622), 1, + ACTIONS(4795), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4799), 1, + anon_sym_STAR_STAR, + ACTIONS(4801), 1, sym__not_in, - ACTIONS(4608), 2, + ACTIONS(4805), 1, + anon_sym_when, + ACTIONS(4773), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4610), 2, + ACTIONS(4775), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4803), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5004), 2, + anon_sym_RPAREN, + anon_sym_COMMA, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4612), 6, + ACTIONS(4783), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4785), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4769), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4787), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4797), 6, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - ACTIONS(3391), 33, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4789), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -312358,87 +351392,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [171653] = 15, + [212716] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4614), 1, - anon_sym_STAR_STAR, - ACTIONS(4616), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4618), 1, - anon_sym_in, - ACTIONS(4620), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4622), 1, - sym__not_in, - ACTIONS(4608), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4610), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4624), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4612), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4626), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 20, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - [171738] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3297), 2, + ACTIONS(3303), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3299), 48, + ACTIONS(3305), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -312487,17 +351451,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [171801] = 4, + [212779] = 10, ACTIONS(5), 1, sym_comment, - ACTIONS(3297), 2, + ACTIONS(3293), 1, + sym__not_in, + ACTIONS(4954), 1, + anon_sym_STAR_STAR, + ACTIONS(4956), 1, + anon_sym_DOT, + ACTIONS(4958), 1, + anon_sym_LBRACK2, + ACTIONS(4922), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4952), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 36, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + [212854] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3006), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3299), 48, + ACTIONS(3008), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -312546,89 +351575,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [171864] = 17, + [212917] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4569), 1, - anon_sym_in, - ACTIONS(4571), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4573), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4577), 1, - anon_sym_STAR_STAR, - ACTIONS(4579), 1, - anon_sym_DOT, - ACTIONS(4581), 1, - anon_sym_LBRACK2, - ACTIONS(4583), 1, - sym__not_in, - ACTIONS(4545), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4549), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4563), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4541), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4565), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4575), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4567), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 12, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - [171953] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3305), 2, + ACTIONS(3106), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3307), 48, + ACTIONS(3108), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -312677,308 +351634,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [172016] = 16, + [212980] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4614), 1, - anon_sym_STAR_STAR, - ACTIONS(4616), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4618), 1, - anon_sym_in, - ACTIONS(4620), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4622), 1, - sym__not_in, - ACTIONS(4608), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4610), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4624), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4628), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4612), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4626), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 15, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - [172103] = 17, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4614), 1, - anon_sym_STAR_STAR, - ACTIONS(4616), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4618), 1, - anon_sym_in, - ACTIONS(4620), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4622), 1, - sym__not_in, - ACTIONS(4608), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4610), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4630), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4624), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4628), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4612), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4626), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 12, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - [172192] = 16, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4569), 1, - anon_sym_in, - ACTIONS(4571), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4573), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4577), 1, - anon_sym_STAR_STAR, - ACTIONS(4579), 1, - anon_sym_DOT, - ACTIONS(4581), 1, - anon_sym_LBRACK2, - ACTIONS(4583), 1, - sym__not_in, - ACTIONS(4545), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4549), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4541), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4565), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4575), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4567), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 15, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - [172279] = 19, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4614), 1, - anon_sym_STAR_STAR, - ACTIONS(4616), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4618), 1, - anon_sym_in, - ACTIONS(4620), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4622), 1, - sym__not_in, - ACTIONS(4632), 1, - anon_sym_EQ, - ACTIONS(4608), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4610), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4630), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4634), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4624), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4628), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4612), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 8, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - ACTIONS(4626), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [172372] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3421), 2, + ACTIONS(3516), 2, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3562), 2, + ACTIONS(3735), 2, anon_sym_when, anon_sym_DASH_GT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3423), 46, + ACTIONS(3518), 46, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -313025,3200 +351694,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [172437] = 4, + [213045] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3433), 2, + ACTIONS(3534), 2, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3435), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(3794), 2, anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [172500] = 20, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4614), 1, - anon_sym_STAR_STAR, - ACTIONS(4616), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4618), 1, - anon_sym_in, - ACTIONS(4620), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4622), 1, - sym__not_in, - ACTIONS(4632), 1, - anon_sym_EQ, - ACTIONS(4636), 1, - anon_sym_EQ_GT, - ACTIONS(4608), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4610), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4630), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4634), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4624), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4628), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4612), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 7, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - ACTIONS(4626), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [172595] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3429), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3431), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [172658] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4569), 1, - anon_sym_in, - ACTIONS(4571), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4573), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4577), 1, - anon_sym_STAR_STAR, - ACTIONS(4579), 1, - anon_sym_DOT, - ACTIONS(4581), 1, - anon_sym_LBRACK2, - ACTIONS(4583), 1, - sym__not_in, - ACTIONS(4545), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4549), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4541), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4575), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4567), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 20, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - [172743] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2994), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2996), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [172806] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4569), 1, - anon_sym_in, - ACTIONS(4571), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4573), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4577), 1, - anon_sym_STAR_STAR, - ACTIONS(4579), 1, - anon_sym_DOT, - ACTIONS(4581), 1, - anon_sym_LBRACK2, - ACTIONS(4583), 1, - sym__not_in, - ACTIONS(4545), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4549), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4575), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 33, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [172887] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__not_in, - ACTIONS(4573), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4577), 1, - anon_sym_STAR_STAR, - ACTIONS(4579), 1, - anon_sym_DOT, - ACTIONS(4581), 1, - anon_sym_LBRACK2, - ACTIONS(4545), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4549), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4575), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 35, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - [172964] = 22, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4614), 1, - anon_sym_STAR_STAR, - ACTIONS(4616), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4618), 1, - anon_sym_in, - ACTIONS(4620), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4622), 1, - sym__not_in, - ACTIONS(4632), 1, - anon_sym_EQ, - ACTIONS(4636), 1, - anon_sym_EQ_GT, - ACTIONS(4638), 1, - anon_sym_PIPE, - ACTIONS(4640), 1, - anon_sym_COLON_COLON, - ACTIONS(4608), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4610), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4630), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4634), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4624), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3391), 5, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - ACTIONS(4628), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4612), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4626), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [173063] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3309), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3311), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [173126] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4614), 1, - anon_sym_STAR_STAR, - ACTIONS(4616), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4618), 1, - anon_sym_in, - ACTIONS(4620), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4622), 1, - sym__not_in, - ACTIONS(4632), 1, - anon_sym_EQ, - ACTIONS(4636), 1, - anon_sym_EQ_GT, - ACTIONS(4638), 1, - anon_sym_PIPE, - ACTIONS(4640), 1, - anon_sym_COLON_COLON, - ACTIONS(4642), 1, - anon_sym_when, - ACTIONS(4608), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4610), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4630), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4634), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3391), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(4624), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4628), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4612), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4626), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [173227] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3357), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3359), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [173290] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3361), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3363), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [173353] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3365), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3367), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [173416] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4614), 1, - anon_sym_STAR_STAR, - ACTIONS(4616), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4618), 1, - anon_sym_in, - ACTIONS(4620), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4622), 1, - sym__not_in, - ACTIONS(4632), 1, - anon_sym_EQ, - ACTIONS(4636), 1, - anon_sym_EQ_GT, - ACTIONS(4638), 1, - anon_sym_PIPE, - ACTIONS(4640), 1, - anon_sym_COLON_COLON, - ACTIONS(4642), 1, - anon_sym_when, - ACTIONS(4608), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4610), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4630), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4634), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3391), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(4624), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4628), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4612), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4626), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [173517] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3369), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3371), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [173580] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__not_in, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4614), 1, - anon_sym_STAR_STAR, - ACTIONS(4608), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3391), 44, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - [173651] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__not_in, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4614), 1, - anon_sym_STAR_STAR, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3391), 46, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - [173720] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4614), 1, - anon_sym_STAR_STAR, - ACTIONS(4616), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4618), 1, - anon_sym_in, - ACTIONS(4620), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4622), 1, - sym__not_in, - ACTIONS(4632), 1, - anon_sym_EQ, - ACTIONS(4636), 1, - anon_sym_EQ_GT, - ACTIONS(4638), 1, - anon_sym_PIPE, - ACTIONS(4608), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4610), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4630), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4634), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4624), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4628), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3391), 6, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - ACTIONS(4612), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4626), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [173817] = 14, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4614), 1, - anon_sym_STAR_STAR, - ACTIONS(4616), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4618), 1, - anon_sym_in, - ACTIONS(4620), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4622), 1, - sym__not_in, - ACTIONS(4608), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4610), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4612), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4626), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 24, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [173900] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__not_in, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4614), 1, - anon_sym_STAR_STAR, - ACTIONS(4616), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4620), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4608), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4610), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4612), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 34, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - [173979] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__not_in, - ACTIONS(4573), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4577), 1, - anon_sym_STAR_STAR, - ACTIONS(4579), 1, - anon_sym_DOT, - ACTIONS(4581), 1, - anon_sym_LBRACK2, - ACTIONS(4545), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4549), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4575), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 35, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - [174056] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3425), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3427), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [174119] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3425), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3427), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [174182] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(3893), 1, - aux_sym__terminator_token1, - ACTIONS(4310), 1, - anon_sym_PIPE, - ACTIONS(4318), 1, - anon_sym_when, - ACTIONS(4320), 1, - anon_sym_COLON_COLON, - ACTIONS(4322), 1, - anon_sym_EQ_GT, - ACTIONS(4324), 1, - anon_sym_EQ, - ACTIONS(4334), 1, - anon_sym_in, - ACTIONS(4336), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4338), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4342), 1, - anon_sym_STAR_STAR, - ACTIONS(4344), 1, - anon_sym_DOT, - ACTIONS(4346), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3895), 2, - anon_sym_SEMI, - anon_sym_end, - ACTIONS(4312), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4314), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4316), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(4326), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4328), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4308), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4330), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4340), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4332), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [174287] = 20, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4557), 1, - anon_sym_EQ_GT, - ACTIONS(4559), 1, - anon_sym_EQ, - ACTIONS(4569), 1, - anon_sym_in, - ACTIONS(4571), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4573), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4577), 1, - anon_sym_STAR_STAR, - ACTIONS(4579), 1, - anon_sym_DOT, - ACTIONS(4581), 1, - anon_sym_LBRACK2, - ACTIONS(4583), 1, - sym__not_in, - ACTIONS(4545), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4549), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4561), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4563), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4541), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4565), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4575), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 7, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - ACTIONS(4567), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [174382] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3425), 1, - sym__not_in, - ACTIONS(4579), 1, - anon_sym_DOT, - ACTIONS(4581), 1, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3427), 47, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - [174449] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3425), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3427), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [174512] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(3893), 1, - aux_sym__terminator_token1, - ACTIONS(4198), 1, - anon_sym_PIPE, - ACTIONS(4206), 1, - anon_sym_when, - ACTIONS(4208), 1, - anon_sym_COLON_COLON, - ACTIONS(4210), 1, - anon_sym_EQ_GT, - ACTIONS(4212), 1, - anon_sym_EQ, - ACTIONS(4222), 1, - anon_sym_in, - ACTIONS(4224), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4226), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4230), 1, - anon_sym_STAR_STAR, - ACTIONS(4232), 1, - anon_sym_DOT, - ACTIONS(4234), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3895), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(4200), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4202), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4204), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(4214), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4216), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4196), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4218), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4228), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4220), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [174617] = 22, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4543), 1, - anon_sym_PIPE, - ACTIONS(4555), 1, - anon_sym_COLON_COLON, - ACTIONS(4557), 1, - anon_sym_EQ_GT, - ACTIONS(4559), 1, - anon_sym_EQ, - ACTIONS(4569), 1, - anon_sym_in, - ACTIONS(4571), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4573), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4577), 1, - anon_sym_STAR_STAR, - ACTIONS(4579), 1, - anon_sym_DOT, - ACTIONS(4581), 1, - anon_sym_LBRACK2, - ACTIONS(4583), 1, - sym__not_in, - ACTIONS(4545), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4549), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4561), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4563), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4541), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3391), 5, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - ACTIONS(4565), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4575), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4567), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [174716] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4434), 1, - anon_sym_PIPE, - ACTIONS(4442), 1, - anon_sym_when, - ACTIONS(4444), 1, - anon_sym_COLON_COLON, - ACTIONS(4446), 1, - anon_sym_EQ_GT, - ACTIONS(4448), 1, - anon_sym_EQ, - ACTIONS(4458), 1, - anon_sym_in, - ACTIONS(4460), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4462), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4466), 1, - anon_sym_STAR_STAR, - ACTIONS(4468), 1, - sym__not_in, - ACTIONS(4436), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4438), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4440), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(4594), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4450), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4452), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4432), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4454), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4464), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4456), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [174819] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3421), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3423), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [174882] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3391), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [174945] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4543), 1, - anon_sym_PIPE, - ACTIONS(4553), 1, - anon_sym_when, - ACTIONS(4555), 1, - anon_sym_COLON_COLON, - ACTIONS(4557), 1, - anon_sym_EQ_GT, - ACTIONS(4559), 1, - anon_sym_EQ, - ACTIONS(4569), 1, - anon_sym_in, - ACTIONS(4571), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4573), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4577), 1, - anon_sym_STAR_STAR, - ACTIONS(4579), 1, - anon_sym_DOT, - ACTIONS(4581), 1, - anon_sym_LBRACK2, - ACTIONS(4583), 1, - sym__not_in, - ACTIONS(4545), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4549), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4561), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4563), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3391), 4, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(4541), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4565), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4575), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4567), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [175046] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4543), 1, - anon_sym_PIPE, - ACTIONS(4553), 1, - anon_sym_when, - ACTIONS(4555), 1, - anon_sym_COLON_COLON, - ACTIONS(4557), 1, - anon_sym_EQ_GT, - ACTIONS(4559), 1, - anon_sym_EQ, - ACTIONS(4569), 1, - anon_sym_in, - ACTIONS(4571), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4573), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4577), 1, - anon_sym_STAR_STAR, - ACTIONS(4579), 1, - anon_sym_DOT, - ACTIONS(4581), 1, - anon_sym_LBRACK2, - ACTIONS(4583), 1, - sym__not_in, - ACTIONS(4545), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4549), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4561), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4563), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3391), 4, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(4541), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4565), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4575), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4567), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [175147] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3433), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3435), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [175210] = 10, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__not_in, - ACTIONS(4577), 1, - anon_sym_STAR_STAR, - ACTIONS(4579), 1, - anon_sym_DOT, - ACTIONS(4581), 1, - anon_sym_LBRACK2, - ACTIONS(4545), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4549), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4575), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 36, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - [175285] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__not_in, - ACTIONS(4579), 1, - anon_sym_DOT, - ACTIONS(4581), 1, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3391), 47, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - [175352] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3437), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3439), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [175415] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3441), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3443), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [175478] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3445), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3447), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [175541] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3127), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3129), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [175604] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3397), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3399), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [175667] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3401), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3403), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [175730] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3123), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3125), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [175793] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3393), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3395), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [175856] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3608), 1, - anon_sym_LBRACK2, - ACTIONS(3968), 1, - aux_sym__terminator_token1, - ACTIONS(4198), 1, - anon_sym_PIPE, - ACTIONS(4206), 1, - anon_sym_when, - ACTIONS(4208), 1, - anon_sym_COLON_COLON, - ACTIONS(4210), 1, - anon_sym_EQ_GT, - ACTIONS(4212), 1, - anon_sym_EQ, - ACTIONS(4222), 1, - anon_sym_in, - ACTIONS(4224), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4226), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4230), 1, - anon_sym_STAR_STAR, - ACTIONS(4232), 1, - anon_sym_DOT, - ACTIONS(4234), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3970), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(4200), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4202), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4204), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(4214), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4216), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4196), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4218), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4228), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4220), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [175961] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3391), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [176024] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4500), 1, - anon_sym_PIPE, - ACTIONS(4511), 1, - anon_sym_COLON_COLON, - ACTIONS(4513), 1, - anon_sym_EQ_GT, - ACTIONS(4515), 1, - anon_sym_EQ, - ACTIONS(4525), 1, - anon_sym_in, - ACTIONS(4527), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4529), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4533), 1, - anon_sym_STAR_STAR, - ACTIONS(4535), 1, - anon_sym_DOT, - ACTIONS(4537), 1, - anon_sym_LBRACK2, - ACTIONS(4539), 1, - sym__not_in, - ACTIONS(4599), 1, - anon_sym_when, - ACTIONS(4502), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4504), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4506), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(4602), 2, - anon_sym_COMMA, anon_sym_DASH_GT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4517), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4519), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4498), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4521), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4531), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4523), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [176127] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__not_in, - ACTIONS(4577), 1, - anon_sym_STAR_STAR, - ACTIONS(4579), 1, - anon_sym_DOT, - ACTIONS(4581), 1, - anon_sym_LBRACK2, - ACTIONS(4545), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3391), 44, + ACTIONS(3536), 46, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, anon_sym_COLON_COLON, anon_sym_EQ_GT, anon_sym_EQ, @@ -316253,17 +351751,512 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - [176198] = 4, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [213110] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(3381), 2, + ACTIONS(3293), 1, + sym__not_in, + ACTIONS(4950), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4954), 1, + anon_sym_STAR_STAR, + ACTIONS(4956), 1, + anon_sym_DOT, + ACTIONS(4958), 1, + anon_sym_LBRACK2, + ACTIONS(4922), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4952), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 35, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + [213187] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__not_in, + ACTIONS(4950), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4954), 1, + anon_sym_STAR_STAR, + ACTIONS(4956), 1, + anon_sym_DOT, + ACTIONS(4958), 1, + anon_sym_LBRACK2, + ACTIONS(4922), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4952), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 35, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + [213264] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4946), 1, + anon_sym_in, + ACTIONS(4948), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4950), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4954), 1, + anon_sym_STAR_STAR, + ACTIONS(4956), 1, + anon_sym_DOT, + ACTIONS(4958), 1, + anon_sym_LBRACK2, + ACTIONS(4960), 1, + sym__not_in, + ACTIONS(4922), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4952), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 33, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [213345] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4920), 1, + anon_sym_PIPE, + ACTIONS(4930), 1, + anon_sym_when, + ACTIONS(4932), 1, + anon_sym_COLON_COLON, + ACTIONS(4934), 1, + anon_sym_EQ_GT, + ACTIONS(4936), 1, + anon_sym_EQ, + ACTIONS(4946), 1, + anon_sym_in, + ACTIONS(4948), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4950), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4954), 1, + anon_sym_STAR_STAR, + ACTIONS(4956), 1, + anon_sym_DOT, + ACTIONS(4958), 1, + anon_sym_LBRACK2, + ACTIONS(4960), 1, + sym__not_in, + ACTIONS(3459), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + ACTIONS(4922), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4928), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4938), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4940), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4918), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4942), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4952), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4944), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [213448] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4946), 1, + anon_sym_in, + ACTIONS(4948), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4950), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4954), 1, + anon_sym_STAR_STAR, + ACTIONS(4956), 1, + anon_sym_DOT, + ACTIONS(4958), 1, + anon_sym_LBRACK2, + ACTIONS(4960), 1, + sym__not_in, + ACTIONS(4922), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4918), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4952), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4944), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 20, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + [213533] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4946), 1, + anon_sym_in, + ACTIONS(4948), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4950), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4954), 1, + anon_sym_STAR_STAR, + ACTIONS(4956), 1, + anon_sym_DOT, + ACTIONS(4958), 1, + anon_sym_LBRACK2, + ACTIONS(4960), 1, + sym__not_in, + ACTIONS(4922), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4918), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4942), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4952), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4944), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 15, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + [213620] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4946), 1, + anon_sym_in, + ACTIONS(4948), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4950), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4954), 1, + anon_sym_STAR_STAR, + ACTIONS(4956), 1, + anon_sym_DOT, + ACTIONS(4958), 1, + anon_sym_LBRACK2, + ACTIONS(4960), 1, + sym__not_in, + ACTIONS(4922), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4940), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4918), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4942), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4952), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4944), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 12, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + [213709] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3134), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3383), 48, + ACTIONS(3136), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -316312,17 +352305,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [176261] = 4, + [213772] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3381), 2, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(4343), 1, + aux_sym__terminator_token1, + ACTIONS(4514), 1, + anon_sym_PIPE, + ACTIONS(4522), 1, + anon_sym_when, + ACTIONS(4524), 1, + anon_sym_COLON_COLON, + ACTIONS(4526), 1, + anon_sym_EQ_GT, + ACTIONS(4528), 1, + anon_sym_EQ, + ACTIONS(4538), 1, + anon_sym_in, + ACTIONS(4540), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4542), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4546), 1, + anon_sym_STAR_STAR, + ACTIONS(4548), 1, + anon_sym_DOT, + ACTIONS(4550), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4345), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(4516), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4518), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4520), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4530), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4532), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4512), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4534), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4544), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4536), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [213877] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3307), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3383), 48, + ACTIONS(3309), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -316371,7 +352444,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [176324] = 4, + [213940] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [214003] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(4391), 1, + aux_sym__terminator_token1, + ACTIONS(4514), 1, + anon_sym_PIPE, + ACTIONS(4522), 1, + anon_sym_when, + ACTIONS(4524), 1, + anon_sym_COLON_COLON, + ACTIONS(4526), 1, + anon_sym_EQ_GT, + ACTIONS(4528), 1, + anon_sym_EQ, + ACTIONS(4538), 1, + anon_sym_in, + ACTIONS(4540), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4542), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4546), 1, + anon_sym_STAR_STAR, + ACTIONS(4548), 1, + anon_sym_DOT, + ACTIONS(4550), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4393), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(4516), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4518), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4520), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4530), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4532), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4512), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4534), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4544), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4536), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [214108] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3449), 2, @@ -316430,17 +352642,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [176387] = 4, + [214171] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3385), 2, + ACTIONS(4920), 1, + anon_sym_PIPE, + ACTIONS(4930), 1, + anon_sym_when, + ACTIONS(4932), 1, + anon_sym_COLON_COLON, + ACTIONS(4934), 1, + anon_sym_EQ_GT, + ACTIONS(4936), 1, + anon_sym_EQ, + ACTIONS(4946), 1, + anon_sym_in, + ACTIONS(4948), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4950), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4954), 1, + anon_sym_STAR_STAR, + ACTIONS(4956), 1, + anon_sym_DOT, + ACTIONS(4958), 1, + anon_sym_LBRACK2, + ACTIONS(4960), 1, + sym__not_in, + ACTIONS(3546), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + ACTIONS(4922), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4928), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4938), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4940), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4918), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4942), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4952), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4944), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [214274] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3435), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3387), 48, + ACTIONS(3437), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -316489,17 +352780,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [176450] = 4, + [214337] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3385), 2, + ACTIONS(3516), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3387), 48, + ACTIONS(3518), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -316548,77 +352839,3341 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [176513] = 25, + [214400] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3895), 1, - anon_sym_SEMI, - ACTIONS(4262), 1, - anon_sym_PIPE, - ACTIONS(4270), 1, - anon_sym_when, - ACTIONS(4272), 1, - anon_sym_COLON_COLON, - ACTIONS(4274), 1, - anon_sym_EQ_GT, - ACTIONS(4276), 1, - anon_sym_EQ, - ACTIONS(4286), 1, - anon_sym_in, - ACTIONS(4288), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4290), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4294), 1, - anon_sym_STAR_STAR, - ACTIONS(4296), 1, - anon_sym_DOT, - ACTIONS(4298), 1, + ACTIONS(3207), 2, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(4300), 1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3209), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [214463] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [214526] = 19, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4936), 1, + anon_sym_EQ, + ACTIONS(4946), 1, + anon_sym_in, + ACTIONS(4948), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4950), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4954), 1, + anon_sym_STAR_STAR, + ACTIONS(4956), 1, + anon_sym_DOT, + ACTIONS(4958), 1, + anon_sym_LBRACK2, + ACTIONS(4960), 1, + sym__not_in, + ACTIONS(4922), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4938), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4940), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4918), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4942), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4952), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 8, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + ACTIONS(4944), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [214619] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__not_in, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(5092), 1, + anon_sym_STAR_STAR, + ACTIONS(5068), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(5070), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5090), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 36, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + [214694] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__not_in, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(5088), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5092), 1, + anon_sym_STAR_STAR, + ACTIONS(5068), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(5070), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5090), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 35, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + [214771] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4920), 1, + anon_sym_PIPE, + ACTIONS(4932), 1, + anon_sym_COLON_COLON, + ACTIONS(4934), 1, + anon_sym_EQ_GT, + ACTIONS(4936), 1, + anon_sym_EQ, + ACTIONS(4946), 1, + anon_sym_in, + ACTIONS(4948), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4950), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4954), 1, + anon_sym_STAR_STAR, + ACTIONS(4956), 1, + anon_sym_DOT, + ACTIONS(4958), 1, + anon_sym_LBRACK2, + ACTIONS(4960), 1, + sym__not_in, + ACTIONS(4922), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4938), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4940), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4918), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3295), 5, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + ACTIONS(4942), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4952), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4944), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [214870] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3295), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [214933] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__not_in, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(5088), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5092), 1, + anon_sym_STAR_STAR, + ACTIONS(5068), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(5070), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5090), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 35, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + [215010] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4920), 1, + anon_sym_PIPE, + ACTIONS(4930), 1, + anon_sym_when, + ACTIONS(4932), 1, + anon_sym_COLON_COLON, + ACTIONS(4934), 1, + anon_sym_EQ_GT, + ACTIONS(4936), 1, + anon_sym_EQ, + ACTIONS(4946), 1, + anon_sym_in, + ACTIONS(4948), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4950), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4954), 1, + anon_sym_STAR_STAR, + ACTIONS(4956), 1, + anon_sym_DOT, + ACTIONS(4958), 1, + anon_sym_LBRACK2, + ACTIONS(4960), 1, + sym__not_in, + ACTIONS(4922), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4938), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4940), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3295), 4, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4918), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4942), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4952), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4944), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [215111] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3203), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3205), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [215174] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4920), 1, + anon_sym_PIPE, + ACTIONS(4930), 1, + anon_sym_when, + ACTIONS(4932), 1, + anon_sym_COLON_COLON, + ACTIONS(4934), 1, + anon_sym_EQ_GT, + ACTIONS(4936), 1, + anon_sym_EQ, + ACTIONS(4946), 1, + anon_sym_in, + ACTIONS(4948), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4950), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4954), 1, + anon_sym_STAR_STAR, + ACTIONS(4956), 1, + anon_sym_DOT, + ACTIONS(4958), 1, + anon_sym_LBRACK2, + ACTIONS(4960), 1, + sym__not_in, + ACTIONS(4922), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4938), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4940), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3295), 4, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4918), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4942), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4952), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4944), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [215275] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__not_in, + ACTIONS(4954), 1, + anon_sym_STAR_STAR, + ACTIONS(4956), 1, + anon_sym_DOT, + ACTIONS(4958), 1, + anon_sym_LBRACK2, + ACTIONS(4922), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3295), 44, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + [215346] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__not_in, + ACTIONS(4954), 1, + anon_sym_STAR_STAR, + ACTIONS(4956), 1, + anon_sym_DOT, + ACTIONS(4958), 1, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3295), 46, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + [215415] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3199), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3201), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [215478] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3295), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [215541] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(5084), 1, + anon_sym_in, + ACTIONS(5086), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5088), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5092), 1, + anon_sym_STAR_STAR, + ACTIONS(5094), 1, + sym__not_in, + ACTIONS(5068), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(5070), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5090), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 33, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [215622] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3118), 1, + sym__not_in, + ACTIONS(4956), 1, + anon_sym_DOT, + ACTIONS(4958), 1, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3120), 47, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + [215689] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [215752] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3118), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3120), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [215815] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3403), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3405), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [215878] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(5084), 1, + anon_sym_in, + ACTIONS(5086), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5088), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5092), 1, + anon_sym_STAR_STAR, + ACTIONS(5094), 1, + sym__not_in, + ACTIONS(5068), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(5070), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5066), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5090), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5082), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 20, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + [215963] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(5084), 1, + anon_sym_in, + ACTIONS(5086), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5088), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5092), 1, + anon_sym_STAR_STAR, + ACTIONS(5094), 1, + sym__not_in, + ACTIONS(5068), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(5070), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5066), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5080), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5090), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5082), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 15, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + [216050] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3118), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3120), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [216113] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3000), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3002), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [216176] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(5084), 1, + anon_sym_in, + ACTIONS(5086), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5088), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5092), 1, + anon_sym_STAR_STAR, + ACTIONS(5094), 1, + sym__not_in, + ACTIONS(5068), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(5070), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5078), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5066), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5080), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5090), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5082), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 12, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + [216265] = 19, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(5074), 1, + anon_sym_EQ, + ACTIONS(5084), 1, + anon_sym_in, + ACTIONS(5086), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5088), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5092), 1, + anon_sym_STAR_STAR, + ACTIONS(5094), 1, + sym__not_in, + ACTIONS(5068), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(5070), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5076), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5078), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5066), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5080), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5090), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 8, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + ACTIONS(5082), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [216358] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3064), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3066), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [216421] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3118), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3120), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [216484] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(5072), 1, + anon_sym_EQ_GT, + ACTIONS(5074), 1, + anon_sym_EQ, + ACTIONS(5084), 1, + anon_sym_in, + ACTIONS(5086), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5088), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5092), 1, + anon_sym_STAR_STAR, + ACTIONS(5094), 1, + sym__not_in, + ACTIONS(5096), 1, + anon_sym_PIPE, + ACTIONS(5098), 1, + anon_sym_COLON_COLON, + ACTIONS(5068), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(5070), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5076), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5078), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5066), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3295), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + ACTIONS(5080), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5090), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5082), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [216583] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3006), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3008), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [216646] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(5072), 1, + anon_sym_EQ_GT, + ACTIONS(5074), 1, + anon_sym_EQ, + ACTIONS(5084), 1, + anon_sym_in, + ACTIONS(5086), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5088), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5092), 1, + anon_sym_STAR_STAR, + ACTIONS(5094), 1, + sym__not_in, + ACTIONS(5096), 1, + anon_sym_PIPE, + ACTIONS(5098), 1, + anon_sym_COLON_COLON, + ACTIONS(5100), 1, + anon_sym_when, + ACTIONS(5068), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(5070), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5076), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5078), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3295), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5066), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5080), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5090), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5082), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [216747] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(5072), 1, + anon_sym_EQ_GT, + ACTIONS(5074), 1, + anon_sym_EQ, + ACTIONS(5084), 1, + anon_sym_in, + ACTIONS(5086), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5088), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5092), 1, + anon_sym_STAR_STAR, + ACTIONS(5094), 1, + sym__not_in, + ACTIONS(5096), 1, + anon_sym_PIPE, + ACTIONS(5098), 1, + anon_sym_COLON_COLON, + ACTIONS(5100), 1, + anon_sym_when, + ACTIONS(5068), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(5070), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5076), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5078), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3295), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5066), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5080), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5090), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5082), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [216848] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__not_in, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(5092), 1, + anon_sym_STAR_STAR, + ACTIONS(5068), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3295), 44, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + [216919] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__not_in, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(5092), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3295), 46, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + [216988] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(5072), 1, + anon_sym_EQ_GT, + ACTIONS(5074), 1, + anon_sym_EQ, + ACTIONS(5084), 1, + anon_sym_in, + ACTIONS(5086), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5088), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5092), 1, + anon_sym_STAR_STAR, + ACTIONS(5094), 1, + sym__not_in, + ACTIONS(5096), 1, + anon_sym_PIPE, + ACTIONS(5068), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(5070), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5076), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5078), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5066), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5080), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3295), 6, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + ACTIONS(5090), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5082), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [217085] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3327), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3329), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [217148] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4920), 1, + anon_sym_PIPE, + ACTIONS(4934), 1, + anon_sym_EQ_GT, + ACTIONS(4936), 1, + anon_sym_EQ, + ACTIONS(4946), 1, + anon_sym_in, + ACTIONS(4948), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4950), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4954), 1, + anon_sym_STAR_STAR, + ACTIONS(4956), 1, + anon_sym_DOT, + ACTIONS(4958), 1, + anon_sym_LBRACK2, + ACTIONS(4960), 1, + sym__not_in, + ACTIONS(4922), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4938), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4940), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4918), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4942), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3295), 6, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + ACTIONS(4952), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4944), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [217245] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4946), 1, + anon_sym_in, + ACTIONS(4948), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4950), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4954), 1, + anon_sym_STAR_STAR, + ACTIONS(4956), 1, + anon_sym_DOT, + ACTIONS(4958), 1, + anon_sym_LBRACK2, + ACTIONS(4960), 1, + sym__not_in, + ACTIONS(4922), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4952), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4944), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 24, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [217328] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3327), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3329), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [217391] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(5084), 1, + anon_sym_in, + ACTIONS(5086), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5088), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5092), 1, + anon_sym_STAR_STAR, + ACTIONS(5094), 1, + sym__not_in, + ACTIONS(5068), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(5070), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5090), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5082), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3295), 24, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [217474] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3731), 1, + anon_sym_LBRACK2, + ACTIONS(4343), 1, + aux_sym__terminator_token1, + ACTIONS(4611), 1, + anon_sym_PIPE, + ACTIONS(4619), 1, + anon_sym_when, + ACTIONS(4621), 1, + anon_sym_COLON_COLON, + ACTIONS(4623), 1, + anon_sym_EQ_GT, + ACTIONS(4625), 1, + anon_sym_EQ, + ACTIONS(4635), 1, + anon_sym_in, + ACTIONS(4637), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4639), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4643), 1, + anon_sym_STAR_STAR, + ACTIONS(4645), 1, + anon_sym_DOT, + ACTIONS(4647), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3893), 2, + ACTIONS(4345), 2, + anon_sym_SEMI, + anon_sym_end, + ACTIONS(4613), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4615), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4617), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4627), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4629), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4609), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4631), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4641), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4633), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [217579] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__not_in, + ACTIONS(4948), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4950), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4954), 1, + anon_sym_STAR_STAR, + ACTIONS(4956), 1, + anon_sym_DOT, + ACTIONS(4958), 1, + anon_sym_LBRACK2, + ACTIONS(4922), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4952), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 34, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + [217658] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3423), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3425), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [217721] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3319), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3321), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [217784] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3319), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3321), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [217847] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + sym__not_in, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(5086), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5088), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5092), 1, + anon_sym_STAR_STAR, + ACTIONS(5068), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(5070), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5090), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3295), 34, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + [217926] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3427), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3429), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [217989] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3159), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3161), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [218052] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3163), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3165), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [218115] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3167), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3169), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [218178] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4345), 1, + anon_sym_SEMI, + ACTIONS(4460), 1, + anon_sym_PIPE, + ACTIONS(4468), 1, + anon_sym_when, + ACTIONS(4470), 1, + anon_sym_COLON_COLON, + ACTIONS(4472), 1, + anon_sym_EQ_GT, + ACTIONS(4474), 1, + anon_sym_EQ, + ACTIONS(4484), 1, + anon_sym_in, + ACTIONS(4486), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4488), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4492), 1, + anon_sym_STAR_STAR, + ACTIONS(4494), 1, + anon_sym_DOT, + ACTIONS(4496), 1, + anon_sym_LBRACK2, + ACTIONS(4498), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4343), 2, ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(4264), 2, + ACTIONS(4462), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4266), 2, + ACTIONS(4464), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4268), 2, + ACTIONS(4466), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(4278), 3, + ACTIONS(4476), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4280), 3, + ACTIONS(4478), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4260), 4, + ACTIONS(4458), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4282), 5, + ACTIONS(4480), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4292), 6, + ACTIONS(4490), 6, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - ACTIONS(4284), 9, + ACTIONS(4482), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -316628,17 +356183,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [176618] = 4, + [218283] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3381), 2, + ACTIONS(3319), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3383), 48, + ACTIONS(3321), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -316687,204 +356242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [176681] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3377), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3379), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [176744] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4543), 1, - anon_sym_PIPE, - ACTIONS(4553), 1, - anon_sym_when, - ACTIONS(4555), 1, - anon_sym_COLON_COLON, - ACTIONS(4557), 1, - anon_sym_EQ_GT, - ACTIONS(4559), 1, - anon_sym_EQ, - ACTIONS(4569), 1, - anon_sym_in, - ACTIONS(4571), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4573), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4577), 1, - anon_sym_STAR_STAR, - ACTIONS(4579), 1, - anon_sym_DOT, - ACTIONS(4581), 1, - anon_sym_LBRACK2, - ACTIONS(4583), 1, - sym__not_in, - ACTIONS(3112), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - ACTIONS(4545), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4549), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4551), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4561), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4563), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4541), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4565), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4575), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4567), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [176847] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3494), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3496), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [176910] = 4, + [218346] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(2972), 2, @@ -316943,17 +356301,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [176973] = 4, + [218409] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3131), 2, + ACTIONS(3297), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3133), 48, + ACTIONS(3299), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -317002,175 +356360,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [177036] = 24, + [218472] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4543), 1, - anon_sym_PIPE, - ACTIONS(4553), 1, - anon_sym_when, - ACTIONS(4555), 1, - anon_sym_COLON_COLON, - ACTIONS(4557), 1, - anon_sym_EQ_GT, - ACTIONS(4559), 1, - anon_sym_EQ, - ACTIONS(4569), 1, - anon_sym_in, - ACTIONS(4571), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4573), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4577), 1, - anon_sym_STAR_STAR, - ACTIONS(4579), 1, - anon_sym_DOT, - ACTIONS(4581), 1, - anon_sym_LBRACK2, - ACTIONS(4583), 1, - sym__not_in, - ACTIONS(3544), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - ACTIONS(4545), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4549), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4551), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4561), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4563), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4541), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4565), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4575), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4567), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [177139] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4543), 1, - anon_sym_PIPE, - ACTIONS(4553), 1, - anon_sym_when, - ACTIONS(4555), 1, - anon_sym_COLON_COLON, - ACTIONS(4557), 1, - anon_sym_EQ_GT, - ACTIONS(4559), 1, - anon_sym_EQ, - ACTIONS(4569), 1, - anon_sym_in, - ACTIONS(4571), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4573), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4577), 1, - anon_sym_STAR_STAR, - ACTIONS(4579), 1, - anon_sym_DOT, - ACTIONS(4581), 1, - anon_sym_LBRACK2, - ACTIONS(4583), 1, - sym__not_in, - ACTIONS(3560), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - ACTIONS(4545), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4549), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4551), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4561), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4563), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4541), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4565), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4575), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4567), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [177242] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3285), 2, + ACTIONS(3297), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3287), 48, + ACTIONS(3299), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -317219,29 +356419,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [177305] = 5, + [218535] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3494), 2, + ACTIONS(3431), 2, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3631), 2, - anon_sym_when, - anon_sym_DASH_GT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3496), 46, + ACTIONS(3433), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, anon_sym_COLON_COLON, anon_sym_EQ_GT, anon_sym_EQ, @@ -317279,7 +356478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [177370] = 4, + [218598] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3289), 2, @@ -317338,17 +356537,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [177433] = 4, + [218661] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3417), 2, + ACTIONS(3171), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3419), 48, + ACTIONS(3173), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -317397,17 +356596,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [177496] = 4, + [218724] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3461), 2, + ACTIONS(3285), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3463), 48, + ACTIONS(3287), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -317456,17 +356655,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [177559] = 4, + [218787] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3413), 2, + ACTIONS(3281), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3415), 48, + ACTIONS(3283), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -317515,17 +356714,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [177622] = 4, + [218850] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3465), 2, + ACTIONS(3407), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3467), 48, + ACTIONS(3409), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -317574,17 +356773,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [177685] = 4, + [218913] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3453), 2, + ACTIONS(3265), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3455), 48, + ACTIONS(3267), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -317633,17 +356832,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [177748] = 4, + [218976] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3453), 2, + ACTIONS(3175), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3455), 48, + ACTIONS(3177), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -317692,17 +356891,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [177811] = 4, + [219039] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3409), 2, + ACTIONS(3191), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3411), 48, + ACTIONS(3193), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -317751,5982 +356950,4732 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [177874] = 4, + [219102] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3405), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3407), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [177937] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3453), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3455), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [178000] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3457), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3459), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [178063] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3050), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3052), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [178126] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3457), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3459), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [178189] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3022), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3024), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [178252] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__not_in, - ACTIONS(4571), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4573), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4577), 1, - anon_sym_STAR_STAR, - ACTIONS(4579), 1, - anon_sym_DOT, - ACTIONS(4581), 1, - anon_sym_LBRACK2, - ACTIONS(4545), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4549), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4575), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(3391), 34, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - [178331] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4614), 1, - anon_sym_STAR_STAR, - ACTIONS(4616), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4618), 1, - anon_sym_in, - ACTIONS(4620), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4622), 1, - sym__not_in, - ACTIONS(4632), 1, - anon_sym_EQ, - ACTIONS(4636), 1, - anon_sym_EQ_GT, - ACTIONS(4638), 1, - anon_sym_PIPE, - ACTIONS(4640), 1, - anon_sym_COLON_COLON, - ACTIONS(4642), 1, - anon_sym_when, - ACTIONS(3544), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(4608), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4610), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4644), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4630), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4634), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4624), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4628), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4612), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4626), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [178434] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4614), 1, - anon_sym_STAR_STAR, - ACTIONS(4616), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4618), 1, - anon_sym_in, - ACTIONS(4620), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4622), 1, - sym__not_in, - ACTIONS(4632), 1, - anon_sym_EQ, - ACTIONS(4636), 1, - anon_sym_EQ_GT, - ACTIONS(4638), 1, - anon_sym_PIPE, - ACTIONS(4640), 1, - anon_sym_COLON_COLON, - ACTIONS(4642), 1, - anon_sym_when, - ACTIONS(3560), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(4608), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4610), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4644), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4630), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4634), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4624), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4628), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4612), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4626), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [178537] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, - sym__not_in, - ACTIONS(4577), 1, - anon_sym_STAR_STAR, - ACTIONS(4579), 1, - anon_sym_DOT, - ACTIONS(4581), 1, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3391), 46, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - [178606] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3391), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [178669] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4543), 1, - anon_sym_PIPE, - ACTIONS(4557), 1, - anon_sym_EQ_GT, - ACTIONS(4559), 1, - anon_sym_EQ, - ACTIONS(4569), 1, - anon_sym_in, - ACTIONS(4571), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4573), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4577), 1, - anon_sym_STAR_STAR, - ACTIONS(4579), 1, - anon_sym_DOT, - ACTIONS(4581), 1, - anon_sym_LBRACK2, - ACTIONS(4583), 1, - sym__not_in, - ACTIONS(4545), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4549), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4561), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4563), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4541), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4565), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3391), 6, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - ACTIONS(4575), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4567), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [178766] = 14, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4569), 1, - anon_sym_in, - ACTIONS(4571), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4573), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4577), 1, - anon_sym_STAR_STAR, - ACTIONS(4579), 1, - anon_sym_DOT, - ACTIONS(4581), 1, - anon_sym_LBRACK2, - ACTIONS(4583), 1, - sym__not_in, - ACTIONS(4545), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4549), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4575), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4567), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3391), 24, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [178849] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4500), 1, - anon_sym_PIPE, - ACTIONS(4511), 1, - anon_sym_COLON_COLON, - ACTIONS(4513), 1, - anon_sym_EQ_GT, - ACTIONS(4515), 1, - anon_sym_EQ, - ACTIONS(4525), 1, - anon_sym_in, - ACTIONS(4527), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4529), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4533), 1, - anon_sym_STAR_STAR, - ACTIONS(4535), 1, - anon_sym_DOT, - ACTIONS(4537), 1, - anon_sym_LBRACK2, - ACTIONS(4539), 1, - sym__not_in, - ACTIONS(4585), 1, - anon_sym_when, - ACTIONS(4646), 1, - anon_sym_DASH_GT, - ACTIONS(4502), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4504), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4506), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4517), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4519), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4498), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4521), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4531), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4523), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [178951] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4648), 1, - anon_sym_LBRACE, - ACTIONS(3457), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3459), 46, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [179015] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4434), 1, - anon_sym_PIPE, - ACTIONS(4442), 1, - anon_sym_when, - ACTIONS(4444), 1, - anon_sym_COLON_COLON, - ACTIONS(4446), 1, - anon_sym_EQ_GT, - ACTIONS(4448), 1, - anon_sym_EQ, - ACTIONS(4458), 1, - anon_sym_in, - ACTIONS(4460), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4462), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4466), 1, - anon_sym_STAR_STAR, - ACTIONS(4468), 1, - sym__not_in, - ACTIONS(4650), 1, - anon_sym_RBRACK, - ACTIONS(4436), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4438), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4440), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4450), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4452), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4432), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4454), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4464), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4456), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [179117] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4434), 1, - anon_sym_PIPE, - ACTIONS(4442), 1, - anon_sym_when, - ACTIONS(4444), 1, - anon_sym_COLON_COLON, - ACTIONS(4446), 1, - anon_sym_EQ_GT, - ACTIONS(4448), 1, - anon_sym_EQ, - ACTIONS(4458), 1, - anon_sym_in, - ACTIONS(4460), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4462), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4466), 1, - anon_sym_STAR_STAR, - ACTIONS(4468), 1, - sym__not_in, - ACTIONS(4652), 1, - anon_sym_RBRACE, - ACTIONS(4436), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4438), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4440), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4450), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4452), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4432), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4454), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4464), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4456), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [179219] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4434), 1, - anon_sym_PIPE, - ACTIONS(4442), 1, - anon_sym_when, - ACTIONS(4444), 1, - anon_sym_COLON_COLON, - ACTIONS(4446), 1, - anon_sym_EQ_GT, - ACTIONS(4448), 1, - anon_sym_EQ, - ACTIONS(4458), 1, - anon_sym_in, - ACTIONS(4460), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4462), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4466), 1, - anon_sym_STAR_STAR, - ACTIONS(4468), 1, - sym__not_in, - ACTIONS(4654), 1, - anon_sym_RBRACK, - ACTIONS(4436), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4438), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4440), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4450), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4452), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4432), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4454), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4464), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4456), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [179321] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4500), 1, - anon_sym_PIPE, - ACTIONS(4511), 1, - anon_sym_COLON_COLON, - ACTIONS(4513), 1, - anon_sym_EQ_GT, - ACTIONS(4515), 1, - anon_sym_EQ, - ACTIONS(4525), 1, - anon_sym_in, - ACTIONS(4527), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4529), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4533), 1, - anon_sym_STAR_STAR, - ACTIONS(4535), 1, - anon_sym_DOT, - ACTIONS(4537), 1, - anon_sym_LBRACK2, - ACTIONS(4539), 1, - sym__not_in, - ACTIONS(4585), 1, - anon_sym_when, - ACTIONS(4656), 1, - anon_sym_DASH_GT, - ACTIONS(4502), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4504), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4506), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4517), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4519), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4498), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4521), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4531), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4523), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [179423] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4434), 1, - anon_sym_PIPE, - ACTIONS(4442), 1, - anon_sym_when, - ACTIONS(4444), 1, - anon_sym_COLON_COLON, - ACTIONS(4446), 1, - anon_sym_EQ_GT, - ACTIONS(4448), 1, - anon_sym_EQ, - ACTIONS(4458), 1, - anon_sym_in, - ACTIONS(4460), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4462), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4466), 1, - anon_sym_STAR_STAR, - ACTIONS(4468), 1, - sym__not_in, - ACTIONS(4658), 1, - anon_sym_RBRACE, - ACTIONS(4436), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4438), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4440), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4450), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4452), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4432), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4454), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4464), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4456), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [179525] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4434), 1, - anon_sym_PIPE, - ACTIONS(4442), 1, - anon_sym_when, - ACTIONS(4444), 1, - anon_sym_COLON_COLON, - ACTIONS(4446), 1, - anon_sym_EQ_GT, - ACTIONS(4448), 1, - anon_sym_EQ, - ACTIONS(4458), 1, - anon_sym_in, - ACTIONS(4460), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4462), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4466), 1, - anon_sym_STAR_STAR, - ACTIONS(4468), 1, - sym__not_in, - ACTIONS(4660), 1, - anon_sym_RBRACK, - ACTIONS(4436), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4438), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4440), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4450), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4452), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4432), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4454), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4464), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4456), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [179627] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4434), 1, - anon_sym_PIPE, - ACTIONS(4442), 1, - anon_sym_when, - ACTIONS(4444), 1, - anon_sym_COLON_COLON, - ACTIONS(4446), 1, - anon_sym_EQ_GT, - ACTIONS(4448), 1, - anon_sym_EQ, - ACTIONS(4458), 1, - anon_sym_in, - ACTIONS(4460), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4462), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4466), 1, - anon_sym_STAR_STAR, - ACTIONS(4468), 1, - sym__not_in, - ACTIONS(4662), 1, - anon_sym_RBRACK, - ACTIONS(4436), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4438), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4440), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4450), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4452), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4432), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4454), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4464), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4456), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [179729] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4434), 1, - anon_sym_PIPE, - ACTIONS(4442), 1, - anon_sym_when, - ACTIONS(4444), 1, - anon_sym_COLON_COLON, - ACTIONS(4446), 1, - anon_sym_EQ_GT, - ACTIONS(4448), 1, - anon_sym_EQ, - ACTIONS(4458), 1, - anon_sym_in, - ACTIONS(4460), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4462), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4466), 1, - anon_sym_STAR_STAR, - ACTIONS(4468), 1, - sym__not_in, - ACTIONS(4664), 1, - anon_sym_RBRACK, - ACTIONS(4436), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4438), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4440), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4450), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4452), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4432), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4454), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4464), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4456), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [179831] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4434), 1, - anon_sym_PIPE, - ACTIONS(4442), 1, - anon_sym_when, - ACTIONS(4444), 1, - anon_sym_COLON_COLON, - ACTIONS(4446), 1, - anon_sym_EQ_GT, - ACTIONS(4448), 1, - anon_sym_EQ, - ACTIONS(4458), 1, - anon_sym_in, - ACTIONS(4460), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4462), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4466), 1, - anon_sym_STAR_STAR, - ACTIONS(4468), 1, - sym__not_in, - ACTIONS(4666), 1, - anon_sym_RBRACE, - ACTIONS(4436), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4438), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4440), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4450), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4452), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4432), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4454), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4464), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4456), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [179933] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4434), 1, - anon_sym_PIPE, - ACTIONS(4442), 1, - anon_sym_when, - ACTIONS(4444), 1, - anon_sym_COLON_COLON, - ACTIONS(4446), 1, - anon_sym_EQ_GT, - ACTIONS(4448), 1, - anon_sym_EQ, - ACTIONS(4458), 1, - anon_sym_in, - ACTIONS(4460), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4462), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4466), 1, - anon_sym_STAR_STAR, - ACTIONS(4468), 1, - sym__not_in, - ACTIONS(4668), 1, - anon_sym_RBRACE, - ACTIONS(4436), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4438), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4440), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4450), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4452), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4432), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4454), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4464), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4456), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [180035] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4434), 1, - anon_sym_PIPE, - ACTIONS(4442), 1, - anon_sym_when, - ACTIONS(4444), 1, - anon_sym_COLON_COLON, - ACTIONS(4446), 1, - anon_sym_EQ_GT, - ACTIONS(4448), 1, - anon_sym_EQ, - ACTIONS(4458), 1, - anon_sym_in, - ACTIONS(4460), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4462), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4466), 1, - anon_sym_STAR_STAR, - ACTIONS(4468), 1, - sym__not_in, - ACTIONS(4670), 1, - anon_sym_RBRACK, - ACTIONS(4436), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4438), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4440), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4450), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4452), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4432), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4454), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4464), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4456), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [180137] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4434), 1, - anon_sym_PIPE, - ACTIONS(4442), 1, - anon_sym_when, - ACTIONS(4444), 1, - anon_sym_COLON_COLON, - ACTIONS(4446), 1, - anon_sym_EQ_GT, - ACTIONS(4448), 1, - anon_sym_EQ, - ACTIONS(4458), 1, - anon_sym_in, - ACTIONS(4460), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4462), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4466), 1, - anon_sym_STAR_STAR, - ACTIONS(4468), 1, - sym__not_in, - ACTIONS(4672), 1, - anon_sym_RBRACE, - ACTIONS(4436), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4438), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4440), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4450), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4452), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4432), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4454), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4464), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4456), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [180239] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4434), 1, - anon_sym_PIPE, - ACTIONS(4442), 1, - anon_sym_when, - ACTIONS(4444), 1, - anon_sym_COLON_COLON, - ACTIONS(4446), 1, - anon_sym_EQ_GT, - ACTIONS(4448), 1, - anon_sym_EQ, - ACTIONS(4458), 1, - anon_sym_in, - ACTIONS(4460), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4462), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4466), 1, - anon_sym_STAR_STAR, - ACTIONS(4468), 1, - sym__not_in, - ACTIONS(4674), 1, - anon_sym_RBRACE, - ACTIONS(4436), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4438), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4440), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4450), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4452), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4432), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4454), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4464), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4456), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [180341] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4434), 1, - anon_sym_PIPE, - ACTIONS(4442), 1, - anon_sym_when, - ACTIONS(4444), 1, - anon_sym_COLON_COLON, - ACTIONS(4446), 1, - anon_sym_EQ_GT, - ACTIONS(4448), 1, - anon_sym_EQ, - ACTIONS(4458), 1, - anon_sym_in, - ACTIONS(4460), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4462), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4466), 1, - anon_sym_STAR_STAR, - ACTIONS(4468), 1, - sym__not_in, - ACTIONS(4676), 1, - anon_sym_RBRACE, - ACTIONS(4436), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4438), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4440), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4450), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4452), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4432), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4454), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4464), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4456), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [180443] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4434), 1, - anon_sym_PIPE, - ACTIONS(4442), 1, - anon_sym_when, - ACTIONS(4444), 1, - anon_sym_COLON_COLON, - ACTIONS(4446), 1, - anon_sym_EQ_GT, - ACTIONS(4448), 1, - anon_sym_EQ, - ACTIONS(4458), 1, - anon_sym_in, - ACTIONS(4460), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4462), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4466), 1, - anon_sym_STAR_STAR, - ACTIONS(4468), 1, - sym__not_in, - ACTIONS(4678), 1, - anon_sym_RBRACE, - ACTIONS(4436), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4438), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4440), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4450), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4452), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4432), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4454), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4464), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4456), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [180545] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4434), 1, - anon_sym_PIPE, - ACTIONS(4442), 1, - anon_sym_when, - ACTIONS(4444), 1, - anon_sym_COLON_COLON, - ACTIONS(4446), 1, - anon_sym_EQ_GT, - ACTIONS(4448), 1, - anon_sym_EQ, - ACTIONS(4458), 1, - anon_sym_in, - ACTIONS(4460), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4462), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4466), 1, - anon_sym_STAR_STAR, - ACTIONS(4468), 1, - sym__not_in, - ACTIONS(4680), 1, - anon_sym_RBRACE, - ACTIONS(4436), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4438), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4440), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4450), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4452), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4432), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4454), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4464), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4456), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [180647] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4434), 1, - anon_sym_PIPE, - ACTIONS(4442), 1, - anon_sym_when, - ACTIONS(4444), 1, - anon_sym_COLON_COLON, - ACTIONS(4446), 1, - anon_sym_EQ_GT, - ACTIONS(4448), 1, - anon_sym_EQ, - ACTIONS(4458), 1, - anon_sym_in, - ACTIONS(4460), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4462), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4466), 1, - anon_sym_STAR_STAR, - ACTIONS(4468), 1, - sym__not_in, - ACTIONS(4682), 1, - anon_sym_RBRACK, - ACTIONS(4436), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4438), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4440), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4450), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4452), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4432), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4454), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4464), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4456), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [180749] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4434), 1, - anon_sym_PIPE, - ACTIONS(4442), 1, - anon_sym_when, - ACTIONS(4444), 1, - anon_sym_COLON_COLON, - ACTIONS(4446), 1, - anon_sym_EQ_GT, - ACTIONS(4448), 1, - anon_sym_EQ, - ACTIONS(4458), 1, - anon_sym_in, - ACTIONS(4460), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4462), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4466), 1, - anon_sym_STAR_STAR, - ACTIONS(4468), 1, - sym__not_in, - ACTIONS(4684), 1, - anon_sym_RBRACE, - ACTIONS(4436), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4438), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4440), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4450), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4452), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4432), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4454), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4464), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4456), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [180851] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4434), 1, - anon_sym_PIPE, - ACTIONS(4442), 1, - anon_sym_when, - ACTIONS(4444), 1, - anon_sym_COLON_COLON, - ACTIONS(4446), 1, - anon_sym_EQ_GT, - ACTIONS(4448), 1, - anon_sym_EQ, - ACTIONS(4458), 1, - anon_sym_in, - ACTIONS(4460), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4462), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4466), 1, - anon_sym_STAR_STAR, - ACTIONS(4468), 1, - sym__not_in, - ACTIONS(4686), 1, - anon_sym_RBRACK, - ACTIONS(4436), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4438), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4440), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4450), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4452), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4432), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4454), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4464), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4456), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [180953] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4434), 1, - anon_sym_PIPE, - ACTIONS(4442), 1, - anon_sym_when, - ACTIONS(4444), 1, - anon_sym_COLON_COLON, - ACTIONS(4446), 1, - anon_sym_EQ_GT, - ACTIONS(4448), 1, - anon_sym_EQ, - ACTIONS(4458), 1, - anon_sym_in, - ACTIONS(4460), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4462), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4466), 1, - anon_sym_STAR_STAR, - ACTIONS(4468), 1, - sym__not_in, - ACTIONS(4688), 1, - anon_sym_RBRACK, - ACTIONS(4436), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4438), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4440), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4450), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4452), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4432), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4454), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4464), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4456), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [181055] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(890), 1, - anon_sym_LBRACE, - ACTIONS(189), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(191), 46, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [181119] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4434), 1, - anon_sym_PIPE, - ACTIONS(4442), 1, - anon_sym_when, - ACTIONS(4444), 1, - anon_sym_COLON_COLON, - ACTIONS(4446), 1, - anon_sym_EQ_GT, - ACTIONS(4448), 1, - anon_sym_EQ, - ACTIONS(4458), 1, - anon_sym_in, - ACTIONS(4460), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4462), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4466), 1, - anon_sym_STAR_STAR, - ACTIONS(4468), 1, - sym__not_in, - ACTIONS(4690), 1, - anon_sym_RBRACK, - ACTIONS(4436), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4438), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4440), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4450), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4452), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4432), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4454), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4464), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4456), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [181221] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4434), 1, - anon_sym_PIPE, - ACTIONS(4442), 1, - anon_sym_when, - ACTIONS(4444), 1, - anon_sym_COLON_COLON, - ACTIONS(4446), 1, - anon_sym_EQ_GT, - ACTIONS(4448), 1, - anon_sym_EQ, - ACTIONS(4458), 1, - anon_sym_in, - ACTIONS(4460), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4462), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4466), 1, - anon_sym_STAR_STAR, - ACTIONS(4468), 1, - sym__not_in, - ACTIONS(4692), 1, - anon_sym_RBRACK, - ACTIONS(4436), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4438), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4440), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4450), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4452), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4432), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4454), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4464), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4456), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [181323] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4434), 1, - anon_sym_PIPE, - ACTIONS(4442), 1, - anon_sym_when, - ACTIONS(4444), 1, - anon_sym_COLON_COLON, - ACTIONS(4446), 1, - anon_sym_EQ_GT, - ACTIONS(4448), 1, - anon_sym_EQ, - ACTIONS(4458), 1, - anon_sym_in, - ACTIONS(4460), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4462), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4466), 1, - anon_sym_STAR_STAR, - ACTIONS(4468), 1, - sym__not_in, - ACTIONS(4694), 1, - anon_sym_RBRACK, - ACTIONS(4436), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4438), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4440), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4450), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4452), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4432), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4454), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4464), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4456), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [181425] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - anon_sym_LBRACK2, - ACTIONS(4434), 1, - anon_sym_PIPE, - ACTIONS(4442), 1, - anon_sym_when, - ACTIONS(4444), 1, - anon_sym_COLON_COLON, - ACTIONS(4446), 1, - anon_sym_EQ_GT, - ACTIONS(4448), 1, - anon_sym_EQ, - ACTIONS(4458), 1, - anon_sym_in, - ACTIONS(4460), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4462), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4466), 1, - anon_sym_STAR_STAR, - ACTIONS(4468), 1, - sym__not_in, - ACTIONS(4436), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4438), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4440), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4450), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4452), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4432), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4454), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4464), 6, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - ACTIONS(4456), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [181524] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4696), 1, - anon_sym_LPAREN, - ACTIONS(4698), 1, - anon_sym_DQUOTE, - ACTIONS(4700), 1, - anon_sym_SQUOTE, - ACTIONS(4702), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4704), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4706), 1, - anon_sym_LBRACE, - ACTIONS(4708), 1, - anon_sym_LBRACK, - ACTIONS(4710), 1, - anon_sym_LT, - ACTIONS(4712), 1, - anon_sym_PIPE, - ACTIONS(4714), 1, - anon_sym_SLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(1721), 10, - sym__quoted_i_double, - sym__quoted_i_single, - sym__quoted_i_heredoc_single, - sym__quoted_i_heredoc_double, - sym__quoted_i_parenthesis, - sym__quoted_i_curly, - sym__quoted_i_square, - sym__quoted_i_angle, - sym__quoted_i_bar, - sym__quoted_i_slash, - [181575] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4716), 1, - anon_sym_LPAREN, - ACTIONS(4718), 1, - anon_sym_DQUOTE, - ACTIONS(4720), 1, - anon_sym_SQUOTE, - ACTIONS(4722), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4724), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4726), 1, - anon_sym_LBRACE, - ACTIONS(4728), 1, - anon_sym_LBRACK, - ACTIONS(4730), 1, - anon_sym_LT, - ACTIONS(4732), 1, - anon_sym_PIPE, - ACTIONS(4734), 1, - anon_sym_SLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3282), 10, - sym__quoted_i_double, - sym__quoted_i_single, - sym__quoted_i_heredoc_single, - sym__quoted_i_heredoc_double, - sym__quoted_i_parenthesis, - sym__quoted_i_curly, - sym__quoted_i_square, - sym__quoted_i_angle, - sym__quoted_i_bar, - sym__quoted_i_slash, - [181626] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4736), 1, - anon_sym_LPAREN, - ACTIONS(4738), 1, - anon_sym_DQUOTE, - ACTIONS(4740), 1, - anon_sym_SQUOTE, - ACTIONS(4742), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4744), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4746), 1, - anon_sym_LBRACE, - ACTIONS(4748), 1, - anon_sym_LBRACK, - ACTIONS(4750), 1, - anon_sym_LT, - ACTIONS(4752), 1, - anon_sym_PIPE, - ACTIONS(4754), 1, - anon_sym_SLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(2156), 10, - sym__quoted_i_double, - sym__quoted_i_single, - sym__quoted_i_heredoc_single, - sym__quoted_i_heredoc_double, - sym__quoted_i_parenthesis, - sym__quoted_i_curly, - sym__quoted_i_square, - sym__quoted_i_angle, - sym__quoted_i_bar, - sym__quoted_i_slash, - [181677] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4756), 1, - anon_sym_LPAREN, - ACTIONS(4758), 1, - anon_sym_DQUOTE, - ACTIONS(4760), 1, - anon_sym_SQUOTE, - ACTIONS(4762), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4764), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4766), 1, - anon_sym_LBRACE, - ACTIONS(4768), 1, - anon_sym_LBRACK, - ACTIONS(4770), 1, - anon_sym_LT, - ACTIONS(4772), 1, - anon_sym_PIPE, - ACTIONS(4774), 1, - anon_sym_SLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(2426), 10, - sym__quoted_i_double, - sym__quoted_i_single, - sym__quoted_i_heredoc_single, - sym__quoted_i_heredoc_double, - sym__quoted_i_parenthesis, - sym__quoted_i_curly, - sym__quoted_i_square, - sym__quoted_i_angle, - sym__quoted_i_bar, - sym__quoted_i_slash, - [181728] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4776), 1, - anon_sym_LPAREN, - ACTIONS(4778), 1, - anon_sym_DQUOTE, - ACTIONS(4780), 1, - anon_sym_SQUOTE, - ACTIONS(4782), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4784), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4786), 1, - anon_sym_LBRACE, - ACTIONS(4788), 1, - anon_sym_LBRACK, - ACTIONS(4790), 1, - anon_sym_LT, - ACTIONS(4792), 1, - anon_sym_PIPE, - ACTIONS(4794), 1, - anon_sym_SLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(2250), 10, - sym__quoted_double, - sym__quoted_single, - sym__quoted_heredoc_single, - sym__quoted_heredoc_double, - sym__quoted_parenthesis, - sym__quoted_curly, - sym__quoted_square, - sym__quoted_angle, - sym__quoted_bar, - sym__quoted_slash, - [181779] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4796), 1, - anon_sym_LPAREN, - ACTIONS(4798), 1, - anon_sym_DQUOTE, - ACTIONS(4800), 1, - anon_sym_SQUOTE, - ACTIONS(4802), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4804), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4806), 1, - anon_sym_LBRACE, - ACTIONS(4808), 1, - anon_sym_LBRACK, - ACTIONS(4810), 1, - anon_sym_LT, - ACTIONS(4812), 1, - anon_sym_PIPE, - ACTIONS(4814), 1, - anon_sym_SLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(2311), 10, - sym__quoted_double, - sym__quoted_single, - sym__quoted_heredoc_single, - sym__quoted_heredoc_double, - sym__quoted_parenthesis, - sym__quoted_curly, - sym__quoted_square, - sym__quoted_angle, - sym__quoted_bar, - sym__quoted_slash, - [181830] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4816), 1, - anon_sym_LPAREN, - ACTIONS(4818), 1, - anon_sym_DQUOTE, - ACTIONS(4820), 1, - anon_sym_SQUOTE, - ACTIONS(4822), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4824), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4826), 1, - anon_sym_LBRACE, - ACTIONS(4828), 1, - anon_sym_LBRACK, - ACTIONS(4830), 1, - anon_sym_LT, - ACTIONS(4832), 1, - anon_sym_PIPE, - ACTIONS(4834), 1, - anon_sym_SLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(1771), 10, - sym__quoted_i_double, - sym__quoted_i_single, - sym__quoted_i_heredoc_single, - sym__quoted_i_heredoc_double, - sym__quoted_i_parenthesis, - sym__quoted_i_curly, - sym__quoted_i_square, - sym__quoted_i_angle, - sym__quoted_i_bar, - sym__quoted_i_slash, - [181881] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4836), 1, - anon_sym_LPAREN, - ACTIONS(4838), 1, - anon_sym_DQUOTE, - ACTIONS(4840), 1, - anon_sym_SQUOTE, - ACTIONS(4842), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4844), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4846), 1, - anon_sym_LBRACE, - ACTIONS(4848), 1, - anon_sym_LBRACK, - ACTIONS(4850), 1, - anon_sym_LT, - ACTIONS(4852), 1, - anon_sym_PIPE, - ACTIONS(4854), 1, - anon_sym_SLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(2311), 10, - sym__quoted_i_double, - sym__quoted_i_single, - sym__quoted_i_heredoc_single, - sym__quoted_i_heredoc_double, - sym__quoted_i_parenthesis, - sym__quoted_i_curly, - sym__quoted_i_square, - sym__quoted_i_angle, - sym__quoted_i_bar, - sym__quoted_i_slash, - [181932] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4856), 1, - anon_sym_LPAREN, - ACTIONS(4858), 1, - anon_sym_DQUOTE, - ACTIONS(4860), 1, - anon_sym_SQUOTE, - ACTIONS(4862), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4864), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4866), 1, - anon_sym_LBRACE, - ACTIONS(4868), 1, - anon_sym_LBRACK, - ACTIONS(4870), 1, - anon_sym_LT, - ACTIONS(4872), 1, - anon_sym_PIPE, - ACTIONS(4874), 1, - anon_sym_SLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(1921), 10, - sym__quoted_i_double, - sym__quoted_i_single, - sym__quoted_i_heredoc_single, - sym__quoted_i_heredoc_double, - sym__quoted_i_parenthesis, - sym__quoted_i_curly, - sym__quoted_i_square, - sym__quoted_i_angle, - sym__quoted_i_bar, - sym__quoted_i_slash, - [181983] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4876), 1, - anon_sym_LPAREN, - ACTIONS(4878), 1, - anon_sym_DQUOTE, - ACTIONS(4880), 1, - anon_sym_SQUOTE, - ACTIONS(4882), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4884), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4886), 1, - anon_sym_LBRACE, - ACTIONS(4888), 1, - anon_sym_LBRACK, - ACTIONS(4890), 1, - anon_sym_LT, - ACTIONS(4892), 1, - anon_sym_PIPE, - ACTIONS(4894), 1, - anon_sym_SLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(2499), 10, - sym__quoted_i_double, - sym__quoted_i_single, - sym__quoted_i_heredoc_single, - sym__quoted_i_heredoc_double, - sym__quoted_i_parenthesis, - sym__quoted_i_curly, - sym__quoted_i_square, - sym__quoted_i_angle, - sym__quoted_i_bar, - sym__quoted_i_slash, - [182034] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LPAREN, - ACTIONS(4898), 1, - anon_sym_DQUOTE, - ACTIONS(4900), 1, - anon_sym_SQUOTE, - ACTIONS(4902), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4904), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4906), 1, - anon_sym_LBRACE, - ACTIONS(4908), 1, - anon_sym_LBRACK, - ACTIONS(4910), 1, - anon_sym_LT, - ACTIONS(4912), 1, - anon_sym_PIPE, - ACTIONS(4914), 1, - anon_sym_SLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(1771), 10, - sym__quoted_double, - sym__quoted_single, - sym__quoted_heredoc_single, - sym__quoted_heredoc_double, - sym__quoted_parenthesis, - sym__quoted_curly, - sym__quoted_square, - sym__quoted_angle, - sym__quoted_bar, - sym__quoted_slash, - [182085] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4916), 1, - anon_sym_LPAREN, - ACTIONS(4918), 1, - anon_sym_DQUOTE, ACTIONS(4920), 1, - anon_sym_SQUOTE, - ACTIONS(4922), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4924), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4926), 1, - anon_sym_LBRACE, - ACTIONS(4928), 1, - anon_sym_LBRACK, + anon_sym_PIPE, ACTIONS(4930), 1, - anon_sym_LT, + anon_sym_when, ACTIONS(4932), 1, - anon_sym_PIPE, + anon_sym_COLON_COLON, ACTIONS(4934), 1, - anon_sym_SLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3107), 10, - sym__quoted_double, - sym__quoted_single, - sym__quoted_heredoc_single, - sym__quoted_heredoc_double, - sym__quoted_parenthesis, - sym__quoted_curly, - sym__quoted_square, - sym__quoted_angle, - sym__quoted_bar, - sym__quoted_slash, - [182136] = 13, - ACTIONS(5), 1, - sym_comment, + anon_sym_EQ_GT, ACTIONS(4936), 1, - anon_sym_LPAREN, - ACTIONS(4938), 1, - anon_sym_DQUOTE, - ACTIONS(4940), 1, - anon_sym_SQUOTE, - ACTIONS(4942), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4944), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_EQ, ACTIONS(4946), 1, - anon_sym_LBRACE, + anon_sym_in, ACTIONS(4948), 1, - anon_sym_LBRACK, + anon_sym_CARET_CARET_CARET, ACTIONS(4950), 1, - anon_sym_LT, - ACTIONS(4952), 1, - anon_sym_PIPE, + anon_sym_SLASH_SLASH, ACTIONS(4954), 1, - anon_sym_SLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(2831), 10, - sym__quoted_double, - sym__quoted_single, - sym__quoted_heredoc_single, - sym__quoted_heredoc_double, - sym__quoted_parenthesis, - sym__quoted_curly, - sym__quoted_square, - sym__quoted_angle, - sym__quoted_bar, - sym__quoted_slash, - [182187] = 13, - ACTIONS(5), 1, - sym_comment, + anon_sym_STAR_STAR, ACTIONS(4956), 1, - anon_sym_LPAREN, + anon_sym_DOT, ACTIONS(4958), 1, - anon_sym_DQUOTE, + anon_sym_LBRACK2, ACTIONS(4960), 1, - anon_sym_SQUOTE, + sym__not_in, + ACTIONS(3553), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + ACTIONS(4922), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4928), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4938), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4940), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4918), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4942), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4952), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4944), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [219205] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3191), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3193), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [219268] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3191), 1, + sym__not_in, + ACTIONS(4956), 1, + anon_sym_DOT, + ACTIONS(4958), 1, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3193), 47, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + [219335] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3179), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3181), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [219398] = 24, + ACTIONS(5), 1, + sym_comment, ACTIONS(4962), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DOT, ACTIONS(4964), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4966), 1, - anon_sym_LBRACE, - ACTIONS(4968), 1, - anon_sym_LBRACK, - ACTIONS(4970), 1, - anon_sym_LT, + anon_sym_LBRACK2, ACTIONS(4972), 1, - anon_sym_PIPE, + anon_sym_STAR_STAR, ACTIONS(4974), 1, - anon_sym_SLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3035), 10, - sym__quoted_i_double, - sym__quoted_i_single, - sym__quoted_i_heredoc_single, - sym__quoted_i_heredoc_double, - sym__quoted_i_parenthesis, - sym__quoted_i_curly, - sym__quoted_i_square, - sym__quoted_i_angle, - sym__quoted_i_bar, - sym__quoted_i_slash, - [182238] = 13, - ACTIONS(5), 1, - sym_comment, + anon_sym_SLASH_SLASH, ACTIONS(4976), 1, - anon_sym_LPAREN, + anon_sym_in, ACTIONS(4978), 1, - anon_sym_DQUOTE, + anon_sym_CARET_CARET_CARET, ACTIONS(4980), 1, - anon_sym_SQUOTE, - ACTIONS(4982), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4984), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4986), 1, - anon_sym_LBRACE, - ACTIONS(4988), 1, - anon_sym_LBRACK, + sym__not_in, ACTIONS(4990), 1, - anon_sym_LT, - ACTIONS(4992), 1, - anon_sym_PIPE, + anon_sym_EQ, ACTIONS(4994), 1, - anon_sym_SLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3035), 10, - sym__quoted_double, - sym__quoted_single, - sym__quoted_heredoc_single, - sym__quoted_heredoc_double, - sym__quoted_parenthesis, - sym__quoted_curly, - sym__quoted_square, - sym__quoted_angle, - sym__quoted_bar, - sym__quoted_slash, - [182289] = 13, - ACTIONS(5), 1, - sym_comment, + anon_sym_EQ_GT, ACTIONS(4996), 1, - anon_sym_LPAREN, + anon_sym_PIPE, ACTIONS(4998), 1, - anon_sym_DQUOTE, - ACTIONS(5000), 1, - anon_sym_SQUOTE, - ACTIONS(5002), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5004), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5006), 1, - anon_sym_LBRACE, - ACTIONS(5008), 1, - anon_sym_LBRACK, - ACTIONS(5010), 1, - anon_sym_LT, - ACTIONS(5012), 1, - anon_sym_PIPE, - ACTIONS(5014), 1, + anon_sym_COLON_COLON, + ACTIONS(5009), 1, + anon_sym_when, + ACTIONS(4966), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4968), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5002), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5012), 2, + anon_sym_COMMA, + anon_sym_DASH_GT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(3107), 10, - sym__quoted_i_double, - sym__quoted_i_single, - sym__quoted_i_heredoc_single, - sym__quoted_i_heredoc_double, - sym__quoted_i_parenthesis, - sym__quoted_i_curly, - sym__quoted_i_square, - sym__quoted_i_angle, - sym__quoted_i_bar, - sym__quoted_i_slash, - [182340] = 13, + ACTIONS(4988), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4992), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4982), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4986), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4970), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4984), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [219501] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(5016), 1, - anon_sym_LPAREN, - ACTIONS(5018), 1, - anon_sym_DQUOTE, - ACTIONS(5020), 1, - anon_sym_SQUOTE, - ACTIONS(5022), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5024), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5026), 1, - anon_sym_LBRACE, - ACTIONS(5028), 1, - anon_sym_LBRACK, - ACTIONS(5030), 1, - anon_sym_LT, - ACTIONS(5032), 1, - anon_sym_PIPE, - ACTIONS(5034), 1, - anon_sym_SLASH, + ACTIONS(3191), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(1158), 10, - sym__quoted_i_double, - sym__quoted_i_single, - sym__quoted_i_heredoc_single, - sym__quoted_i_heredoc_double, - sym__quoted_i_parenthesis, - sym__quoted_i_curly, - sym__quoted_i_square, - sym__quoted_i_angle, - sym__quoted_i_bar, - sym__quoted_i_slash, - [182391] = 13, + ACTIONS(3193), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [219564] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(5036), 1, - anon_sym_LPAREN, - ACTIONS(5038), 1, - anon_sym_DQUOTE, - ACTIONS(5040), 1, - anon_sym_SQUOTE, - ACTIONS(5042), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5044), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5046), 1, - anon_sym_LBRACE, - ACTIONS(5048), 1, - anon_sym_LBRACK, - ACTIONS(5050), 1, - anon_sym_LT, - ACTIONS(5052), 1, - anon_sym_PIPE, - ACTIONS(5054), 1, - anon_sym_SLASH, + ACTIONS(3183), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(2156), 10, - sym__quoted_double, - sym__quoted_single, - sym__quoted_heredoc_single, - sym__quoted_heredoc_double, - sym__quoted_parenthesis, - sym__quoted_curly, - sym__quoted_square, - sym__quoted_angle, - sym__quoted_bar, - sym__quoted_slash, - [182442] = 13, + ACTIONS(3185), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [219627] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(5056), 1, - anon_sym_LPAREN, - ACTIONS(5058), 1, - anon_sym_DQUOTE, - ACTIONS(5060), 1, - anon_sym_SQUOTE, - ACTIONS(5062), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5064), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5066), 1, - anon_sym_LBRACE, - ACTIONS(5068), 1, - anon_sym_LBRACK, - ACTIONS(5070), 1, + ACTIONS(3269), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3271), 48, anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [219690] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3183), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3185), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [219753] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [219816] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3187), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3189), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [219879] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3183), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3185), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [219942] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3195), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3197), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [220005] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, ACTIONS(5072), 1, - anon_sym_PIPE, + anon_sym_EQ_GT, ACTIONS(5074), 1, - anon_sym_SLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3282), 10, - sym__quoted_double, - sym__quoted_single, - sym__quoted_heredoc_single, - sym__quoted_heredoc_double, - sym__quoted_parenthesis, - sym__quoted_curly, - sym__quoted_square, - sym__quoted_angle, - sym__quoted_bar, - sym__quoted_slash, - [182493] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5076), 1, - anon_sym_LPAREN, - ACTIONS(5078), 1, - anon_sym_DQUOTE, - ACTIONS(5080), 1, - anon_sym_SQUOTE, - ACTIONS(5082), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_EQ, ACTIONS(5084), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_in, ACTIONS(5086), 1, - anon_sym_LBRACE, + anon_sym_CARET_CARET_CARET, ACTIONS(5088), 1, - anon_sym_LBRACK, - ACTIONS(5090), 1, - anon_sym_LT, + anon_sym_SLASH_SLASH, ACTIONS(5092), 1, - anon_sym_PIPE, + anon_sym_STAR_STAR, ACTIONS(5094), 1, - anon_sym_SLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(2426), 10, - sym__quoted_double, - sym__quoted_single, - sym__quoted_heredoc_single, - sym__quoted_heredoc_double, - sym__quoted_parenthesis, - sym__quoted_curly, - sym__quoted_square, - sym__quoted_angle, - sym__quoted_bar, - sym__quoted_slash, - [182544] = 13, - ACTIONS(5), 1, - sym_comment, + sym__not_in, ACTIONS(5096), 1, - anon_sym_LPAREN, + anon_sym_PIPE, ACTIONS(5098), 1, - anon_sym_DQUOTE, + anon_sym_COLON_COLON, ACTIONS(5100), 1, - anon_sym_SQUOTE, - ACTIONS(5102), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_when, + ACTIONS(3553), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(5068), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(5070), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5102), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5076), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5078), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5066), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5080), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5090), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5082), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [220108] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(5072), 1, + anon_sym_EQ_GT, + ACTIONS(5074), 1, + anon_sym_EQ, + ACTIONS(5084), 1, + anon_sym_in, + ACTIONS(5086), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5088), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5092), 1, + anon_sym_STAR_STAR, + ACTIONS(5094), 1, + sym__not_in, + ACTIONS(5096), 1, + anon_sym_PIPE, + ACTIONS(5098), 1, + anon_sym_COLON_COLON, + ACTIONS(5100), 1, + anon_sym_when, + ACTIONS(3546), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(5068), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(5070), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5102), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5076), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5078), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5066), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5080), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5090), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5082), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [220211] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(4771), 1, + anon_sym_PIPE, + ACTIONS(4777), 1, + anon_sym_COLON_COLON, + ACTIONS(4779), 1, + anon_sym_EQ_GT, + ACTIONS(4781), 1, + anon_sym_EQ, + ACTIONS(4791), 1, + anon_sym_in, + ACTIONS(4793), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4795), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4799), 1, + anon_sym_STAR_STAR, + ACTIONS(4801), 1, + sym__not_in, + ACTIONS(4805), 1, + anon_sym_when, ACTIONS(5104), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_RBRACE, + ACTIONS(4773), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4775), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4803), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4783), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4785), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4769), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4787), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4797), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4789), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [220313] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(4771), 1, + anon_sym_PIPE, + ACTIONS(4777), 1, + anon_sym_COLON_COLON, + ACTIONS(4779), 1, + anon_sym_EQ_GT, + ACTIONS(4781), 1, + anon_sym_EQ, + ACTIONS(4791), 1, + anon_sym_in, + ACTIONS(4793), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4795), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4799), 1, + anon_sym_STAR_STAR, + ACTIONS(4801), 1, + sym__not_in, + ACTIONS(4805), 1, + anon_sym_when, ACTIONS(5106), 1, - anon_sym_LBRACE, + anon_sym_RBRACK, + ACTIONS(4773), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4775), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4803), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4783), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4785), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4769), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4787), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4797), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4789), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [220415] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(4771), 1, + anon_sym_PIPE, + ACTIONS(4777), 1, + anon_sym_COLON_COLON, + ACTIONS(4779), 1, + anon_sym_EQ_GT, + ACTIONS(4781), 1, + anon_sym_EQ, + ACTIONS(4791), 1, + anon_sym_in, + ACTIONS(4793), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4795), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4799), 1, + anon_sym_STAR_STAR, + ACTIONS(4801), 1, + sym__not_in, + ACTIONS(4805), 1, + anon_sym_when, ACTIONS(5108), 1, - anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(4773), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4775), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4803), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4783), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4785), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4769), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4787), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4797), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4789), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [220517] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(4771), 1, + anon_sym_PIPE, + ACTIONS(4777), 1, + anon_sym_COLON_COLON, + ACTIONS(4779), 1, + anon_sym_EQ_GT, + ACTIONS(4781), 1, + anon_sym_EQ, + ACTIONS(4791), 1, + anon_sym_in, + ACTIONS(4793), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4795), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4799), 1, + anon_sym_STAR_STAR, + ACTIONS(4801), 1, + sym__not_in, + ACTIONS(4805), 1, + anon_sym_when, ACTIONS(5110), 1, + anon_sym_RBRACK, + ACTIONS(4773), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4775), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4803), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4783), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4785), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4769), 4, anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4787), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4797), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4789), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [220619] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(4771), 1, + anon_sym_PIPE, + ACTIONS(4777), 1, + anon_sym_COLON_COLON, + ACTIONS(4779), 1, + anon_sym_EQ_GT, + ACTIONS(4781), 1, + anon_sym_EQ, + ACTIONS(4791), 1, + anon_sym_in, + ACTIONS(4793), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4795), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4799), 1, + anon_sym_STAR_STAR, + ACTIONS(4801), 1, + sym__not_in, + ACTIONS(4805), 1, + anon_sym_when, ACTIONS(5112), 1, + anon_sym_RBRACE, + ACTIONS(4773), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4775), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4803), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4783), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4785), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4769), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4787), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4797), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4789), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [220721] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(4771), 1, anon_sym_PIPE, + ACTIONS(4777), 1, + anon_sym_COLON_COLON, + ACTIONS(4779), 1, + anon_sym_EQ_GT, + ACTIONS(4781), 1, + anon_sym_EQ, + ACTIONS(4791), 1, + anon_sym_in, + ACTIONS(4793), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4795), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4799), 1, + anon_sym_STAR_STAR, + ACTIONS(4801), 1, + sym__not_in, + ACTIONS(4805), 1, + anon_sym_when, ACTIONS(5114), 1, + anon_sym_RBRACK, + ACTIONS(4773), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4775), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4803), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(2298), 10, - sym__quoted_double, - sym__quoted_single, - sym__quoted_heredoc_single, - sym__quoted_heredoc_double, - sym__quoted_parenthesis, - sym__quoted_curly, - sym__quoted_square, - sym__quoted_angle, - sym__quoted_bar, - sym__quoted_slash, - [182595] = 13, + ACTIONS(4783), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4785), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4769), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4787), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4797), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4789), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [220823] = 24, ACTIONS(5), 1, sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(4771), 1, + anon_sym_PIPE, + ACTIONS(4777), 1, + anon_sym_COLON_COLON, + ACTIONS(4779), 1, + anon_sym_EQ_GT, + ACTIONS(4781), 1, + anon_sym_EQ, + ACTIONS(4791), 1, + anon_sym_in, + ACTIONS(4793), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4795), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4799), 1, + anon_sym_STAR_STAR, + ACTIONS(4801), 1, + sym__not_in, + ACTIONS(4805), 1, + anon_sym_when, ACTIONS(5116), 1, - anon_sym_LPAREN, + anon_sym_RBRACK, + ACTIONS(4773), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4775), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4803), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4783), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4785), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4769), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4787), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4797), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4789), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [220925] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4962), 1, + anon_sym_DOT, + ACTIONS(4964), 1, + anon_sym_LBRACK2, + ACTIONS(4972), 1, + anon_sym_STAR_STAR, + ACTIONS(4974), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4976), 1, + anon_sym_in, + ACTIONS(4978), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4980), 1, + sym__not_in, + ACTIONS(4990), 1, + anon_sym_EQ, + ACTIONS(4994), 1, + anon_sym_EQ_GT, + ACTIONS(4996), 1, + anon_sym_PIPE, + ACTIONS(4998), 1, + anon_sym_COLON_COLON, + ACTIONS(5000), 1, + anon_sym_when, ACTIONS(5118), 1, - anon_sym_DQUOTE, + anon_sym_DASH_GT, + ACTIONS(4966), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4968), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5002), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4988), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4992), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4982), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4986), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4970), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4984), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [221027] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(4771), 1, + anon_sym_PIPE, + ACTIONS(4777), 1, + anon_sym_COLON_COLON, + ACTIONS(4779), 1, + anon_sym_EQ_GT, + ACTIONS(4781), 1, + anon_sym_EQ, + ACTIONS(4791), 1, + anon_sym_in, + ACTIONS(4793), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4795), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4799), 1, + anon_sym_STAR_STAR, + ACTIONS(4801), 1, + sym__not_in, + ACTIONS(4805), 1, + anon_sym_when, ACTIONS(5120), 1, - anon_sym_SQUOTE, + anon_sym_RBRACK, + ACTIONS(4773), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4775), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4803), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4783), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4785), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4769), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4787), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4797), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4789), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [221129] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(4771), 1, + anon_sym_PIPE, + ACTIONS(4777), 1, + anon_sym_COLON_COLON, + ACTIONS(4779), 1, + anon_sym_EQ_GT, + ACTIONS(4781), 1, + anon_sym_EQ, + ACTIONS(4791), 1, + anon_sym_in, + ACTIONS(4793), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4795), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4799), 1, + anon_sym_STAR_STAR, + ACTIONS(4801), 1, + sym__not_in, + ACTIONS(4805), 1, + anon_sym_when, ACTIONS(5122), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_RBRACE, + ACTIONS(4773), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4775), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4803), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4783), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4785), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4769), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4787), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4797), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4789), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [221231] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(4771), 1, + anon_sym_PIPE, + ACTIONS(4777), 1, + anon_sym_COLON_COLON, + ACTIONS(4779), 1, + anon_sym_EQ_GT, + ACTIONS(4781), 1, + anon_sym_EQ, + ACTIONS(4791), 1, + anon_sym_in, + ACTIONS(4793), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4795), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4799), 1, + anon_sym_STAR_STAR, + ACTIONS(4801), 1, + sym__not_in, + ACTIONS(4805), 1, + anon_sym_when, ACTIONS(5124), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_RBRACE, + ACTIONS(4773), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4775), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4803), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4783), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4785), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4769), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4787), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4797), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4789), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [221333] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4962), 1, + anon_sym_DOT, + ACTIONS(4964), 1, + anon_sym_LBRACK2, + ACTIONS(4972), 1, + anon_sym_STAR_STAR, + ACTIONS(4974), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4976), 1, + anon_sym_in, + ACTIONS(4978), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4980), 1, + sym__not_in, + ACTIONS(4990), 1, + anon_sym_EQ, + ACTIONS(4994), 1, + anon_sym_EQ_GT, + ACTIONS(4996), 1, + anon_sym_PIPE, + ACTIONS(4998), 1, + anon_sym_COLON_COLON, + ACTIONS(5000), 1, + anon_sym_when, ACTIONS(5126), 1, - anon_sym_LBRACE, + anon_sym_DASH_GT, + ACTIONS(4966), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4968), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5002), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4988), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4992), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4982), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4986), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4970), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4984), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [221435] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(4771), 1, + anon_sym_PIPE, + ACTIONS(4777), 1, + anon_sym_COLON_COLON, + ACTIONS(4779), 1, + anon_sym_EQ_GT, + ACTIONS(4781), 1, + anon_sym_EQ, + ACTIONS(4791), 1, + anon_sym_in, + ACTIONS(4793), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4795), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4799), 1, + anon_sym_STAR_STAR, + ACTIONS(4801), 1, + sym__not_in, + ACTIONS(4805), 1, + anon_sym_when, ACTIONS(5128), 1, - anon_sym_LBRACK, + anon_sym_RBRACE, + ACTIONS(4773), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4775), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4803), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4783), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4785), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4769), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4787), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4797), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4789), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [221537] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(4771), 1, + anon_sym_PIPE, + ACTIONS(4777), 1, + anon_sym_COLON_COLON, + ACTIONS(4779), 1, + anon_sym_EQ_GT, + ACTIONS(4781), 1, + anon_sym_EQ, + ACTIONS(4791), 1, + anon_sym_in, + ACTIONS(4793), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4795), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4799), 1, + anon_sym_STAR_STAR, + ACTIONS(4801), 1, + sym__not_in, + ACTIONS(4805), 1, + anon_sym_when, ACTIONS(5130), 1, + anon_sym_RBRACK, + ACTIONS(4773), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4775), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4803), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4783), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4785), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4769), 4, anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4787), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4797), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4789), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [221639] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(4771), 1, + anon_sym_PIPE, + ACTIONS(4777), 1, + anon_sym_COLON_COLON, + ACTIONS(4779), 1, + anon_sym_EQ_GT, + ACTIONS(4781), 1, + anon_sym_EQ, + ACTIONS(4791), 1, + anon_sym_in, + ACTIONS(4793), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4795), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4799), 1, + anon_sym_STAR_STAR, + ACTIONS(4801), 1, + sym__not_in, + ACTIONS(4805), 1, + anon_sym_when, ACTIONS(5132), 1, + anon_sym_RBRACE, + ACTIONS(4773), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4775), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4803), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4783), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4785), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4769), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4787), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4797), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4789), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [221741] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(4771), 1, anon_sym_PIPE, + ACTIONS(4777), 1, + anon_sym_COLON_COLON, + ACTIONS(4779), 1, + anon_sym_EQ_GT, + ACTIONS(4781), 1, + anon_sym_EQ, + ACTIONS(4791), 1, + anon_sym_in, + ACTIONS(4793), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4795), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4799), 1, + anon_sym_STAR_STAR, + ACTIONS(4801), 1, + sym__not_in, + ACTIONS(4805), 1, + anon_sym_when, ACTIONS(5134), 1, + anon_sym_RBRACK, + ACTIONS(4773), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4775), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4803), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(2831), 10, - sym__quoted_i_double, - sym__quoted_i_single, - sym__quoted_i_heredoc_single, - sym__quoted_i_heredoc_double, - sym__quoted_i_parenthesis, - sym__quoted_i_curly, - sym__quoted_i_square, - sym__quoted_i_angle, - sym__quoted_i_bar, - sym__quoted_i_slash, - [182646] = 13, + ACTIONS(4783), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4785), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4769), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4787), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4797), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4789), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [221843] = 24, ACTIONS(5), 1, sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(4771), 1, + anon_sym_PIPE, + ACTIONS(4777), 1, + anon_sym_COLON_COLON, + ACTIONS(4779), 1, + anon_sym_EQ_GT, + ACTIONS(4781), 1, + anon_sym_EQ, + ACTIONS(4791), 1, + anon_sym_in, + ACTIONS(4793), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4795), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4799), 1, + anon_sym_STAR_STAR, + ACTIONS(4801), 1, + sym__not_in, + ACTIONS(4805), 1, + anon_sym_when, ACTIONS(5136), 1, - anon_sym_LPAREN, + anon_sym_RBRACE, + ACTIONS(4773), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4775), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4803), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4783), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4785), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4769), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4787), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4797), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4789), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [221945] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(4771), 1, + anon_sym_PIPE, + ACTIONS(4777), 1, + anon_sym_COLON_COLON, + ACTIONS(4779), 1, + anon_sym_EQ_GT, + ACTIONS(4781), 1, + anon_sym_EQ, + ACTIONS(4791), 1, + anon_sym_in, + ACTIONS(4793), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4795), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4799), 1, + anon_sym_STAR_STAR, + ACTIONS(4801), 1, + sym__not_in, + ACTIONS(4805), 1, + anon_sym_when, ACTIONS(5138), 1, - anon_sym_DQUOTE, + anon_sym_RBRACE, + ACTIONS(4773), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4775), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4803), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4783), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4785), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4769), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4787), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4797), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4789), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [222047] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(5140), 1, - anon_sym_SQUOTE, + anon_sym_LBRACE, + ACTIONS(3327), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3329), 46, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [222111] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(4771), 1, + anon_sym_PIPE, + ACTIONS(4777), 1, + anon_sym_COLON_COLON, + ACTIONS(4779), 1, + anon_sym_EQ_GT, + ACTIONS(4781), 1, + anon_sym_EQ, + ACTIONS(4791), 1, + anon_sym_in, + ACTIONS(4793), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4795), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4799), 1, + anon_sym_STAR_STAR, + ACTIONS(4801), 1, + sym__not_in, + ACTIONS(4805), 1, + anon_sym_when, ACTIONS(5142), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_RBRACE, + ACTIONS(4773), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4775), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4803), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4783), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4785), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4769), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4787), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4797), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4789), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [222213] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(4771), 1, + anon_sym_PIPE, + ACTIONS(4777), 1, + anon_sym_COLON_COLON, + ACTIONS(4779), 1, + anon_sym_EQ_GT, + ACTIONS(4781), 1, + anon_sym_EQ, + ACTIONS(4791), 1, + anon_sym_in, + ACTIONS(4793), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4795), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4799), 1, + anon_sym_STAR_STAR, + ACTIONS(4801), 1, + sym__not_in, + ACTIONS(4805), 1, + anon_sym_when, ACTIONS(5144), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_RBRACK, + ACTIONS(4773), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4775), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4803), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4783), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4785), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4769), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4787), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4797), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4789), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [222315] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(4771), 1, + anon_sym_PIPE, + ACTIONS(4777), 1, + anon_sym_COLON_COLON, + ACTIONS(4779), 1, + anon_sym_EQ_GT, + ACTIONS(4781), 1, + anon_sym_EQ, + ACTIONS(4791), 1, + anon_sym_in, + ACTIONS(4793), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4795), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4799), 1, + anon_sym_STAR_STAR, + ACTIONS(4801), 1, + sym__not_in, + ACTIONS(4805), 1, + anon_sym_when, ACTIONS(5146), 1, + anon_sym_RBRACK, + ACTIONS(4773), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4775), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4803), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4783), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4785), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4769), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4787), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4797), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4789), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [222417] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(874), 1, anon_sym_LBRACE, + ACTIONS(245), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(247), 46, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [222481] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(4771), 1, + anon_sym_PIPE, + ACTIONS(4777), 1, + anon_sym_COLON_COLON, + ACTIONS(4779), 1, + anon_sym_EQ_GT, + ACTIONS(4781), 1, + anon_sym_EQ, + ACTIONS(4791), 1, + anon_sym_in, + ACTIONS(4793), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4795), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4799), 1, + anon_sym_STAR_STAR, + ACTIONS(4801), 1, + sym__not_in, + ACTIONS(4805), 1, + anon_sym_when, ACTIONS(5148), 1, - anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(4773), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4775), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4803), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4783), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4785), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4769), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4787), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4797), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4789), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [222583] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(4771), 1, + anon_sym_PIPE, + ACTIONS(4777), 1, + anon_sym_COLON_COLON, + ACTIONS(4779), 1, + anon_sym_EQ_GT, + ACTIONS(4781), 1, + anon_sym_EQ, + ACTIONS(4791), 1, + anon_sym_in, + ACTIONS(4793), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4795), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4799), 1, + anon_sym_STAR_STAR, + ACTIONS(4801), 1, + sym__not_in, + ACTIONS(4805), 1, + anon_sym_when, ACTIONS(5150), 1, + anon_sym_RBRACE, + ACTIONS(4773), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4775), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4803), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4783), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4785), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4769), 4, anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4787), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4797), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4789), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [222685] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(4771), 1, + anon_sym_PIPE, + ACTIONS(4777), 1, + anon_sym_COLON_COLON, + ACTIONS(4779), 1, + anon_sym_EQ_GT, + ACTIONS(4781), 1, + anon_sym_EQ, + ACTIONS(4791), 1, + anon_sym_in, + ACTIONS(4793), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4795), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4799), 1, + anon_sym_STAR_STAR, + ACTIONS(4801), 1, + sym__not_in, + ACTIONS(4805), 1, + anon_sym_when, ACTIONS(5152), 1, + anon_sym_RBRACK, + ACTIONS(4773), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4775), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4803), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4783), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4785), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4769), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4787), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4797), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4789), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [222787] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4727), 1, + anon_sym_DOT, + ACTIONS(4729), 1, + anon_sym_LBRACK2, + ACTIONS(4771), 1, anon_sym_PIPE, + ACTIONS(4777), 1, + anon_sym_COLON_COLON, + ACTIONS(4779), 1, + anon_sym_EQ_GT, + ACTIONS(4781), 1, + anon_sym_EQ, + ACTIONS(4791), 1, + anon_sym_in, + ACTIONS(4793), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4795), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4799), 1, + anon_sym_STAR_STAR, + ACTIONS(4801), 1, + sym__not_in, + ACTIONS(4805), 1, + anon_sym_when, + ACTIONS(4773), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4775), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4803), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4783), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4785), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4769), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4787), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4797), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4789), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [222886] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(5154), 1, - anon_sym_SLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(2128), 10, - sym__quoted_double, - sym__quoted_single, - sym__quoted_heredoc_single, - sym__quoted_heredoc_double, - sym__quoted_parenthesis, - sym__quoted_curly, - sym__quoted_square, - sym__quoted_angle, - sym__quoted_bar, - sym__quoted_slash, - [182697] = 13, - ACTIONS(5), 1, - sym_comment, + anon_sym_LPAREN, ACTIONS(5156), 1, - anon_sym_LPAREN, + anon_sym_DQUOTE, ACTIONS(5158), 1, - anon_sym_DQUOTE, + anon_sym_SQUOTE, ACTIONS(5160), 1, - anon_sym_SQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(5162), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(5164), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_LBRACE, ACTIONS(5166), 1, - anon_sym_LBRACE, + anon_sym_LBRACK, ACTIONS(5168), 1, - anon_sym_LBRACK, + anon_sym_LT, ACTIONS(5170), 1, - anon_sym_LT, + anon_sym_PIPE, ACTIONS(5172), 1, - anon_sym_PIPE, + anon_sym_SLASH, + STATE(1197), 1, + sym__quoted_i_heredoc_single, + STATE(1207), 1, + sym__quoted_i_single, + STATE(1209), 1, + sym__quoted_i_double, + STATE(1226), 1, + sym__quoted_i_angle, + STATE(1252), 1, + sym__quoted_i_square, + STATE(1255), 1, + sym__quoted_i_bar, + STATE(1274), 1, + sym__quoted_i_curly, + STATE(1288), 1, + sym__quoted_i_heredoc_double, + STATE(1296), 1, + sym__quoted_i_slash, + STATE(1317), 1, + sym__quoted_i_parenthesis, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [222955] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(5174), 1, - anon_sym_SLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(2128), 10, - sym__quoted_i_double, - sym__quoted_i_single, - sym__quoted_i_heredoc_single, - sym__quoted_i_heredoc_double, - sym__quoted_i_parenthesis, - sym__quoted_i_curly, - sym__quoted_i_square, - sym__quoted_i_angle, - sym__quoted_i_bar, - sym__quoted_i_slash, - [182748] = 13, - ACTIONS(5), 1, - sym_comment, + anon_sym_LPAREN, ACTIONS(5176), 1, - anon_sym_LPAREN, + anon_sym_DQUOTE, ACTIONS(5178), 1, - anon_sym_DQUOTE, + anon_sym_SQUOTE, ACTIONS(5180), 1, - anon_sym_SQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(5182), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(5184), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_LBRACE, ACTIONS(5186), 1, - anon_sym_LBRACE, + anon_sym_LBRACK, ACTIONS(5188), 1, - anon_sym_LBRACK, + anon_sym_LT, ACTIONS(5190), 1, - anon_sym_LT, + anon_sym_PIPE, ACTIONS(5192), 1, - anon_sym_PIPE, + anon_sym_SLASH, + STATE(1827), 1, + sym__quoted_i_double, + STATE(1828), 1, + sym__quoted_i_single, + STATE(1829), 1, + sym__quoted_i_heredoc_single, + STATE(1830), 1, + sym__quoted_i_heredoc_double, + STATE(1835), 1, + sym__quoted_i_parenthesis, + STATE(1859), 1, + sym__quoted_i_curly, + STATE(1861), 1, + sym__quoted_i_square, + STATE(1862), 1, + sym__quoted_i_angle, + STATE(1866), 1, + sym__quoted_i_bar, + STATE(1867), 1, + sym__quoted_i_slash, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [223024] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(5194), 1, - anon_sym_SLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(1721), 10, - sym__quoted_double, - sym__quoted_single, - sym__quoted_heredoc_single, - sym__quoted_heredoc_double, - sym__quoted_parenthesis, - sym__quoted_curly, - sym__quoted_square, - sym__quoted_angle, - sym__quoted_bar, - sym__quoted_slash, - [182799] = 13, - ACTIONS(5), 1, - sym_comment, + anon_sym_LPAREN, ACTIONS(5196), 1, - anon_sym_LPAREN, + anon_sym_DQUOTE, ACTIONS(5198), 1, - anon_sym_DQUOTE, + anon_sym_SQUOTE, ACTIONS(5200), 1, - anon_sym_SQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(5202), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(5204), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_LBRACE, ACTIONS(5206), 1, - anon_sym_LBRACE, + anon_sym_LBRACK, ACTIONS(5208), 1, - anon_sym_LBRACK, + anon_sym_LT, ACTIONS(5210), 1, - anon_sym_LT, + anon_sym_PIPE, ACTIONS(5212), 1, - anon_sym_PIPE, - ACTIONS(5214), 1, anon_sym_SLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(1921), 10, - sym__quoted_double, - sym__quoted_single, - sym__quoted_heredoc_single, - sym__quoted_heredoc_double, - sym__quoted_parenthesis, - sym__quoted_curly, - sym__quoted_square, - sym__quoted_angle, - sym__quoted_bar, + STATE(3581), 1, sym__quoted_slash, - [182850] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5216), 1, - anon_sym_LPAREN, - ACTIONS(5218), 1, - anon_sym_DQUOTE, - ACTIONS(5220), 1, - anon_sym_SQUOTE, - ACTIONS(5222), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5224), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5226), 1, - anon_sym_LBRACE, - ACTIONS(5228), 1, - anon_sym_LBRACK, - ACTIONS(5230), 1, - anon_sym_LT, - ACTIONS(5232), 1, - anon_sym_PIPE, - ACTIONS(5234), 1, - anon_sym_SLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(1542), 10, - sym__quoted_i_double, - sym__quoted_i_single, - sym__quoted_i_heredoc_single, - sym__quoted_i_heredoc_double, - sym__quoted_i_parenthesis, - sym__quoted_i_curly, - sym__quoted_i_square, - sym__quoted_i_angle, - sym__quoted_i_bar, - sym__quoted_i_slash, - [182901] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5236), 1, - anon_sym_LPAREN, - ACTIONS(5238), 1, - anon_sym_DQUOTE, - ACTIONS(5240), 1, - anon_sym_SQUOTE, - ACTIONS(5242), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5244), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5246), 1, - anon_sym_LBRACE, - ACTIONS(5248), 1, - anon_sym_LBRACK, - ACTIONS(5250), 1, - anon_sym_LT, - ACTIONS(5252), 1, - anon_sym_PIPE, - ACTIONS(5254), 1, - anon_sym_SLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(2250), 10, - sym__quoted_i_double, - sym__quoted_i_single, - sym__quoted_i_heredoc_single, - sym__quoted_i_heredoc_double, - sym__quoted_i_parenthesis, - sym__quoted_i_curly, - sym__quoted_i_square, - sym__quoted_i_angle, - sym__quoted_i_bar, - sym__quoted_i_slash, - [182952] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5256), 1, - anon_sym_LPAREN, - ACTIONS(5258), 1, - anon_sym_DQUOTE, - ACTIONS(5260), 1, - anon_sym_SQUOTE, - ACTIONS(5262), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5264), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5266), 1, - anon_sym_LBRACE, - ACTIONS(5268), 1, - anon_sym_LBRACK, - ACTIONS(5270), 1, - anon_sym_LT, - ACTIONS(5272), 1, - anon_sym_PIPE, - ACTIONS(5274), 1, - anon_sym_SLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(1542), 10, - sym__quoted_double, - sym__quoted_single, - sym__quoted_heredoc_single, - sym__quoted_heredoc_double, - sym__quoted_parenthesis, - sym__quoted_curly, - sym__quoted_square, - sym__quoted_angle, + STATE(3582), 1, sym__quoted_bar, - sym__quoted_slash, - [183003] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5276), 1, - anon_sym_LPAREN, - ACTIONS(5278), 1, - anon_sym_DQUOTE, - ACTIONS(5280), 1, - anon_sym_SQUOTE, - ACTIONS(5282), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5284), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5286), 1, - anon_sym_LBRACE, - ACTIONS(5288), 1, - anon_sym_LBRACK, - ACTIONS(5290), 1, - anon_sym_LT, - ACTIONS(5292), 1, - anon_sym_PIPE, - ACTIONS(5294), 1, - anon_sym_SLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(2298), 10, - sym__quoted_i_double, - sym__quoted_i_single, - sym__quoted_i_heredoc_single, - sym__quoted_i_heredoc_double, - sym__quoted_i_parenthesis, - sym__quoted_i_curly, - sym__quoted_i_square, - sym__quoted_i_angle, - sym__quoted_i_bar, - sym__quoted_i_slash, - [183054] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5296), 1, - anon_sym_LPAREN, - ACTIONS(5298), 1, - anon_sym_DQUOTE, - ACTIONS(5300), 1, - anon_sym_SQUOTE, - ACTIONS(5302), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5304), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5306), 1, - anon_sym_LBRACE, - ACTIONS(5308), 1, - anon_sym_LBRACK, - ACTIONS(5310), 1, - anon_sym_LT, - ACTIONS(5312), 1, - anon_sym_PIPE, - ACTIONS(5314), 1, - anon_sym_SLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(1158), 10, - sym__quoted_double, - sym__quoted_single, - sym__quoted_heredoc_single, - sym__quoted_heredoc_double, - sym__quoted_parenthesis, - sym__quoted_curly, - sym__quoted_square, + STATE(3583), 1, sym__quoted_angle, - sym__quoted_bar, - sym__quoted_slash, - [183105] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5316), 1, - anon_sym_LPAREN, - ACTIONS(5318), 1, - anon_sym_DQUOTE, - ACTIONS(5320), 1, - anon_sym_SQUOTE, - ACTIONS(5322), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5324), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5326), 1, - anon_sym_LBRACE, - ACTIONS(5328), 1, - anon_sym_LBRACK, - ACTIONS(5330), 1, - anon_sym_LT, - ACTIONS(5332), 1, - anon_sym_PIPE, - ACTIONS(5334), 1, - anon_sym_SLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(1380), 10, - sym__quoted_i_double, - sym__quoted_i_single, - sym__quoted_i_heredoc_single, - sym__quoted_i_heredoc_double, - sym__quoted_i_parenthesis, - sym__quoted_i_curly, - sym__quoted_i_square, - sym__quoted_i_angle, - sym__quoted_i_bar, - sym__quoted_i_slash, - [183156] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5336), 1, - anon_sym_LPAREN, - ACTIONS(5338), 1, - anon_sym_DQUOTE, - ACTIONS(5340), 1, - anon_sym_SQUOTE, - ACTIONS(5342), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5344), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5346), 1, - anon_sym_LBRACE, - ACTIONS(5348), 1, - anon_sym_LBRACK, - ACTIONS(5350), 1, - anon_sym_LT, - ACTIONS(5352), 1, - anon_sym_PIPE, - ACTIONS(5354), 1, - anon_sym_SLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(1380), 10, - sym__quoted_double, - sym__quoted_single, - sym__quoted_heredoc_single, - sym__quoted_heredoc_double, - sym__quoted_parenthesis, - sym__quoted_curly, + STATE(3588), 1, sym__quoted_square, - sym__quoted_angle, - sym__quoted_bar, - sym__quoted_slash, - [183207] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5356), 1, - anon_sym_LPAREN, - ACTIONS(5358), 1, - anon_sym_DQUOTE, - ACTIONS(5360), 1, - anon_sym_SQUOTE, - ACTIONS(5362), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5364), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5366), 1, - anon_sym_LBRACE, - ACTIONS(5368), 1, - anon_sym_LBRACK, - ACTIONS(5370), 1, - anon_sym_LT, - ACTIONS(5372), 1, - anon_sym_PIPE, - ACTIONS(5374), 1, - anon_sym_SLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(2824), 10, - sym__quoted_double, - sym__quoted_single, - sym__quoted_heredoc_single, - sym__quoted_heredoc_double, - sym__quoted_parenthesis, + STATE(3589), 1, sym__quoted_curly, - sym__quoted_square, - sym__quoted_angle, - sym__quoted_bar, - sym__quoted_slash, - [183258] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5376), 1, - anon_sym_LPAREN, - ACTIONS(5378), 1, - anon_sym_DQUOTE, - ACTIONS(5380), 1, - anon_sym_SQUOTE, - ACTIONS(5382), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5384), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5386), 1, - anon_sym_LBRACE, - ACTIONS(5388), 1, - anon_sym_LBRACK, - ACTIONS(5390), 1, - anon_sym_LT, - ACTIONS(5392), 1, - anon_sym_PIPE, - ACTIONS(5394), 1, - anon_sym_SLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(2824), 10, - sym__quoted_i_double, - sym__quoted_i_single, - sym__quoted_i_heredoc_single, - sym__quoted_i_heredoc_double, - sym__quoted_i_parenthesis, - sym__quoted_i_curly, - sym__quoted_i_square, - sym__quoted_i_angle, - sym__quoted_i_bar, - sym__quoted_i_slash, - [183309] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5396), 1, - anon_sym_LPAREN, - ACTIONS(5398), 1, - anon_sym_DQUOTE, - ACTIONS(5400), 1, - anon_sym_SQUOTE, - ACTIONS(5402), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5404), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5406), 1, - anon_sym_LBRACE, - ACTIONS(5408), 1, - anon_sym_LBRACK, - ACTIONS(5410), 1, - anon_sym_LT, - ACTIONS(5412), 1, - anon_sym_PIPE, - ACTIONS(5414), 1, - anon_sym_SLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(2499), 10, - sym__quoted_double, - sym__quoted_single, - sym__quoted_heredoc_single, - sym__quoted_heredoc_double, + STATE(3590), 1, sym__quoted_parenthesis, - sym__quoted_curly, - sym__quoted_square, - sym__quoted_angle, - sym__quoted_bar, - sym__quoted_slash, - [183360] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(351), 1, - anon_sym_end, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3658), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3690), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [183405] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(1004), 1, - anon_sym_end, - ACTIONS(2875), 1, - aux_sym__terminator_token1, - ACTIONS(5418), 1, - anon_sym_SEMI, - STATE(141), 1, - sym__terminator, - STATE(1020), 1, - aux_sym__terminator_repeat1, - STATE(3728), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3666), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [183450] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(331), 1, - anon_sym_end, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3609), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3694), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [183495] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1034), 1, - anon_sym_end, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3725), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3681), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [183540] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(311), 1, - anon_sym_end, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3619), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3696), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [183585] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1044), 1, - anon_sym_end, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3618), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3712), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [183630] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(988), 1, - anon_sym_end, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3725), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3688), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [183675] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1030), 1, - anon_sym_end, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3725), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3680), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [183720] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(988), 1, - anon_sym_end, - ACTIONS(2875), 1, - aux_sym__terminator_token1, - ACTIONS(5420), 1, - anon_sym_SEMI, - STATE(147), 1, - sym__terminator, - STATE(1020), 1, - aux_sym__terminator_repeat1, - STATE(3728), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3688), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [183765] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(1030), 1, - anon_sym_end, - ACTIONS(2875), 1, - aux_sym__terminator_token1, - ACTIONS(5422), 1, - anon_sym_SEMI, - STATE(160), 1, - sym__terminator, - STATE(1020), 1, - aux_sym__terminator_repeat1, - STATE(3728), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3680), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [183810] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(992), 1, - anon_sym_end, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3621), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3718), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [183855] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1032), 1, - anon_sym_end, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3725), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3691), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [183900] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(1032), 1, - anon_sym_end, - ACTIONS(2875), 1, - aux_sym__terminator_token1, - ACTIONS(2954), 1, - anon_sym_SEMI, - STATE(164), 1, - sym__terminator, - STATE(1020), 1, - aux_sym__terminator_repeat1, - STATE(3728), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3691), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [183945] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1018), 1, - anon_sym_end, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3725), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3692), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [183990] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(998), 1, - anon_sym_end, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3617), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3705), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [184035] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(1018), 1, - anon_sym_end, - ACTIONS(2875), 1, - aux_sym__terminator_token1, - ACTIONS(2944), 1, - anon_sym_SEMI, - STATE(143), 1, - sym__terminator, - STATE(1020), 1, - aux_sym__terminator_repeat1, - STATE(3728), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3692), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [184080] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1018), 1, - anon_sym_end, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3595), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3692), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [184125] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1032), 1, - anon_sym_end, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3596), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3691), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [184170] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(992), 1, - anon_sym_end, - ACTIONS(2875), 1, - aux_sym__terminator_token1, - ACTIONS(2938), 1, - anon_sym_SEMI, - STATE(153), 1, - sym__terminator, - STATE(1020), 1, - aux_sym__terminator_repeat1, - STATE(3728), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3718), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [184215] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(998), 1, - anon_sym_end, - ACTIONS(2875), 1, - aux_sym__terminator_token1, - ACTIONS(2934), 1, - anon_sym_SEMI, - STATE(146), 1, - sym__terminator, - STATE(1020), 1, - aux_sym__terminator_repeat1, - STATE(3728), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3705), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [184260] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(998), 1, - anon_sym_end, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3725), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3705), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [184305] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(339), 1, - anon_sym_end, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3648), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3669), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [184350] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1024), 1, - anon_sym_end, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3725), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3709), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [184395] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(1044), 1, - anon_sym_end, - ACTIONS(2875), 1, - aux_sym__terminator_token1, - ACTIONS(2968), 1, - anon_sym_SEMI, - STATE(172), 1, - sym__terminator, - STATE(1020), 1, - aux_sym__terminator_repeat1, - STATE(3728), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3712), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [184440] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(994), 1, - anon_sym_end, - ACTIONS(2875), 1, - aux_sym__terminator_token1, - ACTIONS(5424), 1, - anon_sym_SEMI, - STATE(144), 1, - sym__terminator, - STATE(1020), 1, - aux_sym__terminator_repeat1, - STATE(3728), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3710), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [184485] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1044), 1, - anon_sym_end, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3725), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3712), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [184530] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(1046), 1, - anon_sym_end, - ACTIONS(2875), 1, - aux_sym__terminator_token1, - ACTIONS(5426), 1, - anon_sym_SEMI, - STATE(152), 1, - sym__terminator, - STATE(1020), 1, - aux_sym__terminator_repeat1, - STATE(3728), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3714), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [184575] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(355), 1, - anon_sym_end, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3600), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3695), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [184620] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(994), 1, - anon_sym_end, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3725), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3710), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [184665] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1046), 1, - anon_sym_end, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3725), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3714), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [184710] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(992), 1, - anon_sym_end, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3725), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3718), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [184755] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(1008), 1, - anon_sym_end, - ACTIONS(2875), 1, - aux_sym__terminator_token1, - ACTIONS(5428), 1, - anon_sym_SEMI, - STATE(173), 1, - sym__terminator, - STATE(1020), 1, - aux_sym__terminator_repeat1, - STATE(3728), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3720), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [184800] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1008), 1, - anon_sym_end, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3725), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3720), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [184845] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(1024), 1, - anon_sym_end, - ACTIONS(2875), 1, - aux_sym__terminator_token1, - ACTIONS(5430), 1, - anon_sym_SEMI, - STATE(154), 1, - sym__terminator, - STATE(1020), 1, - aux_sym__terminator_repeat1, - STATE(3728), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3709), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [184890] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(323), 1, - anon_sym_end, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3602), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3698), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [184935] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1014), 1, - anon_sym_end, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3725), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3719), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [184980] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(343), 1, - anon_sym_end, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3629), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3711), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [185025] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1052), 1, - anon_sym_end, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3611), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3721), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [185070] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1026), 1, - anon_sym_end, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3633), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3702), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [185115] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(1026), 1, - anon_sym_end, - ACTIONS(2875), 1, - aux_sym__terminator_token1, - ACTIONS(2940), 1, - anon_sym_SEMI, - STATE(163), 1, - sym__terminator, - STATE(1020), 1, - aux_sym__terminator_repeat1, - STATE(3728), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3702), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [185160] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1026), 1, - anon_sym_end, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3725), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3702), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [185205] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(1052), 1, - anon_sym_end, - ACTIONS(2875), 1, - aux_sym__terminator_token1, - ACTIONS(2926), 1, - anon_sym_SEMI, - STATE(161), 1, - sym__terminator, - STATE(1020), 1, - aux_sym__terminator_repeat1, - STATE(3728), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3721), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [185250] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1052), 1, - anon_sym_end, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3725), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3721), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [185295] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(1028), 1, - anon_sym_end, - ACTIONS(2875), 1, - aux_sym__terminator_token1, - ACTIONS(5432), 1, - anon_sym_SEMI, - STATE(167), 1, - sym__terminator, - STATE(1020), 1, - aux_sym__terminator_repeat1, - STATE(3728), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3699), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [185340] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1028), 1, - anon_sym_end, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3725), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3699), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [185385] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(1014), 1, - anon_sym_end, - ACTIONS(2875), 1, - aux_sym__terminator_token1, - ACTIONS(5434), 1, - anon_sym_SEMI, - STATE(157), 1, - sym__terminator, - STATE(1020), 1, - aux_sym__terminator_repeat1, - STATE(3728), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3719), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [185430] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1040), 1, - anon_sym_end, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3725), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3701), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [185475] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(976), 1, - anon_sym_end, - ACTIONS(2875), 1, - aux_sym__terminator_token1, - ACTIONS(2970), 1, - anon_sym_SEMI, - STATE(156), 1, - sym__terminator, - STATE(1020), 1, - aux_sym__terminator_repeat1, - STATE(3728), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3700), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [185520] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1042), 1, - anon_sym_end, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, + STATE(3591), 1, + sym__quoted_heredoc_double, STATE(3592), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, + sym__quoted_heredoc_single, + STATE(3593), 1, + sym__quoted_single, + STATE(3594), 1, + sym__quoted_double, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(3679), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [185565] = 13, + aux_sym__terminator_token1, + [223093] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(698), 1, + ACTIONS(5214), 1, + anon_sym_LPAREN, + ACTIONS(5216), 1, + anon_sym_DQUOTE, + ACTIONS(5218), 1, + anon_sym_SQUOTE, + ACTIONS(5220), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5222), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5224), 1, + anon_sym_LBRACE, + ACTIONS(5226), 1, + anon_sym_LBRACK, + ACTIONS(5228), 1, + anon_sym_LT, + ACTIONS(5230), 1, + anon_sym_PIPE, + ACTIONS(5232), 1, + anon_sym_SLASH, + STATE(2768), 1, + sym__quoted_i_double, + STATE(2769), 1, + sym__quoted_i_single, + STATE(2780), 1, + sym__quoted_i_heredoc_single, + STATE(2781), 1, + sym__quoted_i_heredoc_double, + STATE(2782), 1, + sym__quoted_i_parenthesis, + STATE(2783), 1, + sym__quoted_i_curly, + STATE(2784), 1, + sym__quoted_i_square, + STATE(2785), 1, + sym__quoted_i_angle, + STATE(2786), 1, + sym__quoted_i_bar, + STATE(2787), 1, + sym__quoted_i_slash, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(976), 1, - anon_sym_end, + [223162] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5234), 1, + anon_sym_LPAREN, + ACTIONS(5236), 1, + anon_sym_DQUOTE, + ACTIONS(5238), 1, + anon_sym_SQUOTE, + ACTIONS(5240), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5242), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5244), 1, + anon_sym_LBRACE, + ACTIONS(5246), 1, + anon_sym_LBRACK, + ACTIONS(5248), 1, + anon_sym_LT, + ACTIONS(5250), 1, + anon_sym_PIPE, + ACTIONS(5252), 1, + anon_sym_SLASH, + STATE(2373), 1, + sym__quoted_double, + STATE(2374), 1, + sym__quoted_single, + STATE(2376), 1, + sym__quoted_heredoc_single, + STATE(2378), 1, + sym__quoted_heredoc_double, + STATE(2380), 1, + sym__quoted_parenthesis, + STATE(2381), 1, + sym__quoted_curly, + STATE(2382), 1, + sym__quoted_square, + STATE(2383), 1, + sym__quoted_angle, + STATE(2384), 1, + sym__quoted_bar, + STATE(2385), 1, + sym__quoted_slash, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [223231] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5254), 1, + anon_sym_LPAREN, + ACTIONS(5256), 1, + anon_sym_DQUOTE, + ACTIONS(5258), 1, + anon_sym_SQUOTE, + ACTIONS(5260), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5262), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5264), 1, + anon_sym_LBRACE, + ACTIONS(5266), 1, + anon_sym_LBRACK, + ACTIONS(5268), 1, + anon_sym_LT, + ACTIONS(5270), 1, + anon_sym_PIPE, + ACTIONS(5272), 1, + anon_sym_SLASH, + STATE(2286), 1, + sym__quoted_i_bar, + STATE(2363), 1, + sym__quoted_i_double, + STATE(2364), 1, + sym__quoted_i_single, + STATE(2365), 1, + sym__quoted_i_heredoc_single, + STATE(2366), 1, + sym__quoted_i_heredoc_double, + STATE(2367), 1, + sym__quoted_i_parenthesis, + STATE(2368), 1, + sym__quoted_i_curly, + STATE(2369), 1, + sym__quoted_i_square, + STATE(2370), 1, + sym__quoted_i_angle, + STATE(2372), 1, + sym__quoted_i_slash, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [223300] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5274), 1, + anon_sym_LPAREN, + ACTIONS(5276), 1, + anon_sym_DQUOTE, + ACTIONS(5278), 1, + anon_sym_SQUOTE, + ACTIONS(5280), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5282), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5284), 1, + anon_sym_LBRACE, + ACTIONS(5286), 1, + anon_sym_LBRACK, + ACTIONS(5288), 1, + anon_sym_LT, + ACTIONS(5290), 1, + anon_sym_PIPE, + ACTIONS(5292), 1, + anon_sym_SLASH, + STATE(1846), 1, + sym__quoted_i_slash, + STATE(1847), 1, + sym__quoted_i_bar, + STATE(1848), 1, + sym__quoted_i_angle, + STATE(1849), 1, + sym__quoted_i_square, + STATE(1850), 1, + sym__quoted_i_curly, + STATE(1851), 1, + sym__quoted_i_parenthesis, + STATE(1852), 1, + sym__quoted_i_heredoc_double, + STATE(1853), 1, + sym__quoted_i_heredoc_single, + STATE(1857), 1, + sym__quoted_i_single, + STATE(1858), 1, + sym__quoted_i_double, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [223369] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5294), 1, + anon_sym_LPAREN, + ACTIONS(5296), 1, + anon_sym_DQUOTE, + ACTIONS(5298), 1, + anon_sym_SQUOTE, + ACTIONS(5300), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5302), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5304), 1, + anon_sym_LBRACE, + ACTIONS(5306), 1, + anon_sym_LBRACK, + ACTIONS(5308), 1, + anon_sym_LT, + ACTIONS(5310), 1, + anon_sym_PIPE, + ACTIONS(5312), 1, + anon_sym_SLASH, + STATE(2421), 1, + sym__quoted_i_slash, + STATE(2422), 1, + sym__quoted_i_bar, + STATE(2426), 1, + sym__quoted_i_angle, + STATE(2427), 1, + sym__quoted_i_square, + STATE(2428), 1, + sym__quoted_i_curly, + STATE(2429), 1, + sym__quoted_i_parenthesis, + STATE(2430), 1, + sym__quoted_i_heredoc_double, + STATE(2431), 1, + sym__quoted_i_heredoc_single, + STATE(2432), 1, + sym__quoted_i_single, + STATE(2433), 1, + sym__quoted_i_double, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [223438] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5314), 1, + anon_sym_LPAREN, + ACTIONS(5316), 1, + anon_sym_DQUOTE, + ACTIONS(5318), 1, + anon_sym_SQUOTE, + ACTIONS(5320), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5322), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5324), 1, + anon_sym_LBRACE, + ACTIONS(5326), 1, + anon_sym_LBRACK, + ACTIONS(5328), 1, + anon_sym_LT, + ACTIONS(5330), 1, + anon_sym_PIPE, + ACTIONS(5332), 1, + anon_sym_SLASH, + STATE(1836), 1, + sym__quoted_slash, + STATE(1837), 1, + sym__quoted_bar, + STATE(1838), 1, + sym__quoted_angle, + STATE(1839), 1, + sym__quoted_square, + STATE(1840), 1, + sym__quoted_curly, + STATE(1841), 1, + sym__quoted_parenthesis, + STATE(1842), 1, + sym__quoted_heredoc_double, + STATE(1843), 1, + sym__quoted_heredoc_single, + STATE(1844), 1, + sym__quoted_single, + STATE(1845), 1, + sym__quoted_double, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [223507] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5334), 1, + anon_sym_LPAREN, + ACTIONS(5336), 1, + anon_sym_DQUOTE, + ACTIONS(5338), 1, + anon_sym_SQUOTE, + ACTIONS(5340), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5342), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5344), 1, + anon_sym_LBRACE, + ACTIONS(5346), 1, + anon_sym_LBRACK, + ACTIONS(5348), 1, + anon_sym_LT, + ACTIONS(5350), 1, + anon_sym_PIPE, + ACTIONS(5352), 1, + anon_sym_SLASH, + STATE(2486), 1, + sym__quoted_slash, + STATE(2487), 1, + sym__quoted_bar, + STATE(2488), 1, + sym__quoted_angle, + STATE(2489), 1, + sym__quoted_square, + STATE(2490), 1, + sym__quoted_curly, + STATE(2491), 1, + sym__quoted_parenthesis, + STATE(2492), 1, + sym__quoted_heredoc_double, + STATE(2493), 1, + sym__quoted_heredoc_single, + STATE(2494), 1, + sym__quoted_single, + STATE(2495), 1, + sym__quoted_double, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [223576] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN, + ACTIONS(5356), 1, + anon_sym_DQUOTE, + ACTIONS(5358), 1, + anon_sym_SQUOTE, + ACTIONS(5360), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5362), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5364), 1, + anon_sym_LBRACE, + ACTIONS(5366), 1, + anon_sym_LBRACK, + ACTIONS(5368), 1, + anon_sym_LT, + ACTIONS(5370), 1, + anon_sym_PIPE, + ACTIONS(5372), 1, + anon_sym_SLASH, + STATE(2514), 1, + sym__quoted_i_double, + STATE(2515), 1, + sym__quoted_i_single, + STATE(2516), 1, + sym__quoted_i_heredoc_single, + STATE(2517), 1, + sym__quoted_i_heredoc_double, + STATE(2518), 1, + sym__quoted_i_parenthesis, + STATE(2519), 1, + sym__quoted_i_curly, + STATE(2520), 1, + sym__quoted_i_square, + STATE(2521), 1, + sym__quoted_i_angle, + STATE(2522), 1, + sym__quoted_i_bar, + STATE(2523), 1, + sym__quoted_i_slash, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [223645] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5374), 1, + anon_sym_LPAREN, + ACTIONS(5376), 1, + anon_sym_DQUOTE, + ACTIONS(5378), 1, + anon_sym_SQUOTE, + ACTIONS(5380), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5382), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5384), 1, + anon_sym_LBRACE, + ACTIONS(5386), 1, + anon_sym_LBRACK, + ACTIONS(5388), 1, + anon_sym_LT, + ACTIONS(5390), 1, + anon_sym_PIPE, + ACTIONS(5392), 1, + anon_sym_SLASH, + STATE(2524), 1, + sym__quoted_double, + STATE(2525), 1, + sym__quoted_single, + STATE(2526), 1, + sym__quoted_heredoc_single, + STATE(2527), 1, + sym__quoted_heredoc_double, + STATE(2528), 1, + sym__quoted_parenthesis, + STATE(2529), 1, + sym__quoted_curly, + STATE(2530), 1, + sym__quoted_square, + STATE(2531), 1, + sym__quoted_angle, + STATE(2534), 1, + sym__quoted_bar, + STATE(2535), 1, + sym__quoted_slash, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [223714] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5396), 1, + anon_sym_DQUOTE, + ACTIONS(5398), 1, + anon_sym_SQUOTE, + ACTIONS(5400), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5402), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5404), 1, + anon_sym_LBRACE, + ACTIONS(5406), 1, + anon_sym_LBRACK, + ACTIONS(5408), 1, + anon_sym_LT, + ACTIONS(5410), 1, + anon_sym_PIPE, + ACTIONS(5412), 1, + anon_sym_SLASH, + STATE(2788), 1, + sym__quoted_double, + STATE(2789), 1, + sym__quoted_single, + STATE(2811), 1, + sym__quoted_heredoc_single, + STATE(2815), 1, + sym__quoted_heredoc_double, + STATE(2816), 1, + sym__quoted_parenthesis, + STATE(2817), 1, + sym__quoted_curly, + STATE(2818), 1, + sym__quoted_square, + STATE(2819), 1, + sym__quoted_angle, + STATE(2884), 1, + sym__quoted_slash, + STATE(2885), 1, + sym__quoted_bar, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [223783] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5414), 1, + anon_sym_LPAREN, ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3624), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, + anon_sym_DQUOTE, + ACTIONS(5418), 1, + anon_sym_SQUOTE, + ACTIONS(5420), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5422), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5424), 1, + anon_sym_LBRACE, + ACTIONS(5426), 1, + anon_sym_LBRACK, + ACTIONS(5428), 1, + anon_sym_LT, + ACTIONS(5430), 1, + anon_sym_PIPE, + ACTIONS(5432), 1, + anon_sym_SLASH, + STATE(2054), 1, + sym__quoted_i_double, + STATE(2055), 1, + sym__quoted_i_single, + STATE(2056), 1, + sym__quoted_i_heredoc_single, + STATE(2057), 1, + sym__quoted_i_heredoc_double, + STATE(2058), 1, + sym__quoted_i_parenthesis, + STATE(2059), 1, + sym__quoted_i_curly, + STATE(2060), 1, + sym__quoted_i_square, + STATE(2061), 1, + sym__quoted_i_angle, + STATE(2062), 1, + sym__quoted_i_bar, + STATE(2063), 1, + sym__quoted_i_slash, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(3700), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [185610] = 13, + aux_sym__terminator_token1, + [223852] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(1040), 1, - anon_sym_end, - ACTIONS(2875), 1, - aux_sym__terminator_token1, + ACTIONS(5434), 1, + anon_sym_LPAREN, ACTIONS(5436), 1, - anon_sym_SEMI, - STATE(168), 1, - sym__terminator, - STATE(1020), 1, - aux_sym__terminator_repeat1, - STATE(3728), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, + anon_sym_DQUOTE, + ACTIONS(5438), 1, + anon_sym_SQUOTE, + ACTIONS(5440), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5442), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5444), 1, + anon_sym_LBRACE, + ACTIONS(5446), 1, + anon_sym_LBRACK, + ACTIONS(5448), 1, + anon_sym_LT, + ACTIONS(5450), 1, + anon_sym_PIPE, + ACTIONS(5452), 1, + anon_sym_SLASH, + STATE(2064), 1, + sym__quoted_double, + STATE(2065), 1, + sym__quoted_single, + STATE(2066), 1, + sym__quoted_heredoc_single, + STATE(2067), 1, + sym__quoted_heredoc_double, + STATE(2068), 1, + sym__quoted_parenthesis, + STATE(2069), 1, + sym__quoted_curly, + STATE(2070), 1, + sym__quoted_square, + STATE(2071), 1, + sym__quoted_angle, + STATE(2072), 1, + sym__quoted_bar, + STATE(2073), 1, + sym__quoted_slash, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(3701), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [185655] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(698), 1, aux_sym__terminator_token1, - ACTIONS(1002), 1, - anon_sym_end, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3725), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3667), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [185700] = 13, + [223921] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(698), 1, + ACTIONS(5454), 1, + anon_sym_LPAREN, + ACTIONS(5456), 1, + anon_sym_DQUOTE, + ACTIONS(5458), 1, + anon_sym_SQUOTE, + ACTIONS(5460), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5462), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5464), 1, + anon_sym_LBRACE, + ACTIONS(5466), 1, + anon_sym_LBRACK, + ACTIONS(5468), 1, + anon_sym_LT, + ACTIONS(5470), 1, + anon_sym_PIPE, + ACTIONS(5472), 1, + anon_sym_SLASH, + STATE(2606), 1, + sym__quoted_slash, + STATE(2607), 1, + sym__quoted_bar, + STATE(2608), 1, + sym__quoted_angle, + STATE(2609), 1, + sym__quoted_square, + STATE(2610), 1, + sym__quoted_curly, + STATE(2611), 1, + sym__quoted_parenthesis, + STATE(2612), 1, + sym__quoted_heredoc_double, + STATE(2613), 1, + sym__quoted_heredoc_single, + STATE(2614), 1, + sym__quoted_single, + STATE(2615), 1, + sym__quoted_double, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(1004), 1, - anon_sym_end, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3725), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, + [223990] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5474), 1, + anon_sym_LPAREN, + ACTIONS(5476), 1, + anon_sym_DQUOTE, + ACTIONS(5478), 1, + anon_sym_SQUOTE, + ACTIONS(5480), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5482), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5484), 1, + anon_sym_LBRACE, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_LT, + ACTIONS(5490), 1, + anon_sym_PIPE, + ACTIONS(5492), 1, + anon_sym_SLASH, + STATE(2616), 1, + sym__quoted_i_slash, + STATE(2617), 1, + sym__quoted_i_bar, + STATE(2618), 1, + sym__quoted_i_angle, + STATE(2619), 1, + sym__quoted_i_square, + STATE(2620), 1, + sym__quoted_i_curly, + STATE(2621), 1, + sym__quoted_i_parenthesis, + STATE(2622), 1, + sym__quoted_i_heredoc_double, + STATE(2623), 1, + sym__quoted_i_heredoc_single, + STATE(2624), 1, + sym__quoted_i_single, + STATE(2625), 1, + sym__quoted_i_double, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(3666), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [185745] = 13, + aux_sym__terminator_token1, + [224059] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5494), 1, + anon_sym_LPAREN, + ACTIONS(5496), 1, + anon_sym_DQUOTE, + ACTIONS(5498), 1, + anon_sym_SQUOTE, + ACTIONS(5500), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5502), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5504), 1, + anon_sym_LBRACE, + ACTIONS(5506), 1, + anon_sym_LBRACK, + ACTIONS(5508), 1, + anon_sym_LT, + ACTIONS(5510), 1, + anon_sym_PIPE, + ACTIONS(5512), 1, + anon_sym_SLASH, + STATE(3256), 1, + sym__quoted_slash, + STATE(3364), 1, + sym__quoted_heredoc_double, + STATE(3365), 1, + sym__quoted_bar, + STATE(3366), 1, + sym__quoted_angle, + STATE(3367), 1, + sym__quoted_square, + STATE(3368), 1, + sym__quoted_curly, + STATE(3369), 1, + sym__quoted_parenthesis, + STATE(3403), 1, + sym__quoted_double, + STATE(3460), 1, + sym__quoted_heredoc_single, + STATE(3461), 1, + sym__quoted_single, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [224128] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5514), 1, + anon_sym_LPAREN, + ACTIONS(5516), 1, + anon_sym_DQUOTE, + ACTIONS(5518), 1, + anon_sym_SQUOTE, + ACTIONS(5520), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5522), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5524), 1, + anon_sym_LBRACE, + ACTIONS(5526), 1, + anon_sym_LBRACK, + ACTIONS(5528), 1, + anon_sym_LT, + ACTIONS(5530), 1, + anon_sym_PIPE, + ACTIONS(5532), 1, + anon_sym_SLASH, + STATE(3907), 1, + sym__quoted_i_double, + STATE(3908), 1, + sym__quoted_i_single, + STATE(3909), 1, + sym__quoted_i_heredoc_single, + STATE(3911), 1, + sym__quoted_i_heredoc_double, + STATE(3916), 1, + sym__quoted_i_parenthesis, + STATE(3917), 1, + sym__quoted_i_curly, + STATE(3919), 1, + sym__quoted_i_square, + STATE(3920), 1, + sym__quoted_i_angle, + STATE(3921), 1, + sym__quoted_i_bar, + STATE(3922), 1, + sym__quoted_i_slash, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [224197] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5534), 1, + anon_sym_LPAREN, + ACTIONS(5536), 1, + anon_sym_DQUOTE, + ACTIONS(5538), 1, + anon_sym_SQUOTE, + ACTIONS(5540), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5542), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5544), 1, + anon_sym_LBRACE, + ACTIONS(5546), 1, + anon_sym_LBRACK, + ACTIONS(5548), 1, + anon_sym_LT, + ACTIONS(5550), 1, + anon_sym_PIPE, + ACTIONS(5552), 1, + anon_sym_SLASH, + STATE(3924), 1, + sym__quoted_double, + STATE(3925), 1, + sym__quoted_single, + STATE(3927), 1, + sym__quoted_heredoc_single, + STATE(3928), 1, + sym__quoted_heredoc_double, + STATE(3929), 1, + sym__quoted_parenthesis, + STATE(3930), 1, + sym__quoted_curly, + STATE(3932), 1, + sym__quoted_square, + STATE(3936), 1, + sym__quoted_bar, + STATE(3958), 1, + sym__quoted_slash, + STATE(3977), 1, + sym__quoted_angle, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [224266] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5554), 1, + anon_sym_LPAREN, + ACTIONS(5556), 1, + anon_sym_DQUOTE, + ACTIONS(5558), 1, + anon_sym_SQUOTE, + ACTIONS(5560), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5562), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5564), 1, + anon_sym_LBRACE, + ACTIONS(5566), 1, + anon_sym_LBRACK, + ACTIONS(5568), 1, + anon_sym_LT, + ACTIONS(5570), 1, + anon_sym_PIPE, + ACTIONS(5572), 1, + anon_sym_SLASH, + STATE(3503), 1, + sym__quoted_i_slash, + STATE(3504), 1, + sym__quoted_i_bar, + STATE(3537), 1, + sym__quoted_i_angle, + STATE(3652), 1, + sym__quoted_i_double, + STATE(3653), 1, + sym__quoted_i_single, + STATE(3654), 1, + sym__quoted_i_heredoc_single, + STATE(3655), 1, + sym__quoted_i_heredoc_double, + STATE(3656), 1, + sym__quoted_i_parenthesis, + STATE(3657), 1, + sym__quoted_i_curly, + STATE(3658), 1, + sym__quoted_i_square, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [224335] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5574), 1, + anon_sym_LPAREN, + ACTIONS(5576), 1, + anon_sym_DQUOTE, + ACTIONS(5578), 1, + anon_sym_SQUOTE, + ACTIONS(5580), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5582), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5584), 1, + anon_sym_LBRACE, + ACTIONS(5586), 1, + anon_sym_LBRACK, + ACTIONS(5588), 1, + anon_sym_LT, + ACTIONS(5590), 1, + anon_sym_PIPE, + ACTIONS(5592), 1, + anon_sym_SLASH, + STATE(2496), 1, + sym__quoted_i_slash, + STATE(2497), 1, + sym__quoted_i_bar, + STATE(2498), 1, + sym__quoted_i_angle, + STATE(2499), 1, + sym__quoted_i_square, + STATE(2500), 1, + sym__quoted_i_curly, + STATE(2501), 1, + sym__quoted_i_parenthesis, + STATE(2502), 1, + sym__quoted_i_heredoc_double, + STATE(2503), 1, + sym__quoted_i_heredoc_single, + STATE(2504), 1, + sym__quoted_i_single, + STATE(2505), 1, + sym__quoted_i_double, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [224404] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5594), 1, + anon_sym_LPAREN, + ACTIONS(5596), 1, + anon_sym_DQUOTE, + ACTIONS(5598), 1, + anon_sym_SQUOTE, + ACTIONS(5600), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5602), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5604), 1, + anon_sym_LBRACE, + ACTIONS(5606), 1, + anon_sym_LBRACK, + ACTIONS(5608), 1, + anon_sym_LT, + ACTIONS(5610), 1, + anon_sym_PIPE, + ACTIONS(5612), 1, + anon_sym_SLASH, + STATE(2410), 1, + sym__quoted_slash, + STATE(2411), 1, + sym__quoted_bar, + STATE(2412), 1, + sym__quoted_angle, + STATE(2413), 1, + sym__quoted_square, + STATE(2414), 1, + sym__quoted_curly, + STATE(2415), 1, + sym__quoted_parenthesis, + STATE(2416), 1, + sym__quoted_heredoc_double, + STATE(2417), 1, + sym__quoted_heredoc_single, + STATE(2418), 1, + sym__quoted_single, + STATE(2419), 1, + sym__quoted_double, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [224473] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5614), 1, + anon_sym_LPAREN, + ACTIONS(5616), 1, + anon_sym_DQUOTE, + ACTIONS(5618), 1, + anon_sym_SQUOTE, + ACTIONS(5620), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5622), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5624), 1, + anon_sym_LBRACE, + ACTIONS(5626), 1, + anon_sym_LBRACK, + ACTIONS(5628), 1, + anon_sym_LT, + ACTIONS(5630), 1, + anon_sym_PIPE, + ACTIONS(5632), 1, + anon_sym_SLASH, + STATE(3614), 1, + sym__quoted_i_slash, + STATE(3622), 1, + sym__quoted_i_bar, + STATE(3623), 1, + sym__quoted_i_angle, + STATE(3624), 1, + sym__quoted_i_square, + STATE(3629), 1, + sym__quoted_i_curly, + STATE(3637), 1, + sym__quoted_i_parenthesis, + STATE(3638), 1, + sym__quoted_i_heredoc_double, + STATE(3639), 1, + sym__quoted_i_heredoc_single, + STATE(3640), 1, + sym__quoted_i_single, + STATE(3641), 1, + sym__quoted_i_double, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [224542] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5634), 1, + anon_sym_LPAREN, + ACTIONS(5636), 1, + anon_sym_DQUOTE, + ACTIONS(5638), 1, + anon_sym_SQUOTE, + ACTIONS(5640), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5642), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5644), 1, + anon_sym_LBRACE, + ACTIONS(5646), 1, + anon_sym_LBRACK, + ACTIONS(5648), 1, + anon_sym_LT, + ACTIONS(5650), 1, + anon_sym_PIPE, + ACTIONS(5652), 1, + anon_sym_SLASH, + STATE(3404), 1, + sym__quoted_parenthesis, + STATE(3407), 1, + sym__quoted_slash, + STATE(3408), 1, + sym__quoted_bar, + STATE(3409), 1, + sym__quoted_angle, + STATE(3410), 1, + sym__quoted_square, + STATE(3411), 1, + sym__quoted_curly, + STATE(3413), 1, + sym__quoted_heredoc_double, + STATE(3414), 1, + sym__quoted_heredoc_single, + STATE(3415), 1, + sym__quoted_single, + STATE(3416), 1, + sym__quoted_double, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [224611] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5654), 1, + anon_sym_LPAREN, + ACTIONS(5656), 1, + anon_sym_DQUOTE, + ACTIONS(5658), 1, + anon_sym_SQUOTE, + ACTIONS(5660), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5662), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5664), 1, + anon_sym_LBRACE, + ACTIONS(5666), 1, + anon_sym_LBRACK, + ACTIONS(5668), 1, + anon_sym_LT, + ACTIONS(5670), 1, + anon_sym_PIPE, + ACTIONS(5672), 1, + anon_sym_SLASH, + STATE(3417), 1, + sym__quoted_i_slash, + STATE(3418), 1, + sym__quoted_i_bar, + STATE(3419), 1, + sym__quoted_i_angle, + STATE(3420), 1, + sym__quoted_i_square, + STATE(3421), 1, + sym__quoted_i_curly, + STATE(3422), 1, + sym__quoted_i_parenthesis, + STATE(3423), 1, + sym__quoted_i_heredoc_double, + STATE(3424), 1, + sym__quoted_i_heredoc_single, + STATE(3425), 1, + sym__quoted_i_single, + STATE(3426), 1, + sym__quoted_i_double, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [224680] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5674), 1, + anon_sym_LPAREN, + ACTIONS(5676), 1, + anon_sym_DQUOTE, + ACTIONS(5678), 1, + anon_sym_SQUOTE, + ACTIONS(5680), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5682), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5684), 1, + anon_sym_LBRACE, + ACTIONS(5686), 1, + anon_sym_LBRACK, + ACTIONS(5688), 1, + anon_sym_LT, + ACTIONS(5690), 1, + anon_sym_PIPE, + ACTIONS(5692), 1, + anon_sym_SLASH, + STATE(3595), 1, + sym__quoted_i_slash, + STATE(3596), 1, + sym__quoted_i_bar, + STATE(3597), 1, + sym__quoted_i_angle, + STATE(3598), 1, + sym__quoted_i_square, + STATE(3599), 1, + sym__quoted_i_curly, + STATE(3600), 1, + sym__quoted_i_parenthesis, + STATE(3601), 1, + sym__quoted_i_heredoc_double, + STATE(3602), 1, + sym__quoted_i_heredoc_single, + STATE(3603), 1, + sym__quoted_i_single, + STATE(3604), 1, + sym__quoted_i_double, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [224749] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5694), 1, + anon_sym_LPAREN, + ACTIONS(5696), 1, + anon_sym_DQUOTE, + ACTIONS(5698), 1, + anon_sym_SQUOTE, + ACTIONS(5700), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5702), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5704), 1, + anon_sym_LBRACE, + ACTIONS(5706), 1, + anon_sym_LBRACK, + ACTIONS(5708), 1, + anon_sym_LT, + ACTIONS(5710), 1, + anon_sym_PIPE, + ACTIONS(5712), 1, + anon_sym_SLASH, + STATE(3539), 1, + sym__quoted_slash, + STATE(3544), 1, + sym__quoted_bar, + STATE(3552), 1, + sym__quoted_angle, + STATE(3565), 1, + sym__quoted_square, + STATE(3566), 1, + sym__quoted_curly, + STATE(3567), 1, + sym__quoted_parenthesis, + STATE(3568), 1, + sym__quoted_heredoc_double, + STATE(3609), 1, + sym__quoted_heredoc_single, + STATE(3612), 1, + sym__quoted_single, + STATE(3613), 1, + sym__quoted_double, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [224818] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5714), 1, + anon_sym_LPAREN, + ACTIONS(5716), 1, + anon_sym_DQUOTE, + ACTIONS(5718), 1, + anon_sym_SQUOTE, + ACTIONS(5720), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5722), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5724), 1, + anon_sym_LBRACE, + ACTIONS(5726), 1, + anon_sym_LBRACK, + ACTIONS(5728), 1, + anon_sym_LT, + ACTIONS(5730), 1, + anon_sym_PIPE, + ACTIONS(5732), 1, + anon_sym_SLASH, + STATE(1534), 1, + sym__quoted_i_parenthesis, + STATE(1590), 1, + sym__quoted_i_heredoc_double, + STATE(1698), 1, + sym__quoted_i_slash, + STATE(1701), 1, + sym__quoted_i_bar, + STATE(1704), 1, + sym__quoted_i_angle, + STATE(1706), 1, + sym__quoted_i_square, + STATE(1711), 1, + sym__quoted_i_curly, + STATE(1715), 1, + sym__quoted_i_double, + STATE(1716), 1, + sym__quoted_i_single, + STATE(1717), 1, + sym__quoted_i_heredoc_single, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [224887] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5734), 1, + anon_sym_LPAREN, + ACTIONS(5736), 1, + anon_sym_DQUOTE, + ACTIONS(5738), 1, + anon_sym_SQUOTE, + ACTIONS(5740), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5742), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5744), 1, + anon_sym_LBRACE, + ACTIONS(5746), 1, + anon_sym_LBRACK, + ACTIONS(5748), 1, + anon_sym_LT, + ACTIONS(5750), 1, + anon_sym_PIPE, + ACTIONS(5752), 1, + anon_sym_SLASH, + STATE(1298), 1, + sym__quoted_double, + STATE(1302), 1, + sym__quoted_single, + STATE(1303), 1, + sym__quoted_heredoc_single, + STATE(1305), 1, + sym__quoted_heredoc_double, + STATE(1307), 1, + sym__quoted_parenthesis, + STATE(1308), 1, + sym__quoted_curly, + STATE(1309), 1, + sym__quoted_square, + STATE(1312), 1, + sym__quoted_angle, + STATE(1314), 1, + sym__quoted_bar, + STATE(1315), 1, + sym__quoted_slash, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [224956] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5754), 1, + anon_sym_LPAREN, + ACTIONS(5756), 1, + anon_sym_DQUOTE, + ACTIONS(5758), 1, + anon_sym_SQUOTE, + ACTIONS(5760), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5762), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5764), 1, + anon_sym_LBRACE, + ACTIONS(5766), 1, + anon_sym_LBRACK, + ACTIONS(5768), 1, + anon_sym_LT, + ACTIONS(5770), 1, + anon_sym_PIPE, + ACTIONS(5772), 1, + anon_sym_SLASH, + STATE(1345), 1, + sym__quoted_i_parenthesis, + STATE(1457), 1, + sym__quoted_i_double, + STATE(1458), 1, + sym__quoted_i_single, + STATE(1461), 1, + sym__quoted_i_heredoc_single, + STATE(1464), 1, + sym__quoted_i_heredoc_double, + STATE(1465), 1, + sym__quoted_i_curly, + STATE(1469), 1, + sym__quoted_i_square, + STATE(1479), 1, + sym__quoted_i_angle, + STATE(1491), 1, + sym__quoted_i_bar, + STATE(1497), 1, + sym__quoted_i_slash, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [225025] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5774), 1, + anon_sym_LPAREN, + ACTIONS(5776), 1, + anon_sym_DQUOTE, + ACTIONS(5778), 1, + anon_sym_SQUOTE, + ACTIONS(5780), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5782), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5784), 1, + anon_sym_LBRACE, + ACTIONS(5786), 1, + anon_sym_LBRACK, + ACTIONS(5788), 1, + anon_sym_LT, + ACTIONS(5790), 1, + anon_sym_PIPE, + ACTIONS(5792), 1, + anon_sym_SLASH, + STATE(1868), 1, + sym__quoted_double, + STATE(1869), 1, + sym__quoted_single, + STATE(1875), 1, + sym__quoted_heredoc_single, + STATE(1917), 1, + sym__quoted_heredoc_double, + STATE(1936), 1, + sym__quoted_parenthesis, + STATE(1937), 1, + sym__quoted_curly, + STATE(1947), 1, + sym__quoted_square, + STATE(1951), 1, + sym__quoted_angle, + STATE(1953), 1, + sym__quoted_bar, + STATE(1957), 1, + sym__quoted_slash, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [225094] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5794), 1, + anon_sym_LPAREN, + ACTIONS(5796), 1, + anon_sym_DQUOTE, + ACTIONS(5798), 1, + anon_sym_SQUOTE, + ACTIONS(5800), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5802), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5804), 1, + anon_sym_LBRACE, + ACTIONS(5806), 1, + anon_sym_LBRACK, + ACTIONS(5808), 1, + anon_sym_LT, + ACTIONS(5810), 1, + anon_sym_PIPE, + ACTIONS(5812), 1, + anon_sym_SLASH, + STATE(1322), 1, + sym__quoted_double, + STATE(1504), 1, + sym__quoted_single, + STATE(1505), 1, + sym__quoted_heredoc_single, + STATE(1507), 1, + sym__quoted_slash, + STATE(1510), 1, + sym__quoted_heredoc_double, + STATE(1511), 1, + sym__quoted_parenthesis, + STATE(1512), 1, + sym__quoted_bar, + STATE(1515), 1, + sym__quoted_angle, + STATE(1516), 1, + sym__quoted_square, + STATE(1517), 1, + sym__quoted_curly, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [225163] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5814), 1, + anon_sym_LPAREN, + ACTIONS(5816), 1, + anon_sym_DQUOTE, + ACTIONS(5818), 1, + anon_sym_SQUOTE, + ACTIONS(5820), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5822), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5824), 1, + anon_sym_LBRACE, + ACTIONS(5826), 1, + anon_sym_LBRACK, + ACTIONS(5828), 1, + anon_sym_LT, + ACTIONS(5830), 1, + anon_sym_PIPE, + ACTIONS(5832), 1, + anon_sym_SLASH, + STATE(1683), 1, + sym__quoted_slash, + STATE(1685), 1, + sym__quoted_bar, + STATE(1686), 1, + sym__quoted_angle, + STATE(1687), 1, + sym__quoted_square, + STATE(1688), 1, + sym__quoted_curly, + STATE(1690), 1, + sym__quoted_parenthesis, + STATE(1691), 1, + sym__quoted_heredoc_double, + STATE(1693), 1, + sym__quoted_heredoc_single, + STATE(1694), 1, + sym__quoted_single, + STATE(1695), 1, + sym__quoted_double, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [225232] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5834), 1, + anon_sym_LPAREN, + ACTIONS(5836), 1, + anon_sym_DQUOTE, + ACTIONS(5838), 1, + anon_sym_SQUOTE, + ACTIONS(5840), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5842), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5844), 1, + anon_sym_LBRACE, + ACTIONS(5846), 1, + anon_sym_LBRACK, + ACTIONS(5848), 1, + anon_sym_LT, + ACTIONS(5850), 1, + anon_sym_PIPE, + ACTIONS(5852), 1, + anon_sym_SLASH, + STATE(2931), 1, + sym__quoted_square, + STATE(3164), 1, + sym__quoted_double, + STATE(3168), 1, + sym__quoted_single, + STATE(3169), 1, + sym__quoted_heredoc_single, + STATE(3176), 1, + sym__quoted_heredoc_double, + STATE(3183), 1, + sym__quoted_parenthesis, + STATE(3184), 1, + sym__quoted_curly, + STATE(3189), 1, + sym__quoted_slash, + STATE(3190), 1, + sym__quoted_bar, + STATE(3195), 1, + sym__quoted_angle, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [225301] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5854), 1, + anon_sym_LPAREN, + ACTIONS(5856), 1, + anon_sym_DQUOTE, + ACTIONS(5858), 1, + anon_sym_SQUOTE, + ACTIONS(5860), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5862), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5864), 1, + anon_sym_LBRACE, + ACTIONS(5866), 1, + anon_sym_LBRACK, + ACTIONS(5868), 1, + anon_sym_LT, + ACTIONS(5870), 1, + anon_sym_PIPE, + ACTIONS(5872), 1, + anon_sym_SLASH, + STATE(3141), 1, + sym__quoted_i_double, + STATE(3142), 1, + sym__quoted_i_single, + STATE(3143), 1, + sym__quoted_i_heredoc_single, + STATE(3144), 1, + sym__quoted_i_heredoc_double, + STATE(3145), 1, + sym__quoted_i_parenthesis, + STATE(3146), 1, + sym__quoted_i_curly, + STATE(3147), 1, + sym__quoted_i_square, + STATE(3153), 1, + sym__quoted_i_angle, + STATE(3154), 1, + sym__quoted_i_bar, + STATE(3161), 1, + sym__quoted_i_slash, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [225370] = 13, ACTIONS(5), 1, sym_comment, ACTIONS(107), 1, @@ -323737,28 +361686,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(117), 1, anon_sym_rescue, - ACTIONS(1002), 1, + ACTIONS(1022), 1, anon_sym_end, ACTIONS(2875), 1, aux_sym__terminator_token1, - ACTIONS(2928), 1, + ACTIONS(5874), 1, anon_sym_SEMI, - STATE(151), 1, + STATE(155), 1, sym__terminator, - STATE(1020), 1, + STATE(1021), 1, aux_sym__terminator_repeat1, - STATE(3728), 1, + STATE(4355), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(3667), 5, + STATE(4301), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [185790] = 13, + [225415] = 13, ACTIONS(5), 1, sym_comment, ACTIONS(107), 1, @@ -323773,24 +361722,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_end, ACTIONS(698), 1, aux_sym__terminator_token1, - ACTIONS(5416), 1, + ACTIONS(5876), 1, anon_sym_SEMI, - STATE(136), 1, + STATE(132), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(3640), 1, + STATE(4213), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(3678), 5, + STATE(4299), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [185835] = 13, + [225460] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(339), 1, + anon_sym_end, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4240), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4290), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [225505] = 13, ACTIONS(5), 1, sym_comment, ACTIONS(107), 1, @@ -323803,58 +361784,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rescue, ACTIONS(698), 1, aux_sym__terminator_token1, - ACTIONS(1000), 1, + ACTIONS(1004), 1, anon_sym_end, - ACTIONS(5416), 1, + ACTIONS(5876), 1, anon_sym_SEMI, - STATE(136), 1, + STATE(132), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(3655), 1, + STATE(4348), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(3672), 5, + STATE(4323), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [185880] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(1042), 1, - anon_sym_end, - ACTIONS(2875), 1, - aux_sym__terminator_token1, - ACTIONS(2877), 1, - anon_sym_SEMI, - STATE(166), 1, - sym__terminator, - STATE(1020), 1, - aux_sym__terminator_repeat1, - STATE(3728), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3679), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [185925] = 13, + [225550] = 13, ACTIONS(5), 1, sym_comment, ACTIONS(107), 1, @@ -323867,442 +361816,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rescue, ACTIONS(698), 1, aux_sym__terminator_token1, - ACTIONS(1050), 1, + ACTIONS(1018), 1, anon_sym_end, - ACTIONS(5416), 1, + ACTIONS(5876), 1, anon_sym_SEMI, - STATE(136), 1, + STATE(132), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(3725), 1, + STATE(4348), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(3697), 5, + STATE(4330), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [185970] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(1000), 1, - anon_sym_end, - ACTIONS(2875), 1, - aux_sym__terminator_token1, - ACTIONS(2950), 1, - anon_sym_SEMI, - STATE(142), 1, - sym__terminator, - STATE(1020), 1, - aux_sym__terminator_repeat1, - STATE(3728), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3672), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [186015] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1000), 1, - anon_sym_end, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3725), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3672), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [186060] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(1050), 1, - anon_sym_end, - ACTIONS(2875), 1, - aux_sym__terminator_token1, - ACTIONS(2962), 1, - anon_sym_SEMI, - STATE(169), 1, - sym__terminator, - STATE(1020), 1, - aux_sym__terminator_repeat1, - STATE(3728), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3697), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [186105] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1042), 1, - anon_sym_end, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3725), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3679), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [186150] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1050), 1, - anon_sym_end, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3635), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3697), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [186195] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(1034), 1, - anon_sym_end, - ACTIONS(2875), 1, - aux_sym__terminator_token1, - ACTIONS(5438), 1, - anon_sym_SEMI, - STATE(155), 1, - sym__terminator, - STATE(1020), 1, - aux_sym__terminator_repeat1, - STATE(3728), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3681), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [186240] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(986), 1, - anon_sym_end, - ACTIONS(2875), 1, - aux_sym__terminator_token1, - ACTIONS(5440), 1, - anon_sym_SEMI, - STATE(159), 1, - sym__terminator, - STATE(1020), 1, - aux_sym__terminator_repeat1, - STATE(3728), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3673), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [186285] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1002), 1, - anon_sym_end, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3641), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3667), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [186330] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(986), 1, - anon_sym_end, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3725), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3673), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [186375] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(315), 1, - anon_sym_end, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3631), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3717), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [186420] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(319), 1, - anon_sym_end, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3650), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3677), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [186465] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(976), 1, - anon_sym_end, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3725), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3700), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [186510] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(347), 1, - anon_sym_end, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3614), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(3684), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [186555] = 13, + [225595] = 13, ACTIONS(5), 1, sym_comment, ACTIONS(107), 1, @@ -324317,74 +361850,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_end, ACTIONS(698), 1, aux_sym__terminator_token1, - ACTIONS(5416), 1, + ACTIONS(5876), 1, anon_sym_SEMI, - STATE(136), 1, + STATE(132), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(3646), 1, + STATE(4206), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(3670), 5, + STATE(4302), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [186600] = 9, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1093), 1, - sym_keyword, - ACTIONS(5444), 1, - anon_sym_DQUOTE, - ACTIONS(5446), 1, - anon_sym_SQUOTE, - STATE(3801), 1, - sym_pair, - STATE(896), 2, - sym__keyword, - sym_quoted_keyword, - STATE(5030), 2, - sym__quoted_i_double, - sym__quoted_i_single, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(5442), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - [186634] = 9, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1093), 1, - sym_keyword, - ACTIONS(5444), 1, - anon_sym_DQUOTE, - ACTIONS(5446), 1, - anon_sym_SQUOTE, - STATE(3801), 1, - sym_pair, - STATE(896), 2, - sym__keyword, - sym_quoted_keyword, - STATE(5030), 2, - sym__quoted_i_double, - sym__quoted_i_single, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(5448), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - [186668] = 8, + [225640] = 13, ACTIONS(5), 1, sym_comment, ACTIONS(107), 1, @@ -324395,19 +361878,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(117), 1, anon_sym_rescue, - ACTIONS(5450), 1, + ACTIONS(1028), 1, anon_sym_end, - ACTIONS(3), 3, + ACTIONS(2875), 1, + aux_sym__terminator_token1, + ACTIONS(5878), 1, + anon_sym_SEMI, + STATE(140), 1, + sym__terminator, + STATE(1021), 1, + aux_sym__terminator_repeat1, + STATE(4355), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3708), 5, + STATE(4300), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [186699] = 8, + [225685] = 13, ACTIONS(5), 1, sym_comment, ACTIONS(107), 1, @@ -324418,19 +361910,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(117), 1, anon_sym_rescue, - ACTIONS(323), 1, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(988), 1, anon_sym_end, - ACTIONS(3), 3, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4212), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3708), 5, + STATE(4314), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [186730] = 8, + [225730] = 13, ACTIONS(5), 1, sym_comment, ACTIONS(107), 1, @@ -324441,19 +361942,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(117), 1, anon_sym_rescue, - ACTIONS(5452), 1, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1026), 1, anon_sym_end, - ACTIONS(3), 3, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4250), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3708), 5, + STATE(4286), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [186761] = 8, + [225775] = 13, ACTIONS(5), 1, sym_comment, ACTIONS(107), 1, @@ -324464,19 +361974,412 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(117), 1, anon_sym_rescue, - ACTIONS(984), 1, + ACTIONS(988), 1, anon_sym_end, - ACTIONS(3), 3, + ACTIONS(2875), 1, + aux_sym__terminator_token1, + ACTIONS(2934), 1, + anon_sym_SEMI, + STATE(144), 1, + sym__terminator, + STATE(1021), 1, + aux_sym__terminator_repeat1, + STATE(4355), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3708), 5, + STATE(4314), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [186792] = 8, + [225820] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(988), 1, + anon_sym_end, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4348), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4314), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [225865] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(351), 1, + anon_sym_end, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4233), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4295), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [225910] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1052), 1, + anon_sym_end, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4348), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4324), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [225955] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1018), 1, + anon_sym_end, + ACTIONS(2875), 1, + aux_sym__terminator_token1, + ACTIONS(5880), 1, + anon_sym_SEMI, + STATE(141), 1, + sym__terminator, + STATE(1021), 1, + aux_sym__terminator_repeat1, + STATE(4355), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4330), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [226000] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(990), 1, + anon_sym_end, + ACTIONS(2875), 1, + aux_sym__terminator_token1, + ACTIONS(5882), 1, + anon_sym_SEMI, + STATE(148), 1, + sym__terminator, + STATE(1021), 1, + aux_sym__terminator_repeat1, + STATE(4355), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4311), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [226045] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1040), 1, + anon_sym_end, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4348), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4316), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [226090] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(990), 1, + anon_sym_end, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4348), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4311), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [226135] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1016), 1, + anon_sym_end, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4348), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4321), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [226180] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1032), 1, + anon_sym_end, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4348), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4312), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [226225] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1016), 1, + anon_sym_end, + ACTIONS(2875), 1, + aux_sym__terminator_token1, + ACTIONS(2944), 1, + anon_sym_SEMI, + STATE(158), 1, + sym__terminator, + STATE(1021), 1, + aux_sym__terminator_repeat1, + STATE(4355), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4321), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [226270] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(994), 1, + anon_sym_end, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4348), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4307), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [226315] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1040), 1, + anon_sym_end, + ACTIONS(2875), 1, + aux_sym__terminator_token1, + ACTIONS(5884), 1, + anon_sym_SEMI, + STATE(168), 1, + sym__terminator, + STATE(1021), 1, + aux_sym__terminator_repeat1, + STATE(4355), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4316), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [226360] = 13, ACTIONS(5), 1, sym_comment, ACTIONS(107), 1, @@ -324489,17 +362392,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rescue, ACTIONS(1004), 1, anon_sym_end, - ACTIONS(3), 3, + ACTIONS(2875), 1, + aux_sym__terminator_token1, + ACTIONS(5886), 1, + anon_sym_SEMI, + STATE(153), 1, + sym__terminator, + STATE(1021), 1, + aux_sym__terminator_repeat1, + STATE(4355), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3708), 5, + STATE(4323), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [186823] = 8, + [226405] = 13, ACTIONS(5), 1, sym_comment, ACTIONS(107), 1, @@ -324510,19 +362422,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(117), 1, anon_sym_rescue, - ACTIONS(5454), 1, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1048), 1, anon_sym_end, - ACTIONS(3), 3, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4348), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3708), 5, + STATE(4294), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [186854] = 8, + [226450] = 13, ACTIONS(5), 1, sym_comment, ACTIONS(107), 1, @@ -324533,19 +362454,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(117), 1, anon_sym_rescue, - ACTIONS(1000), 1, + ACTIONS(994), 1, anon_sym_end, - ACTIONS(3), 3, + ACTIONS(2875), 1, + aux_sym__terminator_token1, + ACTIONS(5888), 1, + anon_sym_SEMI, + STATE(149), 1, + sym__terminator, + STATE(1021), 1, + aux_sym__terminator_repeat1, + STATE(4355), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3708), 5, + STATE(4307), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [186885] = 8, + [226495] = 13, ACTIONS(5), 1, sym_comment, ACTIONS(107), 1, @@ -324556,19 +362486,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(117), 1, anon_sym_rescue, - ACTIONS(1050), 1, + ACTIONS(1048), 1, anon_sym_end, - ACTIONS(3), 3, + ACTIONS(2875), 1, + aux_sym__terminator_token1, + ACTIONS(5890), 1, + anon_sym_SEMI, + STATE(174), 1, + sym__terminator, + STATE(1021), 1, + aux_sym__terminator_repeat1, + STATE(4355), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3708), 5, + STATE(4294), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [186916] = 8, + [226540] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1052), 1, + anon_sym_end, + ACTIONS(2875), 1, + aux_sym__terminator_token1, + ACTIONS(2966), 1, + anon_sym_SEMI, + STATE(173), 1, + sym__terminator, + STATE(1021), 1, + aux_sym__terminator_repeat1, + STATE(4355), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4324), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [226585] = 13, ACTIONS(5), 1, sym_comment, ACTIONS(107), 1, @@ -324581,17 +362552,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rescue, ACTIONS(311), 1, anon_sym_end, - ACTIONS(3), 3, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4258), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3708), 5, + STATE(4281), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [186947] = 8, + [226630] = 13, ACTIONS(5), 1, sym_comment, ACTIONS(107), 1, @@ -324602,19 +362582,1525 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(117), 1, anon_sym_rescue, - ACTIONS(986), 1, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1024), 1, anon_sym_end, - ACTIONS(3), 3, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4348), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3708), 5, + STATE(4280), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [186978] = 8, + [226675] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1024), 1, + anon_sym_end, + ACTIONS(2875), 1, + aux_sym__terminator_token1, + ACTIONS(2877), 1, + anon_sym_SEMI, + STATE(163), 1, + sym__terminator, + STATE(1021), 1, + aux_sym__terminator_repeat1, + STATE(4355), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4280), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [226720] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1032), 1, + anon_sym_end, + ACTIONS(2875), 1, + aux_sym__terminator_token1, + ACTIONS(5892), 1, + anon_sym_SEMI, + STATE(166), 1, + sym__terminator, + STATE(1021), 1, + aux_sym__terminator_repeat1, + STATE(4355), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4312), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [226765] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1026), 1, + anon_sym_end, + ACTIONS(2875), 1, + aux_sym__terminator_token1, + ACTIONS(2928), 1, + anon_sym_SEMI, + STATE(160), 1, + sym__terminator, + STATE(1021), 1, + aux_sym__terminator_repeat1, + STATE(4355), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4286), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [226810] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1026), 1, + anon_sym_end, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4348), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4286), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [226855] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(992), 1, + anon_sym_end, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4348), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4306), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [226900] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(992), 1, + anon_sym_end, + ACTIONS(2875), 1, + aux_sym__terminator_token1, + ACTIONS(2956), 1, + anon_sym_SEMI, + STATE(146), 1, + sym__terminator, + STATE(1021), 1, + aux_sym__terminator_repeat1, + STATE(4355), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4306), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [226945] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1024), 1, + anon_sym_end, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4255), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4280), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [226990] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(992), 1, + anon_sym_end, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4216), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4306), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [227035] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1010), 1, + anon_sym_end, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4348), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4325), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [227080] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(996), 1, + anon_sym_end, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4348), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4315), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [227125] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1016), 1, + anon_sym_end, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4200), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4321), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [227170] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(331), 1, + anon_sym_end, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4229), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4328), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [227215] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(996), 1, + anon_sym_end, + ACTIONS(2875), 1, + aux_sym__terminator_token1, + ACTIONS(2948), 1, + anon_sym_SEMI, + STATE(151), 1, + sym__terminator, + STATE(1021), 1, + aux_sym__terminator_repeat1, + STATE(4355), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4315), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [227260] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1052), 1, + anon_sym_end, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4219), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4324), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [227305] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1010), 1, + anon_sym_end, + ACTIONS(2875), 1, + aux_sym__terminator_token1, + ACTIONS(2970), 1, + anon_sym_SEMI, + STATE(165), 1, + sym__terminator, + STATE(1021), 1, + aux_sym__terminator_repeat1, + STATE(4355), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4325), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [227350] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1044), 1, + anon_sym_end, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4348), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4309), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [227395] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1010), 1, + anon_sym_end, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4214), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4325), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [227440] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1044), 1, + anon_sym_end, + ACTIONS(2875), 1, + aux_sym__terminator_token1, + ACTIONS(2930), 1, + anon_sym_SEMI, + STATE(169), 1, + sym__terminator, + STATE(1021), 1, + aux_sym__terminator_repeat1, + STATE(4355), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4309), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [227485] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(996), 1, + anon_sym_end, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4199), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4315), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [227530] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(323), 1, + anon_sym_end, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4234), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4296), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [227575] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(319), 1, + anon_sym_end, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4251), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4271), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [227620] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1044), 1, + anon_sym_end, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4211), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4309), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [227665] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1030), 1, + anon_sym_end, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4264), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4275), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [227710] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(343), 1, + anon_sym_end, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4208), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4278), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [227755] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1030), 1, + anon_sym_end, + ACTIONS(2875), 1, + aux_sym__terminator_token1, + ACTIONS(2936), 1, + anon_sym_SEMI, + STATE(167), 1, + sym__terminator, + STATE(1021), 1, + aux_sym__terminator_repeat1, + STATE(4355), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4275), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [227800] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1022), 1, + anon_sym_end, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4348), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4301), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [227845] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1030), 1, + anon_sym_end, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4348), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4275), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [227890] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(355), 1, + anon_sym_end, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4261), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4279), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [227935] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(347), 1, + anon_sym_end, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4224), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4287), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [227980] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1046), 1, + anon_sym_end, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4265), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4274), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [228025] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1028), 1, + anon_sym_end, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4348), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4300), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [228070] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1006), 1, + anon_sym_end, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4266), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4317), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [228115] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1046), 1, + anon_sym_end, + ACTIONS(2875), 1, + aux_sym__terminator_token1, + ACTIONS(2950), 1, + anon_sym_SEMI, + STATE(156), 1, + sym__terminator, + STATE(1021), 1, + aux_sym__terminator_repeat1, + STATE(4355), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4274), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [228160] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1046), 1, + anon_sym_end, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4348), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4274), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [228205] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(315), 1, + anon_sym_end, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4228), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4319), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [228250] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1006), 1, + anon_sym_end, + ACTIONS(2875), 1, + aux_sym__terminator_token1, + ACTIONS(2968), 1, + anon_sym_SEMI, + STATE(150), 1, + sym__terminator, + STATE(1021), 1, + aux_sym__terminator_repeat1, + STATE(4355), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4317), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [228295] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1006), 1, + anon_sym_end, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4348), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4317), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [228340] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1036), 1, + anon_sym_end, + ACTIONS(2875), 1, + aux_sym__terminator_token1, + ACTIONS(5894), 1, + anon_sym_SEMI, + STATE(170), 1, + sym__terminator, + STATE(1021), 1, + aux_sym__terminator_repeat1, + STATE(4355), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4272), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [228385] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1014), 1, + anon_sym_end, + ACTIONS(2875), 1, + aux_sym__terminator_token1, + ACTIONS(5896), 1, + anon_sym_SEMI, + STATE(159), 1, + sym__terminator, + STATE(1021), 1, + aux_sym__terminator_repeat1, + STATE(4355), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4273), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [228430] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1036), 1, + anon_sym_end, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4348), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4272), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [228475] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1014), 1, + anon_sym_end, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4348), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4273), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [228520] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1002), 1, + anon_sym_end, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4348), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4282), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [228565] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1002), 1, + anon_sym_end, + ACTIONS(2875), 1, + aux_sym__terminator_token1, + ACTIONS(5898), 1, + anon_sym_SEMI, + STATE(142), 1, + sym__terminator, + STATE(1021), 1, + aux_sym__terminator_repeat1, + STATE(4355), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4282), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [228610] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1093), 1, + sym_keyword, + ACTIONS(5902), 1, + anon_sym_DQUOTE, + ACTIONS(5904), 1, + anon_sym_SQUOTE, + STATE(4405), 1, + sym_pair, + STATE(5559), 1, + sym__quoted_i_double, + STATE(5565), 1, + sym__quoted_i_single, + STATE(674), 2, + sym__keyword, + sym_quoted_keyword, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5900), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + [228646] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1093), 1, + sym_keyword, + ACTIONS(5902), 1, + anon_sym_DQUOTE, + ACTIONS(5904), 1, + anon_sym_SQUOTE, + STATE(4405), 1, + sym_pair, + STATE(5559), 1, + sym__quoted_i_double, + STATE(5565), 1, + sym__quoted_i_single, + STATE(674), 2, + sym__keyword, + sym_quoted_keyword, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5906), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + [228682] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(331), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(4304), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [228713] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1030), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(4304), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [228744] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1042), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(4304), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [228775] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(107), 1, @@ -324631,611 +364117,13 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(3708), 5, + STATE(4304), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [187009] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(5456), 1, - anon_sym_end, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3708), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [187040] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(319), 1, - anon_sym_end, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3708), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [187071] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(347), 1, - anon_sym_end, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3708), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [187102] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(1042), 1, - anon_sym_end, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3708), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [187133] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(1002), 1, - anon_sym_end, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3708), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [187164] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(1034), 1, - anon_sym_end, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3708), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [187195] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(1022), 1, - anon_sym_end, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3708), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [187226] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(1012), 1, - anon_sym_end, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3708), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [187257] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(335), 1, - anon_sym_end, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3708), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [187288] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(5458), 1, - anon_sym_end, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3708), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [187319] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(1044), 1, - anon_sym_end, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3708), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [187350] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(5460), 1, - anon_sym_end, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3708), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [187381] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(315), 1, - anon_sym_end, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3708), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [187412] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(327), 1, - anon_sym_end, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3708), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [187443] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(996), 1, - anon_sym_end, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3708), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [187474] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(351), 1, - anon_sym_end, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3708), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [187505] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(976), 1, - anon_sym_end, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3708), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [187536] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(1030), 1, - anon_sym_end, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3708), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [187567] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(988), 1, - anon_sym_end, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3708), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [187598] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(331), 1, - anon_sym_end, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3708), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [187629] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(998), 1, - anon_sym_end, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3708), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [187660] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(1032), 1, - anon_sym_end, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3708), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [187691] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(992), 1, - anon_sym_end, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3708), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [187722] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(1040), 1, - anon_sym_end, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3708), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [187753] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(1018), 1, - anon_sym_end, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3708), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [187784] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(1036), 1, - anon_sym_end, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3708), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [187815] = 8, + [228806] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(107), 1, @@ -325252,13 +364140,13 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(3708), 5, + STATE(4304), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [187846] = 8, + [228837] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(107), 1, @@ -325269,19 +364157,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(117), 1, anon_sym_rescue, - ACTIONS(1038), 1, + ACTIONS(1036), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(3708), 5, + STATE(4304), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [187877] = 8, + [228868] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(107), 1, @@ -325292,19 +364180,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(117), 1, anon_sym_rescue, - ACTIONS(1028), 1, + ACTIONS(347), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(3708), 5, + STATE(4304), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [187908] = 8, + [228899] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(107), 1, @@ -325315,318 +364203,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(117), 1, anon_sym_rescue, - ACTIONS(5462), 1, + ACTIONS(5908), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(3708), 5, + STATE(4304), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [187939] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(339), 1, - anon_sym_end, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3708), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [187970] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(994), 1, - anon_sym_end, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3708), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [188001] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(355), 1, - anon_sym_end, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3708), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [188032] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(5464), 1, - anon_sym_end, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3708), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [188063] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5466), 1, - anon_sym_after, - ACTIONS(5469), 1, - anon_sym_catch, - ACTIONS(5472), 1, - anon_sym_else, - ACTIONS(5475), 1, - anon_sym_end, - ACTIONS(5477), 1, - anon_sym_rescue, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3708), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [188094] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(1010), 1, - anon_sym_end, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3708), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [188125] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(990), 1, - anon_sym_end, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3708), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [188156] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(1026), 1, - anon_sym_end, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3708), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [188187] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(1046), 1, - anon_sym_end, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3708), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [188218] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(5480), 1, - anon_sym_end, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3708), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [188249] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(1006), 1, - anon_sym_end, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3708), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [188280] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(5482), 1, - anon_sym_end, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3708), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [188311] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_after, - ACTIONS(109), 1, - anon_sym_catch, - ACTIONS(111), 1, - anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(343), 1, - anon_sym_end, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - STATE(3708), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [188342] = 8, + [228930] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(107), 1, @@ -325643,13 +364232,13 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(3708), 5, + STATE(4304), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [188373] = 8, + [228961] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(107), 1, @@ -325660,19 +364249,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(117), 1, anon_sym_rescue, - ACTIONS(1008), 1, + ACTIONS(1006), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(3708), 5, + STATE(4304), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [188404] = 8, + [228992] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(107), 1, @@ -325683,19 +364272,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(117), 1, anon_sym_rescue, - ACTIONS(1016), 1, + ACTIONS(1028), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(3708), 5, + STATE(4304), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [188435] = 8, + [229023] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(107), 1, @@ -325706,19 +364295,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(117), 1, anon_sym_rescue, - ACTIONS(1048), 1, + ACTIONS(1046), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(3708), 5, + STATE(4304), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [188466] = 8, + [229054] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(986), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(4304), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [229085] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(355), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(4304), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [229116] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(5910), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(4304), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [229147] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(5912), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(4304), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [229178] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1022), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(4304), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [229209] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(107), 1, @@ -325735,13 +364439,13 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(3708), 5, + STATE(4304), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [188497] = 8, + [229240] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(107), 1, @@ -325752,19 +364456,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(117), 1, anon_sym_rescue, - ACTIONS(5484), 1, + ACTIONS(343), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(3708), 5, + STATE(4304), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [188528] = 8, + [229271] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(107), 1, @@ -325775,318 +364479,1149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(117), 1, anon_sym_rescue, - ACTIONS(5486), 1, + ACTIONS(339), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(3708), 5, + STATE(4304), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [188559] = 8, + [229302] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3740), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(1353), 5, + ACTIONS(107), 1, anon_sym_after, + ACTIONS(109), 1, anon_sym_catch, + ACTIONS(111), 1, anon_sym_else, - anon_sym_end, + ACTIONS(117), 1, anon_sym_rescue, - [188589] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5488), 1, - aux_sym__terminator_token1, - ACTIONS(5491), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3725), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5494), 5, - anon_sym_after, - anon_sym_catch, - anon_sym_else, + ACTIONS(1044), 1, anon_sym_end, - anon_sym_rescue, - [188619] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3749), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(682), 5, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [188649] = 9, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1151), 1, - sym_keyword, - ACTIONS(5442), 1, - anon_sym_GT_GT, - ACTIONS(5444), 1, - anon_sym_DQUOTE, - ACTIONS(5446), 1, - anon_sym_SQUOTE, - STATE(3801), 1, - sym_pair, - STATE(613), 2, - sym__keyword, - sym_quoted_keyword, - STATE(5030), 2, - sym__quoted_i_double, - sym__quoted_i_single, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [188681] = 8, + STATE(4304), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [229333] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(5496), 1, - aux_sym__terminator_token1, - ACTIONS(5499), 1, - anon_sym_SEMI, - STATE(797), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(3728), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3970), 5, + ACTIONS(107), 1, anon_sym_after, + ACTIONS(109), 1, anon_sym_catch, + ACTIONS(111), 1, anon_sym_else, - anon_sym_end, + ACTIONS(117), 1, anon_sym_rescue, - [188711] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3725), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(1375), 5, - anon_sym_after, - anon_sym_catch, - anon_sym_else, + ACTIONS(319), 1, anon_sym_end, - anon_sym_rescue, - [188741] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3753), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(692), 5, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [188771] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5502), 1, - aux_sym__terminator_token1, - ACTIONS(5505), 1, - anon_sym_SEMI, - STATE(262), 1, - sym__terminator, - STATE(1022), 1, - aux_sym__terminator_repeat1, - STATE(3754), 1, - aux_sym_source_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(1323), 5, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [188801] = 9, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1151), 1, - sym_keyword, - ACTIONS(5444), 1, - anon_sym_DQUOTE, - ACTIONS(5446), 1, - anon_sym_SQUOTE, - ACTIONS(5448), 1, - anon_sym_GT_GT, - STATE(3801), 1, - sym_pair, - STATE(613), 2, - sym__keyword, - sym_quoted_keyword, - STATE(5030), 2, - sym__quoted_i_double, - sym__quoted_i_single, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [188833] = 8, + STATE(4304), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [229364] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(3564), 1, - aux_sym__terminator_token1, - ACTIONS(3567), 1, - anon_sym_SEMI, - STATE(259), 1, - sym__terminator, - STATE(1022), 1, - aux_sym__terminator_repeat1, - STATE(3754), 1, - aux_sym_source_repeat1, - ACTIONS(3), 2, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(323), 1, + anon_sym_end, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(1329), 5, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [188863] = 8, + aux_sym__terminator_token1, + STATE(4304), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [229395] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(2875), 1, - aux_sym__terminator_token1, - ACTIONS(2992), 1, - anon_sym_SEMI, - STATE(333), 1, - sym__terminator, - STATE(1020), 1, - aux_sym__terminator_repeat1, - STATE(3728), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(5914), 1, + anon_sym_end, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(1375), 5, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [188893] = 8, + aux_sym__terminator_token1, + STATE(4304), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [229426] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(2875), 1, - aux_sym__terminator_token1, - ACTIONS(3094), 1, - anon_sym_SEMI, - STATE(311), 1, - sym__terminator, - STATE(1020), 1, - aux_sym__terminator_repeat1, - STATE(3728), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1050), 1, + anon_sym_end, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(1353), 5, + aux_sym__terminator_token1, + STATE(4304), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [229457] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, anon_sym_after, + ACTIONS(109), 1, anon_sym_catch, + ACTIONS(111), 1, anon_sym_else, - anon_sym_end, + ACTIONS(117), 1, anon_sym_rescue, - [188923] = 8, + ACTIONS(1010), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(4304), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [229488] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(996), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(4304), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [229519] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(335), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(4304), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [229550] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(5916), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(4304), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [229581] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1016), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(4304), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [229612] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(976), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(4304), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [229643] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1012), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(4304), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [229674] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(988), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(4304), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [229705] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(311), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(4304), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [229736] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5918), 1, + anon_sym_after, + ACTIONS(5921), 1, + anon_sym_catch, + ACTIONS(5924), 1, + anon_sym_else, + ACTIONS(5927), 1, + anon_sym_end, + ACTIONS(5929), 1, + anon_sym_rescue, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(4304), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [229767] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(5932), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(4304), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [229798] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(994), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(4304), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [229829] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1000), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(4304), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [229860] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(5934), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(4304), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [229891] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1040), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(4304), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [229922] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(5936), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(4304), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [229953] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(998), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(4304), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [229984] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1034), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(4304), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [230015] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(5938), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(4304), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [230046] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(990), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(4304), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [230077] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1004), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(4304), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [230108] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1038), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(4304), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [230139] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1002), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(4304), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [230170] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(5940), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(4304), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [230201] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1026), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(4304), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [230232] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(351), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(4304), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [230263] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1018), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(4304), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [230294] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(5942), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(4304), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [230325] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1008), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(4304), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [230356] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1048), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(4304), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [230387] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1032), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(4304), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [230418] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(5944), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(4304), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [230449] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(327), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(4304), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [230480] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(992), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(4304), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [230511] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(315), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(4304), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [230542] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(984), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(4304), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [230573] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(698), 1, aux_sym__terminator_token1, - ACTIONS(5416), 1, + ACTIONS(5876), 1, anon_sym_SEMI, - STATE(136), 1, + STATE(132), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(3748), 1, + STATE(4342), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(1375), 5, + ACTIONS(668), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [188953] = 8, + [230603] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(698), 1, aux_sym__terminator_token1, - ACTIONS(5416), 1, + ACTIONS(5876), 1, anon_sym_SEMI, - STATE(136), 1, + STATE(132), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(3738), 1, + STATE(4348), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(1521), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [230633] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4348), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(1497), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [230663] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5946), 1, + aux_sym__terminator_token1, + ACTIONS(5949), 1, + anon_sym_SEMI, + STATE(734), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4334), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4345), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [230693] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4354), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(686), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [230723] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2875), 1, + aux_sym__terminator_token1, + ACTIONS(5952), 1, + anon_sym_SEMI, + STATE(299), 1, + sym__terminator, + STATE(1021), 1, + aux_sym__terminator_repeat1, + STATE(4355), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(1491), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [230753] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4348), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(1491), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [230783] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2875), 1, + aux_sym__terminator_token1, + ACTIONS(5954), 1, + anon_sym_SEMI, + STATE(338), 1, + sym__terminator, + STATE(1021), 1, + aux_sym__terminator_repeat1, + STATE(4355), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(1521), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [230813] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4361), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -326097,1279 +365632,1368 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [188983] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3725), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(1353), 5, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [189013] = 8, + [230843] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(2875), 1, aux_sym__terminator_token1, - ACTIONS(5508), 1, + ACTIONS(5956), 1, anon_sym_SEMI, - STATE(264), 1, + STATE(336), 1, sym__terminator, - STATE(1020), 1, + STATE(1021), 1, aux_sym__terminator_repeat1, - STATE(3728), 1, + STATE(4355), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(1449), 5, + ACTIONS(1525), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [189043] = 8, + [230873] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(698), 1, aux_sym__terminator_token1, - ACTIONS(5416), 1, + ACTIONS(5876), 1, anon_sym_SEMI, - STATE(136), 1, + STATE(132), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(3725), 1, + STATE(4348), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(1449), 5, + ACTIONS(1525), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [189073] = 8, + [230903] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4348), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(1431), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [230933] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4351), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(664), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [230963] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(2875), 1, aux_sym__terminator_token1, - ACTIONS(5510), 1, + ACTIONS(3102), 1, anon_sym_SEMI, - STATE(287), 1, + STATE(342), 1, sym__terminator, - STATE(1020), 1, + STATE(1021), 1, aux_sym__terminator_repeat1, - STATE(3728), 1, + STATE(4355), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(1461), 5, + ACTIONS(1431), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [189103] = 8, + [230993] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(3687), 1, aux_sym__terminator_token1, - ACTIONS(5416), 1, + ACTIONS(3690), 1, anon_sym_SEMI, - STATE(136), 1, + STATE(261), 1, sym__terminator, - STATE(1026), 1, + STATE(1022), 1, aux_sym__terminator_repeat1, - STATE(3725), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(1461), 5, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [189133] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2875), 1, - aux_sym__terminator_token1, - ACTIONS(5512), 1, - anon_sym_SEMI, - STATE(263), 1, - sym__terminator, - STATE(1020), 1, - aux_sym__terminator_repeat1, - STATE(3728), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(1491), 5, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [189163] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3725), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(1491), 5, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [189193] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3742), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(1369), 5, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [189223] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2875), 1, - aux_sym__terminator_token1, - ACTIONS(5514), 1, - anon_sym_SEMI, - STATE(267), 1, - sym__terminator, - STATE(1020), 1, - aux_sym__terminator_repeat1, - STATE(3728), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(1495), 5, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [189253] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3729), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(678), 5, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [189283] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3725), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(1495), 5, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [189313] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3725), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(1373), 5, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [189343] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2875), 1, - aux_sym__terminator_token1, - ACTIONS(3070), 1, - anon_sym_SEMI, - STATE(331), 1, - sym__terminator, - STATE(1020), 1, - aux_sym__terminator_repeat1, - STATE(3728), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(1373), 5, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [189373] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3744), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(1373), 5, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [189403] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2875), 1, - aux_sym__terminator_token1, - ACTIONS(3084), 1, - anon_sym_SEMI, - STATE(319), 1, - sym__terminator, - STATE(1020), 1, - aux_sym__terminator_repeat1, - STATE(3728), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(1369), 5, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [189433] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(136), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(3725), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(1369), 5, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [189463] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5516), 1, - aux_sym__terminator_token1, - ACTIONS(5519), 1, - anon_sym_SEMI, - STATE(594), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(3754), 1, + STATE(4334), 1, aux_sym_source_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3895), 5, + ACTIONS(1323), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [189493] = 5, + [231023] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(5522), 1, - anon_sym_AMP, - ACTIONS(5526), 1, - anon_sym_AT, - ACTIONS(3), 3, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4341), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(5524), 6, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_CARET, - anon_sym_TILDE_TILDE_TILDE, - anon_sym_not, - [189516] = 5, + ACTIONS(1431), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [231053] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(5528), 1, - anon_sym_AMP, - ACTIONS(5532), 1, - anon_sym_AT, - ACTIONS(3), 3, + ACTIONS(2875), 1, + aux_sym__terminator_token1, + ACTIONS(5958), 1, + anon_sym_SEMI, + STATE(344), 1, + sym__terminator, + STATE(1021), 1, + aux_sym__terminator_repeat1, + STATE(4355), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(5530), 6, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_CARET, - anon_sym_TILDE_TILDE_TILDE, - anon_sym_not, - [189539] = 8, + ACTIONS(1497), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [231083] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(224), 1, + ACTIONS(5960), 1, + aux_sym__terminator_token1, + ACTIONS(5963), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4348), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5966), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [231113] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5968), 1, + aux_sym__terminator_token1, + ACTIONS(5971), 1, + anon_sym_SEMI, + STATE(262), 1, + sym__terminator, + STATE(1022), 1, + aux_sym__terminator_repeat1, + STATE(4334), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(1329), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [231143] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1161), 1, sym_keyword, - ACTIONS(5444), 1, + ACTIONS(5900), 1, + anon_sym_GT_GT, + ACTIONS(5902), 1, anon_sym_DQUOTE, - ACTIONS(5446), 1, + ACTIONS(5904), 1, anon_sym_SQUOTE, - STATE(1315), 1, + STATE(4405), 1, sym_pair, - STATE(836), 2, + STATE(5559), 1, + sym__quoted_i_double, + STATE(5565), 1, + sym__quoted_i_single, + STATE(759), 2, sym__keyword, sym_quoted_keyword, - STATE(5030), 2, - sym__quoted_i_double, - sym__quoted_i_single, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [189568] = 8, + [231177] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4348), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(1407), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [231207] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4337), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(1383), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [231237] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2875), 1, + aux_sym__terminator_token1, + ACTIONS(3024), 1, + anon_sym_SEMI, + STATE(329), 1, + sym__terminator, + STATE(1021), 1, + aux_sym__terminator_repeat1, + STATE(4355), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(1383), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [231267] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4348), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(1383), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [231297] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5974), 1, + aux_sym__terminator_token1, + ACTIONS(5977), 1, + anon_sym_SEMI, + STATE(695), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4355), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4393), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [231327] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4333), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(1395), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [231357] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1161), 1, + sym_keyword, + ACTIONS(5902), 1, + anon_sym_DQUOTE, + ACTIONS(5904), 1, + anon_sym_SQUOTE, + ACTIONS(5906), 1, + anon_sym_GT_GT, + STATE(4405), 1, + sym_pair, + STATE(5559), 1, + sym__quoted_i_double, + STATE(5565), 1, + sym__quoted_i_single, + STATE(759), 2, + sym__keyword, + sym_quoted_keyword, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [231391] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2875), 1, + aux_sym__terminator_token1, + ACTIONS(3068), 1, + anon_sym_SEMI, + STATE(332), 1, + sym__terminator, + STATE(1021), 1, + aux_sym__terminator_repeat1, + STATE(4355), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(1395), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [231421] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2875), 1, + aux_sym__terminator_token1, + ACTIONS(3104), 1, + anon_sym_SEMI, + STATE(339), 1, + sym__terminator, + STATE(1021), 1, + aux_sym__terminator_repeat1, + STATE(4355), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(1407), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [231451] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4332), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(1407), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [231481] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4348), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(1395), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [231511] = 9, ACTIONS(5), 1, sym_comment, ACTIONS(1483), 1, sym_keyword, - ACTIONS(5444), 1, + ACTIONS(5902), 1, anon_sym_DQUOTE, - ACTIONS(5446), 1, + ACTIONS(5904), 1, anon_sym_SQUOTE, - STATE(1439), 1, + STATE(3706), 1, sym_pair, - STATE(616), 2, + STATE(5559), 1, + sym__quoted_i_double, + STATE(5565), 1, + sym__quoted_i_single, + STATE(564), 2, sym__keyword, sym_quoted_keyword, - STATE(5030), 2, - sym__quoted_i_double, - sym__quoted_i_single, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [189597] = 8, + [231542] = 9, ACTIONS(5), 1, sym_comment, - ACTIONS(507), 1, + ACTIONS(1161), 1, sym_keyword, - ACTIONS(5444), 1, + ACTIONS(5902), 1, anon_sym_DQUOTE, - ACTIONS(5446), 1, + ACTIONS(5904), 1, anon_sym_SQUOTE, - STATE(2406), 1, + STATE(4405), 1, sym_pair, - STATE(726), 2, + STATE(5559), 1, + sym__quoted_i_double, + STATE(5565), 1, + sym__quoted_i_single, + STATE(759), 2, sym__keyword, sym_quoted_keyword, - STATE(5030), 2, - sym__quoted_i_double, - sym__quoted_i_single, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [189626] = 5, + [231573] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(5534), 1, + ACTIONS(5980), 1, anon_sym_AMP, - ACTIONS(5538), 1, + ACTIONS(5984), 1, anon_sym_AT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(5536), 6, + ACTIONS(5982), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_TILDE_TILDE_TILDE, anon_sym_not, - [189649] = 8, + [231596] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(632), 1, - sym_keyword, - ACTIONS(5444), 1, - anon_sym_DQUOTE, - ACTIONS(5446), 1, - anon_sym_SQUOTE, - STATE(3096), 1, - sym_pair, - STATE(459), 2, - sym__keyword, - sym_quoted_keyword, - STATE(5030), 2, - sym__quoted_i_double, - sym__quoted_i_single, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [189678] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5540), 1, + ACTIONS(5986), 1, anon_sym_AMP, - ACTIONS(5544), 1, + ACTIONS(5990), 1, anon_sym_AT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(5542), 6, + ACTIONS(5988), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_TILDE_TILDE_TILDE, anon_sym_not, - [189701] = 8, + [231619] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(1093), 1, - sym_keyword, - ACTIONS(5444), 1, - anon_sym_DQUOTE, - ACTIONS(5446), 1, - anon_sym_SQUOTE, - STATE(2478), 1, - sym_pair, - STATE(896), 2, - sym__keyword, - sym_quoted_keyword, - STATE(5030), 2, - sym__quoted_i_double, - sym__quoted_i_single, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [189730] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5546), 1, + ACTIONS(5992), 1, anon_sym_AMP, - ACTIONS(5550), 1, + ACTIONS(5996), 1, anon_sym_AT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(5548), 6, + ACTIONS(5994), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_TILDE_TILDE_TILDE, anon_sym_not, - [189753] = 8, + [231642] = 9, + ACTIONS(5), 1, + sym_comment, + ACTIONS(221), 1, + sym_keyword, + ACTIONS(5902), 1, + anon_sym_DQUOTE, + ACTIONS(5904), 1, + anon_sym_SQUOTE, + STATE(1293), 1, + sym_pair, + STATE(5559), 1, + sym__quoted_i_double, + STATE(5565), 1, + sym__quoted_i_single, + STATE(826), 2, + sym__keyword, + sym_quoted_keyword, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [231673] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5998), 1, + anon_sym_AMP, + ACTIONS(6002), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(6000), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [231696] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6004), 1, + anon_sym_AMP, + ACTIONS(6008), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(6006), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [231719] = 9, + ACTIONS(5), 1, + sym_comment, + ACTIONS(674), 1, + sym_keyword, + ACTIONS(5902), 1, + anon_sym_DQUOTE, + ACTIONS(5904), 1, + anon_sym_SQUOTE, + STATE(2096), 1, + sym_pair, + STATE(5559), 1, + sym__quoted_i_double, + STATE(5565), 1, + sym__quoted_i_single, + STATE(642), 2, + sym__keyword, + sym_quoted_keyword, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [231750] = 9, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1475), 1, + sym_keyword, + ACTIONS(5902), 1, + anon_sym_DQUOTE, + ACTIONS(5904), 1, + anon_sym_SQUOTE, + STATE(1594), 1, + sym_pair, + STATE(5559), 1, + sym__quoted_i_double, + STATE(5565), 1, + sym__quoted_i_single, + STATE(560), 2, + sym__keyword, + sym_quoted_keyword, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [231781] = 9, ACTIONS(5), 1, sym_comment, ACTIONS(93), 1, sym_keyword, - ACTIONS(5444), 1, + ACTIONS(5902), 1, anon_sym_DQUOTE, - ACTIONS(5446), 1, + ACTIONS(5904), 1, anon_sym_SQUOTE, - STATE(3153), 1, + STATE(3670), 1, sym_pair, - STATE(677), 2, + STATE(5559), 1, + sym__quoted_i_double, + STATE(5565), 1, + sym__quoted_i_single, + STATE(581), 2, sym__keyword, sym_quoted_keyword, - STATE(5030), 2, - sym__quoted_i_double, - sym__quoted_i_single, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [189782] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5552), 1, - anon_sym_AMP, - ACTIONS(5556), 1, - anon_sym_AT, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(5554), 6, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_CARET, - anon_sym_TILDE_TILDE_TILDE, - anon_sym_not, - [189805] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1469), 1, - sym_keyword, - ACTIONS(5444), 1, - anon_sym_DQUOTE, - ACTIONS(5446), 1, - anon_sym_SQUOTE, - STATE(1788), 1, - sym_pair, - STATE(800), 2, - sym__keyword, - sym_quoted_keyword, - STATE(5030), 2, - sym__quoted_i_double, - sym__quoted_i_single, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [189834] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5558), 1, - anon_sym_AMP, - ACTIONS(5562), 1, - anon_sym_AT, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(5560), 6, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_CARET, - anon_sym_TILDE_TILDE_TILDE, - anon_sym_not, - [189857] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(385), 1, - sym_keyword, - ACTIONS(5444), 1, - anon_sym_DQUOTE, - ACTIONS(5446), 1, - anon_sym_SQUOTE, - STATE(1852), 1, - sym_pair, - STATE(901), 2, - sym__keyword, - sym_quoted_keyword, - STATE(5030), 2, - sym__quoted_i_double, - sym__quoted_i_single, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [189886] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(533), 1, - sym_keyword, - ACTIONS(5444), 1, - anon_sym_DQUOTE, - ACTIONS(5446), 1, - anon_sym_SQUOTE, - STATE(1277), 1, - sym_pair, - STATE(786), 2, - sym__keyword, - sym_quoted_keyword, - STATE(5030), 2, - sym__quoted_i_double, - sym__quoted_i_single, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [189915] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5564), 1, - anon_sym_AMP, - ACTIONS(5568), 1, - anon_sym_AT, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(5566), 6, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_CARET, - anon_sym_TILDE_TILDE_TILDE, - anon_sym_not, - [189938] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5570), 1, - anon_sym_AMP, - ACTIONS(5574), 1, - anon_sym_AT, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(5572), 6, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_CARET, - anon_sym_TILDE_TILDE_TILDE, - anon_sym_not, - [189961] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1437), 1, - sym_keyword, - ACTIONS(5444), 1, - anon_sym_DQUOTE, - ACTIONS(5446), 1, - anon_sym_SQUOTE, - STATE(1788), 1, - sym_pair, - STATE(832), 2, - sym__keyword, - sym_quoted_keyword, - STATE(5030), 2, - sym__quoted_i_double, - sym__quoted_i_single, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [189990] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1513), 1, - sym_keyword, - ACTIONS(5444), 1, - anon_sym_DQUOTE, - ACTIONS(5446), 1, - anon_sym_SQUOTE, - STATE(2478), 1, - sym_pair, - STATE(802), 2, - sym__keyword, - sym_quoted_keyword, - STATE(5030), 2, - sym__quoted_i_double, - sym__quoted_i_single, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [190019] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5576), 1, - anon_sym_AMP, - ACTIONS(5580), 1, - anon_sym_AT, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(5578), 6, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_CARET, - anon_sym_TILDE_TILDE_TILDE, - anon_sym_not, - [190042] = 8, + [231812] = 9, ACTIONS(5), 1, sym_comment, ACTIONS(446), 1, sym_keyword, - ACTIONS(5444), 1, + ACTIONS(5902), 1, anon_sym_DQUOTE, - ACTIONS(5446), 1, + ACTIONS(5904), 1, anon_sym_SQUOTE, - STATE(1315), 1, + STATE(1509), 1, sym_pair, - STATE(492), 2, + STATE(5559), 1, + sym__quoted_i_double, + STATE(5565), 1, + sym__quoted_i_single, + STATE(799), 2, sym__keyword, sym_quoted_keyword, - STATE(5030), 2, - sym__quoted_i_double, - sym__quoted_i_single, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [190071] = 8, + [231843] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(580), 1, + ACTIONS(6010), 1, + anon_sym_AMP, + ACTIONS(6014), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(6012), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [231866] = 9, + ACTIONS(5), 1, + sym_comment, + ACTIONS(469), 1, sym_keyword, - ACTIONS(5444), 1, + ACTIONS(5902), 1, anon_sym_DQUOTE, - ACTIONS(5446), 1, + ACTIONS(5904), 1, anon_sym_SQUOTE, - STATE(2618), 1, + STATE(1293), 1, sym_pair, - STATE(445), 2, + STATE(5559), 1, + sym__quoted_i_double, + STATE(5565), 1, + sym__quoted_i_single, + STATE(873), 2, sym__keyword, sym_quoted_keyword, - STATE(5030), 2, - sym__quoted_i_double, - sym__quoted_i_single, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [190100] = 5, + [231897] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(5582), 1, + ACTIONS(6016), 1, anon_sym_AMP, - ACTIONS(5586), 1, + ACTIONS(6020), 1, anon_sym_AT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(5584), 6, + ACTIONS(6018), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_TILDE_TILDE_TILDE, anon_sym_not, - [190123] = 8, + [231920] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(1151), 1, + ACTIONS(6022), 1, + anon_sym_AMP, + ACTIONS(6026), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(6024), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [231943] = 9, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1389), 1, sym_keyword, - ACTIONS(5444), 1, + ACTIONS(5902), 1, anon_sym_DQUOTE, - ACTIONS(5446), 1, + ACTIONS(5904), 1, anon_sym_SQUOTE, - STATE(3424), 1, + STATE(1879), 1, sym_pair, - STATE(613), 2, + STATE(5559), 1, + sym__quoted_i_double, + STATE(5565), 1, + sym__quoted_i_single, + STATE(882), 2, sym__keyword, sym_quoted_keyword, - STATE(5030), 2, - sym__quoted_i_double, - sym__quoted_i_single, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [190152] = 5, + [231974] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(5588), 1, + ACTIONS(6028), 1, anon_sym_AMP, - ACTIONS(5592), 1, + ACTIONS(6032), 1, anon_sym_AT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(5590), 6, + ACTIONS(6030), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_TILDE_TILDE_TILDE, anon_sym_not, - [190175] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5594), 1, - anon_sym_AMP, - ACTIONS(5598), 1, - anon_sym_AT, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(5596), 6, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_CARET, - anon_sym_TILDE_TILDE_TILDE, - anon_sym_not, - [190198] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1151), 1, - sym_keyword, - ACTIONS(5444), 1, - anon_sym_DQUOTE, - ACTIONS(5446), 1, - anon_sym_SQUOTE, - STATE(3801), 1, - sym_pair, - STATE(613), 2, - sym__keyword, - sym_quoted_keyword, - STATE(5030), 2, - sym__quoted_i_double, - sym__quoted_i_single, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [190227] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1351), 1, - sym_keyword, - ACTIONS(5444), 1, - anon_sym_DQUOTE, - ACTIONS(5446), 1, - anon_sym_SQUOTE, - STATE(1788), 1, - sym_pair, - STATE(842), 2, - sym__keyword, - sym_quoted_keyword, - STATE(5030), 2, - sym__quoted_i_double, - sym__quoted_i_single, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [190256] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5600), 1, - anon_sym_AMP, - ACTIONS(5604), 1, - anon_sym_AT, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(5602), 6, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_CARET, - anon_sym_TILDE_TILDE_TILDE, - anon_sym_not, - [190279] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5606), 1, - anon_sym_AMP, - ACTIONS(5610), 1, - anon_sym_AT, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(5608), 6, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_CARET, - anon_sym_TILDE_TILDE_TILDE, - anon_sym_not, - [190302] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1391), 1, - sym_keyword, - ACTIONS(5444), 1, - anon_sym_DQUOTE, - ACTIONS(5446), 1, - anon_sym_SQUOTE, - STATE(3184), 1, - sym_pair, - STATE(518), 2, - sym__keyword, - sym_quoted_keyword, - STATE(5030), 2, - sym__quoted_i_double, - sym__quoted_i_single, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [190331] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5612), 1, - anon_sym_AMP, - ACTIONS(5616), 1, - anon_sym_AT, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(5614), 6, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_CARET, - anon_sym_TILDE_TILDE_TILDE, - anon_sym_not, - [190354] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5618), 1, - anon_sym_AMP, - ACTIONS(5622), 1, - anon_sym_AT, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(5620), 6, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_CARET, - anon_sym_TILDE_TILDE_TILDE, - anon_sym_not, - [190377] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5624), 1, - anon_sym_AMP, - ACTIONS(5628), 1, - anon_sym_AT, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(5626), 6, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_CARET, - anon_sym_TILDE_TILDE_TILDE, - anon_sym_not, - [190400] = 8, + [231997] = 9, ACTIONS(5), 1, sym_comment, ACTIONS(1093), 1, sym_keyword, - ACTIONS(5444), 1, + ACTIONS(5902), 1, anon_sym_DQUOTE, - ACTIONS(5446), 1, + ACTIONS(5904), 1, anon_sym_SQUOTE, - STATE(3801), 1, + STATE(3057), 1, sym_pair, - STATE(896), 2, + STATE(5559), 1, + sym__quoted_i_double, + STATE(5565), 1, + sym__quoted_i_single, + STATE(674), 2, sym__keyword, sym_quoted_keyword, - STATE(5030), 2, - sym__quoted_i_double, - sym__quoted_i_single, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [190429] = 5, + [232028] = 9, ACTIONS(5), 1, sym_comment, - ACTIONS(5630), 1, + ACTIONS(1447), 1, + sym_keyword, + ACTIONS(5902), 1, + anon_sym_DQUOTE, + ACTIONS(5904), 1, + anon_sym_SQUOTE, + STATE(1879), 1, + sym_pair, + STATE(5559), 1, + sym__quoted_i_double, + STATE(5565), 1, + sym__quoted_i_single, + STATE(888), 2, + sym__keyword, + sym_quoted_keyword, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [232059] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6034), 1, anon_sym_AMP, - ACTIONS(5634), 1, + ACTIONS(6038), 1, anon_sym_AT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(5632), 6, + ACTIONS(6036), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_TILDE_TILDE_TILDE, anon_sym_not, - [190452] = 8, + [232082] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(278), 1, - sym_keyword, - ACTIONS(5444), 1, - anon_sym_DQUOTE, - ACTIONS(5446), 1, - anon_sym_SQUOTE, - STATE(1277), 1, - sym_pair, - STATE(794), 2, - sym__keyword, - sym_quoted_keyword, - STATE(5030), 2, - sym__quoted_i_double, - sym__quoted_i_single, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [190481] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(666), 1, - sym_keyword, - ACTIONS(5444), 1, - anon_sym_DQUOTE, - ACTIONS(5446), 1, - anon_sym_SQUOTE, - STATE(1852), 1, - sym_pair, - STATE(660), 2, - sym__keyword, - sym_quoted_keyword, - STATE(5030), 2, - sym__quoted_i_double, - sym__quoted_i_single, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [190510] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(466), 1, - sym_keyword, - ACTIONS(5444), 1, - anon_sym_DQUOTE, - ACTIONS(5446), 1, - anon_sym_SQUOTE, - STATE(1315), 1, - sym_pair, - STATE(774), 2, - sym__keyword, - sym_quoted_keyword, - STATE(5030), 2, - sym__quoted_i_double, - sym__quoted_i_single, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [190539] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1503), 1, - sym_keyword, - ACTIONS(5444), 1, - anon_sym_DQUOTE, - ACTIONS(5446), 1, - anon_sym_SQUOTE, - STATE(1439), 1, - sym_pair, - STATE(840), 2, - sym__keyword, - sym_quoted_keyword, - STATE(5030), 2, - sym__quoted_i_double, - sym__quoted_i_single, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [190568] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5636), 1, + ACTIONS(6040), 1, anon_sym_AMP, - ACTIONS(5640), 1, + ACTIONS(6044), 1, anon_sym_AT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(5638), 6, + ACTIONS(6042), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_TILDE_TILDE_TILDE, anon_sym_not, - [190591] = 8, + [232105] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6046), 1, + anon_sym_AMP, + ACTIONS(6050), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(6048), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [232128] = 9, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1093), 1, + sym_keyword, + ACTIONS(5902), 1, + anon_sym_DQUOTE, + ACTIONS(5904), 1, + anon_sym_SQUOTE, + STATE(4405), 1, + sym_pair, + STATE(5559), 1, + sym__quoted_i_double, + STATE(5565), 1, + sym__quoted_i_single, + STATE(674), 2, + sym__keyword, + sym_quoted_keyword, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [232159] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6052), 1, + anon_sym_AMP, + ACTIONS(6056), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(6054), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [232182] = 9, + ACTIONS(5), 1, + sym_comment, + ACTIONS(635), 1, + sym_keyword, + ACTIONS(5902), 1, + anon_sym_DQUOTE, + ACTIONS(5904), 1, + anon_sym_SQUOTE, + STATE(3307), 1, + sym_pair, + STATE(5559), 1, + sym__quoted_i_double, + STATE(5565), 1, + sym__quoted_i_single, + STATE(465), 2, + sym__keyword, + sym_quoted_keyword, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [232213] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6058), 1, + anon_sym_AMP, + ACTIONS(6062), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(6060), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [232236] = 9, + ACTIONS(5), 1, + sym_comment, + ACTIONS(580), 1, + sym_keyword, + ACTIONS(5902), 1, + anon_sym_DQUOTE, + ACTIONS(5904), 1, + anon_sym_SQUOTE, + STATE(3125), 1, + sym_pair, + STATE(5559), 1, + sym__quoted_i_double, + STATE(5565), 1, + sym__quoted_i_single, + STATE(480), 2, + sym__keyword, + sym_quoted_keyword, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [232267] = 9, + ACTIONS(5), 1, + sym_comment, + ACTIONS(276), 1, + sym_keyword, + ACTIONS(5902), 1, + anon_sym_DQUOTE, + ACTIONS(5904), 1, + anon_sym_SQUOTE, + STATE(1509), 1, + sym_pair, + STATE(5559), 1, + sym__quoted_i_double, + STATE(5565), 1, + sym__quoted_i_single, + STATE(887), 2, + sym__keyword, + sym_quoted_keyword, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [232298] = 9, ACTIONS(5), 1, sym_comment, ACTIONS(93), 1, sym_keyword, - ACTIONS(5444), 1, + ACTIONS(5902), 1, anon_sym_DQUOTE, - ACTIONS(5446), 1, + ACTIONS(5904), 1, anon_sym_SQUOTE, - STATE(3801), 1, + STATE(4405), 1, sym_pair, - STATE(677), 2, + STATE(5559), 1, + sym__quoted_i_double, + STATE(5565), 1, + sym__quoted_i_single, + STATE(581), 2, sym__keyword, sym_quoted_keyword, - STATE(5030), 2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [232329] = 9, + ACTIONS(5), 1, + sym_comment, + ACTIONS(529), 1, + sym_keyword, + ACTIONS(5902), 1, + anon_sym_DQUOTE, + ACTIONS(5904), 1, + anon_sym_SQUOTE, + STATE(2888), 1, + sym_pair, + STATE(5559), 1, sym__quoted_i_double, + STATE(5565), 1, sym__quoted_i_single, + STATE(780), 2, + sym__keyword, + sym_quoted_keyword, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [190620] = 4, + [232360] = 9, ACTIONS(5), 1, sym_comment, - ACTIONS(5642), 1, - aux_sym__terminator_token1, - ACTIONS(3), 2, + ACTIONS(391), 1, + sym_keyword, + ACTIONS(5902), 1, + anon_sym_DQUOTE, + ACTIONS(5904), 1, + anon_sym_SQUOTE, + STATE(2096), 1, + sym_pair, + STATE(5559), 1, + sym__quoted_i_double, + STATE(5565), 1, + sym__quoted_i_single, + STATE(511), 2, + sym__keyword, + sym_quoted_keyword, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5644), 7, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [190640] = 4, + aux_sym__terminator_token1, + [232391] = 9, ACTIONS(5), 1, sym_comment, - ACTIONS(5646), 1, - aux_sym__terminator_token1, - ACTIONS(3), 2, + ACTIONS(1161), 1, + sym_keyword, + ACTIONS(5902), 1, + anon_sym_DQUOTE, + ACTIONS(5904), 1, + anon_sym_SQUOTE, + STATE(4045), 1, + sym_pair, + STATE(5559), 1, + sym__quoted_i_double, + STATE(5565), 1, + sym__quoted_i_single, + STATE(759), 2, + sym__keyword, + sym_quoted_keyword, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5648), 7, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [190660] = 4, + aux_sym__terminator_token1, + [232422] = 9, ACTIONS(5), 1, sym_comment, - ACTIONS(5650), 1, - aux_sym__terminator_token1, - ACTIONS(3), 2, + ACTIONS(1355), 1, + sym_keyword, + ACTIONS(5902), 1, + anon_sym_DQUOTE, + ACTIONS(5904), 1, + anon_sym_SQUOTE, + STATE(1879), 1, + sym_pair, + STATE(5559), 1, + sym__quoted_i_double, + STATE(5565), 1, + sym__quoted_i_single, + STATE(834), 2, + sym__keyword, + sym_quoted_keyword, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5494), 7, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [190680] = 3, + aux_sym__terminator_token1, + [232453] = 9, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1341), 1, + sym_keyword, + ACTIONS(5902), 1, + anon_sym_DQUOTE, + ACTIONS(5904), 1, + anon_sym_SQUOTE, + STATE(1594), 1, + sym_pair, + STATE(5559), 1, + sym__quoted_i_double, + STATE(5565), 1, + sym__quoted_i_single, + STATE(883), 2, + sym__keyword, + sym_quoted_keyword, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [232484] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6064), 1, + anon_sym_AMP, + ACTIONS(6068), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(6066), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [232507] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6070), 1, + anon_sym_AMP, + ACTIONS(6074), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(6072), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [232530] = 9, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1503), 1, + sym_keyword, + ACTIONS(5902), 1, + anon_sym_DQUOTE, + ACTIONS(5904), 1, + anon_sym_SQUOTE, + STATE(3057), 1, + sym_pair, + STATE(5559), 1, + sym__quoted_i_double, + STATE(5565), 1, + sym__quoted_i_single, + STATE(853), 2, + sym__keyword, + sym_quoted_keyword, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [232561] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6076), 1, + anon_sym_AMP, + ACTIONS(6080), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(6078), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [232584] = 9, + ACTIONS(5), 1, + sym_comment, + ACTIONS(488), 1, + sym_keyword, + ACTIONS(5902), 1, + anon_sym_DQUOTE, + ACTIONS(5904), 1, + anon_sym_SQUOTE, + STATE(1509), 1, + sym_pair, + STATE(5559), 1, + sym__quoted_i_double, + STATE(5565), 1, + sym__quoted_i_single, + STATE(505), 2, + sym__keyword, + sym_quoted_keyword, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [232615] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6082), 1, + anon_sym_AMP, + ACTIONS(6086), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(6084), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [232638] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6088), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(6090), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [232661] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6094), 1, + anon_sym_AMP, + ACTIONS(6098), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(6096), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [232684] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3481), 7, + ACTIONS(3136), 7, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_RBRACK, @@ -327377,1958 +367001,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_when, anon_sym_DASH_GT, - [190698] = 7, - ACTIONS(5652), 1, - anon_sym_SLASH, - ACTIONS(5654), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5656), 1, - sym_escape_sequence, - ACTIONS(5658), 1, - sym__quoted_content_i_slash, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, + [232702] = 4, + ACTIONS(5), 1, sym_comment, - STATE(4021), 2, - sym_interpolation, - aux_sym__quoted_i_slash_repeat1, - [190723] = 7, - ACTIONS(5660), 1, - anon_sym_GT, - ACTIONS(5662), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5664), 1, - sym_escape_sequence, - ACTIONS(5666), 1, - sym__quoted_content_i_angle, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4026), 2, - sym_interpolation, - aux_sym__quoted_i_angle_repeat1, - [190748] = 7, - ACTIONS(5668), 1, - anon_sym_DQUOTE, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5672), 1, - sym_escape_sequence, - ACTIONS(5674), 1, - sym__quoted_content_i_double, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3819), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [190773] = 7, - ACTIONS(5676), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5678), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5680), 1, - sym_escape_sequence, - ACTIONS(5682), 1, - sym__quoted_content_i_heredoc_double, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3838), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [190798] = 7, - ACTIONS(5684), 1, - anon_sym_SQUOTE, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5688), 1, - sym_escape_sequence, - ACTIONS(5690), 1, - sym__quoted_content_i_single, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3820), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [190823] = 7, - ACTIONS(5692), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5694), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5696), 1, - sym_escape_sequence, - ACTIONS(5698), 1, - sym__quoted_content_i_heredoc_single, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3821), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [190848] = 7, - ACTIONS(5678), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5700), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5702), 1, - sym_escape_sequence, - ACTIONS(5704), 1, - sym__quoted_content_i_heredoc_double, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3822), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [190873] = 7, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5706), 1, - anon_sym_DQUOTE, - ACTIONS(5708), 1, - sym_escape_sequence, - ACTIONS(5710), 1, - sym__quoted_content_i_double, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3823), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [190898] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5712), 1, - anon_sym_SQUOTE, - ACTIONS(5714), 1, - sym_escape_sequence, - ACTIONS(5716), 1, - sym__quoted_content_i_single, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3824), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [190923] = 7, - ACTIONS(5694), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5718), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5720), 1, - sym_escape_sequence, - ACTIONS(5722), 1, - sym__quoted_content_i_heredoc_single, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3825), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [190948] = 7, - ACTIONS(5678), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5724), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5726), 1, - sym_escape_sequence, - ACTIONS(5728), 1, - sym__quoted_content_i_heredoc_double, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3826), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [190973] = 7, - ACTIONS(5730), 1, - anon_sym_RPAREN, - ACTIONS(5732), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5734), 1, - sym_escape_sequence, - ACTIONS(5736), 1, - sym__quoted_content_i_parenthesis, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3845), 2, - sym_interpolation, - aux_sym__quoted_i_parenthesis_repeat1, - [190998] = 7, - ACTIONS(5738), 1, - anon_sym_RBRACE, - ACTIONS(5740), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5742), 1, - sym_escape_sequence, - ACTIONS(5744), 1, - sym__quoted_content_i_curly, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3846), 2, - sym_interpolation, - aux_sym__quoted_i_curly_repeat1, - [191023] = 7, - ACTIONS(5746), 1, - anon_sym_RBRACK, - ACTIONS(5748), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5750), 1, - sym_escape_sequence, - ACTIONS(5752), 1, - sym__quoted_content_i_square, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3847), 2, - sym_interpolation, - aux_sym__quoted_i_square_repeat1, - [191048] = 7, - ACTIONS(5662), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5754), 1, - anon_sym_GT, - ACTIONS(5756), 1, - sym_escape_sequence, - ACTIONS(5758), 1, - sym__quoted_content_i_angle, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3848), 2, - sym_interpolation, - aux_sym__quoted_i_angle_repeat1, - [191073] = 7, - ACTIONS(5760), 1, - anon_sym_PIPE, - ACTIONS(5762), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5764), 1, - sym_escape_sequence, - ACTIONS(5766), 1, - sym__quoted_content_i_bar, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3849), 2, - sym_interpolation, - aux_sym__quoted_i_bar_repeat1, - [191098] = 7, - ACTIONS(5654), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5768), 1, - anon_sym_SLASH, - ACTIONS(5770), 1, - sym_escape_sequence, - ACTIONS(5772), 1, - sym__quoted_content_i_slash, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3850), 2, - sym_interpolation, - aux_sym__quoted_i_slash_repeat1, - [191123] = 7, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5774), 1, - anon_sym_DQUOTE, - ACTIONS(5776), 1, - sym_escape_sequence, - ACTIONS(5778), 1, - sym__quoted_content_i_double, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3834), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [191148] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5780), 1, - anon_sym_SQUOTE, - ACTIONS(5782), 1, - sym_escape_sequence, - ACTIONS(5784), 1, - sym__quoted_content_i_single, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3835), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [191173] = 7, - ACTIONS(5694), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5786), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5788), 1, - sym_escape_sequence, - ACTIONS(5790), 1, - sym__quoted_content_i_heredoc_single, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3852), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [191198] = 7, - ACTIONS(5678), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5680), 1, - sym_escape_sequence, - ACTIONS(5682), 1, - sym__quoted_content_i_heredoc_double, - ACTIONS(5792), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3838), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [191223] = 7, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5776), 1, - sym_escape_sequence, - ACTIONS(5778), 1, - sym__quoted_content_i_double, - ACTIONS(5794), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3834), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [191248] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5782), 1, - sym_escape_sequence, - ACTIONS(5784), 1, - sym__quoted_content_i_single, - ACTIONS(5796), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3835), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [191273] = 7, - ACTIONS(5694), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5788), 1, - sym_escape_sequence, - ACTIONS(5790), 1, - sym__quoted_content_i_heredoc_single, - ACTIONS(5798), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3852), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [191298] = 7, - ACTIONS(5678), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5680), 1, - sym_escape_sequence, - ACTIONS(5682), 1, - sym__quoted_content_i_heredoc_double, - ACTIONS(5800), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3838), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [191323] = 7, - ACTIONS(5732), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5802), 1, - anon_sym_RPAREN, - ACTIONS(5804), 1, - sym_escape_sequence, - ACTIONS(5806), 1, - sym__quoted_content_i_parenthesis, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4041), 2, - sym_interpolation, - aux_sym__quoted_i_parenthesis_repeat1, - [191348] = 7, - ACTIONS(5740), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5808), 1, - anon_sym_RBRACE, - ACTIONS(5810), 1, - sym_escape_sequence, - ACTIONS(5812), 1, - sym__quoted_content_i_curly, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4042), 2, - sym_interpolation, - aux_sym__quoted_i_curly_repeat1, - [191373] = 7, - ACTIONS(5748), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5814), 1, - anon_sym_RBRACK, - ACTIONS(5816), 1, - sym_escape_sequence, - ACTIONS(5818), 1, - sym__quoted_content_i_square, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4056), 2, - sym_interpolation, - aux_sym__quoted_i_square_repeat1, - [191398] = 7, - ACTIONS(5662), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5820), 1, - anon_sym_GT, - ACTIONS(5822), 1, - sym_escape_sequence, - ACTIONS(5824), 1, - sym__quoted_content_i_angle, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4075), 2, - sym_interpolation, - aux_sym__quoted_i_angle_repeat1, - [191423] = 7, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5776), 1, - sym_escape_sequence, - ACTIONS(5778), 1, - sym__quoted_content_i_double, - ACTIONS(5826), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3834), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [191448] = 7, - ACTIONS(5762), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5828), 1, - anon_sym_PIPE, - ACTIONS(5830), 1, - sym_escape_sequence, - ACTIONS(5832), 1, - sym__quoted_content_i_bar, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4076), 2, - sym_interpolation, - aux_sym__quoted_i_bar_repeat1, - [191473] = 7, - ACTIONS(5654), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5834), 1, - anon_sym_SLASH, - ACTIONS(5836), 1, - sym_escape_sequence, - ACTIONS(5838), 1, - sym__quoted_content_i_slash, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4078), 2, - sym_interpolation, - aux_sym__quoted_i_slash_repeat1, - [191498] = 7, - ACTIONS(5840), 1, - anon_sym_DQUOTE, - ACTIONS(5842), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5845), 1, - sym_escape_sequence, - ACTIONS(5848), 1, - sym__quoted_content_i_double, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3834), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [191523] = 7, - ACTIONS(5851), 1, - anon_sym_SQUOTE, - ACTIONS(5853), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5856), 1, - sym_escape_sequence, - ACTIONS(5859), 1, - sym__quoted_content_i_single, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3835), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [191548] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5782), 1, - sym_escape_sequence, - ACTIONS(5784), 1, - sym__quoted_content_i_single, - ACTIONS(5862), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3835), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [191573] = 7, - ACTIONS(5694), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5788), 1, - sym_escape_sequence, - ACTIONS(5790), 1, - sym__quoted_content_i_heredoc_single, - ACTIONS(5864), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3852), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [191598] = 7, - ACTIONS(5866), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5868), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5871), 1, - sym_escape_sequence, - ACTIONS(5874), 1, - sym__quoted_content_i_heredoc_double, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3838), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [191623] = 7, - ACTIONS(5732), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5877), 1, - anon_sym_RPAREN, - ACTIONS(5879), 1, - sym_escape_sequence, - ACTIONS(5881), 1, - sym__quoted_content_i_parenthesis, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4227), 2, - sym_interpolation, - aux_sym__quoted_i_parenthesis_repeat1, - [191648] = 7, - ACTIONS(5740), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5883), 1, - anon_sym_RBRACE, - ACTIONS(5885), 1, - sym_escape_sequence, - ACTIONS(5887), 1, - sym__quoted_content_i_curly, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4226), 2, - sym_interpolation, - aux_sym__quoted_i_curly_repeat1, - [191673] = 7, - ACTIONS(5748), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5889), 1, - anon_sym_RBRACK, - ACTIONS(5891), 1, - sym_escape_sequence, - ACTIONS(5893), 1, - sym__quoted_content_i_square, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4224), 2, - sym_interpolation, - aux_sym__quoted_i_square_repeat1, - [191698] = 7, - ACTIONS(5678), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5895), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5897), 1, - sym_escape_sequence, - ACTIONS(5899), 1, - sym__quoted_content_i_heredoc_double, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3805), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [191723] = 7, - ACTIONS(5662), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5901), 1, - anon_sym_GT, - ACTIONS(5903), 1, - sym_escape_sequence, - ACTIONS(5905), 1, - sym__quoted_content_i_angle, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4223), 2, - sym_interpolation, - aux_sym__quoted_i_angle_repeat1, - [191748] = 7, - ACTIONS(5762), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5907), 1, - anon_sym_PIPE, - ACTIONS(5909), 1, - sym_escape_sequence, - ACTIONS(5911), 1, - sym__quoted_content_i_bar, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4221), 2, - sym_interpolation, - aux_sym__quoted_i_bar_repeat1, - [191773] = 7, - ACTIONS(5732), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5913), 1, - anon_sym_RPAREN, - ACTIONS(5915), 1, - sym_escape_sequence, - ACTIONS(5917), 1, - sym__quoted_content_i_parenthesis, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4051), 2, - sym_interpolation, - aux_sym__quoted_i_parenthesis_repeat1, - [191798] = 7, - ACTIONS(5740), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5919), 1, - anon_sym_RBRACE, - ACTIONS(5921), 1, - sym_escape_sequence, - ACTIONS(5923), 1, - sym__quoted_content_i_curly, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4050), 2, - sym_interpolation, - aux_sym__quoted_i_curly_repeat1, - [191823] = 7, - ACTIONS(5748), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5925), 1, - anon_sym_RBRACK, - ACTIONS(5927), 1, - sym_escape_sequence, - ACTIONS(5929), 1, - sym__quoted_content_i_square, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4046), 2, - sym_interpolation, - aux_sym__quoted_i_square_repeat1, - [191848] = 7, - ACTIONS(5662), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5931), 1, - anon_sym_GT, - ACTIONS(5933), 1, - sym_escape_sequence, - ACTIONS(5935), 1, - sym__quoted_content_i_angle, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3911), 2, - sym_interpolation, - aux_sym__quoted_i_angle_repeat1, - [191873] = 7, - ACTIONS(5762), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5937), 1, - anon_sym_PIPE, - ACTIONS(5939), 1, - sym_escape_sequence, - ACTIONS(5941), 1, - sym__quoted_content_i_bar, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4023), 2, - sym_interpolation, - aux_sym__quoted_i_bar_repeat1, - [191898] = 7, - ACTIONS(5654), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5656), 1, - sym_escape_sequence, - ACTIONS(5658), 1, - sym__quoted_content_i_slash, - ACTIONS(5943), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4021), 2, - sym_interpolation, - aux_sym__quoted_i_slash_repeat1, - [191923] = 7, - ACTIONS(5654), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5945), 1, - anon_sym_SLASH, - ACTIONS(5947), 1, - sym_escape_sequence, - ACTIONS(5949), 1, - sym__quoted_content_i_slash, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4210), 2, - sym_interpolation, - aux_sym__quoted_i_slash_repeat1, - [191948] = 7, - ACTIONS(5951), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5953), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5956), 1, - sym_escape_sequence, - ACTIONS(5959), 1, - sym__quoted_content_i_heredoc_single, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3852), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [191973] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5782), 1, - sym_escape_sequence, - ACTIONS(5784), 1, - sym__quoted_content_i_single, - ACTIONS(5962), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3835), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [191998] = 7, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5776), 1, - sym_escape_sequence, - ACTIONS(5778), 1, - sym__quoted_content_i_double, - ACTIONS(5964), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3834), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [192023] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5966), 1, - anon_sym_SQUOTE, - ACTIONS(5968), 1, - sym_escape_sequence, - ACTIONS(5970), 1, - sym__quoted_content_i_single, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3853), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [192048] = 7, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5972), 1, - anon_sym_DQUOTE, - ACTIONS(5974), 1, - sym_escape_sequence, - ACTIONS(5976), 1, - sym__quoted_content_i_double, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3854), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [192073] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5782), 1, - sym_escape_sequence, - ACTIONS(5784), 1, - sym__quoted_content_i_single, - ACTIONS(5978), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3835), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [192098] = 7, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5776), 1, - sym_escape_sequence, - ACTIONS(5778), 1, - sym__quoted_content_i_double, - ACTIONS(5980), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3834), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [192123] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5982), 1, - anon_sym_SQUOTE, - ACTIONS(5984), 1, - sym_escape_sequence, - ACTIONS(5986), 1, - sym__quoted_content_i_single, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3857), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [192148] = 7, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5988), 1, - anon_sym_DQUOTE, - ACTIONS(5990), 1, - sym_escape_sequence, - ACTIONS(5992), 1, - sym__quoted_content_i_double, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3858), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [192173] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5782), 1, - sym_escape_sequence, - ACTIONS(5784), 1, - sym__quoted_content_i_single, - ACTIONS(5994), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3835), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [192198] = 7, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5776), 1, - sym_escape_sequence, - ACTIONS(5778), 1, - sym__quoted_content_i_double, - ACTIONS(5996), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3834), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [192223] = 7, - ACTIONS(5694), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5998), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(6000), 1, - sym_escape_sequence, - ACTIONS(6002), 1, - sym__quoted_content_i_heredoc_single, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3837), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [192248] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6004), 1, - anon_sym_SQUOTE, - ACTIONS(6006), 1, - sym_escape_sequence, - ACTIONS(6008), 1, - sym__quoted_content_i_single, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3836), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [192273] = 7, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6010), 1, - anon_sym_DQUOTE, - ACTIONS(6012), 1, - sym_escape_sequence, - ACTIONS(6014), 1, - sym__quoted_content_i_double, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3831), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [192298] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6016), 1, - anon_sym_SQUOTE, - ACTIONS(6018), 1, - sym_escape_sequence, - ACTIONS(6020), 1, - sym__quoted_content_i_single, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3861), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [192323] = 7, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6022), 1, - anon_sym_DQUOTE, - ACTIONS(6024), 1, - sym_escape_sequence, - ACTIONS(6026), 1, - sym__quoted_content_i_double, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3862), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [192348] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5782), 1, - sym_escape_sequence, - ACTIONS(5784), 1, - sym__quoted_content_i_single, - ACTIONS(6028), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3835), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [192373] = 7, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5776), 1, - sym_escape_sequence, - ACTIONS(5778), 1, - sym__quoted_content_i_double, - ACTIONS(6030), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3834), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [192398] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6032), 1, - anon_sym_SQUOTE, - ACTIONS(6034), 1, - sym_escape_sequence, - ACTIONS(6036), 1, - sym__quoted_content_i_single, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3868), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [192423] = 7, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6038), 1, - anon_sym_DQUOTE, - ACTIONS(6040), 1, - sym_escape_sequence, - ACTIONS(6042), 1, - sym__quoted_content_i_double, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3869), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [192448] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5782), 1, - sym_escape_sequence, - ACTIONS(5784), 1, - sym__quoted_content_i_single, - ACTIONS(6044), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3835), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [192473] = 7, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5776), 1, - sym_escape_sequence, - ACTIONS(5778), 1, - sym__quoted_content_i_double, - ACTIONS(6046), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3834), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [192498] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6048), 1, - anon_sym_SQUOTE, - ACTIONS(6050), 1, - sym_escape_sequence, - ACTIONS(6052), 1, - sym__quoted_content_i_single, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3872), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [192523] = 7, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6054), 1, - anon_sym_DQUOTE, - ACTIONS(6056), 1, - sym_escape_sequence, - ACTIONS(6058), 1, - sym__quoted_content_i_double, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3873), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [192548] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5782), 1, - sym_escape_sequence, - ACTIONS(5784), 1, - sym__quoted_content_i_single, - ACTIONS(6060), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3835), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [192573] = 7, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5776), 1, - sym_escape_sequence, - ACTIONS(5778), 1, - sym__quoted_content_i_double, - ACTIONS(6062), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3834), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [192598] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6064), 1, - anon_sym_SQUOTE, - ACTIONS(6066), 1, - sym_escape_sequence, - ACTIONS(6068), 1, - sym__quoted_content_i_single, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3876), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [192623] = 7, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6070), 1, - anon_sym_DQUOTE, - ACTIONS(6072), 1, - sym_escape_sequence, - ACTIONS(6074), 1, - sym__quoted_content_i_double, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3877), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [192648] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5782), 1, - sym_escape_sequence, - ACTIONS(5784), 1, - sym__quoted_content_i_single, - ACTIONS(6076), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3835), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [192673] = 7, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5776), 1, - sym_escape_sequence, - ACTIONS(5778), 1, - sym__quoted_content_i_double, - ACTIONS(6078), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3834), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [192698] = 7, - ACTIONS(5654), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5656), 1, - sym_escape_sequence, - ACTIONS(5658), 1, - sym__quoted_content_i_slash, - ACTIONS(6080), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4021), 2, - sym_interpolation, - aux_sym__quoted_i_slash_repeat1, - [192723] = 7, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6082), 1, - anon_sym_DQUOTE, - ACTIONS(6084), 1, - sym_escape_sequence, - ACTIONS(6086), 1, - sym__quoted_content_i_double, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3895), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [192748] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6088), 1, - anon_sym_SQUOTE, - ACTIONS(6090), 1, - sym_escape_sequence, - ACTIONS(6092), 1, - sym__quoted_content_i_single, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3896), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [192773] = 7, - ACTIONS(5694), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6094), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(6096), 1, - sym_escape_sequence, - ACTIONS(6098), 1, - sym__quoted_content_i_heredoc_single, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3897), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [192798] = 7, - ACTIONS(5678), 1, - anon_sym_POUND_LBRACE, ACTIONS(6100), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + aux_sym__terminator_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5966), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [232722] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(6102), 1, - sym_escape_sequence, - ACTIONS(6104), 1, - sym__quoted_content_i_heredoc_double, + aux_sym__terminator_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, + ACTIONS(6104), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [232742] = 4, + ACTIONS(5), 1, sym_comment, - STATE(3898), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [192823] = 7, - ACTIONS(5762), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5939), 1, - sym_escape_sequence, - ACTIONS(5941), 1, - sym__quoted_content_i_bar, ACTIONS(6106), 1, - anon_sym_PIPE, + aux_sym__terminator_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4023), 2, - sym_interpolation, - aux_sym__quoted_i_bar_repeat1, - [192848] = 7, - ACTIONS(5662), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5933), 1, - sym_escape_sequence, - ACTIONS(5935), 1, - sym__quoted_content_i_angle, - ACTIONS(6108), 1, - anon_sym_GT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3911), 2, - sym_interpolation, - aux_sym__quoted_i_angle_repeat1, - [192873] = 7, - ACTIONS(5748), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5927), 1, - sym_escape_sequence, - ACTIONS(5929), 1, - sym__quoted_content_i_square, + ACTIONS(6108), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [232762] = 7, ACTIONS(6110), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4046), 2, - sym_interpolation, - aux_sym__quoted_i_square_repeat1, - [192898] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, + anon_sym_RBRACE, ACTIONS(6112), 1, - anon_sym_SQUOTE, + anon_sym_POUND_LBRACE, ACTIONS(6114), 1, sym_escape_sequence, ACTIONS(6116), 1, - sym__quoted_content_i_single, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3880), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [192923] = 7, - ACTIONS(5740), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5921), 1, - sym_escape_sequence, - ACTIONS(5923), 1, sym__quoted_content_i_curly, - ACTIONS(6118), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4050), 2, + STATE(4886), 2, sym_interpolation, aux_sym__quoted_i_curly_repeat1, - [192948] = 7, - ACTIONS(5732), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5915), 1, - sym_escape_sequence, - ACTIONS(5917), 1, - sym__quoted_content_i_parenthesis, + [232787] = 7, + ACTIONS(6118), 1, + anon_sym_SLASH, ACTIONS(6120), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4051), 2, - sym_interpolation, - aux_sym__quoted_i_parenthesis_repeat1, - [192973] = 7, - ACTIONS(5670), 1, anon_sym_POUND_LBRACE, ACTIONS(6122), 1, - anon_sym_DQUOTE, + sym_escape_sequence, ACTIONS(6124), 1, - sym_escape_sequence, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4548), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [232812] = 7, ACTIONS(6126), 1, - sym__quoted_content_i_double, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3881), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [192998] = 7, - ACTIONS(5678), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5680), 1, - sym_escape_sequence, - ACTIONS(5682), 1, - sym__quoted_content_i_heredoc_double, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(6128), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3838), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [193023] = 7, - ACTIONS(5670), 1, anon_sym_POUND_LBRACE, - ACTIONS(5776), 1, - sym_escape_sequence, - ACTIONS(5778), 1, - sym__quoted_content_i_double, ACTIONS(6130), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3834), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [193048] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5782), 1, sym_escape_sequence, - ACTIONS(5784), 1, - sym__quoted_content_i_single, ACTIONS(6132), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3835), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [193073] = 7, - ACTIONS(5694), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5788), 1, - sym_escape_sequence, - ACTIONS(5790), 1, - sym__quoted_content_i_heredoc_single, - ACTIONS(6134), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3852), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [193098] = 7, - ACTIONS(5678), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5680), 1, - sym_escape_sequence, - ACTIONS(5682), 1, sym__quoted_content_i_heredoc_double, - ACTIONS(6136), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3838), 2, + STATE(4483), 2, sym_interpolation, aux_sym__quoted_i_heredoc_double_repeat1, - [193123] = 7, - ACTIONS(5694), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5788), 1, - sym_escape_sequence, - ACTIONS(5790), 1, - sym__quoted_content_i_heredoc_single, - ACTIONS(6138), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3852), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [193148] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5782), 1, - sym_escape_sequence, - ACTIONS(5784), 1, - sym__quoted_content_i_single, - ACTIONS(6140), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3835), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [193173] = 7, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5776), 1, - sym_escape_sequence, - ACTIONS(5778), 1, - sym__quoted_content_i_double, - ACTIONS(6142), 1, + [232837] = 7, + ACTIONS(6134), 1, anon_sym_DQUOTE, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6138), 1, + sym_escape_sequence, + ACTIONS(6140), 1, + sym__quoted_content_i_double, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3834), 2, + STATE(4433), 2, sym_interpolation, aux_sym__quoted_i_double_repeat1, - [193198] = 7, - ACTIONS(5678), 1, - anon_sym_POUND_LBRACE, + [232862] = 7, + ACTIONS(6142), 1, + anon_sym_SQUOTE, ACTIONS(6144), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_LBRACE, ACTIONS(6146), 1, sym_escape_sequence, ACTIONS(6148), 1, - sym__quoted_content_i_heredoc_double, + sym__quoted_content_i_single, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3894), 2, + STATE(4434), 2, sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [193223] = 7, - ACTIONS(5694), 1, - anon_sym_POUND_LBRACE, + aux_sym__quoted_i_single_repeat1, + [232887] = 7, ACTIONS(6150), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(6152), 1, - sym_escape_sequence, + anon_sym_POUND_LBRACE, ACTIONS(6154), 1, - sym__quoted_content_i_heredoc_single, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3899), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [193248] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, + sym_escape_sequence, ACTIONS(6156), 1, - anon_sym_SQUOTE, - ACTIONS(6158), 1, - sym_escape_sequence, - ACTIONS(6160), 1, - sym__quoted_content_i_single, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3900), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [193273] = 7, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6162), 1, - anon_sym_DQUOTE, - ACTIONS(6164), 1, - sym_escape_sequence, - ACTIONS(6166), 1, - sym__quoted_content_i_double, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3901), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [193298] = 7, - ACTIONS(5678), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5680), 1, - sym_escape_sequence, - ACTIONS(5682), 1, - sym__quoted_content_i_heredoc_double, - ACTIONS(6168), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3838), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [193323] = 7, - ACTIONS(5694), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5788), 1, - sym_escape_sequence, - ACTIONS(5790), 1, sym__quoted_content_i_heredoc_single, - ACTIONS(6170), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3852), 2, + STATE(4435), 2, sym_interpolation, aux_sym__quoted_i_heredoc_single_repeat1, - [193348] = 7, - ACTIONS(5686), 1, + [232912] = 7, + ACTIONS(6120), 1, anon_sym_POUND_LBRACE, - ACTIONS(5782), 1, + ACTIONS(6158), 1, + anon_sym_SLASH, + ACTIONS(6160), 1, sym_escape_sequence, - ACTIONS(5784), 1, - sym__quoted_content_i_single, - ACTIONS(6172), 1, - anon_sym_SQUOTE, + ACTIONS(6162), 1, + sym__quoted_content_i_slash, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3835), 2, + STATE(4475), 2, sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [193373] = 7, - ACTIONS(5670), 1, + aux_sym__quoted_i_slash_repeat1, + [232937] = 7, + ACTIONS(6128), 1, anon_sym_POUND_LBRACE, - ACTIONS(5776), 1, - sym_escape_sequence, - ACTIONS(5778), 1, - sym__quoted_content_i_double, - ACTIONS(6174), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3834), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [193398] = 7, - ACTIONS(5678), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6176), 1, + ACTIONS(6164), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(6178), 1, + ACTIONS(6166), 1, sym_escape_sequence, - ACTIONS(6180), 1, + ACTIONS(6168), 1, sym__quoted_content_i_heredoc_double, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -329336,15 +367190,51 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3906), 2, + STATE(4437), 2, sym_interpolation, aux_sym__quoted_i_heredoc_double_repeat1, - [193423] = 7, - ACTIONS(6182), 1, - anon_sym_GT, - ACTIONS(6184), 1, + [232962] = 7, + ACTIONS(6136), 1, anon_sym_POUND_LBRACE, - ACTIONS(6187), 1, + ACTIONS(6170), 1, + anon_sym_DQUOTE, + ACTIONS(6172), 1, + sym_escape_sequence, + ACTIONS(6174), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4436), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [232987] = 7, + ACTIONS(6176), 1, + anon_sym_PIPE, + ACTIONS(6178), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6180), 1, + sym_escape_sequence, + ACTIONS(6182), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4462), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [233012] = 7, + ACTIONS(6184), 1, + anon_sym_GT, + ACTIONS(6186), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6188), 1, sym_escape_sequence, ACTIONS(6190), 1, sym__quoted_content_i_angle, @@ -329354,161 +367244,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3911), 2, + STATE(4460), 2, sym_interpolation, aux_sym__quoted_i_angle_repeat1, - [193448] = 7, - ACTIONS(5694), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6193), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(6195), 1, - sym_escape_sequence, - ACTIONS(6197), 1, - sym__quoted_content_i_heredoc_single, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3907), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [193473] = 7, - ACTIONS(5678), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5680), 1, - sym_escape_sequence, - ACTIONS(5682), 1, - sym__quoted_content_i_heredoc_double, - ACTIONS(6199), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3838), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [193498] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6201), 1, - anon_sym_SQUOTE, - ACTIONS(6203), 1, - sym_escape_sequence, - ACTIONS(6205), 1, - sym__quoted_content_i_single, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3908), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [193523] = 7, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6207), 1, - anon_sym_DQUOTE, - ACTIONS(6209), 1, - sym_escape_sequence, - ACTIONS(6211), 1, - sym__quoted_content_i_double, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3909), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [193548] = 7, - ACTIONS(5678), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5680), 1, - sym_escape_sequence, - ACTIONS(5682), 1, - sym__quoted_content_i_heredoc_double, - ACTIONS(6213), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3838), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [193573] = 7, - ACTIONS(5694), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5788), 1, - sym_escape_sequence, - ACTIONS(5790), 1, - sym__quoted_content_i_heredoc_single, - ACTIONS(6215), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3852), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [193598] = 7, - ACTIONS(5732), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6217), 1, - anon_sym_RPAREN, - ACTIONS(6219), 1, - sym_escape_sequence, - ACTIONS(6221), 1, - sym__quoted_content_i_parenthesis, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3956), 2, - sym_interpolation, - aux_sym__quoted_i_parenthesis_repeat1, - [193623] = 7, - ACTIONS(5740), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6223), 1, - anon_sym_RBRACE, - ACTIONS(6225), 1, - sym_escape_sequence, - ACTIONS(6227), 1, - sym__quoted_content_i_curly, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3957), 2, - sym_interpolation, - aux_sym__quoted_i_curly_repeat1, - [193648] = 7, - ACTIONS(5748), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6229), 1, + [233037] = 7, + ACTIONS(6192), 1, anon_sym_RBRACK, - ACTIONS(6231), 1, + ACTIONS(6194), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6196), 1, sym_escape_sequence, - ACTIONS(6233), 1, + ACTIONS(6198), 1, sym__quoted_content_i_square, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -329516,17 +367262,71 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3958), 2, + STATE(4459), 2, sym_interpolation, aux_sym__quoted_i_square_repeat1, - [193673] = 7, - ACTIONS(5662), 1, + [233062] = 7, + ACTIONS(6200), 1, + anon_sym_RPAREN, + ACTIONS(6202), 1, anon_sym_POUND_LBRACE, - ACTIONS(6235), 1, - anon_sym_GT, - ACTIONS(6237), 1, + ACTIONS(6204), 1, sym_escape_sequence, - ACTIONS(6239), 1, + ACTIONS(6206), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4453), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [233087] = 7, + ACTIONS(6112), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6208), 1, + anon_sym_RBRACE, + ACTIONS(6210), 1, + sym_escape_sequence, + ACTIONS(6212), 1, + sym__quoted_content_i_curly, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4454), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [233112] = 7, + ACTIONS(6194), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6214), 1, + anon_sym_RBRACK, + ACTIONS(6216), 1, + sym_escape_sequence, + ACTIONS(6218), 1, + sym__quoted_content_i_square, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4455), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [233137] = 7, + ACTIONS(6186), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6220), 1, + anon_sym_GT, + ACTIONS(6222), 1, + sym_escape_sequence, + ACTIONS(6224), 1, sym__quoted_content_i_angle, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -329534,17 +367334,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3959), 2, + STATE(4456), 2, sym_interpolation, aux_sym__quoted_i_angle_repeat1, - [193698] = 7, - ACTIONS(5762), 1, + [233162] = 7, + ACTIONS(6178), 1, anon_sym_POUND_LBRACE, - ACTIONS(6241), 1, + ACTIONS(6226), 1, anon_sym_PIPE, - ACTIONS(6243), 1, + ACTIONS(6228), 1, sym_escape_sequence, - ACTIONS(6245), 1, + ACTIONS(6230), 1, sym__quoted_content_i_bar, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -329552,17 +367352,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3960), 2, + STATE(4457), 2, sym_interpolation, aux_sym__quoted_i_bar_repeat1, - [193723] = 7, - ACTIONS(5654), 1, + [233187] = 7, + ACTIONS(6120), 1, anon_sym_POUND_LBRACE, - ACTIONS(6247), 1, + ACTIONS(6232), 1, anon_sym_SLASH, - ACTIONS(6249), 1, + ACTIONS(6234), 1, sym_escape_sequence, - ACTIONS(6251), 1, + ACTIONS(6236), 1, sym__quoted_content_i_slash, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -329570,89 +367370,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3961), 2, + STATE(4458), 2, sym_interpolation, aux_sym__quoted_i_slash_repeat1, - [193748] = 7, - ACTIONS(5686), 1, + [233212] = 7, + ACTIONS(6144), 1, anon_sym_POUND_LBRACE, - ACTIONS(5782), 1, - sym_escape_sequence, - ACTIONS(5784), 1, - sym__quoted_content_i_single, - ACTIONS(6253), 1, + ACTIONS(6238), 1, anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3835), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [193773] = 7, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5776), 1, + ACTIONS(6240), 1, sym_escape_sequence, - ACTIONS(5778), 1, - sym__quoted_content_i_double, - ACTIONS(6255), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3834), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [193798] = 7, - ACTIONS(5678), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6257), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(6259), 1, - sym_escape_sequence, - ACTIONS(6261), 1, - sym__quoted_content_i_heredoc_double, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3916), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [193823] = 7, - ACTIONS(5694), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6263), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(6265), 1, - sym_escape_sequence, - ACTIONS(6267), 1, - sym__quoted_content_i_heredoc_single, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3917), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [193848] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6269), 1, - anon_sym_SQUOTE, - ACTIONS(6271), 1, - sym_escape_sequence, - ACTIONS(6273), 1, + ACTIONS(6242), 1, sym__quoted_content_i_single, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -329660,125 +367388,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3924), 2, + STATE(4438), 2, sym_interpolation, aux_sym__quoted_i_single_repeat1, - [193873] = 7, - ACTIONS(5670), 1, + [233237] = 7, + ACTIONS(6152), 1, anon_sym_POUND_LBRACE, - ACTIONS(6275), 1, - anon_sym_DQUOTE, - ACTIONS(6277), 1, - sym_escape_sequence, - ACTIONS(6279), 1, - sym__quoted_content_i_double, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3925), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [193898] = 7, - ACTIONS(5678), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5680), 1, - sym_escape_sequence, - ACTIONS(5682), 1, - sym__quoted_content_i_heredoc_double, - ACTIONS(6281), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3838), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [193923] = 7, - ACTIONS(5694), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5788), 1, - sym_escape_sequence, - ACTIONS(5790), 1, - sym__quoted_content_i_heredoc_single, - ACTIONS(6283), 1, + ACTIONS(6244), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3852), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [193948] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5782), 1, + ACTIONS(6246), 1, sym_escape_sequence, - ACTIONS(5784), 1, - sym__quoted_content_i_single, - ACTIONS(6285), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3835), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [193973] = 7, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5776), 1, - sym_escape_sequence, - ACTIONS(5778), 1, - sym__quoted_content_i_double, - ACTIONS(6287), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3834), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [193998] = 7, - ACTIONS(5678), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6289), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(6291), 1, - sym_escape_sequence, - ACTIONS(6293), 1, - sym__quoted_content_i_heredoc_double, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3930), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [194023] = 7, - ACTIONS(5694), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6295), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(6297), 1, - sym_escape_sequence, - ACTIONS(6299), 1, + ACTIONS(6248), 1, sym__quoted_content_i_heredoc_single, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -329786,125 +367406,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3931), 2, + STATE(4446), 2, sym_interpolation, aux_sym__quoted_i_heredoc_single_repeat1, - [194048] = 7, - ACTIONS(5686), 1, + [233262] = 7, + ACTIONS(6128), 1, anon_sym_POUND_LBRACE, - ACTIONS(6301), 1, - anon_sym_SQUOTE, - ACTIONS(6303), 1, - sym_escape_sequence, - ACTIONS(6305), 1, - sym__quoted_content_i_single, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3932), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [194073] = 7, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6307), 1, - anon_sym_DQUOTE, - ACTIONS(6309), 1, - sym_escape_sequence, - ACTIONS(6311), 1, - sym__quoted_content_i_double, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3933), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [194098] = 7, - ACTIONS(5678), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5680), 1, - sym_escape_sequence, - ACTIONS(5682), 1, - sym__quoted_content_i_heredoc_double, - ACTIONS(6313), 1, + ACTIONS(6250), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3838), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [194123] = 7, - ACTIONS(5694), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5788), 1, + ACTIONS(6252), 1, sym_escape_sequence, - ACTIONS(5790), 1, - sym__quoted_content_i_heredoc_single, - ACTIONS(6315), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3852), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [194148] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5782), 1, - sym_escape_sequence, - ACTIONS(5784), 1, - sym__quoted_content_i_single, - ACTIONS(6317), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3835), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [194173] = 7, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5776), 1, - sym_escape_sequence, - ACTIONS(5778), 1, - sym__quoted_content_i_double, - ACTIONS(6319), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3834), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [194198] = 7, - ACTIONS(5678), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6321), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(6323), 1, - sym_escape_sequence, - ACTIONS(6325), 1, + ACTIONS(6254), 1, sym__quoted_content_i_heredoc_double, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -329912,251 +367424,395 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3938), 2, + STATE(4447), 2, sym_interpolation, aux_sym__quoted_i_heredoc_double_repeat1, - [194223] = 7, - ACTIONS(5694), 1, + [233287] = 7, + ACTIONS(6112), 1, anon_sym_POUND_LBRACE, - ACTIONS(6327), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(6329), 1, + ACTIONS(6256), 1, + anon_sym_RBRACE, + ACTIONS(6258), 1, sym_escape_sequence, - ACTIONS(6331), 1, - sym__quoted_content_i_heredoc_single, + ACTIONS(6260), 1, + sym__quoted_content_i_curly, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3939), 2, + STATE(4452), 2, sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [194248] = 7, - ACTIONS(5686), 1, + aux_sym__quoted_i_curly_repeat1, + [233312] = 7, + ACTIONS(6202), 1, anon_sym_POUND_LBRACE, - ACTIONS(6333), 1, - anon_sym_SQUOTE, - ACTIONS(6335), 1, + ACTIONS(6262), 1, + anon_sym_RPAREN, + ACTIONS(6264), 1, sym_escape_sequence, - ACTIONS(6337), 1, - sym__quoted_content_i_single, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3940), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [194273] = 7, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6339), 1, - anon_sym_DQUOTE, - ACTIONS(6341), 1, - sym_escape_sequence, - ACTIONS(6343), 1, - sym__quoted_content_i_double, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3941), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [194298] = 7, - ACTIONS(5678), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5680), 1, - sym_escape_sequence, - ACTIONS(5682), 1, - sym__quoted_content_i_heredoc_double, - ACTIONS(6345), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3838), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [194323] = 7, - ACTIONS(5694), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5788), 1, - sym_escape_sequence, - ACTIONS(5790), 1, - sym__quoted_content_i_heredoc_single, - ACTIONS(6347), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3852), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [194348] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5782), 1, - sym_escape_sequence, - ACTIONS(5784), 1, - sym__quoted_content_i_single, - ACTIONS(6349), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3835), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [194373] = 7, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5776), 1, - sym_escape_sequence, - ACTIONS(5778), 1, - sym__quoted_content_i_double, - ACTIONS(6351), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3834), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [194398] = 7, - ACTIONS(5678), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6353), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(6355), 1, - sym_escape_sequence, - ACTIONS(6357), 1, - sym__quoted_content_i_heredoc_double, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3946), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [194423] = 7, - ACTIONS(5694), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6359), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(6361), 1, - sym_escape_sequence, - ACTIONS(6363), 1, - sym__quoted_content_i_heredoc_single, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3947), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [194448] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6365), 1, - anon_sym_SQUOTE, - ACTIONS(6367), 1, - sym_escape_sequence, - ACTIONS(6369), 1, - sym__quoted_content_i_single, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3948), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [194473] = 7, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6371), 1, - anon_sym_DQUOTE, - ACTIONS(6373), 1, - sym_escape_sequence, - ACTIONS(6375), 1, - sym__quoted_content_i_double, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3949), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [194498] = 7, - ACTIONS(5678), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5680), 1, - sym_escape_sequence, - ACTIONS(5682), 1, - sym__quoted_content_i_heredoc_double, - ACTIONS(6377), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3838), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [194523] = 7, - ACTIONS(5694), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5788), 1, - sym_escape_sequence, - ACTIONS(5790), 1, - sym__quoted_content_i_heredoc_single, - ACTIONS(6379), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3852), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [194548] = 7, - ACTIONS(5732), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5915), 1, - sym_escape_sequence, - ACTIONS(5917), 1, + ACTIONS(6266), 1, sym__quoted_content_i_parenthesis, - ACTIONS(6381), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4451), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [233337] = 7, + ACTIONS(6120), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6268), 1, + anon_sym_SLASH, + ACTIONS(6270), 1, + sym_escape_sequence, + ACTIONS(6272), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4498), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [233362] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6274), 1, + anon_sym_DQUOTE, + ACTIONS(6276), 1, + sym_escape_sequence, + ACTIONS(6278), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4507), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [233387] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6280), 1, + anon_sym_SQUOTE, + ACTIONS(6282), 1, + sym_escape_sequence, + ACTIONS(6284), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4481), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [233412] = 7, + ACTIONS(6152), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6286), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6288), 1, + sym_escape_sequence, + ACTIONS(6290), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4482), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [233437] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6276), 1, + sym_escape_sequence, + ACTIONS(6278), 1, + sym__quoted_content_i_double, + ACTIONS(6292), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4507), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [233462] = 7, + ACTIONS(6128), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6130), 1, + sym_escape_sequence, + ACTIONS(6132), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(6294), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4483), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [233487] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6282), 1, + sym_escape_sequence, + ACTIONS(6284), 1, + sym__quoted_content_i_single, + ACTIONS(6296), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4481), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [233512] = 7, + ACTIONS(6178), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6298), 1, + anon_sym_PIPE, + ACTIONS(6300), 1, + sym_escape_sequence, + ACTIONS(6302), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4489), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [233537] = 7, + ACTIONS(6186), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6304), 1, + anon_sym_GT, + ACTIONS(6306), 1, + sym_escape_sequence, + ACTIONS(6308), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4484), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [233562] = 7, + ACTIONS(6128), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6130), 1, + sym_escape_sequence, + ACTIONS(6132), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(6310), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4483), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [233587] = 7, + ACTIONS(6202), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6312), 1, + anon_sym_RPAREN, + ACTIONS(6314), 1, + sym_escape_sequence, + ACTIONS(6316), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4585), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [233612] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6282), 1, + sym_escape_sequence, + ACTIONS(6284), 1, + sym__quoted_content_i_single, + ACTIONS(6318), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4481), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [233637] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6276), 1, + sym_escape_sequence, + ACTIONS(6278), 1, + sym__quoted_content_i_double, + ACTIONS(6320), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4507), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [233662] = 7, + ACTIONS(6152), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6288), 1, + sym_escape_sequence, + ACTIONS(6290), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(6322), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4482), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [233687] = 7, + ACTIONS(6152), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6288), 1, + sym_escape_sequence, + ACTIONS(6290), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(6324), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4482), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [233712] = 7, + ACTIONS(6128), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6130), 1, + sym_escape_sequence, + ACTIONS(6132), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(6326), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4483), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [233737] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6282), 1, + sym_escape_sequence, + ACTIONS(6284), 1, + sym__quoted_content_i_single, + ACTIONS(6328), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4481), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [233762] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6276), 1, + sym_escape_sequence, + ACTIONS(6278), 1, + sym__quoted_content_i_double, + ACTIONS(6330), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4507), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [233787] = 7, + ACTIONS(6128), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6332), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6334), 1, + sym_escape_sequence, + ACTIONS(6336), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4411), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [233812] = 7, + ACTIONS(6202), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6314), 1, + sym_escape_sequence, + ACTIONS(6316), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(6338), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -330164,17 +367820,53 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4051), 2, + STATE(4585), 2, sym_interpolation, aux_sym__quoted_i_parenthesis_repeat1, - [194573] = 7, - ACTIONS(5740), 1, + [233837] = 7, + ACTIONS(6112), 1, anon_sym_POUND_LBRACE, - ACTIONS(5921), 1, + ACTIONS(6340), 1, + anon_sym_RBRACE, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(5923), 1, + ACTIONS(6344), 1, sym__quoted_content_i_curly, - ACTIONS(6383), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4582), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [233862] = 7, + ACTIONS(6202), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6314), 1, + sym_escape_sequence, + ACTIONS(6316), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(6346), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4585), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [233887] = 7, + ACTIONS(6112), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6342), 1, + sym_escape_sequence, + ACTIONS(6344), 1, + sym__quoted_content_i_curly, + ACTIONS(6348), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -330182,17 +367874,89 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4050), 2, + STATE(4582), 2, sym_interpolation, aux_sym__quoted_i_curly_repeat1, - [194598] = 7, - ACTIONS(5748), 1, + [233912] = 7, + ACTIONS(6194), 1, anon_sym_POUND_LBRACE, - ACTIONS(5927), 1, + ACTIONS(6350), 1, + anon_sym_RBRACK, + ACTIONS(6352), 1, sym_escape_sequence, - ACTIONS(5929), 1, + ACTIONS(6354), 1, sym__quoted_content_i_square, - ACTIONS(6385), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4561), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [233937] = 7, + ACTIONS(6186), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6356), 1, + anon_sym_GT, + ACTIONS(6358), 1, + sym_escape_sequence, + ACTIONS(6360), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4552), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [233962] = 7, + ACTIONS(6178), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6362), 1, + anon_sym_PIPE, + ACTIONS(6364), 1, + sym_escape_sequence, + ACTIONS(6366), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4549), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [233987] = 7, + ACTIONS(6120), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6122), 1, + sym_escape_sequence, + ACTIONS(6124), 1, + sym__quoted_content_i_slash, + ACTIONS(6368), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4548), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [234012] = 7, + ACTIONS(6194), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6352), 1, + sym_escape_sequence, + ACTIONS(6354), 1, + sym__quoted_content_i_square, + ACTIONS(6370), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -330200,17 +367964,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4046), 2, + STATE(4561), 2, sym_interpolation, aux_sym__quoted_i_square_repeat1, - [194623] = 7, - ACTIONS(5662), 1, + [234037] = 7, + ACTIONS(6186), 1, anon_sym_POUND_LBRACE, - ACTIONS(5933), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(5935), 1, + ACTIONS(6360), 1, sym__quoted_content_i_angle, - ACTIONS(6387), 1, + ACTIONS(6372), 1, anon_sym_GT, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -330218,17 +367982,35 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3911), 2, + STATE(4552), 2, sym_interpolation, aux_sym__quoted_i_angle_repeat1, - [194648] = 7, - ACTIONS(5762), 1, + [234062] = 7, + ACTIONS(6202), 1, anon_sym_POUND_LBRACE, - ACTIONS(5939), 1, + ACTIONS(6374), 1, + anon_sym_RPAREN, + ACTIONS(6376), 1, sym_escape_sequence, - ACTIONS(5941), 1, + ACTIONS(6378), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4805), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [234087] = 7, + ACTIONS(6178), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6364), 1, + sym_escape_sequence, + ACTIONS(6366), 1, sym__quoted_content_i_bar, - ACTIONS(6389), 1, + ACTIONS(6380), 1, anon_sym_PIPE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -330236,395 +368018,107 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4023), 2, + STATE(4549), 2, sym_interpolation, aux_sym__quoted_i_bar_repeat1, - [194673] = 7, - ACTIONS(5654), 1, + [234112] = 7, + ACTIONS(6128), 1, anon_sym_POUND_LBRACE, - ACTIONS(5656), 1, + ACTIONS(6382), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6384), 1, sym_escape_sequence, - ACTIONS(5658), 1, - sym__quoted_content_i_slash, - ACTIONS(6391), 1, + ACTIONS(6386), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4441), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [234137] = 7, + ACTIONS(6112), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6388), 1, + anon_sym_RBRACE, + ACTIONS(6390), 1, + sym_escape_sequence, + ACTIONS(6392), 1, + sym__quoted_content_i_curly, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4715), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [234162] = 7, + ACTIONS(6194), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6394), 1, + anon_sym_RBRACK, + ACTIONS(6396), 1, + sym_escape_sequence, + ACTIONS(6398), 1, + sym__quoted_content_i_square, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4734), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [234187] = 7, + ACTIONS(6186), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6400), 1, + anon_sym_GT, + ACTIONS(6402), 1, + sym_escape_sequence, + ACTIONS(6404), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4757), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [234212] = 7, + ACTIONS(6178), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6406), 1, + anon_sym_PIPE, + ACTIONS(6408), 1, + sym_escape_sequence, + ACTIONS(6410), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4761), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [234237] = 7, + ACTIONS(6120), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6412), 1, anon_sym_SLASH, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4021), 2, - sym_interpolation, - aux_sym__quoted_i_slash_repeat1, - [194698] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5782), 1, + ACTIONS(6414), 1, sym_escape_sequence, - ACTIONS(5784), 1, - sym__quoted_content_i_single, - ACTIONS(6393), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3835), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [194723] = 7, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5776), 1, - sym_escape_sequence, - ACTIONS(5778), 1, - sym__quoted_content_i_double, - ACTIONS(6395), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3834), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [194748] = 7, - ACTIONS(5678), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6397), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(6399), 1, - sym_escape_sequence, - ACTIONS(6401), 1, - sym__quoted_content_i_heredoc_double, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3954), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [194773] = 7, - ACTIONS(5694), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6403), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(6405), 1, - sym_escape_sequence, - ACTIONS(6407), 1, - sym__quoted_content_i_heredoc_single, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3955), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [194798] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6409), 1, - anon_sym_SQUOTE, - ACTIONS(6411), 1, - sym_escape_sequence, - ACTIONS(6413), 1, - sym__quoted_content_i_single, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3962), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [194823] = 7, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6415), 1, - anon_sym_DQUOTE, - ACTIONS(6417), 1, - sym_escape_sequence, - ACTIONS(6419), 1, - sym__quoted_content_i_double, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3963), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [194848] = 7, - ACTIONS(5678), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5680), 1, - sym_escape_sequence, - ACTIONS(5682), 1, - sym__quoted_content_i_heredoc_double, - ACTIONS(6421), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3838), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [194873] = 7, - ACTIONS(5694), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5788), 1, - sym_escape_sequence, - ACTIONS(5790), 1, - sym__quoted_content_i_heredoc_single, - ACTIONS(6423), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3852), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [194898] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5782), 1, - sym_escape_sequence, - ACTIONS(5784), 1, - sym__quoted_content_i_single, - ACTIONS(6425), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3835), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [194923] = 7, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5776), 1, - sym_escape_sequence, - ACTIONS(5778), 1, - sym__quoted_content_i_double, - ACTIONS(6427), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3834), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [194948] = 7, - ACTIONS(5678), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6429), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(6431), 1, - sym_escape_sequence, - ACTIONS(6433), 1, - sym__quoted_content_i_heredoc_double, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3968), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [194973] = 7, - ACTIONS(5694), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6435), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(6437), 1, - sym_escape_sequence, - ACTIONS(6439), 1, - sym__quoted_content_i_heredoc_single, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3969), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [194998] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6441), 1, - anon_sym_SQUOTE, - ACTIONS(6443), 1, - sym_escape_sequence, - ACTIONS(6445), 1, - sym__quoted_content_i_single, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3970), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [195023] = 7, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6447), 1, - anon_sym_DQUOTE, - ACTIONS(6449), 1, - sym_escape_sequence, - ACTIONS(6451), 1, - sym__quoted_content_i_double, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3971), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [195048] = 7, - ACTIONS(5678), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5680), 1, - sym_escape_sequence, - ACTIONS(5682), 1, - sym__quoted_content_i_heredoc_double, - ACTIONS(6453), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3838), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [195073] = 7, - ACTIONS(5694), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5788), 1, - sym_escape_sequence, - ACTIONS(5790), 1, - sym__quoted_content_i_heredoc_single, - ACTIONS(6455), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3852), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [195098] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5782), 1, - sym_escape_sequence, - ACTIONS(5784), 1, - sym__quoted_content_i_single, - ACTIONS(6457), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3835), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [195123] = 7, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5776), 1, - sym_escape_sequence, - ACTIONS(5778), 1, - sym__quoted_content_i_double, - ACTIONS(6459), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3834), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [195148] = 7, - ACTIONS(5678), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6461), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(6463), 1, - sym_escape_sequence, - ACTIONS(6465), 1, - sym__quoted_content_i_heredoc_double, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3976), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [195173] = 7, - ACTIONS(5694), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6467), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(6469), 1, - sym_escape_sequence, - ACTIONS(6471), 1, - sym__quoted_content_i_heredoc_single, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3977), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [195198] = 7, - ACTIONS(5654), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6473), 1, - anon_sym_SLASH, - ACTIONS(6475), 1, - sym_escape_sequence, - ACTIONS(6477), 1, + ACTIONS(6416), 1, sym__quoted_content_i_slash, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -330632,1133 +368126,1205 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3882), 2, + STATE(4762), 2, sym_interpolation, aux_sym__quoted_i_slash_repeat1, - [195223] = 7, - ACTIONS(5762), 1, + [234262] = 7, + ACTIONS(6152), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6418), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6420), 1, + sym_escape_sequence, + ACTIONS(6422), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4445), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [234287] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6424), 1, + anon_sym_SQUOTE, + ACTIONS(6426), 1, + sym_escape_sequence, + ACTIONS(6428), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4448), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [234312] = 7, + ACTIONS(6152), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6430), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6432), 1, + sym_escape_sequence, + ACTIONS(6434), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4724), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [234337] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6436), 1, + anon_sym_SQUOTE, + ACTIONS(6438), 1, + sym_escape_sequence, + ACTIONS(6440), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4443), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [234362] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6442), 1, + anon_sym_DQUOTE, + ACTIONS(6444), 1, + sym_escape_sequence, + ACTIONS(6446), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4444), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [234387] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6448), 1, + anon_sym_DQUOTE, + ACTIONS(6450), 1, + sym_escape_sequence, + ACTIONS(6452), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4449), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [234412] = 7, + ACTIONS(6120), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6122), 1, + sym_escape_sequence, + ACTIONS(6124), 1, + sym__quoted_content_i_slash, + ACTIONS(6454), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4548), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [234437] = 7, + ACTIONS(6194), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6456), 1, + anon_sym_RBRACK, + ACTIONS(6458), 1, + sym_escape_sequence, + ACTIONS(6460), 1, + sym__quoted_content_i_square, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4480), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [234462] = 7, + ACTIONS(6112), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6462), 1, + anon_sym_RBRACE, + ACTIONS(6464), 1, + sym_escape_sequence, + ACTIONS(6466), 1, + sym__quoted_content_i_curly, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4479), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [234487] = 7, + ACTIONS(6202), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6314), 1, + sym_escape_sequence, + ACTIONS(6316), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(6468), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4585), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [234512] = 7, + ACTIONS(6112), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6342), 1, + sym_escape_sequence, + ACTIONS(6344), 1, + sym__quoted_content_i_curly, + ACTIONS(6470), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4582), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [234537] = 7, + ACTIONS(6194), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6352), 1, + sym_escape_sequence, + ACTIONS(6354), 1, + sym__quoted_content_i_square, + ACTIONS(6472), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4561), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [234562] = 7, + ACTIONS(6474), 1, + anon_sym_SQUOTE, + ACTIONS(6476), 1, anon_sym_POUND_LBRACE, ACTIONS(6479), 1, - anon_sym_PIPE, - ACTIONS(6481), 1, sym_escape_sequence, - ACTIONS(6483), 1, - sym__quoted_content_i_bar, + ACTIONS(6482), 1, + sym__quoted_content_i_single, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3887), 2, + STATE(4481), 2, sym_interpolation, - aux_sym__quoted_i_bar_repeat1, - [195248] = 7, - ACTIONS(5662), 1, - anon_sym_POUND_LBRACE, + aux_sym__quoted_i_single_repeat1, + [234587] = 7, ACTIONS(6485), 1, - anon_sym_GT, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(6487), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6490), 1, sym_escape_sequence, - ACTIONS(6489), 1, - sym__quoted_content_i_angle, + ACTIONS(6493), 1, + sym__quoted_content_i_heredoc_single, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3888), 2, + STATE(4482), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [234612] = 7, + ACTIONS(6496), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6498), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6501), 1, + sym_escape_sequence, + ACTIONS(6504), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4483), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [234637] = 7, + ACTIONS(6186), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6358), 1, + sym_escape_sequence, + ACTIONS(6360), 1, + sym__quoted_content_i_angle, + ACTIONS(6507), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4552), 2, sym_interpolation, aux_sym__quoted_i_angle_repeat1, - [195273] = 7, - ACTIONS(5748), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6491), 1, - anon_sym_RBRACK, - ACTIONS(6493), 1, - sym_escape_sequence, - ACTIONS(6495), 1, - sym__quoted_content_i_square, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3889), 2, - sym_interpolation, - aux_sym__quoted_i_square_repeat1, - [195298] = 7, - ACTIONS(5740), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6497), 1, - anon_sym_RBRACE, - ACTIONS(6499), 1, - sym_escape_sequence, - ACTIONS(6501), 1, - sym__quoted_content_i_curly, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3891), 2, - sym_interpolation, - aux_sym__quoted_i_curly_repeat1, - [195323] = 7, - ACTIONS(5732), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6503), 1, - anon_sym_RPAREN, - ACTIONS(6505), 1, - sym_escape_sequence, - ACTIONS(6507), 1, - sym__quoted_content_i_parenthesis, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3892), 2, - sym_interpolation, - aux_sym__quoted_i_parenthesis_repeat1, - [195348] = 7, - ACTIONS(5686), 1, + [234662] = 7, + ACTIONS(6202), 1, anon_sym_POUND_LBRACE, ACTIONS(6509), 1, - anon_sym_SQUOTE, + anon_sym_RPAREN, ACTIONS(6511), 1, sym_escape_sequence, ACTIONS(6513), 1, - sym__quoted_content_i_single, + sym__quoted_content_i_parenthesis, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3978), 2, + STATE(4829), 2, sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [195373] = 7, - ACTIONS(5670), 1, + aux_sym__quoted_i_parenthesis_repeat1, + [234687] = 7, + ACTIONS(6202), 1, anon_sym_POUND_LBRACE, ACTIONS(6515), 1, - anon_sym_DQUOTE, + anon_sym_RPAREN, ACTIONS(6517), 1, sym_escape_sequence, ACTIONS(6519), 1, - sym__quoted_content_i_double, + sym__quoted_content_i_parenthesis, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3979), 2, + STATE(4478), 2, sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [195398] = 7, - ACTIONS(5678), 1, + aux_sym__quoted_i_parenthesis_repeat1, + [234712] = 7, + ACTIONS(6112), 1, anon_sym_POUND_LBRACE, - ACTIONS(5680), 1, - sym_escape_sequence, - ACTIONS(5682), 1, - sym__quoted_content_i_heredoc_double, ACTIONS(6521), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3838), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [195423] = 7, - ACTIONS(5694), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5788), 1, - sym_escape_sequence, - ACTIONS(5790), 1, - sym__quoted_content_i_heredoc_single, + anon_sym_RBRACE, ACTIONS(6523), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3852), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [195448] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5782), 1, sym_escape_sequence, - ACTIONS(5784), 1, - sym__quoted_content_i_single, ACTIONS(6525), 1, - anon_sym_SQUOTE, + sym__quoted_content_i_curly, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3835), 2, + STATE(4818), 2, sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [195473] = 7, - ACTIONS(5670), 1, + aux_sym__quoted_i_curly_repeat1, + [234737] = 7, + ACTIONS(6194), 1, anon_sym_POUND_LBRACE, - ACTIONS(5776), 1, - sym_escape_sequence, - ACTIONS(5778), 1, - sym__quoted_content_i_double, ACTIONS(6527), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3834), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [195498] = 7, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, + anon_sym_RBRACK, ACTIONS(6529), 1, - anon_sym_DQUOTE, - ACTIONS(6531), 1, sym_escape_sequence, - ACTIONS(6533), 1, - sym__quoted_content_i_double, + ACTIONS(6531), 1, + sym__quoted_content_i_square, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4006), 2, + STATE(4817), 2, sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [195523] = 7, - ACTIONS(5686), 1, + aux_sym__quoted_i_square_repeat1, + [234762] = 7, + ACTIONS(6178), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6364), 1, + sym_escape_sequence, + ACTIONS(6366), 1, + sym__quoted_content_i_bar, + ACTIONS(6533), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4549), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [234787] = 7, + ACTIONS(6186), 1, anon_sym_POUND_LBRACE, ACTIONS(6535), 1, - anon_sym_SQUOTE, + anon_sym_GT, ACTIONS(6537), 1, sym_escape_sequence, ACTIONS(6539), 1, - sym__quoted_content_i_single, + sym__quoted_content_i_angle, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4007), 2, + STATE(4816), 2, sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [195548] = 7, - ACTIONS(5694), 1, + aux_sym__quoted_i_angle_repeat1, + [234812] = 7, + ACTIONS(6136), 1, anon_sym_POUND_LBRACE, ACTIONS(6541), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE, ACTIONS(6543), 1, sym_escape_sequence, ACTIONS(6545), 1, - sym__quoted_content_i_heredoc_single, + sym__quoted_content_i_double, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4008), 2, + STATE(4503), 2, sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [195573] = 7, - ACTIONS(5678), 1, + aux_sym__quoted_i_double_repeat1, + [234837] = 7, + ACTIONS(6144), 1, anon_sym_POUND_LBRACE, ACTIONS(6547), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SQUOTE, ACTIONS(6549), 1, sym_escape_sequence, ACTIONS(6551), 1, - sym__quoted_content_i_heredoc_double, + sym__quoted_content_i_single, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4009), 2, + STATE(4504), 2, sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [195598] = 7, - ACTIONS(5678), 1, + aux_sym__quoted_i_single_repeat1, + [234862] = 7, + ACTIONS(6152), 1, anon_sym_POUND_LBRACE, ACTIONS(6553), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(6555), 1, sym_escape_sequence, ACTIONS(6557), 1, - sym__quoted_content_i_heredoc_double, + sym__quoted_content_i_heredoc_single, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3990), 2, + STATE(4505), 2, sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [195623] = 7, - ACTIONS(5694), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + [234887] = 7, + ACTIONS(6128), 1, anon_sym_POUND_LBRACE, ACTIONS(6559), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(6561), 1, sym_escape_sequence, ACTIONS(6563), 1, - sym__quoted_content_i_heredoc_single, + sym__quoted_content_i_heredoc_double, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3991), 2, + STATE(4506), 2, sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [195648] = 7, - ACTIONS(5686), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + [234912] = 7, + ACTIONS(6178), 1, anon_sym_POUND_LBRACE, ACTIONS(6565), 1, - anon_sym_SQUOTE, + anon_sym_PIPE, ACTIONS(6567), 1, sym_escape_sequence, ACTIONS(6569), 1, - sym__quoted_content_i_single, + sym__quoted_content_i_bar, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3992), 2, + STATE(4814), 2, sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [195673] = 7, - ACTIONS(5670), 1, + aux_sym__quoted_i_bar_repeat1, + [234937] = 7, + ACTIONS(6120), 1, anon_sym_POUND_LBRACE, + ACTIONS(6122), 1, + sym_escape_sequence, + ACTIONS(6124), 1, + sym__quoted_content_i_slash, ACTIONS(6571), 1, - anon_sym_DQUOTE, - ACTIONS(6573), 1, - sym_escape_sequence, - ACTIONS(6575), 1, - sym__quoted_content_i_double, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3993), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [195698] = 7, - ACTIONS(5678), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5680), 1, - sym_escape_sequence, - ACTIONS(5682), 1, - sym__quoted_content_i_heredoc_double, - ACTIONS(6577), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3838), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [195723] = 7, - ACTIONS(5694), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5788), 1, - sym_escape_sequence, - ACTIONS(5790), 1, - sym__quoted_content_i_heredoc_single, - ACTIONS(6579), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3852), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [195748] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5782), 1, - sym_escape_sequence, - ACTIONS(5784), 1, - sym__quoted_content_i_single, - ACTIONS(6581), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3835), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [195773] = 7, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5776), 1, - sym_escape_sequence, - ACTIONS(5778), 1, - sym__quoted_content_i_double, - ACTIONS(6583), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3834), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [195798] = 7, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5776), 1, - sym_escape_sequence, - ACTIONS(5778), 1, - sym__quoted_content_i_double, - ACTIONS(6585), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3834), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [195823] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5782), 1, - sym_escape_sequence, - ACTIONS(5784), 1, - sym__quoted_content_i_single, - ACTIONS(6587), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3835), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [195848] = 7, - ACTIONS(5694), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5788), 1, - sym_escape_sequence, - ACTIONS(5790), 1, - sym__quoted_content_i_heredoc_single, - ACTIONS(6589), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3852), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [195873] = 7, - ACTIONS(5678), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5680), 1, - sym_escape_sequence, - ACTIONS(5682), 1, - sym__quoted_content_i_heredoc_double, - ACTIONS(6591), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3838), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [195898] = 7, - ACTIONS(5678), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6593), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(6595), 1, - sym_escape_sequence, - ACTIONS(6597), 1, - sym__quoted_content_i_heredoc_double, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4002), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [195923] = 7, - ACTIONS(5694), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6599), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(6601), 1, - sym_escape_sequence, - ACTIONS(6603), 1, - sym__quoted_content_i_heredoc_single, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4003), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [195948] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6605), 1, - anon_sym_SQUOTE, - ACTIONS(6607), 1, - sym_escape_sequence, - ACTIONS(6609), 1, - sym__quoted_content_i_single, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4004), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [195973] = 7, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6611), 1, - anon_sym_DQUOTE, - ACTIONS(6613), 1, - sym_escape_sequence, - ACTIONS(6615), 1, - sym__quoted_content_i_double, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4005), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [195998] = 7, - ACTIONS(5678), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5680), 1, - sym_escape_sequence, - ACTIONS(5682), 1, - sym__quoted_content_i_heredoc_double, - ACTIONS(6617), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3838), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [196023] = 7, - ACTIONS(5694), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5788), 1, - sym_escape_sequence, - ACTIONS(5790), 1, - sym__quoted_content_i_heredoc_single, - ACTIONS(6619), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3852), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [196048] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5782), 1, - sym_escape_sequence, - ACTIONS(5784), 1, - sym__quoted_content_i_single, - ACTIONS(6621), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3835), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [196073] = 7, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5776), 1, - sym_escape_sequence, - ACTIONS(5778), 1, - sym__quoted_content_i_double, - ACTIONS(6623), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3834), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [196098] = 7, - ACTIONS(5678), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6625), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(6627), 1, - sym_escape_sequence, - ACTIONS(6629), 1, - sym__quoted_content_i_heredoc_double, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4014), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [196123] = 7, - ACTIONS(5694), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6631), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(6633), 1, - sym_escape_sequence, - ACTIONS(6635), 1, - sym__quoted_content_i_heredoc_single, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4015), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [196148] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6637), 1, - anon_sym_SQUOTE, - ACTIONS(6639), 1, - sym_escape_sequence, - ACTIONS(6641), 1, - sym__quoted_content_i_single, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4016), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [196173] = 7, - ACTIONS(6643), 1, anon_sym_SLASH, - ACTIONS(6645), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4548), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [234962] = 7, + ACTIONS(6178), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6364), 1, + sym_escape_sequence, + ACTIONS(6366), 1, + sym__quoted_content_i_bar, + ACTIONS(6573), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4549), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [234987] = 7, + ACTIONS(6120), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6122), 1, + sym_escape_sequence, + ACTIONS(6124), 1, + sym__quoted_content_i_slash, + ACTIONS(6575), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4548), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [235012] = 7, + ACTIONS(6186), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6358), 1, + sym_escape_sequence, + ACTIONS(6360), 1, + sym__quoted_content_i_angle, + ACTIONS(6577), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4552), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [235037] = 7, + ACTIONS(6128), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6130), 1, + sym_escape_sequence, + ACTIONS(6132), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(6579), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4483), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [235062] = 7, + ACTIONS(6120), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6581), 1, + anon_sym_SLASH, + ACTIONS(6583), 1, + sym_escape_sequence, + ACTIONS(6585), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4813), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [235087] = 7, + ACTIONS(6152), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6288), 1, + sym_escape_sequence, + ACTIONS(6290), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(6587), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4482), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [235112] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6276), 1, + sym_escape_sequence, + ACTIONS(6278), 1, + sym__quoted_content_i_double, + ACTIONS(6589), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4507), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [235137] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6282), 1, + sym_escape_sequence, + ACTIONS(6284), 1, + sym__quoted_content_i_single, + ACTIONS(6591), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4481), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [235162] = 7, + ACTIONS(6152), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6288), 1, + sym_escape_sequence, + ACTIONS(6290), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(6593), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4482), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [235187] = 7, + ACTIONS(6128), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6130), 1, + sym_escape_sequence, + ACTIONS(6132), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(6595), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4483), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [235212] = 7, + ACTIONS(6597), 1, + anon_sym_DQUOTE, + ACTIONS(6599), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6602), 1, + sym_escape_sequence, + ACTIONS(6605), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4507), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [235237] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6282), 1, + sym_escape_sequence, + ACTIONS(6284), 1, + sym__quoted_content_i_single, + ACTIONS(6608), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4481), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [235262] = 7, + ACTIONS(6194), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6352), 1, + sym_escape_sequence, + ACTIONS(6354), 1, + sym__quoted_content_i_square, + ACTIONS(6610), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4561), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [235287] = 7, + ACTIONS(6112), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6342), 1, + sym_escape_sequence, + ACTIONS(6344), 1, + sym__quoted_content_i_curly, + ACTIONS(6612), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4582), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [235312] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6276), 1, + sym_escape_sequence, + ACTIONS(6278), 1, + sym__quoted_content_i_double, + ACTIONS(6614), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4507), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [235337] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6616), 1, + anon_sym_SQUOTE, + ACTIONS(6618), 1, + sym_escape_sequence, + ACTIONS(6620), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4508), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [235362] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6282), 1, + sym_escape_sequence, + ACTIONS(6284), 1, + sym__quoted_content_i_single, + ACTIONS(6622), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4481), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [235387] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6624), 1, + anon_sym_DQUOTE, + ACTIONS(6626), 1, + sym_escape_sequence, + ACTIONS(6628), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4511), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [235412] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6282), 1, + sym_escape_sequence, + ACTIONS(6284), 1, + sym__quoted_content_i_single, + ACTIONS(6630), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4481), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [235437] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6276), 1, + sym_escape_sequence, + ACTIONS(6278), 1, + sym__quoted_content_i_double, + ACTIONS(6632), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4507), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [235462] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6634), 1, + anon_sym_SQUOTE, + ACTIONS(6636), 1, + sym_escape_sequence, + ACTIONS(6638), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4515), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [235487] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6640), 1, + anon_sym_DQUOTE, + ACTIONS(6642), 1, + sym_escape_sequence, + ACTIONS(6644), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4516), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [235512] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6276), 1, + sym_escape_sequence, + ACTIONS(6278), 1, + sym__quoted_content_i_double, + ACTIONS(6646), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4507), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [235537] = 7, + ACTIONS(6136), 1, anon_sym_POUND_LBRACE, ACTIONS(6648), 1, + anon_sym_DQUOTE, + ACTIONS(6650), 1, sym_escape_sequence, - ACTIONS(6651), 1, - sym__quoted_content_i_slash, + ACTIONS(6652), 1, + sym__quoted_content_i_double, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4021), 2, + STATE(4525), 2, sym_interpolation, - aux_sym__quoted_i_slash_repeat1, - [196198] = 7, - ACTIONS(5670), 1, + aux_sym__quoted_i_double_repeat1, + [235562] = 7, + ACTIONS(6144), 1, anon_sym_POUND_LBRACE, + ACTIONS(6282), 1, + sym_escape_sequence, + ACTIONS(6284), 1, + sym__quoted_content_i_single, ACTIONS(6654), 1, - anon_sym_DQUOTE, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4481), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [235587] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, ACTIONS(6656), 1, - sym_escape_sequence, + anon_sym_SQUOTE, ACTIONS(6658), 1, - sym__quoted_content_i_double, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4017), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [196223] = 7, + sym_escape_sequence, ACTIONS(6660), 1, - anon_sym_PIPE, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4545), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [235612] = 7, + ACTIONS(6152), 1, + anon_sym_POUND_LBRACE, ACTIONS(6662), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6665), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6664), 1, sym_escape_sequence, + ACTIONS(6666), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4594), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [235637] = 7, + ACTIONS(6128), 1, + anon_sym_POUND_LBRACE, ACTIONS(6668), 1, - sym__quoted_content_i_bar, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4023), 2, - sym_interpolation, - aux_sym__quoted_i_bar_repeat1, - [196248] = 7, - ACTIONS(5654), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5656), 1, - sym_escape_sequence, - ACTIONS(5658), 1, - sym__quoted_content_i_slash, - ACTIONS(6671), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4021), 2, - sym_interpolation, - aux_sym__quoted_i_slash_repeat1, - [196273] = 7, - ACTIONS(5762), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5939), 1, - sym_escape_sequence, - ACTIONS(5941), 1, - sym__quoted_content_i_bar, - ACTIONS(6673), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4023), 2, - sym_interpolation, - aux_sym__quoted_i_bar_repeat1, - [196298] = 7, - ACTIONS(5662), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5933), 1, - sym_escape_sequence, - ACTIONS(5935), 1, - sym__quoted_content_i_angle, - ACTIONS(6675), 1, - anon_sym_GT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3911), 2, - sym_interpolation, - aux_sym__quoted_i_angle_repeat1, - [196323] = 7, - ACTIONS(5748), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5927), 1, - sym_escape_sequence, - ACTIONS(5929), 1, - sym__quoted_content_i_square, - ACTIONS(6677), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4046), 2, - sym_interpolation, - aux_sym__quoted_i_square_repeat1, - [196348] = 7, - ACTIONS(5732), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6679), 1, - anon_sym_RPAREN, - ACTIONS(6681), 1, - sym_escape_sequence, - ACTIONS(6683), 1, - sym__quoted_content_i_parenthesis, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4059), 2, - sym_interpolation, - aux_sym__quoted_i_parenthesis_repeat1, - [196373] = 7, - ACTIONS(5740), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6685), 1, - anon_sym_RBRACE, - ACTIONS(6687), 1, - sym_escape_sequence, - ACTIONS(6689), 1, - sym__quoted_content_i_curly, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4060), 2, - sym_interpolation, - aux_sym__quoted_i_curly_repeat1, - [196398] = 7, - ACTIONS(5748), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6691), 1, - anon_sym_RBRACK, - ACTIONS(6693), 1, - sym_escape_sequence, - ACTIONS(6695), 1, - sym__quoted_content_i_square, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4061), 2, - sym_interpolation, - aux_sym__quoted_i_square_repeat1, - [196423] = 7, - ACTIONS(5662), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6697), 1, - anon_sym_GT, - ACTIONS(6699), 1, - sym_escape_sequence, - ACTIONS(6701), 1, - sym__quoted_content_i_angle, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4062), 2, - sym_interpolation, - aux_sym__quoted_i_angle_repeat1, - [196448] = 7, - ACTIONS(5762), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6703), 1, - anon_sym_PIPE, - ACTIONS(6705), 1, - sym_escape_sequence, - ACTIONS(6707), 1, - sym__quoted_content_i_bar, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4063), 2, - sym_interpolation, - aux_sym__quoted_i_bar_repeat1, - [196473] = 7, - ACTIONS(5654), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6709), 1, - anon_sym_SLASH, - ACTIONS(6711), 1, - sym_escape_sequence, - ACTIONS(6713), 1, - sym__quoted_content_i_slash, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4064), 2, - sym_interpolation, - aux_sym__quoted_i_slash_repeat1, - [196498] = 7, - ACTIONS(5740), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5921), 1, - sym_escape_sequence, - ACTIONS(5923), 1, - sym__quoted_content_i_curly, - ACTIONS(6715), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4050), 2, - sym_interpolation, - aux_sym__quoted_i_curly_repeat1, - [196523] = 7, - ACTIONS(5732), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5915), 1, - sym_escape_sequence, - ACTIONS(5917), 1, - sym__quoted_content_i_parenthesis, - ACTIONS(6717), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4051), 2, - sym_interpolation, - aux_sym__quoted_i_parenthesis_repeat1, - [196548] = 7, - ACTIONS(5654), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6719), 1, - anon_sym_SLASH, - ACTIONS(6721), 1, - sym_escape_sequence, - ACTIONS(6723), 1, - sym__quoted_content_i_slash, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4024), 2, - sym_interpolation, - aux_sym__quoted_i_slash_repeat1, - [196573] = 7, - ACTIONS(5762), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6725), 1, - anon_sym_PIPE, - ACTIONS(6727), 1, - sym_escape_sequence, - ACTIONS(6729), 1, - sym__quoted_content_i_bar, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4025), 2, - sym_interpolation, - aux_sym__quoted_i_bar_repeat1, - [196598] = 7, - ACTIONS(5748), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6731), 1, - anon_sym_RBRACK, - ACTIONS(6733), 1, - sym_escape_sequence, - ACTIONS(6735), 1, - sym__quoted_content_i_square, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4027), 2, - sym_interpolation, - aux_sym__quoted_i_square_repeat1, - [196623] = 7, - ACTIONS(5740), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6737), 1, - anon_sym_RBRACE, - ACTIONS(6739), 1, - sym_escape_sequence, - ACTIONS(6741), 1, - sym__quoted_content_i_curly, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4034), 2, - sym_interpolation, - aux_sym__quoted_i_curly_repeat1, - [196648] = 7, - ACTIONS(5732), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6743), 1, - anon_sym_RPAREN, - ACTIONS(6745), 1, - sym_escape_sequence, - ACTIONS(6747), 1, - sym__quoted_content_i_parenthesis, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4035), 2, - sym_interpolation, - aux_sym__quoted_i_parenthesis_repeat1, - [196673] = 7, - ACTIONS(5732), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5915), 1, - sym_escape_sequence, - ACTIONS(5917), 1, - sym__quoted_content_i_parenthesis, - ACTIONS(6749), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4051), 2, - sym_interpolation, - aux_sym__quoted_i_parenthesis_repeat1, - [196698] = 7, - ACTIONS(5740), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5921), 1, - sym_escape_sequence, - ACTIONS(5923), 1, - sym__quoted_content_i_curly, - ACTIONS(6751), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4050), 2, - sym_interpolation, - aux_sym__quoted_i_curly_repeat1, - [196723] = 7, - ACTIONS(5678), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5680), 1, - sym_escape_sequence, - ACTIONS(5682), 1, - sym__quoted_content_i_heredoc_double, - ACTIONS(6753), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6670), 1, + sym_escape_sequence, + ACTIONS(6672), 1, + sym__quoted_content_i_heredoc_double, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3838), 2, + STATE(4613), 2, sym_interpolation, aux_sym__quoted_i_heredoc_double_repeat1, - [196748] = 7, - ACTIONS(5694), 1, + [235662] = 7, + ACTIONS(6136), 1, anon_sym_POUND_LBRACE, - ACTIONS(5788), 1, + ACTIONS(6276), 1, sym_escape_sequence, - ACTIONS(5790), 1, - sym__quoted_content_i_heredoc_single, - ACTIONS(6755), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6278), 1, + sym__quoted_content_i_double, + ACTIONS(6674), 1, + anon_sym_DQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3852), 2, + STATE(4507), 2, sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [196773] = 7, - ACTIONS(5686), 1, + aux_sym__quoted_i_double_repeat1, + [235687] = 7, + ACTIONS(6202), 1, anon_sym_POUND_LBRACE, - ACTIONS(5782), 1, + ACTIONS(6676), 1, + anon_sym_RPAREN, + ACTIONS(6678), 1, sym_escape_sequence, - ACTIONS(5784), 1, + ACTIONS(6680), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4564), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [235712] = 7, + ACTIONS(6112), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6682), 1, + anon_sym_RBRACE, + ACTIONS(6684), 1, + sym_escape_sequence, + ACTIONS(6686), 1, + sym__quoted_content_i_curly, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4565), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [235737] = 7, + ACTIONS(6194), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6688), 1, + anon_sym_RBRACK, + ACTIONS(6690), 1, + sym_escape_sequence, + ACTIONS(6692), 1, + sym__quoted_content_i_square, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4566), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [235762] = 7, + ACTIONS(6186), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6694), 1, + anon_sym_GT, + ACTIONS(6696), 1, + sym_escape_sequence, + ACTIONS(6698), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4567), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [235787] = 7, + ACTIONS(6178), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6700), 1, + anon_sym_PIPE, + ACTIONS(6702), 1, + sym_escape_sequence, + ACTIONS(6704), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4568), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [235812] = 7, + ACTIONS(6120), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6706), 1, + anon_sym_SLASH, + ACTIONS(6708), 1, + sym_escape_sequence, + ACTIONS(6710), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4569), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [235837] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6276), 1, + sym_escape_sequence, + ACTIONS(6278), 1, + sym__quoted_content_i_double, + ACTIONS(6712), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4507), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [235862] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6714), 1, + anon_sym_SQUOTE, + ACTIONS(6716), 1, + sym_escape_sequence, + ACTIONS(6718), 1, sym__quoted_content_i_single, - ACTIONS(6757), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4521), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [235887] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6720), 1, + anon_sym_DQUOTE, + ACTIONS(6722), 1, + sym_escape_sequence, + ACTIONS(6724), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4532), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [235912] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6282), 1, + sym_escape_sequence, + ACTIONS(6284), 1, + sym__quoted_content_i_single, + ACTIONS(6726), 1, anon_sym_SQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -331766,143 +369332,287 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3835), 2, + STATE(4481), 2, sym_interpolation, aux_sym__quoted_i_single_repeat1, - [196798] = 7, - ACTIONS(6759), 1, - anon_sym_RBRACK, - ACTIONS(6761), 1, + [235937] = 7, + ACTIONS(6136), 1, anon_sym_POUND_LBRACE, + ACTIONS(6276), 1, + sym_escape_sequence, + ACTIONS(6278), 1, + sym__quoted_content_i_double, + ACTIONS(6728), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4507), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [235962] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6730), 1, + anon_sym_SQUOTE, + ACTIONS(6732), 1, + sym_escape_sequence, + ACTIONS(6734), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4535), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [235987] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6736), 1, + anon_sym_DQUOTE, + ACTIONS(6738), 1, + sym_escape_sequence, + ACTIONS(6740), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4536), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [236012] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6282), 1, + sym_escape_sequence, + ACTIONS(6284), 1, + sym__quoted_content_i_single, + ACTIONS(6742), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4481), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [236037] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6276), 1, + sym_escape_sequence, + ACTIONS(6278), 1, + sym__quoted_content_i_double, + ACTIONS(6744), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4507), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [236062] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6746), 1, + anon_sym_SQUOTE, + ACTIONS(6748), 1, + sym_escape_sequence, + ACTIONS(6750), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4539), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [236087] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6752), 1, + anon_sym_DQUOTE, + ACTIONS(6754), 1, + sym_escape_sequence, + ACTIONS(6756), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4540), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [236112] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6282), 1, + sym_escape_sequence, + ACTIONS(6284), 1, + sym__quoted_content_i_single, + ACTIONS(6758), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4481), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [236137] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6276), 1, + sym_escape_sequence, + ACTIONS(6278), 1, + sym__quoted_content_i_double, + ACTIONS(6760), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4507), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [236162] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6282), 1, + sym_escape_sequence, + ACTIONS(6284), 1, + sym__quoted_content_i_single, + ACTIONS(6762), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4481), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [236187] = 7, + ACTIONS(6120), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6122), 1, + sym_escape_sequence, + ACTIONS(6124), 1, + sym__quoted_content_i_slash, ACTIONS(6764), 1, - sym_escape_sequence, - ACTIONS(6767), 1, - sym__quoted_content_i_square, + anon_sym_SLASH, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4046), 2, + STATE(4548), 2, sym_interpolation, - aux_sym__quoted_i_square_repeat1, - [196823] = 7, - ACTIONS(5670), 1, + aux_sym__quoted_i_slash_repeat1, + [236212] = 7, + ACTIONS(6144), 1, anon_sym_POUND_LBRACE, - ACTIONS(5776), 1, + ACTIONS(6766), 1, + anon_sym_SQUOTE, + ACTIONS(6768), 1, sym_escape_sequence, - ACTIONS(5778), 1, - sym__quoted_content_i_double, ACTIONS(6770), 1, - anon_sym_DQUOTE, + sym__quoted_content_i_single, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3834), 2, + STATE(4543), 2, sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [196848] = 7, - ACTIONS(5678), 1, - anon_sym_POUND_LBRACE, + aux_sym__quoted_i_single_repeat1, + [236237] = 7, ACTIONS(6772), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SLASH, ACTIONS(6774), 1, - sym_escape_sequence, - ACTIONS(6776), 1, - sym__quoted_content_i_heredoc_double, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4043), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [196873] = 7, - ACTIONS(5694), 1, anon_sym_POUND_LBRACE, - ACTIONS(6778), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6777), 1, + sym_escape_sequence, ACTIONS(6780), 1, - sym_escape_sequence, - ACTIONS(6782), 1, - sym__quoted_content_i_heredoc_single, + sym__quoted_content_i_slash, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4044), 2, + STATE(4548), 2, sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [196898] = 7, - ACTIONS(6784), 1, - anon_sym_RBRACE, - ACTIONS(6786), 1, + aux_sym__quoted_i_slash_repeat1, + [236262] = 7, + ACTIONS(6783), 1, + anon_sym_PIPE, + ACTIONS(6785), 1, anon_sym_POUND_LBRACE, - ACTIONS(6789), 1, + ACTIONS(6788), 1, sym_escape_sequence, - ACTIONS(6792), 1, - sym__quoted_content_i_curly, + ACTIONS(6791), 1, + sym__quoted_content_i_bar, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4050), 2, + STATE(4549), 2, sym_interpolation, - aux_sym__quoted_i_curly_repeat1, - [196923] = 7, - ACTIONS(6795), 1, - anon_sym_RPAREN, - ACTIONS(6797), 1, + aux_sym__quoted_i_bar_repeat1, + [236287] = 7, + ACTIONS(6136), 1, anon_sym_POUND_LBRACE, + ACTIONS(6794), 1, + anon_sym_DQUOTE, + ACTIONS(6796), 1, + sym_escape_sequence, + ACTIONS(6798), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4544), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [236312] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6282), 1, + sym_escape_sequence, + ACTIONS(6284), 1, + sym__quoted_content_i_single, ACTIONS(6800), 1, - sym_escape_sequence, - ACTIONS(6803), 1, - sym__quoted_content_i_parenthesis, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4051), 2, - sym_interpolation, - aux_sym__quoted_i_parenthesis_repeat1, - [196948] = 7, - ACTIONS(5694), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5788), 1, - sym_escape_sequence, - ACTIONS(5790), 1, - sym__quoted_content_i_heredoc_single, - ACTIONS(6806), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3852), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [196973] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5782), 1, - sym_escape_sequence, - ACTIONS(5784), 1, - sym__quoted_content_i_single, - ACTIONS(6808), 1, anon_sym_SQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -331910,17 +369620,53 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3835), 2, + STATE(4481), 2, sym_interpolation, aux_sym__quoted_i_single_repeat1, - [196998] = 7, - ACTIONS(5686), 1, + [236337] = 7, + ACTIONS(6802), 1, + anon_sym_GT, + ACTIONS(6804), 1, anon_sym_POUND_LBRACE, + ACTIONS(6807), 1, + sym_escape_sequence, ACTIONS(6810), 1, - anon_sym_SQUOTE, - ACTIONS(6812), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4552), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [236362] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6276), 1, sym_escape_sequence, - ACTIONS(6814), 1, + ACTIONS(6278), 1, + sym__quoted_content_i_double, + ACTIONS(6813), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4507), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [236387] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6815), 1, + anon_sym_SQUOTE, + ACTIONS(6817), 1, + sym_escape_sequence, + ACTIONS(6819), 1, sym__quoted_content_i_single, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -331928,17 +369674,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4045), 2, + STATE(4551), 2, sym_interpolation, aux_sym__quoted_i_single_repeat1, - [197023] = 7, - ACTIONS(5670), 1, + [236412] = 7, + ACTIONS(6136), 1, anon_sym_POUND_LBRACE, - ACTIONS(6816), 1, + ACTIONS(6821), 1, anon_sym_DQUOTE, - ACTIONS(6818), 1, + ACTIONS(6823), 1, sym_escape_sequence, - ACTIONS(6820), 1, + ACTIONS(6825), 1, sym__quoted_content_i_double, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -331946,305 +369692,107 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4047), 2, + STATE(4553), 2, sym_interpolation, aux_sym__quoted_i_double_repeat1, - [197048] = 7, - ACTIONS(5748), 1, + [236437] = 7, + ACTIONS(6128), 1, anon_sym_POUND_LBRACE, - ACTIONS(5927), 1, + ACTIONS(6130), 1, sym_escape_sequence, - ACTIONS(5929), 1, - sym__quoted_content_i_square, - ACTIONS(6822), 1, + ACTIONS(6132), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(6827), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4483), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [236462] = 7, + ACTIONS(6152), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6288), 1, + sym_escape_sequence, + ACTIONS(6290), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(6829), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4482), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [236487] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6282), 1, + sym_escape_sequence, + ACTIONS(6284), 1, + sym__quoted_content_i_single, + ACTIONS(6831), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4481), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [236512] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6276), 1, + sym_escape_sequence, + ACTIONS(6278), 1, + sym__quoted_content_i_double, + ACTIONS(6833), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4507), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [236537] = 7, + ACTIONS(6128), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6835), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6837), 1, + sym_escape_sequence, + ACTIONS(6839), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4556), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [236562] = 7, + ACTIONS(6841), 1, anon_sym_RBRACK, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4046), 2, - sym_interpolation, - aux_sym__quoted_i_square_repeat1, - [197073] = 7, - ACTIONS(5654), 1, + ACTIONS(6843), 1, anon_sym_POUND_LBRACE, - ACTIONS(5656), 1, - sym_escape_sequence, - ACTIONS(5658), 1, - sym__quoted_content_i_slash, - ACTIONS(6824), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4021), 2, - sym_interpolation, - aux_sym__quoted_i_slash_repeat1, - [197098] = 7, - ACTIONS(5762), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5939), 1, - sym_escape_sequence, - ACTIONS(5941), 1, - sym__quoted_content_i_bar, - ACTIONS(6826), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4023), 2, - sym_interpolation, - aux_sym__quoted_i_bar_repeat1, - [197123] = 7, - ACTIONS(5732), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5915), 1, - sym_escape_sequence, - ACTIONS(5917), 1, - sym__quoted_content_i_parenthesis, - ACTIONS(6828), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4051), 2, - sym_interpolation, - aux_sym__quoted_i_parenthesis_repeat1, - [197148] = 7, - ACTIONS(5740), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5921), 1, - sym_escape_sequence, - ACTIONS(5923), 1, - sym__quoted_content_i_curly, - ACTIONS(6830), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4050), 2, - sym_interpolation, - aux_sym__quoted_i_curly_repeat1, - [197173] = 7, - ACTIONS(5748), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5927), 1, - sym_escape_sequence, - ACTIONS(5929), 1, - sym__quoted_content_i_square, - ACTIONS(6832), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4046), 2, - sym_interpolation, - aux_sym__quoted_i_square_repeat1, - [197198] = 7, - ACTIONS(5662), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5933), 1, - sym_escape_sequence, - ACTIONS(5935), 1, - sym__quoted_content_i_angle, - ACTIONS(6834), 1, - anon_sym_GT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3911), 2, - sym_interpolation, - aux_sym__quoted_i_angle_repeat1, - [197223] = 7, - ACTIONS(5762), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5939), 1, - sym_escape_sequence, - ACTIONS(5941), 1, - sym__quoted_content_i_bar, - ACTIONS(6836), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4023), 2, - sym_interpolation, - aux_sym__quoted_i_bar_repeat1, - [197248] = 7, - ACTIONS(5654), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5656), 1, - sym_escape_sequence, - ACTIONS(5658), 1, - sym__quoted_content_i_slash, - ACTIONS(6838), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4021), 2, - sym_interpolation, - aux_sym__quoted_i_slash_repeat1, - [197273] = 7, - ACTIONS(5662), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5933), 1, - sym_escape_sequence, - ACTIONS(5935), 1, - sym__quoted_content_i_angle, - ACTIONS(6840), 1, - anon_sym_GT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3911), 2, - sym_interpolation, - aux_sym__quoted_i_angle_repeat1, - [197298] = 7, - ACTIONS(5748), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5927), 1, - sym_escape_sequence, - ACTIONS(5929), 1, - sym__quoted_content_i_square, - ACTIONS(6842), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4046), 2, - sym_interpolation, - aux_sym__quoted_i_square_repeat1, - [197323] = 7, - ACTIONS(5740), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5921), 1, - sym_escape_sequence, - ACTIONS(5923), 1, - sym__quoted_content_i_curly, - ACTIONS(6844), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4050), 2, - sym_interpolation, - aux_sym__quoted_i_curly_repeat1, - [197348] = 7, - ACTIONS(5732), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5915), 1, - sym_escape_sequence, - ACTIONS(5917), 1, - sym__quoted_content_i_parenthesis, ACTIONS(6846), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4051), 2, - sym_interpolation, - aux_sym__quoted_i_parenthesis_repeat1, - [197373] = 7, - ACTIONS(5654), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6848), 1, - anon_sym_SLASH, - ACTIONS(6850), 1, sym_escape_sequence, - ACTIONS(6852), 1, - sym__quoted_content_i_slash, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4057), 2, - sym_interpolation, - aux_sym__quoted_i_slash_repeat1, - [197398] = 7, - ACTIONS(5762), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6854), 1, - anon_sym_PIPE, - ACTIONS(6856), 1, - sym_escape_sequence, - ACTIONS(6858), 1, - sym__quoted_content_i_bar, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4058), 2, - sym_interpolation, - aux_sym__quoted_i_bar_repeat1, - [197423] = 7, - ACTIONS(5662), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6860), 1, - anon_sym_GT, - ACTIONS(6862), 1, - sym_escape_sequence, - ACTIONS(6864), 1, - sym__quoted_content_i_angle, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4065), 2, - sym_interpolation, - aux_sym__quoted_i_angle_repeat1, - [197448] = 7, - ACTIONS(5748), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6866), 1, - anon_sym_RBRACK, - ACTIONS(6868), 1, - sym_escape_sequence, - ACTIONS(6870), 1, + ACTIONS(6849), 1, sym__quoted_content_i_square, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -332252,71 +369800,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4066), 2, + STATE(4561), 2, sym_interpolation, aux_sym__quoted_i_square_repeat1, - [197473] = 7, - ACTIONS(5740), 1, + [236587] = 7, + ACTIONS(6178), 1, anon_sym_POUND_LBRACE, - ACTIONS(6872), 1, - anon_sym_RBRACE, - ACTIONS(6874), 1, + ACTIONS(6364), 1, sym_escape_sequence, - ACTIONS(6876), 1, - sym__quoted_content_i_curly, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4067), 2, - sym_interpolation, - aux_sym__quoted_i_curly_repeat1, - [197498] = 7, - ACTIONS(5732), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6878), 1, - anon_sym_RPAREN, - ACTIONS(6880), 1, - sym_escape_sequence, - ACTIONS(6882), 1, - sym__quoted_content_i_parenthesis, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4068), 2, - sym_interpolation, - aux_sym__quoted_i_parenthesis_repeat1, - [197523] = 7, - ACTIONS(5662), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5933), 1, - sym_escape_sequence, - ACTIONS(5935), 1, - sym__quoted_content_i_angle, - ACTIONS(6884), 1, - anon_sym_GT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3911), 2, - sym_interpolation, - aux_sym__quoted_i_angle_repeat1, - [197548] = 7, - ACTIONS(5762), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5939), 1, - sym_escape_sequence, - ACTIONS(5941), 1, + ACTIONS(6366), 1, sym__quoted_content_i_bar, - ACTIONS(6886), 1, + ACTIONS(6852), 1, anon_sym_PIPE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -332324,35 +369818,125 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4023), 2, + STATE(4549), 2, sym_interpolation, aux_sym__quoted_i_bar_repeat1, - [197573] = 7, - ACTIONS(5670), 1, + [236612] = 7, + ACTIONS(6186), 1, anon_sym_POUND_LBRACE, - ACTIONS(5776), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(5778), 1, - sym__quoted_content_i_double, - ACTIONS(6888), 1, - anon_sym_DQUOTE, + ACTIONS(6360), 1, + sym__quoted_content_i_angle, + ACTIONS(6854), 1, + anon_sym_GT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3834), 2, + STATE(4552), 2, sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [197598] = 7, - ACTIONS(5654), 1, + aux_sym__quoted_i_angle_repeat1, + [236637] = 7, + ACTIONS(6202), 1, anon_sym_POUND_LBRACE, - ACTIONS(5656), 1, + ACTIONS(6314), 1, sym_escape_sequence, - ACTIONS(5658), 1, + ACTIONS(6316), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(6856), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4585), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [236662] = 7, + ACTIONS(6112), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6342), 1, + sym_escape_sequence, + ACTIONS(6344), 1, + sym__quoted_content_i_curly, + ACTIONS(6858), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4582), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [236687] = 7, + ACTIONS(6194), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6352), 1, + sym_escape_sequence, + ACTIONS(6354), 1, + sym__quoted_content_i_square, + ACTIONS(6860), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4561), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [236712] = 7, + ACTIONS(6186), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6358), 1, + sym_escape_sequence, + ACTIONS(6360), 1, + sym__quoted_content_i_angle, + ACTIONS(6862), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4552), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [236737] = 7, + ACTIONS(6178), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6364), 1, + sym_escape_sequence, + ACTIONS(6366), 1, + sym__quoted_content_i_bar, + ACTIONS(6864), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4549), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [236762] = 7, + ACTIONS(6120), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6122), 1, + sym_escape_sequence, + ACTIONS(6124), 1, sym__quoted_content_i_slash, - ACTIONS(6890), 1, + ACTIONS(6866), 1, anon_sym_SLASH, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -332360,71 +369944,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4021), 2, + STATE(4548), 2, sym_interpolation, aux_sym__quoted_i_slash_repeat1, - [197623] = 7, - ACTIONS(5678), 1, + [236787] = 7, + ACTIONS(6152), 1, anon_sym_POUND_LBRACE, - ACTIONS(5680), 1, - sym_escape_sequence, - ACTIONS(5682), 1, - sym__quoted_content_i_heredoc_double, - ACTIONS(6892), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3838), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [197648] = 7, - ACTIONS(5694), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5788), 1, - sym_escape_sequence, - ACTIONS(5790), 1, - sym__quoted_content_i_heredoc_single, - ACTIONS(6894), 1, + ACTIONS(6868), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3852), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [197673] = 7, - ACTIONS(5678), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6896), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(6898), 1, + ACTIONS(6870), 1, sym_escape_sequence, - ACTIONS(6900), 1, - sym__quoted_content_i_heredoc_double, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3913), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [197698] = 7, - ACTIONS(5694), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6902), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(6904), 1, - sym_escape_sequence, - ACTIONS(6906), 1, + ACTIONS(6872), 1, sym__quoted_content_i_heredoc_single, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -332432,17 +369962,89 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4052), 2, + STATE(4557), 2, sym_interpolation, aux_sym__quoted_i_heredoc_single_repeat1, - [197723] = 7, - ACTIONS(5686), 1, + [236812] = 7, + ACTIONS(6144), 1, anon_sym_POUND_LBRACE, - ACTIONS(5782), 1, + ACTIONS(6874), 1, + anon_sym_SQUOTE, + ACTIONS(6876), 1, sym_escape_sequence, - ACTIONS(5784), 1, + ACTIONS(6878), 1, sym__quoted_content_i_single, - ACTIONS(6908), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4558), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [236837] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6880), 1, + anon_sym_DQUOTE, + ACTIONS(6882), 1, + sym_escape_sequence, + ACTIONS(6884), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4559), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [236862] = 7, + ACTIONS(6128), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6130), 1, + sym_escape_sequence, + ACTIONS(6132), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(6886), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4483), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [236887] = 7, + ACTIONS(6152), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6288), 1, + sym_escape_sequence, + ACTIONS(6290), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(6888), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4482), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [236912] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6282), 1, + sym_escape_sequence, + ACTIONS(6284), 1, + sym__quoted_content_i_single, + ACTIONS(6890), 1, anon_sym_SQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -332450,17 +370052,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3835), 2, + STATE(4481), 2, sym_interpolation, aux_sym__quoted_i_single_repeat1, - [197748] = 7, - ACTIONS(5670), 1, + [236937] = 7, + ACTIONS(6136), 1, anon_sym_POUND_LBRACE, - ACTIONS(5776), 1, + ACTIONS(6276), 1, sym_escape_sequence, - ACTIONS(5778), 1, + ACTIONS(6278), 1, sym__quoted_content_i_double, - ACTIONS(6910), 1, + ACTIONS(6892), 1, anon_sym_DQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -332468,503 +370070,557 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3834), 2, + STATE(4507), 2, sym_interpolation, aux_sym__quoted_i_double_repeat1, - [197773] = 7, - ACTIONS(5678), 1, + [236962] = 7, + ACTIONS(6128), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6894), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6896), 1, + sym_escape_sequence, + ACTIONS(6898), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4573), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [236987] = 7, + ACTIONS(6152), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6900), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6902), 1, + sym_escape_sequence, + ACTIONS(6904), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4574), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [237012] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6906), 1, + anon_sym_SQUOTE, + ACTIONS(6908), 1, + sym_escape_sequence, + ACTIONS(6910), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4575), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [237037] = 7, + ACTIONS(6136), 1, anon_sym_POUND_LBRACE, ACTIONS(6912), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE, ACTIONS(6914), 1, sym_escape_sequence, ACTIONS(6916), 1, - sym__quoted_content_i_heredoc_double, + sym__quoted_content_i_double, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4079), 2, + STATE(4576), 2, sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [197798] = 7, - ACTIONS(5686), 1, + aux_sym__quoted_i_double_repeat1, + [237062] = 7, + ACTIONS(6194), 1, anon_sym_POUND_LBRACE, - ACTIONS(6918), 1, - anon_sym_SQUOTE, - ACTIONS(6920), 1, + ACTIONS(6352), 1, sym_escape_sequence, - ACTIONS(6922), 1, - sym__quoted_content_i_single, + ACTIONS(6354), 1, + sym__quoted_content_i_square, + ACTIONS(6918), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4053), 2, + STATE(4561), 2, sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [197823] = 7, - ACTIONS(5670), 1, + aux_sym__quoted_i_square_repeat1, + [237087] = 7, + ACTIONS(6920), 1, + anon_sym_RBRACE, + ACTIONS(6922), 1, anon_sym_POUND_LBRACE, - ACTIONS(6924), 1, - anon_sym_DQUOTE, - ACTIONS(6926), 1, + ACTIONS(6925), 1, sym_escape_sequence, ACTIONS(6928), 1, - sym__quoted_content_i_double, + sym__quoted_content_i_curly, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4077), 2, + STATE(4582), 2, sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [197848] = 7, - ACTIONS(5694), 1, + aux_sym__quoted_i_curly_repeat1, + [237112] = 7, + ACTIONS(6128), 1, anon_sym_POUND_LBRACE, - ACTIONS(6930), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(6932), 1, + ACTIONS(6130), 1, sym_escape_sequence, - ACTIONS(6934), 1, - sym__quoted_content_i_heredoc_single, + ACTIONS(6132), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(6931), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4080), 2, + STATE(4483), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [237137] = 7, + ACTIONS(6152), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6288), 1, + sym_escape_sequence, + ACTIONS(6290), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(6933), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4482), 2, sym_interpolation, aux_sym__quoted_i_heredoc_single_repeat1, - [197873] = 7, - ACTIONS(5686), 1, + [237162] = 7, + ACTIONS(6935), 1, + anon_sym_RPAREN, + ACTIONS(6937), 1, anon_sym_POUND_LBRACE, - ACTIONS(6936), 1, - anon_sym_SQUOTE, - ACTIONS(6938), 1, - sym_escape_sequence, ACTIONS(6940), 1, - sym__quoted_content_i_single, + sym_escape_sequence, + ACTIONS(6943), 1, + sym__quoted_content_i_parenthesis, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4083), 2, + STATE(4585), 2, sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [197898] = 7, - ACTIONS(5670), 1, + aux_sym__quoted_i_parenthesis_repeat1, + [237187] = 7, + ACTIONS(6144), 1, anon_sym_POUND_LBRACE, - ACTIONS(6942), 1, - anon_sym_DQUOTE, - ACTIONS(6944), 1, + ACTIONS(6282), 1, sym_escape_sequence, + ACTIONS(6284), 1, + sym__quoted_content_i_single, ACTIONS(6946), 1, - sym__quoted_content_i_double, + anon_sym_SQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4084), 2, + STATE(4481), 2, sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [197923] = 7, - ACTIONS(5654), 1, + aux_sym__quoted_i_single_repeat1, + [237212] = 7, + ACTIONS(6136), 1, anon_sym_POUND_LBRACE, - ACTIONS(5656), 1, + ACTIONS(6276), 1, sym_escape_sequence, - ACTIONS(5658), 1, - sym__quoted_content_i_slash, + ACTIONS(6278), 1, + sym__quoted_content_i_double, ACTIONS(6948), 1, - anon_sym_SLASH, + anon_sym_DQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4021), 2, + STATE(4507), 2, sym_interpolation, - aux_sym__quoted_i_slash_repeat1, - [197948] = 7, - ACTIONS(5762), 1, + aux_sym__quoted_i_double_repeat1, + [237237] = 7, + ACTIONS(6128), 1, anon_sym_POUND_LBRACE, - ACTIONS(5939), 1, - sym_escape_sequence, - ACTIONS(5941), 1, - sym__quoted_content_i_bar, ACTIONS(6950), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4023), 2, - sym_interpolation, - aux_sym__quoted_i_bar_repeat1, - [197973] = 7, - ACTIONS(5662), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5933), 1, - sym_escape_sequence, - ACTIONS(5935), 1, - sym__quoted_content_i_angle, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(6952), 1, - anon_sym_GT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3911), 2, - sym_interpolation, - aux_sym__quoted_i_angle_repeat1, - [197998] = 7, - ACTIONS(5748), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5927), 1, sym_escape_sequence, - ACTIONS(5929), 1, - sym__quoted_content_i_square, ACTIONS(6954), 1, - anon_sym_RBRACK, + sym__quoted_content_i_heredoc_double, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4046), 2, + STATE(4583), 2, sym_interpolation, - aux_sym__quoted_i_square_repeat1, - [198023] = 7, - ACTIONS(5740), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + [237262] = 7, + ACTIONS(6152), 1, anon_sym_POUND_LBRACE, - ACTIONS(5921), 1, - sym_escape_sequence, - ACTIONS(5923), 1, - sym__quoted_content_i_curly, ACTIONS(6956), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4050), 2, - sym_interpolation, - aux_sym__quoted_i_curly_repeat1, - [198048] = 7, - ACTIONS(5732), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5915), 1, - sym_escape_sequence, - ACTIONS(5917), 1, - sym__quoted_content_i_parenthesis, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(6958), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4051), 2, - sym_interpolation, - aux_sym__quoted_i_parenthesis_repeat1, - [198073] = 7, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, + sym_escape_sequence, ACTIONS(6960), 1, - anon_sym_DQUOTE, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4584), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [237287] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, ACTIONS(6962), 1, - sym_escape_sequence, + anon_sym_SQUOTE, ACTIONS(6964), 1, - sym__quoted_content_i_double, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4109), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [198098] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, + sym_escape_sequence, ACTIONS(6966), 1, - anon_sym_SQUOTE, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4586), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [237312] = 7, + ACTIONS(6112), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6342), 1, + sym_escape_sequence, + ACTIONS(6344), 1, + sym__quoted_content_i_curly, ACTIONS(6968), 1, - sym_escape_sequence, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4582), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [237337] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, ACTIONS(6970), 1, - sym__quoted_content_i_single, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4110), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [198123] = 7, - ACTIONS(5694), 1, - anon_sym_POUND_LBRACE, + anon_sym_DQUOTE, ACTIONS(6972), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + sym_escape_sequence, ACTIONS(6974), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4587), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [237362] = 7, + ACTIONS(6202), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6314), 1, sym_escape_sequence, + ACTIONS(6316), 1, + sym__quoted_content_i_parenthesis, ACTIONS(6976), 1, - sym__quoted_content_i_heredoc_single, + anon_sym_RPAREN, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4111), 2, + STATE(4585), 2, sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [198148] = 7, - ACTIONS(5678), 1, + aux_sym__quoted_i_parenthesis_repeat1, + [237387] = 7, + ACTIONS(6152), 1, anon_sym_POUND_LBRACE, + ACTIONS(6288), 1, + sym_escape_sequence, + ACTIONS(6290), 1, + sym__quoted_content_i_heredoc_single, ACTIONS(6978), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4482), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [237412] = 7, + ACTIONS(6128), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6130), 1, + sym_escape_sequence, + ACTIONS(6132), 1, + sym__quoted_content_i_heredoc_double, ACTIONS(6980), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4483), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [237437] = 7, + ACTIONS(6152), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6288), 1, sym_escape_sequence, + ACTIONS(6290), 1, + sym__quoted_content_i_heredoc_single, ACTIONS(6982), 1, - sym__quoted_content_i_heredoc_double, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4112), 2, + STATE(4482), 2, sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [198173] = 7, - ACTIONS(5654), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + [237462] = 7, + ACTIONS(6144), 1, anon_sym_POUND_LBRACE, + ACTIONS(6282), 1, + sym_escape_sequence, + ACTIONS(6284), 1, + sym__quoted_content_i_single, ACTIONS(6984), 1, - anon_sym_SLASH, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4481), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [237487] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6276), 1, + sym_escape_sequence, + ACTIONS(6278), 1, + sym__quoted_content_i_double, ACTIONS(6986), 1, - sym_escape_sequence, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4507), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [237512] = 7, + ACTIONS(6128), 1, + anon_sym_POUND_LBRACE, ACTIONS(6988), 1, - sym__quoted_content_i_slash, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4091), 2, - sym_interpolation, - aux_sym__quoted_i_slash_repeat1, - [198198] = 7, - ACTIONS(5762), 1, - anon_sym_POUND_LBRACE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(6990), 1, - anon_sym_PIPE, + sym_escape_sequence, ACTIONS(6992), 1, - sym_escape_sequence, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4595), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [237537] = 7, + ACTIONS(6152), 1, + anon_sym_POUND_LBRACE, ACTIONS(6994), 1, - sym__quoted_content_i_bar, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4092), 2, - sym_interpolation, - aux_sym__quoted_i_bar_repeat1, - [198223] = 7, - ACTIONS(5662), 1, - anon_sym_POUND_LBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(6996), 1, - anon_sym_GT, + sym_escape_sequence, ACTIONS(6998), 1, - sym_escape_sequence, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4596), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [237562] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, ACTIONS(7000), 1, - sym__quoted_content_i_angle, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4093), 2, - sym_interpolation, - aux_sym__quoted_i_angle_repeat1, - [198248] = 7, - ACTIONS(5748), 1, - anon_sym_POUND_LBRACE, + anon_sym_SQUOTE, ACTIONS(7002), 1, - anon_sym_RBRACK, + sym_escape_sequence, ACTIONS(7004), 1, - sym_escape_sequence, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4597), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [237587] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, ACTIONS(7006), 1, - sym__quoted_content_i_square, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4094), 2, - sym_interpolation, - aux_sym__quoted_i_square_repeat1, - [198273] = 7, - ACTIONS(5740), 1, - anon_sym_POUND_LBRACE, + anon_sym_DQUOTE, ACTIONS(7008), 1, - anon_sym_RBRACE, + sym_escape_sequence, ACTIONS(7010), 1, - sym_escape_sequence, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4614), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [237612] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, ACTIONS(7012), 1, - sym__quoted_content_i_curly, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4095), 2, - sym_interpolation, - aux_sym__quoted_i_curly_repeat1, - [198298] = 7, - ACTIONS(5732), 1, - anon_sym_POUND_LBRACE, + anon_sym_SQUOTE, ACTIONS(7014), 1, - anon_sym_RPAREN, + sym_escape_sequence, ACTIONS(7016), 1, - sym_escape_sequence, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4615), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [237637] = 7, + ACTIONS(6152), 1, + anon_sym_POUND_LBRACE, ACTIONS(7018), 1, - sym__quoted_content_i_parenthesis, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4096), 2, - sym_interpolation, - aux_sym__quoted_i_parenthesis_repeat1, - [198323] = 7, - ACTIONS(5678), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5680), 1, - sym_escape_sequence, - ACTIONS(5682), 1, - sym__quoted_content_i_heredoc_double, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(7020), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3838), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [198348] = 7, - ACTIONS(5694), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5788), 1, sym_escape_sequence, - ACTIONS(5790), 1, - sym__quoted_content_i_heredoc_single, ACTIONS(7022), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + sym__quoted_content_i_heredoc_single, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3852), 2, + STATE(4616), 2, sym_interpolation, aux_sym__quoted_i_heredoc_single_repeat1, - [198373] = 7, - ACTIONS(5670), 1, + [237662] = 7, + ACTIONS(6128), 1, anon_sym_POUND_LBRACE, - ACTIONS(5776), 1, - sym_escape_sequence, - ACTIONS(5778), 1, - sym__quoted_content_i_double, ACTIONS(7024), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3834), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [198398] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5782), 1, - sym_escape_sequence, - ACTIONS(5784), 1, - sym__quoted_content_i_single, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(7026), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3835), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [198423] = 7, - ACTIONS(5694), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5788), 1, sym_escape_sequence, - ACTIONS(5790), 1, - sym__quoted_content_i_heredoc_single, ACTIONS(7028), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + sym__quoted_content_i_heredoc_double, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3852), 2, + STATE(4617), 2, sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [198448] = 7, - ACTIONS(5678), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + [237687] = 7, + ACTIONS(6136), 1, anon_sym_POUND_LBRACE, - ACTIONS(5680), 1, - sym_escape_sequence, - ACTIONS(5682), 1, - sym__quoted_content_i_heredoc_double, ACTIONS(7030), 1, + anon_sym_DQUOTE, + ACTIONS(7032), 1, + sym_escape_sequence, + ACTIONS(7034), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4598), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [237712] = 7, + ACTIONS(6128), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6130), 1, + sym_escape_sequence, + ACTIONS(6132), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(7036), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -332972,17 +370628,35 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3838), 2, + STATE(4483), 2, sym_interpolation, aux_sym__quoted_i_heredoc_double_repeat1, - [198473] = 7, - ACTIONS(5686), 1, + [237737] = 7, + ACTIONS(6152), 1, anon_sym_POUND_LBRACE, - ACTIONS(5782), 1, + ACTIONS(6288), 1, sym_escape_sequence, - ACTIONS(5784), 1, + ACTIONS(6290), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(7038), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4482), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [237762] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6282), 1, + sym_escape_sequence, + ACTIONS(6284), 1, sym__quoted_content_i_single, - ACTIONS(7032), 1, + ACTIONS(7040), 1, anon_sym_SQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -332990,17 +370664,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3835), 2, + STATE(4481), 2, sym_interpolation, aux_sym__quoted_i_single_repeat1, - [198498] = 7, - ACTIONS(5670), 1, + [237787] = 7, + ACTIONS(6136), 1, anon_sym_POUND_LBRACE, - ACTIONS(5776), 1, + ACTIONS(6276), 1, sym_escape_sequence, - ACTIONS(5778), 1, + ACTIONS(6278), 1, sym__quoted_content_i_double, - ACTIONS(7034), 1, + ACTIONS(7042), 1, anon_sym_DQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -333008,53 +370682,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3834), 2, + STATE(4507), 2, sym_interpolation, aux_sym__quoted_i_double_repeat1, - [198523] = 7, - ACTIONS(5654), 1, + [237812] = 7, + ACTIONS(6128), 1, anon_sym_POUND_LBRACE, - ACTIONS(5656), 1, - sym_escape_sequence, - ACTIONS(5658), 1, - sym__quoted_content_i_slash, - ACTIONS(7036), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4021), 2, - sym_interpolation, - aux_sym__quoted_i_slash_repeat1, - [198548] = 7, - ACTIONS(5762), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5939), 1, - sym_escape_sequence, - ACTIONS(5941), 1, - sym__quoted_content_i_bar, - ACTIONS(7038), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4023), 2, - sym_interpolation, - aux_sym__quoted_i_bar_repeat1, - [198573] = 7, - ACTIONS(5678), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7040), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(7042), 1, - sym_escape_sequence, ACTIONS(7044), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(7046), 1, + sym_escape_sequence, + ACTIONS(7048), 1, sym__quoted_content_i_heredoc_double, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -333062,35 +370700,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4107), 2, + STATE(4607), 2, sym_interpolation, aux_sym__quoted_i_heredoc_double_repeat1, - [198598] = 7, - ACTIONS(5662), 1, + [237837] = 7, + ACTIONS(6152), 1, anon_sym_POUND_LBRACE, - ACTIONS(5933), 1, - sym_escape_sequence, - ACTIONS(5935), 1, - sym__quoted_content_i_angle, - ACTIONS(7046), 1, - anon_sym_GT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3911), 2, - sym_interpolation, - aux_sym__quoted_i_angle_repeat1, - [198623] = 7, - ACTIONS(5694), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7048), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(7050), 1, - sym_escape_sequence, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(7052), 1, + sym_escape_sequence, + ACTIONS(7054), 1, sym__quoted_content_i_heredoc_single, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -333098,89 +370718,125 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4108), 2, + STATE(4608), 2, sym_interpolation, aux_sym__quoted_i_heredoc_single_repeat1, - [198648] = 7, - ACTIONS(5748), 1, + [237862] = 7, + ACTIONS(6128), 1, anon_sym_POUND_LBRACE, - ACTIONS(5927), 1, + ACTIONS(6130), 1, sym_escape_sequence, - ACTIONS(5929), 1, - sym__quoted_content_i_square, - ACTIONS(7054), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4046), 2, - sym_interpolation, - aux_sym__quoted_i_square_repeat1, - [198673] = 7, - ACTIONS(5740), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5921), 1, - sym_escape_sequence, - ACTIONS(5923), 1, - sym__quoted_content_i_curly, + ACTIONS(6132), 1, + sym__quoted_content_i_heredoc_double, ACTIONS(7056), 1, - anon_sym_RBRACE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4050), 2, + STATE(4483), 2, sym_interpolation, - aux_sym__quoted_i_curly_repeat1, - [198698] = 7, - ACTIONS(5686), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + [237887] = 7, + ACTIONS(6136), 1, anon_sym_POUND_LBRACE, - ACTIONS(7058), 1, - anon_sym_SQUOTE, - ACTIONS(7060), 1, + ACTIONS(6276), 1, sym_escape_sequence, - ACTIONS(7062), 1, - sym__quoted_content_i_single, + ACTIONS(6278), 1, + sym__quoted_content_i_double, + ACTIONS(7058), 1, + anon_sym_DQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4113), 2, + STATE(4507), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [237912] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6282), 1, + sym_escape_sequence, + ACTIONS(6284), 1, + sym__quoted_content_i_single, + ACTIONS(7060), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4481), 2, sym_interpolation, aux_sym__quoted_i_single_repeat1, - [198723] = 7, - ACTIONS(5732), 1, + [237937] = 7, + ACTIONS(6152), 1, anon_sym_POUND_LBRACE, - ACTIONS(5915), 1, + ACTIONS(6288), 1, sym_escape_sequence, - ACTIONS(5917), 1, - sym__quoted_content_i_parenthesis, - ACTIONS(7064), 1, - anon_sym_RPAREN, + ACTIONS(6290), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(7062), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4051), 2, + STATE(4482), 2, sym_interpolation, - aux_sym__quoted_i_parenthesis_repeat1, - [198748] = 7, - ACTIONS(5670), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + [237962] = 7, + ACTIONS(6128), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6130), 1, + sym_escape_sequence, + ACTIONS(6132), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(7064), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4483), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [237987] = 7, + ACTIONS(6144), 1, anon_sym_POUND_LBRACE, ACTIONS(7066), 1, - anon_sym_DQUOTE, + anon_sym_SQUOTE, ACTIONS(7068), 1, sym_escape_sequence, ACTIONS(7070), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4609), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [238012] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7072), 1, + anon_sym_DQUOTE, + ACTIONS(7074), 1, + sym_escape_sequence, + ACTIONS(7076), 1, sym__quoted_content_i_double, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -333188,341 +370844,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4114), 2, + STATE(4610), 2, sym_interpolation, aux_sym__quoted_i_double_repeat1, - [198773] = 7, - ACTIONS(5654), 1, + [238037] = 7, + ACTIONS(6128), 1, anon_sym_POUND_LBRACE, - ACTIONS(5656), 1, + ACTIONS(6130), 1, sym_escape_sequence, - ACTIONS(5658), 1, - sym__quoted_content_i_slash, - ACTIONS(7072), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4021), 2, - sym_interpolation, - aux_sym__quoted_i_slash_repeat1, - [198798] = 7, - ACTIONS(5762), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5939), 1, - sym_escape_sequence, - ACTIONS(5941), 1, - sym__quoted_content_i_bar, - ACTIONS(7074), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4023), 2, - sym_interpolation, - aux_sym__quoted_i_bar_repeat1, - [198823] = 7, - ACTIONS(5662), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5933), 1, - sym_escape_sequence, - ACTIONS(5935), 1, - sym__quoted_content_i_angle, - ACTIONS(7076), 1, - anon_sym_GT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3911), 2, - sym_interpolation, - aux_sym__quoted_i_angle_repeat1, - [198848] = 7, - ACTIONS(5748), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5927), 1, - sym_escape_sequence, - ACTIONS(5929), 1, - sym__quoted_content_i_square, - ACTIONS(7078), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4046), 2, - sym_interpolation, - aux_sym__quoted_i_square_repeat1, - [198873] = 7, - ACTIONS(5740), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5921), 1, - sym_escape_sequence, - ACTIONS(5923), 1, - sym__quoted_content_i_curly, - ACTIONS(7080), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4050), 2, - sym_interpolation, - aux_sym__quoted_i_curly_repeat1, - [198898] = 7, - ACTIONS(5732), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5915), 1, - sym_escape_sequence, - ACTIONS(5917), 1, - sym__quoted_content_i_parenthesis, - ACTIONS(7082), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4051), 2, - sym_interpolation, - aux_sym__quoted_i_parenthesis_repeat1, - [198923] = 7, - ACTIONS(5732), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7084), 1, - anon_sym_RPAREN, - ACTIONS(7086), 1, - sym_escape_sequence, - ACTIONS(7088), 1, - sym__quoted_content_i_parenthesis, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4162), 2, - sym_interpolation, - aux_sym__quoted_i_parenthesis_repeat1, - [198948] = 7, - ACTIONS(5740), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7090), 1, - anon_sym_RBRACE, - ACTIONS(7092), 1, - sym_escape_sequence, - ACTIONS(7094), 1, - sym__quoted_content_i_curly, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4163), 2, - sym_interpolation, - aux_sym__quoted_i_curly_repeat1, - [198973] = 7, - ACTIONS(5748), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7096), 1, - anon_sym_RBRACK, - ACTIONS(7098), 1, - sym_escape_sequence, - ACTIONS(7100), 1, - sym__quoted_content_i_square, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4164), 2, - sym_interpolation, - aux_sym__quoted_i_square_repeat1, - [198998] = 7, - ACTIONS(5662), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7102), 1, - anon_sym_GT, - ACTIONS(7104), 1, - sym_escape_sequence, - ACTIONS(7106), 1, - sym__quoted_content_i_angle, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4165), 2, - sym_interpolation, - aux_sym__quoted_i_angle_repeat1, - [199023] = 7, - ACTIONS(5762), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7108), 1, - anon_sym_PIPE, - ACTIONS(7110), 1, - sym_escape_sequence, - ACTIONS(7112), 1, - sym__quoted_content_i_bar, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4166), 2, - sym_interpolation, - aux_sym__quoted_i_bar_repeat1, - [199048] = 7, - ACTIONS(5654), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7114), 1, - anon_sym_SLASH, - ACTIONS(7116), 1, - sym_escape_sequence, - ACTIONS(7118), 1, - sym__quoted_content_i_slash, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4167), 2, - sym_interpolation, - aux_sym__quoted_i_slash_repeat1, - [199073] = 7, - ACTIONS(5654), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7120), 1, - anon_sym_SLASH, - ACTIONS(7122), 1, - sym_escape_sequence, - ACTIONS(7124), 1, - sym__quoted_content_i_slash, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4125), 2, - sym_interpolation, - aux_sym__quoted_i_slash_repeat1, - [199098] = 7, - ACTIONS(5762), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7126), 1, - anon_sym_PIPE, - ACTIONS(7128), 1, - sym_escape_sequence, - ACTIONS(7130), 1, - sym__quoted_content_i_bar, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4126), 2, - sym_interpolation, - aux_sym__quoted_i_bar_repeat1, - [199123] = 7, - ACTIONS(5662), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7132), 1, - anon_sym_GT, - ACTIONS(7134), 1, - sym_escape_sequence, - ACTIONS(7136), 1, - sym__quoted_content_i_angle, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4127), 2, - sym_interpolation, - aux_sym__quoted_i_angle_repeat1, - [199148] = 7, - ACTIONS(5748), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7138), 1, - anon_sym_RBRACK, - ACTIONS(7140), 1, - sym_escape_sequence, - ACTIONS(7142), 1, - sym__quoted_content_i_square, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4128), 2, - sym_interpolation, - aux_sym__quoted_i_square_repeat1, - [199173] = 7, - ACTIONS(5740), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7144), 1, - anon_sym_RBRACE, - ACTIONS(7146), 1, - sym_escape_sequence, - ACTIONS(7148), 1, - sym__quoted_content_i_curly, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4129), 2, - sym_interpolation, - aux_sym__quoted_i_curly_repeat1, - [199198] = 7, - ACTIONS(5732), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7150), 1, - anon_sym_RPAREN, - ACTIONS(7152), 1, - sym_escape_sequence, - ACTIONS(7154), 1, - sym__quoted_content_i_parenthesis, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4130), 2, - sym_interpolation, - aux_sym__quoted_i_parenthesis_repeat1, - [199223] = 7, - ACTIONS(5678), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5680), 1, - sym_escape_sequence, - ACTIONS(5682), 1, + ACTIONS(6132), 1, sym__quoted_content_i_heredoc_double, - ACTIONS(7156), 1, + ACTIONS(7078), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -333530,17 +370862,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3838), 2, + STATE(4483), 2, sym_interpolation, aux_sym__quoted_i_heredoc_double_repeat1, - [199248] = 7, - ACTIONS(5694), 1, + [238062] = 7, + ACTIONS(6152), 1, anon_sym_POUND_LBRACE, - ACTIONS(5788), 1, + ACTIONS(6288), 1, sym_escape_sequence, - ACTIONS(5790), 1, + ACTIONS(6290), 1, sym__quoted_content_i_heredoc_single, - ACTIONS(7158), 1, + ACTIONS(7080), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -333548,17 +370880,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3852), 2, + STATE(4482), 2, sym_interpolation, aux_sym__quoted_i_heredoc_single_repeat1, - [199273] = 7, - ACTIONS(5686), 1, + [238087] = 7, + ACTIONS(6144), 1, anon_sym_POUND_LBRACE, - ACTIONS(5782), 1, + ACTIONS(6282), 1, sym_escape_sequence, - ACTIONS(5784), 1, + ACTIONS(6284), 1, sym__quoted_content_i_single, - ACTIONS(7160), 1, + ACTIONS(7082), 1, anon_sym_SQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -333566,17 +370898,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3835), 2, + STATE(4481), 2, sym_interpolation, aux_sym__quoted_i_single_repeat1, - [199298] = 7, - ACTIONS(5670), 1, + [238112] = 7, + ACTIONS(6136), 1, anon_sym_POUND_LBRACE, - ACTIONS(5776), 1, + ACTIONS(6276), 1, sym_escape_sequence, - ACTIONS(5778), 1, + ACTIONS(6278), 1, sym__quoted_content_i_double, - ACTIONS(7162), 1, + ACTIONS(7084), 1, anon_sym_DQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -333584,215 +370916,557 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3834), 2, + STATE(4507), 2, sym_interpolation, aux_sym__quoted_i_double_repeat1, - [199323] = 7, - ACTIONS(5678), 1, + [238137] = 7, + ACTIONS(6152), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7086), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(7088), 1, + sym_escape_sequence, + ACTIONS(7090), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4502), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [238162] = 7, + ACTIONS(6128), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7092), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(7094), 1, + sym_escape_sequence, + ACTIONS(7096), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4620), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [238187] = 7, + ACTIONS(6120), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7098), 1, + anon_sym_SLASH, + ACTIONS(7100), 1, + sym_escape_sequence, + ACTIONS(7102), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4496), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [238212] = 7, + ACTIONS(6152), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7104), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(7106), 1, + sym_escape_sequence, + ACTIONS(7108), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4621), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [238237] = 7, + ACTIONS(6178), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7110), 1, + anon_sym_PIPE, + ACTIONS(7112), 1, + sym_escape_sequence, + ACTIONS(7114), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4497), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [238262] = 7, + ACTIONS(6186), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7116), 1, + anon_sym_GT, + ACTIONS(7118), 1, + sym_escape_sequence, + ACTIONS(7120), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4499), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [238287] = 7, + ACTIONS(6202), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7122), 1, + anon_sym_RPAREN, + ACTIONS(7124), 1, + sym_escape_sequence, + ACTIONS(7126), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4657), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [238312] = 7, + ACTIONS(6194), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7128), 1, + anon_sym_RBRACK, + ACTIONS(7130), 1, + sym_escape_sequence, + ACTIONS(7132), 1, + sym__quoted_content_i_square, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4509), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [238337] = 7, + ACTIONS(6112), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7134), 1, + anon_sym_RBRACE, + ACTIONS(7136), 1, + sym_escape_sequence, + ACTIONS(7138), 1, + sym__quoted_content_i_curly, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4658), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [238362] = 7, + ACTIONS(6112), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7140), 1, + anon_sym_RBRACE, + ACTIONS(7142), 1, + sym_escape_sequence, + ACTIONS(7144), 1, + sym__quoted_content_i_curly, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4510), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [238387] = 7, + ACTIONS(6194), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7146), 1, + anon_sym_RBRACK, + ACTIONS(7148), 1, + sym_escape_sequence, + ACTIONS(7150), 1, + sym__quoted_content_i_square, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4661), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [238412] = 7, + ACTIONS(6202), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7152), 1, + anon_sym_RPAREN, + ACTIONS(7154), 1, + sym_escape_sequence, + ACTIONS(7156), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4442), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [238437] = 7, + ACTIONS(6202), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7158), 1, + anon_sym_RPAREN, + ACTIONS(7160), 1, + sym_escape_sequence, + ACTIONS(7162), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4667), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [238462] = 7, + ACTIONS(6112), 1, anon_sym_POUND_LBRACE, ACTIONS(7164), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_RBRACE, ACTIONS(7166), 1, sym_escape_sequence, ACTIONS(7168), 1, - sym__quoted_content_i_heredoc_double, + sym__quoted_content_i_curly, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4143), 2, + STATE(4668), 2, sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [199348] = 7, - ACTIONS(5694), 1, + aux_sym__quoted_i_curly_repeat1, + [238487] = 7, + ACTIONS(6194), 1, anon_sym_POUND_LBRACE, ACTIONS(7170), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_RBRACK, ACTIONS(7172), 1, sym_escape_sequence, ACTIONS(7174), 1, - sym__quoted_content_i_heredoc_single, + sym__quoted_content_i_square, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4144), 2, + STATE(4669), 2, sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [199373] = 7, - ACTIONS(5686), 1, + aux_sym__quoted_i_square_repeat1, + [238512] = 7, + ACTIONS(6186), 1, anon_sym_POUND_LBRACE, ACTIONS(7176), 1, - anon_sym_SQUOTE, + anon_sym_GT, ACTIONS(7178), 1, sym_escape_sequence, ACTIONS(7180), 1, - sym__quoted_content_i_single, + sym__quoted_content_i_angle, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4145), 2, + STATE(4670), 2, sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [199398] = 7, - ACTIONS(5670), 1, + aux_sym__quoted_i_angle_repeat1, + [238537] = 7, + ACTIONS(6178), 1, anon_sym_POUND_LBRACE, ACTIONS(7182), 1, - anon_sym_DQUOTE, + anon_sym_PIPE, ACTIONS(7184), 1, sym_escape_sequence, ACTIONS(7186), 1, - sym__quoted_content_i_double, + sym__quoted_content_i_bar, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4146), 2, + STATE(4671), 2, sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [199423] = 7, - ACTIONS(5762), 1, + aux_sym__quoted_i_bar_repeat1, + [238562] = 7, + ACTIONS(6120), 1, anon_sym_POUND_LBRACE, - ACTIONS(5939), 1, - sym_escape_sequence, - ACTIONS(5941), 1, - sym__quoted_content_i_bar, ACTIONS(7188), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4023), 2, - sym_interpolation, - aux_sym__quoted_i_bar_repeat1, - [199448] = 7, - ACTIONS(5662), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5933), 1, - sym_escape_sequence, - ACTIONS(5935), 1, - sym__quoted_content_i_angle, + anon_sym_SLASH, ACTIONS(7190), 1, - anon_sym_GT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3911), 2, - sym_interpolation, - aux_sym__quoted_i_angle_repeat1, - [199473] = 7, - ACTIONS(5748), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5927), 1, sym_escape_sequence, - ACTIONS(5929), 1, - sym__quoted_content_i_square, ACTIONS(7192), 1, - anon_sym_RBRACK, + sym__quoted_content_i_slash, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4046), 2, + STATE(4672), 2, sym_interpolation, - aux_sym__quoted_i_square_repeat1, - [199498] = 7, - ACTIONS(5740), 1, + aux_sym__quoted_i_slash_repeat1, + [238587] = 7, + ACTIONS(6144), 1, anon_sym_POUND_LBRACE, - ACTIONS(5921), 1, - sym_escape_sequence, - ACTIONS(5923), 1, - sym__quoted_content_i_curly, ACTIONS(7194), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4050), 2, - sym_interpolation, - aux_sym__quoted_i_curly_repeat1, - [199523] = 7, - ACTIONS(5732), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5915), 1, - sym_escape_sequence, - ACTIONS(5917), 1, - sym__quoted_content_i_parenthesis, + anon_sym_SQUOTE, ACTIONS(7196), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4051), 2, - sym_interpolation, - aux_sym__quoted_i_parenthesis_repeat1, - [199548] = 7, - ACTIONS(5654), 1, - anon_sym_POUND_LBRACE, + sym_escape_sequence, ACTIONS(7198), 1, - anon_sym_SLASH, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4622), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [238612] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, ACTIONS(7200), 1, - sym_escape_sequence, + anon_sym_DQUOTE, ACTIONS(7202), 1, - sym__quoted_content_i_slash, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3802), 2, - sym_interpolation, - aux_sym__quoted_i_slash_repeat1, - [199573] = 7, - ACTIONS(5762), 1, - anon_sym_POUND_LBRACE, + sym_escape_sequence, ACTIONS(7204), 1, - anon_sym_PIPE, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4623), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [238637] = 7, + ACTIONS(6128), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6130), 1, + sym_escape_sequence, + ACTIONS(6132), 1, + sym__quoted_content_i_heredoc_double, ACTIONS(7206), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4483), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [238662] = 7, + ACTIONS(6152), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6288), 1, sym_escape_sequence, + ACTIONS(6290), 1, + sym__quoted_content_i_heredoc_single, ACTIONS(7208), 1, - sym__quoted_content_i_bar, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4151), 2, + STATE(4482), 2, sym_interpolation, - aux_sym__quoted_i_bar_repeat1, - [199598] = 7, - ACTIONS(5662), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + [238687] = 7, + ACTIONS(6144), 1, anon_sym_POUND_LBRACE, + ACTIONS(6282), 1, + sym_escape_sequence, + ACTIONS(6284), 1, + sym__quoted_content_i_single, ACTIONS(7210), 1, - anon_sym_GT, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4481), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [238712] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6276), 1, + sym_escape_sequence, + ACTIONS(6278), 1, + sym__quoted_content_i_double, ACTIONS(7212), 1, - sym_escape_sequence, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4507), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [238737] = 7, + ACTIONS(6128), 1, + anon_sym_POUND_LBRACE, ACTIONS(7214), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(7216), 1, + sym_escape_sequence, + ACTIONS(7218), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4644), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [238762] = 7, + ACTIONS(6152), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7220), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(7222), 1, + sym_escape_sequence, + ACTIONS(7224), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4645), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [238787] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7226), 1, + anon_sym_SQUOTE, + ACTIONS(7228), 1, + sym_escape_sequence, + ACTIONS(7230), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4646), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [238812] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7232), 1, + anon_sym_DQUOTE, + ACTIONS(7234), 1, + sym_escape_sequence, + ACTIONS(7236), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4647), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [238837] = 7, + ACTIONS(6128), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6130), 1, + sym_escape_sequence, + ACTIONS(6132), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(7238), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4483), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [238862] = 7, + ACTIONS(6152), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6288), 1, + sym_escape_sequence, + ACTIONS(6290), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(7240), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4482), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [238887] = 7, + ACTIONS(6186), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7242), 1, + anon_sym_GT, + ACTIONS(7244), 1, + sym_escape_sequence, + ACTIONS(7246), 1, sym__quoted_content_i_angle, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -333800,71 +371474,53 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4152), 2, + STATE(4664), 2, sym_interpolation, aux_sym__quoted_i_angle_repeat1, - [199623] = 7, - ACTIONS(5748), 1, + [238912] = 7, + ACTIONS(6178), 1, anon_sym_POUND_LBRACE, - ACTIONS(7216), 1, - anon_sym_RBRACK, - ACTIONS(7218), 1, + ACTIONS(7248), 1, + anon_sym_PIPE, + ACTIONS(7250), 1, sym_escape_sequence, - ACTIONS(7220), 1, - sym__quoted_content_i_square, + ACTIONS(7252), 1, + sym__quoted_content_i_bar, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4153), 2, + STATE(4665), 2, sym_interpolation, - aux_sym__quoted_i_square_repeat1, - [199648] = 7, - ACTIONS(5740), 1, + aux_sym__quoted_i_bar_repeat1, + [238937] = 7, + ACTIONS(6120), 1, anon_sym_POUND_LBRACE, - ACTIONS(7222), 1, - anon_sym_RBRACE, - ACTIONS(7224), 1, + ACTIONS(7254), 1, + anon_sym_SLASH, + ACTIONS(7256), 1, sym_escape_sequence, - ACTIONS(7226), 1, - sym__quoted_content_i_curly, + ACTIONS(7258), 1, + sym__quoted_content_i_slash, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4154), 2, + STATE(4666), 2, sym_interpolation, - aux_sym__quoted_i_curly_repeat1, - [199673] = 7, - ACTIONS(5732), 1, + aux_sym__quoted_i_slash_repeat1, + [238962] = 7, + ACTIONS(6202), 1, anon_sym_POUND_LBRACE, - ACTIONS(7228), 1, - anon_sym_RPAREN, - ACTIONS(7230), 1, + ACTIONS(6314), 1, sym_escape_sequence, - ACTIONS(7232), 1, + ACTIONS(6316), 1, sym__quoted_content_i_parenthesis, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4155), 2, - sym_interpolation, - aux_sym__quoted_i_parenthesis_repeat1, - [199698] = 7, - ACTIONS(5732), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5915), 1, - sym_escape_sequence, - ACTIONS(5917), 1, - sym__quoted_content_i_parenthesis, - ACTIONS(7234), 1, + ACTIONS(7260), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -333872,17 +371528,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4051), 2, + STATE(4585), 2, sym_interpolation, aux_sym__quoted_i_parenthesis_repeat1, - [199723] = 7, - ACTIONS(5740), 1, + [238987] = 7, + ACTIONS(6112), 1, anon_sym_POUND_LBRACE, - ACTIONS(5921), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(5923), 1, + ACTIONS(6344), 1, sym__quoted_content_i_curly, - ACTIONS(7236), 1, + ACTIONS(7262), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -333890,17 +371546,53 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4050), 2, + STATE(4582), 2, sym_interpolation, aux_sym__quoted_i_curly_repeat1, - [199748] = 7, - ACTIONS(5748), 1, + [239012] = 7, + ACTIONS(6144), 1, anon_sym_POUND_LBRACE, - ACTIONS(5927), 1, + ACTIONS(6282), 1, sym_escape_sequence, - ACTIONS(5929), 1, + ACTIONS(6284), 1, + sym__quoted_content_i_single, + ACTIONS(7264), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4481), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [239037] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6276), 1, + sym_escape_sequence, + ACTIONS(6278), 1, + sym__quoted_content_i_double, + ACTIONS(7266), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4507), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [239062] = 7, + ACTIONS(6194), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6352), 1, + sym_escape_sequence, + ACTIONS(6354), 1, sym__quoted_content_i_square, - ACTIONS(7238), 1, + ACTIONS(7268), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -333908,17 +371600,53 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4046), 2, + STATE(4561), 2, sym_interpolation, aux_sym__quoted_i_square_repeat1, - [199773] = 7, - ACTIONS(5662), 1, + [239087] = 7, + ACTIONS(6128), 1, anon_sym_POUND_LBRACE, - ACTIONS(5933), 1, + ACTIONS(7270), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(7272), 1, sym_escape_sequence, - ACTIONS(5935), 1, + ACTIONS(7274), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4652), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [239112] = 7, + ACTIONS(6152), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7276), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(7278), 1, + sym_escape_sequence, + ACTIONS(7280), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4653), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [239137] = 7, + ACTIONS(6186), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6358), 1, + sym_escape_sequence, + ACTIONS(6360), 1, sym__quoted_content_i_angle, - ACTIONS(7240), 1, + ACTIONS(7282), 1, anon_sym_GT, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -333926,251 +371654,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3911), 2, + STATE(4552), 2, sym_interpolation, aux_sym__quoted_i_angle_repeat1, - [199798] = 7, - ACTIONS(5762), 1, + [239162] = 7, + ACTIONS(6178), 1, anon_sym_POUND_LBRACE, - ACTIONS(5939), 1, + ACTIONS(6364), 1, sym_escape_sequence, - ACTIONS(5941), 1, + ACTIONS(6366), 1, sym__quoted_content_i_bar, - ACTIONS(7242), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4023), 2, - sym_interpolation, - aux_sym__quoted_i_bar_repeat1, - [199823] = 7, - ACTIONS(5654), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5656), 1, - sym_escape_sequence, - ACTIONS(5658), 1, - sym__quoted_content_i_slash, - ACTIONS(7244), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4021), 2, - sym_interpolation, - aux_sym__quoted_i_slash_repeat1, - [199848] = 7, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7246), 1, - anon_sym_DQUOTE, - ACTIONS(7248), 1, - sym_escape_sequence, - ACTIONS(7250), 1, - sym__quoted_content_i_double, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4196), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [199873] = 7, - ACTIONS(5678), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5680), 1, - sym_escape_sequence, - ACTIONS(5682), 1, - sym__quoted_content_i_heredoc_double, - ACTIONS(7252), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3838), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [199898] = 7, - ACTIONS(5694), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5788), 1, - sym_escape_sequence, - ACTIONS(5790), 1, - sym__quoted_content_i_heredoc_single, - ACTIONS(7254), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3852), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [199923] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5782), 1, - sym_escape_sequence, - ACTIONS(5784), 1, - sym__quoted_content_i_single, - ACTIONS(7256), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3835), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [199948] = 7, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5776), 1, - sym_escape_sequence, - ACTIONS(5778), 1, - sym__quoted_content_i_double, - ACTIONS(7258), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3834), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [199973] = 7, - ACTIONS(5678), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7260), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(7262), 1, - sym_escape_sequence, - ACTIONS(7264), 1, - sym__quoted_content_i_heredoc_double, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4169), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [199998] = 7, - ACTIONS(5694), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7266), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(7268), 1, - sym_escape_sequence, - ACTIONS(7270), 1, - sym__quoted_content_i_heredoc_single, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4170), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [200023] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7272), 1, - anon_sym_SQUOTE, - ACTIONS(7274), 1, - sym_escape_sequence, - ACTIONS(7276), 1, - sym__quoted_content_i_single, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4171), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [200048] = 7, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7278), 1, - anon_sym_DQUOTE, - ACTIONS(7280), 1, - sym_escape_sequence, - ACTIONS(7282), 1, - sym__quoted_content_i_double, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4172), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [200073] = 7, - ACTIONS(5694), 1, - anon_sym_POUND_LBRACE, ACTIONS(7284), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(7286), 1, - sym_escape_sequence, - ACTIONS(7288), 1, - sym__quoted_content_i_heredoc_single, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4206), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [200098] = 7, - ACTIONS(5654), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5656), 1, - sym_escape_sequence, - ACTIONS(5658), 1, - sym__quoted_content_i_slash, - ACTIONS(7290), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4021), 2, - sym_interpolation, - aux_sym__quoted_i_slash_repeat1, - [200123] = 7, - ACTIONS(5762), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5939), 1, - sym_escape_sequence, - ACTIONS(5941), 1, - sym__quoted_content_i_bar, - ACTIONS(7292), 1, anon_sym_PIPE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -334178,15 +371672,87 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4023), 2, + STATE(4549), 2, sym_interpolation, aux_sym__quoted_i_bar_repeat1, - [200148] = 7, - ACTIONS(5662), 1, + [239187] = 7, + ACTIONS(6120), 1, anon_sym_POUND_LBRACE, - ACTIONS(5933), 1, + ACTIONS(6122), 1, sym_escape_sequence, - ACTIONS(5935), 1, + ACTIONS(6124), 1, + sym__quoted_content_i_slash, + ACTIONS(7286), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4548), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [239212] = 7, + ACTIONS(6202), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6314), 1, + sym_escape_sequence, + ACTIONS(6316), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(7288), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4585), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [239237] = 7, + ACTIONS(6112), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6342), 1, + sym_escape_sequence, + ACTIONS(6344), 1, + sym__quoted_content_i_curly, + ACTIONS(7290), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4582), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [239262] = 7, + ACTIONS(6194), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6352), 1, + sym_escape_sequence, + ACTIONS(6354), 1, + sym__quoted_content_i_square, + ACTIONS(7292), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4561), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [239287] = 7, + ACTIONS(6186), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6358), 1, + sym_escape_sequence, + ACTIONS(6360), 1, sym__quoted_content_i_angle, ACTIONS(7294), 1, anon_sym_GT, @@ -334196,539 +371762,35 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3911), 2, + STATE(4552), 2, sym_interpolation, aux_sym__quoted_i_angle_repeat1, - [200173] = 7, - ACTIONS(5694), 1, + [239312] = 7, + ACTIONS(6178), 1, anon_sym_POUND_LBRACE, - ACTIONS(5788), 1, + ACTIONS(6364), 1, sym_escape_sequence, - ACTIONS(5790), 1, - sym__quoted_content_i_heredoc_single, - ACTIONS(7296), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3852), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [200198] = 7, - ACTIONS(5748), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5927), 1, - sym_escape_sequence, - ACTIONS(5929), 1, - sym__quoted_content_i_square, - ACTIONS(7298), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4046), 2, - sym_interpolation, - aux_sym__quoted_i_square_repeat1, - [200223] = 7, - ACTIONS(5740), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5921), 1, - sym_escape_sequence, - ACTIONS(5923), 1, - sym__quoted_content_i_curly, - ACTIONS(7300), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4050), 2, - sym_interpolation, - aux_sym__quoted_i_curly_repeat1, - [200248] = 7, - ACTIONS(5732), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5915), 1, - sym_escape_sequence, - ACTIONS(5917), 1, - sym__quoted_content_i_parenthesis, - ACTIONS(7302), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4051), 2, - sym_interpolation, - aux_sym__quoted_i_parenthesis_repeat1, - [200273] = 7, - ACTIONS(5654), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7304), 1, - anon_sym_SLASH, - ACTIONS(7306), 1, - sym_escape_sequence, - ACTIONS(7308), 1, - sym__quoted_content_i_slash, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4178), 2, - sym_interpolation, - aux_sym__quoted_i_slash_repeat1, - [200298] = 7, - ACTIONS(5762), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7310), 1, - anon_sym_PIPE, - ACTIONS(7312), 1, - sym_escape_sequence, - ACTIONS(7314), 1, + ACTIONS(6366), 1, sym__quoted_content_i_bar, + ACTIONS(7296), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4179), 2, + STATE(4549), 2, sym_interpolation, aux_sym__quoted_i_bar_repeat1, - [200323] = 7, - ACTIONS(5662), 1, + [239337] = 7, + ACTIONS(6120), 1, anon_sym_POUND_LBRACE, - ACTIONS(7316), 1, - anon_sym_GT, - ACTIONS(7318), 1, + ACTIONS(6122), 1, sym_escape_sequence, - ACTIONS(7320), 1, - sym__quoted_content_i_angle, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4180), 2, - sym_interpolation, - aux_sym__quoted_i_angle_repeat1, - [200348] = 7, - ACTIONS(5748), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7322), 1, - anon_sym_RBRACK, - ACTIONS(7324), 1, - sym_escape_sequence, - ACTIONS(7326), 1, - sym__quoted_content_i_square, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4182), 2, - sym_interpolation, - aux_sym__quoted_i_square_repeat1, - [200373] = 7, - ACTIONS(5740), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7328), 1, - anon_sym_RBRACE, - ACTIONS(7330), 1, - sym_escape_sequence, - ACTIONS(7332), 1, - sym__quoted_content_i_curly, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4183), 2, - sym_interpolation, - aux_sym__quoted_i_curly_repeat1, - [200398] = 7, - ACTIONS(5732), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7334), 1, - anon_sym_RPAREN, - ACTIONS(7336), 1, - sym_escape_sequence, - ACTIONS(7338), 1, - sym__quoted_content_i_parenthesis, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4184), 2, - sym_interpolation, - aux_sym__quoted_i_parenthesis_repeat1, - [200423] = 7, - ACTIONS(5678), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7340), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(7342), 1, - sym_escape_sequence, - ACTIONS(7344), 1, - sym__quoted_content_i_heredoc_double, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4207), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [200448] = 7, - ACTIONS(5678), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5680), 1, - sym_escape_sequence, - ACTIONS(5682), 1, - sym__quoted_content_i_heredoc_double, - ACTIONS(7346), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3838), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [200473] = 7, - ACTIONS(5694), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5788), 1, - sym_escape_sequence, - ACTIONS(5790), 1, - sym__quoted_content_i_heredoc_single, - ACTIONS(7348), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3852), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [200498] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5782), 1, - sym_escape_sequence, - ACTIONS(5784), 1, - sym__quoted_content_i_single, - ACTIONS(7350), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3835), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [200523] = 7, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5776), 1, - sym_escape_sequence, - ACTIONS(5778), 1, - sym__quoted_content_i_double, - ACTIONS(7352), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3834), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [200548] = 7, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5776), 1, - sym_escape_sequence, - ACTIONS(5778), 1, - sym__quoted_content_i_double, - ACTIONS(7354), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3834), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [200573] = 7, - ACTIONS(5678), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7356), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(7358), 1, - sym_escape_sequence, - ACTIONS(7360), 1, - sym__quoted_content_i_heredoc_double, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4192), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [200598] = 7, - ACTIONS(5694), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7362), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(7364), 1, - sym_escape_sequence, - ACTIONS(7366), 1, - sym__quoted_content_i_heredoc_single, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4193), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [200623] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7368), 1, - anon_sym_SQUOTE, - ACTIONS(7370), 1, - sym_escape_sequence, - ACTIONS(7372), 1, - sym__quoted_content_i_single, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4194), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [200648] = 7, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7374), 1, - anon_sym_DQUOTE, - ACTIONS(7376), 1, - sym_escape_sequence, - ACTIONS(7378), 1, - sym__quoted_content_i_double, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4212), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [200673] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7380), 1, - anon_sym_SQUOTE, - ACTIONS(7382), 1, - sym_escape_sequence, - ACTIONS(7384), 1, - sym__quoted_content_i_single, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4213), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [200698] = 7, - ACTIONS(5694), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7386), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(7388), 1, - sym_escape_sequence, - ACTIONS(7390), 1, - sym__quoted_content_i_heredoc_single, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4214), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [200723] = 7, - ACTIONS(5678), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7392), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(7394), 1, - sym_escape_sequence, - ACTIONS(7396), 1, - sym__quoted_content_i_heredoc_double, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4215), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [200748] = 7, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7398), 1, - anon_sym_DQUOTE, - ACTIONS(7400), 1, - sym_escape_sequence, - ACTIONS(7402), 1, - sym__quoted_content_i_double, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4195), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [200773] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5782), 1, - sym_escape_sequence, - ACTIONS(5784), 1, - sym__quoted_content_i_single, - ACTIONS(7404), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3835), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [200798] = 7, - ACTIONS(5694), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5788), 1, - sym_escape_sequence, - ACTIONS(5790), 1, - sym__quoted_content_i_heredoc_single, - ACTIONS(7406), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3852), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [200823] = 7, - ACTIONS(5678), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5680), 1, - sym_escape_sequence, - ACTIONS(5682), 1, - sym__quoted_content_i_heredoc_double, - ACTIONS(7408), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3838), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [200848] = 7, - ACTIONS(5732), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7410), 1, - anon_sym_RPAREN, - ACTIONS(7412), 1, - sym_escape_sequence, - ACTIONS(7414), 1, - sym__quoted_content_i_parenthesis, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4256), 2, - sym_interpolation, - aux_sym__quoted_i_parenthesis_repeat1, - [200873] = 7, - ACTIONS(5740), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7416), 1, - anon_sym_RBRACE, - ACTIONS(7418), 1, - sym_escape_sequence, - ACTIONS(7420), 1, - sym__quoted_content_i_curly, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4258), 2, - sym_interpolation, - aux_sym__quoted_i_curly_repeat1, - [200898] = 7, - ACTIONS(5654), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5656), 1, - sym_escape_sequence, - ACTIONS(5658), 1, + ACTIONS(6124), 1, sym__quoted_content_i_slash, - ACTIONS(7422), 1, + ACTIONS(7298), 1, anon_sym_SLASH, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -334736,53 +371798,89 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4021), 2, + STATE(4548), 2, sym_interpolation, aux_sym__quoted_i_slash_repeat1, - [200923] = 7, - ACTIONS(5748), 1, + [239362] = 7, + ACTIONS(6144), 1, anon_sym_POUND_LBRACE, - ACTIONS(7424), 1, - anon_sym_RBRACK, - ACTIONS(7426), 1, + ACTIONS(7300), 1, + anon_sym_SQUOTE, + ACTIONS(7302), 1, sym_escape_sequence, - ACTIONS(7428), 1, - sym__quoted_content_i_square, + ACTIONS(7304), 1, + sym__quoted_content_i_single, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4259), 2, + STATE(4659), 2, sym_interpolation, - aux_sym__quoted_i_square_repeat1, - [200948] = 7, - ACTIONS(5670), 1, + aux_sym__quoted_i_single_repeat1, + [239387] = 7, + ACTIONS(6136), 1, anon_sym_POUND_LBRACE, - ACTIONS(5776), 1, - sym_escape_sequence, - ACTIONS(5778), 1, - sym__quoted_content_i_double, - ACTIONS(7430), 1, + ACTIONS(7306), 1, anon_sym_DQUOTE, + ACTIONS(7308), 1, + sym_escape_sequence, + ACTIONS(7310), 1, + sym__quoted_content_i_double, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3834), 2, + STATE(4660), 2, sym_interpolation, aux_sym__quoted_i_double_repeat1, - [200973] = 7, - ACTIONS(5686), 1, + [239412] = 7, + ACTIONS(6128), 1, anon_sym_POUND_LBRACE, - ACTIONS(5782), 1, + ACTIONS(6130), 1, sym_escape_sequence, - ACTIONS(5784), 1, + ACTIONS(6132), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(7312), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4483), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [239437] = 7, + ACTIONS(6152), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6288), 1, + sym_escape_sequence, + ACTIONS(6290), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(7314), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4482), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [239462] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6282), 1, + sym_escape_sequence, + ACTIONS(6284), 1, sym__quoted_content_i_single, - ACTIONS(7432), 1, + ACTIONS(7316), 1, anon_sym_SQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -334790,15 +371888,483 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3835), 2, + STATE(4481), 2, sym_interpolation, aux_sym__quoted_i_single_repeat1, - [200998] = 7, - ACTIONS(5694), 1, + [239487] = 7, + ACTIONS(6136), 1, anon_sym_POUND_LBRACE, - ACTIONS(5788), 1, + ACTIONS(6276), 1, sym_escape_sequence, - ACTIONS(5790), 1, + ACTIONS(6278), 1, + sym__quoted_content_i_double, + ACTIONS(7318), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4507), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [239512] = 7, + ACTIONS(6128), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7320), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(7322), 1, + sym_escape_sequence, + ACTIONS(7324), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4675), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [239537] = 7, + ACTIONS(6152), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7326), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(7328), 1, + sym_escape_sequence, + ACTIONS(7330), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4676), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [239562] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7332), 1, + anon_sym_SQUOTE, + ACTIONS(7334), 1, + sym_escape_sequence, + ACTIONS(7336), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4677), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [239587] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7338), 1, + anon_sym_DQUOTE, + ACTIONS(7340), 1, + sym_escape_sequence, + ACTIONS(7342), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4678), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [239612] = 7, + ACTIONS(6128), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6130), 1, + sym_escape_sequence, + ACTIONS(6132), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(7344), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4483), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [239637] = 7, + ACTIONS(6128), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7346), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(7348), 1, + sym_escape_sequence, + ACTIONS(7350), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4500), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [239662] = 7, + ACTIONS(6152), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6288), 1, + sym_escape_sequence, + ACTIONS(6290), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(7352), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4482), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [239687] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6282), 1, + sym_escape_sequence, + ACTIONS(6284), 1, + sym__quoted_content_i_single, + ACTIONS(7354), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4481), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [239712] = 7, + ACTIONS(6128), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6130), 1, + sym_escape_sequence, + ACTIONS(6132), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(7356), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4483), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [239737] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7358), 1, + anon_sym_DQUOTE, + ACTIONS(7360), 1, + sym_escape_sequence, + ACTIONS(7362), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4759), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [239762] = 7, + ACTIONS(6152), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6288), 1, + sym_escape_sequence, + ACTIONS(6290), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(7364), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4482), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [239787] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6282), 1, + sym_escape_sequence, + ACTIONS(6284), 1, + sym__quoted_content_i_single, + ACTIONS(7366), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4481), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [239812] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6276), 1, + sym_escape_sequence, + ACTIONS(6278), 1, + sym__quoted_content_i_double, + ACTIONS(7368), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4507), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [239837] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7370), 1, + anon_sym_SQUOTE, + ACTIONS(7372), 1, + sym_escape_sequence, + ACTIONS(7374), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4764), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [239862] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6276), 1, + sym_escape_sequence, + ACTIONS(6278), 1, + sym__quoted_content_i_double, + ACTIONS(7376), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4507), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [239887] = 7, + ACTIONS(6128), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7378), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(7380), 1, + sym_escape_sequence, + ACTIONS(7382), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4683), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [239912] = 7, + ACTIONS(6128), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7384), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(7386), 1, + sym_escape_sequence, + ACTIONS(7388), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4687), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [239937] = 7, + ACTIONS(6152), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7390), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(7392), 1, + sym_escape_sequence, + ACTIONS(7394), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4689), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [239962] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7396), 1, + anon_sym_SQUOTE, + ACTIONS(7398), 1, + sym_escape_sequence, + ACTIONS(7400), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4690), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [239987] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7402), 1, + anon_sym_DQUOTE, + ACTIONS(7404), 1, + sym_escape_sequence, + ACTIONS(7406), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4691), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [240012] = 7, + ACTIONS(6152), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7408), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(7410), 1, + sym_escape_sequence, + ACTIONS(7412), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4685), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [240037] = 7, + ACTIONS(6120), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7414), 1, + anon_sym_SLASH, + ACTIONS(7416), 1, + sym_escape_sequence, + ACTIONS(7418), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4546), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [240062] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7420), 1, + anon_sym_SQUOTE, + ACTIONS(7422), 1, + sym_escape_sequence, + ACTIONS(7424), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4686), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [240087] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7426), 1, + anon_sym_DQUOTE, + ACTIONS(7428), 1, + sym_escape_sequence, + ACTIONS(7430), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4693), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [240112] = 7, + ACTIONS(6128), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6130), 1, + sym_escape_sequence, + ACTIONS(6132), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(7432), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4483), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [240137] = 7, + ACTIONS(6152), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6288), 1, + sym_escape_sequence, + ACTIONS(6290), 1, sym__quoted_content_i_heredoc_single, ACTIONS(7434), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, @@ -334808,215 +372374,197 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3852), 2, + STATE(4482), 2, sym_interpolation, aux_sym__quoted_i_heredoc_single_repeat1, - [201023] = 7, - ACTIONS(5678), 1, + [240162] = 7, + ACTIONS(6136), 1, anon_sym_POUND_LBRACE, - ACTIONS(5680), 1, - sym_escape_sequence, - ACTIONS(5682), 1, - sym__quoted_content_i_heredoc_double, ACTIONS(7436), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3838), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [201048] = 7, - ACTIONS(5662), 1, - anon_sym_POUND_LBRACE, + anon_sym_DQUOTE, ACTIONS(7438), 1, - anon_sym_GT, + sym_escape_sequence, ACTIONS(7440), 1, - sym_escape_sequence, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4717), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [240187] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, ACTIONS(7442), 1, - sym__quoted_content_i_angle, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4260), 2, - sym_interpolation, - aux_sym__quoted_i_angle_repeat1, - [201073] = 7, - ACTIONS(5654), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5656), 1, - sym_escape_sequence, - ACTIONS(5658), 1, - sym__quoted_content_i_slash, + anon_sym_SQUOTE, ACTIONS(7444), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4021), 2, - sym_interpolation, - aux_sym__quoted_i_slash_repeat1, - [201098] = 7, - ACTIONS(5762), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5939), 1, sym_escape_sequence, - ACTIONS(5941), 1, - sym__quoted_content_i_bar, ACTIONS(7446), 1, - anon_sym_PIPE, + sym__quoted_content_i_single, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4023), 2, + STATE(4718), 2, sym_interpolation, - aux_sym__quoted_i_bar_repeat1, - [201123] = 7, - ACTIONS(5654), 1, + aux_sym__quoted_i_single_repeat1, + [240212] = 7, + ACTIONS(6152), 1, anon_sym_POUND_LBRACE, ACTIONS(7448), 1, - anon_sym_SLASH, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(7450), 1, sym_escape_sequence, ACTIONS(7452), 1, - sym__quoted_content_i_slash, + sym__quoted_content_i_heredoc_single, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4115), 2, + STATE(4719), 2, sym_interpolation, - aux_sym__quoted_i_slash_repeat1, - [201148] = 7, - ACTIONS(5662), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + [240237] = 7, + ACTIONS(6128), 1, anon_sym_POUND_LBRACE, - ACTIONS(5933), 1, - sym_escape_sequence, - ACTIONS(5935), 1, - sym__quoted_content_i_angle, ACTIONS(7454), 1, - anon_sym_GT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3911), 2, - sym_interpolation, - aux_sym__quoted_i_angle_repeat1, - [201173] = 7, - ACTIONS(5762), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5939), 1, - sym_escape_sequence, - ACTIONS(5941), 1, - sym__quoted_content_i_bar, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(7456), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4023), 2, - sym_interpolation, - aux_sym__quoted_i_bar_repeat1, - [201198] = 7, - ACTIONS(5748), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5927), 1, sym_escape_sequence, - ACTIONS(5929), 1, - sym__quoted_content_i_square, ACTIONS(7458), 1, - anon_sym_RBRACK, + sym__quoted_content_i_heredoc_double, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4046), 2, + STATE(4720), 2, sym_interpolation, - aux_sym__quoted_i_square_repeat1, - [201223] = 7, - ACTIONS(5662), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + [240262] = 7, + ACTIONS(6144), 1, anon_sym_POUND_LBRACE, - ACTIONS(5933), 1, + ACTIONS(6282), 1, sym_escape_sequence, - ACTIONS(5935), 1, - sym__quoted_content_i_angle, + ACTIONS(6284), 1, + sym__quoted_content_i_single, ACTIONS(7460), 1, - anon_sym_GT, + anon_sym_SQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3911), 2, + STATE(4481), 2, sym_interpolation, - aux_sym__quoted_i_angle_repeat1, - [201248] = 7, - ACTIONS(5748), 1, + aux_sym__quoted_i_single_repeat1, + [240287] = 7, + ACTIONS(6136), 1, anon_sym_POUND_LBRACE, - ACTIONS(5927), 1, + ACTIONS(6276), 1, sym_escape_sequence, - ACTIONS(5929), 1, - sym__quoted_content_i_square, + ACTIONS(6278), 1, + sym__quoted_content_i_double, ACTIONS(7462), 1, - anon_sym_RBRACK, + anon_sym_DQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4046), 2, + STATE(4507), 2, sym_interpolation, - aux_sym__quoted_i_square_repeat1, - [201273] = 7, - ACTIONS(5740), 1, + aux_sym__quoted_i_double_repeat1, + [240312] = 7, + ACTIONS(6128), 1, anon_sym_POUND_LBRACE, - ACTIONS(5921), 1, - sym_escape_sequence, - ACTIONS(5923), 1, - sym__quoted_content_i_curly, ACTIONS(7464), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4050), 2, - sym_interpolation, - aux_sym__quoted_i_curly_repeat1, - [201298] = 7, - ACTIONS(5740), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5921), 1, - sym_escape_sequence, - ACTIONS(5923), 1, - sym__quoted_content_i_curly, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(7466), 1, + sym_escape_sequence, + ACTIONS(7468), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4703), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [240337] = 7, + ACTIONS(6152), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7470), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(7472), 1, + sym_escape_sequence, + ACTIONS(7474), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4704), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [240362] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7476), 1, + anon_sym_SQUOTE, + ACTIONS(7478), 1, + sym_escape_sequence, + ACTIONS(7480), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4709), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [240387] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7482), 1, + anon_sym_DQUOTE, + ACTIONS(7484), 1, + sym_escape_sequence, + ACTIONS(7486), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4710), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [240412] = 7, + ACTIONS(6112), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6342), 1, + sym_escape_sequence, + ACTIONS(6344), 1, + sym__quoted_content_i_curly, + ACTIONS(7488), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -335024,305 +372572,215 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4050), 2, + STATE(4582), 2, sym_interpolation, aux_sym__quoted_i_curly_repeat1, - [201323] = 7, - ACTIONS(5732), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5915), 1, - sym_escape_sequence, - ACTIONS(5917), 1, - sym__quoted_content_i_parenthesis, - ACTIONS(7468), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4051), 2, - sym_interpolation, - aux_sym__quoted_i_parenthesis_repeat1, - [201348] = 7, - ACTIONS(5732), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5915), 1, - sym_escape_sequence, - ACTIONS(5917), 1, - sym__quoted_content_i_parenthesis, - ACTIONS(7470), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4051), 2, - sym_interpolation, - aux_sym__quoted_i_parenthesis_repeat1, - [201373] = 7, - ACTIONS(5762), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7472), 1, - anon_sym_PIPE, - ACTIONS(7474), 1, - sym_escape_sequence, - ACTIONS(7476), 1, - sym__quoted_content_i_bar, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4116), 2, - sym_interpolation, - aux_sym__quoted_i_bar_repeat1, - [201398] = 7, - ACTIONS(5762), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7478), 1, - anon_sym_PIPE, - ACTIONS(7480), 1, - sym_escape_sequence, - ACTIONS(7482), 1, - sym__quoted_content_i_bar, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4261), 2, - sym_interpolation, - aux_sym__quoted_i_bar_repeat1, - [201423] = 7, - ACTIONS(5662), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7484), 1, - anon_sym_GT, - ACTIONS(7486), 1, - sym_escape_sequence, - ACTIONS(7488), 1, - sym__quoted_content_i_angle, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4118), 2, - sym_interpolation, - aux_sym__quoted_i_angle_repeat1, - [201448] = 7, - ACTIONS(5654), 1, + [240437] = 7, + ACTIONS(6178), 1, anon_sym_POUND_LBRACE, ACTIONS(7490), 1, - anon_sym_SLASH, + anon_sym_PIPE, ACTIONS(7492), 1, sym_escape_sequence, ACTIONS(7494), 1, - sym__quoted_content_i_slash, + sym__quoted_content_i_bar, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4262), 2, + STATE(4562), 2, sym_interpolation, - aux_sym__quoted_i_slash_repeat1, - [201473] = 7, - ACTIONS(5748), 1, + aux_sym__quoted_i_bar_repeat1, + [240462] = 7, + ACTIONS(6136), 1, anon_sym_POUND_LBRACE, + ACTIONS(6276), 1, + sym_escape_sequence, + ACTIONS(6278), 1, + sym__quoted_content_i_double, ACTIONS(7496), 1, - anon_sym_RBRACK, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4507), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [240487] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6282), 1, + sym_escape_sequence, + ACTIONS(6284), 1, + sym__quoted_content_i_single, ACTIONS(7498), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4481), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [240512] = 7, + ACTIONS(6152), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6288), 1, sym_escape_sequence, + ACTIONS(6290), 1, + sym__quoted_content_i_heredoc_single, ACTIONS(7500), 1, - sym__quoted_content_i_square, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4120), 2, + STATE(4482), 2, sym_interpolation, - aux_sym__quoted_i_square_repeat1, - [201498] = 7, - ACTIONS(5732), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + [240537] = 7, + ACTIONS(6128), 1, anon_sym_POUND_LBRACE, + ACTIONS(6130), 1, + sym_escape_sequence, + ACTIONS(6132), 1, + sym__quoted_content_i_heredoc_double, ACTIONS(7502), 1, - anon_sym_RPAREN, - ACTIONS(7504), 1, - sym_escape_sequence, - ACTIONS(7506), 1, - sym__quoted_content_i_parenthesis, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4265), 2, + STATE(4483), 2, sym_interpolation, - aux_sym__quoted_i_parenthesis_repeat1, - [201523] = 7, - ACTIONS(5740), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + [240562] = 7, + ACTIONS(6128), 1, anon_sym_POUND_LBRACE, - ACTIONS(7508), 1, - anon_sym_RBRACE, - ACTIONS(7510), 1, + ACTIONS(6130), 1, sym_escape_sequence, - ACTIONS(7512), 1, - sym__quoted_content_i_curly, + ACTIONS(6132), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(7504), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4266), 2, + STATE(4483), 2, sym_interpolation, - aux_sym__quoted_i_curly_repeat1, - [201548] = 7, - ACTIONS(5748), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + [240587] = 7, + ACTIONS(6152), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6288), 1, + sym_escape_sequence, + ACTIONS(6290), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(7506), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4482), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [240612] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6282), 1, + sym_escape_sequence, + ACTIONS(6284), 1, + sym__quoted_content_i_single, + ACTIONS(7508), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4481), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [240637] = 7, + ACTIONS(6152), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6288), 1, + sym_escape_sequence, + ACTIONS(6290), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(7510), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4482), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [240662] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6276), 1, + sym_escape_sequence, + ACTIONS(6278), 1, + sym__quoted_content_i_double, + ACTIONS(7512), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4507), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [240687] = 7, + ACTIONS(6186), 1, anon_sym_POUND_LBRACE, ACTIONS(7514), 1, - anon_sym_RBRACK, + anon_sym_GT, ACTIONS(7516), 1, sym_escape_sequence, ACTIONS(7518), 1, - sym__quoted_content_i_square, + sym__quoted_content_i_angle, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4267), 2, + STATE(4563), 2, sym_interpolation, - aux_sym__quoted_i_square_repeat1, - [201573] = 7, - ACTIONS(5662), 1, + aux_sym__quoted_i_angle_repeat1, + [240712] = 7, + ACTIONS(6194), 1, anon_sym_POUND_LBRACE, ACTIONS(7520), 1, - anon_sym_GT, + anon_sym_RBRACK, ACTIONS(7522), 1, sym_escape_sequence, ACTIONS(7524), 1, - sym__quoted_content_i_angle, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4268), 2, - sym_interpolation, - aux_sym__quoted_i_angle_repeat1, - [201598] = 7, - ACTIONS(5762), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7526), 1, - anon_sym_PIPE, - ACTIONS(7528), 1, - sym_escape_sequence, - ACTIONS(7530), 1, - sym__quoted_content_i_bar, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4269), 2, - sym_interpolation, - aux_sym__quoted_i_bar_repeat1, - [201623] = 7, - ACTIONS(5654), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7532), 1, - anon_sym_SLASH, - ACTIONS(7534), 1, - sym_escape_sequence, - ACTIONS(7536), 1, - sym__quoted_content_i_slash, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4270), 2, - sym_interpolation, - aux_sym__quoted_i_slash_repeat1, - [201648] = 7, - ACTIONS(5654), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7538), 1, - anon_sym_SLASH, - ACTIONS(7540), 1, - sym_escape_sequence, - ACTIONS(7542), 1, - sym__quoted_content_i_slash, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4217), 2, - sym_interpolation, - aux_sym__quoted_i_slash_repeat1, - [201673] = 7, - ACTIONS(5762), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7544), 1, - anon_sym_PIPE, - ACTIONS(7546), 1, - sym_escape_sequence, - ACTIONS(7548), 1, - sym__quoted_content_i_bar, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4218), 2, - sym_interpolation, - aux_sym__quoted_i_bar_repeat1, - [201698] = 7, - ACTIONS(5662), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7550), 1, - anon_sym_GT, - ACTIONS(7552), 1, - sym_escape_sequence, - ACTIONS(7554), 1, - sym__quoted_content_i_angle, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4220), 2, - sym_interpolation, - aux_sym__quoted_i_angle_repeat1, - [201723] = 7, - ACTIONS(5748), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7556), 1, - anon_sym_RBRACK, - ACTIONS(7558), 1, - sym_escape_sequence, - ACTIONS(7560), 1, sym__quoted_content_i_square, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -335330,17 +372788,107 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4222), 2, + STATE(4581), 2, sym_interpolation, aux_sym__quoted_i_square_repeat1, - [201748] = 7, - ACTIONS(5740), 1, + [240737] = 7, + ACTIONS(6178), 1, anon_sym_POUND_LBRACE, - ACTIONS(7562), 1, - anon_sym_RBRACE, - ACTIONS(7564), 1, + ACTIONS(6364), 1, sym_escape_sequence, - ACTIONS(7566), 1, + ACTIONS(6366), 1, + sym__quoted_content_i_bar, + ACTIONS(7526), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4549), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [240762] = 7, + ACTIONS(6128), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7528), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(7530), 1, + sym_escape_sequence, + ACTIONS(7532), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4721), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [240787] = 7, + ACTIONS(6152), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7534), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(7536), 1, + sym_escape_sequence, + ACTIONS(7538), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4722), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [240812] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7540), 1, + anon_sym_SQUOTE, + ACTIONS(7542), 1, + sym_escape_sequence, + ACTIONS(7544), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4723), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [240837] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7546), 1, + anon_sym_DQUOTE, + ACTIONS(7548), 1, + sym_escape_sequence, + ACTIONS(7550), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4725), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [240862] = 7, + ACTIONS(6112), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7552), 1, + anon_sym_RBRACE, + ACTIONS(7554), 1, + sym_escape_sequence, + ACTIONS(7556), 1, sym__quoted_content_i_curly, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -335348,17 +372896,107 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4225), 2, + STATE(4591), 2, sym_interpolation, aux_sym__quoted_i_curly_repeat1, - [201773] = 7, - ACTIONS(5732), 1, + [240887] = 7, + ACTIONS(6194), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6352), 1, + sym_escape_sequence, + ACTIONS(6354), 1, + sym__quoted_content_i_square, + ACTIONS(7558), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4561), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [240912] = 7, + ACTIONS(6202), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7560), 1, + anon_sym_RPAREN, + ACTIONS(7562), 1, + sym_escape_sequence, + ACTIONS(7564), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4593), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [240937] = 7, + ACTIONS(6186), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6358), 1, + sym_escape_sequence, + ACTIONS(6360), 1, + sym__quoted_content_i_angle, + ACTIONS(7566), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4552), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [240962] = 7, + ACTIONS(6152), 1, anon_sym_POUND_LBRACE, ACTIONS(7568), 1, - anon_sym_RPAREN, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(7570), 1, sym_escape_sequence, ACTIONS(7572), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4768), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [240987] = 7, + ACTIONS(6194), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6352), 1, + sym_escape_sequence, + ACTIONS(6354), 1, + sym__quoted_content_i_square, + ACTIONS(7574), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4561), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [241012] = 7, + ACTIONS(6202), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7576), 1, + anon_sym_RPAREN, + ACTIONS(7578), 1, + sym_escape_sequence, + ACTIONS(7580), 1, sym__quoted_content_i_parenthesis, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -335366,647 +373004,467 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4228), 2, + STATE(4770), 2, sym_interpolation, aux_sym__quoted_i_parenthesis_repeat1, - [201798] = 7, - ACTIONS(5686), 1, + [241037] = 7, + ACTIONS(6112), 1, anon_sym_POUND_LBRACE, - ACTIONS(7574), 1, - anon_sym_SQUOTE, - ACTIONS(7576), 1, - sym_escape_sequence, - ACTIONS(7578), 1, - sym__quoted_content_i_single, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4205), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [201823] = 7, - ACTIONS(5678), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5680), 1, - sym_escape_sequence, - ACTIONS(5682), 1, - sym__quoted_content_i_heredoc_double, - ACTIONS(7580), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3838), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [201848] = 7, - ACTIONS(5694), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5788), 1, - sym_escape_sequence, - ACTIONS(5790), 1, - sym__quoted_content_i_heredoc_single, ACTIONS(7582), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3852), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [201873] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5782), 1, - sym_escape_sequence, - ACTIONS(5784), 1, - sym__quoted_content_i_single, + anon_sym_RBRACE, ACTIONS(7584), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3835), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [201898] = 7, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5776), 1, sym_escape_sequence, - ACTIONS(5778), 1, - sym__quoted_content_i_double, ACTIONS(7586), 1, - anon_sym_DQUOTE, + sym__quoted_content_i_curly, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3834), 2, + STATE(4771), 2, sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [201923] = 7, - ACTIONS(5678), 1, + aux_sym__quoted_i_curly_repeat1, + [241062] = 7, + ACTIONS(6194), 1, anon_sym_POUND_LBRACE, ACTIONS(7588), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_RBRACK, ACTIONS(7590), 1, sym_escape_sequence, ACTIONS(7592), 1, - sym__quoted_content_i_heredoc_double, + sym__quoted_content_i_square, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4247), 2, + STATE(4772), 2, sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [201948] = 7, - ACTIONS(5694), 1, + aux_sym__quoted_i_square_repeat1, + [241087] = 7, + ACTIONS(6186), 1, anon_sym_POUND_LBRACE, ACTIONS(7594), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_GT, ACTIONS(7596), 1, sym_escape_sequence, ACTIONS(7598), 1, - sym__quoted_content_i_heredoc_single, + sym__quoted_content_i_angle, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4248), 2, + STATE(4773), 2, sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [201973] = 7, - ACTIONS(5686), 1, + aux_sym__quoted_i_angle_repeat1, + [241112] = 7, + ACTIONS(6178), 1, anon_sym_POUND_LBRACE, ACTIONS(7600), 1, - anon_sym_SQUOTE, + anon_sym_PIPE, ACTIONS(7602), 1, sym_escape_sequence, ACTIONS(7604), 1, - sym__quoted_content_i_single, + sym__quoted_content_i_bar, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4249), 2, + STATE(4774), 2, sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [201998] = 7, - ACTIONS(5670), 1, + aux_sym__quoted_i_bar_repeat1, + [241137] = 7, + ACTIONS(6120), 1, anon_sym_POUND_LBRACE, ACTIONS(7606), 1, - anon_sym_DQUOTE, + anon_sym_SLASH, ACTIONS(7608), 1, sym_escape_sequence, ACTIONS(7610), 1, - sym__quoted_content_i_double, + sym__quoted_content_i_slash, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4250), 2, + STATE(4775), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [241162] = 7, + ACTIONS(6120), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6122), 1, + sym_escape_sequence, + ACTIONS(6124), 1, + sym__quoted_content_i_slash, + ACTIONS(7612), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4548), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [241187] = 7, + ACTIONS(6178), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6364), 1, + sym_escape_sequence, + ACTIONS(6366), 1, + sym__quoted_content_i_bar, + ACTIONS(7614), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4549), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [241212] = 7, + ACTIONS(6186), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6358), 1, + sym_escape_sequence, + ACTIONS(6360), 1, + sym__quoted_content_i_angle, + ACTIONS(7616), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4552), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [241237] = 7, + ACTIONS(6194), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6352), 1, + sym_escape_sequence, + ACTIONS(6354), 1, + sym__quoted_content_i_square, + ACTIONS(7618), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4561), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [241262] = 7, + ACTIONS(6112), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6342), 1, + sym_escape_sequence, + ACTIONS(6344), 1, + sym__quoted_content_i_curly, + ACTIONS(7620), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4582), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [241287] = 7, + ACTIONS(6202), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6314), 1, + sym_escape_sequence, + ACTIONS(6316), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(7622), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4585), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [241312] = 7, + ACTIONS(6120), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7624), 1, + anon_sym_SLASH, + ACTIONS(7626), 1, + sym_escape_sequence, + ACTIONS(7628), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4745), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [241337] = 7, + ACTIONS(6178), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7630), 1, + anon_sym_PIPE, + ACTIONS(7632), 1, + sym_escape_sequence, + ACTIONS(7634), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4746), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [241362] = 7, + ACTIONS(6186), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7636), 1, + anon_sym_GT, + ACTIONS(7638), 1, + sym_escape_sequence, + ACTIONS(7640), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4747), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [241387] = 7, + ACTIONS(6194), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7642), 1, + anon_sym_RBRACK, + ACTIONS(7644), 1, + sym_escape_sequence, + ACTIONS(7646), 1, + sym__quoted_content_i_square, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4748), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [241412] = 7, + ACTIONS(6112), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7648), 1, + anon_sym_RBRACE, + ACTIONS(7650), 1, + sym_escape_sequence, + ACTIONS(7652), 1, + sym__quoted_content_i_curly, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4749), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [241437] = 7, + ACTIONS(6202), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7654), 1, + anon_sym_RPAREN, + ACTIONS(7656), 1, + sym_escape_sequence, + ACTIONS(7658), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4750), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [241462] = 7, + ACTIONS(6186), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6358), 1, + sym_escape_sequence, + ACTIONS(6360), 1, + sym__quoted_content_i_angle, + ACTIONS(7660), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4552), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [241487] = 7, + ACTIONS(6128), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7662), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(7664), 1, + sym_escape_sequence, + ACTIONS(7666), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4769), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [241512] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6276), 1, + sym_escape_sequence, + ACTIONS(6278), 1, + sym__quoted_content_i_double, + ACTIONS(7668), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4507), 2, sym_interpolation, aux_sym__quoted_i_double_repeat1, - [202023] = 7, - ACTIONS(5740), 1, + [241537] = 7, + ACTIONS(6112), 1, anon_sym_POUND_LBRACE, - ACTIONS(7612), 1, - anon_sym_RBRACE, - ACTIONS(7614), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(7616), 1, + ACTIONS(6344), 1, sym__quoted_content_i_curly, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4121), 2, - sym_interpolation, - aux_sym__quoted_i_curly_repeat1, - [202048] = 7, - ACTIONS(5732), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5915), 1, - sym_escape_sequence, - ACTIONS(5917), 1, - sym__quoted_content_i_parenthesis, - ACTIONS(7618), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4051), 2, - sym_interpolation, - aux_sym__quoted_i_parenthesis_repeat1, - [202073] = 7, - ACTIONS(5732), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7620), 1, - anon_sym_RPAREN, - ACTIONS(7622), 1, - sym_escape_sequence, - ACTIONS(7624), 1, - sym__quoted_content_i_parenthesis, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4123), 2, - sym_interpolation, - aux_sym__quoted_i_parenthesis_repeat1, - [202098] = 7, - ACTIONS(5740), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5921), 1, - sym_escape_sequence, - ACTIONS(5923), 1, - sym__quoted_content_i_curly, - ACTIONS(7626), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4050), 2, - sym_interpolation, - aux_sym__quoted_i_curly_repeat1, - [202123] = 7, - ACTIONS(5748), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5927), 1, - sym_escape_sequence, - ACTIONS(5929), 1, - sym__quoted_content_i_square, - ACTIONS(7628), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4046), 2, - sym_interpolation, - aux_sym__quoted_i_square_repeat1, - [202148] = 7, - ACTIONS(5662), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5933), 1, - sym_escape_sequence, - ACTIONS(5935), 1, - sym__quoted_content_i_angle, - ACTIONS(7630), 1, - anon_sym_GT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3911), 2, - sym_interpolation, - aux_sym__quoted_i_angle_repeat1, - [202173] = 7, - ACTIONS(5762), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5939), 1, - sym_escape_sequence, - ACTIONS(5941), 1, - sym__quoted_content_i_bar, - ACTIONS(7632), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4023), 2, - sym_interpolation, - aux_sym__quoted_i_bar_repeat1, - [202198] = 7, - ACTIONS(5654), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5656), 1, - sym_escape_sequence, - ACTIONS(5658), 1, - sym__quoted_content_i_slash, - ACTIONS(7634), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4021), 2, - sym_interpolation, - aux_sym__quoted_i_slash_repeat1, - [202223] = 7, - ACTIONS(5654), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5656), 1, - sym_escape_sequence, - ACTIONS(5658), 1, - sym__quoted_content_i_slash, - ACTIONS(7636), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4021), 2, - sym_interpolation, - aux_sym__quoted_i_slash_repeat1, - [202248] = 7, - ACTIONS(5762), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5939), 1, - sym_escape_sequence, - ACTIONS(5941), 1, - sym__quoted_content_i_bar, - ACTIONS(7638), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4023), 2, - sym_interpolation, - aux_sym__quoted_i_bar_repeat1, - [202273] = 7, - ACTIONS(5732), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5915), 1, - sym_escape_sequence, - ACTIONS(5917), 1, - sym__quoted_content_i_parenthesis, - ACTIONS(7640), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4051), 2, - sym_interpolation, - aux_sym__quoted_i_parenthesis_repeat1, - [202298] = 7, - ACTIONS(5740), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5921), 1, - sym_escape_sequence, - ACTIONS(5923), 1, - sym__quoted_content_i_curly, - ACTIONS(7642), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4050), 2, - sym_interpolation, - aux_sym__quoted_i_curly_repeat1, - [202323] = 7, - ACTIONS(5748), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5927), 1, - sym_escape_sequence, - ACTIONS(5929), 1, - sym__quoted_content_i_square, - ACTIONS(7644), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4046), 2, - sym_interpolation, - aux_sym__quoted_i_square_repeat1, - [202348] = 7, - ACTIONS(5662), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5933), 1, - sym_escape_sequence, - ACTIONS(5935), 1, - sym__quoted_content_i_angle, - ACTIONS(7646), 1, - anon_sym_GT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3911), 2, - sym_interpolation, - aux_sym__quoted_i_angle_repeat1, - [202373] = 7, - ACTIONS(5762), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5939), 1, - sym_escape_sequence, - ACTIONS(5941), 1, - sym__quoted_content_i_bar, - ACTIONS(7648), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4023), 2, - sym_interpolation, - aux_sym__quoted_i_bar_repeat1, - [202398] = 7, - ACTIONS(5654), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5656), 1, - sym_escape_sequence, - ACTIONS(5658), 1, - sym__quoted_content_i_slash, - ACTIONS(7650), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4021), 2, - sym_interpolation, - aux_sym__quoted_i_slash_repeat1, - [202423] = 7, - ACTIONS(5662), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5933), 1, - sym_escape_sequence, - ACTIONS(5935), 1, - sym__quoted_content_i_angle, - ACTIONS(7652), 1, - anon_sym_GT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3911), 2, - sym_interpolation, - aux_sym__quoted_i_angle_repeat1, - [202448] = 7, - ACTIONS(5748), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5927), 1, - sym_escape_sequence, - ACTIONS(5929), 1, - sym__quoted_content_i_square, - ACTIONS(7654), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4046), 2, - sym_interpolation, - aux_sym__quoted_i_square_repeat1, - [202473] = 7, - ACTIONS(5740), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5921), 1, - sym_escape_sequence, - ACTIONS(5923), 1, - sym__quoted_content_i_curly, - ACTIONS(7656), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4050), 2, - sym_interpolation, - aux_sym__quoted_i_curly_repeat1, - [202498] = 7, - ACTIONS(5732), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5915), 1, - sym_escape_sequence, - ACTIONS(5917), 1, - sym__quoted_content_i_parenthesis, - ACTIONS(7658), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4051), 2, - sym_interpolation, - aux_sym__quoted_i_parenthesis_repeat1, - [202523] = 7, - ACTIONS(5654), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7660), 1, - anon_sym_SLASH, - ACTIONS(7662), 1, - sym_escape_sequence, - ACTIONS(7664), 1, - sym__quoted_content_i_slash, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4263), 2, - sym_interpolation, - aux_sym__quoted_i_slash_repeat1, - [202548] = 7, - ACTIONS(5762), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7666), 1, - anon_sym_PIPE, - ACTIONS(7668), 1, - sym_escape_sequence, ACTIONS(7670), 1, - sym__quoted_content_i_bar, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4264), 2, - sym_interpolation, - aux_sym__quoted_i_bar_repeat1, - [202573] = 7, - ACTIONS(5662), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7672), 1, - anon_sym_GT, - ACTIONS(7674), 1, - sym_escape_sequence, - ACTIONS(7676), 1, - sym__quoted_content_i_angle, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4271), 2, - sym_interpolation, - aux_sym__quoted_i_angle_repeat1, - [202598] = 7, - ACTIONS(5748), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7678), 1, - anon_sym_RBRACK, - ACTIONS(7680), 1, - sym_escape_sequence, - ACTIONS(7682), 1, - sym__quoted_content_i_square, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4272), 2, - sym_interpolation, - aux_sym__quoted_i_square_repeat1, - [202623] = 7, - ACTIONS(5740), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7684), 1, anon_sym_RBRACE, - ACTIONS(7686), 1, - sym_escape_sequence, - ACTIONS(7688), 1, - sym__quoted_content_i_curly, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4273), 2, + STATE(4582), 2, sym_interpolation, aux_sym__quoted_i_curly_repeat1, - [202648] = 7, - ACTIONS(5732), 1, + [241562] = 7, + ACTIONS(6178), 1, anon_sym_POUND_LBRACE, - ACTIONS(7690), 1, - anon_sym_RPAREN, - ACTIONS(7692), 1, + ACTIONS(6364), 1, sym_escape_sequence, - ACTIONS(7694), 1, - sym__quoted_content_i_parenthesis, + ACTIONS(6366), 1, + sym__quoted_content_i_bar, + ACTIONS(7672), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4274), 2, + STATE(4549), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [241587] = 7, + ACTIONS(6120), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6122), 1, + sym_escape_sequence, + ACTIONS(6124), 1, + sym__quoted_content_i_slash, + ACTIONS(7674), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4548), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [241612] = 7, + ACTIONS(6202), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6314), 1, + sym_escape_sequence, + ACTIONS(6316), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(7676), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4585), 2, sym_interpolation, aux_sym__quoted_i_parenthesis_repeat1, - [202673] = 7, - ACTIONS(5678), 1, + [241637] = 7, + ACTIONS(6144), 1, anon_sym_POUND_LBRACE, - ACTIONS(5680), 1, + ACTIONS(6282), 1, sym_escape_sequence, - ACTIONS(5682), 1, + ACTIONS(6284), 1, + sym__quoted_content_i_single, + ACTIONS(7678), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4481), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [241662] = 7, + ACTIONS(6128), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6130), 1, + sym_escape_sequence, + ACTIONS(6132), 1, sym__quoted_content_i_heredoc_double, - ACTIONS(7696), 1, + ACTIONS(7680), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -336014,17 +373472,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3838), 2, + STATE(4483), 2, sym_interpolation, aux_sym__quoted_i_heredoc_double_repeat1, - [202698] = 7, - ACTIONS(5694), 1, + [241687] = 7, + ACTIONS(6152), 1, anon_sym_POUND_LBRACE, - ACTIONS(5788), 1, + ACTIONS(6288), 1, sym_escape_sequence, - ACTIONS(5790), 1, + ACTIONS(6290), 1, sym__quoted_content_i_heredoc_single, - ACTIONS(7698), 1, + ACTIONS(7682), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -336032,17 +373490,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3852), 2, + STATE(4482), 2, sym_interpolation, aux_sym__quoted_i_heredoc_single_repeat1, - [202723] = 7, - ACTIONS(5686), 1, + [241712] = 7, + ACTIONS(6144), 1, anon_sym_POUND_LBRACE, - ACTIONS(5782), 1, + ACTIONS(6282), 1, sym_escape_sequence, - ACTIONS(5784), 1, + ACTIONS(6284), 1, sym__quoted_content_i_single, - ACTIONS(7700), 1, + ACTIONS(7684), 1, anon_sym_SQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -336050,15 +373508,159 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3835), 2, + STATE(4481), 2, sym_interpolation, aux_sym__quoted_i_single_repeat1, - [202748] = 7, - ACTIONS(5670), 1, + [241737] = 7, + ACTIONS(6152), 1, anon_sym_POUND_LBRACE, - ACTIONS(5776), 1, + ACTIONS(6288), 1, sym_escape_sequence, - ACTIONS(5778), 1, + ACTIONS(6290), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(7686), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4482), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [241762] = 7, + ACTIONS(6128), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6130), 1, + sym_escape_sequence, + ACTIONS(6132), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(7688), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4483), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [241787] = 7, + ACTIONS(6202), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6314), 1, + sym_escape_sequence, + ACTIONS(6316), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(7690), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4585), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [241812] = 7, + ACTIONS(6112), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6342), 1, + sym_escape_sequence, + ACTIONS(6344), 1, + sym__quoted_content_i_curly, + ACTIONS(7692), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4582), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [241837] = 7, + ACTIONS(6194), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6352), 1, + sym_escape_sequence, + ACTIONS(6354), 1, + sym__quoted_content_i_square, + ACTIONS(7694), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4561), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [241862] = 7, + ACTIONS(6186), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6358), 1, + sym_escape_sequence, + ACTIONS(6360), 1, + sym__quoted_content_i_angle, + ACTIONS(7696), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4552), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [241887] = 7, + ACTIONS(6178), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6364), 1, + sym_escape_sequence, + ACTIONS(6366), 1, + sym__quoted_content_i_bar, + ACTIONS(7698), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4549), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [241912] = 7, + ACTIONS(6120), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6122), 1, + sym_escape_sequence, + ACTIONS(6124), 1, + sym__quoted_content_i_slash, + ACTIONS(7700), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4548), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [241937] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6276), 1, + sym_escape_sequence, + ACTIONS(6278), 1, sym__quoted_content_i_double, ACTIONS(7702), 1, anon_sym_DQUOTE, @@ -336068,89 +373670,71 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3834), 2, + STATE(4507), 2, sym_interpolation, aux_sym__quoted_i_double_repeat1, - [202773] = 7, - ACTIONS(5670), 1, + [241962] = 7, + ACTIONS(6128), 1, anon_sym_POUND_LBRACE, ACTIONS(7704), 1, - anon_sym_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(7706), 1, sym_escape_sequence, ACTIONS(7708), 1, - sym__quoted_content_i_double, + sym__quoted_content_i_heredoc_double, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4295), 2, + STATE(4765), 2, sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [202798] = 7, - ACTIONS(5678), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + [241987] = 7, + ACTIONS(6152), 1, anon_sym_POUND_LBRACE, ACTIONS(7710), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(7712), 1, sym_escape_sequence, ACTIONS(7714), 1, - sym__quoted_content_i_heredoc_double, + sym__quoted_content_i_heredoc_single, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4281), 2, + STATE(4766), 2, sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [202823] = 7, - ACTIONS(5694), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + [242012] = 7, + ACTIONS(6144), 1, anon_sym_POUND_LBRACE, ACTIONS(7716), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_SQUOTE, ACTIONS(7718), 1, sym_escape_sequence, ACTIONS(7720), 1, - sym__quoted_content_i_heredoc_single, + sym__quoted_content_i_single, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4282), 2, + STATE(4767), 2, sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [202848] = 7, - ACTIONS(5686), 1, + aux_sym__quoted_i_single_repeat1, + [242037] = 7, + ACTIONS(6136), 1, anon_sym_POUND_LBRACE, ACTIONS(7722), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(7724), 1, sym_escape_sequence, ACTIONS(7726), 1, - sym__quoted_content_i_single, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4283), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [202873] = 7, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7728), 1, - anon_sym_DQUOTE, - ACTIONS(7730), 1, - sym_escape_sequence, - ACTIONS(7732), 1, sym__quoted_content_i_double, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -336158,35 +373742,125 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4284), 2, + STATE(4776), 2, sym_interpolation, aux_sym__quoted_i_double_repeat1, - [202898] = 7, - ACTIONS(5678), 1, + [242062] = 7, + ACTIONS(6120), 1, anon_sym_POUND_LBRACE, - ACTIONS(5680), 1, + ACTIONS(6122), 1, sym_escape_sequence, - ACTIONS(5682), 1, - sym__quoted_content_i_heredoc_double, - ACTIONS(7734), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6124), 1, + sym__quoted_content_i_slash, + ACTIONS(7728), 1, + anon_sym_SLASH, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(3838), 2, + STATE(4548), 2, sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [202923] = 7, - ACTIONS(5686), 1, + aux_sym__quoted_i_slash_repeat1, + [242087] = 7, + ACTIONS(6178), 1, anon_sym_POUND_LBRACE, - ACTIONS(7736), 1, - anon_sym_SQUOTE, - ACTIONS(7738), 1, + ACTIONS(6364), 1, sym_escape_sequence, + ACTIONS(6366), 1, + sym__quoted_content_i_bar, + ACTIONS(7730), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4549), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [242112] = 7, + ACTIONS(6186), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6358), 1, + sym_escape_sequence, + ACTIONS(6360), 1, + sym__quoted_content_i_angle, + ACTIONS(7732), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4552), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [242137] = 7, + ACTIONS(6194), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6352), 1, + sym_escape_sequence, + ACTIONS(6354), 1, + sym__quoted_content_i_square, + ACTIONS(7734), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4561), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [242162] = 7, + ACTIONS(6112), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6342), 1, + sym_escape_sequence, + ACTIONS(6344), 1, + sym__quoted_content_i_curly, + ACTIONS(7736), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4582), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [242187] = 7, + ACTIONS(6202), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6314), 1, + sym_escape_sequence, + ACTIONS(6316), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(7738), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4585), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [242212] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, ACTIONS(7740), 1, + anon_sym_SQUOTE, + ACTIONS(7742), 1, + sym_escape_sequence, + ACTIONS(7744), 1, sym__quoted_content_i_single, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -336194,2951 +373868,35 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4294), 2, + STATE(4513), 2, sym_interpolation, aux_sym__quoted_i_single_repeat1, - [202948] = 7, - ACTIONS(5694), 1, + [242237] = 7, + ACTIONS(6128), 1, anon_sym_POUND_LBRACE, - ACTIONS(7742), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(7744), 1, + ACTIONS(6130), 1, sym_escape_sequence, + ACTIONS(6132), 1, + sym__quoted_content_i_heredoc_double, ACTIONS(7746), 1, - sym__quoted_content_i_heredoc_single, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4181), 2, + STATE(4483), 2, sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [202973] = 7, - ACTIONS(5678), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + [242262] = 7, + ACTIONS(6120), 1, anon_sym_POUND_LBRACE, ACTIONS(7748), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SLASH, ACTIONS(7750), 1, sym_escape_sequence, ACTIONS(7752), 1, - sym__quoted_content_i_heredoc_double, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4290), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [202998] = 7, - ACTIONS(5686), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5782), 1, - sym_escape_sequence, - ACTIONS(5784), 1, - sym__quoted_content_i_single, - ACTIONS(7754), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3835), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [203023] = 7, - ACTIONS(5670), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5776), 1, - sym_escape_sequence, - ACTIONS(5778), 1, - sym__quoted_content_i_double, - ACTIONS(7756), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(3834), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [203048] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1639), 1, - anon_sym_RPAREN, - ACTIONS(7758), 1, - anon_sym_SEMI, - STATE(137), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4370), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [203074] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1717), 1, - anon_sym_RPAREN, - ACTIONS(7758), 1, - anon_sym_SEMI, - STATE(137), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4336), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [203100] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(1717), 1, - anon_sym_RPAREN, - ACTIONS(3727), 1, - anon_sym_SEMI, - STATE(358), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4410), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [203126] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1717), 1, - anon_sym_RPAREN, - ACTIONS(7758), 1, - anon_sym_SEMI, - STATE(137), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4316), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [203152] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(922), 1, - anon_sym_RPAREN, - ACTIONS(7758), 1, - anon_sym_SEMI, - STATE(137), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4299), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [203178] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7760), 1, - anon_sym_COMMA, - STATE(4324), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3471), 3, - anon_sym_RPAREN, - anon_sym_when, - anon_sym_DASH_GT, - [203198] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(894), 1, - anon_sym_RPAREN, - ACTIONS(7758), 1, - anon_sym_SEMI, - STATE(137), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4326), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [203224] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7762), 1, - anon_sym_COMMA, - STATE(4303), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3481), 3, - anon_sym_RPAREN, - anon_sym_when, - anon_sym_DASH_GT, - [203244] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(938), 1, - anon_sym_RPAREN, - ACTIONS(7758), 1, - anon_sym_SEMI, - STATE(137), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4318), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [203270] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7767), 1, - anon_sym_COMMA, - STATE(4330), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(7765), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - [203290] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(7769), 1, - anon_sym_SEMI, - ACTIONS(7771), 1, - anon_sym_end, - STATE(134), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4328), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [203316] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(7769), 1, - anon_sym_SEMI, - ACTIONS(7773), 1, - anon_sym_end, - STATE(134), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4411), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [203342] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1657), 1, - anon_sym_RPAREN, - ACTIONS(7758), 1, - anon_sym_SEMI, - STATE(137), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4316), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [203368] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(1657), 1, - anon_sym_RPAREN, - ACTIONS(7775), 1, - anon_sym_SEMI, - STATE(388), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4410), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [203394] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1741), 1, - anon_sym_RPAREN, - ACTIONS(7758), 1, - anon_sym_SEMI, - STATE(137), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4363), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [203420] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(7769), 1, - anon_sym_SEMI, - ACTIONS(7777), 1, - anon_sym_end, - STATE(134), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4392), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [203446] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1329), 1, - anon_sym_RPAREN, - ACTIONS(4190), 1, - aux_sym__terminator_token1, - ACTIONS(4193), 1, - anon_sym_SEMI, - STATE(348), 1, - sym__terminator, - STATE(1033), 1, - aux_sym__terminator_repeat1, - STATE(4332), 1, - aux_sym_source_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [203472] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9), 1, - aux_sym__terminator_token1, - ACTIONS(1659), 1, - ts_builtin_sym_end, - ACTIONS(4258), 1, - anon_sym_SEMI, - STATE(431), 1, - sym__terminator, - STATE(1030), 1, - aux_sym__terminator_repeat1, - STATE(4408), 1, - aux_sym_source_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [203498] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(934), 1, - anon_sym_RPAREN, - ACTIONS(7758), 1, - anon_sym_SEMI, - STATE(137), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4335), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [203524] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(1741), 1, - anon_sym_RPAREN, - ACTIONS(3696), 1, - anon_sym_SEMI, - STATE(415), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4410), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [203550] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5488), 1, - aux_sym__terminator_token1, - ACTIONS(5494), 1, - anon_sym_RPAREN, - ACTIONS(7779), 1, - anon_sym_SEMI, - STATE(137), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4316), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [203576] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(7769), 1, - anon_sym_SEMI, - ACTIONS(7782), 1, - anon_sym_end, - STATE(134), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4394), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [203602] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1741), 1, - anon_sym_RPAREN, - ACTIONS(7758), 1, - anon_sym_SEMI, - STATE(137), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4316), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [203628] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(7769), 1, - anon_sym_SEMI, - ACTIONS(7784), 1, - anon_sym_end, - STATE(134), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4337), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [203654] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(7769), 1, - anon_sym_SEMI, - ACTIONS(7784), 1, - anon_sym_end, - STATE(134), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4394), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [203680] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1721), 1, - anon_sym_RPAREN, - ACTIONS(7758), 1, - anon_sym_SEMI, - STATE(137), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4308), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [203706] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(7769), 1, - anon_sym_SEMI, - ACTIONS(7786), 1, - anon_sym_end, - STATE(134), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4394), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [203732] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(1721), 1, - anon_sym_RPAREN, - ACTIONS(3703), 1, - anon_sym_SEMI, - STATE(395), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4410), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [203758] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7760), 1, - anon_sym_COMMA, - STATE(4303), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3477), 3, - anon_sym_RPAREN, - anon_sym_when, - anon_sym_DASH_GT, - [203778] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(7769), 1, - anon_sym_SEMI, - ACTIONS(7788), 1, - anon_sym_end, - STATE(134), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4356), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [203804] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1721), 1, - anon_sym_RPAREN, - ACTIONS(7758), 1, - anon_sym_SEMI, - STATE(137), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4316), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [203830] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(7769), 1, - anon_sym_SEMI, - ACTIONS(7790), 1, - anon_sym_end, - STATE(134), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4320), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [203856] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(7769), 1, - anon_sym_SEMI, - ACTIONS(7792), 1, - anon_sym_end, - STATE(134), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4394), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [203882] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(7769), 1, - anon_sym_SEMI, - ACTIONS(7792), 1, - anon_sym_end, - STATE(134), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4398), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [203908] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7794), 1, - anon_sym_COMMA, - STATE(4368), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(5448), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - [203928] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1667), 1, - anon_sym_RPAREN, - ACTIONS(7758), 1, - anon_sym_SEMI, - STATE(137), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4365), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [203954] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3895), 1, - anon_sym_RPAREN, - ACTIONS(5516), 1, - aux_sym__terminator_token1, - ACTIONS(7796), 1, - anon_sym_SEMI, - STATE(662), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4332), 1, - aux_sym_source_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [203980] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(1667), 1, - anon_sym_RPAREN, - ACTIONS(3765), 1, - anon_sym_SEMI, - STATE(402), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4410), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [204006] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(1569), 1, - anon_sym_RPAREN, - ACTIONS(7799), 1, - anon_sym_SEMI, - STATE(440), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4410), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [204032] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1667), 1, - anon_sym_RPAREN, - ACTIONS(7758), 1, - anon_sym_SEMI, - STATE(137), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4316), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [204058] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1569), 1, - anon_sym_RPAREN, - ACTIONS(7758), 1, - anon_sym_SEMI, - STATE(137), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4316), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [204084] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(7769), 1, - anon_sym_SEMI, - ACTIONS(7801), 1, - anon_sym_end, - STATE(134), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4394), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [204110] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(7769), 1, - anon_sym_SEMI, - ACTIONS(7803), 1, - anon_sym_end, - STATE(134), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4394), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [204136] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1691), 1, - anon_sym_RPAREN, - ACTIONS(7758), 1, - anon_sym_SEMI, - STATE(137), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4316), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [204162] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(914), 1, - anon_sym_RPAREN, - ACTIONS(7758), 1, - anon_sym_SEMI, - STATE(137), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4345), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [204188] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(1691), 1, - anon_sym_RPAREN, - ACTIONS(7805), 1, - anon_sym_SEMI, - STATE(412), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4410), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [204214] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(7769), 1, - anon_sym_SEMI, - ACTIONS(7807), 1, - anon_sym_end, - STATE(134), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4347), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [204240] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1713), 1, - anon_sym_RPAREN, - ACTIONS(7758), 1, - anon_sym_SEMI, - STATE(137), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4351), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [204266] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(1713), 1, - anon_sym_RPAREN, - ACTIONS(3690), 1, - anon_sym_SEMI, - STATE(411), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4410), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [204292] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1713), 1, - anon_sym_RPAREN, - ACTIONS(7758), 1, - anon_sym_SEMI, - STATE(137), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4316), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [204318] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(7769), 1, - anon_sym_SEMI, - ACTIONS(7809), 1, - anon_sym_end, - STATE(134), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4352), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [204344] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(7769), 1, - anon_sym_SEMI, - ACTIONS(7809), 1, - anon_sym_end, - STATE(134), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4394), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [204370] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(7769), 1, - anon_sym_SEMI, - ACTIONS(7811), 1, - anon_sym_end, - STATE(134), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4394), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [204396] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(7769), 1, - anon_sym_SEMI, - ACTIONS(7811), 1, - anon_sym_end, - STATE(134), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4338), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [204422] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(1695), 1, - anon_sym_RPAREN, - ACTIONS(7813), 1, - anon_sym_SEMI, - STATE(407), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4410), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [204448] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1695), 1, - anon_sym_RPAREN, - ACTIONS(7758), 1, - anon_sym_SEMI, - STATE(137), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4316), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [204474] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(7769), 1, - anon_sym_SEMI, - ACTIONS(7815), 1, - anon_sym_end, - STATE(134), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4394), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [204500] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1669), 1, - anon_sym_RPAREN, - ACTIONS(7758), 1, - anon_sym_SEMI, - STATE(137), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4316), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [204526] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(1669), 1, - anon_sym_RPAREN, - ACTIONS(3767), 1, - anon_sym_SEMI, - STATE(409), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4410), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [204552] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(7769), 1, - anon_sym_SEMI, - ACTIONS(7817), 1, - anon_sym_end, - STATE(134), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4383), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [204578] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(7769), 1, - anon_sym_SEMI, - ACTIONS(7817), 1, - anon_sym_end, - STATE(134), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4394), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [204604] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1669), 1, - anon_sym_RPAREN, - ACTIONS(7758), 1, - anon_sym_SEMI, - STATE(137), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4339), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [204630] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(910), 1, - anon_sym_RPAREN, - ACTIONS(7758), 1, - anon_sym_SEMI, - STATE(137), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4367), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [204656] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(7769), 1, - anon_sym_SEMI, - ACTIONS(7819), 1, - anon_sym_end, - STATE(134), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4348), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [204682] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(1703), 1, - anon_sym_RPAREN, - ACTIONS(7821), 1, - anon_sym_SEMI, - STATE(408), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4410), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [204708] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(7769), 1, - anon_sym_SEMI, - ACTIONS(7823), 1, - anon_sym_end, - STATE(134), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4373), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [204734] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1653), 1, - anon_sym_RPAREN, - ACTIONS(7758), 1, - anon_sym_SEMI, - STATE(137), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4375), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [204760] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1703), 1, - anon_sym_RPAREN, - ACTIONS(7758), 1, - anon_sym_SEMI, - STATE(137), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4316), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [204786] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(1673), 1, - anon_sym_RPAREN, - ACTIONS(7825), 1, - anon_sym_SEMI, - STATE(403), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4410), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [204812] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1673), 1, - anon_sym_RPAREN, - ACTIONS(7758), 1, - anon_sym_SEMI, - STATE(137), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4316), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [204838] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(1653), 1, - anon_sym_RPAREN, - ACTIONS(3713), 1, - anon_sym_SEMI, - STATE(387), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4410), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [204864] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1653), 1, - anon_sym_RPAREN, - ACTIONS(7758), 1, - anon_sym_SEMI, - STATE(137), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4316), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [204890] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7827), 1, - anon_sym_COMMA, - STATE(4368), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3481), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - [204910] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1323), 1, - anon_sym_RPAREN, - ACTIONS(7830), 1, - aux_sym__terminator_token1, - ACTIONS(7833), 1, - anon_sym_SEMI, - STATE(345), 1, - sym__terminator, - STATE(1033), 1, - aux_sym__terminator_repeat1, - STATE(4332), 1, - aux_sym_source_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [204936] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1647), 1, - anon_sym_RPAREN, - ACTIONS(7758), 1, - anon_sym_SEMI, - STATE(137), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4316), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [204962] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(1647), 1, - anon_sym_RPAREN, - ACTIONS(7836), 1, - anon_sym_SEMI, - STATE(391), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4410), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [204988] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(7769), 1, - anon_sym_SEMI, - ACTIONS(7838), 1, - anon_sym_end, - STATE(134), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4376), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [205014] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(7769), 1, - anon_sym_SEMI, - ACTIONS(7838), 1, - anon_sym_end, - STATE(134), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4394), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [205040] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(1643), 1, - anon_sym_RPAREN, - ACTIONS(7840), 1, - anon_sym_SEMI, - STATE(382), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4410), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [205066] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1643), 1, - anon_sym_RPAREN, - ACTIONS(7758), 1, - anon_sym_SEMI, - STATE(137), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4316), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [205092] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(7769), 1, - anon_sym_SEMI, - ACTIONS(7842), 1, - anon_sym_end, - STATE(134), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4394), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [205118] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(918), 1, - anon_sym_RPAREN, - ACTIONS(7758), 1, - anon_sym_SEMI, - STATE(137), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4353), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [205144] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(7769), 1, - anon_sym_SEMI, - ACTIONS(7844), 1, - anon_sym_end, - STATE(134), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4394), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [205170] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1329), 1, - anon_sym_end, - ACTIONS(4361), 1, - aux_sym__terminator_token1, - ACTIONS(4364), 1, - anon_sym_SEMI, - STATE(346), 1, - sym__terminator, - STATE(1031), 1, - aux_sym__terminator_repeat1, - STATE(4407), 1, - aux_sym_source_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [205196] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(930), 1, - anon_sym_RPAREN, - ACTIONS(7758), 1, - anon_sym_SEMI, - STATE(137), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4393), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [205222] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(902), 1, - anon_sym_RPAREN, - ACTIONS(7758), 1, - anon_sym_SEMI, - STATE(137), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4391), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [205248] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(7769), 1, - anon_sym_SEMI, - ACTIONS(7846), 1, - anon_sym_end, - STATE(134), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4400), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [205274] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(7769), 1, - anon_sym_SEMI, - ACTIONS(7848), 1, - anon_sym_end, - STATE(134), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4394), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [205300] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(7769), 1, - anon_sym_SEMI, - ACTIONS(7850), 1, - anon_sym_end, - STATE(134), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4399), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [205326] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1641), 1, - anon_sym_RPAREN, - ACTIONS(7758), 1, - anon_sym_SEMI, - STATE(137), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4316), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [205352] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1593), 1, - anon_sym_RPAREN, - ACTIONS(7758), 1, - anon_sym_SEMI, - STATE(137), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4404), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [205378] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(1641), 1, - anon_sym_RPAREN, - ACTIONS(7852), 1, - anon_sym_SEMI, - STATE(394), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4410), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [205404] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(1593), 1, - anon_sym_RPAREN, - ACTIONS(3761), 1, - anon_sym_SEMI, - STATE(354), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4410), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [205430] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1567), 1, - anon_sym_RPAREN, - ACTIONS(7758), 1, - anon_sym_SEMI, - STATE(137), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4385), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [205456] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(1567), 1, - anon_sym_RPAREN, - ACTIONS(3773), 1, - anon_sym_SEMI, - STATE(386), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4410), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [205482] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1593), 1, - anon_sym_RPAREN, - ACTIONS(7758), 1, - anon_sym_SEMI, - STATE(137), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4316), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [205508] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(7769), 1, - anon_sym_SEMI, - ACTIONS(7846), 1, - anon_sym_end, - STATE(134), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4394), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [205534] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1567), 1, - anon_sym_RPAREN, - ACTIONS(7758), 1, - anon_sym_SEMI, - STATE(137), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4316), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [205560] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7854), 1, - aux_sym__terminator_token1, - ACTIONS(7857), 1, - anon_sym_SEMI, - ACTIONS(7860), 1, - anon_sym_end, - STATE(134), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4394), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [205586] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1601), 1, - anon_sym_RPAREN, - ACTIONS(7758), 1, - anon_sym_SEMI, - STATE(137), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4316), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [205612] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(1601), 1, - anon_sym_RPAREN, - ACTIONS(7862), 1, - anon_sym_SEMI, - STATE(363), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4410), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [205638] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(7769), 1, - anon_sym_SEMI, - ACTIONS(7864), 1, - anon_sym_end, - STATE(134), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4409), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [205664] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(7769), 1, - anon_sym_SEMI, - ACTIONS(7866), 1, - anon_sym_end, - STATE(134), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4394), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [205690] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(7769), 1, - anon_sym_SEMI, - ACTIONS(7864), 1, - anon_sym_end, - STATE(134), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4394), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [205716] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(7769), 1, - anon_sym_SEMI, - ACTIONS(7868), 1, - anon_sym_end, - STATE(134), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4394), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [205742] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(1553), 1, - anon_sym_RPAREN, - ACTIONS(7870), 1, - anon_sym_SEMI, - STATE(368), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4410), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [205768] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(7769), 1, - anon_sym_SEMI, - ACTIONS(7872), 1, - anon_sym_end, - STATE(134), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4394), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [205794] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(7769), 1, - anon_sym_SEMI, - ACTIONS(7872), 1, - anon_sym_end, - STATE(134), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4317), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [205820] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1553), 1, - anon_sym_RPAREN, - ACTIONS(7758), 1, - anon_sym_SEMI, - STATE(137), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4316), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [205846] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7874), 1, - anon_sym_COMMA, - STATE(4405), 1, - aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3112), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - [205866] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1323), 1, - anon_sym_end, - ACTIONS(7877), 1, - aux_sym__terminator_token1, - ACTIONS(7880), 1, - anon_sym_SEMI, - STATE(347), 1, - sym__terminator, - STATE(1031), 1, - aux_sym__terminator_repeat1, - STATE(4407), 1, - aux_sym_source_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [205892] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3895), 1, - anon_sym_end, - ACTIONS(5516), 1, - aux_sym__terminator_token1, - ACTIONS(7883), 1, - anon_sym_SEMI, - STATE(867), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4407), 1, - aux_sym_source_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [205918] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3893), 1, - ts_builtin_sym_end, - ACTIONS(5516), 1, - aux_sym__terminator_token1, - ACTIONS(7886), 1, - anon_sym_SEMI, - STATE(527), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4408), 1, - aux_sym_source_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [205944] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(7769), 1, - anon_sym_SEMI, - ACTIONS(7889), 1, - anon_sym_end, - STATE(134), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4394), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [205970] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3970), 1, - anon_sym_RPAREN, - ACTIONS(5496), 1, - aux_sym__terminator_token1, - ACTIONS(7891), 1, - anon_sym_SEMI, - STATE(480), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4410), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [205996] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(7769), 1, - anon_sym_SEMI, - ACTIONS(7894), 1, - anon_sym_end, - STATE(134), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4394), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [206022] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(7769), 1, - anon_sym_SEMI, - ACTIONS(7894), 1, - anon_sym_end, - STATE(134), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4378), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [206048] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(926), 1, - anon_sym_RPAREN, - ACTIONS(7758), 1, - anon_sym_SEMI, - STATE(137), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4428), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [206074] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(906), 1, - anon_sym_RPAREN, - ACTIONS(7758), 1, - anon_sym_SEMI, - STATE(137), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4418), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [206100] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(7769), 1, - anon_sym_SEMI, - ACTIONS(7896), 1, - anon_sym_end, - STATE(134), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4421), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [206126] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1623), 1, - anon_sym_RPAREN, - ACTIONS(7758), 1, - anon_sym_SEMI, - STATE(137), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4395), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [206152] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(1623), 1, - anon_sym_RPAREN, - ACTIONS(3709), 1, - anon_sym_SEMI, - STATE(371), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4410), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [206178] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1623), 1, - anon_sym_RPAREN, - ACTIONS(7758), 1, - anon_sym_SEMI, - STATE(137), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4316), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [206204] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(898), 1, - anon_sym_RPAREN, - ACTIONS(7758), 1, - anon_sym_SEMI, - STATE(137), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4431), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [206230] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(7769), 1, - anon_sym_SEMI, - ACTIONS(7898), 1, - anon_sym_end, - STATE(134), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4394), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [206256] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(7769), 1, - anon_sym_SEMI, - ACTIONS(7900), 1, - anon_sym_end, - STATE(134), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4394), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [206282] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(7769), 1, - anon_sym_SEMI, - ACTIONS(7902), 1, - anon_sym_end, - STATE(134), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4402), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [206308] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9), 1, - aux_sym__terminator_token1, - ACTIONS(1737), 1, - ts_builtin_sym_end, - ACTIONS(7904), 1, - anon_sym_SEMI, - STATE(366), 1, - sym__terminator, - STATE(1030), 1, - aux_sym__terminator_repeat1, - STATE(4408), 1, - aux_sym_source_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [206334] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(7769), 1, - anon_sym_SEMI, - ACTIONS(7906), 1, - anon_sym_end, - STATE(134), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4430), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [206360] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(7769), 1, - anon_sym_SEMI, - ACTIONS(7900), 1, - anon_sym_end, - STATE(134), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4322), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [206386] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1719), 1, - anon_sym_RPAREN, - ACTIONS(7758), 1, - anon_sym_SEMI, - STATE(137), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4434), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [206412] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(1719), 1, - anon_sym_RPAREN, - ACTIONS(3715), 1, - anon_sym_SEMI, - STATE(425), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4410), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [206438] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1719), 1, - anon_sym_RPAREN, - ACTIONS(7758), 1, - anon_sym_SEMI, - STATE(137), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4316), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [206464] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(7769), 1, - anon_sym_SEMI, - ACTIONS(7908), 1, - anon_sym_end, - STATE(134), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4420), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [206490] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(7769), 1, - anon_sym_SEMI, - ACTIONS(7908), 1, - anon_sym_end, - STATE(134), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4394), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [206516] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1639), 1, - anon_sym_RPAREN, - ACTIONS(7758), 1, - anon_sym_SEMI, - STATE(137), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4316), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [206542] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(1639), 1, - anon_sym_RPAREN, - ACTIONS(3688), 1, - anon_sym_SEMI, - STATE(389), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4410), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [206568] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1054), 1, - aux_sym__terminator_token1, - ACTIONS(1723), 1, - anon_sym_RPAREN, - ACTIONS(7910), 1, - anon_sym_SEMI, - STATE(427), 1, - sym__terminator, - STATE(1028), 1, - aux_sym__terminator_repeat1, - STATE(4410), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [206594] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1723), 1, - anon_sym_RPAREN, - ACTIONS(7758), 1, - anon_sym_SEMI, - STATE(137), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4316), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [206620] = 6, - ACTIONS(7912), 1, - anon_sym_RBRACK, - ACTIONS(7914), 1, - sym_escape_sequence, - ACTIONS(7916), 1, - sym__quoted_content_square, - STATE(4792), 1, - aux_sym__quoted_square_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [206641] = 6, - ACTIONS(7914), 1, - sym_escape_sequence, - ACTIONS(7916), 1, - sym__quoted_content_square, - ACTIONS(7918), 1, - anon_sym_RBRACK, - STATE(4792), 1, - aux_sym__quoted_square_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [206662] = 6, - ACTIONS(7920), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(7922), 1, - sym_escape_sequence, - ACTIONS(7924), 1, - sym__quoted_content_heredoc_single, - STATE(4774), 1, - aux_sym__quoted_heredoc_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [206683] = 6, - ACTIONS(7926), 1, - anon_sym_SQUOTE, - ACTIONS(7928), 1, - sym_escape_sequence, - ACTIONS(7930), 1, - sym__quoted_content_single, - STATE(4763), 1, - aux_sym__quoted_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [206704] = 6, - ACTIONS(7932), 1, - anon_sym_DQUOTE, - ACTIONS(7934), 1, - sym_escape_sequence, - ACTIONS(7936), 1, - sym__quoted_content_double, - STATE(4761), 1, - aux_sym__quoted_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [206725] = 6, - ACTIONS(7938), 1, - anon_sym_RPAREN, - ACTIONS(7940), 1, - sym_escape_sequence, - ACTIONS(7942), 1, - sym__quoted_content_parenthesis, - STATE(4741), 1, - aux_sym__quoted_parenthesis_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [206746] = 6, - ACTIONS(7944), 1, - anon_sym_RPAREN, - ACTIONS(7946), 1, - sym_escape_sequence, - ACTIONS(7948), 1, - sym__quoted_content_parenthesis, - STATE(4471), 1, - aux_sym__quoted_parenthesis_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [206767] = 6, - ACTIONS(7950), 1, - anon_sym_DQUOTE, - ACTIONS(7952), 1, - sym_escape_sequence, - ACTIONS(7954), 1, - sym__quoted_content_double, - STATE(4472), 1, - aux_sym__quoted_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [206788] = 6, - ACTIONS(7956), 1, - anon_sym_SQUOTE, - ACTIONS(7958), 1, - sym_escape_sequence, - ACTIONS(7960), 1, - sym__quoted_content_single, - STATE(4473), 1, - aux_sym__quoted_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [206809] = 6, - ACTIONS(7962), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(7964), 1, - sym_escape_sequence, - ACTIONS(7966), 1, - sym__quoted_content_heredoc_single, - STATE(4474), 1, - aux_sym__quoted_heredoc_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [206830] = 6, - ACTIONS(7968), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(7970), 1, - sym_escape_sequence, - ACTIONS(7972), 1, - sym__quoted_content_heredoc_double, - STATE(4475), 1, - aux_sym__quoted_heredoc_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [206851] = 6, - ACTIONS(7974), 1, - anon_sym_RBRACE, - ACTIONS(7976), 1, - sym_escape_sequence, - ACTIONS(7978), 1, - sym__quoted_content_curly, - STATE(4476), 1, - aux_sym__quoted_curly_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [206872] = 6, - ACTIONS(7980), 1, - anon_sym_RBRACK, - ACTIONS(7982), 1, - sym_escape_sequence, - ACTIONS(7984), 1, - sym__quoted_content_square, - STATE(4477), 1, - aux_sym__quoted_square_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [206893] = 6, - ACTIONS(7986), 1, - anon_sym_GT, - ACTIONS(7988), 1, - sym_escape_sequence, - ACTIONS(7990), 1, - sym__quoted_content_angle, - STATE(4478), 1, - aux_sym__quoted_angle_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [206914] = 6, - ACTIONS(7992), 1, - anon_sym_PIPE, - ACTIONS(7994), 1, - sym_escape_sequence, - ACTIONS(7996), 1, - sym__quoted_content_bar, - STATE(4479), 1, - aux_sym__quoted_bar_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [206935] = 6, - ACTIONS(7998), 1, - anon_sym_SLASH, - ACTIONS(8000), 1, - sym_escape_sequence, - ACTIONS(8002), 1, - sym__quoted_content_slash, - STATE(4480), 1, - aux_sym__quoted_slash_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [206956] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_DQUOTE, - ACTIONS(29), 1, - anon_sym_SQUOTE, - STATE(3203), 2, - sym__quoted_i_double, - sym__quoted_i_single, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [206975] = 6, - ACTIONS(8004), 1, - anon_sym_RBRACE, - ACTIONS(8006), 1, - sym_escape_sequence, - ACTIONS(8008), 1, - sym__quoted_content_curly, - STATE(4801), 1, - aux_sym__quoted_curly_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [206996] = 6, - ACTIONS(8010), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(8012), 1, - sym_escape_sequence, - ACTIONS(8014), 1, - sym__quoted_content_heredoc_double, - STATE(4789), 1, - aux_sym__quoted_heredoc_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [207017] = 6, - ACTIONS(8016), 1, - anon_sym_PIPE, - ACTIONS(8018), 1, - sym_escape_sequence, - ACTIONS(8020), 1, - sym__quoted_content_bar, - STATE(4576), 1, - aux_sym__quoted_bar_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [207038] = 4, - ACTIONS(8024), 1, - sym__quoted_content_i_heredoc_double, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - ACTIONS(8022), 3, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [207055] = 6, - ACTIONS(8026), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(8028), 1, - sym_escape_sequence, - ACTIONS(8030), 1, - sym__quoted_content_heredoc_single, - STATE(4786), 1, - aux_sym__quoted_heredoc_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [207076] = 6, - ACTIONS(8032), 1, - anon_sym_SQUOTE, - ACTIONS(8034), 1, - sym_escape_sequence, - ACTIONS(8036), 1, - sym__quoted_content_single, - STATE(4784), 1, - aux_sym__quoted_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [207097] = 6, - ACTIONS(8038), 1, - anon_sym_DQUOTE, - ACTIONS(8040), 1, - sym_escape_sequence, - ACTIONS(8042), 1, - sym__quoted_content_double, - STATE(4639), 1, - aux_sym__quoted_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [207118] = 6, - ACTIONS(8044), 1, - anon_sym_RPAREN, - ACTIONS(8046), 1, - sym_escape_sequence, - ACTIONS(8048), 1, - sym__quoted_content_parenthesis, - STATE(4637), 1, - aux_sym__quoted_parenthesis_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [207139] = 6, - ACTIONS(8050), 1, - anon_sym_GT, - ACTIONS(8052), 1, - sym_escape_sequence, - ACTIONS(8054), 1, - sym__quoted_content_angle, - STATE(4811), 1, - aux_sym__quoted_angle_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [207160] = 4, - ACTIONS(8024), 1, sym__quoted_content_i_slash, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -339146,12 +373904,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(8022), 3, - anon_sym_SLASH, + STATE(4781), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [242287] = 7, + ACTIONS(6178), 1, anon_sym_POUND_LBRACE, + ACTIONS(7754), 1, + anon_sym_PIPE, + ACTIONS(7756), 1, sym_escape_sequence, - [207177] = 4, - ACTIONS(8024), 1, + ACTIONS(7758), 1, sym__quoted_content_i_bar, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -339159,57 +373922,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(8022), 3, - anon_sym_PIPE, + STATE(4782), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [242312] = 7, + ACTIONS(6186), 1, anon_sym_POUND_LBRACE, + ACTIONS(7760), 1, + anon_sym_GT, + ACTIONS(7762), 1, sym_escape_sequence, - [207194] = 6, - ACTIONS(8056), 1, - anon_sym_RBRACK, - ACTIONS(8058), 1, - sym_escape_sequence, - ACTIONS(8060), 1, - sym__quoted_content_square, - STATE(4802), 1, - aux_sym__quoted_square_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [207215] = 6, - ACTIONS(8062), 1, - anon_sym_SLASH, - ACTIONS(8064), 1, - sym_escape_sequence, - ACTIONS(8066), 1, - sym__quoted_content_slash, - STATE(4575), 1, - aux_sym__quoted_slash_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [207236] = 6, - ACTIONS(8068), 1, - anon_sym_RBRACE, - ACTIONS(8070), 1, - sym_escape_sequence, - ACTIONS(8072), 1, - sym__quoted_content_curly, - STATE(4730), 1, - aux_sym__quoted_curly_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [207257] = 4, - ACTIONS(8024), 1, + ACTIONS(7764), 1, sym__quoted_content_i_angle, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -339217,12 +373940,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(8022), 3, - anon_sym_GT, + STATE(4783), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [242337] = 7, + ACTIONS(6194), 1, anon_sym_POUND_LBRACE, + ACTIONS(7766), 1, + anon_sym_RBRACK, + ACTIONS(7768), 1, sym_escape_sequence, - [207274] = 4, - ACTIONS(8024), 1, + ACTIONS(7770), 1, sym__quoted_content_i_square, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -339230,309 +373958,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(8022), 3, - anon_sym_RBRACK, + STATE(4784), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [242362] = 7, + ACTIONS(6112), 1, anon_sym_POUND_LBRACE, - sym_escape_sequence, - [207291] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(79), 1, - anon_sym_DQUOTE, - ACTIONS(81), 1, - anon_sym_SQUOTE, - STATE(1531), 2, - sym__quoted_i_double, - sym__quoted_i_single, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [207310] = 6, - ACTIONS(8074), 1, - anon_sym_RPAREN, - ACTIONS(8076), 1, - sym_escape_sequence, - ACTIONS(8078), 1, - sym__quoted_content_parenthesis, - STATE(4645), 1, - aux_sym__quoted_parenthesis_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [207331] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(8080), 1, - anon_sym_COMMA, - STATE(4470), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(4602), 2, - anon_sym_when, - anon_sym_DASH_GT, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [207350] = 6, - ACTIONS(8083), 1, - anon_sym_RPAREN, - ACTIONS(8085), 1, - sym_escape_sequence, - ACTIONS(8087), 1, - sym__quoted_content_parenthesis, - STATE(4776), 1, - aux_sym__quoted_parenthesis_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [207371] = 6, - ACTIONS(8089), 1, - anon_sym_DQUOTE, - ACTIONS(8091), 1, - sym_escape_sequence, - ACTIONS(8093), 1, - sym__quoted_content_double, - STATE(4778), 1, - aux_sym__quoted_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [207392] = 6, - ACTIONS(8095), 1, - anon_sym_SQUOTE, - ACTIONS(8097), 1, - sym_escape_sequence, - ACTIONS(8099), 1, - sym__quoted_content_single, - STATE(4780), 1, - aux_sym__quoted_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [207413] = 6, - ACTIONS(8101), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(8103), 1, - sym_escape_sequence, - ACTIONS(8105), 1, - sym__quoted_content_heredoc_single, - STATE(4782), 1, - aux_sym__quoted_heredoc_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [207434] = 6, - ACTIONS(8107), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(8109), 1, - sym_escape_sequence, - ACTIONS(8111), 1, - sym__quoted_content_heredoc_double, - STATE(4790), 1, - aux_sym__quoted_heredoc_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [207455] = 6, - ACTIONS(8113), 1, + ACTIONS(7772), 1, anon_sym_RBRACE, - ACTIONS(8115), 1, + ACTIONS(7774), 1, sym_escape_sequence, - ACTIONS(8117), 1, - sym__quoted_content_curly, - STATE(4791), 1, - aux_sym__quoted_curly_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [207476] = 6, - ACTIONS(7914), 1, - sym_escape_sequence, - ACTIONS(7916), 1, - sym__quoted_content_square, - ACTIONS(8119), 1, - anon_sym_RBRACK, - STATE(4792), 1, - aux_sym__quoted_square_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [207497] = 6, - ACTIONS(8121), 1, - anon_sym_GT, - ACTIONS(8123), 1, - sym_escape_sequence, - ACTIONS(8125), 1, - sym__quoted_content_angle, - STATE(4794), 1, - aux_sym__quoted_angle_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [207518] = 6, - ACTIONS(8127), 1, - anon_sym_PIPE, - ACTIONS(8129), 1, - sym_escape_sequence, - ACTIONS(8131), 1, - sym__quoted_content_bar, - STATE(4795), 1, - aux_sym__quoted_bar_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [207539] = 6, - ACTIONS(8133), 1, - anon_sym_SLASH, - ACTIONS(8135), 1, - sym_escape_sequence, - ACTIONS(8137), 1, - sym__quoted_content_slash, - STATE(4796), 1, - aux_sym__quoted_slash_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [207560] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(566), 1, - anon_sym_DQUOTE, - ACTIONS(568), 1, - anon_sym_SQUOTE, - STATE(2405), 2, - sym__quoted_i_double, - sym__quoted_i_single, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [207579] = 6, - ACTIONS(8139), 1, - anon_sym_RPAREN, - ACTIONS(8141), 1, - sym_escape_sequence, - ACTIONS(8143), 1, - sym__quoted_content_parenthesis, - STATE(4590), 1, - aux_sym__quoted_parenthesis_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [207600] = 6, - ACTIONS(8145), 1, - anon_sym_DQUOTE, - ACTIONS(8147), 1, - sym_escape_sequence, - ACTIONS(8149), 1, - sym__quoted_content_double, - STATE(4623), 1, - aux_sym__quoted_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [207621] = 6, - ACTIONS(8151), 1, - anon_sym_RBRACK, - ACTIONS(8153), 1, - sym_escape_sequence, - ACTIONS(8155), 1, - sym__quoted_content_square, - STATE(4653), 1, - aux_sym__quoted_square_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [207642] = 6, - ACTIONS(8157), 1, - anon_sym_DQUOTE, - ACTIONS(8159), 1, - sym_escape_sequence, - ACTIONS(8161), 1, - sym__quoted_content_double, - STATE(4650), 1, - aux_sym__quoted_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [207663] = 6, - ACTIONS(8085), 1, - sym_escape_sequence, - ACTIONS(8087), 1, - sym__quoted_content_parenthesis, - ACTIONS(8163), 1, - anon_sym_RPAREN, - STATE(4776), 1, - aux_sym__quoted_parenthesis_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [207684] = 6, - ACTIONS(8165), 1, - anon_sym_SQUOTE, - ACTIONS(8167), 1, - sym_escape_sequence, - ACTIONS(8169), 1, - sym__quoted_content_single, - STATE(4624), 1, - aux_sym__quoted_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [207705] = 4, - ACTIONS(8024), 1, + ACTIONS(7776), 1, sym__quoted_content_i_curly, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -339540,117 +373976,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(8022), 3, - anon_sym_RBRACE, + STATE(4785), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [242387] = 7, + ACTIONS(6202), 1, anon_sym_POUND_LBRACE, + ACTIONS(7778), 1, + anon_sym_RPAREN, + ACTIONS(7780), 1, sym_escape_sequence, - [207722] = 6, - ACTIONS(8171), 1, - anon_sym_GT, - ACTIONS(8173), 1, - sym_escape_sequence, - ACTIONS(8175), 1, - sym__quoted_content_angle, - STATE(4648), 1, - aux_sym__quoted_angle_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [207743] = 6, - ACTIONS(8177), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(8179), 1, - sym_escape_sequence, - ACTIONS(8181), 1, - sym__quoted_content_heredoc_single, - STATE(4625), 1, - aux_sym__quoted_heredoc_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [207764] = 6, - ACTIONS(8183), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(8185), 1, - sym_escape_sequence, - ACTIONS(8187), 1, - sym__quoted_content_heredoc_double, - STATE(4638), 1, - aux_sym__quoted_heredoc_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [207785] = 6, - ACTIONS(8189), 1, - anon_sym_PIPE, - ACTIONS(8191), 1, - sym_escape_sequence, - ACTIONS(8193), 1, - sym__quoted_content_bar, - STATE(4579), 1, - aux_sym__quoted_bar_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [207806] = 6, - ACTIONS(8195), 1, - anon_sym_RBRACE, - ACTIONS(8197), 1, - sym_escape_sequence, - ACTIONS(8199), 1, - sym__quoted_content_curly, - STATE(4640), 1, - aux_sym__quoted_curly_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [207827] = 6, - ACTIONS(8201), 1, - anon_sym_RBRACK, - ACTIONS(8203), 1, - sym_escape_sequence, - ACTIONS(8205), 1, - sym__quoted_content_square, - STATE(4641), 1, - aux_sym__quoted_square_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [207848] = 6, - ACTIONS(8207), 1, - anon_sym_GT, - ACTIONS(8209), 1, - sym_escape_sequence, - ACTIONS(8211), 1, - sym__quoted_content_angle, - STATE(4642), 1, - aux_sym__quoted_angle_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [207869] = 4, - ACTIONS(8024), 1, + ACTIONS(7782), 1, sym__quoted_content_i_parenthesis, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -339658,1474 +373994,71 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(8022), 3, - anon_sym_RPAREN, + STATE(4786), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [242412] = 7, + ACTIONS(6128), 1, anon_sym_POUND_LBRACE, + ACTIONS(6130), 1, sym_escape_sequence, - [207886] = 6, - ACTIONS(8091), 1, - sym_escape_sequence, - ACTIONS(8093), 1, - sym__quoted_content_double, - ACTIONS(8213), 1, - anon_sym_DQUOTE, - STATE(4778), 1, - aux_sym__quoted_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [207907] = 6, - ACTIONS(8097), 1, - sym_escape_sequence, - ACTIONS(8099), 1, - sym__quoted_content_single, - ACTIONS(8215), 1, - anon_sym_SQUOTE, - STATE(4780), 1, - aux_sym__quoted_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [207928] = 6, - ACTIONS(8103), 1, - sym_escape_sequence, - ACTIONS(8105), 1, - sym__quoted_content_heredoc_single, - ACTIONS(8217), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(4782), 1, - aux_sym__quoted_heredoc_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [207949] = 6, - ACTIONS(8109), 1, - sym_escape_sequence, - ACTIONS(8111), 1, - sym__quoted_content_heredoc_double, - ACTIONS(8219), 1, + ACTIONS(6132), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(7784), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4790), 1, - aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [207970] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(618), 1, - anon_sym_DQUOTE, - ACTIONS(620), 1, - anon_sym_SQUOTE, - STATE(2979), 2, - sym__quoted_i_double, - sym__quoted_i_single, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [207989] = 6, - ACTIONS(8221), 1, - anon_sym_SQUOTE, - ACTIONS(8223), 1, + STATE(4483), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [242437] = 7, + ACTIONS(6152), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6288), 1, sym_escape_sequence, - ACTIONS(8225), 1, - sym__quoted_content_single, - STATE(4651), 1, - aux_sym__quoted_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [208010] = 6, - ACTIONS(8115), 1, - sym_escape_sequence, - ACTIONS(8117), 1, - sym__quoted_content_curly, - ACTIONS(8227), 1, - anon_sym_RBRACE, - STATE(4791), 1, - aux_sym__quoted_curly_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [208031] = 6, - ACTIONS(8229), 1, + ACTIONS(6290), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(7786), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(8231), 1, - sym_escape_sequence, - ACTIONS(8233), 1, - sym__quoted_content_heredoc_single, - STATE(4654), 1, - aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [208052] = 6, - ACTIONS(7914), 1, + STATE(4482), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [242462] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6282), 1, sym_escape_sequence, - ACTIONS(7916), 1, - sym__quoted_content_square, - ACTIONS(8235), 1, - anon_sym_RBRACK, - STATE(4792), 1, - aux_sym__quoted_square_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [208073] = 6, - ACTIONS(8237), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(8239), 1, - sym_escape_sequence, - ACTIONS(8241), 1, - sym__quoted_content_heredoc_double, - STATE(4655), 1, - aux_sym__quoted_heredoc_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [208094] = 6, - ACTIONS(8243), 1, - anon_sym_RBRACE, - ACTIONS(8245), 1, - sym_escape_sequence, - ACTIONS(8247), 1, - sym__quoted_content_curly, - STATE(4666), 1, - aux_sym__quoted_curly_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [208115] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1137), 1, - anon_sym_DQUOTE, - ACTIONS(1139), 1, - anon_sym_SQUOTE, - STATE(3491), 2, - sym__quoted_i_double, - sym__quoted_i_single, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [208134] = 6, - ACTIONS(8249), 1, - anon_sym_SLASH, - ACTIONS(8251), 1, - sym_escape_sequence, - ACTIONS(8253), 1, - sym__quoted_content_slash, - STATE(4577), 1, - aux_sym__quoted_slash_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [208155] = 6, - ACTIONS(8255), 1, - anon_sym_PIPE, - ACTIONS(8257), 1, - sym_escape_sequence, - ACTIONS(8259), 1, - sym__quoted_content_bar, - STATE(4643), 1, - aux_sym__quoted_bar_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [208176] = 6, - ACTIONS(8261), 1, - anon_sym_RBRACK, - ACTIONS(8263), 1, - sym_escape_sequence, - ACTIONS(8265), 1, - sym__quoted_content_square, - STATE(4668), 1, - aux_sym__quoted_square_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [208197] = 6, - ACTIONS(8267), 1, - anon_sym_GT, - ACTIONS(8269), 1, - sym_escape_sequence, - ACTIONS(8271), 1, - sym__quoted_content_angle, - STATE(4669), 1, - aux_sym__quoted_angle_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [208218] = 6, - ACTIONS(8123), 1, - sym_escape_sequence, - ACTIONS(8125), 1, - sym__quoted_content_angle, - ACTIONS(8273), 1, - anon_sym_GT, - STATE(4794), 1, - aux_sym__quoted_angle_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [208239] = 6, - ACTIONS(8129), 1, - sym_escape_sequence, - ACTIONS(8131), 1, - sym__quoted_content_bar, - ACTIONS(8275), 1, - anon_sym_PIPE, - STATE(4795), 1, - aux_sym__quoted_bar_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [208260] = 6, - ACTIONS(8135), 1, - sym_escape_sequence, - ACTIONS(8137), 1, - sym__quoted_content_slash, - ACTIONS(8277), 1, - anon_sym_SLASH, - STATE(4796), 1, - aux_sym__quoted_slash_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [208281] = 6, - ACTIONS(8279), 1, - anon_sym_PIPE, - ACTIONS(8281), 1, - sym_escape_sequence, - ACTIONS(8283), 1, - sym__quoted_content_bar, - STATE(4670), 1, - aux_sym__quoted_bar_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [208302] = 6, - ACTIONS(8285), 1, - anon_sym_SLASH, - ACTIONS(8287), 1, - sym_escape_sequence, - ACTIONS(8289), 1, - sym__quoted_content_slash, - STATE(4671), 1, - aux_sym__quoted_slash_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [208323] = 6, - ACTIONS(8291), 1, - anon_sym_RPAREN, - ACTIONS(8293), 1, - sym_escape_sequence, - ACTIONS(8295), 1, - sym__quoted_content_parenthesis, - STATE(4534), 1, - aux_sym__quoted_parenthesis_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [208344] = 6, - ACTIONS(8297), 1, - anon_sym_DQUOTE, - ACTIONS(8299), 1, - sym_escape_sequence, - ACTIONS(8301), 1, - sym__quoted_content_double, - STATE(4535), 1, - aux_sym__quoted_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [208365] = 6, - ACTIONS(8303), 1, - anon_sym_SQUOTE, - ACTIONS(8305), 1, - sym_escape_sequence, - ACTIONS(8307), 1, - sym__quoted_content_single, - STATE(4536), 1, - aux_sym__quoted_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [208386] = 6, - ACTIONS(8309), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(8311), 1, - sym_escape_sequence, - ACTIONS(8313), 1, - sym__quoted_content_heredoc_single, - STATE(4537), 1, - aux_sym__quoted_heredoc_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [208407] = 6, - ACTIONS(8315), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(8317), 1, - sym_escape_sequence, - ACTIONS(8319), 1, - sym__quoted_content_heredoc_double, - STATE(4538), 1, - aux_sym__quoted_heredoc_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [208428] = 6, - ACTIONS(8321), 1, - anon_sym_RBRACE, - ACTIONS(8323), 1, - sym_escape_sequence, - ACTIONS(8325), 1, - sym__quoted_content_curly, - STATE(4539), 1, - aux_sym__quoted_curly_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [208449] = 6, - ACTIONS(8327), 1, - anon_sym_RBRACK, - ACTIONS(8329), 1, - sym_escape_sequence, - ACTIONS(8331), 1, - sym__quoted_content_square, - STATE(4540), 1, - aux_sym__quoted_square_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [208470] = 6, - ACTIONS(8333), 1, - anon_sym_GT, - ACTIONS(8335), 1, - sym_escape_sequence, - ACTIONS(8337), 1, - sym__quoted_content_angle, - STATE(4541), 1, - aux_sym__quoted_angle_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [208491] = 6, - ACTIONS(8339), 1, - anon_sym_PIPE, - ACTIONS(8341), 1, - sym_escape_sequence, - ACTIONS(8343), 1, - sym__quoted_content_bar, - STATE(4542), 1, - aux_sym__quoted_bar_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [208512] = 6, - ACTIONS(8345), 1, - anon_sym_SLASH, - ACTIONS(8347), 1, - sym_escape_sequence, - ACTIONS(8349), 1, - sym__quoted_content_slash, - STATE(4543), 1, - aux_sym__quoted_slash_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [208533] = 6, - ACTIONS(8351), 1, - anon_sym_SLASH, - ACTIONS(8353), 1, - sym_escape_sequence, - ACTIONS(8355), 1, - sym__quoted_content_slash, - STATE(4644), 1, - aux_sym__quoted_slash_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [208554] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(8357), 1, - anon_sym_COMMA, - STATE(4470), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(8359), 2, - anon_sym_when, - anon_sym_DASH_GT, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [208573] = 6, - ACTIONS(8361), 1, - anon_sym_RPAREN, - ACTIONS(8363), 1, - sym_escape_sequence, - ACTIONS(8365), 1, - sym__quoted_content_parenthesis, - STATE(4692), 1, - aux_sym__quoted_parenthesis_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [208594] = 6, - ACTIONS(8367), 1, - anon_sym_DQUOTE, - ACTIONS(8369), 1, - sym_escape_sequence, - ACTIONS(8371), 1, - sym__quoted_content_double, - STATE(4555), 1, - aux_sym__quoted_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [208615] = 6, - ACTIONS(8373), 1, - anon_sym_SQUOTE, - ACTIONS(8375), 1, - sym_escape_sequence, - ACTIONS(8377), 1, - sym__quoted_content_single, - STATE(4649), 1, - aux_sym__quoted_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [208636] = 6, - ACTIONS(8379), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(8381), 1, - sym_escape_sequence, - ACTIONS(8383), 1, - sym__quoted_content_heredoc_single, - STATE(4647), 1, - aux_sym__quoted_heredoc_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [208657] = 6, - ACTIONS(8085), 1, - sym_escape_sequence, - ACTIONS(8087), 1, - sym__quoted_content_parenthesis, - ACTIONS(8385), 1, - anon_sym_RPAREN, - STATE(4776), 1, - aux_sym__quoted_parenthesis_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [208678] = 6, - ACTIONS(8091), 1, - sym_escape_sequence, - ACTIONS(8093), 1, - sym__quoted_content_double, - ACTIONS(8387), 1, - anon_sym_DQUOTE, - STATE(4778), 1, - aux_sym__quoted_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [208699] = 6, - ACTIONS(8097), 1, - sym_escape_sequence, - ACTIONS(8099), 1, - sym__quoted_content_single, - ACTIONS(8389), 1, - anon_sym_SQUOTE, - STATE(4780), 1, - aux_sym__quoted_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [208720] = 6, - ACTIONS(8103), 1, - sym_escape_sequence, - ACTIONS(8105), 1, - sym__quoted_content_heredoc_single, - ACTIONS(8391), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(4782), 1, - aux_sym__quoted_heredoc_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [208741] = 6, - ACTIONS(8109), 1, - sym_escape_sequence, - ACTIONS(8111), 1, - sym__quoted_content_heredoc_double, - ACTIONS(8393), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4790), 1, - aux_sym__quoted_heredoc_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [208762] = 6, - ACTIONS(8115), 1, - sym_escape_sequence, - ACTIONS(8117), 1, - sym__quoted_content_curly, - ACTIONS(8395), 1, - anon_sym_RBRACE, - STATE(4791), 1, - aux_sym__quoted_curly_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [208783] = 6, - ACTIONS(7914), 1, - sym_escape_sequence, - ACTIONS(7916), 1, - sym__quoted_content_square, - ACTIONS(8397), 1, - anon_sym_RBRACK, - STATE(4792), 1, - aux_sym__quoted_square_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [208804] = 6, - ACTIONS(8123), 1, - sym_escape_sequence, - ACTIONS(8125), 1, - sym__quoted_content_angle, - ACTIONS(8399), 1, - anon_sym_GT, - STATE(4794), 1, - aux_sym__quoted_angle_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [208825] = 6, - ACTIONS(8129), 1, - sym_escape_sequence, - ACTIONS(8131), 1, - sym__quoted_content_bar, - ACTIONS(8401), 1, - anon_sym_PIPE, - STATE(4795), 1, - aux_sym__quoted_bar_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [208846] = 6, - ACTIONS(8135), 1, - sym_escape_sequence, - ACTIONS(8137), 1, - sym__quoted_content_slash, - ACTIONS(8403), 1, - anon_sym_SLASH, - STATE(4796), 1, - aux_sym__quoted_slash_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [208867] = 6, - ACTIONS(8135), 1, - sym_escape_sequence, - ACTIONS(8137), 1, - sym__quoted_content_slash, - ACTIONS(8405), 1, - anon_sym_SLASH, - STATE(4796), 1, - aux_sym__quoted_slash_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [208888] = 6, - ACTIONS(8129), 1, - sym_escape_sequence, - ACTIONS(8131), 1, - sym__quoted_content_bar, - ACTIONS(8407), 1, - anon_sym_PIPE, - STATE(4795), 1, - aux_sym__quoted_bar_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [208909] = 6, - ACTIONS(8123), 1, - sym_escape_sequence, - ACTIONS(8125), 1, - sym__quoted_content_angle, - ACTIONS(8409), 1, - anon_sym_GT, - STATE(4794), 1, - aux_sym__quoted_angle_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [208930] = 6, - ACTIONS(7914), 1, - sym_escape_sequence, - ACTIONS(7916), 1, - sym__quoted_content_square, - ACTIONS(8411), 1, - anon_sym_RBRACK, - STATE(4792), 1, - aux_sym__quoted_square_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [208951] = 6, - ACTIONS(8115), 1, - sym_escape_sequence, - ACTIONS(8117), 1, - sym__quoted_content_curly, - ACTIONS(8413), 1, - anon_sym_RBRACE, - STATE(4791), 1, - aux_sym__quoted_curly_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [208972] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1077), 1, - anon_sym_DQUOTE, - ACTIONS(1079), 1, - anon_sym_SQUOTE, - STATE(2548), 2, - sym__quoted_i_double, - sym__quoted_i_single, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [208991] = 6, - ACTIONS(8109), 1, - sym_escape_sequence, - ACTIONS(8111), 1, - sym__quoted_content_heredoc_double, - ACTIONS(8415), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4790), 1, - aux_sym__quoted_heredoc_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [209012] = 6, - ACTIONS(8103), 1, - sym_escape_sequence, - ACTIONS(8105), 1, - sym__quoted_content_heredoc_single, - ACTIONS(8417), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(4782), 1, - aux_sym__quoted_heredoc_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [209033] = 6, - ACTIONS(8097), 1, - sym_escape_sequence, - ACTIONS(8099), 1, - sym__quoted_content_single, - ACTIONS(8419), 1, - anon_sym_SQUOTE, - STATE(4780), 1, - aux_sym__quoted_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [209054] = 6, - ACTIONS(8091), 1, - sym_escape_sequence, - ACTIONS(8093), 1, - sym__quoted_content_double, - ACTIONS(8421), 1, - anon_sym_DQUOTE, - STATE(4778), 1, - aux_sym__quoted_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [209075] = 6, - ACTIONS(8085), 1, - sym_escape_sequence, - ACTIONS(8087), 1, - sym__quoted_content_parenthesis, - ACTIONS(8423), 1, - anon_sym_RPAREN, - STATE(4776), 1, - aux_sym__quoted_parenthesis_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [209096] = 6, - ACTIONS(8091), 1, - sym_escape_sequence, - ACTIONS(8093), 1, - sym__quoted_content_double, - ACTIONS(8425), 1, - anon_sym_DQUOTE, - STATE(4778), 1, - aux_sym__quoted_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [209117] = 6, - ACTIONS(8135), 1, - sym_escape_sequence, - ACTIONS(8137), 1, - sym__quoted_content_slash, - ACTIONS(8427), 1, - anon_sym_SLASH, - STATE(4796), 1, - aux_sym__quoted_slash_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [209138] = 6, - ACTIONS(8429), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(8431), 1, - sym_escape_sequence, - ACTIONS(8433), 1, - sym__quoted_content_heredoc_double, - STATE(4646), 1, - aux_sym__quoted_heredoc_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [209159] = 6, - ACTIONS(8435), 1, - anon_sym_RBRACE, - ACTIONS(8437), 1, - sym_escape_sequence, - ACTIONS(8439), 1, - sym__quoted_content_curly, - STATE(4636), 1, - aux_sym__quoted_curly_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [209180] = 6, - ACTIONS(8441), 1, - anon_sym_RBRACK, - ACTIONS(8443), 1, - sym_escape_sequence, - ACTIONS(8445), 1, - sym__quoted_content_square, - STATE(4603), 1, - aux_sym__quoted_square_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [209201] = 4, - ACTIONS(8024), 1, + ACTIONS(6284), 1, sym__quoted_content_i_single, + ACTIONS(7788), 1, + anon_sym_SQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(8022), 3, - anon_sym_SQUOTE, + STATE(4481), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [242487] = 7, + ACTIONS(6136), 1, anon_sym_POUND_LBRACE, - sym_escape_sequence, - [209218] = 6, - ACTIONS(8447), 1, - anon_sym_GT, - ACTIONS(8449), 1, - sym_escape_sequence, - ACTIONS(8451), 1, - sym__quoted_content_angle, - STATE(4602), 1, - aux_sym__quoted_angle_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [209239] = 6, - ACTIONS(8453), 1, - anon_sym_PIPE, - ACTIONS(8455), 1, - sym_escape_sequence, - ACTIONS(8457), 1, - sym__quoted_content_bar, - STATE(4601), 1, - aux_sym__quoted_bar_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [209260] = 6, - ACTIONS(8459), 1, - anon_sym_SLASH, - ACTIONS(8461), 1, - sym_escape_sequence, - ACTIONS(8463), 1, - sym__quoted_content_slash, - STATE(4600), 1, - aux_sym__quoted_slash_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [209281] = 6, - ACTIONS(8465), 1, - anon_sym_RPAREN, - ACTIONS(8467), 1, - sym_escape_sequence, - ACTIONS(8469), 1, - sym__quoted_content_parenthesis, - STATE(4580), 1, - aux_sym__quoted_parenthesis_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [209302] = 6, - ACTIONS(8471), 1, + ACTIONS(7790), 1, anon_sym_DQUOTE, - ACTIONS(8473), 1, + ACTIONS(7792), 1, sym_escape_sequence, - ACTIONS(8475), 1, - sym__quoted_content_double, - STATE(4581), 1, - aux_sym__quoted_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [209323] = 6, - ACTIONS(8477), 1, - anon_sym_SQUOTE, - ACTIONS(8479), 1, - sym_escape_sequence, - ACTIONS(8481), 1, - sym__quoted_content_single, - STATE(4582), 1, - aux_sym__quoted_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [209344] = 6, - ACTIONS(8483), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(8485), 1, - sym_escape_sequence, - ACTIONS(8487), 1, - sym__quoted_content_heredoc_single, - STATE(4583), 1, - aux_sym__quoted_heredoc_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [209365] = 6, - ACTIONS(8489), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(8491), 1, - sym_escape_sequence, - ACTIONS(8493), 1, - sym__quoted_content_heredoc_double, - STATE(4584), 1, - aux_sym__quoted_heredoc_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [209386] = 6, - ACTIONS(8495), 1, - anon_sym_RBRACE, - ACTIONS(8497), 1, - sym_escape_sequence, - ACTIONS(8499), 1, - sym__quoted_content_curly, - STATE(4585), 1, - aux_sym__quoted_curly_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [209407] = 6, - ACTIONS(8501), 1, - anon_sym_RBRACK, - ACTIONS(8503), 1, - sym_escape_sequence, - ACTIONS(8505), 1, - sym__quoted_content_square, - STATE(4586), 1, - aux_sym__quoted_square_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [209428] = 6, - ACTIONS(8507), 1, - anon_sym_GT, - ACTIONS(8509), 1, - sym_escape_sequence, - ACTIONS(8511), 1, - sym__quoted_content_angle, - STATE(4587), 1, - aux_sym__quoted_angle_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [209449] = 6, - ACTIONS(8513), 1, - anon_sym_PIPE, - ACTIONS(8515), 1, - sym_escape_sequence, - ACTIONS(8517), 1, - sym__quoted_content_bar, - STATE(4588), 1, - aux_sym__quoted_bar_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [209470] = 6, - ACTIONS(8519), 1, - anon_sym_SLASH, - ACTIONS(8521), 1, - sym_escape_sequence, - ACTIONS(8523), 1, - sym__quoted_content_slash, - STATE(4589), 1, - aux_sym__quoted_slash_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [209491] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(8525), 1, - anon_sym_COMMA, - STATE(4405), 1, - aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(1183), 2, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [209510] = 6, - ACTIONS(8135), 1, - sym_escape_sequence, - ACTIONS(8137), 1, - sym__quoted_content_slash, - ACTIONS(8527), 1, - anon_sym_SLASH, - STATE(4796), 1, - aux_sym__quoted_slash_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [209531] = 6, - ACTIONS(8129), 1, - sym_escape_sequence, - ACTIONS(8131), 1, - sym__quoted_content_bar, - ACTIONS(8529), 1, - anon_sym_PIPE, - STATE(4795), 1, - aux_sym__quoted_bar_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [209552] = 6, - ACTIONS(8135), 1, - sym_escape_sequence, - ACTIONS(8137), 1, - sym__quoted_content_slash, - ACTIONS(8531), 1, - anon_sym_SLASH, - STATE(4796), 1, - aux_sym__quoted_slash_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [209573] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(207), 1, - anon_sym_DQUOTE, - ACTIONS(209), 1, - anon_sym_SQUOTE, - STATE(1425), 2, - sym__quoted_i_double, - sym__quoted_i_single, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [209592] = 6, - ACTIONS(8129), 1, - sym_escape_sequence, - ACTIONS(8131), 1, - sym__quoted_content_bar, - ACTIONS(8533), 1, - anon_sym_PIPE, - STATE(4795), 1, - aux_sym__quoted_bar_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [209613] = 6, - ACTIONS(8085), 1, - sym_escape_sequence, - ACTIONS(8087), 1, - sym__quoted_content_parenthesis, - ACTIONS(8535), 1, - anon_sym_RPAREN, - STATE(4776), 1, - aux_sym__quoted_parenthesis_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [209634] = 6, - ACTIONS(8091), 1, - sym_escape_sequence, - ACTIONS(8093), 1, - sym__quoted_content_double, - ACTIONS(8537), 1, - anon_sym_DQUOTE, - STATE(4778), 1, - aux_sym__quoted_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [209655] = 6, - ACTIONS(8097), 1, - sym_escape_sequence, - ACTIONS(8099), 1, - sym__quoted_content_single, - ACTIONS(8539), 1, - anon_sym_SQUOTE, - STATE(4780), 1, - aux_sym__quoted_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [209676] = 6, - ACTIONS(8103), 1, - sym_escape_sequence, - ACTIONS(8105), 1, - sym__quoted_content_heredoc_single, - ACTIONS(8541), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(4782), 1, - aux_sym__quoted_heredoc_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [209697] = 6, - ACTIONS(8109), 1, - sym_escape_sequence, - ACTIONS(8111), 1, - sym__quoted_content_heredoc_double, - ACTIONS(8543), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4790), 1, - aux_sym__quoted_heredoc_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [209718] = 6, - ACTIONS(8115), 1, - sym_escape_sequence, - ACTIONS(8117), 1, - sym__quoted_content_curly, - ACTIONS(8545), 1, - anon_sym_RBRACE, - STATE(4791), 1, - aux_sym__quoted_curly_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [209739] = 6, - ACTIONS(7914), 1, - sym_escape_sequence, - ACTIONS(7916), 1, - sym__quoted_content_square, - ACTIONS(8547), 1, - anon_sym_RBRACK, - STATE(4792), 1, - aux_sym__quoted_square_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [209760] = 6, - ACTIONS(8123), 1, - sym_escape_sequence, - ACTIONS(8125), 1, - sym__quoted_content_angle, - ACTIONS(8549), 1, - anon_sym_GT, - STATE(4794), 1, - aux_sym__quoted_angle_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [209781] = 6, - ACTIONS(8129), 1, - sym_escape_sequence, - ACTIONS(8131), 1, - sym__quoted_content_bar, - ACTIONS(8551), 1, - anon_sym_PIPE, - STATE(4795), 1, - aux_sym__quoted_bar_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [209802] = 6, - ACTIONS(8135), 1, - sym_escape_sequence, - ACTIONS(8137), 1, - sym__quoted_content_slash, - ACTIONS(8553), 1, - anon_sym_SLASH, - STATE(4796), 1, - aux_sym__quoted_slash_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [209823] = 6, - ACTIONS(8085), 1, - sym_escape_sequence, - ACTIONS(8087), 1, - sym__quoted_content_parenthesis, - ACTIONS(8555), 1, - anon_sym_RPAREN, - STATE(4776), 1, - aux_sym__quoted_parenthesis_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [209844] = 6, - ACTIONS(8557), 1, - anon_sym_RPAREN, - ACTIONS(8559), 1, - sym_escape_sequence, - ACTIONS(8561), 1, - sym__quoted_content_parenthesis, - STATE(4486), 1, - aux_sym__quoted_parenthesis_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [209865] = 6, - ACTIONS(8563), 1, - anon_sym_DQUOTE, - ACTIONS(8565), 1, - sym_escape_sequence, - ACTIONS(8567), 1, - sym__quoted_content_double, - STATE(4497), 1, - aux_sym__quoted_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [209886] = 6, - ACTIONS(8569), 1, - anon_sym_SQUOTE, - ACTIONS(8571), 1, - sym_escape_sequence, - ACTIONS(8573), 1, - sym__quoted_content_single, - STATE(4498), 1, - aux_sym__quoted_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [209907] = 6, - ACTIONS(8575), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(8577), 1, - sym_escape_sequence, - ACTIONS(8579), 1, - sym__quoted_content_heredoc_single, - STATE(4499), 1, - aux_sym__quoted_heredoc_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [209928] = 4, - ACTIONS(8024), 1, + ACTIONS(7794), 1, sym__quoted_content_i_double, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -341133,2243 +374066,71 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(8022), 3, - anon_sym_DQUOTE, + STATE(4519), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [242512] = 7, + ACTIONS(6136), 1, anon_sym_POUND_LBRACE, + ACTIONS(7796), 1, + anon_sym_DQUOTE, + ACTIONS(7798), 1, sym_escape_sequence, - [209945] = 6, - ACTIONS(8581), 1, - anon_sym_SLASH, - ACTIONS(8583), 1, - sym_escape_sequence, - ACTIONS(8585), 1, - sym__quoted_content_slash, - STATE(4544), 1, - aux_sym__quoted_slash_repeat1, + ACTIONS(7800), 1, + sym__quoted_content_i_double, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [209966] = 6, - ACTIONS(8587), 1, - anon_sym_PIPE, - ACTIONS(8589), 1, + STATE(4898), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [242537] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6276), 1, sym_escape_sequence, - ACTIONS(8591), 1, - sym__quoted_content_bar, - STATE(4545), 1, - aux_sym__quoted_bar_repeat1, + ACTIONS(6278), 1, + sym__quoted_content_i_double, + ACTIONS(7802), 1, + anon_sym_DQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [209987] = 6, - ACTIONS(8593), 1, - anon_sym_GT, - ACTIONS(8595), 1, - sym_escape_sequence, - ACTIONS(8597), 1, - sym__quoted_content_angle, - STATE(4546), 1, - aux_sym__quoted_angle_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [210008] = 6, - ACTIONS(8599), 1, - anon_sym_RBRACK, - ACTIONS(8601), 1, - sym_escape_sequence, - ACTIONS(8603), 1, - sym__quoted_content_square, - STATE(4547), 1, - aux_sym__quoted_square_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [210029] = 6, - ACTIONS(8135), 1, - sym_escape_sequence, - ACTIONS(8137), 1, - sym__quoted_content_slash, - ACTIONS(8605), 1, - anon_sym_SLASH, - STATE(4796), 1, - aux_sym__quoted_slash_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [210050] = 6, - ACTIONS(8129), 1, - sym_escape_sequence, - ACTIONS(8131), 1, - sym__quoted_content_bar, - ACTIONS(8607), 1, - anon_sym_PIPE, - STATE(4795), 1, - aux_sym__quoted_bar_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [210071] = 6, - ACTIONS(8123), 1, - sym_escape_sequence, - ACTIONS(8125), 1, - sym__quoted_content_angle, - ACTIONS(8609), 1, - anon_sym_GT, - STATE(4794), 1, - aux_sym__quoted_angle_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [210092] = 6, - ACTIONS(7914), 1, - sym_escape_sequence, - ACTIONS(7916), 1, - sym__quoted_content_square, - ACTIONS(8611), 1, - anon_sym_RBRACK, - STATE(4792), 1, - aux_sym__quoted_square_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [210113] = 6, - ACTIONS(8613), 1, - anon_sym_RBRACE, - ACTIONS(8615), 1, - sym_escape_sequence, - ACTIONS(8617), 1, - sym__quoted_content_curly, - STATE(4548), 1, - aux_sym__quoted_curly_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [210134] = 6, - ACTIONS(8619), 1, + STATE(4507), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [242562] = 7, + ACTIONS(6128), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7804), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(8621), 1, + ACTIONS(7806), 1, sym_escape_sequence, - ACTIONS(8623), 1, - sym__quoted_content_heredoc_double, - STATE(4550), 1, - aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(7808), 1, + sym__quoted_content_i_heredoc_double, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [210155] = 6, - ACTIONS(8625), 1, + STATE(4795), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [242587] = 7, + ACTIONS(6152), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7810), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(8627), 1, + ACTIONS(7812), 1, sym_escape_sequence, - ACTIONS(8629), 1, - sym__quoted_content_heredoc_single, - STATE(4551), 1, - aux_sym__quoted_heredoc_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [210176] = 6, - ACTIONS(8631), 1, - anon_sym_SQUOTE, - ACTIONS(8633), 1, - sym_escape_sequence, - ACTIONS(8635), 1, - sym__quoted_content_single, - STATE(4552), 1, - aux_sym__quoted_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [210197] = 6, - ACTIONS(8637), 1, - anon_sym_DQUOTE, - ACTIONS(8639), 1, - sym_escape_sequence, - ACTIONS(8641), 1, - sym__quoted_content_double, - STATE(4553), 1, - aux_sym__quoted_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [210218] = 6, - ACTIONS(8643), 1, - anon_sym_RPAREN, - ACTIONS(8645), 1, - sym_escape_sequence, - ACTIONS(8647), 1, - sym__quoted_content_parenthesis, - STATE(4554), 1, - aux_sym__quoted_parenthesis_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [210239] = 6, - ACTIONS(8649), 1, - anon_sym_RPAREN, - ACTIONS(8651), 1, - sym_escape_sequence, - ACTIONS(8653), 1, - sym__quoted_content_parenthesis, - STATE(4626), 1, - aux_sym__quoted_parenthesis_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [210260] = 6, - ACTIONS(8655), 1, - anon_sym_DQUOTE, - ACTIONS(8657), 1, - sym_escape_sequence, - ACTIONS(8659), 1, - sym__quoted_content_double, - STATE(4627), 1, - aux_sym__quoted_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [210281] = 6, - ACTIONS(8661), 1, - anon_sym_SQUOTE, - ACTIONS(8663), 1, - sym_escape_sequence, - ACTIONS(8665), 1, - sym__quoted_content_single, - STATE(4628), 1, - aux_sym__quoted_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [210302] = 6, - ACTIONS(8667), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(8669), 1, - sym_escape_sequence, - ACTIONS(8671), 1, - sym__quoted_content_heredoc_single, - STATE(4629), 1, - aux_sym__quoted_heredoc_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [210323] = 6, - ACTIONS(8673), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(8675), 1, - sym_escape_sequence, - ACTIONS(8677), 1, - sym__quoted_content_heredoc_double, - STATE(4630), 1, - aux_sym__quoted_heredoc_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [210344] = 6, - ACTIONS(8679), 1, - anon_sym_RBRACE, - ACTIONS(8681), 1, - sym_escape_sequence, - ACTIONS(8683), 1, - sym__quoted_content_curly, - STATE(4631), 1, - aux_sym__quoted_curly_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [210365] = 6, - ACTIONS(8685), 1, - anon_sym_RBRACK, - ACTIONS(8687), 1, - sym_escape_sequence, - ACTIONS(8689), 1, - sym__quoted_content_square, - STATE(4436), 1, - aux_sym__quoted_square_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [210386] = 6, - ACTIONS(8691), 1, - anon_sym_GT, - ACTIONS(8693), 1, - sym_escape_sequence, - ACTIONS(8695), 1, - sym__quoted_content_angle, - STATE(4633), 1, - aux_sym__quoted_angle_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [210407] = 6, - ACTIONS(8697), 1, - anon_sym_PIPE, - ACTIONS(8699), 1, - sym_escape_sequence, - ACTIONS(8701), 1, - sym__quoted_content_bar, - STATE(4634), 1, - aux_sym__quoted_bar_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [210428] = 6, - ACTIONS(8703), 1, - anon_sym_SLASH, - ACTIONS(8705), 1, - sym_escape_sequence, - ACTIONS(8707), 1, - sym__quoted_content_slash, - STATE(4635), 1, - aux_sym__quoted_slash_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [210449] = 6, - ACTIONS(8709), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(8711), 1, - sym_escape_sequence, - ACTIONS(8713), 1, - sym__quoted_content_heredoc_double, - STATE(4500), 1, - aux_sym__quoted_heredoc_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [210470] = 6, - ACTIONS(8715), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(8717), 1, - sym_escape_sequence, - ACTIONS(8719), 1, - sym__quoted_content_heredoc_double, - STATE(4736), 1, - aux_sym__quoted_heredoc_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [210491] = 6, - ACTIONS(8721), 1, - anon_sym_RBRACE, - ACTIONS(8723), 1, - sym_escape_sequence, - ACTIONS(8725), 1, - sym__quoted_content_curly, - STATE(4503), 1, - aux_sym__quoted_curly_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [210512] = 6, - ACTIONS(8091), 1, - sym_escape_sequence, - ACTIONS(8093), 1, - sym__quoted_content_double, - ACTIONS(8727), 1, - anon_sym_DQUOTE, - STATE(4778), 1, - aux_sym__quoted_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [210533] = 6, - ACTIONS(8097), 1, - sym_escape_sequence, - ACTIONS(8099), 1, - sym__quoted_content_single, - ACTIONS(8729), 1, - anon_sym_SQUOTE, - STATE(4780), 1, - aux_sym__quoted_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [210554] = 6, - ACTIONS(8103), 1, - sym_escape_sequence, - ACTIONS(8105), 1, - sym__quoted_content_heredoc_single, - ACTIONS(8731), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(4782), 1, - aux_sym__quoted_heredoc_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [210575] = 6, - ACTIONS(8085), 1, - sym_escape_sequence, - ACTIONS(8087), 1, - sym__quoted_content_parenthesis, - ACTIONS(8733), 1, - anon_sym_RPAREN, - STATE(4776), 1, - aux_sym__quoted_parenthesis_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [210596] = 6, - ACTIONS(8091), 1, - sym_escape_sequence, - ACTIONS(8093), 1, - sym__quoted_content_double, - ACTIONS(8735), 1, - anon_sym_DQUOTE, - STATE(4778), 1, - aux_sym__quoted_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [210617] = 6, - ACTIONS(8097), 1, - sym_escape_sequence, - ACTIONS(8099), 1, - sym__quoted_content_single, - ACTIONS(8737), 1, - anon_sym_SQUOTE, - STATE(4780), 1, - aux_sym__quoted_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [210638] = 6, - ACTIONS(8103), 1, - sym_escape_sequence, - ACTIONS(8105), 1, - sym__quoted_content_heredoc_single, - ACTIONS(8739), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(4782), 1, - aux_sym__quoted_heredoc_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [210659] = 6, - ACTIONS(8109), 1, - sym_escape_sequence, - ACTIONS(8111), 1, - sym__quoted_content_heredoc_double, - ACTIONS(8741), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4790), 1, - aux_sym__quoted_heredoc_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [210680] = 6, - ACTIONS(8115), 1, - sym_escape_sequence, - ACTIONS(8117), 1, - sym__quoted_content_curly, - ACTIONS(8743), 1, - anon_sym_RBRACE, - STATE(4791), 1, - aux_sym__quoted_curly_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [210701] = 6, - ACTIONS(8745), 1, - anon_sym_PIPE, - ACTIONS(8747), 1, - sym_escape_sequence, - ACTIONS(8749), 1, - sym__quoted_content_bar, - STATE(4813), 1, - aux_sym__quoted_bar_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [210722] = 6, - ACTIONS(8123), 1, - sym_escape_sequence, - ACTIONS(8125), 1, - sym__quoted_content_angle, - ACTIONS(8751), 1, - anon_sym_GT, - STATE(4794), 1, - aux_sym__quoted_angle_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [210743] = 6, - ACTIONS(8129), 1, - sym_escape_sequence, - ACTIONS(8131), 1, - sym__quoted_content_bar, - ACTIONS(8753), 1, - anon_sym_PIPE, - STATE(4795), 1, - aux_sym__quoted_bar_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [210764] = 6, - ACTIONS(8135), 1, - sym_escape_sequence, - ACTIONS(8137), 1, - sym__quoted_content_slash, - ACTIONS(8755), 1, - anon_sym_SLASH, - STATE(4796), 1, - aux_sym__quoted_slash_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [210785] = 6, - ACTIONS(8115), 1, - sym_escape_sequence, - ACTIONS(8117), 1, - sym__quoted_content_curly, - ACTIONS(8757), 1, - anon_sym_RBRACE, - STATE(4791), 1, - aux_sym__quoted_curly_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [210806] = 6, - ACTIONS(8085), 1, - sym_escape_sequence, - ACTIONS(8087), 1, - sym__quoted_content_parenthesis, - ACTIONS(8759), 1, - anon_sym_RPAREN, - STATE(4776), 1, - aux_sym__quoted_parenthesis_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [210827] = 6, - ACTIONS(8109), 1, - sym_escape_sequence, - ACTIONS(8111), 1, - sym__quoted_content_heredoc_double, - ACTIONS(8761), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4790), 1, - aux_sym__quoted_heredoc_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [210848] = 6, - ACTIONS(8091), 1, - sym_escape_sequence, - ACTIONS(8093), 1, - sym__quoted_content_double, - ACTIONS(8763), 1, - anon_sym_DQUOTE, - STATE(4778), 1, - aux_sym__quoted_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [210869] = 6, - ACTIONS(8115), 1, - sym_escape_sequence, - ACTIONS(8117), 1, - sym__quoted_content_curly, - ACTIONS(8765), 1, - anon_sym_RBRACE, - STATE(4791), 1, - aux_sym__quoted_curly_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [210890] = 6, - ACTIONS(7914), 1, - sym_escape_sequence, - ACTIONS(7916), 1, - sym__quoted_content_square, - ACTIONS(8767), 1, - anon_sym_RBRACK, - STATE(4792), 1, - aux_sym__quoted_square_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [210911] = 6, - ACTIONS(8123), 1, - sym_escape_sequence, - ACTIONS(8125), 1, - sym__quoted_content_angle, - ACTIONS(8769), 1, - anon_sym_GT, - STATE(4794), 1, - aux_sym__quoted_angle_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [210932] = 6, - ACTIONS(8129), 1, - sym_escape_sequence, - ACTIONS(8131), 1, - sym__quoted_content_bar, - ACTIONS(8771), 1, - anon_sym_PIPE, - STATE(4795), 1, - aux_sym__quoted_bar_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [210953] = 6, - ACTIONS(8135), 1, - sym_escape_sequence, - ACTIONS(8137), 1, - sym__quoted_content_slash, - ACTIONS(8773), 1, - anon_sym_SLASH, - STATE(4796), 1, - aux_sym__quoted_slash_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [210974] = 6, - ACTIONS(8085), 1, - sym_escape_sequence, - ACTIONS(8087), 1, - sym__quoted_content_parenthesis, - ACTIONS(8775), 1, - anon_sym_RPAREN, - STATE(4776), 1, - aux_sym__quoted_parenthesis_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [210995] = 6, - ACTIONS(8109), 1, - sym_escape_sequence, - ACTIONS(8111), 1, - sym__quoted_content_heredoc_double, - ACTIONS(8777), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4790), 1, - aux_sym__quoted_heredoc_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [211016] = 6, - ACTIONS(8103), 1, - sym_escape_sequence, - ACTIONS(8105), 1, - sym__quoted_content_heredoc_single, - ACTIONS(8779), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(4782), 1, - aux_sym__quoted_heredoc_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [211037] = 6, - ACTIONS(8123), 1, - sym_escape_sequence, - ACTIONS(8125), 1, - sym__quoted_content_angle, - ACTIONS(8781), 1, - anon_sym_GT, - STATE(4794), 1, - aux_sym__quoted_angle_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [211058] = 6, - ACTIONS(8097), 1, - sym_escape_sequence, - ACTIONS(8099), 1, - sym__quoted_content_single, - ACTIONS(8783), 1, - anon_sym_SQUOTE, - STATE(4780), 1, - aux_sym__quoted_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [211079] = 6, - ACTIONS(8091), 1, - sym_escape_sequence, - ACTIONS(8093), 1, - sym__quoted_content_double, - ACTIONS(8785), 1, - anon_sym_DQUOTE, - STATE(4778), 1, - aux_sym__quoted_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [211100] = 6, - ACTIONS(8097), 1, - sym_escape_sequence, - ACTIONS(8099), 1, - sym__quoted_content_single, - ACTIONS(8787), 1, - anon_sym_SQUOTE, - STATE(4780), 1, - aux_sym__quoted_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [211121] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(493), 1, - anon_sym_DQUOTE, - ACTIONS(495), 1, - anon_sym_SQUOTE, - STATE(2706), 2, - sym__quoted_i_double, - sym__quoted_i_single, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [211140] = 6, - ACTIONS(7914), 1, - sym_escape_sequence, - ACTIONS(7916), 1, - sym__quoted_content_square, - ACTIONS(8789), 1, - anon_sym_RBRACK, - STATE(4792), 1, - aux_sym__quoted_square_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [211161] = 6, - ACTIONS(8103), 1, - sym_escape_sequence, - ACTIONS(8105), 1, - sym__quoted_content_heredoc_single, - ACTIONS(8791), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(4782), 1, - aux_sym__quoted_heredoc_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [211182] = 6, - ACTIONS(8109), 1, - sym_escape_sequence, - ACTIONS(8111), 1, - sym__quoted_content_heredoc_double, - ACTIONS(8793), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4790), 1, - aux_sym__quoted_heredoc_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [211203] = 6, - ACTIONS(8795), 1, - anon_sym_RPAREN, - ACTIONS(8797), 1, - sym_escape_sequence, - ACTIONS(8799), 1, - sym__quoted_content_parenthesis, - STATE(4672), 1, - aux_sym__quoted_parenthesis_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [211224] = 6, - ACTIONS(8801), 1, - anon_sym_DQUOTE, - ACTIONS(8803), 1, - sym_escape_sequence, - ACTIONS(8805), 1, - sym__quoted_content_double, - STATE(4673), 1, - aux_sym__quoted_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [211245] = 6, - ACTIONS(8807), 1, - anon_sym_SQUOTE, - ACTIONS(8809), 1, - sym_escape_sequence, - ACTIONS(8811), 1, - sym__quoted_content_single, - STATE(4674), 1, - aux_sym__quoted_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [211266] = 6, - ACTIONS(8813), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(8815), 1, - sym_escape_sequence, - ACTIONS(8817), 1, - sym__quoted_content_heredoc_single, - STATE(4675), 1, - aux_sym__quoted_heredoc_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [211287] = 6, - ACTIONS(8819), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(8821), 1, - sym_escape_sequence, - ACTIONS(8823), 1, - sym__quoted_content_heredoc_double, - STATE(4676), 1, - aux_sym__quoted_heredoc_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [211308] = 6, - ACTIONS(8825), 1, - anon_sym_RBRACE, - ACTIONS(8827), 1, - sym_escape_sequence, - ACTIONS(8829), 1, - sym__quoted_content_curly, - STATE(4677), 1, - aux_sym__quoted_curly_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [211329] = 6, - ACTIONS(8831), 1, - anon_sym_RBRACK, - ACTIONS(8833), 1, - sym_escape_sequence, - ACTIONS(8835), 1, - sym__quoted_content_square, - STATE(4435), 1, - aux_sym__quoted_square_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [211350] = 6, - ACTIONS(8837), 1, - anon_sym_GT, - ACTIONS(8839), 1, - sym_escape_sequence, - ACTIONS(8841), 1, - sym__quoted_content_angle, - STATE(4679), 1, - aux_sym__quoted_angle_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [211371] = 6, - ACTIONS(8843), 1, - anon_sym_PIPE, - ACTIONS(8845), 1, - sym_escape_sequence, - ACTIONS(8847), 1, - sym__quoted_content_bar, - STATE(4680), 1, - aux_sym__quoted_bar_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [211392] = 6, - ACTIONS(8849), 1, - anon_sym_SLASH, - ACTIONS(8851), 1, - sym_escape_sequence, - ACTIONS(8853), 1, - sym__quoted_content_slash, - STATE(4681), 1, - aux_sym__quoted_slash_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [211413] = 6, - ACTIONS(8115), 1, - sym_escape_sequence, - ACTIONS(8117), 1, - sym__quoted_content_curly, - ACTIONS(8855), 1, - anon_sym_RBRACE, - STATE(4791), 1, - aux_sym__quoted_curly_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [211434] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(371), 1, - anon_sym_DQUOTE, - ACTIONS(373), 1, - anon_sym_SQUOTE, - STATE(1881), 2, - sym__quoted_i_double, - sym__quoted_i_single, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [211453] = 6, - ACTIONS(7914), 1, - sym_escape_sequence, - ACTIONS(7916), 1, - sym__quoted_content_square, - ACTIONS(8857), 1, - anon_sym_RBRACK, - STATE(4792), 1, - aux_sym__quoted_square_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [211474] = 6, - ACTIONS(8123), 1, - sym_escape_sequence, - ACTIONS(8125), 1, - sym__quoted_content_angle, - ACTIONS(8859), 1, - anon_sym_GT, - STATE(4794), 1, - aux_sym__quoted_angle_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [211495] = 6, - ACTIONS(8129), 1, - sym_escape_sequence, - ACTIONS(8131), 1, - sym__quoted_content_bar, - ACTIONS(8861), 1, - anon_sym_PIPE, - STATE(4795), 1, - aux_sym__quoted_bar_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [211516] = 6, - ACTIONS(8135), 1, - sym_escape_sequence, - ACTIONS(8137), 1, - sym__quoted_content_slash, - ACTIONS(8863), 1, - anon_sym_SLASH, - STATE(4796), 1, - aux_sym__quoted_slash_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [211537] = 6, - ACTIONS(8085), 1, - sym_escape_sequence, - ACTIONS(8087), 1, - sym__quoted_content_parenthesis, - ACTIONS(8865), 1, - anon_sym_RPAREN, - STATE(4776), 1, - aux_sym__quoted_parenthesis_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [211558] = 6, - ACTIONS(8091), 1, - sym_escape_sequence, - ACTIONS(8093), 1, - sym__quoted_content_double, - ACTIONS(8867), 1, - anon_sym_DQUOTE, - STATE(4778), 1, - aux_sym__quoted_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [211579] = 6, - ACTIONS(8097), 1, - sym_escape_sequence, - ACTIONS(8099), 1, - sym__quoted_content_single, - ACTIONS(8869), 1, - anon_sym_SQUOTE, - STATE(4780), 1, - aux_sym__quoted_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [211600] = 6, - ACTIONS(8103), 1, - sym_escape_sequence, - ACTIONS(8105), 1, - sym__quoted_content_heredoc_single, - ACTIONS(8871), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(4782), 1, - aux_sym__quoted_heredoc_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [211621] = 6, - ACTIONS(8109), 1, - sym_escape_sequence, - ACTIONS(8111), 1, - sym__quoted_content_heredoc_double, - ACTIONS(8873), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4790), 1, - aux_sym__quoted_heredoc_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [211642] = 6, - ACTIONS(8115), 1, - sym_escape_sequence, - ACTIONS(8117), 1, - sym__quoted_content_curly, - ACTIONS(8875), 1, - anon_sym_RBRACE, - STATE(4791), 1, - aux_sym__quoted_curly_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [211663] = 6, - ACTIONS(8135), 1, - sym_escape_sequence, - ACTIONS(8137), 1, - sym__quoted_content_slash, - ACTIONS(8877), 1, - anon_sym_SLASH, - STATE(4796), 1, - aux_sym__quoted_slash_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [211684] = 6, - ACTIONS(8123), 1, - sym_escape_sequence, - ACTIONS(8125), 1, - sym__quoted_content_angle, - ACTIONS(8879), 1, - anon_sym_GT, - STATE(4794), 1, - aux_sym__quoted_angle_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [211705] = 6, - ACTIONS(8129), 1, - sym_escape_sequence, - ACTIONS(8131), 1, - sym__quoted_content_bar, - ACTIONS(8881), 1, - anon_sym_PIPE, - STATE(4795), 1, - aux_sym__quoted_bar_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [211726] = 6, - ACTIONS(8135), 1, - sym_escape_sequence, - ACTIONS(8137), 1, - sym__quoted_content_slash, - ACTIONS(8883), 1, - anon_sym_SLASH, - STATE(4796), 1, - aux_sym__quoted_slash_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [211747] = 6, - ACTIONS(8129), 1, - sym_escape_sequence, - ACTIONS(8131), 1, - sym__quoted_content_bar, - ACTIONS(8885), 1, - anon_sym_PIPE, - STATE(4795), 1, - aux_sym__quoted_bar_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [211768] = 6, - ACTIONS(8129), 1, - sym_escape_sequence, - ACTIONS(8131), 1, - sym__quoted_content_bar, - ACTIONS(8887), 1, - anon_sym_PIPE, - STATE(4795), 1, - aux_sym__quoted_bar_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [211789] = 6, - ACTIONS(8123), 1, - sym_escape_sequence, - ACTIONS(8125), 1, - sym__quoted_content_angle, - ACTIONS(8889), 1, - anon_sym_GT, - STATE(4794), 1, - aux_sym__quoted_angle_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [211810] = 6, - ACTIONS(8123), 1, - sym_escape_sequence, - ACTIONS(8125), 1, - sym__quoted_content_angle, - ACTIONS(8891), 1, - anon_sym_GT, - STATE(4794), 1, - aux_sym__quoted_angle_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [211831] = 6, - ACTIONS(7914), 1, - sym_escape_sequence, - ACTIONS(7916), 1, - sym__quoted_content_square, - ACTIONS(8893), 1, - anon_sym_RBRACK, - STATE(4792), 1, - aux_sym__quoted_square_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [211852] = 6, - ACTIONS(8895), 1, - anon_sym_RBRACK, - ACTIONS(8897), 1, - sym_escape_sequence, - ACTIONS(8899), 1, - sym__quoted_content_square, - STATE(4505), 1, - aux_sym__quoted_square_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [211873] = 6, - ACTIONS(8115), 1, - sym_escape_sequence, - ACTIONS(8117), 1, - sym__quoted_content_curly, - ACTIONS(8901), 1, - anon_sym_RBRACE, - STATE(4791), 1, - aux_sym__quoted_curly_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [211894] = 6, - ACTIONS(8109), 1, - sym_escape_sequence, - ACTIONS(8111), 1, - sym__quoted_content_heredoc_double, - ACTIONS(8903), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4790), 1, - aux_sym__quoted_heredoc_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [211915] = 6, - ACTIONS(8103), 1, - sym_escape_sequence, - ACTIONS(8105), 1, - sym__quoted_content_heredoc_single, - ACTIONS(8905), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(4782), 1, - aux_sym__quoted_heredoc_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [211936] = 6, - ACTIONS(8097), 1, - sym_escape_sequence, - ACTIONS(8099), 1, - sym__quoted_content_single, - ACTIONS(8907), 1, - anon_sym_SQUOTE, - STATE(4780), 1, - aux_sym__quoted_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [211957] = 6, - ACTIONS(8085), 1, - sym_escape_sequence, - ACTIONS(8087), 1, - sym__quoted_content_parenthesis, - ACTIONS(8909), 1, - anon_sym_RPAREN, - STATE(4776), 1, - aux_sym__quoted_parenthesis_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [211978] = 6, - ACTIONS(7914), 1, - sym_escape_sequence, - ACTIONS(7916), 1, - sym__quoted_content_square, - ACTIONS(8911), 1, - anon_sym_RBRACK, - STATE(4792), 1, - aux_sym__quoted_square_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [211999] = 6, - ACTIONS(8115), 1, - sym_escape_sequence, - ACTIONS(8117), 1, - sym__quoted_content_curly, - ACTIONS(8913), 1, - anon_sym_RBRACE, - STATE(4791), 1, - aux_sym__quoted_curly_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [212020] = 6, - ACTIONS(8091), 1, - sym_escape_sequence, - ACTIONS(8093), 1, - sym__quoted_content_double, - ACTIONS(8915), 1, - anon_sym_DQUOTE, - STATE(4778), 1, - aux_sym__quoted_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [212041] = 6, - ACTIONS(8135), 1, - sym_escape_sequence, - ACTIONS(8137), 1, - sym__quoted_content_slash, - ACTIONS(8917), 1, - anon_sym_SLASH, - STATE(4796), 1, - aux_sym__quoted_slash_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [212062] = 6, - ACTIONS(8129), 1, - sym_escape_sequence, - ACTIONS(8131), 1, - sym__quoted_content_bar, - ACTIONS(8919), 1, - anon_sym_PIPE, - STATE(4795), 1, - aux_sym__quoted_bar_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [212083] = 6, - ACTIONS(8123), 1, - sym_escape_sequence, - ACTIONS(8125), 1, - sym__quoted_content_angle, - ACTIONS(8921), 1, - anon_sym_GT, - STATE(4794), 1, - aux_sym__quoted_angle_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [212104] = 6, - ACTIONS(7914), 1, - sym_escape_sequence, - ACTIONS(7916), 1, - sym__quoted_content_square, - ACTIONS(8923), 1, - anon_sym_RBRACK, - STATE(4792), 1, - aux_sym__quoted_square_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [212125] = 6, - ACTIONS(8115), 1, - sym_escape_sequence, - ACTIONS(8117), 1, - sym__quoted_content_curly, - ACTIONS(8925), 1, - anon_sym_RBRACE, - STATE(4791), 1, - aux_sym__quoted_curly_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [212146] = 6, - ACTIONS(8109), 1, - sym_escape_sequence, - ACTIONS(8111), 1, - sym__quoted_content_heredoc_double, - ACTIONS(8927), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4790), 1, - aux_sym__quoted_heredoc_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [212167] = 6, - ACTIONS(8929), 1, - anon_sym_RPAREN, - ACTIONS(8931), 1, - sym_escape_sequence, - ACTIONS(8933), 1, - sym__quoted_content_parenthesis, - STATE(4718), 1, - aux_sym__quoted_parenthesis_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [212188] = 6, - ACTIONS(8935), 1, - anon_sym_DQUOTE, - ACTIONS(8937), 1, - sym_escape_sequence, - ACTIONS(8939), 1, - sym__quoted_content_double, - STATE(4719), 1, - aux_sym__quoted_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [212209] = 6, - ACTIONS(8941), 1, - anon_sym_SQUOTE, - ACTIONS(8943), 1, - sym_escape_sequence, - ACTIONS(8945), 1, - sym__quoted_content_single, - STATE(4720), 1, - aux_sym__quoted_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [212230] = 6, - ACTIONS(8947), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(8949), 1, - sym_escape_sequence, - ACTIONS(8951), 1, - sym__quoted_content_heredoc_single, - STATE(4721), 1, - aux_sym__quoted_heredoc_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [212251] = 6, - ACTIONS(8953), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(8955), 1, - sym_escape_sequence, - ACTIONS(8957), 1, - sym__quoted_content_heredoc_double, - STATE(4722), 1, - aux_sym__quoted_heredoc_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [212272] = 6, - ACTIONS(8959), 1, - anon_sym_RBRACE, - ACTIONS(8961), 1, - sym_escape_sequence, - ACTIONS(8963), 1, - sym__quoted_content_curly, - STATE(4723), 1, - aux_sym__quoted_curly_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [212293] = 6, - ACTIONS(8965), 1, - anon_sym_RBRACK, - ACTIONS(8967), 1, - sym_escape_sequence, - ACTIONS(8969), 1, - sym__quoted_content_square, - STATE(4724), 1, - aux_sym__quoted_square_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [212314] = 6, - ACTIONS(8971), 1, - anon_sym_GT, - ACTIONS(8973), 1, - sym_escape_sequence, - ACTIONS(8975), 1, - sym__quoted_content_angle, - STATE(4725), 1, - aux_sym__quoted_angle_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [212335] = 6, - ACTIONS(8977), 1, - anon_sym_PIPE, - ACTIONS(8979), 1, - sym_escape_sequence, - ACTIONS(8981), 1, - sym__quoted_content_bar, - STATE(4726), 1, - aux_sym__quoted_bar_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [212356] = 6, - ACTIONS(8983), 1, - anon_sym_SLASH, - ACTIONS(8985), 1, - sym_escape_sequence, - ACTIONS(8987), 1, - sym__quoted_content_slash, - STATE(4727), 1, - aux_sym__quoted_slash_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [212377] = 6, - ACTIONS(8103), 1, - sym_escape_sequence, - ACTIONS(8105), 1, - sym__quoted_content_heredoc_single, - ACTIONS(8989), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(4782), 1, - aux_sym__quoted_heredoc_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [212398] = 6, - ACTIONS(8097), 1, - sym_escape_sequence, - ACTIONS(8099), 1, - sym__quoted_content_single, - ACTIONS(8991), 1, - anon_sym_SQUOTE, - STATE(4780), 1, - aux_sym__quoted_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [212419] = 6, - ACTIONS(8091), 1, - sym_escape_sequence, - ACTIONS(8093), 1, - sym__quoted_content_double, - ACTIONS(8993), 1, - anon_sym_DQUOTE, - STATE(4778), 1, - aux_sym__quoted_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [212440] = 6, - ACTIONS(8085), 1, - sym_escape_sequence, - ACTIONS(8087), 1, - sym__quoted_content_parenthesis, - ACTIONS(8995), 1, - anon_sym_RPAREN, - STATE(4776), 1, - aux_sym__quoted_parenthesis_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [212461] = 6, - ACTIONS(8109), 1, - sym_escape_sequence, - ACTIONS(8111), 1, - sym__quoted_content_heredoc_double, - ACTIONS(8997), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4790), 1, - aux_sym__quoted_heredoc_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [212482] = 6, - ACTIONS(8103), 1, - sym_escape_sequence, - ACTIONS(8105), 1, - sym__quoted_content_heredoc_single, - ACTIONS(8999), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(4782), 1, - aux_sym__quoted_heredoc_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [212503] = 6, - ACTIONS(8085), 1, - sym_escape_sequence, - ACTIONS(8087), 1, - sym__quoted_content_parenthesis, - ACTIONS(9001), 1, - anon_sym_RPAREN, - STATE(4776), 1, - aux_sym__quoted_parenthesis_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [212524] = 6, - ACTIONS(8091), 1, - sym_escape_sequence, - ACTIONS(8093), 1, - sym__quoted_content_double, - ACTIONS(9003), 1, - anon_sym_DQUOTE, - STATE(4778), 1, - aux_sym__quoted_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [212545] = 6, - ACTIONS(8097), 1, - sym_escape_sequence, - ACTIONS(8099), 1, - sym__quoted_content_single, - ACTIONS(9005), 1, - anon_sym_SQUOTE, - STATE(4780), 1, - aux_sym__quoted_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [212566] = 6, - ACTIONS(8103), 1, - sym_escape_sequence, - ACTIONS(8105), 1, - sym__quoted_content_heredoc_single, - ACTIONS(9007), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(4782), 1, - aux_sym__quoted_heredoc_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [212587] = 6, - ACTIONS(8109), 1, - sym_escape_sequence, - ACTIONS(8111), 1, - sym__quoted_content_heredoc_double, - ACTIONS(9009), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4790), 1, - aux_sym__quoted_heredoc_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [212608] = 6, - ACTIONS(8115), 1, - sym_escape_sequence, - ACTIONS(8117), 1, - sym__quoted_content_curly, - ACTIONS(9011), 1, - anon_sym_RBRACE, - STATE(4791), 1, - aux_sym__quoted_curly_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [212629] = 6, - ACTIONS(7914), 1, - sym_escape_sequence, - ACTIONS(7916), 1, - sym__quoted_content_square, - ACTIONS(9013), 1, - anon_sym_RBRACK, - STATE(4792), 1, - aux_sym__quoted_square_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [212650] = 6, - ACTIONS(8123), 1, - sym_escape_sequence, - ACTIONS(8125), 1, - sym__quoted_content_angle, - ACTIONS(9015), 1, - anon_sym_GT, - STATE(4794), 1, - aux_sym__quoted_angle_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [212671] = 6, - ACTIONS(8129), 1, - sym_escape_sequence, - ACTIONS(8131), 1, - sym__quoted_content_bar, - ACTIONS(9017), 1, - anon_sym_PIPE, - STATE(4795), 1, - aux_sym__quoted_bar_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [212692] = 6, - ACTIONS(8135), 1, - sym_escape_sequence, - ACTIONS(8137), 1, - sym__quoted_content_slash, - ACTIONS(9019), 1, - anon_sym_SLASH, - STATE(4796), 1, - aux_sym__quoted_slash_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [212713] = 6, - ACTIONS(8085), 1, - sym_escape_sequence, - ACTIONS(8087), 1, - sym__quoted_content_parenthesis, - ACTIONS(9021), 1, - anon_sym_RPAREN, - STATE(4776), 1, - aux_sym__quoted_parenthesis_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [212734] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(952), 1, - anon_sym_DQUOTE, - ACTIONS(954), 1, - anon_sym_SQUOTE, - STATE(1682), 2, - sym__quoted_i_double, - sym__quoted_i_single, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [212753] = 6, - ACTIONS(8115), 1, - sym_escape_sequence, - ACTIONS(8117), 1, - sym__quoted_content_curly, - ACTIONS(9023), 1, - anon_sym_RBRACE, - STATE(4791), 1, - aux_sym__quoted_curly_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [212774] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(838), 1, - anon_sym_DQUOTE, - ACTIONS(840), 1, - anon_sym_SQUOTE, - STATE(3387), 2, - sym__quoted_i_double, - sym__quoted_i_single, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [212793] = 6, - ACTIONS(8097), 1, - sym_escape_sequence, - ACTIONS(8099), 1, - sym__quoted_content_single, - ACTIONS(9025), 1, - anon_sym_SQUOTE, - STATE(4780), 1, - aux_sym__quoted_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [212814] = 6, - ACTIONS(9027), 1, - anon_sym_SLASH, - ACTIONS(9029), 1, - sym_escape_sequence, - ACTIONS(9031), 1, - sym__quoted_content_slash, - STATE(4515), 1, - aux_sym__quoted_slash_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [212835] = 6, - ACTIONS(8091), 1, - sym_escape_sequence, - ACTIONS(8093), 1, - sym__quoted_content_double, - ACTIONS(9033), 1, - anon_sym_DQUOTE, - STATE(4778), 1, - aux_sym__quoted_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [212856] = 6, - ACTIONS(8085), 1, - sym_escape_sequence, - ACTIONS(8087), 1, - sym__quoted_content_parenthesis, - ACTIONS(9035), 1, - anon_sym_RPAREN, - STATE(4776), 1, - aux_sym__quoted_parenthesis_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [212877] = 6, - ACTIONS(8109), 1, - sym_escape_sequence, - ACTIONS(8111), 1, - sym__quoted_content_heredoc_double, - ACTIONS(9037), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4790), 1, - aux_sym__quoted_heredoc_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [212898] = 6, - ACTIONS(9039), 1, - anon_sym_SLASH, - ACTIONS(9041), 1, - sym_escape_sequence, - ACTIONS(9043), 1, - sym__quoted_content_slash, - STATE(4696), 1, - aux_sym__quoted_slash_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [212919] = 6, - ACTIONS(9045), 1, - anon_sym_PIPE, - ACTIONS(9047), 1, - sym_escape_sequence, - ACTIONS(9049), 1, - sym__quoted_content_bar, - STATE(4697), 1, - aux_sym__quoted_bar_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [212940] = 6, - ACTIONS(9051), 1, - anon_sym_GT, - ACTIONS(9053), 1, - sym_escape_sequence, - ACTIONS(9055), 1, - sym__quoted_content_angle, - STATE(4698), 1, - aux_sym__quoted_angle_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [212961] = 6, - ACTIONS(9057), 1, - anon_sym_PIPE, - ACTIONS(9059), 1, - sym_escape_sequence, - ACTIONS(9061), 1, - sym__quoted_content_bar, - STATE(4514), 1, - aux_sym__quoted_bar_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [212982] = 6, - ACTIONS(8085), 1, - sym_escape_sequence, - ACTIONS(8087), 1, - sym__quoted_content_parenthesis, - ACTIONS(9063), 1, - anon_sym_RPAREN, - STATE(4776), 1, - aux_sym__quoted_parenthesis_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [213003] = 6, - ACTIONS(9065), 1, - anon_sym_RBRACK, - ACTIONS(9067), 1, - sym_escape_sequence, - ACTIONS(9069), 1, - sym__quoted_content_square, - STATE(4699), 1, - aux_sym__quoted_square_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [213024] = 6, - ACTIONS(9071), 1, - anon_sym_RBRACE, - ACTIONS(9073), 1, - sym_escape_sequence, - ACTIONS(9075), 1, - sym__quoted_content_curly, - STATE(4700), 1, - aux_sym__quoted_curly_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [213045] = 6, - ACTIONS(9077), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(9079), 1, - sym_escape_sequence, - ACTIONS(9081), 1, - sym__quoted_content_heredoc_double, - STATE(4701), 1, - aux_sym__quoted_heredoc_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [213066] = 4, - ACTIONS(8024), 1, + ACTIONS(7814), 1, sym__quoted_content_i_heredoc_single, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -343377,48 +374138,4298 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(8022), 3, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(4796), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [242612] = 7, + ACTIONS(6144), 1, anon_sym_POUND_LBRACE, - sym_escape_sequence, - [213083] = 6, - ACTIONS(9083), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(9085), 1, - sym_escape_sequence, - ACTIONS(9087), 1, - sym__quoted_content_heredoc_single, - STATE(4712), 1, - aux_sym__quoted_heredoc_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [213104] = 6, - ACTIONS(9089), 1, + ACTIONS(7816), 1, anon_sym_SQUOTE, - ACTIONS(9091), 1, + ACTIONS(7818), 1, sym_escape_sequence, - ACTIONS(9093), 1, - sym__quoted_content_single, - STATE(4713), 1, - aux_sym__quoted_single_repeat1, + ACTIONS(7820), 1, + sym__quoted_content_i_single, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [213125] = 6, - ACTIONS(9095), 1, - anon_sym_RPAREN, - ACTIONS(9097), 1, + STATE(4797), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [242637] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7822), 1, + anon_sym_DQUOTE, + ACTIONS(7824), 1, sym_escape_sequence, - ACTIONS(9099), 1, + ACTIONS(7826), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4800), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [242662] = 7, + ACTIONS(6202), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6314), 1, + sym_escape_sequence, + ACTIONS(6316), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(7828), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4585), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [242687] = 7, + ACTIONS(6120), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6122), 1, + sym_escape_sequence, + ACTIONS(6124), 1, + sym__quoted_content_i_slash, + ACTIONS(7830), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4548), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [242712] = 7, + ACTIONS(6178), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6364), 1, + sym_escape_sequence, + ACTIONS(6366), 1, + sym__quoted_content_i_bar, + ACTIONS(7832), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4549), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [242737] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7834), 1, + anon_sym_DQUOTE, + ACTIONS(7836), 1, + sym_escape_sequence, + ACTIONS(7838), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4820), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [242762] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7840), 1, + anon_sym_SQUOTE, + ACTIONS(7842), 1, + sym_escape_sequence, + ACTIONS(7844), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4821), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [242787] = 7, + ACTIONS(6152), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7846), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(7848), 1, + sym_escape_sequence, + ACTIONS(7850), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4822), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [242812] = 7, + ACTIONS(6128), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7852), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(7854), 1, + sym_escape_sequence, + ACTIONS(7856), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4823), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [242837] = 7, + ACTIONS(6186), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6358), 1, + sym_escape_sequence, + ACTIONS(6360), 1, + sym__quoted_content_i_angle, + ACTIONS(7858), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4552), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [242862] = 7, + ACTIONS(6120), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6122), 1, + sym_escape_sequence, + ACTIONS(6124), 1, + sym__quoted_content_i_slash, + ACTIONS(7860), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4548), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [242887] = 7, + ACTIONS(6178), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6364), 1, + sym_escape_sequence, + ACTIONS(6366), 1, + sym__quoted_content_i_bar, + ACTIONS(7862), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4549), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [242912] = 7, + ACTIONS(6194), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6352), 1, + sym_escape_sequence, + ACTIONS(6354), 1, + sym__quoted_content_i_square, + ACTIONS(7864), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4561), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [242937] = 7, + ACTIONS(6186), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6358), 1, + sym_escape_sequence, + ACTIONS(6360), 1, + sym__quoted_content_i_angle, + ACTIONS(7866), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4552), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [242962] = 7, + ACTIONS(6194), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6352), 1, + sym_escape_sequence, + ACTIONS(6354), 1, + sym__quoted_content_i_square, + ACTIONS(7868), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4561), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [242987] = 7, + ACTIONS(6112), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6342), 1, + sym_escape_sequence, + ACTIONS(6344), 1, + sym__quoted_content_i_curly, + ACTIONS(7870), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4582), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [243012] = 7, + ACTIONS(6202), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7872), 1, + anon_sym_RPAREN, + ACTIONS(7874), 1, + sym_escape_sequence, + ACTIONS(7876), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4866), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [243037] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6276), 1, + sym_escape_sequence, + ACTIONS(6278), 1, + sym__quoted_content_i_double, + ACTIONS(7878), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4507), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [243062] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6282), 1, + sym_escape_sequence, + ACTIONS(6284), 1, + sym__quoted_content_i_single, + ACTIONS(7880), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4481), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [243087] = 7, + ACTIONS(6152), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6288), 1, + sym_escape_sequence, + ACTIONS(6290), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(7882), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4482), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [243112] = 7, + ACTIONS(6128), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6130), 1, + sym_escape_sequence, + ACTIONS(6132), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(7884), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4483), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [243137] = 7, + ACTIONS(6112), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6342), 1, + sym_escape_sequence, + ACTIONS(6344), 1, + sym__quoted_content_i_curly, + ACTIONS(7886), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4582), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [243162] = 7, + ACTIONS(6202), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6314), 1, + sym_escape_sequence, + ACTIONS(6316), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(7888), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4585), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [243187] = 7, + ACTIONS(6120), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7890), 1, + anon_sym_SLASH, + ACTIONS(7892), 1, + sym_escape_sequence, + ACTIONS(7894), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4806), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [243212] = 7, + ACTIONS(6178), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7896), 1, + anon_sym_PIPE, + ACTIONS(7898), 1, + sym_escape_sequence, + ACTIONS(7900), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4807), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [243237] = 7, + ACTIONS(6186), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7902), 1, + anon_sym_GT, + ACTIONS(7904), 1, + sym_escape_sequence, + ACTIONS(7906), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4812), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [243262] = 7, + ACTIONS(6202), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6314), 1, + sym_escape_sequence, + ACTIONS(6316), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(7908), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4585), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [243287] = 7, + ACTIONS(6194), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7910), 1, + anon_sym_RBRACK, + ACTIONS(7912), 1, + sym_escape_sequence, + ACTIONS(7914), 1, + sym__quoted_content_i_square, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4893), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [243312] = 7, + ACTIONS(6194), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7916), 1, + anon_sym_RBRACK, + ACTIONS(7918), 1, + sym_escape_sequence, + ACTIONS(7920), 1, + sym__quoted_content_i_square, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4815), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [243337] = 7, + ACTIONS(6128), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6130), 1, + sym_escape_sequence, + ACTIONS(6132), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(7922), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4483), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [243362] = 7, + ACTIONS(6112), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7924), 1, + anon_sym_RBRACE, + ACTIONS(7926), 1, + sym_escape_sequence, + ACTIONS(7928), 1, + sym__quoted_content_i_curly, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4824), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [243387] = 7, + ACTIONS(6202), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7930), 1, + anon_sym_RPAREN, + ACTIONS(7932), 1, + sym_escape_sequence, + ACTIONS(7934), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4825), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [243412] = 7, + ACTIONS(6128), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6130), 1, + sym_escape_sequence, + ACTIONS(6132), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(7936), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4483), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [243437] = 7, + ACTIONS(6152), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6288), 1, + sym_escape_sequence, + ACTIONS(6290), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(7938), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4482), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [243462] = 7, + ACTIONS(6120), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7940), 1, + anon_sym_SLASH, + ACTIONS(7942), 1, + sym_escape_sequence, + ACTIONS(7944), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4410), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [243487] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6282), 1, + sym_escape_sequence, + ACTIONS(6284), 1, + sym__quoted_content_i_single, + ACTIONS(7946), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4481), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [243512] = 7, + ACTIONS(6178), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7948), 1, + anon_sym_PIPE, + ACTIONS(7950), 1, + sym_escape_sequence, + ACTIONS(7952), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4728), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [243537] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6276), 1, + sym_escape_sequence, + ACTIONS(6278), 1, + sym__quoted_content_i_double, + ACTIONS(7954), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4507), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [243562] = 7, + ACTIONS(6186), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7956), 1, + anon_sym_GT, + ACTIONS(7958), 1, + sym_escape_sequence, + ACTIONS(7960), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4736), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [243587] = 7, + ACTIONS(6202), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7962), 1, + anon_sym_RPAREN, + ACTIONS(7964), 1, + sym_escape_sequence, + ACTIONS(7966), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4873), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [243612] = 7, + ACTIONS(6112), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7968), 1, + anon_sym_RBRACE, + ACTIONS(7970), 1, + sym_escape_sequence, + ACTIONS(7972), 1, + sym__quoted_content_i_curly, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4874), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [243637] = 7, + ACTIONS(6194), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7974), 1, + anon_sym_RBRACK, + ACTIONS(7976), 1, + sym_escape_sequence, + ACTIONS(7978), 1, + sym__quoted_content_i_square, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4875), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [243662] = 7, + ACTIONS(6186), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7980), 1, + anon_sym_GT, + ACTIONS(7982), 1, + sym_escape_sequence, + ACTIONS(7984), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4876), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [243687] = 7, + ACTIONS(6178), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7986), 1, + anon_sym_PIPE, + ACTIONS(7988), 1, + sym_escape_sequence, + ACTIONS(7990), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4877), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [243712] = 7, + ACTIONS(6120), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7992), 1, + anon_sym_SLASH, + ACTIONS(7994), 1, + sym_escape_sequence, + ACTIONS(7996), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4878), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [243737] = 7, + ACTIONS(6152), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6288), 1, + sym_escape_sequence, + ACTIONS(6290), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(7998), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4482), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [243762] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6282), 1, + sym_escape_sequence, + ACTIONS(6284), 1, + sym__quoted_content_i_single, + ACTIONS(8000), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4481), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [243787] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6276), 1, + sym_escape_sequence, + ACTIONS(6278), 1, + sym__quoted_content_i_double, + ACTIONS(8002), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4507), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [243812] = 7, + ACTIONS(6128), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8004), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8006), 1, + sym_escape_sequence, + ACTIONS(8008), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4835), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [243837] = 7, + ACTIONS(6152), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8010), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8012), 1, + sym_escape_sequence, + ACTIONS(8014), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4848), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [243862] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8016), 1, + anon_sym_SQUOTE, + ACTIONS(8018), 1, + sym_escape_sequence, + ACTIONS(8020), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4849), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [243887] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8022), 1, + anon_sym_DQUOTE, + ACTIONS(8024), 1, + sym_escape_sequence, + ACTIONS(8026), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4850), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [243912] = 7, + ACTIONS(6120), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6122), 1, + sym_escape_sequence, + ACTIONS(6124), 1, + sym__quoted_content_i_slash, + ACTIONS(8028), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4548), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [243937] = 7, + ACTIONS(6178), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6364), 1, + sym_escape_sequence, + ACTIONS(6366), 1, + sym__quoted_content_i_bar, + ACTIONS(8030), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4549), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [243962] = 7, + ACTIONS(6186), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6358), 1, + sym_escape_sequence, + ACTIONS(6360), 1, + sym__quoted_content_i_angle, + ACTIONS(8032), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4552), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [243987] = 7, + ACTIONS(6194), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6352), 1, + sym_escape_sequence, + ACTIONS(6354), 1, + sym__quoted_content_i_square, + ACTIONS(8034), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4561), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [244012] = 7, + ACTIONS(6194), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8036), 1, + anon_sym_RBRACK, + ACTIONS(8038), 1, + sym_escape_sequence, + ACTIONS(8040), 1, + sym__quoted_content_i_square, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4738), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [244037] = 7, + ACTIONS(6112), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8042), 1, + anon_sym_RBRACE, + ACTIONS(8044), 1, + sym_escape_sequence, + ACTIONS(8046), 1, + sym__quoted_content_i_curly, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4760), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [244062] = 7, + ACTIONS(6186), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8048), 1, + anon_sym_GT, + ACTIONS(8050), 1, + sym_escape_sequence, + ACTIONS(8052), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4900), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [244087] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8054), 1, + anon_sym_SQUOTE, + ACTIONS(8056), 1, + sym_escape_sequence, + ACTIONS(8058), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4902), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [244112] = 7, + ACTIONS(6202), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8060), 1, + anon_sym_RPAREN, + ACTIONS(8062), 1, + sym_escape_sequence, + ACTIONS(8064), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4763), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [244137] = 7, + ACTIONS(6178), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8066), 1, + anon_sym_PIPE, + ACTIONS(8068), 1, + sym_escape_sequence, + ACTIONS(8070), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4899), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [244162] = 7, + ACTIONS(6120), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8072), 1, + anon_sym_SLASH, + ACTIONS(8074), 1, + sym_escape_sequence, + ACTIONS(8076), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4897), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [244187] = 7, + ACTIONS(6202), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6314), 1, + sym_escape_sequence, + ACTIONS(6316), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(8078), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4585), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [244212] = 7, + ACTIONS(6152), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8080), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8082), 1, + sym_escape_sequence, + ACTIONS(8084), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4901), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [244237] = 7, + ACTIONS(6128), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8086), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8088), 1, + sym_escape_sequence, + ACTIONS(8090), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4832), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [244262] = 7, + ACTIONS(6112), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6342), 1, + sym_escape_sequence, + ACTIONS(6344), 1, + sym__quoted_content_i_curly, + ACTIONS(8092), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4582), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [244287] = 7, + ACTIONS(6202), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6314), 1, + sym_escape_sequence, + ACTIONS(6316), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(8094), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4585), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [244312] = 7, + ACTIONS(6152), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8096), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8098), 1, + sym_escape_sequence, + ACTIONS(8100), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4836), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [244337] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8102), 1, + anon_sym_SQUOTE, + ACTIONS(8104), 1, + sym_escape_sequence, + ACTIONS(8106), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4838), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [244362] = 7, + ACTIONS(6202), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6314), 1, + sym_escape_sequence, + ACTIONS(6316), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(8108), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4585), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [244387] = 7, + ACTIONS(6112), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6342), 1, + sym_escape_sequence, + ACTIONS(6344), 1, + sym__quoted_content_i_curly, + ACTIONS(8110), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4582), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [244412] = 7, + ACTIONS(6194), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6352), 1, + sym_escape_sequence, + ACTIONS(6354), 1, + sym__quoted_content_i_square, + ACTIONS(8112), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4561), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [244437] = 7, + ACTIONS(6186), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6358), 1, + sym_escape_sequence, + ACTIONS(6360), 1, + sym__quoted_content_i_angle, + ACTIONS(8114), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4552), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [244462] = 7, + ACTIONS(6178), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6364), 1, + sym_escape_sequence, + ACTIONS(6366), 1, + sym__quoted_content_i_bar, + ACTIONS(8116), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4549), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [244487] = 7, + ACTIONS(6120), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6122), 1, + sym_escape_sequence, + ACTIONS(6124), 1, + sym__quoted_content_i_slash, + ACTIONS(8118), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4548), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [244512] = 7, + ACTIONS(6120), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8120), 1, + anon_sym_SLASH, + ACTIONS(8122), 1, + sym_escape_sequence, + ACTIONS(8124), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4855), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [244537] = 7, + ACTIONS(6178), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8126), 1, + anon_sym_PIPE, + ACTIONS(8128), 1, + sym_escape_sequence, + ACTIONS(8130), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4856), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [244562] = 7, + ACTIONS(6186), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8132), 1, + anon_sym_GT, + ACTIONS(8134), 1, + sym_escape_sequence, + ACTIONS(8136), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4857), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [244587] = 7, + ACTIONS(6194), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8138), 1, + anon_sym_RBRACK, + ACTIONS(8140), 1, + sym_escape_sequence, + ACTIONS(8142), 1, + sym__quoted_content_i_square, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4858), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [244612] = 7, + ACTIONS(6112), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8144), 1, + anon_sym_RBRACE, + ACTIONS(8146), 1, + sym_escape_sequence, + ACTIONS(8148), 1, + sym__quoted_content_i_curly, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4869), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [244637] = 7, + ACTIONS(6202), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8150), 1, + anon_sym_RPAREN, + ACTIONS(8152), 1, + sym_escape_sequence, + ACTIONS(8154), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4870), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [244662] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8156), 1, + anon_sym_DQUOTE, + ACTIONS(8158), 1, + sym_escape_sequence, + ACTIONS(8160), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4840), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [244687] = 7, + ACTIONS(6112), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6342), 1, + sym_escape_sequence, + ACTIONS(6344), 1, + sym__quoted_content_i_curly, + ACTIONS(8162), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4582), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [244712] = 7, + ACTIONS(6128), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6130), 1, + sym_escape_sequence, + ACTIONS(6132), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(8164), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4483), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [244737] = 7, + ACTIONS(6152), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6288), 1, + sym_escape_sequence, + ACTIONS(6290), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(8166), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4482), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [244762] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6282), 1, + sym_escape_sequence, + ACTIONS(6284), 1, + sym__quoted_content_i_single, + ACTIONS(8168), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4481), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [244787] = 7, + ACTIONS(6128), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8170), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8172), 1, + sym_escape_sequence, + ACTIONS(8174), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4788), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [244812] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6276), 1, + sym_escape_sequence, + ACTIONS(6278), 1, + sym__quoted_content_i_double, + ACTIONS(8176), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4507), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [244837] = 7, + ACTIONS(6128), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8178), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8180), 1, + sym_escape_sequence, + ACTIONS(8182), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4887), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [244862] = 7, + ACTIONS(6194), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6352), 1, + sym_escape_sequence, + ACTIONS(6354), 1, + sym__quoted_content_i_square, + ACTIONS(8184), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4561), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [244887] = 7, + ACTIONS(6152), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8186), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8188), 1, + sym_escape_sequence, + ACTIONS(8190), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4888), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [244912] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8192), 1, + anon_sym_SQUOTE, + ACTIONS(8194), 1, + sym_escape_sequence, + ACTIONS(8196), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4889), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [244937] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8198), 1, + anon_sym_DQUOTE, + ACTIONS(8200), 1, + sym_escape_sequence, + ACTIONS(8202), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4891), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [244962] = 7, + ACTIONS(6120), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6122), 1, + sym_escape_sequence, + ACTIONS(6124), 1, + sym__quoted_content_i_slash, + ACTIONS(8204), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4548), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [244987] = 7, + ACTIONS(6136), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6276), 1, + sym_escape_sequence, + ACTIONS(6278), 1, + sym__quoted_content_i_double, + ACTIONS(8206), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4507), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [245012] = 7, + ACTIONS(6178), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6364), 1, + sym_escape_sequence, + ACTIONS(6366), 1, + sym__quoted_content_i_bar, + ACTIONS(8208), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4549), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [245037] = 7, + ACTIONS(6186), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6358), 1, + sym_escape_sequence, + ACTIONS(6360), 1, + sym__quoted_content_i_angle, + ACTIONS(8210), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4552), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [245062] = 7, + ACTIONS(6152), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6288), 1, + sym_escape_sequence, + ACTIONS(6290), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(8212), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4482), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [245087] = 7, + ACTIONS(6144), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6282), 1, + sym_escape_sequence, + ACTIONS(6284), 1, + sym__quoted_content_i_single, + ACTIONS(8214), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4481), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [245112] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(8216), 1, + anon_sym_SEMI, + ACTIONS(8218), 1, + anon_sym_end, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(5001), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [245138] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1539), 1, + anon_sym_RPAREN, + ACTIONS(8220), 1, + anon_sym_SEMI, + STATE(359), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4972), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [245164] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(938), 1, + anon_sym_RPAREN, + ACTIONS(8222), 1, + anon_sym_SEMI, + STATE(135), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4918), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [245190] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(8216), 1, + anon_sym_SEMI, + ACTIONS(8224), 1, + anon_sym_end, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4930), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [245216] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1665), 1, + anon_sym_RPAREN, + ACTIONS(8222), 1, + anon_sym_SEMI, + STATE(135), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4919), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [245242] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1735), 1, + anon_sym_RPAREN, + ACTIONS(8222), 1, + anon_sym_SEMI, + STATE(135), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4919), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [245268] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4345), 1, + anon_sym_end, + ACTIONS(5946), 1, + aux_sym__terminator_token1, + ACTIONS(8226), 1, + anon_sym_SEMI, + STATE(884), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4909), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [245294] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1665), 1, + anon_sym_RPAREN, + ACTIONS(8229), 1, + anon_sym_SEMI, + STATE(432), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4972), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [245320] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(8216), 1, + anon_sym_SEMI, + ACTIONS(8231), 1, + anon_sym_end, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4955), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [245346] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(8216), 1, + anon_sym_SEMI, + ACTIONS(8233), 1, + anon_sym_end, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4955), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [245372] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1651), 1, + anon_sym_RPAREN, + ACTIONS(8235), 1, + anon_sym_SEMI, + STATE(394), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4972), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [245398] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8237), 1, + anon_sym_COMMA, + STATE(4914), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3136), 3, + anon_sym_RPAREN, + anon_sym_when, + anon_sym_DASH_GT, + [245418] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1577), 1, + anon_sym_RPAREN, + ACTIONS(8222), 1, + anon_sym_SEMI, + STATE(135), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4936), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [245444] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1323), 1, + anon_sym_RPAREN, + ACTIONS(4597), 1, + aux_sym__terminator_token1, + ACTIONS(4600), 1, + anon_sym_SEMI, + STATE(347), 1, + sym__terminator, + STATE(1033), 1, + aux_sym__terminator_repeat1, + STATE(5005), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [245470] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1577), 1, + anon_sym_RPAREN, + ACTIONS(3949), 1, + anon_sym_SEMI, + STATE(371), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4972), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [245496] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1577), 1, + anon_sym_RPAREN, + ACTIONS(8222), 1, + anon_sym_SEMI, + STATE(135), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4919), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [245522] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5960), 1, + aux_sym__terminator_token1, + ACTIONS(5966), 1, + anon_sym_RPAREN, + ACTIONS(8240), 1, + anon_sym_SEMI, + STATE(135), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4919), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [245548] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(8216), 1, + anon_sym_SEMI, + ACTIONS(8243), 1, + anon_sym_end, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4955), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [245574] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(8216), 1, + anon_sym_SEMI, + ACTIONS(8243), 1, + anon_sym_end, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4973), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [245600] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(910), 1, + anon_sym_RPAREN, + ACTIONS(8222), 1, + anon_sym_SEMI, + STATE(135), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4943), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [245626] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1639), 1, + anon_sym_RPAREN, + ACTIONS(8222), 1, + anon_sym_SEMI, + STATE(135), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4919), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [245652] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1639), 1, + anon_sym_RPAREN, + ACTIONS(3829), 1, + anon_sym_SEMI, + STATE(391), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4972), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [245678] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1639), 1, + anon_sym_RPAREN, + ACTIONS(8222), 1, + anon_sym_SEMI, + STATE(135), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4971), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [245704] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8245), 1, + anon_sym_COMMA, + STATE(4926), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3459), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + [245724] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(8216), 1, + anon_sym_SEMI, + ACTIONS(8248), 1, + anon_sym_end, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4920), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [245750] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(918), 1, + anon_sym_RPAREN, + ACTIONS(8222), 1, + anon_sym_SEMI, + STATE(135), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4923), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [245776] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(8216), 1, + anon_sym_SEMI, + ACTIONS(8250), 1, + anon_sym_end, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4949), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [245802] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(8216), 1, + anon_sym_SEMI, + ACTIONS(8250), 1, + anon_sym_end, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4955), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [245828] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(8216), 1, + anon_sym_SEMI, + ACTIONS(8252), 1, + anon_sym_end, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4955), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [245854] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(8216), 1, + anon_sym_SEMI, + ACTIONS(8254), 1, + anon_sym_end, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4955), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [245880] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(8216), 1, + anon_sym_SEMI, + ACTIONS(8256), 1, + anon_sym_end, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4964), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [245906] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1541), 1, + anon_sym_RPAREN, + ACTIONS(8222), 1, + anon_sym_SEMI, + STATE(135), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4919), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [245932] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1541), 1, + anon_sym_RPAREN, + ACTIONS(8258), 1, + anon_sym_SEMI, + STATE(396), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4972), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [245958] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1603), 1, + anon_sym_RPAREN, + ACTIONS(8222), 1, + anon_sym_SEMI, + STATE(135), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4919), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [245984] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(8216), 1, + anon_sym_SEMI, + ACTIONS(8260), 1, + anon_sym_end, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4955), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [246010] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_end, + ACTIONS(8262), 1, + aux_sym__terminator_token1, + ACTIONS(8265), 1, + anon_sym_SEMI, + STATE(349), 1, + sym__terminator, + STATE(1034), 1, + aux_sym__terminator_repeat1, + STATE(4909), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [246036] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1713), 1, + anon_sym_RPAREN, + ACTIONS(8222), 1, + anon_sym_SEMI, + STATE(135), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4908), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [246062] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(8216), 1, + anon_sym_SEMI, + ACTIONS(8260), 1, + anon_sym_end, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4931), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [246088] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1713), 1, + anon_sym_RPAREN, + ACTIONS(3823), 1, + anon_sym_SEMI, + STATE(424), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4972), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [246114] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1565), 1, + anon_sym_RPAREN, + ACTIONS(8222), 1, + anon_sym_SEMI, + STATE(135), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4919), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [246140] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1713), 1, + anon_sym_RPAREN, + ACTIONS(8222), 1, + anon_sym_SEMI, + STATE(135), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4919), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [246166] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1565), 1, + anon_sym_RPAREN, + ACTIONS(3835), 1, + anon_sym_SEMI, + STATE(354), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4972), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [246192] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1565), 1, + anon_sym_RPAREN, + ACTIONS(8222), 1, + anon_sym_SEMI, + STATE(135), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4934), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [246218] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(8216), 1, + anon_sym_SEMI, + ACTIONS(8268), 1, + anon_sym_end, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4937), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [246244] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1737), 1, + anon_sym_RPAREN, + ACTIONS(8222), 1, + anon_sym_SEMI, + STATE(135), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4919), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [246270] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(898), 1, + anon_sym_RPAREN, + ACTIONS(8222), 1, + anon_sym_SEMI, + STATE(135), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4942), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [246296] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(8216), 1, + anon_sym_SEMI, + ACTIONS(8270), 1, + anon_sym_end, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4955), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [246322] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(902), 1, + anon_sym_RPAREN, + ACTIONS(8222), 1, + anon_sym_SEMI, + STATE(135), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4987), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [246348] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(8216), 1, + anon_sym_SEMI, + ACTIONS(8272), 1, + anon_sym_end, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4955), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [246374] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(8216), 1, + anon_sym_SEMI, + ACTIONS(8274), 1, + anon_sym_end, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4955), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [246400] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1641), 1, + anon_sym_RPAREN, + ACTIONS(8222), 1, + anon_sym_SEMI, + STATE(135), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4919), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [246426] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1641), 1, + anon_sym_RPAREN, + ACTIONS(8276), 1, + anon_sym_SEMI, + STATE(382), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4972), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [246452] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8278), 1, + aux_sym__terminator_token1, + ACTIONS(8281), 1, + anon_sym_SEMI, + ACTIONS(8284), 1, + anon_sym_end, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4955), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [246478] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(8216), 1, + anon_sym_SEMI, + ACTIONS(8286), 1, + anon_sym_end, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4974), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [246504] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1603), 1, + anon_sym_RPAREN, + ACTIONS(8288), 1, + anon_sym_SEMI, + STATE(374), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4972), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [246530] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1643), 1, + anon_sym_RPAREN, + ACTIONS(3943), 1, + anon_sym_SEMI, + STATE(427), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4972), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [246556] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(8216), 1, + anon_sym_SEMI, + ACTIONS(8290), 1, + anon_sym_end, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4955), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [246582] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(8216), 1, + anon_sym_SEMI, + ACTIONS(8290), 1, + anon_sym_end, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4952), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [246608] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1643), 1, + anon_sym_RPAREN, + ACTIONS(8222), 1, + anon_sym_SEMI, + STATE(135), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4984), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [246634] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1675), 1, + anon_sym_RPAREN, + ACTIONS(8222), 1, + anon_sym_SEMI, + STATE(135), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4919), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [246660] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(8216), 1, + anon_sym_SEMI, + ACTIONS(8292), 1, + anon_sym_end, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4991), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [246686] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(8216), 1, + anon_sym_SEMI, + ACTIONS(8292), 1, + anon_sym_end, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4955), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [246712] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1675), 1, + anon_sym_RPAREN, + ACTIONS(3837), 1, + anon_sym_SEMI, + STATE(386), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4972), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [246738] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1675), 1, + anon_sym_RPAREN, + ACTIONS(8222), 1, + anon_sym_SEMI, + STATE(135), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4953), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [246764] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(8216), 1, + anon_sym_SEMI, + ACTIONS(8294), 1, + anon_sym_end, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4955), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [246790] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(914), 1, + anon_sym_RPAREN, + ACTIONS(8222), 1, + anon_sym_SEMI, + STATE(135), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4995), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [246816] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(8216), 1, + anon_sym_SEMI, + ACTIONS(8296), 1, + anon_sym_end, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4959), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [246842] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(926), 1, + anon_sym_RPAREN, + ACTIONS(8222), 1, + anon_sym_SEMI, + STATE(135), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4962), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [246868] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1651), 1, + anon_sym_RPAREN, + ACTIONS(8222), 1, + anon_sym_SEMI, + STATE(135), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4919), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [246894] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4393), 1, + anon_sym_RPAREN, + ACTIONS(5974), 1, + aux_sym__terminator_token1, + ACTIONS(8298), 1, + anon_sym_SEMI, + STATE(469), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4972), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [246920] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(8216), 1, + anon_sym_SEMI, + ACTIONS(8301), 1, + anon_sym_end, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4955), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [246946] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(8216), 1, + anon_sym_SEMI, + ACTIONS(8218), 1, + anon_sym_end, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4955), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [246972] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_RPAREN, + ACTIONS(8303), 1, + aux_sym__terminator_token1, + ACTIONS(8306), 1, + anon_sym_SEMI, + STATE(345), 1, + sym__terminator, + STATE(1033), 1, + aux_sym__terminator_repeat1, + STATE(5005), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [246998] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(8216), 1, + anon_sym_SEMI, + ACTIONS(8309), 1, + anon_sym_end, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4955), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [247024] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1753), 1, + anon_sym_RPAREN, + ACTIONS(8222), 1, + anon_sym_SEMI, + STATE(135), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4919), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [247050] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1753), 1, + anon_sym_RPAREN, + ACTIONS(8311), 1, + anon_sym_SEMI, + STATE(431), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4972), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [247076] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(8216), 1, + anon_sym_SEMI, + ACTIONS(8313), 1, + anon_sym_end, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4955), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [247102] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(8216), 1, + anon_sym_SEMI, + ACTIONS(8313), 1, + anon_sym_end, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4976), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [247128] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1741), 1, + anon_sym_RPAREN, + ACTIONS(8315), 1, + anon_sym_SEMI, + STATE(416), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4972), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [247154] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9), 1, + aux_sym__terminator_token1, + ACTIONS(1689), 1, + ts_builtin_sym_end, + ACTIONS(8317), 1, + anon_sym_SEMI, + STATE(388), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(5009), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [247180] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1757), 1, + anon_sym_RPAREN, + ACTIONS(8222), 1, + anon_sym_SEMI, + STATE(135), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4919), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [247206] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1741), 1, + anon_sym_RPAREN, + ACTIONS(8222), 1, + anon_sym_SEMI, + STATE(135), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4919), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [247232] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1757), 1, + anon_sym_RPAREN, + ACTIONS(3847), 1, + anon_sym_SEMI, + STATE(435), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4972), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [247258] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1757), 1, + anon_sym_RPAREN, + ACTIONS(8222), 1, + anon_sym_SEMI, + STATE(135), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4977), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [247284] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1643), 1, + anon_sym_RPAREN, + ACTIONS(8222), 1, + anon_sym_SEMI, + STATE(135), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4919), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [247310] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(8216), 1, + anon_sym_SEMI, + ACTIONS(8319), 1, + anon_sym_end, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4979), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [247336] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(906), 1, + anon_sym_RPAREN, + ACTIONS(8222), 1, + anon_sym_SEMI, + STATE(135), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4983), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [247362] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8321), 1, + anon_sym_COMMA, + STATE(4990), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3136), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + [247382] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(8216), 1, + anon_sym_SEMI, + ACTIONS(8324), 1, + anon_sym_end, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4955), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [247408] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(8216), 1, + anon_sym_SEMI, + ACTIONS(8326), 1, + anon_sym_end, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4912), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [247434] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1533), 1, + anon_sym_RPAREN, + ACTIONS(8222), 1, + anon_sym_SEMI, + STATE(135), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(5003), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [247460] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1533), 1, + anon_sym_RPAREN, + ACTIONS(3959), 1, + anon_sym_SEMI, + STATE(353), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4972), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [247486] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1533), 1, + anon_sym_RPAREN, + ACTIONS(8222), 1, + anon_sym_SEMI, + STATE(135), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4919), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [247512] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1605), 1, + anon_sym_RPAREN, + ACTIONS(8222), 1, + anon_sym_SEMI, + STATE(135), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4919), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [247538] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1605), 1, + anon_sym_RPAREN, + ACTIONS(8328), 1, + anon_sym_SEMI, + STATE(369), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4972), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [247564] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1323), 1, + anon_sym_end, + ACTIONS(4649), 1, + aux_sym__terminator_token1, + ACTIONS(4652), 1, + anon_sym_SEMI, + STATE(350), 1, + sym__terminator, + STATE(1034), 1, + aux_sym__terminator_repeat1, + STATE(4909), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [247590] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8330), 1, + anon_sym_COMMA, + STATE(4990), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5900), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + [247610] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(8216), 1, + anon_sym_SEMI, + ACTIONS(8332), 1, + anon_sym_end, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4955), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [247636] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(8216), 1, + anon_sym_SEMI, + ACTIONS(8334), 1, + anon_sym_end, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4955), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [247662] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(8216), 1, + anon_sym_SEMI, + ACTIONS(8332), 1, + anon_sym_end, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4911), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [247688] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1539), 1, + anon_sym_RPAREN, + ACTIONS(8222), 1, + anon_sym_SEMI, + STATE(135), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4919), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [247714] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1735), 1, + anon_sym_RPAREN, + ACTIONS(8336), 1, + anon_sym_SEMI, + STATE(430), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4972), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [247740] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4345), 1, + anon_sym_RPAREN, + ACTIONS(5946), 1, + aux_sym__terminator_token1, + ACTIONS(8338), 1, + anon_sym_SEMI, + STATE(746), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(5005), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [247766] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1575), 1, + anon_sym_RPAREN, + ACTIONS(8222), 1, + anon_sym_SEMI, + STATE(135), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4919), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [247792] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(8216), 1, + anon_sym_SEMI, + ACTIONS(8341), 1, + anon_sym_end, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4955), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [247818] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8343), 1, + anon_sym_COMMA, + STATE(4914), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3151), 3, + anon_sym_RPAREN, + anon_sym_when, + anon_sym_DASH_GT, + [247838] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4343), 1, + ts_builtin_sym_end, + ACTIONS(5946), 1, + aux_sym__terminator_token1, + ACTIONS(8345), 1, + anon_sym_SEMI, + STATE(497), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(5009), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [247864] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1575), 1, + anon_sym_RPAREN, + ACTIONS(3807), 1, + anon_sym_SEMI, + STATE(398), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4972), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [247890] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(8216), 1, + anon_sym_SEMI, + ACTIONS(8348), 1, + anon_sym_end, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4955), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [247916] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1575), 1, + anon_sym_RPAREN, + ACTIONS(8222), 1, + anon_sym_SEMI, + STATE(135), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4907), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [247942] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9), 1, + aux_sym__terminator_token1, + ACTIONS(1561), 1, + ts_builtin_sym_end, + ACTIONS(4502), 1, + anon_sym_SEMI, + STATE(407), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(5009), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [247968] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(8216), 1, + anon_sym_SEMI, + ACTIONS(8350), 1, + anon_sym_end, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4967), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [247994] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1621), 1, + anon_sym_RPAREN, + ACTIONS(8222), 1, + anon_sym_SEMI, + STATE(135), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4919), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [248020] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1621), 1, + anon_sym_RPAREN, + ACTIONS(3965), 1, + anon_sym_SEMI, + STATE(372), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4972), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [248046] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1537), 1, + anon_sym_RPAREN, + ACTIONS(8222), 1, + anon_sym_SEMI, + STATE(135), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4919), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [248072] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1537), 1, + anon_sym_RPAREN, + ACTIONS(8352), 1, + anon_sym_SEMI, + STATE(405), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4972), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [248098] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1711), 1, + anon_sym_RPAREN, + ACTIONS(8222), 1, + anon_sym_SEMI, + STATE(135), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4919), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [248124] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1711), 1, + anon_sym_RPAREN, + ACTIONS(8354), 1, + anon_sym_SEMI, + STATE(412), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4972), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [248150] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(930), 1, + anon_sym_RPAREN, + ACTIONS(8222), 1, + anon_sym_SEMI, + STATE(135), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4947), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [248176] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1621), 1, + anon_sym_RPAREN, + ACTIONS(8222), 1, + anon_sym_SEMI, + STATE(135), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4996), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [248202] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(8216), 1, + anon_sym_SEMI, + ACTIONS(8356), 1, + anon_sym_end, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(5000), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [248228] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(922), 1, + anon_sym_RPAREN, + ACTIONS(8222), 1, + anon_sym_SEMI, + STATE(135), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(5036), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [248254] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(8216), 1, + anon_sym_SEMI, + ACTIONS(8358), 1, + anon_sym_end, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4955), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [248280] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(8216), 1, + anon_sym_SEMI, + ACTIONS(8358), 1, + anon_sym_end, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(5011), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [248306] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8362), 1, + anon_sym_COMMA, + STATE(4999), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(8360), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + [248326] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(934), 1, + anon_sym_RPAREN, + ACTIONS(8222), 1, + anon_sym_SEMI, + STATE(135), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(5006), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [248352] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(8216), 1, + anon_sym_SEMI, + ACTIONS(8233), 1, + anon_sym_end, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4932), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [248378] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(8216), 1, + anon_sym_SEMI, + ACTIONS(8364), 1, + anon_sym_end, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4955), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [248404] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(8216), 1, + anon_sym_SEMI, + ACTIONS(8294), 1, + anon_sym_end, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4951), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [248430] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(8216), 1, + anon_sym_SEMI, + ACTIONS(8366), 1, + anon_sym_end, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(5030), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [248456] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(8216), 1, + anon_sym_SEMI, + ACTIONS(8364), 1, + anon_sym_end, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(5007), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [248482] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8343), 1, + anon_sym_COMMA, + STATE(5008), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3221), 3, + anon_sym_RPAREN, + anon_sym_when, + anon_sym_DASH_GT, + [248502] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(894), 1, + anon_sym_RPAREN, + ACTIONS(8222), 1, + anon_sym_SEMI, + STATE(135), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(5015), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [248528] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1631), 1, + anon_sym_RPAREN, + ACTIONS(8222), 1, + anon_sym_SEMI, + STATE(135), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4919), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [248554] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1631), 1, + anon_sym_RPAREN, + ACTIONS(3853), 1, + anon_sym_SEMI, + STATE(352), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4972), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [248580] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1737), 1, + anon_sym_RPAREN, + ACTIONS(8222), 1, + anon_sym_SEMI, + STATE(135), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(5019), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [248606] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1631), 1, + anon_sym_RPAREN, + ACTIONS(8222), 1, + anon_sym_SEMI, + STATE(135), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(5017), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [248632] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1737), 1, + anon_sym_RPAREN, + ACTIONS(3817), 1, + anon_sym_SEMI, + STATE(414), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4972), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [248658] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(8216), 1, + anon_sym_SEMI, + ACTIONS(8368), 1, + anon_sym_end, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(5025), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [248684] = 6, + ACTIONS(8370), 1, + anon_sym_RPAREN, + ACTIONS(8372), 1, + sym_escape_sequence, + ACTIONS(8374), 1, sym__quoted_content_parenthesis, - STATE(4764), 1, + STATE(5309), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -343426,14 +378437,119 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [213146] = 6, - ACTIONS(9101), 1, - anon_sym_DQUOTE, - ACTIONS(9103), 1, + [248705] = 6, + ACTIONS(8376), 1, + anon_sym_GT, + ACTIONS(8378), 1, sym_escape_sequence, - ACTIONS(9105), 1, + ACTIONS(8380), 1, + sym__quoted_content_angle, + STATE(5324), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [248726] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(27), 1, + anon_sym_DQUOTE, + ACTIONS(29), 1, + anon_sym_SQUOTE, + STATE(3812), 1, + sym__quoted_i_double, + STATE(3813), 1, + sym__quoted_i_single, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [248747] = 6, + ACTIONS(8382), 1, + anon_sym_PIPE, + ACTIONS(8384), 1, + sym_escape_sequence, + ACTIONS(8386), 1, + sym__quoted_content_bar, + STATE(5156), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [248768] = 6, + ACTIONS(8388), 1, + anon_sym_GT, + ACTIONS(8390), 1, + sym_escape_sequence, + ACTIONS(8392), 1, + sym__quoted_content_angle, + STATE(5124), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [248789] = 6, + ACTIONS(8394), 1, + anon_sym_RBRACK, + ACTIONS(8396), 1, + sym_escape_sequence, + ACTIONS(8398), 1, + sym__quoted_content_square, + STATE(5122), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [248810] = 6, + ACTIONS(8400), 1, + anon_sym_RBRACE, + ACTIONS(8402), 1, + sym_escape_sequence, + ACTIONS(8404), 1, + sym__quoted_content_curly, + STATE(5120), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [248831] = 6, + ACTIONS(8406), 1, + anon_sym_RPAREN, + ACTIONS(8408), 1, + sym_escape_sequence, + ACTIONS(8410), 1, + sym__quoted_content_parenthesis, + STATE(5079), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [248852] = 6, + ACTIONS(8412), 1, + anon_sym_DQUOTE, + ACTIONS(8414), 1, + sym_escape_sequence, + ACTIONS(8416), 1, sym__quoted_content_double, - STATE(4765), 1, + STATE(5080), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -343441,14 +378557,2665 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [213167] = 6, + [248873] = 6, + ACTIONS(8418), 1, + anon_sym_SQUOTE, + ACTIONS(8420), 1, + sym_escape_sequence, + ACTIONS(8422), 1, + sym__quoted_content_single, + STATE(5081), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [248894] = 6, + ACTIONS(8424), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8426), 1, + sym_escape_sequence, + ACTIONS(8428), 1, + sym__quoted_content_heredoc_single, + STATE(5082), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [248915] = 6, + ACTIONS(8430), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8432), 1, + sym_escape_sequence, + ACTIONS(8434), 1, + sym__quoted_content_heredoc_double, + STATE(5083), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [248936] = 6, + ACTIONS(8436), 1, + anon_sym_RBRACE, + ACTIONS(8438), 1, + sym_escape_sequence, + ACTIONS(8440), 1, + sym__quoted_content_curly, + STATE(5084), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [248957] = 6, + ACTIONS(8442), 1, + anon_sym_RBRACK, + ACTIONS(8444), 1, + sym_escape_sequence, + ACTIONS(8446), 1, + sym__quoted_content_square, + STATE(5085), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [248978] = 6, + ACTIONS(8448), 1, + anon_sym_GT, + ACTIONS(8450), 1, + sym_escape_sequence, + ACTIONS(8452), 1, + sym__quoted_content_angle, + STATE(5086), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [248999] = 6, + ACTIONS(8454), 1, + anon_sym_PIPE, + ACTIONS(8456), 1, + sym_escape_sequence, + ACTIONS(8458), 1, + sym__quoted_content_bar, + STATE(5087), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [249020] = 6, + ACTIONS(8460), 1, + anon_sym_SLASH, + ACTIONS(8462), 1, + sym_escape_sequence, + ACTIONS(8464), 1, + sym__quoted_content_slash, + STATE(5088), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [249041] = 4, + ACTIONS(8468), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + ACTIONS(8466), 3, + anon_sym_SLASH, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [249058] = 6, + ACTIONS(8470), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8472), 1, + sym_escape_sequence, + ACTIONS(8474), 1, + sym__quoted_content_heredoc_double, + STATE(5118), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [249079] = 6, + ACTIONS(8476), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8478), 1, + sym_escape_sequence, + ACTIONS(8480), 1, + sym__quoted_content_heredoc_single, + STATE(5117), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [249100] = 6, + ACTIONS(8482), 1, + anon_sym_DQUOTE, + ACTIONS(8484), 1, + sym_escape_sequence, + ACTIONS(8486), 1, + sym__quoted_content_double, + STATE(5113), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [249121] = 4, + ACTIONS(8468), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + ACTIONS(8466), 3, + anon_sym_PIPE, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [249138] = 6, + ACTIONS(8488), 1, + anon_sym_SQUOTE, + ACTIONS(8490), 1, + sym_escape_sequence, + ACTIONS(8492), 1, + sym__quoted_content_single, + STATE(5115), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [249159] = 6, + ACTIONS(8494), 1, + anon_sym_DQUOTE, + ACTIONS(8496), 1, + sym_escape_sequence, + ACTIONS(8498), 1, + sym__quoted_content_double, + STATE(5099), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [249180] = 6, + ACTIONS(8500), 1, + anon_sym_RPAREN, + ACTIONS(8502), 1, + sym_escape_sequence, + ACTIONS(8504), 1, + sym__quoted_content_parenthesis, + STATE(5096), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [249201] = 4, + ACTIONS(8468), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + ACTIONS(8466), 3, + anon_sym_GT, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [249218] = 4, + ACTIONS(8468), 1, + sym__quoted_content_i_square, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + ACTIONS(8466), 3, + anon_sym_RBRACK, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [249235] = 4, + ACTIONS(8468), 1, + sym__quoted_content_i_curly, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + ACTIONS(8466), 3, + anon_sym_RBRACE, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [249252] = 4, + ACTIONS(8468), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + ACTIONS(8466), 3, + anon_sym_RPAREN, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [249269] = 6, + ACTIONS(8506), 1, + anon_sym_RPAREN, + ACTIONS(8508), 1, + sym_escape_sequence, + ACTIONS(8510), 1, + sym__quoted_content_parenthesis, + STATE(5093), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [249290] = 6, + ACTIONS(8512), 1, + anon_sym_DQUOTE, + ACTIONS(8514), 1, + sym_escape_sequence, + ACTIONS(8516), 1, + sym__quoted_content_double, + STATE(5094), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [249311] = 6, + ACTIONS(8518), 1, + anon_sym_SQUOTE, + ACTIONS(8520), 1, + sym_escape_sequence, + ACTIONS(8522), 1, + sym__quoted_content_single, + STATE(5095), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [249332] = 6, + ACTIONS(8524), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8526), 1, + sym_escape_sequence, + ACTIONS(8528), 1, + sym__quoted_content_heredoc_single, + STATE(5097), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [249353] = 6, + ACTIONS(8530), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8532), 1, + sym_escape_sequence, + ACTIONS(8534), 1, + sym__quoted_content_heredoc_double, + STATE(5098), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [249374] = 6, + ACTIONS(8536), 1, + anon_sym_RBRACE, + ACTIONS(8538), 1, + sym_escape_sequence, + ACTIONS(8540), 1, + sym__quoted_content_curly, + STATE(5100), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [249395] = 6, + ACTIONS(8542), 1, + anon_sym_RBRACK, + ACTIONS(8544), 1, + sym_escape_sequence, + ACTIONS(8546), 1, + sym__quoted_content_square, + STATE(5101), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [249416] = 6, + ACTIONS(8548), 1, + anon_sym_GT, + ACTIONS(8550), 1, + sym_escape_sequence, + ACTIONS(8552), 1, + sym__quoted_content_angle, + STATE(5102), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [249437] = 6, + ACTIONS(8372), 1, + sym_escape_sequence, + ACTIONS(8374), 1, + sym__quoted_content_parenthesis, + ACTIONS(8554), 1, + anon_sym_RPAREN, + STATE(5309), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [249458] = 6, + ACTIONS(8556), 1, + anon_sym_DQUOTE, + ACTIONS(8558), 1, + sym_escape_sequence, + ACTIONS(8560), 1, + sym__quoted_content_double, + STATE(5308), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [249479] = 6, + ACTIONS(8562), 1, + anon_sym_SQUOTE, + ACTIONS(8564), 1, + sym_escape_sequence, + ACTIONS(8566), 1, + sym__quoted_content_single, + STATE(5262), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [249500] = 6, + ACTIONS(8568), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8570), 1, + sym_escape_sequence, + ACTIONS(8572), 1, + sym__quoted_content_heredoc_single, + STATE(5092), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [249521] = 6, + ACTIONS(8574), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8576), 1, + sym_escape_sequence, + ACTIONS(8578), 1, + sym__quoted_content_heredoc_double, + STATE(5260), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [249542] = 6, + ACTIONS(8580), 1, + anon_sym_RBRACE, + ACTIONS(8582), 1, + sym_escape_sequence, + ACTIONS(8584), 1, + sym__quoted_content_curly, + STATE(5259), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [249563] = 6, + ACTIONS(8586), 1, + anon_sym_RBRACK, + ACTIONS(8588), 1, + sym_escape_sequence, + ACTIONS(8590), 1, + sym__quoted_content_square, + STATE(5231), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [249584] = 6, + ACTIONS(8592), 1, + anon_sym_GT, + ACTIONS(8594), 1, + sym_escape_sequence, + ACTIONS(8596), 1, + sym__quoted_content_angle, + STATE(5230), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [249605] = 6, + ACTIONS(8598), 1, + anon_sym_PIPE, + ACTIONS(8600), 1, + sym_escape_sequence, + ACTIONS(8602), 1, + sym__quoted_content_bar, + STATE(5205), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [249626] = 6, + ACTIONS(8604), 1, + anon_sym_SLASH, + ACTIONS(8606), 1, + sym_escape_sequence, + ACTIONS(8608), 1, + sym__quoted_content_slash, + STATE(5204), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [249647] = 6, + ACTIONS(8610), 1, + anon_sym_PIPE, + ACTIONS(8612), 1, + sym_escape_sequence, + ACTIONS(8614), 1, + sym__quoted_content_bar, + STATE(5103), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [249668] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(259), 1, + anon_sym_DQUOTE, + ACTIONS(261), 1, + anon_sym_SQUOTE, + STATE(1487), 1, + sym__quoted_i_double, + STATE(1488), 1, + sym__quoted_i_single, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [249689] = 6, + ACTIONS(8616), 1, + anon_sym_SLASH, + ACTIONS(8618), 1, + sym_escape_sequence, + ACTIONS(8620), 1, + sym__quoted_content_slash, + STATE(5104), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [249710] = 6, + ACTIONS(8622), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8624), 1, + sym_escape_sequence, + ACTIONS(8627), 1, + sym__quoted_content_heredoc_single, + STATE(5092), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [249731] = 6, + ACTIONS(8372), 1, + sym_escape_sequence, + ACTIONS(8374), 1, + sym__quoted_content_parenthesis, + ACTIONS(8630), 1, + anon_sym_RPAREN, + STATE(5309), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [249752] = 6, + ACTIONS(8558), 1, + sym_escape_sequence, + ACTIONS(8560), 1, + sym__quoted_content_double, + ACTIONS(8632), 1, + anon_sym_DQUOTE, + STATE(5308), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [249773] = 6, + ACTIONS(8564), 1, + sym_escape_sequence, + ACTIONS(8566), 1, + sym__quoted_content_single, + ACTIONS(8634), 1, + anon_sym_SQUOTE, + STATE(5262), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [249794] = 6, + ACTIONS(8372), 1, + sym_escape_sequence, + ACTIONS(8374), 1, + sym__quoted_content_parenthesis, + ACTIONS(8636), 1, + anon_sym_RPAREN, + STATE(5309), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [249815] = 6, + ACTIONS(8570), 1, + sym_escape_sequence, + ACTIONS(8572), 1, + sym__quoted_content_heredoc_single, + ACTIONS(8638), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5092), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [249836] = 6, + ACTIONS(8576), 1, + sym_escape_sequence, + ACTIONS(8578), 1, + sym__quoted_content_heredoc_double, + ACTIONS(8640), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5260), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [249857] = 6, + ACTIONS(8558), 1, + sym_escape_sequence, + ACTIONS(8560), 1, + sym__quoted_content_double, + ACTIONS(8642), 1, + anon_sym_DQUOTE, + STATE(5308), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [249878] = 6, + ACTIONS(8582), 1, + sym_escape_sequence, + ACTIONS(8584), 1, + sym__quoted_content_curly, + ACTIONS(8644), 1, + anon_sym_RBRACE, + STATE(5259), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [249899] = 6, + ACTIONS(8588), 1, + sym_escape_sequence, + ACTIONS(8590), 1, + sym__quoted_content_square, + ACTIONS(8646), 1, + anon_sym_RBRACK, + STATE(5231), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [249920] = 6, + ACTIONS(8594), 1, + sym_escape_sequence, + ACTIONS(8596), 1, + sym__quoted_content_angle, + ACTIONS(8648), 1, + anon_sym_GT, + STATE(5230), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [249941] = 6, + ACTIONS(8600), 1, + sym_escape_sequence, + ACTIONS(8602), 1, + sym__quoted_content_bar, + ACTIONS(8650), 1, + anon_sym_PIPE, + STATE(5205), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [249962] = 6, + ACTIONS(8606), 1, + sym_escape_sequence, + ACTIONS(8608), 1, + sym__quoted_content_slash, + ACTIONS(8652), 1, + anon_sym_SLASH, + STATE(5204), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [249983] = 6, + ACTIONS(8606), 1, + sym_escape_sequence, + ACTIONS(8608), 1, + sym__quoted_content_slash, + ACTIONS(8654), 1, + anon_sym_SLASH, + STATE(5204), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [250004] = 6, + ACTIONS(8600), 1, + sym_escape_sequence, + ACTIONS(8602), 1, + sym__quoted_content_bar, + ACTIONS(8656), 1, + anon_sym_PIPE, + STATE(5205), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [250025] = 6, + ACTIONS(8594), 1, + sym_escape_sequence, + ACTIONS(8596), 1, + sym__quoted_content_angle, + ACTIONS(8658), 1, + anon_sym_GT, + STATE(5230), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [250046] = 6, + ACTIONS(8588), 1, + sym_escape_sequence, + ACTIONS(8590), 1, + sym__quoted_content_square, + ACTIONS(8660), 1, + anon_sym_RBRACK, + STATE(5231), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [250067] = 6, + ACTIONS(8582), 1, + sym_escape_sequence, + ACTIONS(8584), 1, + sym__quoted_content_curly, + ACTIONS(8662), 1, + anon_sym_RBRACE, + STATE(5259), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [250088] = 6, + ACTIONS(8576), 1, + sym_escape_sequence, + ACTIONS(8578), 1, + sym__quoted_content_heredoc_double, + ACTIONS(8664), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5260), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [250109] = 6, + ACTIONS(8570), 1, + sym_escape_sequence, + ACTIONS(8572), 1, + sym__quoted_content_heredoc_single, + ACTIONS(8666), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5092), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [250130] = 6, + ACTIONS(8564), 1, + sym_escape_sequence, + ACTIONS(8566), 1, + sym__quoted_content_single, + ACTIONS(8668), 1, + anon_sym_SQUOTE, + STATE(5262), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [250151] = 6, + ACTIONS(8558), 1, + sym_escape_sequence, + ACTIONS(8560), 1, + sym__quoted_content_double, + ACTIONS(8670), 1, + anon_sym_DQUOTE, + STATE(5308), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [250172] = 6, + ACTIONS(8372), 1, + sym_escape_sequence, + ACTIONS(8374), 1, + sym__quoted_content_parenthesis, + ACTIONS(8672), 1, + anon_sym_RPAREN, + STATE(5309), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [250193] = 6, + ACTIONS(8564), 1, + sym_escape_sequence, + ACTIONS(8566), 1, + sym__quoted_content_single, + ACTIONS(8674), 1, + anon_sym_SQUOTE, + STATE(5262), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [250214] = 6, + ACTIONS(8676), 1, + anon_sym_RPAREN, + ACTIONS(8678), 1, + sym_escape_sequence, + ACTIONS(8680), 1, + sym__quoted_content_parenthesis, + STATE(5336), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [250235] = 6, + ACTIONS(8570), 1, + sym_escape_sequence, + ACTIONS(8572), 1, + sym__quoted_content_heredoc_single, + ACTIONS(8682), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5092), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [250256] = 6, + ACTIONS(8576), 1, + sym_escape_sequence, + ACTIONS(8578), 1, + sym__quoted_content_heredoc_double, + ACTIONS(8684), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5260), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [250277] = 6, + ACTIONS(8686), 1, + anon_sym_DQUOTE, + ACTIONS(8688), 1, + sym_escape_sequence, + ACTIONS(8690), 1, + sym__quoted_content_double, + STATE(5303), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [250298] = 6, + ACTIONS(8582), 1, + sym_escape_sequence, + ACTIONS(8584), 1, + sym__quoted_content_curly, + ACTIONS(8692), 1, + anon_sym_RBRACE, + STATE(5259), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [250319] = 6, + ACTIONS(8694), 1, + anon_sym_SQUOTE, + ACTIONS(8696), 1, + sym_escape_sequence, + ACTIONS(8698), 1, + sym__quoted_content_single, + STATE(5301), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [250340] = 6, + ACTIONS(8588), 1, + sym_escape_sequence, + ACTIONS(8590), 1, + sym__quoted_content_square, + ACTIONS(8700), 1, + anon_sym_RBRACK, + STATE(5231), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [250361] = 6, + ACTIONS(8702), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8704), 1, + sym_escape_sequence, + ACTIONS(8706), 1, + sym__quoted_content_heredoc_single, + STATE(5300), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [250382] = 6, + ACTIONS(8594), 1, + sym_escape_sequence, + ACTIONS(8596), 1, + sym__quoted_content_angle, + ACTIONS(8708), 1, + anon_sym_GT, + STATE(5230), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [250403] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(515), 1, + anon_sym_DQUOTE, + ACTIONS(517), 1, + anon_sym_SQUOTE, + STATE(2717), 1, + sym__quoted_i_single, + STATE(2848), 1, + sym__quoted_i_double, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [250424] = 6, + ACTIONS(8710), 1, + anon_sym_RPAREN, + ACTIONS(8712), 1, + sym_escape_sequence, + ACTIONS(8714), 1, + sym__quoted_content_parenthesis, + STATE(5142), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [250445] = 6, + ACTIONS(8716), 1, + anon_sym_DQUOTE, + ACTIONS(8718), 1, + sym_escape_sequence, + ACTIONS(8720), 1, + sym__quoted_content_double, + STATE(5143), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [250466] = 6, + ACTIONS(8722), 1, + anon_sym_SQUOTE, + ACTIONS(8724), 1, + sym_escape_sequence, + ACTIONS(8726), 1, + sym__quoted_content_single, + STATE(5144), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [250487] = 6, + ACTIONS(8728), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8730), 1, + sym_escape_sequence, + ACTIONS(8732), 1, + sym__quoted_content_heredoc_single, + STATE(5145), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [250508] = 6, + ACTIONS(8734), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8736), 1, + sym_escape_sequence, + ACTIONS(8738), 1, + sym__quoted_content_heredoc_double, + STATE(5146), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [250529] = 6, + ACTIONS(8740), 1, + anon_sym_RBRACE, + ACTIONS(8742), 1, + sym_escape_sequence, + ACTIONS(8744), 1, + sym__quoted_content_curly, + STATE(5147), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [250550] = 6, + ACTIONS(8746), 1, + anon_sym_RBRACK, + ACTIONS(8748), 1, + sym_escape_sequence, + ACTIONS(8750), 1, + sym__quoted_content_square, + STATE(5148), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [250571] = 6, + ACTIONS(8752), 1, + anon_sym_GT, + ACTIONS(8754), 1, + sym_escape_sequence, + ACTIONS(8756), 1, + sym__quoted_content_angle, + STATE(5149), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [250592] = 6, + ACTIONS(8758), 1, + anon_sym_PIPE, + ACTIONS(8760), 1, + sym_escape_sequence, + ACTIONS(8762), 1, + sym__quoted_content_bar, + STATE(5150), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [250613] = 6, + ACTIONS(8764), 1, + anon_sym_SLASH, + ACTIONS(8766), 1, + sym_escape_sequence, + ACTIONS(8768), 1, + sym__quoted_content_slash, + STATE(5151), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [250634] = 6, + ACTIONS(8770), 1, + anon_sym_SLASH, + ACTIONS(8772), 1, + sym_escape_sequence, + ACTIONS(8774), 1, + sym__quoted_content_slash, + STATE(5105), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [250655] = 6, + ACTIONS(8776), 1, + anon_sym_PIPE, + ACTIONS(8778), 1, + sym_escape_sequence, + ACTIONS(8780), 1, + sym__quoted_content_bar, + STATE(5106), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [250676] = 6, + ACTIONS(8782), 1, + anon_sym_GT, + ACTIONS(8784), 1, + sym_escape_sequence, + ACTIONS(8786), 1, + sym__quoted_content_angle, + STATE(5107), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [250697] = 6, + ACTIONS(8788), 1, + anon_sym_RBRACK, + ACTIONS(8790), 1, + sym_escape_sequence, + ACTIONS(8792), 1, + sym__quoted_content_square, + STATE(5108), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [250718] = 6, + ACTIONS(8794), 1, + anon_sym_RBRACE, + ACTIONS(8796), 1, + sym_escape_sequence, + ACTIONS(8798), 1, + sym__quoted_content_curly, + STATE(5109), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [250739] = 6, + ACTIONS(8800), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8802), 1, + sym_escape_sequence, + ACTIONS(8804), 1, + sym__quoted_content_heredoc_double, + STATE(5110), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [250760] = 6, + ACTIONS(8372), 1, + sym_escape_sequence, + ACTIONS(8374), 1, + sym__quoted_content_parenthesis, + ACTIONS(8806), 1, + anon_sym_RPAREN, + STATE(5309), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [250781] = 6, + ACTIONS(8558), 1, + sym_escape_sequence, + ACTIONS(8560), 1, + sym__quoted_content_double, + ACTIONS(8808), 1, + anon_sym_DQUOTE, + STATE(5308), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [250802] = 6, + ACTIONS(8564), 1, + sym_escape_sequence, + ACTIONS(8566), 1, + sym__quoted_content_single, + ACTIONS(8810), 1, + anon_sym_SQUOTE, + STATE(5262), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [250823] = 6, + ACTIONS(8570), 1, + sym_escape_sequence, + ACTIONS(8572), 1, + sym__quoted_content_heredoc_single, + ACTIONS(8812), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5092), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [250844] = 6, + ACTIONS(8576), 1, + sym_escape_sequence, + ACTIONS(8578), 1, + sym__quoted_content_heredoc_double, + ACTIONS(8814), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5260), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [250865] = 6, + ACTIONS(8582), 1, + sym_escape_sequence, + ACTIONS(8584), 1, + sym__quoted_content_curly, + ACTIONS(8816), 1, + anon_sym_RBRACE, + STATE(5259), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [250886] = 6, + ACTIONS(8588), 1, + sym_escape_sequence, + ACTIONS(8590), 1, + sym__quoted_content_square, + ACTIONS(8818), 1, + anon_sym_RBRACK, + STATE(5231), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [250907] = 6, + ACTIONS(8594), 1, + sym_escape_sequence, + ACTIONS(8596), 1, + sym__quoted_content_angle, + ACTIONS(8820), 1, + anon_sym_GT, + STATE(5230), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [250928] = 6, + ACTIONS(8600), 1, + sym_escape_sequence, + ACTIONS(8602), 1, + sym__quoted_content_bar, + ACTIONS(8822), 1, + anon_sym_PIPE, + STATE(5205), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [250949] = 6, + ACTIONS(8606), 1, + sym_escape_sequence, + ACTIONS(8608), 1, + sym__quoted_content_slash, + ACTIONS(8824), 1, + anon_sym_SLASH, + STATE(5204), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [250970] = 6, + ACTIONS(8826), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8828), 1, + sym_escape_sequence, + ACTIONS(8830), 1, + sym__quoted_content_heredoc_single, + STATE(5111), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [250991] = 6, + ACTIONS(8832), 1, + anon_sym_SQUOTE, + ACTIONS(8834), 1, + sym_escape_sequence, + ACTIONS(8836), 1, + sym__quoted_content_single, + STATE(5112), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [251012] = 6, + ACTIONS(8838), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8840), 1, + sym_escape_sequence, + ACTIONS(8842), 1, + sym__quoted_content_heredoc_double, + STATE(5209), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [251033] = 6, + ACTIONS(8844), 1, + anon_sym_RPAREN, + ACTIONS(8846), 1, + sym_escape_sequence, + ACTIONS(8848), 1, + sym__quoted_content_parenthesis, + STATE(5114), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [251054] = 6, + ACTIONS(8600), 1, + sym_escape_sequence, + ACTIONS(8602), 1, + sym__quoted_content_bar, + ACTIONS(8850), 1, + anon_sym_PIPE, + STATE(5205), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [251075] = 6, + ACTIONS(8852), 1, + anon_sym_RBRACE, + ACTIONS(8854), 1, + sym_escape_sequence, + ACTIONS(8856), 1, + sym__quoted_content_curly, + STATE(5257), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [251096] = 6, + ACTIONS(8606), 1, + sym_escape_sequence, + ACTIONS(8608), 1, + sym__quoted_content_slash, + ACTIONS(8858), 1, + anon_sym_SLASH, + STATE(5204), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [251117] = 6, + ACTIONS(8860), 1, + anon_sym_RBRACK, + ACTIONS(8862), 1, + sym_escape_sequence, + ACTIONS(8864), 1, + sym__quoted_content_square, + STATE(5255), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [251138] = 6, + ACTIONS(8866), 1, + anon_sym_GT, + ACTIONS(8868), 1, + sym_escape_sequence, + ACTIONS(8870), 1, + sym__quoted_content_angle, + STATE(5254), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [251159] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8872), 1, + anon_sym_COMMA, + STATE(5199), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(8874), 2, + anon_sym_when, + anon_sym_DASH_GT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [251178] = 6, + ACTIONS(8876), 1, + anon_sym_PIPE, + ACTIONS(8878), 1, + sym_escape_sequence, + ACTIONS(8880), 1, + sym__quoted_content_bar, + STATE(5249), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [251199] = 6, + ACTIONS(8882), 1, + anon_sym_SLASH, + ACTIONS(8884), 1, + sym_escape_sequence, + ACTIONS(8886), 1, + sym__quoted_content_slash, + STATE(5244), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [251220] = 6, + ACTIONS(8888), 1, + anon_sym_PIPE, + ACTIONS(8890), 1, + sym_escape_sequence, + ACTIONS(8892), 1, + sym__quoted_content_bar, + STATE(5385), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [251241] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1077), 1, + anon_sym_DQUOTE, + ACTIONS(1079), 1, + anon_sym_SQUOTE, + STATE(3186), 1, + sym__quoted_i_single, + STATE(3187), 1, + sym__quoted_i_double, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [251262] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1147), 1, + anon_sym_DQUOTE, + ACTIONS(1149), 1, + anon_sym_SQUOTE, + STATE(4107), 1, + sym__quoted_i_double, + STATE(4108), 1, + sym__quoted_i_single, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [251283] = 4, + ACTIONS(8468), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + ACTIONS(8466), 3, + anon_sym_SQUOTE, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [251300] = 6, + ACTIONS(8606), 1, + sym_escape_sequence, + ACTIONS(8608), 1, + sym__quoted_content_slash, + ACTIONS(8894), 1, + anon_sym_SLASH, + STATE(5204), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [251321] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(621), 1, + anon_sym_DQUOTE, + ACTIONS(623), 1, + anon_sym_SQUOTE, + STATE(3304), 1, + sym__quoted_i_single, + STATE(3305), 1, + sym__quoted_i_double, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [251342] = 6, + ACTIONS(8600), 1, + sym_escape_sequence, + ACTIONS(8602), 1, + sym__quoted_content_bar, + ACTIONS(8896), 1, + anon_sym_PIPE, + STATE(5205), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [251363] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(79), 1, + anon_sym_DQUOTE, + ACTIONS(81), 1, + anon_sym_SQUOTE, + STATE(1624), 1, + sym__quoted_i_double, + STATE(1625), 1, + sym__quoted_i_single, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [251384] = 6, + ACTIONS(8898), 1, + anon_sym_RPAREN, + ACTIONS(8900), 1, + sym_escape_sequence, + ACTIONS(8902), 1, + sym__quoted_content_parenthesis, + STATE(5188), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [251405] = 6, + ACTIONS(8904), 1, + anon_sym_DQUOTE, + ACTIONS(8906), 1, + sym_escape_sequence, + ACTIONS(8908), 1, + sym__quoted_content_double, + STATE(5189), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [251426] = 6, + ACTIONS(8910), 1, + anon_sym_SQUOTE, + ACTIONS(8912), 1, + sym_escape_sequence, + ACTIONS(8914), 1, + sym__quoted_content_single, + STATE(5190), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [251447] = 6, + ACTIONS(8916), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8918), 1, + sym_escape_sequence, + ACTIONS(8920), 1, + sym__quoted_content_heredoc_single, + STATE(5191), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [251468] = 6, + ACTIONS(8922), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8924), 1, + sym_escape_sequence, + ACTIONS(8926), 1, + sym__quoted_content_heredoc_double, + STATE(5192), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [251489] = 6, + ACTIONS(8928), 1, + anon_sym_RBRACE, + ACTIONS(8930), 1, + sym_escape_sequence, + ACTIONS(8932), 1, + sym__quoted_content_curly, + STATE(5193), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [251510] = 6, + ACTIONS(8934), 1, + anon_sym_RBRACK, + ACTIONS(8936), 1, + sym_escape_sequence, + ACTIONS(8938), 1, + sym__quoted_content_square, + STATE(5194), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [251531] = 6, + ACTIONS(8940), 1, + anon_sym_GT, + ACTIONS(8942), 1, + sym_escape_sequence, + ACTIONS(8944), 1, + sym__quoted_content_angle, + STATE(5195), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [251552] = 6, + ACTIONS(8946), 1, + anon_sym_PIPE, + ACTIONS(8948), 1, + sym_escape_sequence, + ACTIONS(8950), 1, + sym__quoted_content_bar, + STATE(5196), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [251573] = 6, + ACTIONS(8952), 1, + anon_sym_SLASH, + ACTIONS(8954), 1, + sym_escape_sequence, + ACTIONS(8956), 1, + sym__quoted_content_slash, + STATE(5197), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [251594] = 6, + ACTIONS(8588), 1, + sym_escape_sequence, + ACTIONS(8590), 1, + sym__quoted_content_square, + ACTIONS(8958), 1, + anon_sym_RBRACK, + STATE(5231), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [251615] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8960), 1, + anon_sym_COMMA, + STATE(4926), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(1123), 2, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [251634] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(566), 1, + anon_sym_DQUOTE, + ACTIONS(568), 1, + anon_sym_SQUOTE, + STATE(2729), 1, + sym__quoted_i_single, + STATE(2806), 1, + sym__quoted_i_double, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [251655] = 6, + ACTIONS(8582), 1, + sym_escape_sequence, + ACTIONS(8584), 1, + sym__quoted_content_curly, + ACTIONS(8962), 1, + anon_sym_RBRACE, + STATE(5259), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [251676] = 6, + ACTIONS(8576), 1, + sym_escape_sequence, + ACTIONS(8578), 1, + sym__quoted_content_heredoc_double, + ACTIONS(8964), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5260), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [251697] = 6, + ACTIONS(8570), 1, + sym_escape_sequence, + ACTIONS(8572), 1, + sym__quoted_content_heredoc_single, + ACTIONS(8966), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5092), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [251718] = 6, + ACTIONS(8372), 1, + sym_escape_sequence, + ACTIONS(8374), 1, + sym__quoted_content_parenthesis, + ACTIONS(8968), 1, + anon_sym_RPAREN, + STATE(5309), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [251739] = 6, + ACTIONS(8558), 1, + sym_escape_sequence, + ACTIONS(8560), 1, + sym__quoted_content_double, + ACTIONS(8970), 1, + anon_sym_DQUOTE, + STATE(5308), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [251760] = 6, + ACTIONS(8564), 1, + sym_escape_sequence, + ACTIONS(8566), 1, + sym__quoted_content_single, + ACTIONS(8972), 1, + anon_sym_SQUOTE, + STATE(5262), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [251781] = 6, + ACTIONS(8570), 1, + sym_escape_sequence, + ACTIONS(8572), 1, + sym__quoted_content_heredoc_single, + ACTIONS(8974), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5092), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [251802] = 6, + ACTIONS(8576), 1, + sym_escape_sequence, + ACTIONS(8578), 1, + sym__quoted_content_heredoc_double, + ACTIONS(8976), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5260), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [251823] = 6, + ACTIONS(8582), 1, + sym_escape_sequence, + ACTIONS(8584), 1, + sym__quoted_content_curly, + ACTIONS(8978), 1, + anon_sym_RBRACE, + STATE(5259), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [251844] = 6, + ACTIONS(8588), 1, + sym_escape_sequence, + ACTIONS(8590), 1, + sym__quoted_content_square, + ACTIONS(8980), 1, + anon_sym_RBRACK, + STATE(5231), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [251865] = 6, + ACTIONS(8594), 1, + sym_escape_sequence, + ACTIONS(8596), 1, + sym__quoted_content_angle, + ACTIONS(8982), 1, + anon_sym_GT, + STATE(5230), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [251886] = 6, + ACTIONS(8600), 1, + sym_escape_sequence, + ACTIONS(8602), 1, + sym__quoted_content_bar, + ACTIONS(8984), 1, + anon_sym_PIPE, + STATE(5205), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [251907] = 6, + ACTIONS(8606), 1, + sym_escape_sequence, + ACTIONS(8608), 1, + sym__quoted_content_slash, + ACTIONS(8986), 1, + anon_sym_SLASH, + STATE(5204), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [251928] = 4, + ACTIONS(8468), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + ACTIONS(8466), 3, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [251945] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8988), 1, + anon_sym_COMMA, + STATE(5199), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(5012), 2, + anon_sym_when, + anon_sym_DASH_GT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [251964] = 6, + ACTIONS(8564), 1, + sym_escape_sequence, + ACTIONS(8566), 1, + sym__quoted_content_single, + ACTIONS(8991), 1, + anon_sym_SQUOTE, + STATE(5262), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [251985] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(952), 1, + anon_sym_DQUOTE, + ACTIONS(954), 1, + anon_sym_SQUOTE, + STATE(1774), 1, + sym__quoted_i_double, + STATE(1775), 1, + sym__quoted_i_single, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [252006] = 6, + ACTIONS(8558), 1, + sym_escape_sequence, + ACTIONS(8560), 1, + sym__quoted_content_double, + ACTIONS(8993), 1, + anon_sym_DQUOTE, + STATE(5308), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [252027] = 6, + ACTIONS(8372), 1, + sym_escape_sequence, + ACTIONS(8374), 1, + sym__quoted_content_parenthesis, + ACTIONS(8995), 1, + anon_sym_RPAREN, + STATE(5309), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [252048] = 6, + ACTIONS(8997), 1, + anon_sym_SLASH, + ACTIONS(8999), 1, + sym_escape_sequence, + ACTIONS(9002), 1, + sym__quoted_content_slash, + STATE(5204), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [252069] = 6, + ACTIONS(9005), 1, + anon_sym_PIPE, + ACTIONS(9007), 1, + sym_escape_sequence, + ACTIONS(9010), 1, + sym__quoted_content_bar, + STATE(5205), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [252090] = 6, + ACTIONS(9013), 1, + anon_sym_RPAREN, + ACTIONS(9015), 1, + sym_escape_sequence, + ACTIONS(9017), 1, + sym__quoted_content_parenthesis, + STATE(5344), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [252111] = 6, + ACTIONS(8606), 1, + sym_escape_sequence, + ACTIONS(8608), 1, + sym__quoted_content_slash, + ACTIONS(9019), 1, + anon_sym_SLASH, + STATE(5204), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [252132] = 6, + ACTIONS(8600), 1, + sym_escape_sequence, + ACTIONS(8602), 1, + sym__quoted_content_bar, + ACTIONS(9021), 1, + anon_sym_PIPE, + STATE(5205), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [252153] = 6, + ACTIONS(8576), 1, + sym_escape_sequence, + ACTIONS(8578), 1, + sym__quoted_content_heredoc_double, + ACTIONS(9023), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5260), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [252174] = 6, + ACTIONS(8594), 1, + sym_escape_sequence, + ACTIONS(8596), 1, + sym__quoted_content_angle, + ACTIONS(9025), 1, + anon_sym_GT, + STATE(5230), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [252195] = 6, + ACTIONS(9027), 1, + anon_sym_DQUOTE, + ACTIONS(9029), 1, + sym_escape_sequence, + ACTIONS(9031), 1, + sym__quoted_content_double, + STATE(5346), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [252216] = 6, + ACTIONS(8588), 1, + sym_escape_sequence, + ACTIONS(8590), 1, + sym__quoted_content_square, + ACTIONS(9033), 1, + anon_sym_RBRACK, + STATE(5231), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [252237] = 6, + ACTIONS(8582), 1, + sym_escape_sequence, + ACTIONS(8584), 1, + sym__quoted_content_curly, + ACTIONS(9035), 1, + anon_sym_RBRACE, + STATE(5259), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [252258] = 6, + ACTIONS(8576), 1, + sym_escape_sequence, + ACTIONS(8578), 1, + sym__quoted_content_heredoc_double, + ACTIONS(9037), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5260), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [252279] = 6, + ACTIONS(8570), 1, + sym_escape_sequence, + ACTIONS(8572), 1, + sym__quoted_content_heredoc_single, + ACTIONS(9039), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5092), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [252300] = 6, + ACTIONS(8564), 1, + sym_escape_sequence, + ACTIONS(8566), 1, + sym__quoted_content_single, + ACTIONS(9041), 1, + anon_sym_SQUOTE, + STATE(5262), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [252321] = 6, + ACTIONS(8558), 1, + sym_escape_sequence, + ACTIONS(8560), 1, + sym__quoted_content_double, + ACTIONS(9043), 1, + anon_sym_DQUOTE, + STATE(5308), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [252342] = 6, + ACTIONS(9045), 1, + anon_sym_RPAREN, + ACTIONS(9047), 1, + sym_escape_sequence, + ACTIONS(9049), 1, + sym__quoted_content_parenthesis, + STATE(5234), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [252363] = 6, + ACTIONS(9051), 1, + anon_sym_DQUOTE, + ACTIONS(9053), 1, + sym_escape_sequence, + ACTIONS(9055), 1, + sym__quoted_content_double, + STATE(5235), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [252384] = 6, + ACTIONS(9057), 1, + anon_sym_SQUOTE, + ACTIONS(9059), 1, + sym_escape_sequence, + ACTIONS(9061), 1, + sym__quoted_content_single, + STATE(5236), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [252405] = 6, + ACTIONS(9063), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(9065), 1, + sym_escape_sequence, + ACTIONS(9067), 1, + sym__quoted_content_heredoc_single, + STATE(5237), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [252426] = 6, + ACTIONS(9069), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(9071), 1, + sym_escape_sequence, + ACTIONS(9073), 1, + sym__quoted_content_heredoc_double, + STATE(5238), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [252447] = 6, + ACTIONS(9075), 1, + anon_sym_RBRACE, + ACTIONS(9077), 1, + sym_escape_sequence, + ACTIONS(9079), 1, + sym__quoted_content_curly, + STATE(5239), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [252468] = 6, + ACTIONS(9081), 1, + anon_sym_RBRACK, + ACTIONS(9083), 1, + sym_escape_sequence, + ACTIONS(9085), 1, + sym__quoted_content_square, + STATE(5240), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [252489] = 6, + ACTIONS(9087), 1, + anon_sym_GT, + ACTIONS(9089), 1, + sym_escape_sequence, + ACTIONS(9091), 1, + sym__quoted_content_angle, + STATE(5241), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [252510] = 6, + ACTIONS(9093), 1, + anon_sym_PIPE, + ACTIONS(9095), 1, + sym_escape_sequence, + ACTIONS(9097), 1, + sym__quoted_content_bar, + STATE(5242), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [252531] = 6, + ACTIONS(9099), 1, + anon_sym_SLASH, + ACTIONS(9101), 1, + sym_escape_sequence, + ACTIONS(9103), 1, + sym__quoted_content_slash, + STATE(5243), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [252552] = 6, + ACTIONS(8372), 1, + sym_escape_sequence, + ACTIONS(8374), 1, + sym__quoted_content_parenthesis, + ACTIONS(9105), 1, + anon_sym_RPAREN, + STATE(5309), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [252573] = 6, ACTIONS(9107), 1, anon_sym_SQUOTE, ACTIONS(9109), 1, sym_escape_sequence, ACTIONS(9111), 1, sym__quoted_content_single, - STATE(4766), 1, + STATE(5347), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -343456,74 +381223,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [213188] = 6, + [252594] = 6, ACTIONS(9113), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_GT, ACTIONS(9115), 1, sym_escape_sequence, - ACTIONS(9117), 1, - sym__quoted_content_heredoc_single, - STATE(4767), 1, - aux_sym__quoted_heredoc_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [213209] = 6, - ACTIONS(9119), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(9121), 1, - sym_escape_sequence, - ACTIONS(9123), 1, - sym__quoted_content_heredoc_double, - STATE(4768), 1, - aux_sym__quoted_heredoc_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [213230] = 6, - ACTIONS(9125), 1, - anon_sym_RBRACE, - ACTIONS(9127), 1, - sym_escape_sequence, - ACTIONS(9129), 1, - sym__quoted_content_curly, - STATE(4769), 1, - aux_sym__quoted_curly_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [213251] = 6, - ACTIONS(9131), 1, - anon_sym_RBRACK, - ACTIONS(9133), 1, - sym_escape_sequence, - ACTIONS(9135), 1, - sym__quoted_content_square, - STATE(4770), 1, - aux_sym__quoted_square_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [213272] = 6, - ACTIONS(9137), 1, - anon_sym_GT, - ACTIONS(9139), 1, - sym_escape_sequence, - ACTIONS(9141), 1, + ACTIONS(9118), 1, sym__quoted_content_angle, - STATE(4771), 1, + STATE(5230), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -343531,29 +381238,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [213293] = 6, - ACTIONS(9143), 1, - anon_sym_PIPE, - ACTIONS(9145), 1, + [252615] = 6, + ACTIONS(9121), 1, + anon_sym_RBRACK, + ACTIONS(9123), 1, sym_escape_sequence, - ACTIONS(9147), 1, - sym__quoted_content_bar, - STATE(4772), 1, - aux_sym__quoted_bar_repeat1, + ACTIONS(9126), 1, + sym__quoted_content_square, + STATE(5231), 1, + aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [213314] = 6, - ACTIONS(9149), 1, + [252636] = 6, + ACTIONS(9129), 1, anon_sym_SLASH, - ACTIONS(9151), 1, + ACTIONS(9131), 1, sym_escape_sequence, - ACTIONS(9153), 1, + ACTIONS(9133), 1, sym__quoted_content_slash, - STATE(4773), 1, + STATE(5207), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -343561,179 +381268,224 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [213335] = 6, + [252657] = 6, + ACTIONS(9135), 1, + anon_sym_PIPE, + ACTIONS(9137), 1, + sym_escape_sequence, + ACTIONS(9139), 1, + sym__quoted_content_bar, + STATE(5208), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [252678] = 6, + ACTIONS(8372), 1, + sym_escape_sequence, + ACTIONS(8374), 1, + sym__quoted_content_parenthesis, + ACTIONS(9141), 1, + anon_sym_RPAREN, + STATE(5309), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [252699] = 6, + ACTIONS(8558), 1, + sym_escape_sequence, + ACTIONS(8560), 1, + sym__quoted_content_double, + ACTIONS(9143), 1, + anon_sym_DQUOTE, + STATE(5308), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [252720] = 6, + ACTIONS(8564), 1, + sym_escape_sequence, + ACTIONS(8566), 1, + sym__quoted_content_single, + ACTIONS(9145), 1, + anon_sym_SQUOTE, + STATE(5262), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [252741] = 6, + ACTIONS(8570), 1, + sym_escape_sequence, + ACTIONS(8572), 1, + sym__quoted_content_heredoc_single, + ACTIONS(9147), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5092), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [252762] = 6, + ACTIONS(8576), 1, + sym_escape_sequence, + ACTIONS(8578), 1, + sym__quoted_content_heredoc_double, + ACTIONS(9149), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5260), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [252783] = 6, + ACTIONS(8582), 1, + sym_escape_sequence, + ACTIONS(8584), 1, + sym__quoted_content_curly, + ACTIONS(9151), 1, + anon_sym_RBRACE, + STATE(5259), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [252804] = 6, + ACTIONS(8588), 1, + sym_escape_sequence, + ACTIONS(8590), 1, + sym__quoted_content_square, + ACTIONS(9153), 1, + anon_sym_RBRACK, + STATE(5231), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [252825] = 6, + ACTIONS(8594), 1, + sym_escape_sequence, + ACTIONS(8596), 1, + sym__quoted_content_angle, ACTIONS(9155), 1, - anon_sym_DQUOTE, + anon_sym_GT, + STATE(5230), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [252846] = 6, + ACTIONS(8600), 1, + sym_escape_sequence, + ACTIONS(8602), 1, + sym__quoted_content_bar, ACTIONS(9157), 1, + anon_sym_PIPE, + STATE(5205), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [252867] = 6, + ACTIONS(8606), 1, sym_escape_sequence, + ACTIONS(8608), 1, + sym__quoted_content_slash, ACTIONS(9159), 1, - sym__quoted_content_double, - STATE(4714), 1, - aux_sym__quoted_double_repeat1, + anon_sym_SLASH, + STATE(5204), 1, + aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [213356] = 6, + [252888] = 6, + ACTIONS(8606), 1, + sym_escape_sequence, + ACTIONS(8608), 1, + sym__quoted_content_slash, ACTIONS(9161), 1, - anon_sym_RPAREN, + anon_sym_SLASH, + STATE(5204), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [252909] = 6, ACTIONS(9163), 1, - sym_escape_sequence, + anon_sym_GT, ACTIONS(9165), 1, - sym__quoted_content_parenthesis, - STATE(4715), 1, - aux_sym__quoted_parenthesis_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [213377] = 6, + sym_escape_sequence, ACTIONS(9167), 1, - anon_sym_RPAREN, + sym__quoted_content_angle, + STATE(5210), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [252930] = 6, ACTIONS(9169), 1, - sym_escape_sequence, + anon_sym_RBRACK, ACTIONS(9171), 1, - sym__quoted_content_parenthesis, - STATE(4735), 1, - aux_sym__quoted_parenthesis_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [213398] = 6, - ACTIONS(8091), 1, sym_escape_sequence, - ACTIONS(8093), 1, - sym__quoted_content_double, ACTIONS(9173), 1, - anon_sym_DQUOTE, - STATE(4778), 1, - aux_sym__quoted_double_repeat1, + sym__quoted_content_square, + STATE(5212), 1, + aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [213419] = 6, + [252951] = 6, ACTIONS(9175), 1, - anon_sym_DQUOTE, + anon_sym_RBRACE, ACTIONS(9177), 1, sym_escape_sequence, ACTIONS(9179), 1, - sym__quoted_content_double, - STATE(4734), 1, - aux_sym__quoted_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [213440] = 6, - ACTIONS(8097), 1, - sym_escape_sequence, - ACTIONS(8099), 1, - sym__quoted_content_single, - ACTIONS(9181), 1, - anon_sym_SQUOTE, - STATE(4780), 1, - aux_sym__quoted_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [213461] = 6, - ACTIONS(8085), 1, - sym_escape_sequence, - ACTIONS(8087), 1, - sym__quoted_content_parenthesis, - ACTIONS(9183), 1, - anon_sym_RPAREN, - STATE(4776), 1, - aux_sym__quoted_parenthesis_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [213482] = 6, - ACTIONS(8091), 1, - sym_escape_sequence, - ACTIONS(8093), 1, - sym__quoted_content_double, - ACTIONS(9185), 1, - anon_sym_DQUOTE, - STATE(4778), 1, - aux_sym__quoted_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [213503] = 6, - ACTIONS(8097), 1, - sym_escape_sequence, - ACTIONS(8099), 1, - sym__quoted_content_single, - ACTIONS(9187), 1, - anon_sym_SQUOTE, - STATE(4780), 1, - aux_sym__quoted_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [213524] = 6, - ACTIONS(8103), 1, - sym_escape_sequence, - ACTIONS(8105), 1, - sym__quoted_content_heredoc_single, - ACTIONS(9189), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(4782), 1, - aux_sym__quoted_heredoc_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [213545] = 6, - ACTIONS(8109), 1, - sym_escape_sequence, - ACTIONS(8111), 1, - sym__quoted_content_heredoc_double, - ACTIONS(9191), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4790), 1, - aux_sym__quoted_heredoc_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [213566] = 6, - ACTIONS(8115), 1, - sym_escape_sequence, - ACTIONS(8117), 1, sym__quoted_content_curly, - ACTIONS(9193), 1, - anon_sym_RBRACE, - STATE(4791), 1, + STATE(5213), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -343741,179 +381493,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [213587] = 6, - ACTIONS(7914), 1, - sym_escape_sequence, - ACTIONS(7916), 1, - sym__quoted_content_square, - ACTIONS(9195), 1, - anon_sym_RBRACK, - STATE(4792), 1, - aux_sym__quoted_square_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [213608] = 6, - ACTIONS(8123), 1, - sym_escape_sequence, - ACTIONS(8125), 1, - sym__quoted_content_angle, - ACTIONS(9197), 1, - anon_sym_GT, - STATE(4794), 1, - aux_sym__quoted_angle_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [213629] = 6, - ACTIONS(8129), 1, - sym_escape_sequence, - ACTIONS(8131), 1, - sym__quoted_content_bar, - ACTIONS(9199), 1, - anon_sym_PIPE, - STATE(4795), 1, - aux_sym__quoted_bar_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [213650] = 6, - ACTIONS(8135), 1, - sym_escape_sequence, - ACTIONS(8137), 1, - sym__quoted_content_slash, - ACTIONS(9201), 1, - anon_sym_SLASH, - STATE(4796), 1, - aux_sym__quoted_slash_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [213671] = 6, - ACTIONS(8103), 1, - sym_escape_sequence, - ACTIONS(8105), 1, - sym__quoted_content_heredoc_single, - ACTIONS(9203), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(4782), 1, - aux_sym__quoted_heredoc_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [213692] = 6, - ACTIONS(9205), 1, - anon_sym_SQUOTE, - ACTIONS(9207), 1, - sym_escape_sequence, - ACTIONS(9209), 1, - sym__quoted_content_single, - STATE(4732), 1, - aux_sym__quoted_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [213713] = 6, - ACTIONS(9211), 1, - anon_sym_RPAREN, - ACTIONS(9213), 1, - sym_escape_sequence, - ACTIONS(9216), 1, - sym__quoted_content_parenthesis, - STATE(4776), 1, - aux_sym__quoted_parenthesis_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [213734] = 6, - ACTIONS(9219), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(9221), 1, - sym_escape_sequence, - ACTIONS(9223), 1, - sym__quoted_content_heredoc_single, - STATE(4717), 1, - aux_sym__quoted_heredoc_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [213755] = 6, - ACTIONS(9225), 1, - anon_sym_DQUOTE, - ACTIONS(9227), 1, - sym_escape_sequence, - ACTIONS(9230), 1, - sym__quoted_content_double, - STATE(4778), 1, - aux_sym__quoted_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [213776] = 6, - ACTIONS(9233), 1, - anon_sym_GT, - ACTIONS(9235), 1, - sym_escape_sequence, - ACTIONS(9237), 1, - sym__quoted_content_angle, - STATE(4513), 1, - aux_sym__quoted_angle_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [213797] = 6, - ACTIONS(9239), 1, - anon_sym_SQUOTE, - ACTIONS(9241), 1, - sym_escape_sequence, - ACTIONS(9244), 1, - sym__quoted_content_single, - STATE(4780), 1, - aux_sym__quoted_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [213818] = 6, - ACTIONS(9247), 1, + [252972] = 6, + ACTIONS(9181), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(9249), 1, + ACTIONS(9183), 1, sym_escape_sequence, - ACTIONS(9251), 1, + ACTIONS(9185), 1, sym__quoted_content_heredoc_double, - STATE(4716), 1, + STATE(5214), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -343921,14 +381508,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [213839] = 6, - ACTIONS(9253), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(9255), 1, + [252993] = 6, + ACTIONS(8600), 1, sym_escape_sequence, - ACTIONS(9258), 1, + ACTIONS(8602), 1, + sym__quoted_content_bar, + ACTIONS(9187), 1, + anon_sym_PIPE, + STATE(5205), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [253014] = 6, + ACTIONS(9189), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(9191), 1, + sym_escape_sequence, + ACTIONS(9193), 1, sym__quoted_content_heredoc_single, - STATE(4782), 1, + STATE(5215), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -343936,14 +381538,207 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [213860] = 6, + [253035] = 6, + ACTIONS(9195), 1, + anon_sym_SQUOTE, + ACTIONS(9197), 1, + sym_escape_sequence, + ACTIONS(9199), 1, + sym__quoted_content_single, + STATE(5216), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [253056] = 6, + ACTIONS(9201), 1, + anon_sym_DQUOTE, + ACTIONS(9203), 1, + sym_escape_sequence, + ACTIONS(9205), 1, + sym__quoted_content_double, + STATE(5217), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [253077] = 6, + ACTIONS(9207), 1, + anon_sym_RPAREN, + ACTIONS(9209), 1, + sym_escape_sequence, + ACTIONS(9211), 1, + sym__quoted_content_parenthesis, + STATE(5228), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [253098] = 6, + ACTIONS(8594), 1, + sym_escape_sequence, + ACTIONS(8596), 1, + sym__quoted_content_angle, + ACTIONS(9213), 1, + anon_sym_GT, + STATE(5230), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [253119] = 6, + ACTIONS(8588), 1, + sym_escape_sequence, + ACTIONS(8590), 1, + sym__quoted_content_square, + ACTIONS(9215), 1, + anon_sym_RBRACK, + STATE(5231), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [253140] = 6, + ACTIONS(9217), 1, + anon_sym_SLASH, + ACTIONS(9219), 1, + sym_escape_sequence, + ACTIONS(9221), 1, + sym__quoted_content_slash, + STATE(5388), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [253161] = 6, + ACTIONS(8582), 1, + sym_escape_sequence, + ACTIONS(8584), 1, + sym__quoted_content_curly, + ACTIONS(9223), 1, + anon_sym_RBRACE, + STATE(5259), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [253182] = 4, + ACTIONS(8468), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + ACTIONS(8466), 3, + anon_sym_DQUOTE, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [253199] = 6, + ACTIONS(9225), 1, + anon_sym_RBRACE, + ACTIONS(9227), 1, + sym_escape_sequence, + ACTIONS(9230), 1, + sym__quoted_content_curly, + STATE(5259), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [253220] = 6, + ACTIONS(9233), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(9235), 1, + sym_escape_sequence, + ACTIONS(9238), 1, + sym__quoted_content_heredoc_double, + STATE(5260), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [253241] = 6, + ACTIONS(9241), 1, + anon_sym_RPAREN, + ACTIONS(9243), 1, + sym_escape_sequence, + ACTIONS(9245), 1, + sym__quoted_content_parenthesis, + STATE(5042), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [253262] = 6, + ACTIONS(9247), 1, + anon_sym_SQUOTE, + ACTIONS(9249), 1, + sym_escape_sequence, + ACTIONS(9252), 1, + sym__quoted_content_single, + STATE(5262), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [253283] = 6, + ACTIONS(9255), 1, + anon_sym_DQUOTE, + ACTIONS(9257), 1, + sym_escape_sequence, + ACTIONS(9259), 1, + sym__quoted_content_double, + STATE(5390), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [253304] = 6, ACTIONS(9261), 1, anon_sym_RPAREN, ACTIONS(9263), 1, sym_escape_sequence, ACTIONS(9265), 1, sym__quoted_content_parenthesis, - STATE(4821), 1, + STATE(5280), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -343951,29 +381746,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [213881] = 6, - ACTIONS(8097), 1, - sym_escape_sequence, - ACTIONS(8099), 1, - sym__quoted_content_single, + [253325] = 6, ACTIONS(9267), 1, - anon_sym_SQUOTE, - STATE(4780), 1, - aux_sym__quoted_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [213902] = 6, - ACTIONS(9269), 1, anon_sym_DQUOTE, - ACTIONS(9271), 1, + ACTIONS(9269), 1, sym_escape_sequence, - ACTIONS(9273), 1, + ACTIONS(9271), 1, sym__quoted_content_double, - STATE(4820), 1, + STATE(5281), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -343981,29 +381761,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [213923] = 6, - ACTIONS(8103), 1, - sym_escape_sequence, - ACTIONS(8105), 1, - sym__quoted_content_heredoc_single, - ACTIONS(9275), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(4782), 1, - aux_sym__quoted_heredoc_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [213944] = 6, - ACTIONS(9277), 1, + [253346] = 6, + ACTIONS(9273), 1, anon_sym_SQUOTE, - ACTIONS(9279), 1, + ACTIONS(9275), 1, sym_escape_sequence, - ACTIONS(9281), 1, + ACTIONS(9277), 1, sym__quoted_content_single, - STATE(4819), 1, + STATE(5282), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -344011,14 +381776,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [213965] = 6, - ACTIONS(9283), 1, + [253367] = 6, + ACTIONS(9279), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(9285), 1, + ACTIONS(9281), 1, sym_escape_sequence, - ACTIONS(9287), 1, + ACTIONS(9283), 1, sym__quoted_content_heredoc_single, - STATE(4818), 1, + STATE(5283), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -344026,14 +381791,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [213986] = 6, - ACTIONS(8109), 1, - sym_escape_sequence, - ACTIONS(8111), 1, - sym__quoted_content_heredoc_double, - ACTIONS(9289), 1, + [253388] = 6, + ACTIONS(9285), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4790), 1, + ACTIONS(9287), 1, + sym_escape_sequence, + ACTIONS(9289), 1, + sym__quoted_content_heredoc_double, + STATE(5284), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -344041,29 +381806,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [214007] = 6, + [253409] = 6, ACTIONS(9291), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_RBRACE, ACTIONS(9293), 1, sym_escape_sequence, - ACTIONS(9296), 1, - sym__quoted_content_heredoc_double, - STATE(4790), 1, - aux_sym__quoted_heredoc_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [214028] = 6, - ACTIONS(9299), 1, - anon_sym_RBRACE, - ACTIONS(9301), 1, - sym_escape_sequence, - ACTIONS(9304), 1, + ACTIONS(9295), 1, sym__quoted_content_curly, - STATE(4791), 1, + STATE(5285), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -344071,14 +381821,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [214049] = 6, - ACTIONS(9307), 1, + [253430] = 6, + ACTIONS(9297), 1, anon_sym_RBRACK, - ACTIONS(9309), 1, + ACTIONS(9299), 1, sym_escape_sequence, - ACTIONS(9312), 1, + ACTIONS(9301), 1, sym__quoted_content_square, - STATE(4792), 1, + STATE(5286), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -344086,29 +381836,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [214070] = 6, - ACTIONS(9315), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(9317), 1, - sym_escape_sequence, - ACTIONS(9319), 1, - sym__quoted_content_heredoc_double, - STATE(4817), 1, - aux_sym__quoted_heredoc_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [214091] = 6, - ACTIONS(9321), 1, + [253451] = 6, + ACTIONS(9303), 1, anon_sym_GT, - ACTIONS(9323), 1, + ACTIONS(9305), 1, sym_escape_sequence, - ACTIONS(9326), 1, + ACTIONS(9307), 1, sym__quoted_content_angle, - STATE(4794), 1, + STATE(5287), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -344116,14 +381851,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [214112] = 6, - ACTIONS(9329), 1, + [253472] = 6, + ACTIONS(9309), 1, anon_sym_PIPE, - ACTIONS(9331), 1, + ACTIONS(9311), 1, sym_escape_sequence, - ACTIONS(9334), 1, + ACTIONS(9313), 1, sym__quoted_content_bar, - STATE(4795), 1, + STATE(5288), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -344131,14 +381866,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [214133] = 6, - ACTIONS(9337), 1, + [253493] = 6, + ACTIONS(9315), 1, anon_sym_SLASH, - ACTIONS(9339), 1, + ACTIONS(9317), 1, sym_escape_sequence, - ACTIONS(9342), 1, + ACTIONS(9319), 1, sym__quoted_content_slash, - STATE(4796), 1, + STATE(5289), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -344146,14 +381881,179 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [214154] = 6, + [253514] = 6, + ACTIONS(9321), 1, + anon_sym_SQUOTE, + ACTIONS(9323), 1, + sym_escape_sequence, + ACTIONS(9325), 1, + sym__quoted_content_single, + STATE(5393), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [253535] = 6, + ACTIONS(9327), 1, + anon_sym_RPAREN, + ACTIONS(9329), 1, + sym_escape_sequence, + ACTIONS(9331), 1, + sym__quoted_content_parenthesis, + STATE(5320), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [253556] = 6, + ACTIONS(9333), 1, + anon_sym_DQUOTE, + ACTIONS(9335), 1, + sym_escape_sequence, + ACTIONS(9337), 1, + sym__quoted_content_double, + STATE(5321), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [253577] = 6, + ACTIONS(9339), 1, + anon_sym_SQUOTE, + ACTIONS(9341), 1, + sym_escape_sequence, + ACTIONS(9343), 1, + sym__quoted_content_single, + STATE(5345), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [253598] = 6, ACTIONS(9345), 1, - anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(9347), 1, sym_escape_sequence, ACTIONS(9349), 1, + sym__quoted_content_heredoc_single, + STATE(5394), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [253619] = 6, + ACTIONS(9351), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(9353), 1, + sym_escape_sequence, + ACTIONS(9355), 1, + sym__quoted_content_heredoc_double, + STATE(5395), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [253640] = 6, + ACTIONS(8372), 1, + sym_escape_sequence, + ACTIONS(8374), 1, + sym__quoted_content_parenthesis, + ACTIONS(9357), 1, + anon_sym_RPAREN, + STATE(5309), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [253661] = 6, + ACTIONS(8558), 1, + sym_escape_sequence, + ACTIONS(8560), 1, + sym__quoted_content_double, + ACTIONS(9359), 1, + anon_sym_DQUOTE, + STATE(5308), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [253682] = 6, + ACTIONS(8564), 1, + sym_escape_sequence, + ACTIONS(8566), 1, + sym__quoted_content_single, + ACTIONS(9361), 1, + anon_sym_SQUOTE, + STATE(5262), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [253703] = 6, + ACTIONS(8570), 1, + sym_escape_sequence, + ACTIONS(8572), 1, + sym__quoted_content_heredoc_single, + ACTIONS(9363), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5092), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [253724] = 6, + ACTIONS(8576), 1, + sym_escape_sequence, + ACTIONS(8578), 1, + sym__quoted_content_heredoc_double, + ACTIONS(9365), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5260), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [253745] = 6, + ACTIONS(8582), 1, + sym_escape_sequence, + ACTIONS(8584), 1, sym__quoted_content_curly, - STATE(4816), 1, + ACTIONS(9367), 1, + anon_sym_RBRACE, + STATE(5259), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -344161,43 +382061,1857 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [214175] = 5, + [253766] = 6, + ACTIONS(8588), 1, + sym_escape_sequence, + ACTIONS(8590), 1, + sym__quoted_content_square, + ACTIONS(9369), 1, + anon_sym_RBRACK, + STATE(5231), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [253787] = 6, + ACTIONS(8594), 1, + sym_escape_sequence, + ACTIONS(8596), 1, + sym__quoted_content_angle, + ACTIONS(9371), 1, + anon_sym_GT, + STATE(5230), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [253808] = 6, + ACTIONS(8600), 1, + sym_escape_sequence, + ACTIONS(8602), 1, + sym__quoted_content_bar, + ACTIONS(9373), 1, + anon_sym_PIPE, + STATE(5205), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [253829] = 6, + ACTIONS(8606), 1, + sym_escape_sequence, + ACTIONS(8608), 1, + sym__quoted_content_slash, + ACTIONS(9375), 1, + anon_sym_SLASH, + STATE(5204), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [253850] = 6, + ACTIONS(9377), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(9379), 1, + sym_escape_sequence, + ACTIONS(9381), 1, + sym__quoted_content_heredoc_single, + STATE(5352), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [253871] = 6, + ACTIONS(9383), 1, + anon_sym_RBRACE, + ACTIONS(9385), 1, + sym_escape_sequence, + ACTIONS(9387), 1, + sym__quoted_content_curly, + STATE(5397), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [253892] = 6, + ACTIONS(9389), 1, + anon_sym_RBRACK, + ACTIONS(9391), 1, + sym_escape_sequence, + ACTIONS(9393), 1, + sym__quoted_content_square, + STATE(5398), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [253913] = 6, + ACTIONS(9395), 1, + anon_sym_GT, + ACTIONS(9397), 1, + sym_escape_sequence, + ACTIONS(9399), 1, + sym__quoted_content_angle, + STATE(5399), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [253934] = 6, + ACTIONS(9401), 1, + anon_sym_PIPE, + ACTIONS(9403), 1, + sym_escape_sequence, + ACTIONS(9405), 1, + sym__quoted_content_bar, + STATE(5400), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [253955] = 6, + ACTIONS(9407), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(9409), 1, + sym_escape_sequence, + ACTIONS(9411), 1, + sym__quoted_content_heredoc_single, + STATE(5349), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [253976] = 6, + ACTIONS(9413), 1, + anon_sym_SLASH, + ACTIONS(9415), 1, + sym_escape_sequence, + ACTIONS(9417), 1, + sym__quoted_content_slash, + STATE(5402), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [253997] = 6, + ACTIONS(9419), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(9421), 1, + sym_escape_sequence, + ACTIONS(9423), 1, + sym__quoted_content_heredoc_double, + STATE(5386), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [254018] = 6, + ACTIONS(9425), 1, + anon_sym_RBRACE, + ACTIONS(9427), 1, + sym_escape_sequence, + ACTIONS(9429), 1, + sym__quoted_content_curly, + STATE(5389), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [254039] = 6, + ACTIONS(8606), 1, + sym_escape_sequence, + ACTIONS(8608), 1, + sym__quoted_content_slash, + ACTIONS(9431), 1, + anon_sym_SLASH, + STATE(5204), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [254060] = 6, + ACTIONS(8570), 1, + sym_escape_sequence, + ACTIONS(8572), 1, + sym__quoted_content_heredoc_single, + ACTIONS(9433), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5092), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [254081] = 6, + ACTIONS(8564), 1, + sym_escape_sequence, + ACTIONS(8566), 1, + sym__quoted_content_single, + ACTIONS(9435), 1, + anon_sym_SQUOTE, + STATE(5262), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [254102] = 6, + ACTIONS(9437), 1, + anon_sym_GT, + ACTIONS(9439), 1, + sym_escape_sequence, + ACTIONS(9441), 1, + sym__quoted_content_angle, + STATE(5384), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [254123] = 6, + ACTIONS(8558), 1, + sym_escape_sequence, + ACTIONS(8560), 1, + sym__quoted_content_double, + ACTIONS(9443), 1, + anon_sym_DQUOTE, + STATE(5308), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [254144] = 6, + ACTIONS(9445), 1, + anon_sym_RBRACK, + ACTIONS(9447), 1, + sym_escape_sequence, + ACTIONS(9449), 1, + sym__quoted_content_square, + STATE(5391), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [254165] = 6, + ACTIONS(9451), 1, + anon_sym_GT, + ACTIONS(9453), 1, + sym_escape_sequence, + ACTIONS(9455), 1, + sym__quoted_content_angle, + STATE(5392), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [254186] = 6, + ACTIONS(8594), 1, + sym_escape_sequence, + ACTIONS(8596), 1, + sym__quoted_content_angle, + ACTIONS(9457), 1, + anon_sym_GT, + STATE(5230), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [254207] = 6, + ACTIONS(9459), 1, + anon_sym_SLASH, + ACTIONS(9461), 1, + sym_escape_sequence, + ACTIONS(9463), 1, + sym__quoted_content_slash, + STATE(5403), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [254228] = 6, + ACTIONS(9465), 1, + anon_sym_DQUOTE, + ACTIONS(9467), 1, + sym_escape_sequence, + ACTIONS(9470), 1, + sym__quoted_content_double, + STATE(5308), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [254249] = 6, + ACTIONS(9473), 1, + anon_sym_RPAREN, + ACTIONS(9475), 1, + sym_escape_sequence, + ACTIONS(9478), 1, + sym__quoted_content_parenthesis, + STATE(5309), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [254270] = 6, + ACTIONS(9481), 1, + anon_sym_RPAREN, + ACTIONS(9483), 1, + sym_escape_sequence, + ACTIONS(9485), 1, + sym__quoted_content_parenthesis, + STATE(5326), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [254291] = 6, + ACTIONS(9487), 1, + anon_sym_DQUOTE, + ACTIONS(9489), 1, + sym_escape_sequence, + ACTIONS(9491), 1, + sym__quoted_content_double, + STATE(5327), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [254312] = 6, + ACTIONS(9493), 1, + anon_sym_SQUOTE, + ACTIONS(9495), 1, + sym_escape_sequence, + ACTIONS(9497), 1, + sym__quoted_content_single, + STATE(5328), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [254333] = 6, + ACTIONS(9499), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(9501), 1, + sym_escape_sequence, + ACTIONS(9503), 1, + sym__quoted_content_heredoc_single, + STATE(5329), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [254354] = 6, + ACTIONS(9505), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(9507), 1, + sym_escape_sequence, + ACTIONS(9509), 1, + sym__quoted_content_heredoc_double, + STATE(5330), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [254375] = 6, + ACTIONS(9511), 1, + anon_sym_RBRACE, + ACTIONS(9513), 1, + sym_escape_sequence, + ACTIONS(9515), 1, + sym__quoted_content_curly, + STATE(5331), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [254396] = 6, + ACTIONS(9517), 1, + anon_sym_RBRACK, + ACTIONS(9519), 1, + sym_escape_sequence, + ACTIONS(9521), 1, + sym__quoted_content_square, + STATE(5332), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [254417] = 6, + ACTIONS(9523), 1, + anon_sym_GT, + ACTIONS(9525), 1, + sym_escape_sequence, + ACTIONS(9527), 1, + sym__quoted_content_angle, + STATE(5333), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [254438] = 6, + ACTIONS(9529), 1, + anon_sym_PIPE, + ACTIONS(9531), 1, + sym_escape_sequence, + ACTIONS(9533), 1, + sym__quoted_content_bar, + STATE(5334), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [254459] = 6, + ACTIONS(9535), 1, + anon_sym_SLASH, + ACTIONS(9537), 1, + sym_escape_sequence, + ACTIONS(9539), 1, + sym__quoted_content_slash, + STATE(5335), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [254480] = 6, + ACTIONS(8372), 1, + sym_escape_sequence, + ACTIONS(8374), 1, + sym__quoted_content_parenthesis, + ACTIONS(9541), 1, + anon_sym_RPAREN, + STATE(5309), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [254501] = 6, + ACTIONS(8558), 1, + sym_escape_sequence, + ACTIONS(8560), 1, + sym__quoted_content_double, + ACTIONS(9543), 1, + anon_sym_DQUOTE, + STATE(5308), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [254522] = 6, + ACTIONS(8606), 1, + sym_escape_sequence, + ACTIONS(8608), 1, + sym__quoted_content_slash, + ACTIONS(9545), 1, + anon_sym_SLASH, + STATE(5204), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [254543] = 6, + ACTIONS(8600), 1, + sym_escape_sequence, + ACTIONS(8602), 1, + sym__quoted_content_bar, + ACTIONS(9547), 1, + anon_sym_PIPE, + STATE(5205), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [254564] = 6, + ACTIONS(8594), 1, + sym_escape_sequence, + ACTIONS(8596), 1, + sym__quoted_content_angle, + ACTIONS(9549), 1, + anon_sym_GT, + STATE(5230), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [254585] = 6, + ACTIONS(8588), 1, + sym_escape_sequence, + ACTIONS(8590), 1, + sym__quoted_content_square, + ACTIONS(9551), 1, + anon_sym_RBRACK, + STATE(5231), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [254606] = 6, + ACTIONS(8372), 1, + sym_escape_sequence, + ACTIONS(8374), 1, + sym__quoted_content_parenthesis, + ACTIONS(9553), 1, + anon_sym_RPAREN, + STATE(5309), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [254627] = 6, + ACTIONS(8558), 1, + sym_escape_sequence, + ACTIONS(8560), 1, + sym__quoted_content_double, + ACTIONS(9555), 1, + anon_sym_DQUOTE, + STATE(5308), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [254648] = 6, + ACTIONS(8564), 1, + sym_escape_sequence, + ACTIONS(8566), 1, + sym__quoted_content_single, + ACTIONS(9557), 1, + anon_sym_SQUOTE, + STATE(5262), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [254669] = 6, + ACTIONS(8570), 1, + sym_escape_sequence, + ACTIONS(8572), 1, + sym__quoted_content_heredoc_single, + ACTIONS(9559), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5092), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [254690] = 6, + ACTIONS(8576), 1, + sym_escape_sequence, + ACTIONS(8578), 1, + sym__quoted_content_heredoc_double, + ACTIONS(9561), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5260), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [254711] = 6, + ACTIONS(8582), 1, + sym_escape_sequence, + ACTIONS(8584), 1, + sym__quoted_content_curly, + ACTIONS(9563), 1, + anon_sym_RBRACE, + STATE(5259), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [254732] = 6, + ACTIONS(8588), 1, + sym_escape_sequence, + ACTIONS(8590), 1, + sym__quoted_content_square, + ACTIONS(9565), 1, + anon_sym_RBRACK, + STATE(5231), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [254753] = 6, + ACTIONS(8594), 1, + sym_escape_sequence, + ACTIONS(8596), 1, + sym__quoted_content_angle, + ACTIONS(9567), 1, + anon_sym_GT, + STATE(5230), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [254774] = 6, + ACTIONS(8600), 1, + sym_escape_sequence, + ACTIONS(8602), 1, + sym__quoted_content_bar, + ACTIONS(9569), 1, + anon_sym_PIPE, + STATE(5205), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [254795] = 6, + ACTIONS(8606), 1, + sym_escape_sequence, + ACTIONS(8608), 1, + sym__quoted_content_slash, + ACTIONS(9571), 1, + anon_sym_SLASH, + STATE(5204), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [254816] = 6, + ACTIONS(8372), 1, + sym_escape_sequence, + ACTIONS(8374), 1, + sym__quoted_content_parenthesis, + ACTIONS(9573), 1, + anon_sym_RPAREN, + STATE(5309), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [254837] = 6, + ACTIONS(8582), 1, + sym_escape_sequence, + ACTIONS(8584), 1, + sym__quoted_content_curly, + ACTIONS(9575), 1, + anon_sym_RBRACE, + STATE(5259), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [254858] = 6, + ACTIONS(8576), 1, + sym_escape_sequence, + ACTIONS(8578), 1, + sym__quoted_content_heredoc_double, + ACTIONS(9577), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5260), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [254879] = 6, + ACTIONS(8570), 1, + sym_escape_sequence, + ACTIONS(8572), 1, + sym__quoted_content_heredoc_single, + ACTIONS(9579), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5092), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [254900] = 6, + ACTIONS(8564), 1, + sym_escape_sequence, + ACTIONS(8566), 1, + sym__quoted_content_single, + ACTIONS(9581), 1, + anon_sym_SQUOTE, + STATE(5262), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [254921] = 6, + ACTIONS(9583), 1, + anon_sym_RBRACK, + ACTIONS(9585), 1, + sym_escape_sequence, + ACTIONS(9587), 1, + sym__quoted_content_square, + STATE(5383), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [254942] = 6, + ACTIONS(8558), 1, + sym_escape_sequence, + ACTIONS(8560), 1, + sym__quoted_content_double, + ACTIONS(9589), 1, + anon_sym_DQUOTE, + STATE(5308), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [254963] = 6, + ACTIONS(8372), 1, + sym_escape_sequence, + ACTIONS(8374), 1, + sym__quoted_content_parenthesis, + ACTIONS(9591), 1, + anon_sym_RPAREN, + STATE(5309), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [254984] = 6, + ACTIONS(8372), 1, + sym_escape_sequence, + ACTIONS(8374), 1, + sym__quoted_content_parenthesis, + ACTIONS(9593), 1, + anon_sym_RPAREN, + STATE(5309), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [255005] = 6, + ACTIONS(8564), 1, + sym_escape_sequence, + ACTIONS(8566), 1, + sym__quoted_content_single, + ACTIONS(9595), 1, + anon_sym_SQUOTE, + STATE(5262), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [255026] = 6, + ACTIONS(8558), 1, + sym_escape_sequence, + ACTIONS(8560), 1, + sym__quoted_content_double, + ACTIONS(9597), 1, + anon_sym_DQUOTE, + STATE(5308), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [255047] = 6, + ACTIONS(8564), 1, + sym_escape_sequence, + ACTIONS(8566), 1, + sym__quoted_content_single, + ACTIONS(9599), 1, + anon_sym_SQUOTE, + STATE(5262), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [255068] = 6, + ACTIONS(9601), 1, + anon_sym_RBRACE, + ACTIONS(9603), 1, + sym_escape_sequence, + ACTIONS(9605), 1, + sym__quoted_content_curly, + STATE(5351), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [255089] = 6, + ACTIONS(8570), 1, + sym_escape_sequence, + ACTIONS(8572), 1, + sym__quoted_content_heredoc_single, + ACTIONS(9607), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5092), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [255110] = 6, + ACTIONS(8576), 1, + sym_escape_sequence, + ACTIONS(8578), 1, + sym__quoted_content_heredoc_double, + ACTIONS(9609), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5260), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [255131] = 6, + ACTIONS(8582), 1, + sym_escape_sequence, + ACTIONS(8584), 1, + sym__quoted_content_curly, + ACTIONS(9611), 1, + anon_sym_RBRACE, + STATE(5259), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [255152] = 6, + ACTIONS(8570), 1, + sym_escape_sequence, + ACTIONS(8572), 1, + sym__quoted_content_heredoc_single, + ACTIONS(9613), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5092), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [255173] = 6, + ACTIONS(9615), 1, + anon_sym_SLASH, + ACTIONS(9617), 1, + sym_escape_sequence, + ACTIONS(9619), 1, + sym__quoted_content_slash, + STATE(5322), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [255194] = 6, + ACTIONS(9621), 1, + anon_sym_PIPE, + ACTIONS(9623), 1, + sym_escape_sequence, + ACTIONS(9625), 1, + sym__quoted_content_bar, + STATE(5323), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [255215] = 6, + ACTIONS(9627), 1, + anon_sym_SLASH, + ACTIONS(9629), 1, + sym_escape_sequence, + ACTIONS(9631), 1, + sym__quoted_content_slash, + STATE(5158), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [255236] = 6, + ACTIONS(9633), 1, + anon_sym_RPAREN, + ACTIONS(9635), 1, + sym_escape_sequence, + ACTIONS(9637), 1, + sym__quoted_content_parenthesis, + STATE(5372), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [255257] = 6, + ACTIONS(9639), 1, + anon_sym_DQUOTE, + ACTIONS(9641), 1, + sym_escape_sequence, + ACTIONS(9643), 1, + sym__quoted_content_double, + STATE(5373), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [255278] = 6, + ACTIONS(9645), 1, + anon_sym_SQUOTE, + ACTIONS(9647), 1, + sym_escape_sequence, + ACTIONS(9649), 1, + sym__quoted_content_single, + STATE(5374), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [255299] = 6, + ACTIONS(9651), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(9653), 1, + sym_escape_sequence, + ACTIONS(9655), 1, + sym__quoted_content_heredoc_single, + STATE(5375), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [255320] = 6, + ACTIONS(9657), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(9659), 1, + sym_escape_sequence, + ACTIONS(9661), 1, + sym__quoted_content_heredoc_double, + STATE(5376), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [255341] = 6, + ACTIONS(9663), 1, + anon_sym_RBRACE, + ACTIONS(9665), 1, + sym_escape_sequence, + ACTIONS(9667), 1, + sym__quoted_content_curly, + STATE(5377), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [255362] = 6, + ACTIONS(9669), 1, + anon_sym_RBRACK, + ACTIONS(9671), 1, + sym_escape_sequence, + ACTIONS(9673), 1, + sym__quoted_content_square, + STATE(5378), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [255383] = 6, + ACTIONS(9675), 1, + anon_sym_GT, + ACTIONS(9677), 1, + sym_escape_sequence, + ACTIONS(9679), 1, + sym__quoted_content_angle, + STATE(5379), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [255404] = 6, + ACTIONS(9681), 1, + anon_sym_PIPE, + ACTIONS(9683), 1, + sym_escape_sequence, + ACTIONS(9685), 1, + sym__quoted_content_bar, + STATE(5380), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [255425] = 6, + ACTIONS(9687), 1, + anon_sym_SLASH, + ACTIONS(9689), 1, + sym_escape_sequence, + ACTIONS(9691), 1, + sym__quoted_content_slash, + STATE(5381), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [255446] = 6, + ACTIONS(9693), 1, + anon_sym_RBRACK, + ACTIONS(9695), 1, + sym_escape_sequence, + ACTIONS(9697), 1, + sym__quoted_content_square, + STATE(5325), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [255467] = 6, + ACTIONS(9699), 1, + anon_sym_RBRACE, + ACTIONS(9701), 1, + sym_escape_sequence, + ACTIONS(9703), 1, + sym__quoted_content_curly, + STATE(5337), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [255488] = 6, + ACTIONS(9705), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(9707), 1, + sym_escape_sequence, + ACTIONS(9709), 1, + sym__quoted_content_heredoc_double, + STATE(5338), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [255509] = 6, + ACTIONS(9711), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(9713), 1, + sym_escape_sequence, + ACTIONS(9715), 1, + sym__quoted_content_heredoc_single, + STATE(5339), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [255530] = 6, + ACTIONS(9717), 1, + anon_sym_SQUOTE, + ACTIONS(9719), 1, + sym_escape_sequence, + ACTIONS(9721), 1, + sym__quoted_content_single, + STATE(5340), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [255551] = 6, + ACTIONS(9723), 1, + anon_sym_DQUOTE, + ACTIONS(9725), 1, + sym_escape_sequence, + ACTIONS(9727), 1, + sym__quoted_content_double, + STATE(5342), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [255572] = 6, + ACTIONS(8372), 1, + sym_escape_sequence, + ACTIONS(8374), 1, + sym__quoted_content_parenthesis, + ACTIONS(9729), 1, + anon_sym_RPAREN, + STATE(5309), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [255593] = 6, + ACTIONS(8558), 1, + sym_escape_sequence, + ACTIONS(8560), 1, + sym__quoted_content_double, + ACTIONS(9731), 1, + anon_sym_DQUOTE, + STATE(5308), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [255614] = 6, + ACTIONS(8564), 1, + sym_escape_sequence, + ACTIONS(8566), 1, + sym__quoted_content_single, + ACTIONS(9733), 1, + anon_sym_SQUOTE, + STATE(5262), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [255635] = 6, + ACTIONS(8570), 1, + sym_escape_sequence, + ACTIONS(8572), 1, + sym__quoted_content_heredoc_single, + ACTIONS(9735), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5092), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [255656] = 6, + ACTIONS(8576), 1, + sym_escape_sequence, + ACTIONS(8578), 1, + sym__quoted_content_heredoc_double, + ACTIONS(9737), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5260), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [255677] = 6, + ACTIONS(8582), 1, + sym_escape_sequence, + ACTIONS(8584), 1, + sym__quoted_content_curly, + ACTIONS(9739), 1, + anon_sym_RBRACE, + STATE(5259), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [255698] = 6, + ACTIONS(8588), 1, + sym_escape_sequence, + ACTIONS(8590), 1, + sym__quoted_content_square, + ACTIONS(9741), 1, + anon_sym_RBRACK, + STATE(5231), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [255719] = 6, + ACTIONS(8594), 1, + sym_escape_sequence, + ACTIONS(8596), 1, + sym__quoted_content_angle, + ACTIONS(9743), 1, + anon_sym_GT, + STATE(5230), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [255740] = 6, + ACTIONS(8600), 1, + sym_escape_sequence, + ACTIONS(8602), 1, + sym__quoted_content_bar, + ACTIONS(9745), 1, + anon_sym_PIPE, + STATE(5205), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [255761] = 6, + ACTIONS(8606), 1, + sym_escape_sequence, + ACTIONS(8608), 1, + sym__quoted_content_slash, + ACTIONS(9747), 1, + anon_sym_SLASH, + STATE(5204), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [255782] = 6, + ACTIONS(9749), 1, + anon_sym_RPAREN, + ACTIONS(9751), 1, + sym_escape_sequence, + ACTIONS(9753), 1, + sym__quoted_content_parenthesis, + STATE(5343), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [255803] = 6, + ACTIONS(8588), 1, + sym_escape_sequence, + ACTIONS(8590), 1, + sym__quoted_content_square, + ACTIONS(9755), 1, + anon_sym_RBRACK, + STATE(5231), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [255824] = 6, + ACTIONS(8594), 1, + sym_escape_sequence, + ACTIONS(8596), 1, + sym__quoted_content_angle, + ACTIONS(9757), 1, + anon_sym_GT, + STATE(5230), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [255845] = 6, + ACTIONS(8600), 1, + sym_escape_sequence, + ACTIONS(8602), 1, + sym__quoted_content_bar, + ACTIONS(9759), 1, + anon_sym_PIPE, + STATE(5205), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [255866] = 6, + ACTIONS(8576), 1, + sym_escape_sequence, + ACTIONS(8578), 1, + sym__quoted_content_heredoc_double, + ACTIONS(9761), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5260), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [255887] = 6, + ACTIONS(9763), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(9765), 1, + sym_escape_sequence, + ACTIONS(9767), 1, + sym__quoted_content_heredoc_double, + STATE(5350), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [255908] = 6, + ACTIONS(8606), 1, + sym_escape_sequence, + ACTIONS(8608), 1, + sym__quoted_content_slash, + ACTIONS(9769), 1, + anon_sym_SLASH, + STATE(5204), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [255929] = 6, + ACTIONS(8582), 1, + sym_escape_sequence, + ACTIONS(8584), 1, + sym__quoted_content_curly, + ACTIONS(9771), 1, + anon_sym_RBRACE, + STATE(5259), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [255950] = 6, + ACTIONS(8558), 1, + sym_escape_sequence, + ACTIONS(8560), 1, + sym__quoted_content_double, + ACTIONS(9773), 1, + anon_sym_DQUOTE, + STATE(5308), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [255971] = 6, + ACTIONS(8588), 1, + sym_escape_sequence, + ACTIONS(8590), 1, + sym__quoted_content_square, + ACTIONS(9775), 1, + anon_sym_RBRACK, + STATE(5231), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [255992] = 6, + ACTIONS(8594), 1, + sym_escape_sequence, + ACTIONS(8596), 1, + sym__quoted_content_angle, + ACTIONS(9777), 1, + anon_sym_GT, + STATE(5230), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [256013] = 6, + ACTIONS(8564), 1, + sym_escape_sequence, + ACTIONS(8566), 1, + sym__quoted_content_single, + ACTIONS(9779), 1, + anon_sym_SQUOTE, + STATE(5262), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [256034] = 6, + ACTIONS(8570), 1, + sym_escape_sequence, + ACTIONS(8572), 1, + sym__quoted_content_heredoc_single, + ACTIONS(9781), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5092), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [256055] = 6, + ACTIONS(8576), 1, + sym_escape_sequence, + ACTIONS(8578), 1, + sym__quoted_content_heredoc_double, + ACTIONS(9783), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5260), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [256076] = 6, + ACTIONS(8600), 1, + sym_escape_sequence, + ACTIONS(8602), 1, + sym__quoted_content_bar, + ACTIONS(9785), 1, + anon_sym_PIPE, + STATE(5205), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [256097] = 6, + ACTIONS(8582), 1, + sym_escape_sequence, + ACTIONS(8584), 1, + sym__quoted_content_curly, + ACTIONS(9787), 1, + anon_sym_RBRACE, + STATE(5259), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [256118] = 6, + ACTIONS(8588), 1, + sym_escape_sequence, + ACTIONS(8590), 1, + sym__quoted_content_square, + ACTIONS(9789), 1, + anon_sym_RBRACK, + STATE(5231), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [256139] = 6, + ACTIONS(8594), 1, + sym_escape_sequence, + ACTIONS(8596), 1, + sym__quoted_content_angle, + ACTIONS(9791), 1, + anon_sym_GT, + STATE(5230), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [256160] = 6, + ACTIONS(8600), 1, + sym_escape_sequence, + ACTIONS(8602), 1, + sym__quoted_content_bar, + ACTIONS(9793), 1, + anon_sym_PIPE, + STATE(5205), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [256181] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(264), 1, + ACTIONS(377), 1, anon_sym_DQUOTE, - ACTIONS(266), 1, + ACTIONS(379), 1, anon_sym_SQUOTE, - STATE(1251), 2, + STATE(2181), 1, sym__quoted_i_double, + STATE(2184), 1, sym__quoted_i_single, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [214194] = 6, - ACTIONS(9351), 1, - anon_sym_RBRACK, - ACTIONS(9353), 1, + [256202] = 6, + ACTIONS(8606), 1, sym_escape_sequence, - ACTIONS(9355), 1, - sym__quoted_content_square, - STATE(4815), 1, - aux_sym__quoted_square_repeat1, + ACTIONS(8608), 1, + sym__quoted_content_slash, + ACTIONS(9795), 1, + anon_sym_SLASH, + STATE(5204), 1, + aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [214215] = 6, - ACTIONS(9357), 1, - anon_sym_GT, - ACTIONS(9359), 1, + [256223] = 6, + ACTIONS(8606), 1, sym_escape_sequence, - ACTIONS(9361), 1, + ACTIONS(8608), 1, + sym__quoted_content_slash, + ACTIONS(9797), 1, + anon_sym_SLASH, + STATE(5204), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [256244] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(838), 1, + anon_sym_DQUOTE, + ACTIONS(840), 1, + anon_sym_SQUOTE, + STATE(3837), 1, + sym__quoted_i_single, + STATE(3839), 1, + sym__quoted_i_double, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [256265] = 4, + ACTIONS(8468), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + ACTIONS(8466), 3, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [256282] = 6, + ACTIONS(9799), 1, + anon_sym_SLASH, + ACTIONS(9801), 1, + sym_escape_sequence, + ACTIONS(9803), 1, + sym__quoted_content_slash, + STATE(5168), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [256303] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(207), 1, + anon_sym_DQUOTE, + ACTIONS(209), 1, + anon_sym_SQUOTE, + STATE(1224), 1, + sym__quoted_i_single, + STATE(1225), 1, + sym__quoted_i_double, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [256324] = 6, + ACTIONS(9805), 1, + anon_sym_PIPE, + ACTIONS(9807), 1, + sym_escape_sequence, + ACTIONS(9809), 1, + sym__quoted_content_bar, + STATE(5170), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [256345] = 6, + ACTIONS(9811), 1, + anon_sym_GT, + ACTIONS(9813), 1, + sym_escape_sequence, + ACTIONS(9815), 1, sym__quoted_content_angle, - STATE(4814), 1, + STATE(5306), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -344205,44 +383919,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [214236] = 6, - ACTIONS(8115), 1, + [256366] = 6, + ACTIONS(8372), 1, sym_escape_sequence, - ACTIONS(8117), 1, - sym__quoted_content_curly, - ACTIONS(9363), 1, - anon_sym_RBRACE, - STATE(4791), 1, - aux_sym__quoted_curly_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [214257] = 6, - ACTIONS(7914), 1, - sym_escape_sequence, - ACTIONS(7916), 1, - sym__quoted_content_square, - ACTIONS(9365), 1, - anon_sym_RBRACK, - STATE(4792), 1, - aux_sym__quoted_square_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [214278] = 6, - ACTIONS(9367), 1, - anon_sym_RPAREN, - ACTIONS(9369), 1, - sym_escape_sequence, - ACTIONS(9371), 1, + ACTIONS(8374), 1, sym__quoted_content_parenthesis, - STATE(4728), 1, + ACTIONS(9817), 1, + anon_sym_RPAREN, + STATE(5309), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -344250,149 +383934,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [214299] = 6, - ACTIONS(9373), 1, - anon_sym_DQUOTE, - ACTIONS(9375), 1, + [256387] = 6, + ACTIONS(8600), 1, sym_escape_sequence, - ACTIONS(9377), 1, - sym__quoted_content_double, - STATE(4695), 1, - aux_sym__quoted_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [214320] = 6, - ACTIONS(9379), 1, - anon_sym_SQUOTE, - ACTIONS(9381), 1, - sym_escape_sequence, - ACTIONS(9383), 1, - sym__quoted_content_single, - STATE(4691), 1, - aux_sym__quoted_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [214341] = 6, - ACTIONS(9385), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(9387), 1, - sym_escape_sequence, - ACTIONS(9389), 1, - sym__quoted_content_heredoc_single, - STATE(4690), 1, - aux_sym__quoted_heredoc_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [214362] = 6, - ACTIONS(9391), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(9393), 1, - sym_escape_sequence, - ACTIONS(9395), 1, - sym__quoted_content_heredoc_double, - STATE(4689), 1, - aux_sym__quoted_heredoc_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [214383] = 6, - ACTIONS(9397), 1, - anon_sym_RBRACE, - ACTIONS(9399), 1, - sym_escape_sequence, - ACTIONS(9401), 1, - sym__quoted_content_curly, - STATE(4688), 1, - aux_sym__quoted_curly_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [214404] = 6, - ACTIONS(9403), 1, - anon_sym_RBRACK, - ACTIONS(9405), 1, - sym_escape_sequence, - ACTIONS(9407), 1, - sym__quoted_content_square, - STATE(4686), 1, - aux_sym__quoted_square_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [214425] = 6, - ACTIONS(9409), 1, - anon_sym_GT, - ACTIONS(9411), 1, - sym_escape_sequence, - ACTIONS(9413), 1, - sym__quoted_content_angle, - STATE(4685), 1, - aux_sym__quoted_angle_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [214446] = 6, - ACTIONS(8123), 1, - sym_escape_sequence, - ACTIONS(8125), 1, - sym__quoted_content_angle, - ACTIONS(9415), 1, - anon_sym_GT, - STATE(4794), 1, - aux_sym__quoted_angle_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [214467] = 6, - ACTIONS(8135), 1, - sym_escape_sequence, - ACTIONS(8137), 1, - sym__quoted_content_slash, - ACTIONS(9417), 1, - anon_sym_SLASH, - STATE(4796), 1, - aux_sym__quoted_slash_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [214488] = 6, - ACTIONS(8129), 1, - sym_escape_sequence, - ACTIONS(8131), 1, + ACTIONS(8602), 1, sym__quoted_content_bar, - ACTIONS(9419), 1, + ACTIONS(9819), 1, anon_sym_PIPE, - STATE(4795), 1, + STATE(5205), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -344400,14 +383949,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [214509] = 6, - ACTIONS(8123), 1, + [256408] = 6, + ACTIONS(8594), 1, sym_escape_sequence, - ACTIONS(8125), 1, + ACTIONS(8596), 1, sym__quoted_content_angle, - ACTIONS(9421), 1, + ACTIONS(9821), 1, anon_sym_GT, - STATE(4794), 1, + STATE(5230), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -344415,14 +383964,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [214530] = 6, - ACTIONS(7914), 1, + [256429] = 6, + ACTIONS(8588), 1, sym_escape_sequence, - ACTIONS(7916), 1, + ACTIONS(8590), 1, sym__quoted_content_square, - ACTIONS(9423), 1, + ACTIONS(9823), 1, anon_sym_RBRACK, - STATE(4792), 1, + STATE(5231), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -344430,14 +383979,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [214551] = 6, - ACTIONS(8115), 1, + [256450] = 6, + ACTIONS(8582), 1, sym_escape_sequence, - ACTIONS(8117), 1, + ACTIONS(8584), 1, sym__quoted_content_curly, - ACTIONS(9425), 1, + ACTIONS(9825), 1, anon_sym_RBRACE, - STATE(4791), 1, + STATE(5259), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -344445,14 +383994,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [214572] = 6, - ACTIONS(8109), 1, + [256471] = 6, + ACTIONS(8576), 1, sym_escape_sequence, - ACTIONS(8111), 1, + ACTIONS(8578), 1, sym__quoted_content_heredoc_double, - ACTIONS(9427), 1, + ACTIONS(9827), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4790), 1, + STATE(5260), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -344460,14 +384009,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [214593] = 6, - ACTIONS(8103), 1, + [256492] = 6, + ACTIONS(8570), 1, sym_escape_sequence, - ACTIONS(8105), 1, + ACTIONS(8572), 1, sym__quoted_content_heredoc_single, - ACTIONS(9429), 1, + ACTIONS(9829), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(4782), 1, + STATE(5092), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -344475,14 +384024,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [214614] = 6, - ACTIONS(8097), 1, + [256513] = 6, + ACTIONS(8564), 1, sym_escape_sequence, - ACTIONS(8099), 1, + ACTIONS(8566), 1, sym__quoted_content_single, - ACTIONS(9431), 1, + ACTIONS(9831), 1, anon_sym_SQUOTE, - STATE(4780), 1, + STATE(5262), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -344490,14 +384039,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [214635] = 6, - ACTIONS(8091), 1, + [256534] = 6, + ACTIONS(8558), 1, sym_escape_sequence, - ACTIONS(8093), 1, + ACTIONS(8560), 1, sym__quoted_content_double, - ACTIONS(9433), 1, + ACTIONS(9833), 1, anon_sym_DQUOTE, - STATE(4778), 1, + STATE(5308), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -344505,14 +384054,254 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [214656] = 6, - ACTIONS(8085), 1, + [256555] = 6, + ACTIONS(9835), 1, + anon_sym_PIPE, + ACTIONS(9837), 1, sym_escape_sequence, - ACTIONS(8087), 1, - sym__quoted_content_parenthesis, - ACTIONS(9435), 1, + ACTIONS(9839), 1, + sym__quoted_content_bar, + STATE(5396), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [256576] = 6, + ACTIONS(9841), 1, + anon_sym_RBRACK, + ACTIONS(9843), 1, + sym_escape_sequence, + ACTIONS(9845), 1, + sym__quoted_content_square, + STATE(5182), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [256597] = 6, + ACTIONS(9847), 1, + anon_sym_RBRACE, + ACTIONS(9849), 1, + sym_escape_sequence, + ACTIONS(9851), 1, + sym__quoted_content_curly, + STATE(5185), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [256618] = 6, + ACTIONS(9853), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(9855), 1, + sym_escape_sequence, + ACTIONS(9857), 1, + sym__quoted_content_heredoc_double, + STATE(5186), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [256639] = 6, + ACTIONS(9859), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(9861), 1, + sym_escape_sequence, + ACTIONS(9863), 1, + sym__quoted_content_heredoc_single, + STATE(5187), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [256660] = 6, + ACTIONS(9865), 1, + anon_sym_SQUOTE, + ACTIONS(9867), 1, + sym_escape_sequence, + ACTIONS(9869), 1, + sym__quoted_content_single, + STATE(5200), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [256681] = 6, + ACTIONS(9871), 1, + anon_sym_DQUOTE, + ACTIONS(9873), 1, + sym_escape_sequence, + ACTIONS(9875), 1, + sym__quoted_content_double, + STATE(5202), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [256702] = 6, + ACTIONS(9877), 1, + anon_sym_SLASH, + ACTIONS(9879), 1, + sym_escape_sequence, + ACTIONS(9881), 1, + sym__quoted_content_slash, + STATE(5299), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [256723] = 6, + ACTIONS(9883), 1, + anon_sym_PIPE, + ACTIONS(9885), 1, + sym_escape_sequence, + ACTIONS(9887), 1, + sym__quoted_content_bar, + STATE(5411), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [256744] = 6, + ACTIONS(9889), 1, + anon_sym_GT, + ACTIONS(9891), 1, + sym_escape_sequence, + ACTIONS(9893), 1, + sym__quoted_content_angle, + STATE(5412), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [256765] = 6, + ACTIONS(9895), 1, + anon_sym_RBRACK, + ACTIONS(9897), 1, + sym_escape_sequence, + ACTIONS(9899), 1, + sym__quoted_content_square, + STATE(5413), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [256786] = 6, + ACTIONS(9901), 1, + anon_sym_RBRACE, + ACTIONS(9903), 1, + sym_escape_sequence, + ACTIONS(9905), 1, + sym__quoted_content_curly, + STATE(5414), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [256807] = 6, + ACTIONS(9907), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(9909), 1, + sym_escape_sequence, + ACTIONS(9911), 1, + sym__quoted_content_heredoc_double, + STATE(5415), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [256828] = 6, + ACTIONS(9913), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(9915), 1, + sym_escape_sequence, + ACTIONS(9917), 1, + sym__quoted_content_heredoc_single, + STATE(5416), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [256849] = 6, + ACTIONS(9919), 1, + anon_sym_SQUOTE, + ACTIONS(9921), 1, + sym_escape_sequence, + ACTIONS(9923), 1, + sym__quoted_content_single, + STATE(5417), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [256870] = 6, + ACTIONS(9925), 1, + anon_sym_DQUOTE, + ACTIONS(9927), 1, + sym_escape_sequence, + ACTIONS(9929), 1, + sym__quoted_content_double, + STATE(5418), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [256891] = 6, + ACTIONS(9931), 1, anon_sym_RPAREN, - STATE(4776), 1, + ACTIONS(9933), 1, + sym_escape_sequence, + ACTIONS(9935), 1, + sym__quoted_content_parenthesis, + STATE(5410), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -344520,217 +384309,103 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [214677] = 6, - ACTIONS(9437), 1, - anon_sym_SLASH, - ACTIONS(9439), 1, - sym_escape_sequence, - ACTIONS(9441), 1, - sym__quoted_content_slash, - STATE(4556), 1, - aux_sym__quoted_slash_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [214698] = 6, - ACTIONS(9443), 1, - anon_sym_PIPE, - ACTIONS(9445), 1, - sym_escape_sequence, - ACTIONS(9447), 1, - sym__quoted_content_bar, - STATE(4683), 1, - aux_sym__quoted_bar_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [214719] = 6, - ACTIONS(9449), 1, - anon_sym_SLASH, - ACTIONS(9451), 1, - sym_escape_sequence, - ACTIONS(9453), 1, - sym__quoted_content_slash, - STATE(4678), 1, - aux_sym__quoted_slash_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [214740] = 6, - ACTIONS(9455), 1, - anon_sym_PIPE, - ACTIONS(9457), 1, - sym_escape_sequence, - ACTIONS(9459), 1, - sym__quoted_content_bar, - STATE(4682), 1, - aux_sym__quoted_bar_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [214761] = 6, - ACTIONS(9461), 1, - anon_sym_GT, - ACTIONS(9463), 1, - sym_escape_sequence, - ACTIONS(9465), 1, - sym__quoted_content_angle, - STATE(4684), 1, - aux_sym__quoted_angle_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [214782] = 6, - ACTIONS(9467), 1, - anon_sym_RBRACK, - ACTIONS(9469), 1, - sym_escape_sequence, - ACTIONS(9471), 1, - sym__quoted_content_square, - STATE(4693), 1, - aux_sym__quoted_square_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [214803] = 6, - ACTIONS(9473), 1, - anon_sym_RBRACE, - ACTIONS(9475), 1, - sym_escape_sequence, - ACTIONS(9477), 1, - sym__quoted_content_curly, - STATE(4694), 1, - aux_sym__quoted_curly_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [214824] = 6, - ACTIONS(9479), 1, - anon_sym_SLASH, - ACTIONS(9481), 1, - sym_escape_sequence, - ACTIONS(9483), 1, - sym__quoted_content_slash, - STATE(4812), 1, - aux_sym__quoted_slash_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [214845] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3471), 1, + [256912] = 6, + ACTIONS(9937), 1, anon_sym_RPAREN, - ACTIONS(9485), 1, - anon_sym_COMMA, - STATE(4835), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 3, + ACTIONS(9939), 1, + sym_escape_sequence, + ACTIONS(9941), 1, + sym__quoted_content_parenthesis, + STATE(5203), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(5), 2, aux_sym__terminator_token1, - [214863] = 3, + sym_comment, + [256933] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(9487), 3, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_GT_GT, - [214877] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5448), 1, - anon_sym_GT_GT, - ACTIONS(9489), 1, - anon_sym_COMMA, - STATE(4839), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [214895] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7765), 1, - anon_sym_GT_GT, - ACTIONS(9491), 1, - anon_sym_COMMA, - STATE(4832), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [214913] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4482), 3, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_GT_GT, - [214927] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3477), 1, + ACTIONS(9943), 1, anon_sym_RPAREN, - ACTIONS(9485), 1, + ACTIONS(9945), 1, anon_sym_COMMA, - STATE(4368), 1, - aux_sym_keywords_repeat1, + STATE(5449), 1, + aux_sym__stab_clause_arguments_with_parentheses_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [214945] = 5, + [256951] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(1183), 1, - anon_sym_GT_GT, - ACTIONS(9493), 1, + ACTIONS(9947), 1, + anon_sym_RPAREN, + ACTIONS(9949), 1, anon_sym_COMMA, - STATE(4843), 1, + STATE(4926), 1, aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [214963] = 4, + [256969] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(9495), 1, + ACTIONS(3136), 1, + anon_sym_GT_GT, + ACTIONS(9951), 1, + anon_sym_COMMA, + STATE(5439), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [256987] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5900), 1, + anon_sym_GT_GT, + ACTIONS(9954), 1, + anon_sym_COMMA, + STATE(5439), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257005] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3459), 1, + anon_sym_GT_GT, + ACTIONS(9956), 1, + anon_sym_COMMA, + STATE(5441), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257023] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8360), 1, + anon_sym_GT_GT, + ACTIONS(9959), 1, + anon_sym_COMMA, + STATE(5440), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257041] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9961), 1, anon_sym_RPAREN, ACTIONS(2918), 2, anon_sym_when, @@ -344739,1281 +384414,2199 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [214979] = 5, + [257057] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(9497), 1, + ACTIONS(3221), 1, anon_sym_RPAREN, - ACTIONS(9499), 1, + ACTIONS(9963), 1, anon_sym_COMMA, - STATE(4842), 1, - aux_sym__stab_clause_arguments_with_parentheses_repeat1, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [214997] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3481), 1, - anon_sym_GT_GT, - ACTIONS(9501), 1, - anon_sym_COMMA, - STATE(4839), 1, + STATE(5446), 1, aux_sym_keywords_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [215015] = 3, + [257075] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(1241), 3, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(1123), 1, anon_sym_GT_GT, - [215029] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9504), 1, - anon_sym_RPAREN, - ACTIONS(9506), 1, + ACTIONS(9965), 1, anon_sym_COMMA, - STATE(4405), 1, + STATE(5441), 1, aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [215047] = 5, + [257093] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4594), 1, + ACTIONS(3151), 1, anon_sym_RPAREN, - ACTIONS(9508), 1, + ACTIONS(9963), 1, anon_sym_COMMA, - STATE(4842), 1, + STATE(4990), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257111] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(1121), 3, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_GT_GT, + [257125] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4895), 3, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_GT_GT, + [257139] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5004), 1, + anon_sym_RPAREN, + ACTIONS(9967), 1, + anon_sym_COMMA, + STATE(5449), 1, aux_sym__stab_clause_arguments_with_parentheses_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [215065] = 5, + [257157] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(3112), 1, - anon_sym_GT_GT, - ACTIONS(9511), 1, - anon_sym_COMMA, - STATE(4843), 1, - aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [215083] = 4, + ACTIONS(9970), 3, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_GT_GT, + [257171] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(9514), 1, + ACTIONS(9972), 1, anon_sym_RPAREN, - ACTIONS(9516), 2, + ACTIONS(9974), 2, anon_sym_when, anon_sym_DASH_GT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [215099] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9518), 1, - aux_sym_sigil_token1, - ACTIONS(9520), 1, - aux_sym_sigil_token2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [215114] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9522), 1, - aux_sym_sigil_token1, - ACTIONS(9524), 1, - aux_sym_sigil_token2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [215129] = 4, + [257187] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(592), 1, anon_sym_do, - STATE(3236), 1, + STATE(3739), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [215144] = 4, + [257202] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(9526), 1, + ACTIONS(9976), 1, aux_sym_sigil_token1, - ACTIONS(9528), 1, + ACTIONS(9978), 1, aux_sym_sigil_token2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [215159] = 4, + [257217] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3034), 1, + ACTIONS(9980), 1, + aux_sym_sigil_token1, + ACTIONS(9982), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257232] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9984), 1, + aux_sym_sigil_token1, + ACTIONS(9986), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257247] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9988), 1, anon_sym_LPAREN, - STATE(1155), 1, + STATE(3576), 1, sym__call_arguments_with_parentheses, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [215174] = 4, + [257262] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(305), 1, - anon_sym_do, - STATE(1652), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [215189] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(305), 1, - anon_sym_do, - STATE(1651), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [215204] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9530), 2, + ACTIONS(9990), 2, anon_sym_when, anon_sym_DASH_GT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [215217] = 4, + [257275] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(546), 1, + ACTIONS(414), 1, anon_sym_do, - STATE(3252), 1, + STATE(2582), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [215232] = 4, + [257290] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9992), 1, + anon_sym_LPAREN, + STATE(3646), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257305] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(414), 1, + anon_sym_do, + STATE(2991), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257320] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(592), 1, anon_sym_do, - STATE(3307), 1, + STATE(3659), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [215247] = 4, + [257335] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9994), 2, + anon_sym_when, + anon_sym_DASH_GT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257348] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9996), 1, + aux_sym_sigil_token1, + ACTIONS(9998), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257363] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(592), 1, + anon_sym_do, + STATE(3738), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257378] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(592), 1, + anon_sym_do, + STATE(3737), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257393] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10000), 1, + anon_sym_LPAREN, + STATE(1358), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257408] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3062), 1, + anon_sym_LPAREN, + STATE(1151), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257423] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3751), 1, + anon_sym_LPAREN, + STATE(1819), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257438] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2918), 2, + anon_sym_when, + anon_sym_DASH_GT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257451] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(414), 1, + anon_sym_do, + STATE(2990), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257466] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10002), 1, + aux_sym_sigil_token1, + ACTIONS(10004), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257481] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10006), 1, + anon_sym_when, + ACTIONS(10008), 1, + anon_sym_DASH_GT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257496] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10008), 1, + anon_sym_DASH_GT, + ACTIONS(10010), 1, + anon_sym_when, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257511] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10012), 1, + aux_sym_sigil_token1, + ACTIONS(10014), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257526] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(414), 1, + anon_sym_do, + STATE(2989), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257541] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(647), 1, + anon_sym_do, + STATE(4129), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257556] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(305), 1, anon_sym_do, - STATE(1537), 1, + STATE(1944), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [215262] = 4, + [257571] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(305), 1, + anon_sym_do, + STATE(1943), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257586] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(305), 1, + anon_sym_do, + STATE(1662), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257601] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(305), 1, + anon_sym_do, + STATE(1941), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257616] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(305), 1, + anon_sym_do, + STATE(1940), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257631] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(414), 1, + anon_sym_do, + STATE(2583), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257646] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(305), 1, + anon_sym_do, + STATE(1938), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257661] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(305), 1, + anon_sym_do, + STATE(1663), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257676] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(592), 1, + anon_sym_do, + STATE(3532), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257691] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(592), 1, + anon_sym_do, + STATE(3736), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257706] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(592), 1, + anon_sym_do, + STATE(3735), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257721] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(647), 1, + anon_sym_do, + STATE(4128), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257736] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(647), 1, + anon_sym_do, + STATE(3952), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257751] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10016), 1, + aux_sym_sigil_token1, + ACTIONS(10018), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257766] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(647), 1, + anon_sym_do, + STATE(4126), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257781] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(647), 1, + anon_sym_do, + STATE(4124), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257796] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10020), 2, + anon_sym_when, + anon_sym_DASH_GT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257809] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(647), 1, + anon_sym_do, + STATE(4121), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257824] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10022), 1, + aux_sym_sigil_token1, + ACTIONS(10024), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257839] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(414), 1, + anon_sym_do, + STATE(2987), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257854] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(647), 1, + anon_sym_do, + STATE(3956), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257869] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4251), 1, + anon_sym_LPAREN, + STATE(3116), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257884] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10026), 1, + aux_sym_sigil_token1, + ACTIONS(10028), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257899] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3995), 1, + anon_sym_LPAREN, + STATE(2349), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257914] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10030), 1, + aux_sym_sigil_token1, + ACTIONS(10032), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257929] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(305), 1, + anon_sym_do, + STATE(1885), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257944] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10034), 1, + aux_sym_sigil_token1, + ACTIONS(10036), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257959] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(233), 1, + anon_sym_do, + STATE(1640), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257974] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10038), 1, + aux_sym_sigil_token1, + ACTIONS(10040), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257989] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(414), 1, + anon_sym_do, + STATE(2986), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [258004] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(2976), 1, anon_sym_LPAREN, - STATE(1126), 1, + STATE(1124), 1, sym__call_arguments_with_parentheses, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [215277] = 4, + [258019] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(9532), 1, + ACTIONS(552), 1, + anon_sym_do, + STATE(3538), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [258034] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10042), 1, aux_sym_sigil_token1, - ACTIONS(9534), 1, + ACTIONS(10044), 1, aux_sym_sigil_token2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [215292] = 4, + [258049] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(9536), 1, + ACTIONS(10046), 1, aux_sym_sigil_token1, - ACTIONS(9538), 1, + ACTIONS(10048), 1, aux_sym_sigil_token2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [215307] = 4, + [258064] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(9540), 1, + ACTIONS(647), 1, + anon_sym_do, + STATE(4022), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [258079] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10050), 1, aux_sym_sigil_token1, - ACTIONS(9542), 1, + ACTIONS(10052), 1, aux_sym_sigil_token2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [215322] = 4, + [258094] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10054), 1, + aux_sym_sigil_token1, + ACTIONS(10056), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [258109] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(414), 1, + anon_sym_do, + STATE(3073), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [258124] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(552), 1, + anon_sym_do, + STATE(3949), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [258139] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(552), 1, + anon_sym_do, + STATE(3850), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [258154] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10058), 1, + anon_sym_LPAREN, + STATE(2510), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [258169] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(233), 1, + anon_sym_do, + STATE(1460), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [258184] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(592), 1, anon_sym_do, - STATE(3235), 1, + STATE(3769), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [215337] = 4, + [258199] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(9544), 1, + ACTIONS(10060), 1, aux_sym_sigil_token1, - ACTIONS(9546), 1, + ACTIONS(10062), 1, aux_sym_sigil_token2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [215352] = 4, + [258214] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(592), 1, + ACTIONS(552), 1, anon_sym_do, - STATE(3234), 1, + STATE(3848), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [215367] = 4, + [258229] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(9548), 1, - aux_sym_sigil_token1, - ACTIONS(9550), 1, - aux_sym_sigil_token2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [215382] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9552), 1, - aux_sym_sigil_token1, - ACTIONS(9554), 1, - aux_sym_sigil_token2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [215397] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(305), 1, - anon_sym_do, - STATE(1615), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [215412] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9556), 1, + ACTIONS(10064), 1, anon_sym_LPAREN, - STATE(2931), 1, + STATE(1673), 1, sym__call_arguments_with_parentheses, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [215427] = 4, + [258244] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(9558), 1, - aux_sym_sigil_token1, - ACTIONS(9560), 1, - aux_sym_sigil_token2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [215442] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9562), 2, + ACTIONS(10066), 2, anon_sym_when, anon_sym_DASH_GT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [215455] = 4, + [258257] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(592), 1, - anon_sym_do, - STATE(3233), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [215470] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(546), 1, - anon_sym_do, - STATE(3243), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [215485] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3778), 1, - anon_sym_LPAREN, - STATE(2261), 1, - sym__call_arguments_with_parentheses, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [215500] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2918), 2, - anon_sym_when, - anon_sym_DASH_GT, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [215513] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(592), 1, - anon_sym_do, - STATE(3231), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [215528] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9564), 1, + ACTIONS(10068), 1, aux_sym_sigil_token1, - ACTIONS(9566), 1, + ACTIONS(10070), 1, aux_sym_sigil_token2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [215543] = 3, + [258272] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(9516), 2, - anon_sym_when, - anon_sym_DASH_GT, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [215556] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9568), 1, - anon_sym_when, - ACTIONS(9570), 1, - anon_sym_DASH_GT, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [215571] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9570), 1, - anon_sym_DASH_GT, - ACTIONS(9572), 1, - anon_sym_when, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [215586] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9574), 1, - aux_sym_sigil_token1, - ACTIONS(9576), 1, - aux_sym_sigil_token2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [215601] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9578), 1, - anon_sym_LPAREN, - STATE(1568), 1, - sym__call_arguments_with_parentheses, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [215616] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9580), 1, - anon_sym_LPAREN, - STATE(1420), 1, - sym__call_arguments_with_parentheses, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [215631] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(305), 1, + ACTIONS(552), 1, anon_sym_do, - STATE(1535), 1, + STATE(3834), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [215646] = 4, + [258287] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(432), 1, - anon_sym_do, - STATE(2598), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [215661] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9582), 1, - anon_sym_LPAREN, - STATE(3122), 1, - sym__call_arguments_with_parentheses, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [215676] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9584), 1, - aux_sym_sigil_token1, - ACTIONS(9586), 1, - aux_sym_sigil_token2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [215691] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9588), 2, - anon_sym_when, - anon_sym_DASH_GT, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [215704] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(432), 1, - anon_sym_do, - STATE(2283), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [215719] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3908), 1, - anon_sym_LPAREN, - STATE(2502), 1, - sym__call_arguments_with_parentheses, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [215734] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9590), 2, - anon_sym_when, - anon_sym_DASH_GT, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [215747] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9592), 1, - aux_sym_sigil_token1, - ACTIONS(9594), 1, - aux_sym_sigil_token2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [215762] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3793), 1, - anon_sym_LPAREN, - STATE(2277), 1, - sym__call_arguments_with_parentheses, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [215777] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(546), 1, - anon_sym_do, - STATE(3248), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [215792] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3612), 1, - anon_sym_LPAREN, - STATE(1755), 1, - sym__call_arguments_with_parentheses, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [215807] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9596), 1, - aux_sym_sigil_token1, - ACTIONS(9598), 1, - aux_sym_sigil_token2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [215822] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(298), 1, - anon_sym_do, - STATE(1573), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [215837] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9600), 1, - anon_sym_LPAREN, - STATE(2116), 1, - sym__call_arguments_with_parentheses, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [215852] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3562), 2, - anon_sym_when, - anon_sym_DASH_GT, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [215865] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9602), 1, - aux_sym_sigil_token1, - ACTIONS(9604), 1, - aux_sym_sigil_token2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [215880] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(305), 1, - anon_sym_do, - STATE(1655), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [215895] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(592), 1, - anon_sym_do, - STATE(3071), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [215910] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(432), 1, - anon_sym_do, - STATE(2674), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [215925] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(644), 1, - anon_sym_do, - STATE(3492), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [215940] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9606), 1, - aux_sym_sigil_token1, - ACTIONS(9608), 1, - aux_sym_sigil_token2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [215955] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(432), 1, - anon_sym_do, - STATE(2671), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [215970] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(546), 1, - anon_sym_do, - STATE(3240), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [215985] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9610), 1, - aux_sym_sigil_token1, - ACTIONS(9612), 1, - aux_sym_sigil_token2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216000] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(644), 1, - anon_sym_do, - STATE(3422), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216015] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(546), 1, - anon_sym_do, - STATE(2790), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216030] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(432), 1, - anon_sym_do, - STATE(2672), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216045] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(644), 1, - anon_sym_do, - STATE(3425), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216060] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(432), 1, - anon_sym_do, - STATE(2673), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216075] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(298), 1, - anon_sym_do, - STATE(1317), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216090] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(298), 1, - anon_sym_do, - STATE(1470), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216105] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(298), 1, - anon_sym_do, - STATE(1471), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216120] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(644), 1, - anon_sym_do, - STATE(3367), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216135] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(305), 1, - anon_sym_do, - STATE(1654), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216150] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(298), 1, - anon_sym_do, - STATE(1316), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216165] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(432), 1, - anon_sym_do, - STATE(2675), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216180] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(305), 1, - anon_sym_do, - STATE(1649), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216195] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(298), 1, - anon_sym_do, - STATE(1472), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216210] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(644), 1, - anon_sym_do, - STATE(3432), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216225] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(546), 1, - anon_sym_do, - STATE(3264), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216240] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(644), 1, - anon_sym_do, - STATE(3431), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216255] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(644), 1, - anon_sym_do, - STATE(3366), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216270] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(298), 1, - anon_sym_do, - STATE(1474), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216285] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(644), 1, - anon_sym_do, - STATE(3434), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216300] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(546), 1, - anon_sym_do, - STATE(2791), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216315] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(298), 1, - anon_sym_do, - STATE(1475), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216330] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9614), 1, - anon_sym_LPAREN, - STATE(3362), 1, - sym__call_arguments_with_parentheses, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216345] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(546), 1, - anon_sym_do, - STATE(3278), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216360] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9616), 1, + ACTIONS(10072), 1, aux_sym__terminator_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(7860), 2, + ACTIONS(8284), 2, anon_sym_SEMI, anon_sym_end, - [216375] = 4, + [258302] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(432), 1, + ACTIONS(552), 1, anon_sym_do, - STATE(2288), 1, + STATE(3535), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [216390] = 4, + [258317] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(592), 1, + ACTIONS(9974), 2, + anon_sym_when, + anon_sym_DASH_GT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [258330] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(233), 1, anon_sym_do, - STATE(3070), 1, + STATE(1539), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [216405] = 3, + [258345] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(9618), 1, - anon_sym_RBRACK, + ACTIONS(233), 1, + anon_sym_do, + STATE(1550), 1, + sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [216417] = 3, + [258360] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(9620), 1, - anon_sym_SLASH, + ACTIONS(10074), 1, + anon_sym_LPAREN, + STATE(3899), 1, + sym__call_arguments_with_parentheses, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [216429] = 3, + [258375] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(9622), 1, - anon_sym_RBRACE, + ACTIONS(233), 1, + anon_sym_do, + STATE(1468), 1, + sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [216441] = 3, + [258390] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(9624), 1, - anon_sym_RBRACE, + ACTIONS(3794), 2, + anon_sym_when, + anon_sym_DASH_GT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [216453] = 3, + [258403] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(9626), 1, - anon_sym_RPAREN, + ACTIONS(3967), 1, + anon_sym_LPAREN, + STATE(2658), 1, + sym__call_arguments_with_parentheses, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [216465] = 3, + [258418] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(9628), 1, - anon_sym_RPAREN, + ACTIONS(233), 1, + anon_sym_do, + STATE(1551), 1, + sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [216477] = 3, + [258433] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(9630), 1, - anon_sym_RPAREN, + ACTIONS(233), 1, + anon_sym_do, + STATE(1653), 1, + sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [216489] = 3, + [258448] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(9632), 1, + ACTIONS(552), 1, + anon_sym_do, + STATE(3832), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [258463] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(233), 1, + anon_sym_do, + STATE(1557), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [258478] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(552), 1, + anon_sym_do, + STATE(3831), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [258493] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10076), 1, sym_integer, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [216501] = 3, + [258505] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(9634), 1, - anon_sym_RPAREN, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216513] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9636), 1, - anon_sym_RPAREN, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216525] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9638), 1, + ACTIONS(10078), 1, anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [216537] = 3, + [258517] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(9640), 1, + ACTIONS(10080), 1, + sym_integer, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [258529] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10082), 1, anon_sym_RPAREN, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [216549] = 3, + [258541] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(9642), 1, + ACTIONS(10084), 1, + anon_sym_RBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [258553] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10086), 1, anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [216561] = 3, + [258565] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(9644), 1, + ACTIONS(10088), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [258577] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2651), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [258589] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10090), 1, + anon_sym_GT_GT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [258601] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10092), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [258613] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10094), 1, + anon_sym_GT_GT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [258625] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10096), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [258637] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10098), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [258649] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10100), 1, + sym_integer, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [258661] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10102), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [258673] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10104), 1, + anon_sym_RBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [258685] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10106), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [258697] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10108), 1, + anon_sym_GT_GT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [258709] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10110), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [258721] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3010), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [258733] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10112), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [258745] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10114), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [258757] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10116), 1, anon_sym_LBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [216573] = 3, + [258769] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(9646), 1, - anon_sym_RBRACE, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216585] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9648), 1, + ACTIONS(10118), 1, anon_sym_RPAREN, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [216597] = 3, + [258781] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(9650), 1, - anon_sym_SLASH, + ACTIONS(10120), 1, + sym_integer, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [216609] = 3, + [258793] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(9652), 1, - anon_sym_RBRACE, + ACTIONS(3004), 1, + aux_sym_quoted_keyword_token1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [216621] = 3, + [258805] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(9654), 1, + ACTIONS(10122), 1, anon_sym_RPAREN, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [216633] = 3, + [258817] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(9656), 1, + ACTIONS(10124), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [258829] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10126), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [258841] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10128), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [258853] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10130), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [258865] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10132), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [258877] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10134), 1, + anon_sym_RBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [258889] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10136), 1, + anon_sym_GT_GT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [258901] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10138), 1, sym_integer, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [216645] = 3, + [258913] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(9658), 1, - anon_sym_GT_GT, + ACTIONS(10140), 1, + anon_sym_LBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [216657] = 3, + [258925] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(9660), 1, - sym_integer, + ACTIONS(10142), 1, + anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [216669] = 3, + [258937] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(9662), 1, - anon_sym_GT_GT, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216681] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9664), 1, - anon_sym_GT_GT, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216693] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9666), 1, + ACTIONS(10144), 1, anon_sym_SLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [216705] = 3, + [258949] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10146), 1, + anon_sym_RBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [258961] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10148), 1, + anon_sym_GT_GT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [258973] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10150), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [258985] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10152), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [258997] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10154), 1, + anon_sym_LBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259009] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10156), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259021] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10158), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259033] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10160), 1, + sym_integer, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259045] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10162), 1, + sym_integer, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259057] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10164), 1, + anon_sym_LBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259069] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10166), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259081] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10168), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259093] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10170), 1, + anon_sym_LBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259105] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10172), 1, + anon_sym_GT_GT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259117] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10174), 1, + anon_sym_GT_GT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259129] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10176), 1, + sym_integer, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259141] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10178), 1, + anon_sym_RBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259153] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10180), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259165] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10182), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259177] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10184), 1, + anon_sym_GT_GT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259189] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10186), 1, + anon_sym_LBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259201] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10188), 1, + anon_sym_RBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259213] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10190), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259225] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10192), 1, + anon_sym_RBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259237] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10194), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259249] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10196), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259261] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10198), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259273] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10200), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259285] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10202), 1, + anon_sym_LBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259297] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10204), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259309] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10206), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259321] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10208), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259333] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10210), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259345] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10212), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259357] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10214), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259369] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10216), 1, + anon_sym_DASH_GT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259381] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10218), 1, + anon_sym_LBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259393] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10220), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259405] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10222), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259417] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10224), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259429] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10226), 1, + anon_sym_DASH_GT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259441] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10226), 1, + anon_sym_DASH_GT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259453] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10228), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259465] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10230), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259477] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10232), 1, + anon_sym_LBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259489] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10234), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259501] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10236), 1, + anon_sym_DASH_GT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259513] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10238), 1, + sym_integer, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259525] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10240), 1, + anon_sym_GT_GT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259537] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10242), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259549] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10244), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259561] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10246), 1, + anon_sym_RBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259573] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10248), 1, + anon_sym_LBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259585] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10250), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259597] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10252), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259609] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10254), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259621] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10256), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259633] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10258), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259645] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10260), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259657] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10262), 1, + anon_sym_LBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259669] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10264), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259681] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10266), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259693] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10268), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259705] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10270), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259717] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2631), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259729] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10272), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259741] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10274), 1, + anon_sym_LBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259753] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10276), 1, + anon_sym_RBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259765] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10278), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259777] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10280), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259789] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10282), 1, + anon_sym_RBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259801] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10284), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259813] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10286), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259825] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10288), 1, + anon_sym_GT_GT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259837] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10290), 1, + sym_integer, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259849] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10292), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259861] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10294), 1, + anon_sym_RBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259873] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10296), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259885] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10298), 1, + anon_sym_DASH_GT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259897] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10300), 1, + anon_sym_GT_GT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259909] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10302), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259921] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10304), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259933] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10306), 1, + ts_builtin_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259945] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10308), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259957] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10310), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259969] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10312), 1, + sym_integer, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259981] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10314), 1, + anon_sym_GT_GT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259993] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10316), 1, + anon_sym_RBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [260005] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(2647), 1, @@ -346022,928 +386615,28 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [216717] = 3, + [260017] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(9668), 1, - anon_sym_RPAREN, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216729] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9670), 1, - anon_sym_GT_GT, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216741] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9672), 1, - anon_sym_RBRACE, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216753] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9674), 1, - anon_sym_RBRACE, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216765] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9676), 1, - anon_sym_RBRACE, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216777] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9678), 1, - anon_sym_RPAREN, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216789] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9680), 1, - anon_sym_RBRACE, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216801] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9682), 1, - sym_integer, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216813] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9684), 1, - anon_sym_RBRACE, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216825] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9686), 1, - anon_sym_RBRACE, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216837] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9688), 1, - anon_sym_RBRACK, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216849] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9690), 1, - sym_integer, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216861] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9692), 1, - anon_sym_RBRACE, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216873] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9694), 1, - anon_sym_SLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216885] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9696), 1, - anon_sym_RBRACE, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216897] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9698), 1, - anon_sym_LBRACE, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216909] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9700), 1, - anon_sym_RBRACE, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216921] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9702), 1, - sym_integer, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216933] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9704), 1, - anon_sym_RBRACE, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216945] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9706), 1, - anon_sym_DASH_GT, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216957] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9708), 1, - anon_sym_RBRACE, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216969] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9710), 1, - anon_sym_SLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216981] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9712), 1, - anon_sym_GT_GT, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [216993] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9714), 1, - anon_sym_LBRACE, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217005] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9716), 1, - anon_sym_RBRACK, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217017] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9718), 1, - anon_sym_LBRACE, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217029] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9720), 1, - anon_sym_RBRACE, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217041] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9722), 1, - anon_sym_RBRACE, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217053] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9724), 1, - anon_sym_RPAREN, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217065] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9726), 1, - anon_sym_SLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217077] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9728), 1, - anon_sym_RPAREN, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217089] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9730), 1, - anon_sym_LBRACE, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217101] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9732), 1, - anon_sym_RBRACE, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217113] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9734), 1, - anon_sym_RBRACK, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217125] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9736), 1, - anon_sym_RBRACE, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217137] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9738), 1, - anon_sym_GT_GT, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217149] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9740), 1, - anon_sym_RBRACK, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217161] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9742), 1, - anon_sym_RPAREN, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217173] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9744), 1, - anon_sym_RBRACK, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217185] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9746), 1, - anon_sym_RPAREN, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217197] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9748), 1, - anon_sym_RBRACE, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217209] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9750), 1, - anon_sym_GT_GT, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217221] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9752), 1, - anon_sym_RPAREN, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217233] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9754), 1, - anon_sym_RBRACE, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217245] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9756), 1, - anon_sym_RBRACK, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217257] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9758), 1, - anon_sym_SLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217269] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9760), 1, - sym_integer, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217281] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9762), 1, - anon_sym_LBRACE, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217293] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9764), 1, - anon_sym_RBRACE, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217305] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9766), 1, - anon_sym_RBRACE, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217317] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9768), 1, - anon_sym_LBRACE, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217329] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9770), 1, - anon_sym_RPAREN, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217341] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9772), 1, - anon_sym_RBRACK, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217353] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9774), 1, - anon_sym_SLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217365] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9776), 1, - anon_sym_RBRACE, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217377] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9778), 1, - anon_sym_LBRACE, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217389] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9780), 1, - anon_sym_DASH_GT, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217401] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9780), 1, - anon_sym_DASH_GT, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217413] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9782), 1, - anon_sym_RBRACE, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217425] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9784), 1, - anon_sym_RBRACE, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217437] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9786), 1, - anon_sym_RBRACE, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217449] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9788), 1, - anon_sym_SLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217461] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9790), 1, - anon_sym_DASH_GT, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217473] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9792), 1, - anon_sym_LBRACE, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217485] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9794), 1, - anon_sym_RBRACE, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217497] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9796), 1, - anon_sym_RBRACK, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217509] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9798), 1, - anon_sym_DASH_GT, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217521] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9800), 1, - anon_sym_GT_GT, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217533] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9802), 1, - anon_sym_GT_GT, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217545] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9804), 1, - anon_sym_SLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217557] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9806), 1, - anon_sym_LBRACE, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217569] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3026), 1, + ACTIONS(2611), 1, aux_sym_quoted_keyword_token1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [217581] = 3, + [260029] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(9808), 1, - anon_sym_RPAREN, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217593] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9810), 1, + ACTIONS(10318), 1, sym_integer, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [217605] = 3, + [260041] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(9812), 1, - anon_sym_RPAREN, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217617] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9814), 1, - anon_sym_RBRACE, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217629] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9816), 1, - anon_sym_SLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217641] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9818), 1, - anon_sym_LBRACE, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217653] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9820), 1, - anon_sym_RBRACK, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217665] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9822), 1, - anon_sym_GT_GT, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217677] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9824), 1, - sym_integer, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217689] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9826), 1, - anon_sym_RPAREN, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217701] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9828), 1, - anon_sym_GT_GT, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217713] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9830), 1, - anon_sym_GT_GT, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217725] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9832), 1, - anon_sym_RBRACK, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217737] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9834), 1, - anon_sym_RBRACE, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217749] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9836), 1, - anon_sym_RBRACE, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217761] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9838), 1, - anon_sym_LBRACE, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217773] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9840), 1, - anon_sym_RBRACE, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217785] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9842), 1, - sym_integer, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217797] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9844), 1, - anon_sym_SLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217809] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9846), 1, - sym_integer, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217821] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2635), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217833] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9848), 1, - ts_builtin_sym_end, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217845] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9850), 1, - anon_sym_RPAREN, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217857] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9852), 1, - anon_sym_RBRACK, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217869] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9854), 1, - anon_sym_RPAREN, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217881] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9856), 1, - anon_sym_RBRACE, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217893] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9858), 1, - sym_integer, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217905] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2639), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217917] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2643), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217929] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9860), 1, - anon_sym_RBRACE, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [217941] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2613), 1, + ACTIONS(2645), 1, anon_sym_SLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -346952,3978 +386645,4585 @@ static const uint16_t ts_small_parse_table[] = { }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1090)] = 0, - [SMALL_STATE(1091)] = 129, - [SMALL_STATE(1092)] = 258, - [SMALL_STATE(1093)] = 337, - [SMALL_STATE(1094)] = 416, - [SMALL_STATE(1095)] = 495, - [SMALL_STATE(1096)] = 574, - [SMALL_STATE(1097)] = 649, - [SMALL_STATE(1098)] = 724, - [SMALL_STATE(1099)] = 797, - [SMALL_STATE(1100)] = 870, - [SMALL_STATE(1101)] = 945, - [SMALL_STATE(1102)] = 1018, - [SMALL_STATE(1103)] = 1091, - [SMALL_STATE(1104)] = 1220, - [SMALL_STATE(1105)] = 1297, - [SMALL_STATE(1106)] = 1374, - [SMALL_STATE(1107)] = 1451, - [SMALL_STATE(1108)] = 1580, - [SMALL_STATE(1109)] = 1709, - [SMALL_STATE(1110)] = 1782, - [SMALL_STATE(1111)] = 1855, - [SMALL_STATE(1112)] = 1928, - [SMALL_STATE(1113)] = 2003, - [SMALL_STATE(1114)] = 2082, - [SMALL_STATE(1115)] = 2157, - [SMALL_STATE(1116)] = 2236, - [SMALL_STATE(1117)] = 2315, - [SMALL_STATE(1118)] = 2388, - [SMALL_STATE(1119)] = 2463, - [SMALL_STATE(1120)] = 2538, - [SMALL_STATE(1121)] = 2611, - [SMALL_STATE(1122)] = 2684, - [SMALL_STATE(1123)] = 2759, - [SMALL_STATE(1124)] = 2834, - [SMALL_STATE(1125)] = 2963, - [SMALL_STATE(1126)] = 3036, - [SMALL_STATE(1127)] = 3109, - [SMALL_STATE(1128)] = 3182, - [SMALL_STATE(1129)] = 3255, - [SMALL_STATE(1130)] = 3384, - [SMALL_STATE(1131)] = 3457, - [SMALL_STATE(1132)] = 3530, - [SMALL_STATE(1133)] = 3659, - [SMALL_STATE(1134)] = 3732, - [SMALL_STATE(1135)] = 3805, - [SMALL_STATE(1136)] = 3878, - [SMALL_STATE(1137)] = 3956, - [SMALL_STATE(1138)] = 4028, - [SMALL_STATE(1139)] = 4104, - [SMALL_STATE(1140)] = 4176, - [SMALL_STATE(1141)] = 4252, - [SMALL_STATE(1142)] = 4324, - [SMALL_STATE(1143)] = 4396, - [SMALL_STATE(1144)] = 4468, - [SMALL_STATE(1145)] = 4540, - [SMALL_STATE(1146)] = 4614, - [SMALL_STATE(1147)] = 4688, - [SMALL_STATE(1148)] = 4760, - [SMALL_STATE(1149)] = 4832, - [SMALL_STATE(1150)] = 4906, - [SMALL_STATE(1151)] = 4980, - [SMALL_STATE(1152)] = 5052, - [SMALL_STATE(1153)] = 5126, - [SMALL_STATE(1154)] = 5200, - [SMALL_STATE(1155)] = 5274, - [SMALL_STATE(1156)] = 5346, - [SMALL_STATE(1157)] = 5418, - [SMALL_STATE(1158)] = 5490, - [SMALL_STATE(1159)] = 5564, - [SMALL_STATE(1160)] = 5636, - [SMALL_STATE(1161)] = 5708, - [SMALL_STATE(1162)] = 5780, - [SMALL_STATE(1163)] = 5852, - [SMALL_STATE(1164)] = 5924, - [SMALL_STATE(1165)] = 5996, - [SMALL_STATE(1166)] = 6068, - [SMALL_STATE(1167)] = 6140, - [SMALL_STATE(1168)] = 6212, - [SMALL_STATE(1169)] = 6284, - [SMALL_STATE(1170)] = 6356, - [SMALL_STATE(1171)] = 6428, - [SMALL_STATE(1172)] = 6500, - [SMALL_STATE(1173)] = 6572, - [SMALL_STATE(1174)] = 6644, - [SMALL_STATE(1175)] = 6716, - [SMALL_STATE(1176)] = 6788, - [SMALL_STATE(1177)] = 6860, - [SMALL_STATE(1178)] = 6932, - [SMALL_STATE(1179)] = 7004, - [SMALL_STATE(1180)] = 7076, - [SMALL_STATE(1181)] = 7148, - [SMALL_STATE(1182)] = 7220, - [SMALL_STATE(1183)] = 7292, - [SMALL_STATE(1184)] = 7364, - [SMALL_STATE(1185)] = 7436, - [SMALL_STATE(1186)] = 7508, - [SMALL_STATE(1187)] = 7580, - [SMALL_STATE(1188)] = 7652, - [SMALL_STATE(1189)] = 7724, - [SMALL_STATE(1190)] = 7796, - [SMALL_STATE(1191)] = 7868, - [SMALL_STATE(1192)] = 7940, - [SMALL_STATE(1193)] = 8012, - [SMALL_STATE(1194)] = 8084, - [SMALL_STATE(1195)] = 8156, - [SMALL_STATE(1196)] = 8228, - [SMALL_STATE(1197)] = 8300, - [SMALL_STATE(1198)] = 8372, - [SMALL_STATE(1199)] = 8444, - [SMALL_STATE(1200)] = 8516, - [SMALL_STATE(1201)] = 8588, - [SMALL_STATE(1202)] = 8660, - [SMALL_STATE(1203)] = 8732, - [SMALL_STATE(1204)] = 8804, - [SMALL_STATE(1205)] = 8876, - [SMALL_STATE(1206)] = 8948, - [SMALL_STATE(1207)] = 9020, - [SMALL_STATE(1208)] = 9092, - [SMALL_STATE(1209)] = 9164, - [SMALL_STATE(1210)] = 9282, - [SMALL_STATE(1211)] = 9354, - [SMALL_STATE(1212)] = 9426, - [SMALL_STATE(1213)] = 9498, - [SMALL_STATE(1214)] = 9570, - [SMALL_STATE(1215)] = 9642, - [SMALL_STATE(1216)] = 9714, - [SMALL_STATE(1217)] = 9786, - [SMALL_STATE(1218)] = 9858, - [SMALL_STATE(1219)] = 9930, - [SMALL_STATE(1220)] = 10002, - [SMALL_STATE(1221)] = 10074, - [SMALL_STATE(1222)] = 10146, - [SMALL_STATE(1223)] = 10218, - [SMALL_STATE(1224)] = 10290, - [SMALL_STATE(1225)] = 10362, - [SMALL_STATE(1226)] = 10434, - [SMALL_STATE(1227)] = 10506, - [SMALL_STATE(1228)] = 10578, - [SMALL_STATE(1229)] = 10650, - [SMALL_STATE(1230)] = 10722, - [SMALL_STATE(1231)] = 10794, - [SMALL_STATE(1232)] = 10866, - [SMALL_STATE(1233)] = 10938, - [SMALL_STATE(1234)] = 11010, - [SMALL_STATE(1235)] = 11082, - [SMALL_STATE(1236)] = 11154, - [SMALL_STATE(1237)] = 11226, - [SMALL_STATE(1238)] = 11298, - [SMALL_STATE(1239)] = 11370, - [SMALL_STATE(1240)] = 11442, - [SMALL_STATE(1241)] = 11514, - [SMALL_STATE(1242)] = 11586, - [SMALL_STATE(1243)] = 11658, - [SMALL_STATE(1244)] = 11730, - [SMALL_STATE(1245)] = 11802, - [SMALL_STATE(1246)] = 11874, - [SMALL_STATE(1247)] = 11946, - [SMALL_STATE(1248)] = 12018, - [SMALL_STATE(1249)] = 12090, - [SMALL_STATE(1250)] = 12162, - [SMALL_STATE(1251)] = 12234, - [SMALL_STATE(1252)] = 12306, - [SMALL_STATE(1253)] = 12378, - [SMALL_STATE(1254)] = 12450, - [SMALL_STATE(1255)] = 12522, - [SMALL_STATE(1256)] = 12594, - [SMALL_STATE(1257)] = 12666, - [SMALL_STATE(1258)] = 12738, - [SMALL_STATE(1259)] = 12810, - [SMALL_STATE(1260)] = 12882, - [SMALL_STATE(1261)] = 12958, - [SMALL_STATE(1262)] = 13030, - [SMALL_STATE(1263)] = 13102, - [SMALL_STATE(1264)] = 13178, - [SMALL_STATE(1265)] = 13254, - [SMALL_STATE(1266)] = 13330, - [SMALL_STATE(1267)] = 13406, - [SMALL_STATE(1268)] = 13482, - [SMALL_STATE(1269)] = 13554, - [SMALL_STATE(1270)] = 13626, - [SMALL_STATE(1271)] = 13698, - [SMALL_STATE(1272)] = 13770, - [SMALL_STATE(1273)] = 13848, - [SMALL_STATE(1274)] = 13926, - [SMALL_STATE(1275)] = 14004, - [SMALL_STATE(1276)] = 14082, - [SMALL_STATE(1277)] = 14154, - [SMALL_STATE(1278)] = 14226, - [SMALL_STATE(1279)] = 14298, - [SMALL_STATE(1280)] = 14370, - [SMALL_STATE(1281)] = 14441, - [SMALL_STATE(1282)] = 14512, - [SMALL_STATE(1283)] = 14583, - [SMALL_STATE(1284)] = 14654, - [SMALL_STATE(1285)] = 14725, - [SMALL_STATE(1286)] = 14796, - [SMALL_STATE(1287)] = 14867, - [SMALL_STATE(1288)] = 14938, - [SMALL_STATE(1289)] = 15009, - [SMALL_STATE(1290)] = 15080, - [SMALL_STATE(1291)] = 15151, - [SMALL_STATE(1292)] = 15222, - [SMALL_STATE(1293)] = 15293, - [SMALL_STATE(1294)] = 15364, - [SMALL_STATE(1295)] = 15435, - [SMALL_STATE(1296)] = 15506, - [SMALL_STATE(1297)] = 15577, - [SMALL_STATE(1298)] = 15648, - [SMALL_STATE(1299)] = 15719, - [SMALL_STATE(1300)] = 15790, - [SMALL_STATE(1301)] = 15861, - [SMALL_STATE(1302)] = 15932, - [SMALL_STATE(1303)] = 16003, - [SMALL_STATE(1304)] = 16074, - [SMALL_STATE(1305)] = 16145, - [SMALL_STATE(1306)] = 16216, - [SMALL_STATE(1307)] = 16287, - [SMALL_STATE(1308)] = 16358, - [SMALL_STATE(1309)] = 16429, - [SMALL_STATE(1310)] = 16500, - [SMALL_STATE(1311)] = 16571, - [SMALL_STATE(1312)] = 16642, - [SMALL_STATE(1313)] = 16713, - [SMALL_STATE(1314)] = 16830, - [SMALL_STATE(1315)] = 16901, - [SMALL_STATE(1316)] = 16972, - [SMALL_STATE(1317)] = 17043, - [SMALL_STATE(1318)] = 17114, - [SMALL_STATE(1319)] = 17185, - [SMALL_STATE(1320)] = 17298, - [SMALL_STATE(1321)] = 17411, - [SMALL_STATE(1322)] = 17482, - [SMALL_STATE(1323)] = 17553, - [SMALL_STATE(1324)] = 17624, - [SMALL_STATE(1325)] = 17695, - [SMALL_STATE(1326)] = 17766, - [SMALL_STATE(1327)] = 17841, - [SMALL_STATE(1328)] = 17912, - [SMALL_STATE(1329)] = 17983, - [SMALL_STATE(1330)] = 18066, - [SMALL_STATE(1331)] = 18137, - [SMALL_STATE(1332)] = 18212, - [SMALL_STATE(1333)] = 18283, - [SMALL_STATE(1334)] = 18368, - [SMALL_STATE(1335)] = 18439, - [SMALL_STATE(1336)] = 18510, - [SMALL_STATE(1337)] = 18595, - [SMALL_STATE(1338)] = 18666, - [SMALL_STATE(1339)] = 18737, - [SMALL_STATE(1340)] = 18808, - [SMALL_STATE(1341)] = 18899, - [SMALL_STATE(1342)] = 18994, - [SMALL_STATE(1343)] = 19065, - [SMALL_STATE(1344)] = 19162, - [SMALL_STATE(1345)] = 19261, - [SMALL_STATE(1346)] = 19364, - [SMALL_STATE(1347)] = 19469, - [SMALL_STATE(1348)] = 19578, - [SMALL_STATE(1349)] = 19689, - [SMALL_STATE(1350)] = 19800, - [SMALL_STATE(1351)] = 19879, - [SMALL_STATE(1352)] = 19956, - [SMALL_STATE(1353)] = 20063, - [SMALL_STATE(1354)] = 20156, - [SMALL_STATE(1355)] = 20227, - [SMALL_STATE(1356)] = 20298, - [SMALL_STATE(1357)] = 20369, - [SMALL_STATE(1358)] = 20440, - [SMALL_STATE(1359)] = 20527, - [SMALL_STATE(1360)] = 20598, - [SMALL_STATE(1361)] = 20669, - [SMALL_STATE(1362)] = 20744, - [SMALL_STATE(1363)] = 20819, - [SMALL_STATE(1364)] = 20890, - [SMALL_STATE(1365)] = 20961, - [SMALL_STATE(1366)] = 21032, - [SMALL_STATE(1367)] = 21107, - [SMALL_STATE(1368)] = 21180, - [SMALL_STATE(1369)] = 21253, - [SMALL_STATE(1370)] = 21324, - [SMALL_STATE(1371)] = 21395, - [SMALL_STATE(1372)] = 21470, - [SMALL_STATE(1373)] = 21541, - [SMALL_STATE(1374)] = 21616, - [SMALL_STATE(1375)] = 21687, - [SMALL_STATE(1376)] = 21758, - [SMALL_STATE(1377)] = 21829, - [SMALL_STATE(1378)] = 21900, - [SMALL_STATE(1379)] = 21971, - [SMALL_STATE(1380)] = 22042, - [SMALL_STATE(1381)] = 22115, - [SMALL_STATE(1382)] = 22186, - [SMALL_STATE(1383)] = 22257, - [SMALL_STATE(1384)] = 22328, - [SMALL_STATE(1385)] = 22399, - [SMALL_STATE(1386)] = 22474, - [SMALL_STATE(1387)] = 22545, - [SMALL_STATE(1388)] = 22616, - [SMALL_STATE(1389)] = 22687, - [SMALL_STATE(1390)] = 22758, - [SMALL_STATE(1391)] = 22829, - [SMALL_STATE(1392)] = 22900, - [SMALL_STATE(1393)] = 22971, - [SMALL_STATE(1394)] = 23042, - [SMALL_STATE(1395)] = 23113, - [SMALL_STATE(1396)] = 23184, - [SMALL_STATE(1397)] = 23255, - [SMALL_STATE(1398)] = 23326, - [SMALL_STATE(1399)] = 23397, - [SMALL_STATE(1400)] = 23468, - [SMALL_STATE(1401)] = 23539, - [SMALL_STATE(1402)] = 23610, - [SMALL_STATE(1403)] = 23681, - [SMALL_STATE(1404)] = 23752, - [SMALL_STATE(1405)] = 23823, - [SMALL_STATE(1406)] = 23894, - [SMALL_STATE(1407)] = 23965, - [SMALL_STATE(1408)] = 24036, - [SMALL_STATE(1409)] = 24107, - [SMALL_STATE(1410)] = 24182, - [SMALL_STATE(1411)] = 24257, - [SMALL_STATE(1412)] = 24332, - [SMALL_STATE(1413)] = 24445, - [SMALL_STATE(1414)] = 24516, - [SMALL_STATE(1415)] = 24587, - [SMALL_STATE(1416)] = 24658, - [SMALL_STATE(1417)] = 24729, - [SMALL_STATE(1418)] = 24800, - [SMALL_STATE(1419)] = 24871, - [SMALL_STATE(1420)] = 24942, - [SMALL_STATE(1421)] = 25013, - [SMALL_STATE(1422)] = 25084, - [SMALL_STATE(1423)] = 25155, - [SMALL_STATE(1424)] = 25226, - [SMALL_STATE(1425)] = 25297, - [SMALL_STATE(1426)] = 25368, - [SMALL_STATE(1427)] = 25439, - [SMALL_STATE(1428)] = 25510, - [SMALL_STATE(1429)] = 25581, - [SMALL_STATE(1430)] = 25652, - [SMALL_STATE(1431)] = 25723, - [SMALL_STATE(1432)] = 25794, - [SMALL_STATE(1433)] = 25865, - [SMALL_STATE(1434)] = 25936, - [SMALL_STATE(1435)] = 26007, - [SMALL_STATE(1436)] = 26099, - [SMALL_STATE(1437)] = 26169, - [SMALL_STATE(1438)] = 26239, - [SMALL_STATE(1439)] = 26309, - [SMALL_STATE(1440)] = 26379, - [SMALL_STATE(1441)] = 26449, - [SMALL_STATE(1442)] = 26521, - [SMALL_STATE(1443)] = 26591, - [SMALL_STATE(1444)] = 26663, - [SMALL_STATE(1445)] = 26735, - [SMALL_STATE(1446)] = 26855, - [SMALL_STATE(1447)] = 26925, - [SMALL_STATE(1448)] = 26995, - [SMALL_STATE(1449)] = 27065, - [SMALL_STATE(1450)] = 27135, - [SMALL_STATE(1451)] = 27207, - [SMALL_STATE(1452)] = 27279, - [SMALL_STATE(1453)] = 27349, - [SMALL_STATE(1454)] = 27419, - [SMALL_STATE(1455)] = 27489, - [SMALL_STATE(1456)] = 27559, - [SMALL_STATE(1457)] = 27629, - [SMALL_STATE(1458)] = 27699, - [SMALL_STATE(1459)] = 27769, - [SMALL_STATE(1460)] = 27843, - [SMALL_STATE(1461)] = 27917, - [SMALL_STATE(1462)] = 27991, - [SMALL_STATE(1463)] = 28103, - [SMALL_STATE(1464)] = 28215, - [SMALL_STATE(1465)] = 28285, - [SMALL_STATE(1466)] = 28397, - [SMALL_STATE(1467)] = 28467, - [SMALL_STATE(1468)] = 28537, - [SMALL_STATE(1469)] = 28607, - [SMALL_STATE(1470)] = 28677, - [SMALL_STATE(1471)] = 28747, - [SMALL_STATE(1472)] = 28817, - [SMALL_STATE(1473)] = 28887, - [SMALL_STATE(1474)] = 29007, - [SMALL_STATE(1475)] = 29077, - [SMALL_STATE(1476)] = 29147, - [SMALL_STATE(1477)] = 29217, - [SMALL_STATE(1478)] = 29287, - [SMALL_STATE(1479)] = 29357, - [SMALL_STATE(1480)] = 29427, - [SMALL_STATE(1481)] = 29497, - [SMALL_STATE(1482)] = 29567, - [SMALL_STATE(1483)] = 29637, - [SMALL_STATE(1484)] = 29707, - [SMALL_STATE(1485)] = 29777, - [SMALL_STATE(1486)] = 29847, - [SMALL_STATE(1487)] = 29917, - [SMALL_STATE(1488)] = 29987, - [SMALL_STATE(1489)] = 30057, - [SMALL_STATE(1490)] = 30127, - [SMALL_STATE(1491)] = 30197, - [SMALL_STATE(1492)] = 30267, - [SMALL_STATE(1493)] = 30337, - [SMALL_STATE(1494)] = 30407, - [SMALL_STATE(1495)] = 30477, - [SMALL_STATE(1496)] = 30551, - [SMALL_STATE(1497)] = 30621, - [SMALL_STATE(1498)] = 30695, - [SMALL_STATE(1499)] = 30771, - [SMALL_STATE(1500)] = 30841, - [SMALL_STATE(1501)] = 30911, - [SMALL_STATE(1502)] = 30981, - [SMALL_STATE(1503)] = 31051, - [SMALL_STATE(1504)] = 31121, - [SMALL_STATE(1505)] = 31191, - [SMALL_STATE(1506)] = 31265, - [SMALL_STATE(1507)] = 31339, - [SMALL_STATE(1508)] = 31409, - [SMALL_STATE(1509)] = 31479, - [SMALL_STATE(1510)] = 31549, - [SMALL_STATE(1511)] = 31619, - [SMALL_STATE(1512)] = 31689, - [SMALL_STATE(1513)] = 31759, - [SMALL_STATE(1514)] = 31829, - [SMALL_STATE(1515)] = 31899, - [SMALL_STATE(1516)] = 31969, - [SMALL_STATE(1517)] = 32043, - [SMALL_STATE(1518)] = 32113, - [SMALL_STATE(1519)] = 32189, - [SMALL_STATE(1520)] = 32259, - [SMALL_STATE(1521)] = 32333, - [SMALL_STATE(1522)] = 32405, - [SMALL_STATE(1523)] = 32533, - [SMALL_STATE(1524)] = 32603, - [SMALL_STATE(1525)] = 32673, - [SMALL_STATE(1526)] = 32743, - [SMALL_STATE(1527)] = 32813, - [SMALL_STATE(1528)] = 32883, - [SMALL_STATE(1529)] = 32953, - [SMALL_STATE(1530)] = 33023, - [SMALL_STATE(1531)] = 33093, - [SMALL_STATE(1532)] = 33163, - [SMALL_STATE(1533)] = 33233, - [SMALL_STATE(1534)] = 33303, - [SMALL_STATE(1535)] = 33373, - [SMALL_STATE(1536)] = 33443, - [SMALL_STATE(1537)] = 33513, - [SMALL_STATE(1538)] = 33583, - [SMALL_STATE(1539)] = 33653, - [SMALL_STATE(1540)] = 33723, - [SMALL_STATE(1541)] = 33793, - [SMALL_STATE(1542)] = 33863, - [SMALL_STATE(1543)] = 33935, - [SMALL_STATE(1544)] = 34005, - [SMALL_STATE(1545)] = 34075, - [SMALL_STATE(1546)] = 34145, - [SMALL_STATE(1547)] = 34215, - [SMALL_STATE(1548)] = 34301, - [SMALL_STATE(1549)] = 34407, - [SMALL_STATE(1550)] = 34483, - [SMALL_STATE(1551)] = 34561, - [SMALL_STATE(1552)] = 34631, - [SMALL_STATE(1553)] = 34701, - [SMALL_STATE(1554)] = 34771, - [SMALL_STATE(1555)] = 34841, - [SMALL_STATE(1556)] = 34911, - [SMALL_STATE(1557)] = 34981, - [SMALL_STATE(1558)] = 35051, - [SMALL_STATE(1559)] = 35121, - [SMALL_STATE(1560)] = 35191, - [SMALL_STATE(1561)] = 35301, - [SMALL_STATE(1562)] = 35411, - [SMALL_STATE(1563)] = 35481, - [SMALL_STATE(1564)] = 35609, - [SMALL_STATE(1565)] = 35679, - [SMALL_STATE(1566)] = 35749, - [SMALL_STATE(1567)] = 35857, - [SMALL_STATE(1568)] = 35927, - [SMALL_STATE(1569)] = 35997, - [SMALL_STATE(1570)] = 36079, - [SMALL_STATE(1571)] = 36183, - [SMALL_STATE(1572)] = 36253, - [SMALL_STATE(1573)] = 36337, - [SMALL_STATE(1574)] = 36407, - [SMALL_STATE(1575)] = 36477, - [SMALL_STATE(1576)] = 36561, - [SMALL_STATE(1577)] = 36651, - [SMALL_STATE(1578)] = 36721, - [SMALL_STATE(1579)] = 36791, - [SMALL_STATE(1580)] = 36893, - [SMALL_STATE(1581)] = 36963, - [SMALL_STATE(1582)] = 37033, - [SMALL_STATE(1583)] = 37103, - [SMALL_STATE(1584)] = 37197, - [SMALL_STATE(1585)] = 37267, - [SMALL_STATE(1586)] = 37337, - [SMALL_STATE(1587)] = 37407, - [SMALL_STATE(1588)] = 37477, - [SMALL_STATE(1589)] = 37573, - [SMALL_STATE(1590)] = 37671, - [SMALL_STATE(1591)] = 37741, - [SMALL_STATE(1592)] = 37811, - [SMALL_STATE(1593)] = 37881, - [SMALL_STATE(1594)] = 37951, - [SMALL_STATE(1595)] = 38020, - [SMALL_STATE(1596)] = 38089, - [SMALL_STATE(1597)] = 38158, - [SMALL_STATE(1598)] = 38227, - [SMALL_STATE(1599)] = 38296, - [SMALL_STATE(1600)] = 38365, - [SMALL_STATE(1601)] = 38434, - [SMALL_STATE(1602)] = 38503, - [SMALL_STATE(1603)] = 38572, - [SMALL_STATE(1604)] = 38641, - [SMALL_STATE(1605)] = 38766, - [SMALL_STATE(1606)] = 38891, - [SMALL_STATE(1607)] = 38960, - [SMALL_STATE(1608)] = 39029, - [SMALL_STATE(1609)] = 39098, - [SMALL_STATE(1610)] = 39167, - [SMALL_STATE(1611)] = 39236, - [SMALL_STATE(1612)] = 39305, - [SMALL_STATE(1613)] = 39374, - [SMALL_STATE(1614)] = 39443, - [SMALL_STATE(1615)] = 39512, - [SMALL_STATE(1616)] = 39581, - [SMALL_STATE(1617)] = 39650, - [SMALL_STATE(1618)] = 39719, - [SMALL_STATE(1619)] = 39788, - [SMALL_STATE(1620)] = 39857, - [SMALL_STATE(1621)] = 39982, - [SMALL_STATE(1622)] = 40051, - [SMALL_STATE(1623)] = 40120, - [SMALL_STATE(1624)] = 40189, - [SMALL_STATE(1625)] = 40258, - [SMALL_STATE(1626)] = 40327, - [SMALL_STATE(1627)] = 40396, - [SMALL_STATE(1628)] = 40465, - [SMALL_STATE(1629)] = 40534, - [SMALL_STATE(1630)] = 40603, - [SMALL_STATE(1631)] = 40672, - [SMALL_STATE(1632)] = 40741, - [SMALL_STATE(1633)] = 40810, - [SMALL_STATE(1634)] = 40879, - [SMALL_STATE(1635)] = 40948, - [SMALL_STATE(1636)] = 41017, - [SMALL_STATE(1637)] = 41142, - [SMALL_STATE(1638)] = 41211, - [SMALL_STATE(1639)] = 41280, - [SMALL_STATE(1640)] = 41349, - [SMALL_STATE(1641)] = 41418, - [SMALL_STATE(1642)] = 41487, - [SMALL_STATE(1643)] = 41556, - [SMALL_STATE(1644)] = 41625, - [SMALL_STATE(1645)] = 41694, - [SMALL_STATE(1646)] = 41763, - [SMALL_STATE(1647)] = 41832, - [SMALL_STATE(1648)] = 41917, - [SMALL_STATE(1649)] = 41986, - [SMALL_STATE(1650)] = 42055, - [SMALL_STATE(1651)] = 42146, - [SMALL_STATE(1652)] = 42215, - [SMALL_STATE(1653)] = 42284, - [SMALL_STATE(1654)] = 42353, - [SMALL_STATE(1655)] = 42422, - [SMALL_STATE(1656)] = 42491, - [SMALL_STATE(1657)] = 42560, - [SMALL_STATE(1658)] = 42685, - [SMALL_STATE(1659)] = 42754, - [SMALL_STATE(1660)] = 42823, - [SMALL_STATE(1661)] = 42948, - [SMALL_STATE(1662)] = 43073, - [SMALL_STATE(1663)] = 43142, - [SMALL_STATE(1664)] = 43211, - [SMALL_STATE(1665)] = 43280, - [SMALL_STATE(1666)] = 43353, - [SMALL_STATE(1667)] = 43422, - [SMALL_STATE(1668)] = 43491, - [SMALL_STATE(1669)] = 43560, - [SMALL_STATE(1670)] = 43629, - [SMALL_STATE(1671)] = 43754, - [SMALL_STATE(1672)] = 43823, - [SMALL_STATE(1673)] = 43892, - [SMALL_STATE(1674)] = 43961, - [SMALL_STATE(1675)] = 44030, - [SMALL_STATE(1676)] = 44099, - [SMALL_STATE(1677)] = 44168, - [SMALL_STATE(1678)] = 44239, - [SMALL_STATE(1679)] = 44310, - [SMALL_STATE(1680)] = 44379, - [SMALL_STATE(1681)] = 44448, - [SMALL_STATE(1682)] = 44521, - [SMALL_STATE(1683)] = 44590, - [SMALL_STATE(1684)] = 44715, - [SMALL_STATE(1685)] = 44784, - [SMALL_STATE(1686)] = 44857, - [SMALL_STATE(1687)] = 44962, - [SMALL_STATE(1688)] = 45031, - [SMALL_STATE(1689)] = 45156, - [SMALL_STATE(1690)] = 45225, - [SMALL_STATE(1691)] = 45294, - [SMALL_STATE(1692)] = 45363, - [SMALL_STATE(1693)] = 45432, - [SMALL_STATE(1694)] = 45501, - [SMALL_STATE(1695)] = 45576, - [SMALL_STATE(1696)] = 45645, - [SMALL_STATE(1697)] = 45770, - [SMALL_STATE(1698)] = 45839, - [SMALL_STATE(1699)] = 45908, - [SMALL_STATE(1700)] = 45977, - [SMALL_STATE(1701)] = 46046, - [SMALL_STATE(1702)] = 46115, - [SMALL_STATE(1703)] = 46184, - [SMALL_STATE(1704)] = 46253, - [SMALL_STATE(1705)] = 46322, - [SMALL_STATE(1706)] = 46391, - [SMALL_STATE(1707)] = 46516, - [SMALL_STATE(1708)] = 46585, - [SMALL_STATE(1709)] = 46654, - [SMALL_STATE(1710)] = 46723, - [SMALL_STATE(1711)] = 46792, - [SMALL_STATE(1712)] = 46861, - [SMALL_STATE(1713)] = 46930, - [SMALL_STATE(1714)] = 46999, - [SMALL_STATE(1715)] = 47068, - [SMALL_STATE(1716)] = 47137, - [SMALL_STATE(1717)] = 47262, - [SMALL_STATE(1718)] = 47331, - [SMALL_STATE(1719)] = 47400, - [SMALL_STATE(1720)] = 47469, - [SMALL_STATE(1721)] = 47594, - [SMALL_STATE(1722)] = 47665, - [SMALL_STATE(1723)] = 47748, - [SMALL_STATE(1724)] = 47817, - [SMALL_STATE(1725)] = 47886, - [SMALL_STATE(1726)] = 48011, - [SMALL_STATE(1727)] = 48080, - [SMALL_STATE(1728)] = 48149, - [SMALL_STATE(1729)] = 48224, - [SMALL_STATE(1730)] = 48349, - [SMALL_STATE(1731)] = 48424, - [SMALL_STATE(1732)] = 48549, - [SMALL_STATE(1733)] = 48624, - [SMALL_STATE(1734)] = 48699, - [SMALL_STATE(1735)] = 48768, - [SMALL_STATE(1736)] = 48843, - [SMALL_STATE(1737)] = 48912, - [SMALL_STATE(1738)] = 48981, - [SMALL_STATE(1739)] = 49050, - [SMALL_STATE(1740)] = 49161, - [SMALL_STATE(1741)] = 49230, - [SMALL_STATE(1742)] = 49355, - [SMALL_STATE(1743)] = 49428, - [SMALL_STATE(1744)] = 49497, - [SMALL_STATE(1745)] = 49566, - [SMALL_STATE(1746)] = 49635, - [SMALL_STATE(1747)] = 49704, - [SMALL_STATE(1748)] = 49773, - [SMALL_STATE(1749)] = 49842, - [SMALL_STATE(1750)] = 49919, - [SMALL_STATE(1751)] = 49988, - [SMALL_STATE(1752)] = 50057, - [SMALL_STATE(1753)] = 50130, - [SMALL_STATE(1754)] = 50199, - [SMALL_STATE(1755)] = 50268, - [SMALL_STATE(1756)] = 50337, - [SMALL_STATE(1757)] = 50408, - [SMALL_STATE(1758)] = 50481, - [SMALL_STATE(1759)] = 50552, - [SMALL_STATE(1760)] = 50621, - [SMALL_STATE(1761)] = 50746, - [SMALL_STATE(1762)] = 50815, - [SMALL_STATE(1763)] = 50940, - [SMALL_STATE(1764)] = 51011, - [SMALL_STATE(1765)] = 51080, - [SMALL_STATE(1766)] = 51149, - [SMALL_STATE(1767)] = 51258, - [SMALL_STATE(1768)] = 51367, - [SMALL_STATE(1769)] = 51436, - [SMALL_STATE(1770)] = 51561, - [SMALL_STATE(1771)] = 51630, - [SMALL_STATE(1772)] = 51701, - [SMALL_STATE(1773)] = 51772, - [SMALL_STATE(1774)] = 51843, - [SMALL_STATE(1775)] = 51968, - [SMALL_STATE(1776)] = 52093, - [SMALL_STATE(1777)] = 52218, - [SMALL_STATE(1778)] = 52343, - [SMALL_STATE(1779)] = 52468, - [SMALL_STATE(1780)] = 52537, - [SMALL_STATE(1781)] = 52606, - [SMALL_STATE(1782)] = 52713, - [SMALL_STATE(1783)] = 52838, - [SMALL_STATE(1784)] = 52941, - [SMALL_STATE(1785)] = 53042, - [SMALL_STATE(1786)] = 53167, - [SMALL_STATE(1787)] = 53236, - [SMALL_STATE(1788)] = 53333, - [SMALL_STATE(1789)] = 53402, - [SMALL_STATE(1790)] = 53497, - [SMALL_STATE(1791)] = 53566, - [SMALL_STATE(1792)] = 53635, - [SMALL_STATE(1793)] = 53704, - [SMALL_STATE(1794)] = 53773, - [SMALL_STATE(1795)] = 53842, - [SMALL_STATE(1796)] = 53911, - [SMALL_STATE(1797)] = 54036, - [SMALL_STATE(1798)] = 54161, - [SMALL_STATE(1799)] = 54230, - [SMALL_STATE(1800)] = 54299, - [SMALL_STATE(1801)] = 54368, - [SMALL_STATE(1802)] = 54449, - [SMALL_STATE(1803)] = 54518, - [SMALL_STATE(1804)] = 54587, - [SMALL_STATE(1805)] = 54670, - [SMALL_STATE(1806)] = 54795, - [SMALL_STATE(1807)] = 54864, - [SMALL_STATE(1808)] = 54933, - [SMALL_STATE(1809)] = 55002, - [SMALL_STATE(1810)] = 55071, - [SMALL_STATE(1811)] = 55140, - [SMALL_STATE(1812)] = 55209, - [SMALL_STATE(1813)] = 55278, - [SMALL_STATE(1814)] = 55347, - [SMALL_STATE(1815)] = 55416, - [SMALL_STATE(1816)] = 55485, - [SMALL_STATE(1817)] = 55554, - [SMALL_STATE(1818)] = 55643, - [SMALL_STATE(1819)] = 55768, - [SMALL_STATE(1820)] = 55837, - [SMALL_STATE(1821)] = 55962, - [SMALL_STATE(1822)] = 56087, - [SMALL_STATE(1823)] = 56212, - [SMALL_STATE(1824)] = 56323, - [SMALL_STATE(1825)] = 56448, - [SMALL_STATE(1826)] = 56517, - [SMALL_STATE(1827)] = 56586, - [SMALL_STATE(1828)] = 56679, - [SMALL_STATE(1829)] = 56773, - [SMALL_STATE(1830)] = 56841, - [SMALL_STATE(1831)] = 56909, - [SMALL_STATE(1832)] = 56981, - [SMALL_STATE(1833)] = 57049, - [SMALL_STATE(1834)] = 57159, - [SMALL_STATE(1835)] = 57227, - [SMALL_STATE(1836)] = 57295, - [SMALL_STATE(1837)] = 57363, - [SMALL_STATE(1838)] = 57431, - [SMALL_STATE(1839)] = 57499, - [SMALL_STATE(1840)] = 57567, - [SMALL_STATE(1841)] = 57635, - [SMALL_STATE(1842)] = 57703, - [SMALL_STATE(1843)] = 57771, - [SMALL_STATE(1844)] = 57839, - [SMALL_STATE(1845)] = 57907, - [SMALL_STATE(1846)] = 57975, - [SMALL_STATE(1847)] = 58043, - [SMALL_STATE(1848)] = 58111, - [SMALL_STATE(1849)] = 58179, - [SMALL_STATE(1850)] = 58247, - [SMALL_STATE(1851)] = 58315, - [SMALL_STATE(1852)] = 58383, - [SMALL_STATE(1853)] = 58451, - [SMALL_STATE(1854)] = 58523, - [SMALL_STATE(1855)] = 58595, - [SMALL_STATE(1856)] = 58663, - [SMALL_STATE(1857)] = 58731, - [SMALL_STATE(1858)] = 58803, - [SMALL_STATE(1859)] = 58871, - [SMALL_STATE(1860)] = 58943, - [SMALL_STATE(1861)] = 59011, - [SMALL_STATE(1862)] = 59079, - [SMALL_STATE(1863)] = 59147, - [SMALL_STATE(1864)] = 59215, - [SMALL_STATE(1865)] = 59283, - [SMALL_STATE(1866)] = 59351, - [SMALL_STATE(1867)] = 59419, - [SMALL_STATE(1868)] = 59487, - [SMALL_STATE(1869)] = 59555, - [SMALL_STATE(1870)] = 59623, - [SMALL_STATE(1871)] = 59691, - [SMALL_STATE(1872)] = 59759, - [SMALL_STATE(1873)] = 59827, - [SMALL_STATE(1874)] = 59895, - [SMALL_STATE(1875)] = 59963, - [SMALL_STATE(1876)] = 60031, - [SMALL_STATE(1877)] = 60099, - [SMALL_STATE(1878)] = 60167, - [SMALL_STATE(1879)] = 60235, - [SMALL_STATE(1880)] = 60307, - [SMALL_STATE(1881)] = 60387, - [SMALL_STATE(1882)] = 60455, - [SMALL_STATE(1883)] = 60523, - [SMALL_STATE(1884)] = 60595, - [SMALL_STATE(1885)] = 60663, - [SMALL_STATE(1886)] = 60745, - [SMALL_STATE(1887)] = 60817, - [SMALL_STATE(1888)] = 60885, - [SMALL_STATE(1889)] = 60953, - [SMALL_STATE(1890)] = 61021, - [SMALL_STATE(1891)] = 61089, - [SMALL_STATE(1892)] = 61157, - [SMALL_STATE(1893)] = 61225, - [SMALL_STATE(1894)] = 61293, - [SMALL_STATE(1895)] = 61361, - [SMALL_STATE(1896)] = 61429, - [SMALL_STATE(1897)] = 61501, - [SMALL_STATE(1898)] = 61569, - [SMALL_STATE(1899)] = 61643, - [SMALL_STATE(1900)] = 61711, - [SMALL_STATE(1901)] = 61793, - [SMALL_STATE(1902)] = 61897, - [SMALL_STATE(1903)] = 61987, - [SMALL_STATE(1904)] = 62075, - [SMALL_STATE(1905)] = 62167, - [SMALL_STATE(1906)] = 62239, - [SMALL_STATE(1907)] = 62307, - [SMALL_STATE(1908)] = 62381, - [SMALL_STATE(1909)] = 62449, - [SMALL_STATE(1910)] = 62549, - [SMALL_STATE(1911)] = 62621, - [SMALL_STATE(1912)] = 62705, - [SMALL_STATE(1913)] = 62807, - [SMALL_STATE(1914)] = 62913, - [SMALL_STATE(1915)] = 63021, - [SMALL_STATE(1916)] = 63129, - [SMALL_STATE(1917)] = 63201, - [SMALL_STATE(1918)] = 63275, - [SMALL_STATE(1919)] = 63343, - [SMALL_STATE(1920)] = 63415, - [SMALL_STATE(1921)] = 63489, - [SMALL_STATE(1922)] = 63559, - [SMALL_STATE(1923)] = 63631, - [SMALL_STATE(1924)] = 63699, - [SMALL_STATE(1925)] = 63809, - [SMALL_STATE(1926)] = 63877, - [SMALL_STATE(1927)] = 63945, - [SMALL_STATE(1928)] = 64013, - [SMALL_STATE(1929)] = 64085, - [SMALL_STATE(1930)] = 64153, - [SMALL_STATE(1931)] = 64221, - [SMALL_STATE(1932)] = 64297, - [SMALL_STATE(1933)] = 64365, - [SMALL_STATE(1934)] = 64479, - [SMALL_STATE(1935)] = 64547, - [SMALL_STATE(1936)] = 64615, - [SMALL_STATE(1937)] = 64683, - [SMALL_STATE(1938)] = 64751, - [SMALL_STATE(1939)] = 64819, - [SMALL_STATE(1940)] = 64891, - [SMALL_STATE(1941)] = 64959, - [SMALL_STATE(1942)] = 65027, - [SMALL_STATE(1943)] = 65123, - [SMALL_STATE(1944)] = 65191, - [SMALL_STATE(1945)] = 65259, - [SMALL_STATE(1946)] = 65327, - [SMALL_STATE(1947)] = 65395, - [SMALL_STATE(1948)] = 65467, - [SMALL_STATE(1949)] = 65535, - [SMALL_STATE(1950)] = 65603, - [SMALL_STATE(1951)] = 65671, - [SMALL_STATE(1952)] = 65739, - [SMALL_STATE(1953)] = 65807, - [SMALL_STATE(1954)] = 65875, - [SMALL_STATE(1955)] = 65943, - [SMALL_STATE(1956)] = 66011, - [SMALL_STATE(1957)] = 66079, - [SMALL_STATE(1958)] = 66147, - [SMALL_STATE(1959)] = 66215, - [SMALL_STATE(1960)] = 66285, - [SMALL_STATE(1961)] = 66353, - [SMALL_STATE(1962)] = 66425, - [SMALL_STATE(1963)] = 66497, - [SMALL_STATE(1964)] = 66565, - [SMALL_STATE(1965)] = 66635, - [SMALL_STATE(1966)] = 66707, - [SMALL_STATE(1967)] = 66775, - [SMALL_STATE(1968)] = 66843, - [SMALL_STATE(1969)] = 66911, - [SMALL_STATE(1970)] = 66979, - [SMALL_STATE(1971)] = 67047, - [SMALL_STATE(1972)] = 67119, - [SMALL_STATE(1973)] = 67187, - [SMALL_STATE(1974)] = 67255, - [SMALL_STATE(1975)] = 67323, - [SMALL_STATE(1976)] = 67395, - [SMALL_STATE(1977)] = 67463, - [SMALL_STATE(1978)] = 67533, - [SMALL_STATE(1979)] = 67605, - [SMALL_STATE(1980)] = 67719, - [SMALL_STATE(1981)] = 67787, - [SMALL_STATE(1982)] = 67861, - [SMALL_STATE(1983)] = 67931, - [SMALL_STATE(1984)] = 67999, - [SMALL_STATE(1985)] = 68071, - [SMALL_STATE(1986)] = 68143, - [SMALL_STATE(1987)] = 68210, - [SMALL_STATE(1988)] = 68277, - [SMALL_STATE(1989)] = 68344, - [SMALL_STATE(1990)] = 68427, - [SMALL_STATE(1991)] = 68506, - [SMALL_STATE(1992)] = 68587, - [SMALL_STATE(1993)] = 68668, - [SMALL_STATE(1994)] = 68755, - [SMALL_STATE(1995)] = 68846, - [SMALL_STATE(1996)] = 68939, - [SMALL_STATE(1997)] = 69034, - [SMALL_STATE(1998)] = 69133, - [SMALL_STATE(1999)] = 69234, - [SMALL_STATE(2000)] = 69339, - [SMALL_STATE(2001)] = 69446, - [SMALL_STATE(2002)] = 69553, - [SMALL_STATE(2003)] = 69628, - [SMALL_STATE(2004)] = 69701, - [SMALL_STATE(2005)] = 69768, - [SMALL_STATE(2006)] = 69871, - [SMALL_STATE(2007)] = 69960, - [SMALL_STATE(2008)] = 70027, - [SMALL_STATE(2009)] = 70094, - [SMALL_STATE(2010)] = 70203, - [SMALL_STATE(2011)] = 70312, - [SMALL_STATE(2012)] = 70381, - [SMALL_STATE(2013)] = 70450, - [SMALL_STATE(2014)] = 70517, - [SMALL_STATE(2015)] = 70584, - [SMALL_STATE(2016)] = 70651, - [SMALL_STATE(2017)] = 70718, - [SMALL_STATE(2018)] = 70785, - [SMALL_STATE(2019)] = 70852, - [SMALL_STATE(2020)] = 70919, - [SMALL_STATE(2021)] = 70986, - [SMALL_STATE(2022)] = 71053, - [SMALL_STATE(2023)] = 71162, - [SMALL_STATE(2024)] = 71229, - [SMALL_STATE(2025)] = 71296, - [SMALL_STATE(2026)] = 71363, - [SMALL_STATE(2027)] = 71430, - [SMALL_STATE(2028)] = 71497, - [SMALL_STATE(2029)] = 71564, - [SMALL_STATE(2030)] = 71635, - [SMALL_STATE(2031)] = 71702, - [SMALL_STATE(2032)] = 71775, - [SMALL_STATE(2033)] = 71842, - [SMALL_STATE(2034)] = 71909, - [SMALL_STATE(2035)] = 71976, - [SMALL_STATE(2036)] = 72043, - [SMALL_STATE(2037)] = 72110, - [SMALL_STATE(2038)] = 72183, - [SMALL_STATE(2039)] = 72250, - [SMALL_STATE(2040)] = 72317, - [SMALL_STATE(2041)] = 72390, - [SMALL_STATE(2042)] = 72461, - [SMALL_STATE(2043)] = 72534, - [SMALL_STATE(2044)] = 72601, - [SMALL_STATE(2045)] = 72680, - [SMALL_STATE(2046)] = 72761, - [SMALL_STATE(2047)] = 72828, - [SMALL_STATE(2048)] = 72899, - [SMALL_STATE(2049)] = 72966, - [SMALL_STATE(2050)] = 73033, - [SMALL_STATE(2051)] = 73104, - [SMALL_STATE(2052)] = 73185, - [SMALL_STATE(2053)] = 73256, - [SMALL_STATE(2054)] = 73323, - [SMALL_STATE(2055)] = 73432, - [SMALL_STATE(2056)] = 73519, - [SMALL_STATE(2057)] = 73610, - [SMALL_STATE(2058)] = 73703, - [SMALL_STATE(2059)] = 73798, - [SMALL_STATE(2060)] = 73897, - [SMALL_STATE(2061)] = 73964, - [SMALL_STATE(2062)] = 74031, - [SMALL_STATE(2063)] = 74098, - [SMALL_STATE(2064)] = 74165, - [SMALL_STATE(2065)] = 74266, - [SMALL_STATE(2066)] = 74333, - [SMALL_STATE(2067)] = 74400, - [SMALL_STATE(2068)] = 74473, - [SMALL_STATE(2069)] = 74578, - [SMALL_STATE(2070)] = 74651, - [SMALL_STATE(2071)] = 74718, - [SMALL_STATE(2072)] = 74791, - [SMALL_STATE(2073)] = 74864, - [SMALL_STATE(2074)] = 74971, - [SMALL_STATE(2075)] = 75038, - [SMALL_STATE(2076)] = 75145, - [SMALL_STATE(2077)] = 75220, - [SMALL_STATE(2078)] = 75293, - [SMALL_STATE(2079)] = 75360, - [SMALL_STATE(2080)] = 75463, - [SMALL_STATE(2081)] = 75552, - [SMALL_STATE(2082)] = 75619, - [SMALL_STATE(2083)] = 75686, - [SMALL_STATE(2084)] = 75753, - [SMALL_STATE(2085)] = 75820, - [SMALL_STATE(2086)] = 75887, - [SMALL_STATE(2087)] = 75970, - [SMALL_STATE(2088)] = 76037, - [SMALL_STATE(2089)] = 76104, - [SMALL_STATE(2090)] = 76171, - [SMALL_STATE(2091)] = 76238, - [SMALL_STATE(2092)] = 76305, - [SMALL_STATE(2093)] = 76374, - [SMALL_STATE(2094)] = 76441, - [SMALL_STATE(2095)] = 76514, - [SMALL_STATE(2096)] = 76581, - [SMALL_STATE(2097)] = 76648, - [SMALL_STATE(2098)] = 76717, - [SMALL_STATE(2099)] = 76784, - [SMALL_STATE(2100)] = 76855, - [SMALL_STATE(2101)] = 76922, - [SMALL_STATE(2102)] = 76989, - [SMALL_STATE(2103)] = 77056, - [SMALL_STATE(2104)] = 77169, - [SMALL_STATE(2105)] = 77236, - [SMALL_STATE(2106)] = 77303, - [SMALL_STATE(2107)] = 77370, - [SMALL_STATE(2108)] = 77441, - [SMALL_STATE(2109)] = 77550, - [SMALL_STATE(2110)] = 77621, - [SMALL_STATE(2111)] = 77688, - [SMALL_STATE(2112)] = 77755, - [SMALL_STATE(2113)] = 77822, - [SMALL_STATE(2114)] = 77931, - [SMALL_STATE(2115)] = 78000, - [SMALL_STATE(2116)] = 78067, - [SMALL_STATE(2117)] = 78134, - [SMALL_STATE(2118)] = 78201, - [SMALL_STATE(2119)] = 78268, - [SMALL_STATE(2120)] = 78335, - [SMALL_STATE(2121)] = 78406, - [SMALL_STATE(2122)] = 78515, - [SMALL_STATE(2123)] = 78582, - [SMALL_STATE(2124)] = 78649, - [SMALL_STATE(2125)] = 78716, - [SMALL_STATE(2126)] = 78787, - [SMALL_STATE(2127)] = 78854, - [SMALL_STATE(2128)] = 78921, - [SMALL_STATE(2129)] = 78990, - [SMALL_STATE(2130)] = 79061, - [SMALL_STATE(2131)] = 79130, - [SMALL_STATE(2132)] = 79203, - [SMALL_STATE(2133)] = 79270, - [SMALL_STATE(2134)] = 79337, - [SMALL_STATE(2135)] = 79408, - [SMALL_STATE(2136)] = 79479, - [SMALL_STATE(2137)] = 79550, - [SMALL_STATE(2138)] = 79617, - [SMALL_STATE(2139)] = 79690, - [SMALL_STATE(2140)] = 79757, - [SMALL_STATE(2141)] = 79824, - [SMALL_STATE(2142)] = 79891, - [SMALL_STATE(2143)] = 79958, - [SMALL_STATE(2144)] = 80025, - [SMALL_STATE(2145)] = 80092, - [SMALL_STATE(2146)] = 80165, - [SMALL_STATE(2147)] = 80232, - [SMALL_STATE(2148)] = 80299, - [SMALL_STATE(2149)] = 80412, - [SMALL_STATE(2150)] = 80479, - [SMALL_STATE(2151)] = 80546, - [SMALL_STATE(2152)] = 80613, - [SMALL_STATE(2153)] = 80680, - [SMALL_STATE(2154)] = 80747, - [SMALL_STATE(2155)] = 80814, - [SMALL_STATE(2156)] = 80881, - [SMALL_STATE(2157)] = 80950, - [SMALL_STATE(2158)] = 81021, - [SMALL_STATE(2159)] = 81088, - [SMALL_STATE(2160)] = 81155, - [SMALL_STATE(2161)] = 81222, - [SMALL_STATE(2162)] = 81289, - [SMALL_STATE(2163)] = 81356, - [SMALL_STATE(2164)] = 81423, - [SMALL_STATE(2165)] = 81490, - [SMALL_STATE(2166)] = 81557, - [SMALL_STATE(2167)] = 81624, - [SMALL_STATE(2168)] = 81691, - [SMALL_STATE(2169)] = 81758, - [SMALL_STATE(2170)] = 81825, - [SMALL_STATE(2171)] = 81892, - [SMALL_STATE(2172)] = 82005, - [SMALL_STATE(2173)] = 82076, - [SMALL_STATE(2174)] = 82147, - [SMALL_STATE(2175)] = 82214, - [SMALL_STATE(2176)] = 82281, - [SMALL_STATE(2177)] = 82348, - [SMALL_STATE(2178)] = 82415, - [SMALL_STATE(2179)] = 82482, - [SMALL_STATE(2180)] = 82549, - [SMALL_STATE(2181)] = 82616, - [SMALL_STATE(2182)] = 82683, - [SMALL_STATE(2183)] = 82750, - [SMALL_STATE(2184)] = 82817, - [SMALL_STATE(2185)] = 82884, - [SMALL_STATE(2186)] = 82951, - [SMALL_STATE(2187)] = 83018, - [SMALL_STATE(2188)] = 83085, - [SMALL_STATE(2189)] = 83152, - [SMALL_STATE(2190)] = 83221, - [SMALL_STATE(2191)] = 83288, - [SMALL_STATE(2192)] = 83355, - [SMALL_STATE(2193)] = 83422, - [SMALL_STATE(2194)] = 83489, - [SMALL_STATE(2195)] = 83556, - [SMALL_STATE(2196)] = 83623, - [SMALL_STATE(2197)] = 83690, - [SMALL_STATE(2198)] = 83757, - [SMALL_STATE(2199)] = 83828, - [SMALL_STATE(2200)] = 83895, - [SMALL_STATE(2201)] = 83962, - [SMALL_STATE(2202)] = 84029, - [SMALL_STATE(2203)] = 84096, - [SMALL_STATE(2204)] = 84163, - [SMALL_STATE(2205)] = 84230, - [SMALL_STATE(2206)] = 84297, - [SMALL_STATE(2207)] = 84364, - [SMALL_STATE(2208)] = 84431, - [SMALL_STATE(2209)] = 84498, - [SMALL_STATE(2210)] = 84565, - [SMALL_STATE(2211)] = 84632, - [SMALL_STATE(2212)] = 84699, - [SMALL_STATE(2213)] = 84766, - [SMALL_STATE(2214)] = 84833, - [SMALL_STATE(2215)] = 84900, - [SMALL_STATE(2216)] = 84967, - [SMALL_STATE(2217)] = 85034, - [SMALL_STATE(2218)] = 85105, - [SMALL_STATE(2219)] = 85172, - [SMALL_STATE(2220)] = 85239, - [SMALL_STATE(2221)] = 85306, - [SMALL_STATE(2222)] = 85373, - [SMALL_STATE(2223)] = 85440, - [SMALL_STATE(2224)] = 85507, - [SMALL_STATE(2225)] = 85574, - [SMALL_STATE(2226)] = 85641, - [SMALL_STATE(2227)] = 85708, - [SMALL_STATE(2228)] = 85775, - [SMALL_STATE(2229)] = 85842, - [SMALL_STATE(2230)] = 85909, - [SMALL_STATE(2231)] = 85980, - [SMALL_STATE(2232)] = 86047, - [SMALL_STATE(2233)] = 86118, - [SMALL_STATE(2234)] = 86189, - [SMALL_STATE(2235)] = 86256, - [SMALL_STATE(2236)] = 86325, - [SMALL_STATE(2237)] = 86392, - [SMALL_STATE(2238)] = 86459, - [SMALL_STATE(2239)] = 86530, - [SMALL_STATE(2240)] = 86597, - [SMALL_STATE(2241)] = 86664, - [SMALL_STATE(2242)] = 86731, - [SMALL_STATE(2243)] = 86798, - [SMALL_STATE(2244)] = 86865, - [SMALL_STATE(2245)] = 86932, - [SMALL_STATE(2246)] = 86999, - [SMALL_STATE(2247)] = 87066, - [SMALL_STATE(2248)] = 87133, - [SMALL_STATE(2249)] = 87200, - [SMALL_STATE(2250)] = 87267, - [SMALL_STATE(2251)] = 87336, - [SMALL_STATE(2252)] = 87403, - [SMALL_STATE(2253)] = 87470, - [SMALL_STATE(2254)] = 87537, - [SMALL_STATE(2255)] = 87604, - [SMALL_STATE(2256)] = 87713, - [SMALL_STATE(2257)] = 87784, - [SMALL_STATE(2258)] = 87851, - [SMALL_STATE(2259)] = 87918, - [SMALL_STATE(2260)] = 87985, - [SMALL_STATE(2261)] = 88052, - [SMALL_STATE(2262)] = 88119, - [SMALL_STATE(2263)] = 88188, - [SMALL_STATE(2264)] = 88255, - [SMALL_STATE(2265)] = 88324, - [SMALL_STATE(2266)] = 88393, - [SMALL_STATE(2267)] = 88462, - [SMALL_STATE(2268)] = 88529, - [SMALL_STATE(2269)] = 88598, - [SMALL_STATE(2270)] = 88667, - [SMALL_STATE(2271)] = 88780, - [SMALL_STATE(2272)] = 88849, - [SMALL_STATE(2273)] = 88918, - [SMALL_STATE(2274)] = 88985, - [SMALL_STATE(2275)] = 89054, - [SMALL_STATE(2276)] = 89125, - [SMALL_STATE(2277)] = 89194, - [SMALL_STATE(2278)] = 89261, - [SMALL_STATE(2279)] = 89328, - [SMALL_STATE(2280)] = 89395, - [SMALL_STATE(2281)] = 89462, - [SMALL_STATE(2282)] = 89529, - [SMALL_STATE(2283)] = 89596, - [SMALL_STATE(2284)] = 89663, - [SMALL_STATE(2285)] = 89730, - [SMALL_STATE(2286)] = 89797, - [SMALL_STATE(2287)] = 89864, - [SMALL_STATE(2288)] = 89931, - [SMALL_STATE(2289)] = 89998, - [SMALL_STATE(2290)] = 90065, - [SMALL_STATE(2291)] = 90132, - [SMALL_STATE(2292)] = 90199, - [SMALL_STATE(2293)] = 90266, - [SMALL_STATE(2294)] = 90333, - [SMALL_STATE(2295)] = 90400, - [SMALL_STATE(2296)] = 90467, - [SMALL_STATE(2297)] = 90534, - [SMALL_STATE(2298)] = 90601, - [SMALL_STATE(2299)] = 90670, - [SMALL_STATE(2300)] = 90737, - [SMALL_STATE(2301)] = 90804, - [SMALL_STATE(2302)] = 90871, - [SMALL_STATE(2303)] = 90938, - [SMALL_STATE(2304)] = 91005, - [SMALL_STATE(2305)] = 91072, - [SMALL_STATE(2306)] = 91139, - [SMALL_STATE(2307)] = 91206, - [SMALL_STATE(2308)] = 91273, - [SMALL_STATE(2309)] = 91340, - [SMALL_STATE(2310)] = 91407, - [SMALL_STATE(2311)] = 91478, - [SMALL_STATE(2312)] = 91547, - [SMALL_STATE(2313)] = 91614, - [SMALL_STATE(2314)] = 91681, - [SMALL_STATE(2315)] = 91748, - [SMALL_STATE(2316)] = 91815, - [SMALL_STATE(2317)] = 91882, - [SMALL_STATE(2318)] = 91949, - [SMALL_STATE(2319)] = 92016, - [SMALL_STATE(2320)] = 92083, - [SMALL_STATE(2321)] = 92150, - [SMALL_STATE(2322)] = 92217, - [SMALL_STATE(2323)] = 92284, - [SMALL_STATE(2324)] = 92351, - [SMALL_STATE(2325)] = 92418, - [SMALL_STATE(2326)] = 92485, - [SMALL_STATE(2327)] = 92552, - [SMALL_STATE(2328)] = 92619, - [SMALL_STATE(2329)] = 92686, - [SMALL_STATE(2330)] = 92753, - [SMALL_STATE(2331)] = 92820, - [SMALL_STATE(2332)] = 92887, - [SMALL_STATE(2333)] = 92954, - [SMALL_STATE(2334)] = 93021, - [SMALL_STATE(2335)] = 93088, - [SMALL_STATE(2336)] = 93155, - [SMALL_STATE(2337)] = 93222, - [SMALL_STATE(2338)] = 93289, - [SMALL_STATE(2339)] = 93356, - [SMALL_STATE(2340)] = 93423, - [SMALL_STATE(2341)] = 93490, - [SMALL_STATE(2342)] = 93557, - [SMALL_STATE(2343)] = 93624, - [SMALL_STATE(2344)] = 93691, - [SMALL_STATE(2345)] = 93758, - [SMALL_STATE(2346)] = 93825, - [SMALL_STATE(2347)] = 93892, - [SMALL_STATE(2348)] = 93959, - [SMALL_STATE(2349)] = 94025, - [SMALL_STATE(2350)] = 94091, - [SMALL_STATE(2351)] = 94157, - [SMALL_STATE(2352)] = 94223, - [SMALL_STATE(2353)] = 94289, - [SMALL_STATE(2354)] = 94355, - [SMALL_STATE(2355)] = 94421, - [SMALL_STATE(2356)] = 94487, - [SMALL_STATE(2357)] = 94553, - [SMALL_STATE(2358)] = 94619, - [SMALL_STATE(2359)] = 94685, - [SMALL_STATE(2360)] = 94751, - [SMALL_STATE(2361)] = 94817, - [SMALL_STATE(2362)] = 94883, - [SMALL_STATE(2363)] = 94949, - [SMALL_STATE(2364)] = 95015, - [SMALL_STATE(2365)] = 95081, - [SMALL_STATE(2366)] = 95147, - [SMALL_STATE(2367)] = 95217, - [SMALL_STATE(2368)] = 95283, - [SMALL_STATE(2369)] = 95353, - [SMALL_STATE(2370)] = 95465, - [SMALL_STATE(2371)] = 95531, - [SMALL_STATE(2372)] = 95597, - [SMALL_STATE(2373)] = 95663, - [SMALL_STATE(2374)] = 95729, - [SMALL_STATE(2375)] = 95799, - [SMALL_STATE(2376)] = 95865, - [SMALL_STATE(2377)] = 95931, - [SMALL_STATE(2378)] = 95997, - [SMALL_STATE(2379)] = 96063, - [SMALL_STATE(2380)] = 96129, - [SMALL_STATE(2381)] = 96195, - [SMALL_STATE(2382)] = 96261, - [SMALL_STATE(2383)] = 96327, - [SMALL_STATE(2384)] = 96393, - [SMALL_STATE(2385)] = 96459, - [SMALL_STATE(2386)] = 96525, - [SMALL_STATE(2387)] = 96591, - [SMALL_STATE(2388)] = 96657, - [SMALL_STATE(2389)] = 96723, - [SMALL_STATE(2390)] = 96793, - [SMALL_STATE(2391)] = 96859, - [SMALL_STATE(2392)] = 96925, - [SMALL_STATE(2393)] = 96991, - [SMALL_STATE(2394)] = 97057, - [SMALL_STATE(2395)] = 97123, - [SMALL_STATE(2396)] = 97193, - [SMALL_STATE(2397)] = 97259, - [SMALL_STATE(2398)] = 97367, - [SMALL_STATE(2399)] = 97433, - [SMALL_STATE(2400)] = 97499, - [SMALL_STATE(2401)] = 97565, - [SMALL_STATE(2402)] = 97631, - [SMALL_STATE(2403)] = 97697, - [SMALL_STATE(2404)] = 97763, - [SMALL_STATE(2405)] = 97829, - [SMALL_STATE(2406)] = 97895, - [SMALL_STATE(2407)] = 97961, - [SMALL_STATE(2408)] = 98027, - [SMALL_STATE(2409)] = 98093, - [SMALL_STATE(2410)] = 98159, - [SMALL_STATE(2411)] = 98225, - [SMALL_STATE(2412)] = 98291, - [SMALL_STATE(2413)] = 98357, - [SMALL_STATE(2414)] = 98423, - [SMALL_STATE(2415)] = 98489, - [SMALL_STATE(2416)] = 98555, - [SMALL_STATE(2417)] = 98621, - [SMALL_STATE(2418)] = 98687, - [SMALL_STATE(2419)] = 98753, - [SMALL_STATE(2420)] = 98819, - [SMALL_STATE(2421)] = 98885, - [SMALL_STATE(2422)] = 98993, - [SMALL_STATE(2423)] = 99059, - [SMALL_STATE(2424)] = 99129, - [SMALL_STATE(2425)] = 99195, - [SMALL_STATE(2426)] = 99261, - [SMALL_STATE(2427)] = 99329, - [SMALL_STATE(2428)] = 99395, - [SMALL_STATE(2429)] = 99461, - [SMALL_STATE(2430)] = 99527, - [SMALL_STATE(2431)] = 99593, - [SMALL_STATE(2432)] = 99659, - [SMALL_STATE(2433)] = 99725, - [SMALL_STATE(2434)] = 99841, - [SMALL_STATE(2435)] = 99907, - [SMALL_STATE(2436)] = 99973, - [SMALL_STATE(2437)] = 100039, - [SMALL_STATE(2438)] = 100105, - [SMALL_STATE(2439)] = 100171, - [SMALL_STATE(2440)] = 100237, - [SMALL_STATE(2441)] = 100303, - [SMALL_STATE(2442)] = 100369, - [SMALL_STATE(2443)] = 100435, - [SMALL_STATE(2444)] = 100501, - [SMALL_STATE(2445)] = 100567, - [SMALL_STATE(2446)] = 100633, - [SMALL_STATE(2447)] = 100699, - [SMALL_STATE(2448)] = 100765, - [SMALL_STATE(2449)] = 100831, - [SMALL_STATE(2450)] = 100897, - [SMALL_STATE(2451)] = 100963, - [SMALL_STATE(2452)] = 101029, - [SMALL_STATE(2453)] = 101095, - [SMALL_STATE(2454)] = 101161, - [SMALL_STATE(2455)] = 101227, - [SMALL_STATE(2456)] = 101297, - [SMALL_STATE(2457)] = 101365, - [SMALL_STATE(2458)] = 101431, - [SMALL_STATE(2459)] = 101497, - [SMALL_STATE(2460)] = 101563, - [SMALL_STATE(2461)] = 101629, - [SMALL_STATE(2462)] = 101695, - [SMALL_STATE(2463)] = 101761, - [SMALL_STATE(2464)] = 101827, - [SMALL_STATE(2465)] = 101893, - [SMALL_STATE(2466)] = 101959, - [SMALL_STATE(2467)] = 102025, - [SMALL_STATE(2468)] = 102091, - [SMALL_STATE(2469)] = 102157, - [SMALL_STATE(2470)] = 102223, - [SMALL_STATE(2471)] = 102305, - [SMALL_STATE(2472)] = 102393, - [SMALL_STATE(2473)] = 102495, - [SMALL_STATE(2474)] = 102565, - [SMALL_STATE(2475)] = 102637, - [SMALL_STATE(2476)] = 102711, - [SMALL_STATE(2477)] = 102817, - [SMALL_STATE(2478)] = 102923, - [SMALL_STATE(2479)] = 102989, - [SMALL_STATE(2480)] = 103093, - [SMALL_STATE(2481)] = 103193, - [SMALL_STATE(2482)] = 103291, - [SMALL_STATE(2483)] = 103385, - [SMALL_STATE(2484)] = 103477, - [SMALL_STATE(2485)] = 103567, - [SMALL_STATE(2486)] = 103653, - [SMALL_STATE(2487)] = 103733, - [SMALL_STATE(2488)] = 103813, - [SMALL_STATE(2489)] = 103891, - [SMALL_STATE(2490)] = 103961, - [SMALL_STATE(2491)] = 104031, - [SMALL_STATE(2492)] = 104097, - [SMALL_STATE(2493)] = 104167, - [SMALL_STATE(2494)] = 104237, - [SMALL_STATE(2495)] = 104303, - [SMALL_STATE(2496)] = 104369, - [SMALL_STATE(2497)] = 104485, - [SMALL_STATE(2498)] = 104551, - [SMALL_STATE(2499)] = 104617, - [SMALL_STATE(2500)] = 104685, - [SMALL_STATE(2501)] = 104793, - [SMALL_STATE(2502)] = 104863, - [SMALL_STATE(2503)] = 104929, - [SMALL_STATE(2504)] = 104997, - [SMALL_STATE(2505)] = 105065, - [SMALL_STATE(2506)] = 105135, - [SMALL_STATE(2507)] = 105203, - [SMALL_STATE(2508)] = 105271, - [SMALL_STATE(2509)] = 105337, - [SMALL_STATE(2510)] = 105403, - [SMALL_STATE(2511)] = 105469, - [SMALL_STATE(2512)] = 105535, - [SMALL_STATE(2513)] = 105601, - [SMALL_STATE(2514)] = 105667, - [SMALL_STATE(2515)] = 105733, - [SMALL_STATE(2516)] = 105799, - [SMALL_STATE(2517)] = 105865, - [SMALL_STATE(2518)] = 105931, - [SMALL_STATE(2519)] = 105997, - [SMALL_STATE(2520)] = 106063, - [SMALL_STATE(2521)] = 106129, - [SMALL_STATE(2522)] = 106199, - [SMALL_STATE(2523)] = 106265, - [SMALL_STATE(2524)] = 106335, - [SMALL_STATE(2525)] = 106401, - [SMALL_STATE(2526)] = 106467, - [SMALL_STATE(2527)] = 106533, - [SMALL_STATE(2528)] = 106599, - [SMALL_STATE(2529)] = 106665, - [SMALL_STATE(2530)] = 106773, - [SMALL_STATE(2531)] = 106839, - [SMALL_STATE(2532)] = 106905, - [SMALL_STATE(2533)] = 106971, - [SMALL_STATE(2534)] = 107037, - [SMALL_STATE(2535)] = 107103, - [SMALL_STATE(2536)] = 107169, - [SMALL_STATE(2537)] = 107235, - [SMALL_STATE(2538)] = 107305, - [SMALL_STATE(2539)] = 107371, - [SMALL_STATE(2540)] = 107437, - [SMALL_STATE(2541)] = 107503, - [SMALL_STATE(2542)] = 107569, - [SMALL_STATE(2543)] = 107635, - [SMALL_STATE(2544)] = 107701, - [SMALL_STATE(2545)] = 107767, - [SMALL_STATE(2546)] = 107833, - [SMALL_STATE(2547)] = 107899, - [SMALL_STATE(2548)] = 107965, - [SMALL_STATE(2549)] = 108031, - [SMALL_STATE(2550)] = 108097, - [SMALL_STATE(2551)] = 108167, - [SMALL_STATE(2552)] = 108233, - [SMALL_STATE(2553)] = 108299, - [SMALL_STATE(2554)] = 108407, - [SMALL_STATE(2555)] = 108473, - [SMALL_STATE(2556)] = 108539, - [SMALL_STATE(2557)] = 108605, - [SMALL_STATE(2558)] = 108671, - [SMALL_STATE(2559)] = 108737, - [SMALL_STATE(2560)] = 108807, - [SMALL_STATE(2561)] = 108873, - [SMALL_STATE(2562)] = 108939, - [SMALL_STATE(2563)] = 109005, - [SMALL_STATE(2564)] = 109071, - [SMALL_STATE(2565)] = 109137, - [SMALL_STATE(2566)] = 109207, - [SMALL_STATE(2567)] = 109273, - [SMALL_STATE(2568)] = 109339, - [SMALL_STATE(2569)] = 109405, - [SMALL_STATE(2570)] = 109473, - [SMALL_STATE(2571)] = 109541, - [SMALL_STATE(2572)] = 109607, - [SMALL_STATE(2573)] = 109673, - [SMALL_STATE(2574)] = 109739, - [SMALL_STATE(2575)] = 109805, - [SMALL_STATE(2576)] = 109871, - [SMALL_STATE(2577)] = 109937, - [SMALL_STATE(2578)] = 110003, - [SMALL_STATE(2579)] = 110069, - [SMALL_STATE(2580)] = 110135, - [SMALL_STATE(2581)] = 110201, - [SMALL_STATE(2582)] = 110317, - [SMALL_STATE(2583)] = 110387, - [SMALL_STATE(2584)] = 110457, - [SMALL_STATE(2585)] = 110523, - [SMALL_STATE(2586)] = 110589, - [SMALL_STATE(2587)] = 110697, - [SMALL_STATE(2588)] = 110763, - [SMALL_STATE(2589)] = 110829, - [SMALL_STATE(2590)] = 110895, - [SMALL_STATE(2591)] = 110965, - [SMALL_STATE(2592)] = 111031, - [SMALL_STATE(2593)] = 111097, - [SMALL_STATE(2594)] = 111189, - [SMALL_STATE(2595)] = 111255, - [SMALL_STATE(2596)] = 111321, - [SMALL_STATE(2597)] = 111387, - [SMALL_STATE(2598)] = 111453, - [SMALL_STATE(2599)] = 111519, - [SMALL_STATE(2600)] = 111585, - [SMALL_STATE(2601)] = 111671, - [SMALL_STATE(2602)] = 111737, - [SMALL_STATE(2603)] = 111845, - [SMALL_STATE(2604)] = 111911, - [SMALL_STATE(2605)] = 111977, - [SMALL_STATE(2606)] = 112043, - [SMALL_STATE(2607)] = 112109, - [SMALL_STATE(2608)] = 112175, - [SMALL_STATE(2609)] = 112241, - [SMALL_STATE(2610)] = 112307, - [SMALL_STATE(2611)] = 112373, - [SMALL_STATE(2612)] = 112439, - [SMALL_STATE(2613)] = 112505, - [SMALL_STATE(2614)] = 112571, - [SMALL_STATE(2615)] = 112637, - [SMALL_STATE(2616)] = 112703, - [SMALL_STATE(2617)] = 112769, - [SMALL_STATE(2618)] = 112835, - [SMALL_STATE(2619)] = 112901, - [SMALL_STATE(2620)] = 112967, - [SMALL_STATE(2621)] = 113033, - [SMALL_STATE(2622)] = 113099, - [SMALL_STATE(2623)] = 113165, - [SMALL_STATE(2624)] = 113231, - [SMALL_STATE(2625)] = 113297, - [SMALL_STATE(2626)] = 113363, - [SMALL_STATE(2627)] = 113429, - [SMALL_STATE(2628)] = 113495, - [SMALL_STATE(2629)] = 113561, - [SMALL_STATE(2630)] = 113631, - [SMALL_STATE(2631)] = 113709, - [SMALL_STATE(2632)] = 113789, - [SMALL_STATE(2633)] = 113869, - [SMALL_STATE(2634)] = 113943, - [SMALL_STATE(2635)] = 114033, - [SMALL_STATE(2636)] = 114125, - [SMALL_STATE(2637)] = 114219, - [SMALL_STATE(2638)] = 114317, - [SMALL_STATE(2639)] = 114417, - [SMALL_STATE(2640)] = 114521, - [SMALL_STATE(2641)] = 114587, - [SMALL_STATE(2642)] = 114693, - [SMALL_STATE(2643)] = 114799, - [SMALL_STATE(2644)] = 114915, - [SMALL_STATE(2645)] = 114987, - [SMALL_STATE(2646)] = 115053, - [SMALL_STATE(2647)] = 115155, - [SMALL_STATE(2648)] = 115243, - [SMALL_STATE(2649)] = 115325, - [SMALL_STATE(2650)] = 115391, - [SMALL_STATE(2651)] = 115457, - [SMALL_STATE(2652)] = 115523, - [SMALL_STATE(2653)] = 115589, - [SMALL_STATE(2654)] = 115655, - [SMALL_STATE(2655)] = 115721, - [SMALL_STATE(2656)] = 115787, - [SMALL_STATE(2657)] = 115853, - [SMALL_STATE(2658)] = 115919, - [SMALL_STATE(2659)] = 115985, - [SMALL_STATE(2660)] = 116051, - [SMALL_STATE(2661)] = 116117, - [SMALL_STATE(2662)] = 116187, - [SMALL_STATE(2663)] = 116253, - [SMALL_STATE(2664)] = 116319, - [SMALL_STATE(2665)] = 116385, - [SMALL_STATE(2666)] = 116451, - [SMALL_STATE(2667)] = 116517, - [SMALL_STATE(2668)] = 116583, - [SMALL_STATE(2669)] = 116649, - [SMALL_STATE(2670)] = 116715, - [SMALL_STATE(2671)] = 116781, - [SMALL_STATE(2672)] = 116847, - [SMALL_STATE(2673)] = 116913, - [SMALL_STATE(2674)] = 116979, - [SMALL_STATE(2675)] = 117045, - [SMALL_STATE(2676)] = 117111, - [SMALL_STATE(2677)] = 117177, - [SMALL_STATE(2678)] = 117243, - [SMALL_STATE(2679)] = 117313, - [SMALL_STATE(2680)] = 117379, - [SMALL_STATE(2681)] = 117445, - [SMALL_STATE(2682)] = 117511, - [SMALL_STATE(2683)] = 117619, - [SMALL_STATE(2684)] = 117685, - [SMALL_STATE(2685)] = 117751, - [SMALL_STATE(2686)] = 117833, - [SMALL_STATE(2687)] = 117921, - [SMALL_STATE(2688)] = 118023, - [SMALL_STATE(2689)] = 118095, - [SMALL_STATE(2690)] = 118169, - [SMALL_STATE(2691)] = 118275, - [SMALL_STATE(2692)] = 118381, - [SMALL_STATE(2693)] = 118485, - [SMALL_STATE(2694)] = 118585, - [SMALL_STATE(2695)] = 118683, - [SMALL_STATE(2696)] = 118777, - [SMALL_STATE(2697)] = 118869, - [SMALL_STATE(2698)] = 118959, - [SMALL_STATE(2699)] = 119045, - [SMALL_STATE(2700)] = 119125, - [SMALL_STATE(2701)] = 119205, - [SMALL_STATE(2702)] = 119283, - [SMALL_STATE(2703)] = 119349, - [SMALL_STATE(2704)] = 119415, - [SMALL_STATE(2705)] = 119481, - [SMALL_STATE(2706)] = 119547, - [SMALL_STATE(2707)] = 119613, - [SMALL_STATE(2708)] = 119679, - [SMALL_STATE(2709)] = 119745, - [SMALL_STATE(2710)] = 119811, - [SMALL_STATE(2711)] = 119877, - [SMALL_STATE(2712)] = 119943, - [SMALL_STATE(2713)] = 120009, - [SMALL_STATE(2714)] = 120075, - [SMALL_STATE(2715)] = 120141, - [SMALL_STATE(2716)] = 120207, - [SMALL_STATE(2717)] = 120273, - [SMALL_STATE(2718)] = 120339, - [SMALL_STATE(2719)] = 120405, - [SMALL_STATE(2720)] = 120471, - [SMALL_STATE(2721)] = 120541, - [SMALL_STATE(2722)] = 120607, - [SMALL_STATE(2723)] = 120677, - [SMALL_STATE(2724)] = 120793, - [SMALL_STATE(2725)] = 120863, - [SMALL_STATE(2726)] = 120933, - [SMALL_STATE(2727)] = 120999, - [SMALL_STATE(2728)] = 121065, - [SMALL_STATE(2729)] = 121135, - [SMALL_STATE(2730)] = 121205, - [SMALL_STATE(2731)] = 121271, - [SMALL_STATE(2732)] = 121387, - [SMALL_STATE(2733)] = 121499, - [SMALL_STATE(2734)] = 121565, - [SMALL_STATE(2735)] = 121631, - [SMALL_STATE(2736)] = 121697, - [SMALL_STATE(2737)] = 121769, - [SMALL_STATE(2738)] = 121841, - [SMALL_STATE(2739)] = 121907, - [SMALL_STATE(2740)] = 121979, - [SMALL_STATE(2741)] = 122051, - [SMALL_STATE(2742)] = 122123, - [SMALL_STATE(2743)] = 122231, - [SMALL_STATE(2744)] = 122297, - [SMALL_STATE(2745)] = 122367, - [SMALL_STATE(2746)] = 122433, - [SMALL_STATE(2747)] = 122499, - [SMALL_STATE(2748)] = 122569, - [SMALL_STATE(2749)] = 122677, - [SMALL_STATE(2750)] = 122755, - [SMALL_STATE(2751)] = 122835, - [SMALL_STATE(2752)] = 122915, - [SMALL_STATE(2753)] = 123001, - [SMALL_STATE(2754)] = 123091, - [SMALL_STATE(2755)] = 123199, - [SMALL_STATE(2756)] = 123265, - [SMALL_STATE(2757)] = 123331, - [SMALL_STATE(2758)] = 123439, - [SMALL_STATE(2759)] = 123509, - [SMALL_STATE(2760)] = 123579, - [SMALL_STATE(2761)] = 123649, - [SMALL_STATE(2762)] = 123731, - [SMALL_STATE(2763)] = 123819, - [SMALL_STATE(2764)] = 123921, - [SMALL_STATE(2765)] = 123993, - [SMALL_STATE(2766)] = 124067, - [SMALL_STATE(2767)] = 124173, - [SMALL_STATE(2768)] = 124279, - [SMALL_STATE(2769)] = 124383, - [SMALL_STATE(2770)] = 124483, - [SMALL_STATE(2771)] = 124581, - [SMALL_STATE(2772)] = 124675, - [SMALL_STATE(2773)] = 124740, - [SMALL_STATE(2774)] = 124805, - [SMALL_STATE(2775)] = 124870, - [SMALL_STATE(2776)] = 124935, - [SMALL_STATE(2777)] = 125000, - [SMALL_STATE(2778)] = 125065, - [SMALL_STATE(2779)] = 125130, - [SMALL_STATE(2780)] = 125195, - [SMALL_STATE(2781)] = 125260, - [SMALL_STATE(2782)] = 125325, - [SMALL_STATE(2783)] = 125390, - [SMALL_STATE(2784)] = 125455, - [SMALL_STATE(2785)] = 125520, - [SMALL_STATE(2786)] = 125585, - [SMALL_STATE(2787)] = 125650, - [SMALL_STATE(2788)] = 125715, - [SMALL_STATE(2789)] = 125780, - [SMALL_STATE(2790)] = 125845, - [SMALL_STATE(2791)] = 125910, - [SMALL_STATE(2792)] = 125975, - [SMALL_STATE(2793)] = 126040, - [SMALL_STATE(2794)] = 126105, - [SMALL_STATE(2795)] = 126170, - [SMALL_STATE(2796)] = 126239, - [SMALL_STATE(2797)] = 126304, - [SMALL_STATE(2798)] = 126369, - [SMALL_STATE(2799)] = 126434, - [SMALL_STATE(2800)] = 126499, - [SMALL_STATE(2801)] = 126564, - [SMALL_STATE(2802)] = 126629, - [SMALL_STATE(2803)] = 126694, - [SMALL_STATE(2804)] = 126759, - [SMALL_STATE(2805)] = 126824, - [SMALL_STATE(2806)] = 126889, - [SMALL_STATE(2807)] = 126954, - [SMALL_STATE(2808)] = 127019, - [SMALL_STATE(2809)] = 127084, - [SMALL_STATE(2810)] = 127149, - [SMALL_STATE(2811)] = 127214, - [SMALL_STATE(2812)] = 127283, - [SMALL_STATE(2813)] = 127348, - [SMALL_STATE(2814)] = 127417, - [SMALL_STATE(2815)] = 127482, - [SMALL_STATE(2816)] = 127551, - [SMALL_STATE(2817)] = 127658, - [SMALL_STATE(2818)] = 127763, - [SMALL_STATE(2819)] = 127832, - [SMALL_STATE(2820)] = 127897, - [SMALL_STATE(2821)] = 127962, - [SMALL_STATE(2822)] = 128067, - [SMALL_STATE(2823)] = 128136, - [SMALL_STATE(2824)] = 128205, - [SMALL_STATE(2825)] = 128272, - [SMALL_STATE(2826)] = 128341, - [SMALL_STATE(2827)] = 128406, - [SMALL_STATE(2828)] = 128487, - [SMALL_STATE(2829)] = 128574, - [SMALL_STATE(2830)] = 128675, - [SMALL_STATE(2831)] = 128746, - [SMALL_STATE(2832)] = 128813, - [SMALL_STATE(2833)] = 128878, - [SMALL_STATE(2834)] = 128951, - [SMALL_STATE(2835)] = 129056, - [SMALL_STATE(2836)] = 129121, - [SMALL_STATE(2837)] = 129226, - [SMALL_STATE(2838)] = 129329, - [SMALL_STATE(2839)] = 129394, - [SMALL_STATE(2840)] = 129459, - [SMALL_STATE(2841)] = 129524, - [SMALL_STATE(2842)] = 129589, - [SMALL_STATE(2843)] = 129654, - [SMALL_STATE(2844)] = 129719, - [SMALL_STATE(2845)] = 129784, - [SMALL_STATE(2846)] = 129849, - [SMALL_STATE(2847)] = 129914, - [SMALL_STATE(2848)] = 129979, - [SMALL_STATE(2849)] = 130044, - [SMALL_STATE(2850)] = 130151, - [SMALL_STATE(2851)] = 130258, - [SMALL_STATE(2852)] = 130323, - [SMALL_STATE(2853)] = 130388, - [SMALL_STATE(2854)] = 130453, - [SMALL_STATE(2855)] = 130518, - [SMALL_STATE(2856)] = 130583, - [SMALL_STATE(2857)] = 130648, - [SMALL_STATE(2858)] = 130713, - [SMALL_STATE(2859)] = 130778, - [SMALL_STATE(2860)] = 130843, - [SMALL_STATE(2861)] = 130908, - [SMALL_STATE(2862)] = 130973, - [SMALL_STATE(2863)] = 131038, - [SMALL_STATE(2864)] = 131103, - [SMALL_STATE(2865)] = 131168, - [SMALL_STATE(2866)] = 131233, - [SMALL_STATE(2867)] = 131298, - [SMALL_STATE(2868)] = 131363, - [SMALL_STATE(2869)] = 131428, - [SMALL_STATE(2870)] = 131493, - [SMALL_STATE(2871)] = 131558, - [SMALL_STATE(2872)] = 131623, - [SMALL_STATE(2873)] = 131688, - [SMALL_STATE(2874)] = 131753, - [SMALL_STATE(2875)] = 131850, - [SMALL_STATE(2876)] = 131943, - [SMALL_STATE(2877)] = 132034, - [SMALL_STATE(2878)] = 132123, - [SMALL_STATE(2879)] = 132208, - [SMALL_STATE(2880)] = 132273, - [SMALL_STATE(2881)] = 132338, - [SMALL_STATE(2882)] = 132445, - [SMALL_STATE(2883)] = 132510, - [SMALL_STATE(2884)] = 132589, - [SMALL_STATE(2885)] = 132668, - [SMALL_STATE(2886)] = 132745, - [SMALL_STATE(2887)] = 132814, - [SMALL_STATE(2888)] = 132879, - [SMALL_STATE(2889)] = 132944, - [SMALL_STATE(2890)] = 133009, - [SMALL_STATE(2891)] = 133108, - [SMALL_STATE(2892)] = 133173, - [SMALL_STATE(2893)] = 133238, - [SMALL_STATE(2894)] = 133303, - [SMALL_STATE(2895)] = 133368, - [SMALL_STATE(2896)] = 133433, - [SMALL_STATE(2897)] = 133498, - [SMALL_STATE(2898)] = 133563, - [SMALL_STATE(2899)] = 133628, - [SMALL_STATE(2900)] = 133693, - [SMALL_STATE(2901)] = 133758, - [SMALL_STATE(2902)] = 133823, - [SMALL_STATE(2903)] = 133888, - [SMALL_STATE(2904)] = 133953, - [SMALL_STATE(2905)] = 134018, - [SMALL_STATE(2906)] = 134083, - [SMALL_STATE(2907)] = 134148, - [SMALL_STATE(2908)] = 134213, - [SMALL_STATE(2909)] = 134320, - [SMALL_STATE(2910)] = 134385, - [SMALL_STATE(2911)] = 134450, - [SMALL_STATE(2912)] = 134515, - [SMALL_STATE(2913)] = 134580, - [SMALL_STATE(2914)] = 134645, - [SMALL_STATE(2915)] = 134710, - [SMALL_STATE(2916)] = 134775, - [SMALL_STATE(2917)] = 134840, - [SMALL_STATE(2918)] = 134905, - [SMALL_STATE(2919)] = 134974, - [SMALL_STATE(2920)] = 135043, - [SMALL_STATE(2921)] = 135112, - [SMALL_STATE(2922)] = 135177, - [SMALL_STATE(2923)] = 135242, - [SMALL_STATE(2924)] = 135307, - [SMALL_STATE(2925)] = 135372, - [SMALL_STATE(2926)] = 135441, - [SMALL_STATE(2927)] = 135518, - [SMALL_STATE(2928)] = 135597, - [SMALL_STATE(2929)] = 135676, - [SMALL_STATE(2930)] = 135761, - [SMALL_STATE(2931)] = 135850, - [SMALL_STATE(2932)] = 135915, - [SMALL_STATE(2933)] = 136006, - [SMALL_STATE(2934)] = 136099, - [SMALL_STATE(2935)] = 136196, - [SMALL_STATE(2936)] = 136261, - [SMALL_STATE(2937)] = 136326, - [SMALL_STATE(2938)] = 136425, - [SMALL_STATE(2939)] = 136528, - [SMALL_STATE(2940)] = 136593, - [SMALL_STATE(2941)] = 136698, - [SMALL_STATE(2942)] = 136803, - [SMALL_STATE(2943)] = 136876, - [SMALL_STATE(2944)] = 136947, - [SMALL_STATE(2945)] = 137012, - [SMALL_STATE(2946)] = 137113, - [SMALL_STATE(2947)] = 137200, - [SMALL_STATE(2948)] = 137281, - [SMALL_STATE(2949)] = 137346, - [SMALL_STATE(2950)] = 137411, - [SMALL_STATE(2951)] = 137476, - [SMALL_STATE(2952)] = 137541, - [SMALL_STATE(2953)] = 137606, - [SMALL_STATE(2954)] = 137671, - [SMALL_STATE(2955)] = 137736, - [SMALL_STATE(2956)] = 137801, - [SMALL_STATE(2957)] = 137866, - [SMALL_STATE(2958)] = 137931, - [SMALL_STATE(2959)] = 137996, - [SMALL_STATE(2960)] = 138065, - [SMALL_STATE(2961)] = 138130, - [SMALL_STATE(2962)] = 138195, - [SMALL_STATE(2963)] = 138260, - [SMALL_STATE(2964)] = 138325, - [SMALL_STATE(2965)] = 138390, - [SMALL_STATE(2966)] = 138459, - [SMALL_STATE(2967)] = 138524, - [SMALL_STATE(2968)] = 138631, - [SMALL_STATE(2969)] = 138696, - [SMALL_STATE(2970)] = 138761, - [SMALL_STATE(2971)] = 138826, - [SMALL_STATE(2972)] = 138891, - [SMALL_STATE(2973)] = 138956, - [SMALL_STATE(2974)] = 139021, - [SMALL_STATE(2975)] = 139086, - [SMALL_STATE(2976)] = 139151, - [SMALL_STATE(2977)] = 139218, - [SMALL_STATE(2978)] = 139285, - [SMALL_STATE(2979)] = 139350, - [SMALL_STATE(2980)] = 139415, - [SMALL_STATE(2981)] = 139480, - [SMALL_STATE(2982)] = 139545, - [SMALL_STATE(2983)] = 139610, - [SMALL_STATE(2984)] = 139675, - [SMALL_STATE(2985)] = 139740, - [SMALL_STATE(2986)] = 139805, - [SMALL_STATE(2987)] = 139870, - [SMALL_STATE(2988)] = 139935, - [SMALL_STATE(2989)] = 140000, - [SMALL_STATE(2990)] = 140065, - [SMALL_STATE(2991)] = 140130, - [SMALL_STATE(2992)] = 140235, - [SMALL_STATE(2993)] = 140316, - [SMALL_STATE(2994)] = 140401, - [SMALL_STATE(2995)] = 140500, - [SMALL_STATE(2996)] = 140571, - [SMALL_STATE(2997)] = 140644, - [SMALL_STATE(2998)] = 140709, - [SMALL_STATE(2999)] = 140774, - [SMALL_STATE(3000)] = 140839, - [SMALL_STATE(3001)] = 140904, - [SMALL_STATE(3002)] = 140969, - [SMALL_STATE(3003)] = 141034, - [SMALL_STATE(3004)] = 141099, - [SMALL_STATE(3005)] = 141164, - [SMALL_STATE(3006)] = 141273, - [SMALL_STATE(3007)] = 141338, - [SMALL_STATE(3008)] = 141403, - [SMALL_STATE(3009)] = 141468, - [SMALL_STATE(3010)] = 141533, - [SMALL_STATE(3011)] = 141598, - [SMALL_STATE(3012)] = 141663, - [SMALL_STATE(3013)] = 141728, - [SMALL_STATE(3014)] = 141793, - [SMALL_STATE(3015)] = 141858, - [SMALL_STATE(3016)] = 141927, - [SMALL_STATE(3017)] = 141992, - [SMALL_STATE(3018)] = 142057, - [SMALL_STATE(3019)] = 142122, - [SMALL_STATE(3020)] = 142187, - [SMALL_STATE(3021)] = 142258, - [SMALL_STATE(3022)] = 142323, - [SMALL_STATE(3023)] = 142388, - [SMALL_STATE(3024)] = 142453, - [SMALL_STATE(3025)] = 142518, - [SMALL_STATE(3026)] = 142583, - [SMALL_STATE(3027)] = 142648, - [SMALL_STATE(3028)] = 142713, - [SMALL_STATE(3029)] = 142778, - [SMALL_STATE(3030)] = 142843, - [SMALL_STATE(3031)] = 142908, - [SMALL_STATE(3032)] = 142973, - [SMALL_STATE(3033)] = 143042, - [SMALL_STATE(3034)] = 143145, - [SMALL_STATE(3035)] = 143248, - [SMALL_STATE(3036)] = 143315, - [SMALL_STATE(3037)] = 143422, - [SMALL_STATE(3038)] = 143491, - [SMALL_STATE(3039)] = 143592, - [SMALL_STATE(3040)] = 143689, - [SMALL_STATE(3041)] = 143780, - [SMALL_STATE(3042)] = 143869, - [SMALL_STATE(3043)] = 143956, - [SMALL_STATE(3044)] = 144039, - [SMALL_STATE(3045)] = 144118, - [SMALL_STATE(3046)] = 144197, - [SMALL_STATE(3047)] = 144274, - [SMALL_STATE(3048)] = 144381, - [SMALL_STATE(3049)] = 144476, - [SMALL_STATE(3050)] = 144541, - [SMALL_STATE(3051)] = 144606, - [SMALL_STATE(3052)] = 144671, - [SMALL_STATE(3053)] = 144736, - [SMALL_STATE(3054)] = 144801, - [SMALL_STATE(3055)] = 144866, - [SMALL_STATE(3056)] = 144931, - [SMALL_STATE(3057)] = 144996, - [SMALL_STATE(3058)] = 145061, - [SMALL_STATE(3059)] = 145126, - [SMALL_STATE(3060)] = 145191, - [SMALL_STATE(3061)] = 145256, - [SMALL_STATE(3062)] = 145321, - [SMALL_STATE(3063)] = 145386, - [SMALL_STATE(3064)] = 145451, - [SMALL_STATE(3065)] = 145516, - [SMALL_STATE(3066)] = 145581, - [SMALL_STATE(3067)] = 145646, - [SMALL_STATE(3068)] = 145711, - [SMALL_STATE(3069)] = 145776, - [SMALL_STATE(3070)] = 145841, - [SMALL_STATE(3071)] = 145906, - [SMALL_STATE(3072)] = 145971, - [SMALL_STATE(3073)] = 146072, - [SMALL_STATE(3074)] = 146141, - [SMALL_STATE(3075)] = 146206, - [SMALL_STATE(3076)] = 146271, - [SMALL_STATE(3077)] = 146336, - [SMALL_STATE(3078)] = 146401, - [SMALL_STATE(3079)] = 146466, - [SMALL_STATE(3080)] = 146531, - [SMALL_STATE(3081)] = 146596, - [SMALL_STATE(3082)] = 146661, - [SMALL_STATE(3083)] = 146726, - [SMALL_STATE(3084)] = 146791, - [SMALL_STATE(3085)] = 146856, - [SMALL_STATE(3086)] = 146921, - [SMALL_STATE(3087)] = 146986, - [SMALL_STATE(3088)] = 147051, - [SMALL_STATE(3089)] = 147120, - [SMALL_STATE(3090)] = 147185, - [SMALL_STATE(3091)] = 147250, - [SMALL_STATE(3092)] = 147315, - [SMALL_STATE(3093)] = 147380, - [SMALL_STATE(3094)] = 147445, - [SMALL_STATE(3095)] = 147510, - [SMALL_STATE(3096)] = 147579, - [SMALL_STATE(3097)] = 147644, - [SMALL_STATE(3098)] = 147711, - [SMALL_STATE(3099)] = 147776, - [SMALL_STATE(3100)] = 147841, - [SMALL_STATE(3101)] = 147906, - [SMALL_STATE(3102)] = 147973, - [SMALL_STATE(3103)] = 148038, - [SMALL_STATE(3104)] = 148103, - [SMALL_STATE(3105)] = 148168, - [SMALL_STATE(3106)] = 148233, - [SMALL_STATE(3107)] = 148298, - [SMALL_STATE(3108)] = 148365, - [SMALL_STATE(3109)] = 148430, - [SMALL_STATE(3110)] = 148495, - [SMALL_STATE(3111)] = 148560, - [SMALL_STATE(3112)] = 148625, - [SMALL_STATE(3113)] = 148690, - [SMALL_STATE(3114)] = 148755, - [SMALL_STATE(3115)] = 148820, - [SMALL_STATE(3116)] = 148885, - [SMALL_STATE(3117)] = 148950, - [SMALL_STATE(3118)] = 149027, - [SMALL_STATE(3119)] = 149106, - [SMALL_STATE(3120)] = 149171, - [SMALL_STATE(3121)] = 149236, - [SMALL_STATE(3122)] = 149321, - [SMALL_STATE(3123)] = 149386, - [SMALL_STATE(3124)] = 149475, - [SMALL_STATE(3125)] = 149566, - [SMALL_STATE(3126)] = 149659, - [SMALL_STATE(3127)] = 149756, - [SMALL_STATE(3128)] = 149855, - [SMALL_STATE(3129)] = 149958, - [SMALL_STATE(3130)] = 150063, - [SMALL_STATE(3131)] = 150168, - [SMALL_STATE(3132)] = 150241, - [SMALL_STATE(3133)] = 150320, - [SMALL_STATE(3134)] = 150385, - [SMALL_STATE(3135)] = 150450, - [SMALL_STATE(3136)] = 150515, - [SMALL_STATE(3137)] = 150596, - [SMALL_STATE(3138)] = 150683, - [SMALL_STATE(3139)] = 150747, - [SMALL_STATE(3140)] = 150837, - [SMALL_STATE(3141)] = 150901, - [SMALL_STATE(3142)] = 150965, - [SMALL_STATE(3143)] = 151029, - [SMALL_STATE(3144)] = 151093, - [SMALL_STATE(3145)] = 151157, - [SMALL_STATE(3146)] = 151221, - [SMALL_STATE(3147)] = 151285, - [SMALL_STATE(3148)] = 151349, - [SMALL_STATE(3149)] = 151413, - [SMALL_STATE(3150)] = 151477, - [SMALL_STATE(3151)] = 151541, - [SMALL_STATE(3152)] = 151647, - [SMALL_STATE(3153)] = 151753, - [SMALL_STATE(3154)] = 151817, - [SMALL_STATE(3155)] = 151913, - [SMALL_STATE(3156)] = 151981, - [SMALL_STATE(3157)] = 152045, - [SMALL_STATE(3158)] = 152121, - [SMALL_STATE(3159)] = 152199, - [SMALL_STATE(3160)] = 152277, - [SMALL_STATE(3161)] = 152361, - [SMALL_STATE(3162)] = 152449, - [SMALL_STATE(3163)] = 152539, - [SMALL_STATE(3164)] = 152631, - [SMALL_STATE(3165)] = 152699, - [SMALL_STATE(3166)] = 152797, - [SMALL_STATE(3167)] = 152899, - [SMALL_STATE(3168)] = 153003, - [SMALL_STATE(3169)] = 153107, - [SMALL_STATE(3170)] = 153179, - [SMALL_STATE(3171)] = 153249, - [SMALL_STATE(3172)] = 153349, - [SMALL_STATE(3173)] = 153435, - [SMALL_STATE(3174)] = 153515, - [SMALL_STATE(3175)] = 153583, - [SMALL_STATE(3176)] = 153647, - [SMALL_STATE(3177)] = 153753, - [SMALL_STATE(3178)] = 153817, - [SMALL_STATE(3179)] = 153881, - [SMALL_STATE(3180)] = 153945, - [SMALL_STATE(3181)] = 154009, - [SMALL_STATE(3182)] = 154073, - [SMALL_STATE(3183)] = 154141, - [SMALL_STATE(3184)] = 154205, - [SMALL_STATE(3185)] = 154269, - [SMALL_STATE(3186)] = 154337, - [SMALL_STATE(3187)] = 154413, - [SMALL_STATE(3188)] = 154491, - [SMALL_STATE(3189)] = 154569, - [SMALL_STATE(3190)] = 154653, - [SMALL_STATE(3191)] = 154741, - [SMALL_STATE(3192)] = 154831, - [SMALL_STATE(3193)] = 154923, - [SMALL_STATE(3194)] = 155019, - [SMALL_STATE(3195)] = 155117, - [SMALL_STATE(3196)] = 155219, - [SMALL_STATE(3197)] = 155323, - [SMALL_STATE(3198)] = 155427, - [SMALL_STATE(3199)] = 155499, - [SMALL_STATE(3200)] = 155563, - [SMALL_STATE(3201)] = 155627, - [SMALL_STATE(3202)] = 155697, - [SMALL_STATE(3203)] = 155761, - [SMALL_STATE(3204)] = 155825, - [SMALL_STATE(3205)] = 155889, - [SMALL_STATE(3206)] = 155953, - [SMALL_STATE(3207)] = 156053, - [SMALL_STATE(3208)] = 156139, - [SMALL_STATE(3209)] = 156219, - [SMALL_STATE(3210)] = 156283, - [SMALL_STATE(3211)] = 156351, - [SMALL_STATE(3212)] = 156415, - [SMALL_STATE(3213)] = 156521, - [SMALL_STATE(3214)] = 156585, - [SMALL_STATE(3215)] = 156649, - [SMALL_STATE(3216)] = 156713, - [SMALL_STATE(3217)] = 156777, - [SMALL_STATE(3218)] = 156841, - [SMALL_STATE(3219)] = 156905, - [SMALL_STATE(3220)] = 156969, - [SMALL_STATE(3221)] = 157033, - [SMALL_STATE(3222)] = 157097, - [SMALL_STATE(3223)] = 157161, - [SMALL_STATE(3224)] = 157225, - [SMALL_STATE(3225)] = 157331, - [SMALL_STATE(3226)] = 157395, - [SMALL_STATE(3227)] = 157459, - [SMALL_STATE(3228)] = 157523, - [SMALL_STATE(3229)] = 157591, - [SMALL_STATE(3230)] = 157655, - [SMALL_STATE(3231)] = 157719, - [SMALL_STATE(3232)] = 157783, - [SMALL_STATE(3233)] = 157891, - [SMALL_STATE(3234)] = 157955, - [SMALL_STATE(3235)] = 158019, - [SMALL_STATE(3236)] = 158083, - [SMALL_STATE(3237)] = 158147, - [SMALL_STATE(3238)] = 158211, - [SMALL_STATE(3239)] = 158275, - [SMALL_STATE(3240)] = 158339, - [SMALL_STATE(3241)] = 158403, - [SMALL_STATE(3242)] = 158511, - [SMALL_STATE(3243)] = 158575, - [SMALL_STATE(3244)] = 158639, - [SMALL_STATE(3245)] = 158703, - [SMALL_STATE(3246)] = 158767, - [SMALL_STATE(3247)] = 158835, - [SMALL_STATE(3248)] = 158899, - [SMALL_STATE(3249)] = 158963, - [SMALL_STATE(3250)] = 159027, - [SMALL_STATE(3251)] = 159093, - [SMALL_STATE(3252)] = 159159, - [SMALL_STATE(3253)] = 159223, - [SMALL_STATE(3254)] = 159287, - [SMALL_STATE(3255)] = 159351, - [SMALL_STATE(3256)] = 159455, - [SMALL_STATE(3257)] = 159519, - [SMALL_STATE(3258)] = 159583, - [SMALL_STATE(3259)] = 159651, - [SMALL_STATE(3260)] = 159719, - [SMALL_STATE(3261)] = 159787, - [SMALL_STATE(3262)] = 159851, - [SMALL_STATE(3263)] = 159915, - [SMALL_STATE(3264)] = 159979, - [SMALL_STATE(3265)] = 160043, - [SMALL_STATE(3266)] = 160111, - [SMALL_STATE(3267)] = 160175, - [SMALL_STATE(3268)] = 160239, - [SMALL_STATE(3269)] = 160303, - [SMALL_STATE(3270)] = 160367, - [SMALL_STATE(3271)] = 160431, - [SMALL_STATE(3272)] = 160499, - [SMALL_STATE(3273)] = 160563, - [SMALL_STATE(3274)] = 160631, - [SMALL_STATE(3275)] = 160695, - [SMALL_STATE(3276)] = 160759, - [SMALL_STATE(3277)] = 160823, - [SMALL_STATE(3278)] = 160887, - [SMALL_STATE(3279)] = 160951, - [SMALL_STATE(3280)] = 161015, - [SMALL_STATE(3281)] = 161079, - [SMALL_STATE(3282)] = 161143, - [SMALL_STATE(3283)] = 161209, - [SMALL_STATE(3284)] = 161273, - [SMALL_STATE(3285)] = 161337, - [SMALL_STATE(3286)] = 161445, - [SMALL_STATE(3287)] = 161509, - [SMALL_STATE(3288)] = 161577, - [SMALL_STATE(3289)] = 161641, - [SMALL_STATE(3290)] = 161705, - [SMALL_STATE(3291)] = 161769, - [SMALL_STATE(3292)] = 161833, - [SMALL_STATE(3293)] = 161897, - [SMALL_STATE(3294)] = 162005, - [SMALL_STATE(3295)] = 162069, - [SMALL_STATE(3296)] = 162133, - [SMALL_STATE(3297)] = 162197, - [SMALL_STATE(3298)] = 162261, - [SMALL_STATE(3299)] = 162325, - [SMALL_STATE(3300)] = 162389, - [SMALL_STATE(3301)] = 162453, - [SMALL_STATE(3302)] = 162517, - [SMALL_STATE(3303)] = 162581, - [SMALL_STATE(3304)] = 162657, - [SMALL_STATE(3305)] = 162735, - [SMALL_STATE(3306)] = 162799, - [SMALL_STATE(3307)] = 162877, - [SMALL_STATE(3308)] = 162941, - [SMALL_STATE(3309)] = 163025, - [SMALL_STATE(3310)] = 163113, - [SMALL_STATE(3311)] = 163177, - [SMALL_STATE(3312)] = 163241, - [SMALL_STATE(3313)] = 163333, - [SMALL_STATE(3314)] = 163397, - [SMALL_STATE(3315)] = 163461, - [SMALL_STATE(3316)] = 163525, - [SMALL_STATE(3317)] = 163589, - [SMALL_STATE(3318)] = 163653, - [SMALL_STATE(3319)] = 163721, - [SMALL_STATE(3320)] = 163817, - [SMALL_STATE(3321)] = 163915, - [SMALL_STATE(3322)] = 163979, - [SMALL_STATE(3323)] = 164081, - [SMALL_STATE(3324)] = 164157, - [SMALL_STATE(3325)] = 164221, - [SMALL_STATE(3326)] = 164299, - [SMALL_STATE(3327)] = 164377, - [SMALL_STATE(3328)] = 164459, - [SMALL_STATE(3329)] = 164563, - [SMALL_STATE(3330)] = 164627, - [SMALL_STATE(3331)] = 164713, - [SMALL_STATE(3332)] = 164801, - [SMALL_STATE(3333)] = 164891, - [SMALL_STATE(3334)] = 164985, - [SMALL_STATE(3335)] = 165081, - [SMALL_STATE(3336)] = 165181, - [SMALL_STATE(3337)] = 165245, - [SMALL_STATE(3338)] = 165347, - [SMALL_STATE(3339)] = 165449, - [SMALL_STATE(3340)] = 165521, - [SMALL_STATE(3341)] = 165591, - [SMALL_STATE(3342)] = 165655, - [SMALL_STATE(3343)] = 165753, - [SMALL_STATE(3344)] = 165837, - [SMALL_STATE(3345)] = 165917, - [SMALL_STATE(3346)] = 165981, - [SMALL_STATE(3347)] = 166045, - [SMALL_STATE(3348)] = 166109, - [SMALL_STATE(3349)] = 166173, - [SMALL_STATE(3350)] = 166237, - [SMALL_STATE(3351)] = 166301, - [SMALL_STATE(3352)] = 166365, - [SMALL_STATE(3353)] = 166429, - [SMALL_STATE(3354)] = 166493, - [SMALL_STATE(3355)] = 166561, - [SMALL_STATE(3356)] = 166625, - [SMALL_STATE(3357)] = 166689, - [SMALL_STATE(3358)] = 166753, - [SMALL_STATE(3359)] = 166817, - [SMALL_STATE(3360)] = 166921, - [SMALL_STATE(3361)] = 166993, - [SMALL_STATE(3362)] = 167063, - [SMALL_STATE(3363)] = 167127, - [SMALL_STATE(3364)] = 167191, - [SMALL_STATE(3365)] = 167291, - [SMALL_STATE(3366)] = 167355, - [SMALL_STATE(3367)] = 167419, - [SMALL_STATE(3368)] = 167483, - [SMALL_STATE(3369)] = 167569, - [SMALL_STATE(3370)] = 167649, - [SMALL_STATE(3371)] = 167713, - [SMALL_STATE(3372)] = 167777, - [SMALL_STATE(3373)] = 167841, - [SMALL_STATE(3374)] = 167905, - [SMALL_STATE(3375)] = 167969, - [SMALL_STATE(3376)] = 168033, - [SMALL_STATE(3377)] = 168097, - [SMALL_STATE(3378)] = 168203, - [SMALL_STATE(3379)] = 168271, - [SMALL_STATE(3380)] = 168335, - [SMALL_STATE(3381)] = 168439, - [SMALL_STATE(3382)] = 168503, - [SMALL_STATE(3383)] = 168567, - [SMALL_STATE(3384)] = 168631, - [SMALL_STATE(3385)] = 168695, - [SMALL_STATE(3386)] = 168759, - [SMALL_STATE(3387)] = 168823, - [SMALL_STATE(3388)] = 168887, - [SMALL_STATE(3389)] = 168951, - [SMALL_STATE(3390)] = 169015, - [SMALL_STATE(3391)] = 169079, - [SMALL_STATE(3392)] = 169143, - [SMALL_STATE(3393)] = 169207, - [SMALL_STATE(3394)] = 169271, - [SMALL_STATE(3395)] = 169335, - [SMALL_STATE(3396)] = 169399, - [SMALL_STATE(3397)] = 169463, - [SMALL_STATE(3398)] = 169527, - [SMALL_STATE(3399)] = 169591, - [SMALL_STATE(3400)] = 169655, - [SMALL_STATE(3401)] = 169719, - [SMALL_STATE(3402)] = 169783, - [SMALL_STATE(3403)] = 169847, - [SMALL_STATE(3404)] = 169911, - [SMALL_STATE(3405)] = 169975, - [SMALL_STATE(3406)] = 170039, - [SMALL_STATE(3407)] = 170103, - [SMALL_STATE(3408)] = 170167, - [SMALL_STATE(3409)] = 170231, - [SMALL_STATE(3410)] = 170295, - [SMALL_STATE(3411)] = 170359, - [SMALL_STATE(3412)] = 170423, - [SMALL_STATE(3413)] = 170487, - [SMALL_STATE(3414)] = 170551, - [SMALL_STATE(3415)] = 170615, - [SMALL_STATE(3416)] = 170679, - [SMALL_STATE(3417)] = 170742, - [SMALL_STATE(3418)] = 170805, - [SMALL_STATE(3419)] = 170868, - [SMALL_STATE(3420)] = 170943, - [SMALL_STATE(3421)] = 171020, - [SMALL_STATE(3422)] = 171083, - [SMALL_STATE(3423)] = 171146, - [SMALL_STATE(3424)] = 171239, - [SMALL_STATE(3425)] = 171302, - [SMALL_STATE(3426)] = 171365, - [SMALL_STATE(3427)] = 171442, - [SMALL_STATE(3428)] = 171505, - [SMALL_STATE(3429)] = 171572, - [SMALL_STATE(3430)] = 171653, - [SMALL_STATE(3431)] = 171738, - [SMALL_STATE(3432)] = 171801, - [SMALL_STATE(3433)] = 171864, - [SMALL_STATE(3434)] = 171953, - [SMALL_STATE(3435)] = 172016, - [SMALL_STATE(3436)] = 172103, - [SMALL_STATE(3437)] = 172192, - [SMALL_STATE(3438)] = 172279, - [SMALL_STATE(3439)] = 172372, - [SMALL_STATE(3440)] = 172437, - [SMALL_STATE(3441)] = 172500, - [SMALL_STATE(3442)] = 172595, - [SMALL_STATE(3443)] = 172658, - [SMALL_STATE(3444)] = 172743, - [SMALL_STATE(3445)] = 172806, - [SMALL_STATE(3446)] = 172887, - [SMALL_STATE(3447)] = 172964, - [SMALL_STATE(3448)] = 173063, - [SMALL_STATE(3449)] = 173126, - [SMALL_STATE(3450)] = 173227, - [SMALL_STATE(3451)] = 173290, - [SMALL_STATE(3452)] = 173353, - [SMALL_STATE(3453)] = 173416, - [SMALL_STATE(3454)] = 173517, - [SMALL_STATE(3455)] = 173580, - [SMALL_STATE(3456)] = 173651, - [SMALL_STATE(3457)] = 173720, - [SMALL_STATE(3458)] = 173817, - [SMALL_STATE(3459)] = 173900, - [SMALL_STATE(3460)] = 173979, - [SMALL_STATE(3461)] = 174056, - [SMALL_STATE(3462)] = 174119, - [SMALL_STATE(3463)] = 174182, - [SMALL_STATE(3464)] = 174287, - [SMALL_STATE(3465)] = 174382, - [SMALL_STATE(3466)] = 174449, - [SMALL_STATE(3467)] = 174512, - [SMALL_STATE(3468)] = 174617, - [SMALL_STATE(3469)] = 174716, - [SMALL_STATE(3470)] = 174819, - [SMALL_STATE(3471)] = 174882, - [SMALL_STATE(3472)] = 174945, - [SMALL_STATE(3473)] = 175046, - [SMALL_STATE(3474)] = 175147, - [SMALL_STATE(3475)] = 175210, - [SMALL_STATE(3476)] = 175285, - [SMALL_STATE(3477)] = 175352, - [SMALL_STATE(3478)] = 175415, - [SMALL_STATE(3479)] = 175478, - [SMALL_STATE(3480)] = 175541, - [SMALL_STATE(3481)] = 175604, - [SMALL_STATE(3482)] = 175667, - [SMALL_STATE(3483)] = 175730, - [SMALL_STATE(3484)] = 175793, - [SMALL_STATE(3485)] = 175856, - [SMALL_STATE(3486)] = 175961, - [SMALL_STATE(3487)] = 176024, - [SMALL_STATE(3488)] = 176127, - [SMALL_STATE(3489)] = 176198, - [SMALL_STATE(3490)] = 176261, - [SMALL_STATE(3491)] = 176324, - [SMALL_STATE(3492)] = 176387, - [SMALL_STATE(3493)] = 176450, - [SMALL_STATE(3494)] = 176513, - [SMALL_STATE(3495)] = 176618, - [SMALL_STATE(3496)] = 176681, - [SMALL_STATE(3497)] = 176744, - [SMALL_STATE(3498)] = 176847, - [SMALL_STATE(3499)] = 176910, - [SMALL_STATE(3500)] = 176973, - [SMALL_STATE(3501)] = 177036, - [SMALL_STATE(3502)] = 177139, - [SMALL_STATE(3503)] = 177242, - [SMALL_STATE(3504)] = 177305, - [SMALL_STATE(3505)] = 177370, - [SMALL_STATE(3506)] = 177433, - [SMALL_STATE(3507)] = 177496, - [SMALL_STATE(3508)] = 177559, - [SMALL_STATE(3509)] = 177622, - [SMALL_STATE(3510)] = 177685, - [SMALL_STATE(3511)] = 177748, - [SMALL_STATE(3512)] = 177811, - [SMALL_STATE(3513)] = 177874, - [SMALL_STATE(3514)] = 177937, - [SMALL_STATE(3515)] = 178000, - [SMALL_STATE(3516)] = 178063, - [SMALL_STATE(3517)] = 178126, - [SMALL_STATE(3518)] = 178189, - [SMALL_STATE(3519)] = 178252, - [SMALL_STATE(3520)] = 178331, - [SMALL_STATE(3521)] = 178434, - [SMALL_STATE(3522)] = 178537, - [SMALL_STATE(3523)] = 178606, - [SMALL_STATE(3524)] = 178669, - [SMALL_STATE(3525)] = 178766, - [SMALL_STATE(3526)] = 178849, - [SMALL_STATE(3527)] = 178951, - [SMALL_STATE(3528)] = 179015, - [SMALL_STATE(3529)] = 179117, - [SMALL_STATE(3530)] = 179219, - [SMALL_STATE(3531)] = 179321, - [SMALL_STATE(3532)] = 179423, - [SMALL_STATE(3533)] = 179525, - [SMALL_STATE(3534)] = 179627, - [SMALL_STATE(3535)] = 179729, - [SMALL_STATE(3536)] = 179831, - [SMALL_STATE(3537)] = 179933, - [SMALL_STATE(3538)] = 180035, - [SMALL_STATE(3539)] = 180137, - [SMALL_STATE(3540)] = 180239, - [SMALL_STATE(3541)] = 180341, - [SMALL_STATE(3542)] = 180443, - [SMALL_STATE(3543)] = 180545, - [SMALL_STATE(3544)] = 180647, - [SMALL_STATE(3545)] = 180749, - [SMALL_STATE(3546)] = 180851, - [SMALL_STATE(3547)] = 180953, - [SMALL_STATE(3548)] = 181055, - [SMALL_STATE(3549)] = 181119, - [SMALL_STATE(3550)] = 181221, - [SMALL_STATE(3551)] = 181323, - [SMALL_STATE(3552)] = 181425, - [SMALL_STATE(3553)] = 181524, - [SMALL_STATE(3554)] = 181575, - [SMALL_STATE(3555)] = 181626, - [SMALL_STATE(3556)] = 181677, - [SMALL_STATE(3557)] = 181728, - [SMALL_STATE(3558)] = 181779, - [SMALL_STATE(3559)] = 181830, - [SMALL_STATE(3560)] = 181881, - [SMALL_STATE(3561)] = 181932, - [SMALL_STATE(3562)] = 181983, - [SMALL_STATE(3563)] = 182034, - [SMALL_STATE(3564)] = 182085, - [SMALL_STATE(3565)] = 182136, - [SMALL_STATE(3566)] = 182187, - [SMALL_STATE(3567)] = 182238, - [SMALL_STATE(3568)] = 182289, - [SMALL_STATE(3569)] = 182340, - [SMALL_STATE(3570)] = 182391, - [SMALL_STATE(3571)] = 182442, - [SMALL_STATE(3572)] = 182493, - [SMALL_STATE(3573)] = 182544, - [SMALL_STATE(3574)] = 182595, - [SMALL_STATE(3575)] = 182646, - [SMALL_STATE(3576)] = 182697, - [SMALL_STATE(3577)] = 182748, - [SMALL_STATE(3578)] = 182799, - [SMALL_STATE(3579)] = 182850, - [SMALL_STATE(3580)] = 182901, - [SMALL_STATE(3581)] = 182952, - [SMALL_STATE(3582)] = 183003, - [SMALL_STATE(3583)] = 183054, - [SMALL_STATE(3584)] = 183105, - [SMALL_STATE(3585)] = 183156, - [SMALL_STATE(3586)] = 183207, - [SMALL_STATE(3587)] = 183258, - [SMALL_STATE(3588)] = 183309, - [SMALL_STATE(3589)] = 183360, - [SMALL_STATE(3590)] = 183405, - [SMALL_STATE(3591)] = 183450, - [SMALL_STATE(3592)] = 183495, - [SMALL_STATE(3593)] = 183540, - [SMALL_STATE(3594)] = 183585, - [SMALL_STATE(3595)] = 183630, - [SMALL_STATE(3596)] = 183675, - [SMALL_STATE(3597)] = 183720, - [SMALL_STATE(3598)] = 183765, - [SMALL_STATE(3599)] = 183810, - [SMALL_STATE(3600)] = 183855, - [SMALL_STATE(3601)] = 183900, - [SMALL_STATE(3602)] = 183945, - [SMALL_STATE(3603)] = 183990, - [SMALL_STATE(3604)] = 184035, - [SMALL_STATE(3605)] = 184080, - [SMALL_STATE(3606)] = 184125, - [SMALL_STATE(3607)] = 184170, - [SMALL_STATE(3608)] = 184215, - [SMALL_STATE(3609)] = 184260, - [SMALL_STATE(3610)] = 184305, - [SMALL_STATE(3611)] = 184350, - [SMALL_STATE(3612)] = 184395, - [SMALL_STATE(3613)] = 184440, - [SMALL_STATE(3614)] = 184485, - [SMALL_STATE(3615)] = 184530, - [SMALL_STATE(3616)] = 184575, - [SMALL_STATE(3617)] = 184620, - [SMALL_STATE(3618)] = 184665, - [SMALL_STATE(3619)] = 184710, - [SMALL_STATE(3620)] = 184755, - [SMALL_STATE(3621)] = 184800, - [SMALL_STATE(3622)] = 184845, - [SMALL_STATE(3623)] = 184890, - [SMALL_STATE(3624)] = 184935, - [SMALL_STATE(3625)] = 184980, - [SMALL_STATE(3626)] = 185025, - [SMALL_STATE(3627)] = 185070, - [SMALL_STATE(3628)] = 185115, - [SMALL_STATE(3629)] = 185160, - [SMALL_STATE(3630)] = 185205, - [SMALL_STATE(3631)] = 185250, - [SMALL_STATE(3632)] = 185295, - [SMALL_STATE(3633)] = 185340, - [SMALL_STATE(3634)] = 185385, - [SMALL_STATE(3635)] = 185430, - [SMALL_STATE(3636)] = 185475, - [SMALL_STATE(3637)] = 185520, - [SMALL_STATE(3638)] = 185565, - [SMALL_STATE(3639)] = 185610, - [SMALL_STATE(3640)] = 185655, - [SMALL_STATE(3641)] = 185700, - [SMALL_STATE(3642)] = 185745, - [SMALL_STATE(3643)] = 185790, - [SMALL_STATE(3644)] = 185835, - [SMALL_STATE(3645)] = 185880, - [SMALL_STATE(3646)] = 185925, - [SMALL_STATE(3647)] = 185970, - [SMALL_STATE(3648)] = 186015, - [SMALL_STATE(3649)] = 186060, - [SMALL_STATE(3650)] = 186105, - [SMALL_STATE(3651)] = 186150, - [SMALL_STATE(3652)] = 186195, - [SMALL_STATE(3653)] = 186240, - [SMALL_STATE(3654)] = 186285, - [SMALL_STATE(3655)] = 186330, - [SMALL_STATE(3656)] = 186375, - [SMALL_STATE(3657)] = 186420, - [SMALL_STATE(3658)] = 186465, - [SMALL_STATE(3659)] = 186510, - [SMALL_STATE(3660)] = 186555, - [SMALL_STATE(3661)] = 186600, - [SMALL_STATE(3662)] = 186634, - [SMALL_STATE(3663)] = 186668, - [SMALL_STATE(3664)] = 186699, - [SMALL_STATE(3665)] = 186730, - [SMALL_STATE(3666)] = 186761, - [SMALL_STATE(3667)] = 186792, - [SMALL_STATE(3668)] = 186823, - [SMALL_STATE(3669)] = 186854, - [SMALL_STATE(3670)] = 186885, - [SMALL_STATE(3671)] = 186916, - [SMALL_STATE(3672)] = 186947, - [SMALL_STATE(3673)] = 186978, - [SMALL_STATE(3674)] = 187009, - [SMALL_STATE(3675)] = 187040, - [SMALL_STATE(3676)] = 187071, - [SMALL_STATE(3677)] = 187102, - [SMALL_STATE(3678)] = 187133, - [SMALL_STATE(3679)] = 187164, - [SMALL_STATE(3680)] = 187195, - [SMALL_STATE(3681)] = 187226, - [SMALL_STATE(3682)] = 187257, - [SMALL_STATE(3683)] = 187288, - [SMALL_STATE(3684)] = 187319, - [SMALL_STATE(3685)] = 187350, - [SMALL_STATE(3686)] = 187381, - [SMALL_STATE(3687)] = 187412, - [SMALL_STATE(3688)] = 187443, - [SMALL_STATE(3689)] = 187474, - [SMALL_STATE(3690)] = 187505, - [SMALL_STATE(3691)] = 187536, - [SMALL_STATE(3692)] = 187567, - [SMALL_STATE(3693)] = 187598, - [SMALL_STATE(3694)] = 187629, - [SMALL_STATE(3695)] = 187660, - [SMALL_STATE(3696)] = 187691, - [SMALL_STATE(3697)] = 187722, - [SMALL_STATE(3698)] = 187753, - [SMALL_STATE(3699)] = 187784, - [SMALL_STATE(3700)] = 187815, - [SMALL_STATE(3701)] = 187846, - [SMALL_STATE(3702)] = 187877, - [SMALL_STATE(3703)] = 187908, - [SMALL_STATE(3704)] = 187939, - [SMALL_STATE(3705)] = 187970, - [SMALL_STATE(3706)] = 188001, - [SMALL_STATE(3707)] = 188032, - [SMALL_STATE(3708)] = 188063, - [SMALL_STATE(3709)] = 188094, - [SMALL_STATE(3710)] = 188125, - [SMALL_STATE(3711)] = 188156, - [SMALL_STATE(3712)] = 188187, - [SMALL_STATE(3713)] = 188218, - [SMALL_STATE(3714)] = 188249, - [SMALL_STATE(3715)] = 188280, - [SMALL_STATE(3716)] = 188311, - [SMALL_STATE(3717)] = 188342, - [SMALL_STATE(3718)] = 188373, - [SMALL_STATE(3719)] = 188404, - [SMALL_STATE(3720)] = 188435, - [SMALL_STATE(3721)] = 188466, - [SMALL_STATE(3722)] = 188497, - [SMALL_STATE(3723)] = 188528, - [SMALL_STATE(3724)] = 188559, - [SMALL_STATE(3725)] = 188589, - [SMALL_STATE(3726)] = 188619, - [SMALL_STATE(3727)] = 188649, - [SMALL_STATE(3728)] = 188681, - [SMALL_STATE(3729)] = 188711, - [SMALL_STATE(3730)] = 188741, - [SMALL_STATE(3731)] = 188771, - [SMALL_STATE(3732)] = 188801, - [SMALL_STATE(3733)] = 188833, - [SMALL_STATE(3734)] = 188863, - [SMALL_STATE(3735)] = 188893, - [SMALL_STATE(3736)] = 188923, - [SMALL_STATE(3737)] = 188953, - [SMALL_STATE(3738)] = 188983, - [SMALL_STATE(3739)] = 189013, - [SMALL_STATE(3740)] = 189043, - [SMALL_STATE(3741)] = 189073, - [SMALL_STATE(3742)] = 189103, - [SMALL_STATE(3743)] = 189133, - [SMALL_STATE(3744)] = 189163, - [SMALL_STATE(3745)] = 189193, - [SMALL_STATE(3746)] = 189223, - [SMALL_STATE(3747)] = 189253, - [SMALL_STATE(3748)] = 189283, - [SMALL_STATE(3749)] = 189313, - [SMALL_STATE(3750)] = 189343, - [SMALL_STATE(3751)] = 189373, - [SMALL_STATE(3752)] = 189403, - [SMALL_STATE(3753)] = 189433, - [SMALL_STATE(3754)] = 189463, - [SMALL_STATE(3755)] = 189493, - [SMALL_STATE(3756)] = 189516, - [SMALL_STATE(3757)] = 189539, - [SMALL_STATE(3758)] = 189568, - [SMALL_STATE(3759)] = 189597, - [SMALL_STATE(3760)] = 189626, - [SMALL_STATE(3761)] = 189649, - [SMALL_STATE(3762)] = 189678, - [SMALL_STATE(3763)] = 189701, - [SMALL_STATE(3764)] = 189730, - [SMALL_STATE(3765)] = 189753, - [SMALL_STATE(3766)] = 189782, - [SMALL_STATE(3767)] = 189805, - [SMALL_STATE(3768)] = 189834, - [SMALL_STATE(3769)] = 189857, - [SMALL_STATE(3770)] = 189886, - [SMALL_STATE(3771)] = 189915, - [SMALL_STATE(3772)] = 189938, - [SMALL_STATE(3773)] = 189961, - [SMALL_STATE(3774)] = 189990, - [SMALL_STATE(3775)] = 190019, - [SMALL_STATE(3776)] = 190042, - [SMALL_STATE(3777)] = 190071, - [SMALL_STATE(3778)] = 190100, - [SMALL_STATE(3779)] = 190123, - [SMALL_STATE(3780)] = 190152, - [SMALL_STATE(3781)] = 190175, - [SMALL_STATE(3782)] = 190198, - [SMALL_STATE(3783)] = 190227, - [SMALL_STATE(3784)] = 190256, - [SMALL_STATE(3785)] = 190279, - [SMALL_STATE(3786)] = 190302, - [SMALL_STATE(3787)] = 190331, - [SMALL_STATE(3788)] = 190354, - [SMALL_STATE(3789)] = 190377, - [SMALL_STATE(3790)] = 190400, - [SMALL_STATE(3791)] = 190429, - [SMALL_STATE(3792)] = 190452, - [SMALL_STATE(3793)] = 190481, - [SMALL_STATE(3794)] = 190510, - [SMALL_STATE(3795)] = 190539, - [SMALL_STATE(3796)] = 190568, - [SMALL_STATE(3797)] = 190591, - [SMALL_STATE(3798)] = 190620, - [SMALL_STATE(3799)] = 190640, - [SMALL_STATE(3800)] = 190660, - [SMALL_STATE(3801)] = 190680, - [SMALL_STATE(3802)] = 190698, - [SMALL_STATE(3803)] = 190723, - [SMALL_STATE(3804)] = 190748, - [SMALL_STATE(3805)] = 190773, - [SMALL_STATE(3806)] = 190798, - [SMALL_STATE(3807)] = 190823, - [SMALL_STATE(3808)] = 190848, - [SMALL_STATE(3809)] = 190873, - [SMALL_STATE(3810)] = 190898, - [SMALL_STATE(3811)] = 190923, - [SMALL_STATE(3812)] = 190948, - [SMALL_STATE(3813)] = 190973, - [SMALL_STATE(3814)] = 190998, - [SMALL_STATE(3815)] = 191023, - [SMALL_STATE(3816)] = 191048, - [SMALL_STATE(3817)] = 191073, - [SMALL_STATE(3818)] = 191098, - [SMALL_STATE(3819)] = 191123, - [SMALL_STATE(3820)] = 191148, - [SMALL_STATE(3821)] = 191173, - [SMALL_STATE(3822)] = 191198, - [SMALL_STATE(3823)] = 191223, - [SMALL_STATE(3824)] = 191248, - [SMALL_STATE(3825)] = 191273, - [SMALL_STATE(3826)] = 191298, - [SMALL_STATE(3827)] = 191323, - [SMALL_STATE(3828)] = 191348, - [SMALL_STATE(3829)] = 191373, - [SMALL_STATE(3830)] = 191398, - [SMALL_STATE(3831)] = 191423, - [SMALL_STATE(3832)] = 191448, - [SMALL_STATE(3833)] = 191473, - [SMALL_STATE(3834)] = 191498, - [SMALL_STATE(3835)] = 191523, - [SMALL_STATE(3836)] = 191548, - [SMALL_STATE(3837)] = 191573, - [SMALL_STATE(3838)] = 191598, - [SMALL_STATE(3839)] = 191623, - [SMALL_STATE(3840)] = 191648, - [SMALL_STATE(3841)] = 191673, - [SMALL_STATE(3842)] = 191698, - [SMALL_STATE(3843)] = 191723, - [SMALL_STATE(3844)] = 191748, - [SMALL_STATE(3845)] = 191773, - [SMALL_STATE(3846)] = 191798, - [SMALL_STATE(3847)] = 191823, - [SMALL_STATE(3848)] = 191848, - [SMALL_STATE(3849)] = 191873, - [SMALL_STATE(3850)] = 191898, - [SMALL_STATE(3851)] = 191923, - [SMALL_STATE(3852)] = 191948, - [SMALL_STATE(3853)] = 191973, - [SMALL_STATE(3854)] = 191998, - [SMALL_STATE(3855)] = 192023, - [SMALL_STATE(3856)] = 192048, - [SMALL_STATE(3857)] = 192073, - [SMALL_STATE(3858)] = 192098, - [SMALL_STATE(3859)] = 192123, - [SMALL_STATE(3860)] = 192148, - [SMALL_STATE(3861)] = 192173, - [SMALL_STATE(3862)] = 192198, - [SMALL_STATE(3863)] = 192223, - [SMALL_STATE(3864)] = 192248, - [SMALL_STATE(3865)] = 192273, - [SMALL_STATE(3866)] = 192298, - [SMALL_STATE(3867)] = 192323, - [SMALL_STATE(3868)] = 192348, - [SMALL_STATE(3869)] = 192373, - [SMALL_STATE(3870)] = 192398, - [SMALL_STATE(3871)] = 192423, - [SMALL_STATE(3872)] = 192448, - [SMALL_STATE(3873)] = 192473, - [SMALL_STATE(3874)] = 192498, - [SMALL_STATE(3875)] = 192523, - [SMALL_STATE(3876)] = 192548, - [SMALL_STATE(3877)] = 192573, - [SMALL_STATE(3878)] = 192598, - [SMALL_STATE(3879)] = 192623, - [SMALL_STATE(3880)] = 192648, - [SMALL_STATE(3881)] = 192673, - [SMALL_STATE(3882)] = 192698, - [SMALL_STATE(3883)] = 192723, - [SMALL_STATE(3884)] = 192748, - [SMALL_STATE(3885)] = 192773, - [SMALL_STATE(3886)] = 192798, - [SMALL_STATE(3887)] = 192823, - [SMALL_STATE(3888)] = 192848, - [SMALL_STATE(3889)] = 192873, - [SMALL_STATE(3890)] = 192898, - [SMALL_STATE(3891)] = 192923, - [SMALL_STATE(3892)] = 192948, - [SMALL_STATE(3893)] = 192973, - [SMALL_STATE(3894)] = 192998, - [SMALL_STATE(3895)] = 193023, - [SMALL_STATE(3896)] = 193048, - [SMALL_STATE(3897)] = 193073, - [SMALL_STATE(3898)] = 193098, - [SMALL_STATE(3899)] = 193123, - [SMALL_STATE(3900)] = 193148, - [SMALL_STATE(3901)] = 193173, - [SMALL_STATE(3902)] = 193198, - [SMALL_STATE(3903)] = 193223, - [SMALL_STATE(3904)] = 193248, - [SMALL_STATE(3905)] = 193273, - [SMALL_STATE(3906)] = 193298, - [SMALL_STATE(3907)] = 193323, - [SMALL_STATE(3908)] = 193348, - [SMALL_STATE(3909)] = 193373, - [SMALL_STATE(3910)] = 193398, - [SMALL_STATE(3911)] = 193423, - [SMALL_STATE(3912)] = 193448, - [SMALL_STATE(3913)] = 193473, - [SMALL_STATE(3914)] = 193498, - [SMALL_STATE(3915)] = 193523, - [SMALL_STATE(3916)] = 193548, - [SMALL_STATE(3917)] = 193573, - [SMALL_STATE(3918)] = 193598, - [SMALL_STATE(3919)] = 193623, - [SMALL_STATE(3920)] = 193648, - [SMALL_STATE(3921)] = 193673, - [SMALL_STATE(3922)] = 193698, - [SMALL_STATE(3923)] = 193723, - [SMALL_STATE(3924)] = 193748, - [SMALL_STATE(3925)] = 193773, - [SMALL_STATE(3926)] = 193798, - [SMALL_STATE(3927)] = 193823, - [SMALL_STATE(3928)] = 193848, - [SMALL_STATE(3929)] = 193873, - [SMALL_STATE(3930)] = 193898, - [SMALL_STATE(3931)] = 193923, - [SMALL_STATE(3932)] = 193948, - [SMALL_STATE(3933)] = 193973, - [SMALL_STATE(3934)] = 193998, - [SMALL_STATE(3935)] = 194023, - [SMALL_STATE(3936)] = 194048, - [SMALL_STATE(3937)] = 194073, - [SMALL_STATE(3938)] = 194098, - [SMALL_STATE(3939)] = 194123, - [SMALL_STATE(3940)] = 194148, - [SMALL_STATE(3941)] = 194173, - [SMALL_STATE(3942)] = 194198, - [SMALL_STATE(3943)] = 194223, - [SMALL_STATE(3944)] = 194248, - [SMALL_STATE(3945)] = 194273, - [SMALL_STATE(3946)] = 194298, - [SMALL_STATE(3947)] = 194323, - [SMALL_STATE(3948)] = 194348, - [SMALL_STATE(3949)] = 194373, - [SMALL_STATE(3950)] = 194398, - [SMALL_STATE(3951)] = 194423, - [SMALL_STATE(3952)] = 194448, - [SMALL_STATE(3953)] = 194473, - [SMALL_STATE(3954)] = 194498, - [SMALL_STATE(3955)] = 194523, - [SMALL_STATE(3956)] = 194548, - [SMALL_STATE(3957)] = 194573, - [SMALL_STATE(3958)] = 194598, - [SMALL_STATE(3959)] = 194623, - [SMALL_STATE(3960)] = 194648, - [SMALL_STATE(3961)] = 194673, - [SMALL_STATE(3962)] = 194698, - [SMALL_STATE(3963)] = 194723, - [SMALL_STATE(3964)] = 194748, - [SMALL_STATE(3965)] = 194773, - [SMALL_STATE(3966)] = 194798, - [SMALL_STATE(3967)] = 194823, - [SMALL_STATE(3968)] = 194848, - [SMALL_STATE(3969)] = 194873, - [SMALL_STATE(3970)] = 194898, - [SMALL_STATE(3971)] = 194923, - [SMALL_STATE(3972)] = 194948, - [SMALL_STATE(3973)] = 194973, - [SMALL_STATE(3974)] = 194998, - [SMALL_STATE(3975)] = 195023, - [SMALL_STATE(3976)] = 195048, - [SMALL_STATE(3977)] = 195073, - [SMALL_STATE(3978)] = 195098, - [SMALL_STATE(3979)] = 195123, - [SMALL_STATE(3980)] = 195148, - [SMALL_STATE(3981)] = 195173, - [SMALL_STATE(3982)] = 195198, - [SMALL_STATE(3983)] = 195223, - [SMALL_STATE(3984)] = 195248, - [SMALL_STATE(3985)] = 195273, - [SMALL_STATE(3986)] = 195298, - [SMALL_STATE(3987)] = 195323, - [SMALL_STATE(3988)] = 195348, - [SMALL_STATE(3989)] = 195373, - [SMALL_STATE(3990)] = 195398, - [SMALL_STATE(3991)] = 195423, - [SMALL_STATE(3992)] = 195448, - [SMALL_STATE(3993)] = 195473, - [SMALL_STATE(3994)] = 195498, - [SMALL_STATE(3995)] = 195523, - [SMALL_STATE(3996)] = 195548, - [SMALL_STATE(3997)] = 195573, - [SMALL_STATE(3998)] = 195598, - [SMALL_STATE(3999)] = 195623, - [SMALL_STATE(4000)] = 195648, - [SMALL_STATE(4001)] = 195673, - [SMALL_STATE(4002)] = 195698, - [SMALL_STATE(4003)] = 195723, - [SMALL_STATE(4004)] = 195748, - [SMALL_STATE(4005)] = 195773, - [SMALL_STATE(4006)] = 195798, - [SMALL_STATE(4007)] = 195823, - [SMALL_STATE(4008)] = 195848, - [SMALL_STATE(4009)] = 195873, - [SMALL_STATE(4010)] = 195898, - [SMALL_STATE(4011)] = 195923, - [SMALL_STATE(4012)] = 195948, - [SMALL_STATE(4013)] = 195973, - [SMALL_STATE(4014)] = 195998, - [SMALL_STATE(4015)] = 196023, - [SMALL_STATE(4016)] = 196048, - [SMALL_STATE(4017)] = 196073, - [SMALL_STATE(4018)] = 196098, - [SMALL_STATE(4019)] = 196123, - [SMALL_STATE(4020)] = 196148, - [SMALL_STATE(4021)] = 196173, - [SMALL_STATE(4022)] = 196198, - [SMALL_STATE(4023)] = 196223, - [SMALL_STATE(4024)] = 196248, - [SMALL_STATE(4025)] = 196273, - [SMALL_STATE(4026)] = 196298, - [SMALL_STATE(4027)] = 196323, - [SMALL_STATE(4028)] = 196348, - [SMALL_STATE(4029)] = 196373, - [SMALL_STATE(4030)] = 196398, - [SMALL_STATE(4031)] = 196423, - [SMALL_STATE(4032)] = 196448, - [SMALL_STATE(4033)] = 196473, - [SMALL_STATE(4034)] = 196498, - [SMALL_STATE(4035)] = 196523, - [SMALL_STATE(4036)] = 196548, - [SMALL_STATE(4037)] = 196573, - [SMALL_STATE(4038)] = 196598, - [SMALL_STATE(4039)] = 196623, - [SMALL_STATE(4040)] = 196648, - [SMALL_STATE(4041)] = 196673, - [SMALL_STATE(4042)] = 196698, - [SMALL_STATE(4043)] = 196723, - [SMALL_STATE(4044)] = 196748, - [SMALL_STATE(4045)] = 196773, - [SMALL_STATE(4046)] = 196798, - [SMALL_STATE(4047)] = 196823, - [SMALL_STATE(4048)] = 196848, - [SMALL_STATE(4049)] = 196873, - [SMALL_STATE(4050)] = 196898, - [SMALL_STATE(4051)] = 196923, - [SMALL_STATE(4052)] = 196948, - [SMALL_STATE(4053)] = 196973, - [SMALL_STATE(4054)] = 196998, - [SMALL_STATE(4055)] = 197023, - [SMALL_STATE(4056)] = 197048, - [SMALL_STATE(4057)] = 197073, - [SMALL_STATE(4058)] = 197098, - [SMALL_STATE(4059)] = 197123, - [SMALL_STATE(4060)] = 197148, - [SMALL_STATE(4061)] = 197173, - [SMALL_STATE(4062)] = 197198, - [SMALL_STATE(4063)] = 197223, - [SMALL_STATE(4064)] = 197248, - [SMALL_STATE(4065)] = 197273, - [SMALL_STATE(4066)] = 197298, - [SMALL_STATE(4067)] = 197323, - [SMALL_STATE(4068)] = 197348, - [SMALL_STATE(4069)] = 197373, - [SMALL_STATE(4070)] = 197398, - [SMALL_STATE(4071)] = 197423, - [SMALL_STATE(4072)] = 197448, - [SMALL_STATE(4073)] = 197473, - [SMALL_STATE(4074)] = 197498, - [SMALL_STATE(4075)] = 197523, - [SMALL_STATE(4076)] = 197548, - [SMALL_STATE(4077)] = 197573, - [SMALL_STATE(4078)] = 197598, - [SMALL_STATE(4079)] = 197623, - [SMALL_STATE(4080)] = 197648, - [SMALL_STATE(4081)] = 197673, - [SMALL_STATE(4082)] = 197698, - [SMALL_STATE(4083)] = 197723, - [SMALL_STATE(4084)] = 197748, - [SMALL_STATE(4085)] = 197773, - [SMALL_STATE(4086)] = 197798, - [SMALL_STATE(4087)] = 197823, - [SMALL_STATE(4088)] = 197848, - [SMALL_STATE(4089)] = 197873, - [SMALL_STATE(4090)] = 197898, - [SMALL_STATE(4091)] = 197923, - [SMALL_STATE(4092)] = 197948, - [SMALL_STATE(4093)] = 197973, - [SMALL_STATE(4094)] = 197998, - [SMALL_STATE(4095)] = 198023, - [SMALL_STATE(4096)] = 198048, - [SMALL_STATE(4097)] = 198073, - [SMALL_STATE(4098)] = 198098, - [SMALL_STATE(4099)] = 198123, - [SMALL_STATE(4100)] = 198148, - [SMALL_STATE(4101)] = 198173, - [SMALL_STATE(4102)] = 198198, - [SMALL_STATE(4103)] = 198223, - [SMALL_STATE(4104)] = 198248, - [SMALL_STATE(4105)] = 198273, - [SMALL_STATE(4106)] = 198298, - [SMALL_STATE(4107)] = 198323, - [SMALL_STATE(4108)] = 198348, - [SMALL_STATE(4109)] = 198373, - [SMALL_STATE(4110)] = 198398, - [SMALL_STATE(4111)] = 198423, - [SMALL_STATE(4112)] = 198448, - [SMALL_STATE(4113)] = 198473, - [SMALL_STATE(4114)] = 198498, - [SMALL_STATE(4115)] = 198523, - [SMALL_STATE(4116)] = 198548, - [SMALL_STATE(4117)] = 198573, - [SMALL_STATE(4118)] = 198598, - [SMALL_STATE(4119)] = 198623, - [SMALL_STATE(4120)] = 198648, - [SMALL_STATE(4121)] = 198673, - [SMALL_STATE(4122)] = 198698, - [SMALL_STATE(4123)] = 198723, - [SMALL_STATE(4124)] = 198748, - [SMALL_STATE(4125)] = 198773, - [SMALL_STATE(4126)] = 198798, - [SMALL_STATE(4127)] = 198823, - [SMALL_STATE(4128)] = 198848, - [SMALL_STATE(4129)] = 198873, - [SMALL_STATE(4130)] = 198898, - [SMALL_STATE(4131)] = 198923, - [SMALL_STATE(4132)] = 198948, - [SMALL_STATE(4133)] = 198973, - [SMALL_STATE(4134)] = 198998, - [SMALL_STATE(4135)] = 199023, - [SMALL_STATE(4136)] = 199048, - [SMALL_STATE(4137)] = 199073, - [SMALL_STATE(4138)] = 199098, - [SMALL_STATE(4139)] = 199123, - [SMALL_STATE(4140)] = 199148, - [SMALL_STATE(4141)] = 199173, - [SMALL_STATE(4142)] = 199198, - [SMALL_STATE(4143)] = 199223, - [SMALL_STATE(4144)] = 199248, - [SMALL_STATE(4145)] = 199273, - [SMALL_STATE(4146)] = 199298, - [SMALL_STATE(4147)] = 199323, - [SMALL_STATE(4148)] = 199348, - [SMALL_STATE(4149)] = 199373, - [SMALL_STATE(4150)] = 199398, - [SMALL_STATE(4151)] = 199423, - [SMALL_STATE(4152)] = 199448, - [SMALL_STATE(4153)] = 199473, - [SMALL_STATE(4154)] = 199498, - [SMALL_STATE(4155)] = 199523, - [SMALL_STATE(4156)] = 199548, - [SMALL_STATE(4157)] = 199573, - [SMALL_STATE(4158)] = 199598, - [SMALL_STATE(4159)] = 199623, - [SMALL_STATE(4160)] = 199648, - [SMALL_STATE(4161)] = 199673, - [SMALL_STATE(4162)] = 199698, - [SMALL_STATE(4163)] = 199723, - [SMALL_STATE(4164)] = 199748, - [SMALL_STATE(4165)] = 199773, - [SMALL_STATE(4166)] = 199798, - [SMALL_STATE(4167)] = 199823, - [SMALL_STATE(4168)] = 199848, - [SMALL_STATE(4169)] = 199873, - [SMALL_STATE(4170)] = 199898, - [SMALL_STATE(4171)] = 199923, - [SMALL_STATE(4172)] = 199948, - [SMALL_STATE(4173)] = 199973, - [SMALL_STATE(4174)] = 199998, - [SMALL_STATE(4175)] = 200023, - [SMALL_STATE(4176)] = 200048, - [SMALL_STATE(4177)] = 200073, - [SMALL_STATE(4178)] = 200098, - [SMALL_STATE(4179)] = 200123, - [SMALL_STATE(4180)] = 200148, - [SMALL_STATE(4181)] = 200173, - [SMALL_STATE(4182)] = 200198, - [SMALL_STATE(4183)] = 200223, - [SMALL_STATE(4184)] = 200248, - [SMALL_STATE(4185)] = 200273, - [SMALL_STATE(4186)] = 200298, - [SMALL_STATE(4187)] = 200323, - [SMALL_STATE(4188)] = 200348, - [SMALL_STATE(4189)] = 200373, - [SMALL_STATE(4190)] = 200398, - [SMALL_STATE(4191)] = 200423, - [SMALL_STATE(4192)] = 200448, - [SMALL_STATE(4193)] = 200473, - [SMALL_STATE(4194)] = 200498, - [SMALL_STATE(4195)] = 200523, - [SMALL_STATE(4196)] = 200548, - [SMALL_STATE(4197)] = 200573, - [SMALL_STATE(4198)] = 200598, - [SMALL_STATE(4199)] = 200623, - [SMALL_STATE(4200)] = 200648, - [SMALL_STATE(4201)] = 200673, - [SMALL_STATE(4202)] = 200698, - [SMALL_STATE(4203)] = 200723, - [SMALL_STATE(4204)] = 200748, - [SMALL_STATE(4205)] = 200773, - [SMALL_STATE(4206)] = 200798, - [SMALL_STATE(4207)] = 200823, - [SMALL_STATE(4208)] = 200848, - [SMALL_STATE(4209)] = 200873, - [SMALL_STATE(4210)] = 200898, - [SMALL_STATE(4211)] = 200923, - [SMALL_STATE(4212)] = 200948, - [SMALL_STATE(4213)] = 200973, - [SMALL_STATE(4214)] = 200998, - [SMALL_STATE(4215)] = 201023, - [SMALL_STATE(4216)] = 201048, - [SMALL_STATE(4217)] = 201073, - [SMALL_STATE(4218)] = 201098, - [SMALL_STATE(4219)] = 201123, - [SMALL_STATE(4220)] = 201148, - [SMALL_STATE(4221)] = 201173, - [SMALL_STATE(4222)] = 201198, - [SMALL_STATE(4223)] = 201223, - [SMALL_STATE(4224)] = 201248, - [SMALL_STATE(4225)] = 201273, - [SMALL_STATE(4226)] = 201298, - [SMALL_STATE(4227)] = 201323, - [SMALL_STATE(4228)] = 201348, - [SMALL_STATE(4229)] = 201373, - [SMALL_STATE(4230)] = 201398, - [SMALL_STATE(4231)] = 201423, - [SMALL_STATE(4232)] = 201448, - [SMALL_STATE(4233)] = 201473, - [SMALL_STATE(4234)] = 201498, - [SMALL_STATE(4235)] = 201523, - [SMALL_STATE(4236)] = 201548, - [SMALL_STATE(4237)] = 201573, - [SMALL_STATE(4238)] = 201598, - [SMALL_STATE(4239)] = 201623, - [SMALL_STATE(4240)] = 201648, - [SMALL_STATE(4241)] = 201673, - [SMALL_STATE(4242)] = 201698, - [SMALL_STATE(4243)] = 201723, - [SMALL_STATE(4244)] = 201748, - [SMALL_STATE(4245)] = 201773, - [SMALL_STATE(4246)] = 201798, - [SMALL_STATE(4247)] = 201823, - [SMALL_STATE(4248)] = 201848, - [SMALL_STATE(4249)] = 201873, - [SMALL_STATE(4250)] = 201898, - [SMALL_STATE(4251)] = 201923, - [SMALL_STATE(4252)] = 201948, - [SMALL_STATE(4253)] = 201973, - [SMALL_STATE(4254)] = 201998, - [SMALL_STATE(4255)] = 202023, - [SMALL_STATE(4256)] = 202048, - [SMALL_STATE(4257)] = 202073, - [SMALL_STATE(4258)] = 202098, - [SMALL_STATE(4259)] = 202123, - [SMALL_STATE(4260)] = 202148, - [SMALL_STATE(4261)] = 202173, - [SMALL_STATE(4262)] = 202198, - [SMALL_STATE(4263)] = 202223, - [SMALL_STATE(4264)] = 202248, - [SMALL_STATE(4265)] = 202273, - [SMALL_STATE(4266)] = 202298, - [SMALL_STATE(4267)] = 202323, - [SMALL_STATE(4268)] = 202348, - [SMALL_STATE(4269)] = 202373, - [SMALL_STATE(4270)] = 202398, - [SMALL_STATE(4271)] = 202423, - [SMALL_STATE(4272)] = 202448, - [SMALL_STATE(4273)] = 202473, - [SMALL_STATE(4274)] = 202498, - [SMALL_STATE(4275)] = 202523, - [SMALL_STATE(4276)] = 202548, - [SMALL_STATE(4277)] = 202573, - [SMALL_STATE(4278)] = 202598, - [SMALL_STATE(4279)] = 202623, - [SMALL_STATE(4280)] = 202648, - [SMALL_STATE(4281)] = 202673, - [SMALL_STATE(4282)] = 202698, - [SMALL_STATE(4283)] = 202723, - [SMALL_STATE(4284)] = 202748, - [SMALL_STATE(4285)] = 202773, - [SMALL_STATE(4286)] = 202798, - [SMALL_STATE(4287)] = 202823, - [SMALL_STATE(4288)] = 202848, - [SMALL_STATE(4289)] = 202873, - [SMALL_STATE(4290)] = 202898, - [SMALL_STATE(4291)] = 202923, - [SMALL_STATE(4292)] = 202948, - [SMALL_STATE(4293)] = 202973, - [SMALL_STATE(4294)] = 202998, - [SMALL_STATE(4295)] = 203023, - [SMALL_STATE(4296)] = 203048, - [SMALL_STATE(4297)] = 203074, - [SMALL_STATE(4298)] = 203100, - [SMALL_STATE(4299)] = 203126, - [SMALL_STATE(4300)] = 203152, - [SMALL_STATE(4301)] = 203178, - [SMALL_STATE(4302)] = 203198, - [SMALL_STATE(4303)] = 203224, - [SMALL_STATE(4304)] = 203244, - [SMALL_STATE(4305)] = 203270, - [SMALL_STATE(4306)] = 203290, - [SMALL_STATE(4307)] = 203316, - [SMALL_STATE(4308)] = 203342, - [SMALL_STATE(4309)] = 203368, - [SMALL_STATE(4310)] = 203394, - [SMALL_STATE(4311)] = 203420, - [SMALL_STATE(4312)] = 203446, - [SMALL_STATE(4313)] = 203472, - [SMALL_STATE(4314)] = 203498, - [SMALL_STATE(4315)] = 203524, - [SMALL_STATE(4316)] = 203550, - [SMALL_STATE(4317)] = 203576, - [SMALL_STATE(4318)] = 203602, - [SMALL_STATE(4319)] = 203628, - [SMALL_STATE(4320)] = 203654, - [SMALL_STATE(4321)] = 203680, - [SMALL_STATE(4322)] = 203706, - [SMALL_STATE(4323)] = 203732, - [SMALL_STATE(4324)] = 203758, - [SMALL_STATE(4325)] = 203778, - [SMALL_STATE(4326)] = 203804, - [SMALL_STATE(4327)] = 203830, - [SMALL_STATE(4328)] = 203856, - [SMALL_STATE(4329)] = 203882, - [SMALL_STATE(4330)] = 203908, - [SMALL_STATE(4331)] = 203928, - [SMALL_STATE(4332)] = 203954, - [SMALL_STATE(4333)] = 203980, - [SMALL_STATE(4334)] = 204006, - [SMALL_STATE(4335)] = 204032, - [SMALL_STATE(4336)] = 204058, - [SMALL_STATE(4337)] = 204084, - [SMALL_STATE(4338)] = 204110, - [SMALL_STATE(4339)] = 204136, - [SMALL_STATE(4340)] = 204162, - [SMALL_STATE(4341)] = 204188, - [SMALL_STATE(4342)] = 204214, - [SMALL_STATE(4343)] = 204240, - [SMALL_STATE(4344)] = 204266, - [SMALL_STATE(4345)] = 204292, - [SMALL_STATE(4346)] = 204318, - [SMALL_STATE(4347)] = 204344, - [SMALL_STATE(4348)] = 204370, - [SMALL_STATE(4349)] = 204396, - [SMALL_STATE(4350)] = 204422, - [SMALL_STATE(4351)] = 204448, - [SMALL_STATE(4352)] = 204474, - [SMALL_STATE(4353)] = 204500, - [SMALL_STATE(4354)] = 204526, - [SMALL_STATE(4355)] = 204552, - [SMALL_STATE(4356)] = 204578, - [SMALL_STATE(4357)] = 204604, - [SMALL_STATE(4358)] = 204630, - [SMALL_STATE(4359)] = 204656, - [SMALL_STATE(4360)] = 204682, - [SMALL_STATE(4361)] = 204708, - [SMALL_STATE(4362)] = 204734, - [SMALL_STATE(4363)] = 204760, - [SMALL_STATE(4364)] = 204786, - [SMALL_STATE(4365)] = 204812, - [SMALL_STATE(4366)] = 204838, - [SMALL_STATE(4367)] = 204864, - [SMALL_STATE(4368)] = 204890, - [SMALL_STATE(4369)] = 204910, - [SMALL_STATE(4370)] = 204936, - [SMALL_STATE(4371)] = 204962, - [SMALL_STATE(4372)] = 204988, - [SMALL_STATE(4373)] = 205014, - [SMALL_STATE(4374)] = 205040, - [SMALL_STATE(4375)] = 205066, - [SMALL_STATE(4376)] = 205092, - [SMALL_STATE(4377)] = 205118, - [SMALL_STATE(4378)] = 205144, - [SMALL_STATE(4379)] = 205170, - [SMALL_STATE(4380)] = 205196, - [SMALL_STATE(4381)] = 205222, - [SMALL_STATE(4382)] = 205248, - [SMALL_STATE(4383)] = 205274, - [SMALL_STATE(4384)] = 205300, - [SMALL_STATE(4385)] = 205326, - [SMALL_STATE(4386)] = 205352, - [SMALL_STATE(4387)] = 205378, - [SMALL_STATE(4388)] = 205404, - [SMALL_STATE(4389)] = 205430, - [SMALL_STATE(4390)] = 205456, - [SMALL_STATE(4391)] = 205482, - [SMALL_STATE(4392)] = 205508, - [SMALL_STATE(4393)] = 205534, - [SMALL_STATE(4394)] = 205560, - [SMALL_STATE(4395)] = 205586, - [SMALL_STATE(4396)] = 205612, - [SMALL_STATE(4397)] = 205638, - [SMALL_STATE(4398)] = 205664, - [SMALL_STATE(4399)] = 205690, - [SMALL_STATE(4400)] = 205716, - [SMALL_STATE(4401)] = 205742, - [SMALL_STATE(4402)] = 205768, - [SMALL_STATE(4403)] = 205794, - [SMALL_STATE(4404)] = 205820, - [SMALL_STATE(4405)] = 205846, - [SMALL_STATE(4406)] = 205866, - [SMALL_STATE(4407)] = 205892, - [SMALL_STATE(4408)] = 205918, - [SMALL_STATE(4409)] = 205944, - [SMALL_STATE(4410)] = 205970, - [SMALL_STATE(4411)] = 205996, - [SMALL_STATE(4412)] = 206022, - [SMALL_STATE(4413)] = 206048, - [SMALL_STATE(4414)] = 206074, - [SMALL_STATE(4415)] = 206100, - [SMALL_STATE(4416)] = 206126, - [SMALL_STATE(4417)] = 206152, - [SMALL_STATE(4418)] = 206178, - [SMALL_STATE(4419)] = 206204, - [SMALL_STATE(4420)] = 206230, - [SMALL_STATE(4421)] = 206256, - [SMALL_STATE(4422)] = 206282, - [SMALL_STATE(4423)] = 206308, - [SMALL_STATE(4424)] = 206334, - [SMALL_STATE(4425)] = 206360, - [SMALL_STATE(4426)] = 206386, - [SMALL_STATE(4427)] = 206412, - [SMALL_STATE(4428)] = 206438, - [SMALL_STATE(4429)] = 206464, - [SMALL_STATE(4430)] = 206490, - [SMALL_STATE(4431)] = 206516, - [SMALL_STATE(4432)] = 206542, - [SMALL_STATE(4433)] = 206568, - [SMALL_STATE(4434)] = 206594, - [SMALL_STATE(4435)] = 206620, - [SMALL_STATE(4436)] = 206641, - [SMALL_STATE(4437)] = 206662, - [SMALL_STATE(4438)] = 206683, - [SMALL_STATE(4439)] = 206704, - [SMALL_STATE(4440)] = 206725, - [SMALL_STATE(4441)] = 206746, - [SMALL_STATE(4442)] = 206767, - [SMALL_STATE(4443)] = 206788, - [SMALL_STATE(4444)] = 206809, - [SMALL_STATE(4445)] = 206830, - [SMALL_STATE(4446)] = 206851, - [SMALL_STATE(4447)] = 206872, - [SMALL_STATE(4448)] = 206893, - [SMALL_STATE(4449)] = 206914, - [SMALL_STATE(4450)] = 206935, - [SMALL_STATE(4451)] = 206956, - [SMALL_STATE(4452)] = 206975, - [SMALL_STATE(4453)] = 206996, - [SMALL_STATE(4454)] = 207017, - [SMALL_STATE(4455)] = 207038, - [SMALL_STATE(4456)] = 207055, - [SMALL_STATE(4457)] = 207076, - [SMALL_STATE(4458)] = 207097, - [SMALL_STATE(4459)] = 207118, - [SMALL_STATE(4460)] = 207139, - [SMALL_STATE(4461)] = 207160, - [SMALL_STATE(4462)] = 207177, - [SMALL_STATE(4463)] = 207194, - [SMALL_STATE(4464)] = 207215, - [SMALL_STATE(4465)] = 207236, - [SMALL_STATE(4466)] = 207257, - [SMALL_STATE(4467)] = 207274, - [SMALL_STATE(4468)] = 207291, - [SMALL_STATE(4469)] = 207310, - [SMALL_STATE(4470)] = 207331, - [SMALL_STATE(4471)] = 207350, - [SMALL_STATE(4472)] = 207371, - [SMALL_STATE(4473)] = 207392, - [SMALL_STATE(4474)] = 207413, - [SMALL_STATE(4475)] = 207434, - [SMALL_STATE(4476)] = 207455, - [SMALL_STATE(4477)] = 207476, - [SMALL_STATE(4478)] = 207497, - [SMALL_STATE(4479)] = 207518, - [SMALL_STATE(4480)] = 207539, - [SMALL_STATE(4481)] = 207560, - [SMALL_STATE(4482)] = 207579, - [SMALL_STATE(4483)] = 207600, - [SMALL_STATE(4484)] = 207621, - [SMALL_STATE(4485)] = 207642, - [SMALL_STATE(4486)] = 207663, - [SMALL_STATE(4487)] = 207684, - [SMALL_STATE(4488)] = 207705, - [SMALL_STATE(4489)] = 207722, - [SMALL_STATE(4490)] = 207743, - [SMALL_STATE(4491)] = 207764, - [SMALL_STATE(4492)] = 207785, - [SMALL_STATE(4493)] = 207806, - [SMALL_STATE(4494)] = 207827, - [SMALL_STATE(4495)] = 207848, - [SMALL_STATE(4496)] = 207869, - [SMALL_STATE(4497)] = 207886, - [SMALL_STATE(4498)] = 207907, - [SMALL_STATE(4499)] = 207928, - [SMALL_STATE(4500)] = 207949, - [SMALL_STATE(4501)] = 207970, - [SMALL_STATE(4502)] = 207989, - [SMALL_STATE(4503)] = 208010, - [SMALL_STATE(4504)] = 208031, - [SMALL_STATE(4505)] = 208052, - [SMALL_STATE(4506)] = 208073, - [SMALL_STATE(4507)] = 208094, - [SMALL_STATE(4508)] = 208115, - [SMALL_STATE(4509)] = 208134, - [SMALL_STATE(4510)] = 208155, - [SMALL_STATE(4511)] = 208176, - [SMALL_STATE(4512)] = 208197, - [SMALL_STATE(4513)] = 208218, - [SMALL_STATE(4514)] = 208239, - [SMALL_STATE(4515)] = 208260, - [SMALL_STATE(4516)] = 208281, - [SMALL_STATE(4517)] = 208302, - [SMALL_STATE(4518)] = 208323, - [SMALL_STATE(4519)] = 208344, - [SMALL_STATE(4520)] = 208365, - [SMALL_STATE(4521)] = 208386, - [SMALL_STATE(4522)] = 208407, - [SMALL_STATE(4523)] = 208428, - [SMALL_STATE(4524)] = 208449, - [SMALL_STATE(4525)] = 208470, - [SMALL_STATE(4526)] = 208491, - [SMALL_STATE(4527)] = 208512, - [SMALL_STATE(4528)] = 208533, - [SMALL_STATE(4529)] = 208554, - [SMALL_STATE(4530)] = 208573, - [SMALL_STATE(4531)] = 208594, - [SMALL_STATE(4532)] = 208615, - [SMALL_STATE(4533)] = 208636, - [SMALL_STATE(4534)] = 208657, - [SMALL_STATE(4535)] = 208678, - [SMALL_STATE(4536)] = 208699, - [SMALL_STATE(4537)] = 208720, - [SMALL_STATE(4538)] = 208741, - [SMALL_STATE(4539)] = 208762, - [SMALL_STATE(4540)] = 208783, - [SMALL_STATE(4541)] = 208804, - [SMALL_STATE(4542)] = 208825, - [SMALL_STATE(4543)] = 208846, - [SMALL_STATE(4544)] = 208867, - [SMALL_STATE(4545)] = 208888, - [SMALL_STATE(4546)] = 208909, - [SMALL_STATE(4547)] = 208930, - [SMALL_STATE(4548)] = 208951, - [SMALL_STATE(4549)] = 208972, - [SMALL_STATE(4550)] = 208991, - [SMALL_STATE(4551)] = 209012, - [SMALL_STATE(4552)] = 209033, - [SMALL_STATE(4553)] = 209054, - [SMALL_STATE(4554)] = 209075, - [SMALL_STATE(4555)] = 209096, - [SMALL_STATE(4556)] = 209117, - [SMALL_STATE(4557)] = 209138, - [SMALL_STATE(4558)] = 209159, - [SMALL_STATE(4559)] = 209180, - [SMALL_STATE(4560)] = 209201, - [SMALL_STATE(4561)] = 209218, - [SMALL_STATE(4562)] = 209239, - [SMALL_STATE(4563)] = 209260, - [SMALL_STATE(4564)] = 209281, - [SMALL_STATE(4565)] = 209302, - [SMALL_STATE(4566)] = 209323, - [SMALL_STATE(4567)] = 209344, - [SMALL_STATE(4568)] = 209365, - [SMALL_STATE(4569)] = 209386, - [SMALL_STATE(4570)] = 209407, - [SMALL_STATE(4571)] = 209428, - [SMALL_STATE(4572)] = 209449, - [SMALL_STATE(4573)] = 209470, - [SMALL_STATE(4574)] = 209491, - [SMALL_STATE(4575)] = 209510, - [SMALL_STATE(4576)] = 209531, - [SMALL_STATE(4577)] = 209552, - [SMALL_STATE(4578)] = 209573, - [SMALL_STATE(4579)] = 209592, - [SMALL_STATE(4580)] = 209613, - [SMALL_STATE(4581)] = 209634, - [SMALL_STATE(4582)] = 209655, - [SMALL_STATE(4583)] = 209676, - [SMALL_STATE(4584)] = 209697, - [SMALL_STATE(4585)] = 209718, - [SMALL_STATE(4586)] = 209739, - [SMALL_STATE(4587)] = 209760, - [SMALL_STATE(4588)] = 209781, - [SMALL_STATE(4589)] = 209802, - [SMALL_STATE(4590)] = 209823, - [SMALL_STATE(4591)] = 209844, - [SMALL_STATE(4592)] = 209865, - [SMALL_STATE(4593)] = 209886, - [SMALL_STATE(4594)] = 209907, - [SMALL_STATE(4595)] = 209928, - [SMALL_STATE(4596)] = 209945, - [SMALL_STATE(4597)] = 209966, - [SMALL_STATE(4598)] = 209987, - [SMALL_STATE(4599)] = 210008, - [SMALL_STATE(4600)] = 210029, - [SMALL_STATE(4601)] = 210050, - [SMALL_STATE(4602)] = 210071, - [SMALL_STATE(4603)] = 210092, - [SMALL_STATE(4604)] = 210113, - [SMALL_STATE(4605)] = 210134, - [SMALL_STATE(4606)] = 210155, - [SMALL_STATE(4607)] = 210176, - [SMALL_STATE(4608)] = 210197, - [SMALL_STATE(4609)] = 210218, - [SMALL_STATE(4610)] = 210239, - [SMALL_STATE(4611)] = 210260, - [SMALL_STATE(4612)] = 210281, - [SMALL_STATE(4613)] = 210302, - [SMALL_STATE(4614)] = 210323, - [SMALL_STATE(4615)] = 210344, - [SMALL_STATE(4616)] = 210365, - [SMALL_STATE(4617)] = 210386, - [SMALL_STATE(4618)] = 210407, - [SMALL_STATE(4619)] = 210428, - [SMALL_STATE(4620)] = 210449, - [SMALL_STATE(4621)] = 210470, - [SMALL_STATE(4622)] = 210491, - [SMALL_STATE(4623)] = 210512, - [SMALL_STATE(4624)] = 210533, - [SMALL_STATE(4625)] = 210554, - [SMALL_STATE(4626)] = 210575, - [SMALL_STATE(4627)] = 210596, - [SMALL_STATE(4628)] = 210617, - [SMALL_STATE(4629)] = 210638, - [SMALL_STATE(4630)] = 210659, - [SMALL_STATE(4631)] = 210680, - [SMALL_STATE(4632)] = 210701, - [SMALL_STATE(4633)] = 210722, - [SMALL_STATE(4634)] = 210743, - [SMALL_STATE(4635)] = 210764, - [SMALL_STATE(4636)] = 210785, - [SMALL_STATE(4637)] = 210806, - [SMALL_STATE(4638)] = 210827, - [SMALL_STATE(4639)] = 210848, - [SMALL_STATE(4640)] = 210869, - [SMALL_STATE(4641)] = 210890, - [SMALL_STATE(4642)] = 210911, - [SMALL_STATE(4643)] = 210932, - [SMALL_STATE(4644)] = 210953, - [SMALL_STATE(4645)] = 210974, - [SMALL_STATE(4646)] = 210995, - [SMALL_STATE(4647)] = 211016, - [SMALL_STATE(4648)] = 211037, - [SMALL_STATE(4649)] = 211058, - [SMALL_STATE(4650)] = 211079, - [SMALL_STATE(4651)] = 211100, - [SMALL_STATE(4652)] = 211121, - [SMALL_STATE(4653)] = 211140, - [SMALL_STATE(4654)] = 211161, - [SMALL_STATE(4655)] = 211182, - [SMALL_STATE(4656)] = 211203, - [SMALL_STATE(4657)] = 211224, - [SMALL_STATE(4658)] = 211245, - [SMALL_STATE(4659)] = 211266, - [SMALL_STATE(4660)] = 211287, - [SMALL_STATE(4661)] = 211308, - [SMALL_STATE(4662)] = 211329, - [SMALL_STATE(4663)] = 211350, - [SMALL_STATE(4664)] = 211371, - [SMALL_STATE(4665)] = 211392, - [SMALL_STATE(4666)] = 211413, - [SMALL_STATE(4667)] = 211434, - [SMALL_STATE(4668)] = 211453, - [SMALL_STATE(4669)] = 211474, - [SMALL_STATE(4670)] = 211495, - [SMALL_STATE(4671)] = 211516, - [SMALL_STATE(4672)] = 211537, - [SMALL_STATE(4673)] = 211558, - [SMALL_STATE(4674)] = 211579, - [SMALL_STATE(4675)] = 211600, - [SMALL_STATE(4676)] = 211621, - [SMALL_STATE(4677)] = 211642, - [SMALL_STATE(4678)] = 211663, - [SMALL_STATE(4679)] = 211684, - [SMALL_STATE(4680)] = 211705, - [SMALL_STATE(4681)] = 211726, - [SMALL_STATE(4682)] = 211747, - [SMALL_STATE(4683)] = 211768, - [SMALL_STATE(4684)] = 211789, - [SMALL_STATE(4685)] = 211810, - [SMALL_STATE(4686)] = 211831, - [SMALL_STATE(4687)] = 211852, - [SMALL_STATE(4688)] = 211873, - [SMALL_STATE(4689)] = 211894, - [SMALL_STATE(4690)] = 211915, - [SMALL_STATE(4691)] = 211936, - [SMALL_STATE(4692)] = 211957, - [SMALL_STATE(4693)] = 211978, - [SMALL_STATE(4694)] = 211999, - [SMALL_STATE(4695)] = 212020, - [SMALL_STATE(4696)] = 212041, - [SMALL_STATE(4697)] = 212062, - [SMALL_STATE(4698)] = 212083, - [SMALL_STATE(4699)] = 212104, - [SMALL_STATE(4700)] = 212125, - [SMALL_STATE(4701)] = 212146, - [SMALL_STATE(4702)] = 212167, - [SMALL_STATE(4703)] = 212188, - [SMALL_STATE(4704)] = 212209, - [SMALL_STATE(4705)] = 212230, - [SMALL_STATE(4706)] = 212251, - [SMALL_STATE(4707)] = 212272, - [SMALL_STATE(4708)] = 212293, - [SMALL_STATE(4709)] = 212314, - [SMALL_STATE(4710)] = 212335, - [SMALL_STATE(4711)] = 212356, - [SMALL_STATE(4712)] = 212377, - [SMALL_STATE(4713)] = 212398, - [SMALL_STATE(4714)] = 212419, - [SMALL_STATE(4715)] = 212440, - [SMALL_STATE(4716)] = 212461, - [SMALL_STATE(4717)] = 212482, - [SMALL_STATE(4718)] = 212503, - [SMALL_STATE(4719)] = 212524, - [SMALL_STATE(4720)] = 212545, - [SMALL_STATE(4721)] = 212566, - [SMALL_STATE(4722)] = 212587, - [SMALL_STATE(4723)] = 212608, - [SMALL_STATE(4724)] = 212629, - [SMALL_STATE(4725)] = 212650, - [SMALL_STATE(4726)] = 212671, - [SMALL_STATE(4727)] = 212692, - [SMALL_STATE(4728)] = 212713, - [SMALL_STATE(4729)] = 212734, - [SMALL_STATE(4730)] = 212753, - [SMALL_STATE(4731)] = 212774, - [SMALL_STATE(4732)] = 212793, - [SMALL_STATE(4733)] = 212814, - [SMALL_STATE(4734)] = 212835, - [SMALL_STATE(4735)] = 212856, - [SMALL_STATE(4736)] = 212877, - [SMALL_STATE(4737)] = 212898, - [SMALL_STATE(4738)] = 212919, - [SMALL_STATE(4739)] = 212940, - [SMALL_STATE(4740)] = 212961, - [SMALL_STATE(4741)] = 212982, - [SMALL_STATE(4742)] = 213003, - [SMALL_STATE(4743)] = 213024, - [SMALL_STATE(4744)] = 213045, - [SMALL_STATE(4745)] = 213066, - [SMALL_STATE(4746)] = 213083, - [SMALL_STATE(4747)] = 213104, - [SMALL_STATE(4748)] = 213125, - [SMALL_STATE(4749)] = 213146, - [SMALL_STATE(4750)] = 213167, - [SMALL_STATE(4751)] = 213188, - [SMALL_STATE(4752)] = 213209, - [SMALL_STATE(4753)] = 213230, - [SMALL_STATE(4754)] = 213251, - [SMALL_STATE(4755)] = 213272, - [SMALL_STATE(4756)] = 213293, - [SMALL_STATE(4757)] = 213314, - [SMALL_STATE(4758)] = 213335, - [SMALL_STATE(4759)] = 213356, - [SMALL_STATE(4760)] = 213377, - [SMALL_STATE(4761)] = 213398, - [SMALL_STATE(4762)] = 213419, - [SMALL_STATE(4763)] = 213440, - [SMALL_STATE(4764)] = 213461, - [SMALL_STATE(4765)] = 213482, - [SMALL_STATE(4766)] = 213503, - [SMALL_STATE(4767)] = 213524, - [SMALL_STATE(4768)] = 213545, - [SMALL_STATE(4769)] = 213566, - [SMALL_STATE(4770)] = 213587, - [SMALL_STATE(4771)] = 213608, - [SMALL_STATE(4772)] = 213629, - [SMALL_STATE(4773)] = 213650, - [SMALL_STATE(4774)] = 213671, - [SMALL_STATE(4775)] = 213692, - [SMALL_STATE(4776)] = 213713, - [SMALL_STATE(4777)] = 213734, - [SMALL_STATE(4778)] = 213755, - [SMALL_STATE(4779)] = 213776, - [SMALL_STATE(4780)] = 213797, - [SMALL_STATE(4781)] = 213818, - [SMALL_STATE(4782)] = 213839, - [SMALL_STATE(4783)] = 213860, - [SMALL_STATE(4784)] = 213881, - [SMALL_STATE(4785)] = 213902, - [SMALL_STATE(4786)] = 213923, - [SMALL_STATE(4787)] = 213944, - [SMALL_STATE(4788)] = 213965, - [SMALL_STATE(4789)] = 213986, - [SMALL_STATE(4790)] = 214007, - [SMALL_STATE(4791)] = 214028, - [SMALL_STATE(4792)] = 214049, - [SMALL_STATE(4793)] = 214070, - [SMALL_STATE(4794)] = 214091, - [SMALL_STATE(4795)] = 214112, - [SMALL_STATE(4796)] = 214133, - [SMALL_STATE(4797)] = 214154, - [SMALL_STATE(4798)] = 214175, - [SMALL_STATE(4799)] = 214194, - [SMALL_STATE(4800)] = 214215, - [SMALL_STATE(4801)] = 214236, - [SMALL_STATE(4802)] = 214257, - [SMALL_STATE(4803)] = 214278, - [SMALL_STATE(4804)] = 214299, - [SMALL_STATE(4805)] = 214320, - [SMALL_STATE(4806)] = 214341, - [SMALL_STATE(4807)] = 214362, - [SMALL_STATE(4808)] = 214383, - [SMALL_STATE(4809)] = 214404, - [SMALL_STATE(4810)] = 214425, - [SMALL_STATE(4811)] = 214446, - [SMALL_STATE(4812)] = 214467, - [SMALL_STATE(4813)] = 214488, - [SMALL_STATE(4814)] = 214509, - [SMALL_STATE(4815)] = 214530, - [SMALL_STATE(4816)] = 214551, - [SMALL_STATE(4817)] = 214572, - [SMALL_STATE(4818)] = 214593, - [SMALL_STATE(4819)] = 214614, - [SMALL_STATE(4820)] = 214635, - [SMALL_STATE(4821)] = 214656, - [SMALL_STATE(4822)] = 214677, - [SMALL_STATE(4823)] = 214698, - [SMALL_STATE(4824)] = 214719, - [SMALL_STATE(4825)] = 214740, - [SMALL_STATE(4826)] = 214761, - [SMALL_STATE(4827)] = 214782, - [SMALL_STATE(4828)] = 214803, - [SMALL_STATE(4829)] = 214824, - [SMALL_STATE(4830)] = 214845, - [SMALL_STATE(4831)] = 214863, - [SMALL_STATE(4832)] = 214877, - [SMALL_STATE(4833)] = 214895, - [SMALL_STATE(4834)] = 214913, - [SMALL_STATE(4835)] = 214927, - [SMALL_STATE(4836)] = 214945, - [SMALL_STATE(4837)] = 214963, - [SMALL_STATE(4838)] = 214979, - [SMALL_STATE(4839)] = 214997, - [SMALL_STATE(4840)] = 215015, - [SMALL_STATE(4841)] = 215029, - [SMALL_STATE(4842)] = 215047, - [SMALL_STATE(4843)] = 215065, - [SMALL_STATE(4844)] = 215083, - [SMALL_STATE(4845)] = 215099, - [SMALL_STATE(4846)] = 215114, - [SMALL_STATE(4847)] = 215129, - [SMALL_STATE(4848)] = 215144, - [SMALL_STATE(4849)] = 215159, - [SMALL_STATE(4850)] = 215174, - [SMALL_STATE(4851)] = 215189, - [SMALL_STATE(4852)] = 215204, - [SMALL_STATE(4853)] = 215217, - [SMALL_STATE(4854)] = 215232, - [SMALL_STATE(4855)] = 215247, - [SMALL_STATE(4856)] = 215262, - [SMALL_STATE(4857)] = 215277, - [SMALL_STATE(4858)] = 215292, - [SMALL_STATE(4859)] = 215307, - [SMALL_STATE(4860)] = 215322, - [SMALL_STATE(4861)] = 215337, - [SMALL_STATE(4862)] = 215352, - [SMALL_STATE(4863)] = 215367, - [SMALL_STATE(4864)] = 215382, - [SMALL_STATE(4865)] = 215397, - [SMALL_STATE(4866)] = 215412, - [SMALL_STATE(4867)] = 215427, - [SMALL_STATE(4868)] = 215442, - [SMALL_STATE(4869)] = 215455, - [SMALL_STATE(4870)] = 215470, - [SMALL_STATE(4871)] = 215485, - [SMALL_STATE(4872)] = 215500, - [SMALL_STATE(4873)] = 215513, - [SMALL_STATE(4874)] = 215528, - [SMALL_STATE(4875)] = 215543, - [SMALL_STATE(4876)] = 215556, - [SMALL_STATE(4877)] = 215571, - [SMALL_STATE(4878)] = 215586, - [SMALL_STATE(4879)] = 215601, - [SMALL_STATE(4880)] = 215616, - [SMALL_STATE(4881)] = 215631, - [SMALL_STATE(4882)] = 215646, - [SMALL_STATE(4883)] = 215661, - [SMALL_STATE(4884)] = 215676, - [SMALL_STATE(4885)] = 215691, - [SMALL_STATE(4886)] = 215704, - [SMALL_STATE(4887)] = 215719, - [SMALL_STATE(4888)] = 215734, - [SMALL_STATE(4889)] = 215747, - [SMALL_STATE(4890)] = 215762, - [SMALL_STATE(4891)] = 215777, - [SMALL_STATE(4892)] = 215792, - [SMALL_STATE(4893)] = 215807, - [SMALL_STATE(4894)] = 215822, - [SMALL_STATE(4895)] = 215837, - [SMALL_STATE(4896)] = 215852, - [SMALL_STATE(4897)] = 215865, - [SMALL_STATE(4898)] = 215880, - [SMALL_STATE(4899)] = 215895, - [SMALL_STATE(4900)] = 215910, - [SMALL_STATE(4901)] = 215925, - [SMALL_STATE(4902)] = 215940, - [SMALL_STATE(4903)] = 215955, - [SMALL_STATE(4904)] = 215970, - [SMALL_STATE(4905)] = 215985, - [SMALL_STATE(4906)] = 216000, - [SMALL_STATE(4907)] = 216015, - [SMALL_STATE(4908)] = 216030, - [SMALL_STATE(4909)] = 216045, - [SMALL_STATE(4910)] = 216060, - [SMALL_STATE(4911)] = 216075, - [SMALL_STATE(4912)] = 216090, - [SMALL_STATE(4913)] = 216105, - [SMALL_STATE(4914)] = 216120, - [SMALL_STATE(4915)] = 216135, - [SMALL_STATE(4916)] = 216150, - [SMALL_STATE(4917)] = 216165, - [SMALL_STATE(4918)] = 216180, - [SMALL_STATE(4919)] = 216195, - [SMALL_STATE(4920)] = 216210, - [SMALL_STATE(4921)] = 216225, - [SMALL_STATE(4922)] = 216240, - [SMALL_STATE(4923)] = 216255, - [SMALL_STATE(4924)] = 216270, - [SMALL_STATE(4925)] = 216285, - [SMALL_STATE(4926)] = 216300, - [SMALL_STATE(4927)] = 216315, - [SMALL_STATE(4928)] = 216330, - [SMALL_STATE(4929)] = 216345, - [SMALL_STATE(4930)] = 216360, - [SMALL_STATE(4931)] = 216375, - [SMALL_STATE(4932)] = 216390, - [SMALL_STATE(4933)] = 216405, - [SMALL_STATE(4934)] = 216417, - [SMALL_STATE(4935)] = 216429, - [SMALL_STATE(4936)] = 216441, - [SMALL_STATE(4937)] = 216453, - [SMALL_STATE(4938)] = 216465, - [SMALL_STATE(4939)] = 216477, - [SMALL_STATE(4940)] = 216489, - [SMALL_STATE(4941)] = 216501, - [SMALL_STATE(4942)] = 216513, - [SMALL_STATE(4943)] = 216525, - [SMALL_STATE(4944)] = 216537, - [SMALL_STATE(4945)] = 216549, - [SMALL_STATE(4946)] = 216561, - [SMALL_STATE(4947)] = 216573, - [SMALL_STATE(4948)] = 216585, - [SMALL_STATE(4949)] = 216597, - [SMALL_STATE(4950)] = 216609, - [SMALL_STATE(4951)] = 216621, - [SMALL_STATE(4952)] = 216633, - [SMALL_STATE(4953)] = 216645, - [SMALL_STATE(4954)] = 216657, - [SMALL_STATE(4955)] = 216669, - [SMALL_STATE(4956)] = 216681, - [SMALL_STATE(4957)] = 216693, - [SMALL_STATE(4958)] = 216705, - [SMALL_STATE(4959)] = 216717, - [SMALL_STATE(4960)] = 216729, - [SMALL_STATE(4961)] = 216741, - [SMALL_STATE(4962)] = 216753, - [SMALL_STATE(4963)] = 216765, - [SMALL_STATE(4964)] = 216777, - [SMALL_STATE(4965)] = 216789, - [SMALL_STATE(4966)] = 216801, - [SMALL_STATE(4967)] = 216813, - [SMALL_STATE(4968)] = 216825, - [SMALL_STATE(4969)] = 216837, - [SMALL_STATE(4970)] = 216849, - [SMALL_STATE(4971)] = 216861, - [SMALL_STATE(4972)] = 216873, - [SMALL_STATE(4973)] = 216885, - [SMALL_STATE(4974)] = 216897, - [SMALL_STATE(4975)] = 216909, - [SMALL_STATE(4976)] = 216921, - [SMALL_STATE(4977)] = 216933, - [SMALL_STATE(4978)] = 216945, - [SMALL_STATE(4979)] = 216957, - [SMALL_STATE(4980)] = 216969, - [SMALL_STATE(4981)] = 216981, - [SMALL_STATE(4982)] = 216993, - [SMALL_STATE(4983)] = 217005, - [SMALL_STATE(4984)] = 217017, - [SMALL_STATE(4985)] = 217029, - [SMALL_STATE(4986)] = 217041, - [SMALL_STATE(4987)] = 217053, - [SMALL_STATE(4988)] = 217065, - [SMALL_STATE(4989)] = 217077, - [SMALL_STATE(4990)] = 217089, - [SMALL_STATE(4991)] = 217101, - [SMALL_STATE(4992)] = 217113, - [SMALL_STATE(4993)] = 217125, - [SMALL_STATE(4994)] = 217137, - [SMALL_STATE(4995)] = 217149, - [SMALL_STATE(4996)] = 217161, - [SMALL_STATE(4997)] = 217173, - [SMALL_STATE(4998)] = 217185, - [SMALL_STATE(4999)] = 217197, - [SMALL_STATE(5000)] = 217209, - [SMALL_STATE(5001)] = 217221, - [SMALL_STATE(5002)] = 217233, - [SMALL_STATE(5003)] = 217245, - [SMALL_STATE(5004)] = 217257, - [SMALL_STATE(5005)] = 217269, - [SMALL_STATE(5006)] = 217281, - [SMALL_STATE(5007)] = 217293, - [SMALL_STATE(5008)] = 217305, - [SMALL_STATE(5009)] = 217317, - [SMALL_STATE(5010)] = 217329, - [SMALL_STATE(5011)] = 217341, - [SMALL_STATE(5012)] = 217353, - [SMALL_STATE(5013)] = 217365, - [SMALL_STATE(5014)] = 217377, - [SMALL_STATE(5015)] = 217389, - [SMALL_STATE(5016)] = 217401, - [SMALL_STATE(5017)] = 217413, - [SMALL_STATE(5018)] = 217425, - [SMALL_STATE(5019)] = 217437, - [SMALL_STATE(5020)] = 217449, - [SMALL_STATE(5021)] = 217461, - [SMALL_STATE(5022)] = 217473, - [SMALL_STATE(5023)] = 217485, - [SMALL_STATE(5024)] = 217497, - [SMALL_STATE(5025)] = 217509, - [SMALL_STATE(5026)] = 217521, - [SMALL_STATE(5027)] = 217533, - [SMALL_STATE(5028)] = 217545, - [SMALL_STATE(5029)] = 217557, - [SMALL_STATE(5030)] = 217569, - [SMALL_STATE(5031)] = 217581, - [SMALL_STATE(5032)] = 217593, - [SMALL_STATE(5033)] = 217605, - [SMALL_STATE(5034)] = 217617, - [SMALL_STATE(5035)] = 217629, - [SMALL_STATE(5036)] = 217641, - [SMALL_STATE(5037)] = 217653, - [SMALL_STATE(5038)] = 217665, - [SMALL_STATE(5039)] = 217677, - [SMALL_STATE(5040)] = 217689, - [SMALL_STATE(5041)] = 217701, - [SMALL_STATE(5042)] = 217713, - [SMALL_STATE(5043)] = 217725, - [SMALL_STATE(5044)] = 217737, - [SMALL_STATE(5045)] = 217749, - [SMALL_STATE(5046)] = 217761, - [SMALL_STATE(5047)] = 217773, - [SMALL_STATE(5048)] = 217785, - [SMALL_STATE(5049)] = 217797, - [SMALL_STATE(5050)] = 217809, - [SMALL_STATE(5051)] = 217821, - [SMALL_STATE(5052)] = 217833, - [SMALL_STATE(5053)] = 217845, - [SMALL_STATE(5054)] = 217857, - [SMALL_STATE(5055)] = 217869, - [SMALL_STATE(5056)] = 217881, - [SMALL_STATE(5057)] = 217893, - [SMALL_STATE(5058)] = 217905, - [SMALL_STATE(5059)] = 217917, - [SMALL_STATE(5060)] = 217929, - [SMALL_STATE(5061)] = 217941, + [SMALL_STATE(1091)] = 0, + [SMALL_STATE(1092)] = 75, + [SMALL_STATE(1093)] = 148, + [SMALL_STATE(1094)] = 277, + [SMALL_STATE(1095)] = 350, + [SMALL_STATE(1096)] = 425, + [SMALL_STATE(1097)] = 500, + [SMALL_STATE(1098)] = 575, + [SMALL_STATE(1099)] = 654, + [SMALL_STATE(1100)] = 727, + [SMALL_STATE(1101)] = 856, + [SMALL_STATE(1102)] = 985, + [SMALL_STATE(1103)] = 1058, + [SMALL_STATE(1104)] = 1131, + [SMALL_STATE(1105)] = 1204, + [SMALL_STATE(1106)] = 1277, + [SMALL_STATE(1107)] = 1350, + [SMALL_STATE(1108)] = 1423, + [SMALL_STATE(1109)] = 1496, + [SMALL_STATE(1110)] = 1575, + [SMALL_STATE(1111)] = 1648, + [SMALL_STATE(1112)] = 1721, + [SMALL_STATE(1113)] = 1794, + [SMALL_STATE(1114)] = 1873, + [SMALL_STATE(1115)] = 1946, + [SMALL_STATE(1116)] = 2023, + [SMALL_STATE(1117)] = 2098, + [SMALL_STATE(1118)] = 2227, + [SMALL_STATE(1119)] = 2306, + [SMALL_STATE(1120)] = 2383, + [SMALL_STATE(1121)] = 2462, + [SMALL_STATE(1122)] = 2539, + [SMALL_STATE(1123)] = 2612, + [SMALL_STATE(1124)] = 2687, + [SMALL_STATE(1125)] = 2760, + [SMALL_STATE(1126)] = 2839, + [SMALL_STATE(1127)] = 2918, + [SMALL_STATE(1128)] = 3047, + [SMALL_STATE(1129)] = 3122, + [SMALL_STATE(1130)] = 3197, + [SMALL_STATE(1131)] = 3326, + [SMALL_STATE(1132)] = 3399, + [SMALL_STATE(1133)] = 3472, + [SMALL_STATE(1134)] = 3545, + [SMALL_STATE(1135)] = 3674, + [SMALL_STATE(1136)] = 3803, + [SMALL_STATE(1137)] = 3878, + [SMALL_STATE(1138)] = 3950, + [SMALL_STATE(1139)] = 4022, + [SMALL_STATE(1140)] = 4094, + [SMALL_STATE(1141)] = 4166, + [SMALL_STATE(1142)] = 4238, + [SMALL_STATE(1143)] = 4310, + [SMALL_STATE(1144)] = 4382, + [SMALL_STATE(1145)] = 4454, + [SMALL_STATE(1146)] = 4526, + [SMALL_STATE(1147)] = 4598, + [SMALL_STATE(1148)] = 4670, + [SMALL_STATE(1149)] = 4742, + [SMALL_STATE(1150)] = 4816, + [SMALL_STATE(1151)] = 4888, + [SMALL_STATE(1152)] = 4960, + [SMALL_STATE(1153)] = 5032, + [SMALL_STATE(1154)] = 5108, + [SMALL_STATE(1155)] = 5180, + [SMALL_STATE(1156)] = 5252, + [SMALL_STATE(1157)] = 5328, + [SMALL_STATE(1158)] = 5400, + [SMALL_STATE(1159)] = 5472, + [SMALL_STATE(1160)] = 5544, + [SMALL_STATE(1161)] = 5616, + [SMALL_STATE(1162)] = 5688, + [SMALL_STATE(1163)] = 5760, + [SMALL_STATE(1164)] = 5832, + [SMALL_STATE(1165)] = 5904, + [SMALL_STATE(1166)] = 5976, + [SMALL_STATE(1167)] = 6048, + [SMALL_STATE(1168)] = 6120, + [SMALL_STATE(1169)] = 6192, + [SMALL_STATE(1170)] = 6264, + [SMALL_STATE(1171)] = 6336, + [SMALL_STATE(1172)] = 6408, + [SMALL_STATE(1173)] = 6480, + [SMALL_STATE(1174)] = 6552, + [SMALL_STATE(1175)] = 6624, + [SMALL_STATE(1176)] = 6696, + [SMALL_STATE(1177)] = 6768, + [SMALL_STATE(1178)] = 6840, + [SMALL_STATE(1179)] = 6912, + [SMALL_STATE(1180)] = 6984, + [SMALL_STATE(1181)] = 7056, + [SMALL_STATE(1182)] = 7128, + [SMALL_STATE(1183)] = 7200, + [SMALL_STATE(1184)] = 7272, + [SMALL_STATE(1185)] = 7344, + [SMALL_STATE(1186)] = 7416, + [SMALL_STATE(1187)] = 7488, + [SMALL_STATE(1188)] = 7560, + [SMALL_STATE(1189)] = 7632, + [SMALL_STATE(1190)] = 7704, + [SMALL_STATE(1191)] = 7776, + [SMALL_STATE(1192)] = 7848, + [SMALL_STATE(1193)] = 7922, + [SMALL_STATE(1194)] = 7994, + [SMALL_STATE(1195)] = 8066, + [SMALL_STATE(1196)] = 8138, + [SMALL_STATE(1197)] = 8214, + [SMALL_STATE(1198)] = 8288, + [SMALL_STATE(1199)] = 8360, + [SMALL_STATE(1200)] = 8432, + [SMALL_STATE(1201)] = 8504, + [SMALL_STATE(1202)] = 8576, + [SMALL_STATE(1203)] = 8648, + [SMALL_STATE(1204)] = 8720, + [SMALL_STATE(1205)] = 8792, + [SMALL_STATE(1206)] = 8864, + [SMALL_STATE(1207)] = 8936, + [SMALL_STATE(1208)] = 9010, + [SMALL_STATE(1209)] = 9082, + [SMALL_STATE(1210)] = 9156, + [SMALL_STATE(1211)] = 9228, + [SMALL_STATE(1212)] = 9300, + [SMALL_STATE(1213)] = 9372, + [SMALL_STATE(1214)] = 9444, + [SMALL_STATE(1215)] = 9516, + [SMALL_STATE(1216)] = 9588, + [SMALL_STATE(1217)] = 9660, + [SMALL_STATE(1218)] = 9732, + [SMALL_STATE(1219)] = 9804, + [SMALL_STATE(1220)] = 9876, + [SMALL_STATE(1221)] = 9948, + [SMALL_STATE(1222)] = 10024, + [SMALL_STATE(1223)] = 10096, + [SMALL_STATE(1224)] = 10168, + [SMALL_STATE(1225)] = 10240, + [SMALL_STATE(1226)] = 10312, + [SMALL_STATE(1227)] = 10386, + [SMALL_STATE(1228)] = 10458, + [SMALL_STATE(1229)] = 10530, + [SMALL_STATE(1230)] = 10606, + [SMALL_STATE(1231)] = 10678, + [SMALL_STATE(1232)] = 10750, + [SMALL_STATE(1233)] = 10822, + [SMALL_STATE(1234)] = 10894, + [SMALL_STATE(1235)] = 10970, + [SMALL_STATE(1236)] = 11042, + [SMALL_STATE(1237)] = 11114, + [SMALL_STATE(1238)] = 11188, + [SMALL_STATE(1239)] = 11262, + [SMALL_STATE(1240)] = 11334, + [SMALL_STATE(1241)] = 11406, + [SMALL_STATE(1242)] = 11478, + [SMALL_STATE(1243)] = 11550, + [SMALL_STATE(1244)] = 11622, + [SMALL_STATE(1245)] = 11694, + [SMALL_STATE(1246)] = 11766, + [SMALL_STATE(1247)] = 11838, + [SMALL_STATE(1248)] = 11912, + [SMALL_STATE(1249)] = 11984, + [SMALL_STATE(1250)] = 12056, + [SMALL_STATE(1251)] = 12128, + [SMALL_STATE(1252)] = 12200, + [SMALL_STATE(1253)] = 12274, + [SMALL_STATE(1254)] = 12346, + [SMALL_STATE(1255)] = 12418, + [SMALL_STATE(1256)] = 12492, + [SMALL_STATE(1257)] = 12610, + [SMALL_STATE(1258)] = 12682, + [SMALL_STATE(1259)] = 12754, + [SMALL_STATE(1260)] = 12826, + [SMALL_STATE(1261)] = 12898, + [SMALL_STATE(1262)] = 12970, + [SMALL_STATE(1263)] = 13042, + [SMALL_STATE(1264)] = 13114, + [SMALL_STATE(1265)] = 13186, + [SMALL_STATE(1266)] = 13258, + [SMALL_STATE(1267)] = 13330, + [SMALL_STATE(1268)] = 13402, + [SMALL_STATE(1269)] = 13474, + [SMALL_STATE(1270)] = 13546, + [SMALL_STATE(1271)] = 13618, + [SMALL_STATE(1272)] = 13690, + [SMALL_STATE(1273)] = 13762, + [SMALL_STATE(1274)] = 13840, + [SMALL_STATE(1275)] = 13914, + [SMALL_STATE(1276)] = 13986, + [SMALL_STATE(1277)] = 14060, + [SMALL_STATE(1278)] = 14134, + [SMALL_STATE(1279)] = 14206, + [SMALL_STATE(1280)] = 14278, + [SMALL_STATE(1281)] = 14350, + [SMALL_STATE(1282)] = 14428, + [SMALL_STATE(1283)] = 14500, + [SMALL_STATE(1284)] = 14572, + [SMALL_STATE(1285)] = 14644, + [SMALL_STATE(1286)] = 14716, + [SMALL_STATE(1287)] = 14788, + [SMALL_STATE(1288)] = 14860, + [SMALL_STATE(1289)] = 14934, + [SMALL_STATE(1290)] = 15006, + [SMALL_STATE(1291)] = 15084, + [SMALL_STATE(1292)] = 15160, + [SMALL_STATE(1293)] = 15238, + [SMALL_STATE(1294)] = 15310, + [SMALL_STATE(1295)] = 15388, + [SMALL_STATE(1296)] = 15460, + [SMALL_STATE(1297)] = 15534, + [SMALL_STATE(1298)] = 15606, + [SMALL_STATE(1299)] = 15680, + [SMALL_STATE(1300)] = 15752, + [SMALL_STATE(1301)] = 15824, + [SMALL_STATE(1302)] = 15896, + [SMALL_STATE(1303)] = 15970, + [SMALL_STATE(1304)] = 16044, + [SMALL_STATE(1305)] = 16116, + [SMALL_STATE(1306)] = 16190, + [SMALL_STATE(1307)] = 16262, + [SMALL_STATE(1308)] = 16336, + [SMALL_STATE(1309)] = 16410, + [SMALL_STATE(1310)] = 16484, + [SMALL_STATE(1311)] = 16556, + [SMALL_STATE(1312)] = 16628, + [SMALL_STATE(1313)] = 16702, + [SMALL_STATE(1314)] = 16778, + [SMALL_STATE(1315)] = 16852, + [SMALL_STATE(1316)] = 16926, + [SMALL_STATE(1317)] = 16998, + [SMALL_STATE(1318)] = 17072, + [SMALL_STATE(1319)] = 17144, + [SMALL_STATE(1320)] = 17216, + [SMALL_STATE(1321)] = 17288, + [SMALL_STATE(1322)] = 17360, + [SMALL_STATE(1323)] = 17433, + [SMALL_STATE(1324)] = 17504, + [SMALL_STATE(1325)] = 17575, + [SMALL_STATE(1326)] = 17646, + [SMALL_STATE(1327)] = 17717, + [SMALL_STATE(1328)] = 17788, + [SMALL_STATE(1329)] = 17863, + [SMALL_STATE(1330)] = 17934, + [SMALL_STATE(1331)] = 18005, + [SMALL_STATE(1332)] = 18112, + [SMALL_STATE(1333)] = 18187, + [SMALL_STATE(1334)] = 18262, + [SMALL_STATE(1335)] = 18337, + [SMALL_STATE(1336)] = 18412, + [SMALL_STATE(1337)] = 18505, + [SMALL_STATE(1338)] = 18576, + [SMALL_STATE(1339)] = 18663, + [SMALL_STATE(1340)] = 18734, + [SMALL_STATE(1341)] = 18805, + [SMALL_STATE(1342)] = 18916, + [SMALL_STATE(1343)] = 18987, + [SMALL_STATE(1344)] = 19098, + [SMALL_STATE(1345)] = 19177, + [SMALL_STATE(1346)] = 19250, + [SMALL_STATE(1347)] = 19321, + [SMALL_STATE(1348)] = 19392, + [SMALL_STATE(1349)] = 19463, + [SMALL_STATE(1350)] = 19534, + [SMALL_STATE(1351)] = 19605, + [SMALL_STATE(1352)] = 19676, + [SMALL_STATE(1353)] = 19747, + [SMALL_STATE(1354)] = 19818, + [SMALL_STATE(1355)] = 19889, + [SMALL_STATE(1356)] = 19960, + [SMALL_STATE(1357)] = 20031, + [SMALL_STATE(1358)] = 20102, + [SMALL_STATE(1359)] = 20173, + [SMALL_STATE(1360)] = 20244, + [SMALL_STATE(1361)] = 20315, + [SMALL_STATE(1362)] = 20386, + [SMALL_STATE(1363)] = 20457, + [SMALL_STATE(1364)] = 20528, + [SMALL_STATE(1365)] = 20599, + [SMALL_STATE(1366)] = 20670, + [SMALL_STATE(1367)] = 20741, + [SMALL_STATE(1368)] = 20812, + [SMALL_STATE(1369)] = 20883, + [SMALL_STATE(1370)] = 20954, + [SMALL_STATE(1371)] = 21025, + [SMALL_STATE(1372)] = 21096, + [SMALL_STATE(1373)] = 21167, + [SMALL_STATE(1374)] = 21238, + [SMALL_STATE(1375)] = 21309, + [SMALL_STATE(1376)] = 21380, + [SMALL_STATE(1377)] = 21453, + [SMALL_STATE(1378)] = 21524, + [SMALL_STATE(1379)] = 21595, + [SMALL_STATE(1380)] = 21666, + [SMALL_STATE(1381)] = 21737, + [SMALL_STATE(1382)] = 21808, + [SMALL_STATE(1383)] = 21879, + [SMALL_STATE(1384)] = 21950, + [SMALL_STATE(1385)] = 22021, + [SMALL_STATE(1386)] = 22092, + [SMALL_STATE(1387)] = 22163, + [SMALL_STATE(1388)] = 22234, + [SMALL_STATE(1389)] = 22305, + [SMALL_STATE(1390)] = 22376, + [SMALL_STATE(1391)] = 22447, + [SMALL_STATE(1392)] = 22518, + [SMALL_STATE(1393)] = 22589, + [SMALL_STATE(1394)] = 22660, + [SMALL_STATE(1395)] = 22731, + [SMALL_STATE(1396)] = 22802, + [SMALL_STATE(1397)] = 22873, + [SMALL_STATE(1398)] = 22944, + [SMALL_STATE(1399)] = 23015, + [SMALL_STATE(1400)] = 23086, + [SMALL_STATE(1401)] = 23159, + [SMALL_STATE(1402)] = 23230, + [SMALL_STATE(1403)] = 23301, + [SMALL_STATE(1404)] = 23372, + [SMALL_STATE(1405)] = 23481, + [SMALL_STATE(1406)] = 23552, + [SMALL_STATE(1407)] = 23623, + [SMALL_STATE(1408)] = 23694, + [SMALL_STATE(1409)] = 23765, + [SMALL_STATE(1410)] = 23836, + [SMALL_STATE(1411)] = 23907, + [SMALL_STATE(1412)] = 23978, + [SMALL_STATE(1413)] = 24049, + [SMALL_STATE(1414)] = 24120, + [SMALL_STATE(1415)] = 24191, + [SMALL_STATE(1416)] = 24262, + [SMALL_STATE(1417)] = 24333, + [SMALL_STATE(1418)] = 24404, + [SMALL_STATE(1419)] = 24509, + [SMALL_STATE(1420)] = 24612, + [SMALL_STATE(1421)] = 24683, + [SMALL_STATE(1422)] = 24782, + [SMALL_STATE(1423)] = 24853, + [SMALL_STATE(1424)] = 24950, + [SMALL_STATE(1425)] = 25063, + [SMALL_STATE(1426)] = 25176, + [SMALL_STATE(1427)] = 25251, + [SMALL_STATE(1428)] = 25346, + [SMALL_STATE(1429)] = 25459, + [SMALL_STATE(1430)] = 25530, + [SMALL_STATE(1431)] = 25601, + [SMALL_STATE(1432)] = 25692, + [SMALL_STATE(1433)] = 25763, + [SMALL_STATE(1434)] = 25848, + [SMALL_STATE(1435)] = 25919, + [SMALL_STATE(1436)] = 25990, + [SMALL_STATE(1437)] = 26061, + [SMALL_STATE(1438)] = 26132, + [SMALL_STATE(1439)] = 26217, + [SMALL_STATE(1440)] = 26288, + [SMALL_STATE(1441)] = 26359, + [SMALL_STATE(1442)] = 26430, + [SMALL_STATE(1443)] = 26501, + [SMALL_STATE(1444)] = 26572, + [SMALL_STATE(1445)] = 26643, + [SMALL_STATE(1446)] = 26714, + [SMALL_STATE(1447)] = 26785, + [SMALL_STATE(1448)] = 26856, + [SMALL_STATE(1449)] = 26927, + [SMALL_STATE(1450)] = 26998, + [SMALL_STATE(1451)] = 27069, + [SMALL_STATE(1452)] = 27140, + [SMALL_STATE(1453)] = 27211, + [SMALL_STATE(1454)] = 27282, + [SMALL_STATE(1455)] = 27365, + [SMALL_STATE(1456)] = 27436, + [SMALL_STATE(1457)] = 27507, + [SMALL_STATE(1458)] = 27580, + [SMALL_STATE(1459)] = 27653, + [SMALL_STATE(1460)] = 27724, + [SMALL_STATE(1461)] = 27795, + [SMALL_STATE(1462)] = 27868, + [SMALL_STATE(1463)] = 27939, + [SMALL_STATE(1464)] = 28010, + [SMALL_STATE(1465)] = 28083, + [SMALL_STATE(1466)] = 28156, + [SMALL_STATE(1467)] = 28227, + [SMALL_STATE(1468)] = 28298, + [SMALL_STATE(1469)] = 28369, + [SMALL_STATE(1470)] = 28442, + [SMALL_STATE(1471)] = 28513, + [SMALL_STATE(1472)] = 28584, + [SMALL_STATE(1473)] = 28655, + [SMALL_STATE(1474)] = 28726, + [SMALL_STATE(1475)] = 28797, + [SMALL_STATE(1476)] = 28868, + [SMALL_STATE(1477)] = 28939, + [SMALL_STATE(1478)] = 29016, + [SMALL_STATE(1479)] = 29087, + [SMALL_STATE(1480)] = 29160, + [SMALL_STATE(1481)] = 29231, + [SMALL_STATE(1482)] = 29302, + [SMALL_STATE(1483)] = 29373, + [SMALL_STATE(1484)] = 29444, + [SMALL_STATE(1485)] = 29515, + [SMALL_STATE(1486)] = 29590, + [SMALL_STATE(1487)] = 29661, + [SMALL_STATE(1488)] = 29732, + [SMALL_STATE(1489)] = 29803, + [SMALL_STATE(1490)] = 29874, + [SMALL_STATE(1491)] = 29949, + [SMALL_STATE(1492)] = 30022, + [SMALL_STATE(1493)] = 30097, + [SMALL_STATE(1494)] = 30168, + [SMALL_STATE(1495)] = 30239, + [SMALL_STATE(1496)] = 30310, + [SMALL_STATE(1497)] = 30385, + [SMALL_STATE(1498)] = 30458, + [SMALL_STATE(1499)] = 30529, + [SMALL_STATE(1500)] = 30600, + [SMALL_STATE(1501)] = 30671, + [SMALL_STATE(1502)] = 30742, + [SMALL_STATE(1503)] = 30813, + [SMALL_STATE(1504)] = 30884, + [SMALL_STATE(1505)] = 30957, + [SMALL_STATE(1506)] = 31030, + [SMALL_STATE(1507)] = 31101, + [SMALL_STATE(1508)] = 31174, + [SMALL_STATE(1509)] = 31249, + [SMALL_STATE(1510)] = 31320, + [SMALL_STATE(1511)] = 31393, + [SMALL_STATE(1512)] = 31466, + [SMALL_STATE(1513)] = 31539, + [SMALL_STATE(1514)] = 31656, + [SMALL_STATE(1515)] = 31727, + [SMALL_STATE(1516)] = 31800, + [SMALL_STATE(1517)] = 31873, + [SMALL_STATE(1518)] = 31946, + [SMALL_STATE(1519)] = 32016, + [SMALL_STATE(1520)] = 32086, + [SMALL_STATE(1521)] = 32198, + [SMALL_STATE(1522)] = 32310, + [SMALL_STATE(1523)] = 32422, + [SMALL_STATE(1524)] = 32550, + [SMALL_STATE(1525)] = 32670, + [SMALL_STATE(1526)] = 32742, + [SMALL_STATE(1527)] = 32862, + [SMALL_STATE(1528)] = 32948, + [SMALL_STATE(1529)] = 33018, + [SMALL_STATE(1530)] = 33110, + [SMALL_STATE(1531)] = 33180, + [SMALL_STATE(1532)] = 33286, + [SMALL_STATE(1533)] = 33362, + [SMALL_STATE(1534)] = 33440, + [SMALL_STATE(1535)] = 33512, + [SMALL_STATE(1536)] = 33622, + [SMALL_STATE(1537)] = 33692, + [SMALL_STATE(1538)] = 33764, + [SMALL_STATE(1539)] = 33836, + [SMALL_STATE(1540)] = 33906, + [SMALL_STATE(1541)] = 33976, + [SMALL_STATE(1542)] = 34046, + [SMALL_STATE(1543)] = 34116, + [SMALL_STATE(1544)] = 34186, + [SMALL_STATE(1545)] = 34296, + [SMALL_STATE(1546)] = 34404, + [SMALL_STATE(1547)] = 34480, + [SMALL_STATE(1548)] = 34550, + [SMALL_STATE(1549)] = 34620, + [SMALL_STATE(1550)] = 34696, + [SMALL_STATE(1551)] = 34766, + [SMALL_STATE(1552)] = 34836, + [SMALL_STATE(1553)] = 34906, + [SMALL_STATE(1554)] = 34980, + [SMALL_STATE(1555)] = 35054, + [SMALL_STATE(1556)] = 35128, + [SMALL_STATE(1557)] = 35202, + [SMALL_STATE(1558)] = 35272, + [SMALL_STATE(1559)] = 35342, + [SMALL_STATE(1560)] = 35412, + [SMALL_STATE(1561)] = 35482, + [SMALL_STATE(1562)] = 35552, + [SMALL_STATE(1563)] = 35622, + [SMALL_STATE(1564)] = 35692, + [SMALL_STATE(1565)] = 35762, + [SMALL_STATE(1566)] = 35832, + [SMALL_STATE(1567)] = 35902, + [SMALL_STATE(1568)] = 35972, + [SMALL_STATE(1569)] = 36042, + [SMALL_STATE(1570)] = 36112, + [SMALL_STATE(1571)] = 36182, + [SMALL_STATE(1572)] = 36252, + [SMALL_STATE(1573)] = 36322, + [SMALL_STATE(1574)] = 36392, + [SMALL_STATE(1575)] = 36462, + [SMALL_STATE(1576)] = 36532, + [SMALL_STATE(1577)] = 36602, + [SMALL_STATE(1578)] = 36676, + [SMALL_STATE(1579)] = 36746, + [SMALL_STATE(1580)] = 36816, + [SMALL_STATE(1581)] = 36886, + [SMALL_STATE(1582)] = 36956, + [SMALL_STATE(1583)] = 37026, + [SMALL_STATE(1584)] = 37096, + [SMALL_STATE(1585)] = 37166, + [SMALL_STATE(1586)] = 37236, + [SMALL_STATE(1587)] = 37306, + [SMALL_STATE(1588)] = 37376, + [SMALL_STATE(1589)] = 37446, + [SMALL_STATE(1590)] = 37518, + [SMALL_STATE(1591)] = 37590, + [SMALL_STATE(1592)] = 37662, + [SMALL_STATE(1593)] = 37732, + [SMALL_STATE(1594)] = 37836, + [SMALL_STATE(1595)] = 37906, + [SMALL_STATE(1596)] = 37976, + [SMALL_STATE(1597)] = 38046, + [SMALL_STATE(1598)] = 38148, + [SMALL_STATE(1599)] = 38218, + [SMALL_STATE(1600)] = 38288, + [SMALL_STATE(1601)] = 38358, + [SMALL_STATE(1602)] = 38428, + [SMALL_STATE(1603)] = 38498, + [SMALL_STATE(1604)] = 38596, + [SMALL_STATE(1605)] = 38666, + [SMALL_STATE(1606)] = 38736, + [SMALL_STATE(1607)] = 38806, + [SMALL_STATE(1608)] = 38876, + [SMALL_STATE(1609)] = 38946, + [SMALL_STATE(1610)] = 39016, + [SMALL_STATE(1611)] = 39086, + [SMALL_STATE(1612)] = 39156, + [SMALL_STATE(1613)] = 39226, + [SMALL_STATE(1614)] = 39296, + [SMALL_STATE(1615)] = 39366, + [SMALL_STATE(1616)] = 39436, + [SMALL_STATE(1617)] = 39506, + [SMALL_STATE(1618)] = 39576, + [SMALL_STATE(1619)] = 39646, + [SMALL_STATE(1620)] = 39742, + [SMALL_STATE(1621)] = 39812, + [SMALL_STATE(1622)] = 39882, + [SMALL_STATE(1623)] = 39952, + [SMALL_STATE(1624)] = 40026, + [SMALL_STATE(1625)] = 40096, + [SMALL_STATE(1626)] = 40166, + [SMALL_STATE(1627)] = 40236, + [SMALL_STATE(1628)] = 40306, + [SMALL_STATE(1629)] = 40376, + [SMALL_STATE(1630)] = 40446, + [SMALL_STATE(1631)] = 40516, + [SMALL_STATE(1632)] = 40586, + [SMALL_STATE(1633)] = 40656, + [SMALL_STATE(1634)] = 40726, + [SMALL_STATE(1635)] = 40796, + [SMALL_STATE(1636)] = 40866, + [SMALL_STATE(1637)] = 40936, + [SMALL_STATE(1638)] = 41006, + [SMALL_STATE(1639)] = 41076, + [SMALL_STATE(1640)] = 41146, + [SMALL_STATE(1641)] = 41216, + [SMALL_STATE(1642)] = 41286, + [SMALL_STATE(1643)] = 41356, + [SMALL_STATE(1644)] = 41426, + [SMALL_STATE(1645)] = 41496, + [SMALL_STATE(1646)] = 41566, + [SMALL_STATE(1647)] = 41636, + [SMALL_STATE(1648)] = 41706, + [SMALL_STATE(1649)] = 41776, + [SMALL_STATE(1650)] = 41904, + [SMALL_STATE(1651)] = 41974, + [SMALL_STATE(1652)] = 42068, + [SMALL_STATE(1653)] = 42142, + [SMALL_STATE(1654)] = 42212, + [SMALL_STATE(1655)] = 42296, + [SMALL_STATE(1656)] = 42366, + [SMALL_STATE(1657)] = 42436, + [SMALL_STATE(1658)] = 42506, + [SMALL_STATE(1659)] = 42576, + [SMALL_STATE(1660)] = 42646, + [SMALL_STATE(1661)] = 42716, + [SMALL_STATE(1662)] = 42786, + [SMALL_STATE(1663)] = 42856, + [SMALL_STATE(1664)] = 42926, + [SMALL_STATE(1665)] = 42996, + [SMALL_STATE(1666)] = 43066, + [SMALL_STATE(1667)] = 43136, + [SMALL_STATE(1668)] = 43206, + [SMALL_STATE(1669)] = 43276, + [SMALL_STATE(1670)] = 43346, + [SMALL_STATE(1671)] = 43416, + [SMALL_STATE(1672)] = 43486, + [SMALL_STATE(1673)] = 43556, + [SMALL_STATE(1674)] = 43626, + [SMALL_STATE(1675)] = 43696, + [SMALL_STATE(1676)] = 43766, + [SMALL_STATE(1677)] = 43836, + [SMALL_STATE(1678)] = 43906, + [SMALL_STATE(1679)] = 43990, + [SMALL_STATE(1680)] = 44060, + [SMALL_STATE(1681)] = 44130, + [SMALL_STATE(1682)] = 44200, + [SMALL_STATE(1683)] = 44270, + [SMALL_STATE(1684)] = 44342, + [SMALL_STATE(1685)] = 44412, + [SMALL_STATE(1686)] = 44484, + [SMALL_STATE(1687)] = 44556, + [SMALL_STATE(1688)] = 44628, + [SMALL_STATE(1689)] = 44700, + [SMALL_STATE(1690)] = 44770, + [SMALL_STATE(1691)] = 44842, + [SMALL_STATE(1692)] = 44914, + [SMALL_STATE(1693)] = 44988, + [SMALL_STATE(1694)] = 45060, + [SMALL_STATE(1695)] = 45132, + [SMALL_STATE(1696)] = 45204, + [SMALL_STATE(1697)] = 45278, + [SMALL_STATE(1698)] = 45360, + [SMALL_STATE(1699)] = 45432, + [SMALL_STATE(1700)] = 45502, + [SMALL_STATE(1701)] = 45572, + [SMALL_STATE(1702)] = 45644, + [SMALL_STATE(1703)] = 45714, + [SMALL_STATE(1704)] = 45784, + [SMALL_STATE(1705)] = 45856, + [SMALL_STATE(1706)] = 45926, + [SMALL_STATE(1707)] = 45998, + [SMALL_STATE(1708)] = 46088, + [SMALL_STATE(1709)] = 46158, + [SMALL_STATE(1710)] = 46228, + [SMALL_STATE(1711)] = 46298, + [SMALL_STATE(1712)] = 46370, + [SMALL_STATE(1713)] = 46442, + [SMALL_STATE(1714)] = 46512, + [SMALL_STATE(1715)] = 46582, + [SMALL_STATE(1716)] = 46654, + [SMALL_STATE(1717)] = 46726, + [SMALL_STATE(1718)] = 46798, + [SMALL_STATE(1719)] = 46867, + [SMALL_STATE(1720)] = 46936, + [SMALL_STATE(1721)] = 47009, + [SMALL_STATE(1722)] = 47082, + [SMALL_STATE(1723)] = 47155, + [SMALL_STATE(1724)] = 47280, + [SMALL_STATE(1725)] = 47353, + [SMALL_STATE(1726)] = 47426, + [SMALL_STATE(1727)] = 47499, + [SMALL_STATE(1728)] = 47568, + [SMALL_STATE(1729)] = 47637, + [SMALL_STATE(1730)] = 47762, + [SMALL_STATE(1731)] = 47887, + [SMALL_STATE(1732)] = 48012, + [SMALL_STATE(1733)] = 48137, + [SMALL_STATE(1734)] = 48262, + [SMALL_STATE(1735)] = 48387, + [SMALL_STATE(1736)] = 48512, + [SMALL_STATE(1737)] = 48637, + [SMALL_STATE(1738)] = 48762, + [SMALL_STATE(1739)] = 48887, + [SMALL_STATE(1740)] = 49012, + [SMALL_STATE(1741)] = 49137, + [SMALL_STATE(1742)] = 49262, + [SMALL_STATE(1743)] = 49387, + [SMALL_STATE(1744)] = 49512, + [SMALL_STATE(1745)] = 49637, + [SMALL_STATE(1746)] = 49762, + [SMALL_STATE(1747)] = 49887, + [SMALL_STATE(1748)] = 49956, + [SMALL_STATE(1749)] = 50025, + [SMALL_STATE(1750)] = 50150, + [SMALL_STATE(1751)] = 50275, + [SMALL_STATE(1752)] = 50400, + [SMALL_STATE(1753)] = 50525, + [SMALL_STATE(1754)] = 50594, + [SMALL_STATE(1755)] = 50663, + [SMALL_STATE(1756)] = 50732, + [SMALL_STATE(1757)] = 50801, + [SMALL_STATE(1758)] = 50870, + [SMALL_STATE(1759)] = 50939, + [SMALL_STATE(1760)] = 51008, + [SMALL_STATE(1761)] = 51077, + [SMALL_STATE(1762)] = 51146, + [SMALL_STATE(1763)] = 51215, + [SMALL_STATE(1764)] = 51284, + [SMALL_STATE(1765)] = 51353, + [SMALL_STATE(1766)] = 51422, + [SMALL_STATE(1767)] = 51491, + [SMALL_STATE(1768)] = 51560, + [SMALL_STATE(1769)] = 51629, + [SMALL_STATE(1770)] = 51698, + [SMALL_STATE(1771)] = 51767, + [SMALL_STATE(1772)] = 51836, + [SMALL_STATE(1773)] = 51905, + [SMALL_STATE(1774)] = 51974, + [SMALL_STATE(1775)] = 52043, + [SMALL_STATE(1776)] = 52112, + [SMALL_STATE(1777)] = 52181, + [SMALL_STATE(1778)] = 52252, + [SMALL_STATE(1779)] = 52323, + [SMALL_STATE(1780)] = 52392, + [SMALL_STATE(1781)] = 52461, + [SMALL_STATE(1782)] = 52530, + [SMALL_STATE(1783)] = 52599, + [SMALL_STATE(1784)] = 52668, + [SMALL_STATE(1785)] = 52737, + [SMALL_STATE(1786)] = 52806, + [SMALL_STATE(1787)] = 52875, + [SMALL_STATE(1788)] = 52944, + [SMALL_STATE(1789)] = 53013, + [SMALL_STATE(1790)] = 53082, + [SMALL_STATE(1791)] = 53151, + [SMALL_STATE(1792)] = 53220, + [SMALL_STATE(1793)] = 53289, + [SMALL_STATE(1794)] = 53358, + [SMALL_STATE(1795)] = 53427, + [SMALL_STATE(1796)] = 53496, + [SMALL_STATE(1797)] = 53565, + [SMALL_STATE(1798)] = 53634, + [SMALL_STATE(1799)] = 53703, + [SMALL_STATE(1800)] = 53772, + [SMALL_STATE(1801)] = 53841, + [SMALL_STATE(1802)] = 53910, + [SMALL_STATE(1803)] = 53979, + [SMALL_STATE(1804)] = 54048, + [SMALL_STATE(1805)] = 54117, + [SMALL_STATE(1806)] = 54186, + [SMALL_STATE(1807)] = 54255, + [SMALL_STATE(1808)] = 54324, + [SMALL_STATE(1809)] = 54393, + [SMALL_STATE(1810)] = 54462, + [SMALL_STATE(1811)] = 54531, + [SMALL_STATE(1812)] = 54600, + [SMALL_STATE(1813)] = 54669, + [SMALL_STATE(1814)] = 54740, + [SMALL_STATE(1815)] = 54811, + [SMALL_STATE(1816)] = 54882, + [SMALL_STATE(1817)] = 54953, + [SMALL_STATE(1818)] = 55022, + [SMALL_STATE(1819)] = 55093, + [SMALL_STATE(1820)] = 55162, + [SMALL_STATE(1821)] = 55231, + [SMALL_STATE(1822)] = 55300, + [SMALL_STATE(1823)] = 55369, + [SMALL_STATE(1824)] = 55438, + [SMALL_STATE(1825)] = 55507, + [SMALL_STATE(1826)] = 55576, + [SMALL_STATE(1827)] = 55645, + [SMALL_STATE(1828)] = 55716, + [SMALL_STATE(1829)] = 55787, + [SMALL_STATE(1830)] = 55858, + [SMALL_STATE(1831)] = 55929, + [SMALL_STATE(1832)] = 55998, + [SMALL_STATE(1833)] = 56067, + [SMALL_STATE(1834)] = 56136, + [SMALL_STATE(1835)] = 56205, + [SMALL_STATE(1836)] = 56276, + [SMALL_STATE(1837)] = 56347, + [SMALL_STATE(1838)] = 56418, + [SMALL_STATE(1839)] = 56489, + [SMALL_STATE(1840)] = 56560, + [SMALL_STATE(1841)] = 56631, + [SMALL_STATE(1842)] = 56702, + [SMALL_STATE(1843)] = 56773, + [SMALL_STATE(1844)] = 56844, + [SMALL_STATE(1845)] = 56915, + [SMALL_STATE(1846)] = 56986, + [SMALL_STATE(1847)] = 57057, + [SMALL_STATE(1848)] = 57128, + [SMALL_STATE(1849)] = 57199, + [SMALL_STATE(1850)] = 57270, + [SMALL_STATE(1851)] = 57341, + [SMALL_STATE(1852)] = 57412, + [SMALL_STATE(1853)] = 57483, + [SMALL_STATE(1854)] = 57554, + [SMALL_STATE(1855)] = 57623, + [SMALL_STATE(1856)] = 57692, + [SMALL_STATE(1857)] = 57761, + [SMALL_STATE(1858)] = 57832, + [SMALL_STATE(1859)] = 57903, + [SMALL_STATE(1860)] = 57974, + [SMALL_STATE(1861)] = 58043, + [SMALL_STATE(1862)] = 58114, + [SMALL_STATE(1863)] = 58185, + [SMALL_STATE(1864)] = 58296, + [SMALL_STATE(1865)] = 58365, + [SMALL_STATE(1866)] = 58434, + [SMALL_STATE(1867)] = 58505, + [SMALL_STATE(1868)] = 58576, + [SMALL_STATE(1869)] = 58647, + [SMALL_STATE(1870)] = 58718, + [SMALL_STATE(1871)] = 58793, + [SMALL_STATE(1872)] = 58868, + [SMALL_STATE(1873)] = 58943, + [SMALL_STATE(1874)] = 59018, + [SMALL_STATE(1875)] = 59093, + [SMALL_STATE(1876)] = 59164, + [SMALL_STATE(1877)] = 59233, + [SMALL_STATE(1878)] = 59302, + [SMALL_STATE(1879)] = 59427, + [SMALL_STATE(1880)] = 59496, + [SMALL_STATE(1881)] = 59565, + [SMALL_STATE(1882)] = 59634, + [SMALL_STATE(1883)] = 59715, + [SMALL_STATE(1884)] = 59784, + [SMALL_STATE(1885)] = 59853, + [SMALL_STATE(1886)] = 59922, + [SMALL_STATE(1887)] = 60005, + [SMALL_STATE(1888)] = 60074, + [SMALL_STATE(1889)] = 60143, + [SMALL_STATE(1890)] = 60212, + [SMALL_STATE(1891)] = 60281, + [SMALL_STATE(1892)] = 60364, + [SMALL_STATE(1893)] = 60453, + [SMALL_STATE(1894)] = 60546, + [SMALL_STATE(1895)] = 60641, + [SMALL_STATE(1896)] = 60738, + [SMALL_STATE(1897)] = 60839, + [SMALL_STATE(1898)] = 60942, + [SMALL_STATE(1899)] = 61049, + [SMALL_STATE(1900)] = 61158, + [SMALL_STATE(1901)] = 61267, + [SMALL_STATE(1902)] = 61336, + [SMALL_STATE(1903)] = 61405, + [SMALL_STATE(1904)] = 61474, + [SMALL_STATE(1905)] = 61543, + [SMALL_STATE(1906)] = 61612, + [SMALL_STATE(1907)] = 61681, + [SMALL_STATE(1908)] = 61750, + [SMALL_STATE(1909)] = 61819, + [SMALL_STATE(1910)] = 61888, + [SMALL_STATE(1911)] = 61957, + [SMALL_STATE(1912)] = 62034, + [SMALL_STATE(1913)] = 62109, + [SMALL_STATE(1914)] = 62214, + [SMALL_STATE(1915)] = 62305, + [SMALL_STATE(1916)] = 62390, + [SMALL_STATE(1917)] = 62459, + [SMALL_STATE(1918)] = 62530, + [SMALL_STATE(1919)] = 62599, + [SMALL_STATE(1920)] = 62668, + [SMALL_STATE(1921)] = 62737, + [SMALL_STATE(1922)] = 62806, + [SMALL_STATE(1923)] = 62875, + [SMALL_STATE(1924)] = 62944, + [SMALL_STATE(1925)] = 63013, + [SMALL_STATE(1926)] = 63082, + [SMALL_STATE(1927)] = 63151, + [SMALL_STATE(1928)] = 63220, + [SMALL_STATE(1929)] = 63289, + [SMALL_STATE(1930)] = 63358, + [SMALL_STATE(1931)] = 63427, + [SMALL_STATE(1932)] = 63496, + [SMALL_STATE(1933)] = 63565, + [SMALL_STATE(1934)] = 63634, + [SMALL_STATE(1935)] = 63703, + [SMALL_STATE(1936)] = 63772, + [SMALL_STATE(1937)] = 63843, + [SMALL_STATE(1938)] = 63914, + [SMALL_STATE(1939)] = 63983, + [SMALL_STATE(1940)] = 64052, + [SMALL_STATE(1941)] = 64121, + [SMALL_STATE(1942)] = 64190, + [SMALL_STATE(1943)] = 64259, + [SMALL_STATE(1944)] = 64328, + [SMALL_STATE(1945)] = 64397, + [SMALL_STATE(1946)] = 64466, + [SMALL_STATE(1947)] = 64591, + [SMALL_STATE(1948)] = 64662, + [SMALL_STATE(1949)] = 64787, + [SMALL_STATE(1950)] = 64912, + [SMALL_STATE(1951)] = 65037, + [SMALL_STATE(1952)] = 65108, + [SMALL_STATE(1953)] = 65233, + [SMALL_STATE(1954)] = 65304, + [SMALL_STATE(1955)] = 65429, + [SMALL_STATE(1956)] = 65554, + [SMALL_STATE(1957)] = 65679, + [SMALL_STATE(1958)] = 65750, + [SMALL_STATE(1959)] = 65819, + [SMALL_STATE(1960)] = 65888, + [SMALL_STATE(1961)] = 65999, + [SMALL_STATE(1962)] = 66124, + [SMALL_STATE(1963)] = 66193, + [SMALL_STATE(1964)] = 66262, + [SMALL_STATE(1965)] = 66387, + [SMALL_STATE(1966)] = 66512, + [SMALL_STATE(1967)] = 66637, + [SMALL_STATE(1968)] = 66706, + [SMALL_STATE(1969)] = 66775, + [SMALL_STATE(1970)] = 66844, + [SMALL_STATE(1971)] = 66913, + [SMALL_STATE(1972)] = 66982, + [SMALL_STATE(1973)] = 67051, + [SMALL_STATE(1974)] = 67120, + [SMALL_STATE(1975)] = 67189, + [SMALL_STATE(1976)] = 67258, + [SMALL_STATE(1977)] = 67327, + [SMALL_STATE(1978)] = 67396, + [SMALL_STATE(1979)] = 67465, + [SMALL_STATE(1980)] = 67534, + [SMALL_STATE(1981)] = 67603, + [SMALL_STATE(1982)] = 67672, + [SMALL_STATE(1983)] = 67741, + [SMALL_STATE(1984)] = 67810, + [SMALL_STATE(1985)] = 67879, + [SMALL_STATE(1986)] = 67948, + [SMALL_STATE(1987)] = 68017, + [SMALL_STATE(1988)] = 68086, + [SMALL_STATE(1989)] = 68155, + [SMALL_STATE(1990)] = 68224, + [SMALL_STATE(1991)] = 68293, + [SMALL_STATE(1992)] = 68362, + [SMALL_STATE(1993)] = 68431, + [SMALL_STATE(1994)] = 68500, + [SMALL_STATE(1995)] = 68569, + [SMALL_STATE(1996)] = 68638, + [SMALL_STATE(1997)] = 68707, + [SMALL_STATE(1998)] = 68776, + [SMALL_STATE(1999)] = 68845, + [SMALL_STATE(2000)] = 68914, + [SMALL_STATE(2001)] = 68983, + [SMALL_STATE(2002)] = 69052, + [SMALL_STATE(2003)] = 69121, + [SMALL_STATE(2004)] = 69190, + [SMALL_STATE(2005)] = 69259, + [SMALL_STATE(2006)] = 69328, + [SMALL_STATE(2007)] = 69397, + [SMALL_STATE(2008)] = 69466, + [SMALL_STATE(2009)] = 69535, + [SMALL_STATE(2010)] = 69604, + [SMALL_STATE(2011)] = 69673, + [SMALL_STATE(2012)] = 69742, + [SMALL_STATE(2013)] = 69810, + [SMALL_STATE(2014)] = 69878, + [SMALL_STATE(2015)] = 69946, + [SMALL_STATE(2016)] = 70014, + [SMALL_STATE(2017)] = 70082, + [SMALL_STATE(2018)] = 70150, + [SMALL_STATE(2019)] = 70218, + [SMALL_STATE(2020)] = 70286, + [SMALL_STATE(2021)] = 70354, + [SMALL_STATE(2022)] = 70422, + [SMALL_STATE(2023)] = 70490, + [SMALL_STATE(2024)] = 70558, + [SMALL_STATE(2025)] = 70626, + [SMALL_STATE(2026)] = 70694, + [SMALL_STATE(2027)] = 70762, + [SMALL_STATE(2028)] = 70830, + [SMALL_STATE(2029)] = 70898, + [SMALL_STATE(2030)] = 70966, + [SMALL_STATE(2031)] = 71034, + [SMALL_STATE(2032)] = 71102, + [SMALL_STATE(2033)] = 71170, + [SMALL_STATE(2034)] = 71238, + [SMALL_STATE(2035)] = 71306, + [SMALL_STATE(2036)] = 71374, + [SMALL_STATE(2037)] = 71442, + [SMALL_STATE(2038)] = 71514, + [SMALL_STATE(2039)] = 71586, + [SMALL_STATE(2040)] = 71654, + [SMALL_STATE(2041)] = 71722, + [SMALL_STATE(2042)] = 71792, + [SMALL_STATE(2043)] = 71860, + [SMALL_STATE(2044)] = 71928, + [SMALL_STATE(2045)] = 71996, + [SMALL_STATE(2046)] = 72064, + [SMALL_STATE(2047)] = 72132, + [SMALL_STATE(2048)] = 72200, + [SMALL_STATE(2049)] = 72268, + [SMALL_STATE(2050)] = 72338, + [SMALL_STATE(2051)] = 72406, + [SMALL_STATE(2052)] = 72478, + [SMALL_STATE(2053)] = 72546, + [SMALL_STATE(2054)] = 72616, + [SMALL_STATE(2055)] = 72686, + [SMALL_STATE(2056)] = 72756, + [SMALL_STATE(2057)] = 72826, + [SMALL_STATE(2058)] = 72896, + [SMALL_STATE(2059)] = 72966, + [SMALL_STATE(2060)] = 73036, + [SMALL_STATE(2061)] = 73106, + [SMALL_STATE(2062)] = 73176, + [SMALL_STATE(2063)] = 73246, + [SMALL_STATE(2064)] = 73316, + [SMALL_STATE(2065)] = 73386, + [SMALL_STATE(2066)] = 73456, + [SMALL_STATE(2067)] = 73526, + [SMALL_STATE(2068)] = 73596, + [SMALL_STATE(2069)] = 73666, + [SMALL_STATE(2070)] = 73736, + [SMALL_STATE(2071)] = 73806, + [SMALL_STATE(2072)] = 73876, + [SMALL_STATE(2073)] = 73946, + [SMALL_STATE(2074)] = 74016, + [SMALL_STATE(2075)] = 74086, + [SMALL_STATE(2076)] = 74154, + [SMALL_STATE(2077)] = 74228, + [SMALL_STATE(2078)] = 74296, + [SMALL_STATE(2079)] = 74364, + [SMALL_STATE(2080)] = 74432, + [SMALL_STATE(2081)] = 74500, + [SMALL_STATE(2082)] = 74574, + [SMALL_STATE(2083)] = 74642, + [SMALL_STATE(2084)] = 74710, + [SMALL_STATE(2085)] = 74778, + [SMALL_STATE(2086)] = 74846, + [SMALL_STATE(2087)] = 74914, + [SMALL_STATE(2088)] = 74986, + [SMALL_STATE(2089)] = 75058, + [SMALL_STATE(2090)] = 75126, + [SMALL_STATE(2091)] = 75198, + [SMALL_STATE(2092)] = 75266, + [SMALL_STATE(2093)] = 75334, + [SMALL_STATE(2094)] = 75402, + [SMALL_STATE(2095)] = 75470, + [SMALL_STATE(2096)] = 75538, + [SMALL_STATE(2097)] = 75606, + [SMALL_STATE(2098)] = 75716, + [SMALL_STATE(2099)] = 75788, + [SMALL_STATE(2100)] = 75860, + [SMALL_STATE(2101)] = 75928, + [SMALL_STATE(2102)] = 75996, + [SMALL_STATE(2103)] = 76068, + [SMALL_STATE(2104)] = 76140, + [SMALL_STATE(2105)] = 76212, + [SMALL_STATE(2106)] = 76284, + [SMALL_STATE(2107)] = 76352, + [SMALL_STATE(2108)] = 76424, + [SMALL_STATE(2109)] = 76496, + [SMALL_STATE(2110)] = 76610, + [SMALL_STATE(2111)] = 76682, + [SMALL_STATE(2112)] = 76754, + [SMALL_STATE(2113)] = 76826, + [SMALL_STATE(2114)] = 76898, + [SMALL_STATE(2115)] = 76966, + [SMALL_STATE(2116)] = 77034, + [SMALL_STATE(2117)] = 77102, + [SMALL_STATE(2118)] = 77170, + [SMALL_STATE(2119)] = 77238, + [SMALL_STATE(2120)] = 77306, + [SMALL_STATE(2121)] = 77378, + [SMALL_STATE(2122)] = 77488, + [SMALL_STATE(2123)] = 77560, + [SMALL_STATE(2124)] = 77644, + [SMALL_STATE(2125)] = 77734, + [SMALL_STATE(2126)] = 77838, + [SMALL_STATE(2127)] = 77912, + [SMALL_STATE(2128)] = 77988, + [SMALL_STATE(2129)] = 78096, + [SMALL_STATE(2130)] = 78164, + [SMALL_STATE(2131)] = 78232, + [SMALL_STATE(2132)] = 78300, + [SMALL_STATE(2133)] = 78368, + [SMALL_STATE(2134)] = 78436, + [SMALL_STATE(2135)] = 78504, + [SMALL_STATE(2136)] = 78572, + [SMALL_STATE(2137)] = 78640, + [SMALL_STATE(2138)] = 78708, + [SMALL_STATE(2139)] = 78776, + [SMALL_STATE(2140)] = 78844, + [SMALL_STATE(2141)] = 78912, + [SMALL_STATE(2142)] = 78980, + [SMALL_STATE(2143)] = 79048, + [SMALL_STATE(2144)] = 79156, + [SMALL_STATE(2145)] = 79262, + [SMALL_STATE(2146)] = 79364, + [SMALL_STATE(2147)] = 79432, + [SMALL_STATE(2148)] = 79500, + [SMALL_STATE(2149)] = 79568, + [SMALL_STATE(2150)] = 79636, + [SMALL_STATE(2151)] = 79708, + [SMALL_STATE(2152)] = 79776, + [SMALL_STATE(2153)] = 79844, + [SMALL_STATE(2154)] = 79944, + [SMALL_STATE(2155)] = 80040, + [SMALL_STATE(2156)] = 80108, + [SMALL_STATE(2157)] = 80202, + [SMALL_STATE(2158)] = 80294, + [SMALL_STATE(2159)] = 80382, + [SMALL_STATE(2160)] = 80450, + [SMALL_STATE(2161)] = 80532, + [SMALL_STATE(2162)] = 80614, + [SMALL_STATE(2163)] = 80694, + [SMALL_STATE(2164)] = 80762, + [SMALL_STATE(2165)] = 80830, + [SMALL_STATE(2166)] = 80898, + [SMALL_STATE(2167)] = 80966, + [SMALL_STATE(2168)] = 81034, + [SMALL_STATE(2169)] = 81102, + [SMALL_STATE(2170)] = 81170, + [SMALL_STATE(2171)] = 81238, + [SMALL_STATE(2172)] = 81306, + [SMALL_STATE(2173)] = 81374, + [SMALL_STATE(2174)] = 81442, + [SMALL_STATE(2175)] = 81510, + [SMALL_STATE(2176)] = 81578, + [SMALL_STATE(2177)] = 81646, + [SMALL_STATE(2178)] = 81714, + [SMALL_STATE(2179)] = 81782, + [SMALL_STATE(2180)] = 81850, + [SMALL_STATE(2181)] = 81918, + [SMALL_STATE(2182)] = 81986, + [SMALL_STATE(2183)] = 82054, + [SMALL_STATE(2184)] = 82168, + [SMALL_STATE(2185)] = 82236, + [SMALL_STATE(2186)] = 82304, + [SMALL_STATE(2187)] = 82372, + [SMALL_STATE(2188)] = 82440, + [SMALL_STATE(2189)] = 82512, + [SMALL_STATE(2190)] = 82584, + [SMALL_STATE(2191)] = 82652, + [SMALL_STATE(2192)] = 82720, + [SMALL_STATE(2193)] = 82792, + [SMALL_STATE(2194)] = 82864, + [SMALL_STATE(2195)] = 82938, + [SMALL_STATE(2196)] = 83012, + [SMALL_STATE(2197)] = 83080, + [SMALL_STATE(2198)] = 83148, + [SMALL_STATE(2199)] = 83216, + [SMALL_STATE(2200)] = 83284, + [SMALL_STATE(2201)] = 83352, + [SMALL_STATE(2202)] = 83420, + [SMALL_STATE(2203)] = 83488, + [SMALL_STATE(2204)] = 83556, + [SMALL_STATE(2205)] = 83624, + [SMALL_STATE(2206)] = 83692, + [SMALL_STATE(2207)] = 83760, + [SMALL_STATE(2208)] = 83828, + [SMALL_STATE(2209)] = 83896, + [SMALL_STATE(2210)] = 83964, + [SMALL_STATE(2211)] = 84032, + [SMALL_STATE(2212)] = 84101, + [SMALL_STATE(2213)] = 84170, + [SMALL_STATE(2214)] = 84241, + [SMALL_STATE(2215)] = 84312, + [SMALL_STATE(2216)] = 84379, + [SMALL_STATE(2217)] = 84446, + [SMALL_STATE(2218)] = 84559, + [SMALL_STATE(2219)] = 84626, + [SMALL_STATE(2220)] = 84693, + [SMALL_STATE(2221)] = 84760, + [SMALL_STATE(2222)] = 84827, + [SMALL_STATE(2223)] = 84894, + [SMALL_STATE(2224)] = 84967, + [SMALL_STATE(2225)] = 85034, + [SMALL_STATE(2226)] = 85101, + [SMALL_STATE(2227)] = 85174, + [SMALL_STATE(2228)] = 85243, + [SMALL_STATE(2229)] = 85312, + [SMALL_STATE(2230)] = 85385, + [SMALL_STATE(2231)] = 85494, + [SMALL_STATE(2232)] = 85561, + [SMALL_STATE(2233)] = 85628, + [SMALL_STATE(2234)] = 85701, + [SMALL_STATE(2235)] = 85768, + [SMALL_STATE(2236)] = 85841, + [SMALL_STATE(2237)] = 85912, + [SMALL_STATE(2238)] = 85979, + [SMALL_STATE(2239)] = 86046, + [SMALL_STATE(2240)] = 86113, + [SMALL_STATE(2241)] = 86184, + [SMALL_STATE(2242)] = 86255, + [SMALL_STATE(2243)] = 86322, + [SMALL_STATE(2244)] = 86389, + [SMALL_STATE(2245)] = 86456, + [SMALL_STATE(2246)] = 86523, + [SMALL_STATE(2247)] = 86590, + [SMALL_STATE(2248)] = 86657, + [SMALL_STATE(2249)] = 86724, + [SMALL_STATE(2250)] = 86791, + [SMALL_STATE(2251)] = 86858, + [SMALL_STATE(2252)] = 86925, + [SMALL_STATE(2253)] = 86992, + [SMALL_STATE(2254)] = 87059, + [SMALL_STATE(2255)] = 87126, + [SMALL_STATE(2256)] = 87193, + [SMALL_STATE(2257)] = 87260, + [SMALL_STATE(2258)] = 87327, + [SMALL_STATE(2259)] = 87394, + [SMALL_STATE(2260)] = 87465, + [SMALL_STATE(2261)] = 87532, + [SMALL_STATE(2262)] = 87599, + [SMALL_STATE(2263)] = 87666, + [SMALL_STATE(2264)] = 87733, + [SMALL_STATE(2265)] = 87800, + [SMALL_STATE(2266)] = 87867, + [SMALL_STATE(2267)] = 87934, + [SMALL_STATE(2268)] = 88001, + [SMALL_STATE(2269)] = 88068, + [SMALL_STATE(2270)] = 88135, + [SMALL_STATE(2271)] = 88202, + [SMALL_STATE(2272)] = 88269, + [SMALL_STATE(2273)] = 88336, + [SMALL_STATE(2274)] = 88403, + [SMALL_STATE(2275)] = 88470, + [SMALL_STATE(2276)] = 88539, + [SMALL_STATE(2277)] = 88608, + [SMALL_STATE(2278)] = 88679, + [SMALL_STATE(2279)] = 88750, + [SMALL_STATE(2280)] = 88817, + [SMALL_STATE(2281)] = 88884, + [SMALL_STATE(2282)] = 88955, + [SMALL_STATE(2283)] = 89022, + [SMALL_STATE(2284)] = 89089, + [SMALL_STATE(2285)] = 89156, + [SMALL_STATE(2286)] = 89223, + [SMALL_STATE(2287)] = 89292, + [SMALL_STATE(2288)] = 89363, + [SMALL_STATE(2289)] = 89430, + [SMALL_STATE(2290)] = 89497, + [SMALL_STATE(2291)] = 89564, + [SMALL_STATE(2292)] = 89631, + [SMALL_STATE(2293)] = 89702, + [SMALL_STATE(2294)] = 89781, + [SMALL_STATE(2295)] = 89862, + [SMALL_STATE(2296)] = 89945, + [SMALL_STATE(2297)] = 90034, + [SMALL_STATE(2298)] = 90137, + [SMALL_STATE(2299)] = 90218, + [SMALL_STATE(2300)] = 90291, + [SMALL_STATE(2301)] = 90366, + [SMALL_STATE(2302)] = 90473, + [SMALL_STATE(2303)] = 90580, + [SMALL_STATE(2304)] = 90667, + [SMALL_STATE(2305)] = 90772, + [SMALL_STATE(2306)] = 90873, + [SMALL_STATE(2307)] = 90972, + [SMALL_STATE(2308)] = 91067, + [SMALL_STATE(2309)] = 91160, + [SMALL_STATE(2310)] = 91251, + [SMALL_STATE(2311)] = 91338, + [SMALL_STATE(2312)] = 91419, + [SMALL_STATE(2313)] = 91500, + [SMALL_STATE(2314)] = 91579, + [SMALL_STATE(2315)] = 91670, + [SMALL_STATE(2316)] = 91763, + [SMALL_STATE(2317)] = 91858, + [SMALL_STATE(2318)] = 91957, + [SMALL_STATE(2319)] = 92058, + [SMALL_STATE(2320)] = 92163, + [SMALL_STATE(2321)] = 92230, + [SMALL_STATE(2322)] = 92297, + [SMALL_STATE(2323)] = 92404, + [SMALL_STATE(2324)] = 92511, + [SMALL_STATE(2325)] = 92586, + [SMALL_STATE(2326)] = 92659, + [SMALL_STATE(2327)] = 92726, + [SMALL_STATE(2328)] = 92829, + [SMALL_STATE(2329)] = 92896, + [SMALL_STATE(2330)] = 92963, + [SMALL_STATE(2331)] = 93052, + [SMALL_STATE(2332)] = 93135, + [SMALL_STATE(2333)] = 93202, + [SMALL_STATE(2334)] = 93269, + [SMALL_STATE(2335)] = 93336, + [SMALL_STATE(2336)] = 93403, + [SMALL_STATE(2337)] = 93470, + [SMALL_STATE(2338)] = 93541, + [SMALL_STATE(2339)] = 93654, + [SMALL_STATE(2340)] = 93723, + [SMALL_STATE(2341)] = 93790, + [SMALL_STATE(2342)] = 93861, + [SMALL_STATE(2343)] = 93928, + [SMALL_STATE(2344)] = 93997, + [SMALL_STATE(2345)] = 94068, + [SMALL_STATE(2346)] = 94137, + [SMALL_STATE(2347)] = 94206, + [SMALL_STATE(2348)] = 94277, + [SMALL_STATE(2349)] = 94346, + [SMALL_STATE(2350)] = 94413, + [SMALL_STATE(2351)] = 94484, + [SMALL_STATE(2352)] = 94551, + [SMALL_STATE(2353)] = 94618, + [SMALL_STATE(2354)] = 94685, + [SMALL_STATE(2355)] = 94752, + [SMALL_STATE(2356)] = 94823, + [SMALL_STATE(2357)] = 94932, + [SMALL_STATE(2358)] = 94999, + [SMALL_STATE(2359)] = 95066, + [SMALL_STATE(2360)] = 95133, + [SMALL_STATE(2361)] = 95200, + [SMALL_STATE(2362)] = 95267, + [SMALL_STATE(2363)] = 95334, + [SMALL_STATE(2364)] = 95403, + [SMALL_STATE(2365)] = 95472, + [SMALL_STATE(2366)] = 95541, + [SMALL_STATE(2367)] = 95610, + [SMALL_STATE(2368)] = 95679, + [SMALL_STATE(2369)] = 95748, + [SMALL_STATE(2370)] = 95817, + [SMALL_STATE(2371)] = 95886, + [SMALL_STATE(2372)] = 95953, + [SMALL_STATE(2373)] = 96022, + [SMALL_STATE(2374)] = 96091, + [SMALL_STATE(2375)] = 96160, + [SMALL_STATE(2376)] = 96227, + [SMALL_STATE(2377)] = 96296, + [SMALL_STATE(2378)] = 96367, + [SMALL_STATE(2379)] = 96436, + [SMALL_STATE(2380)] = 96545, + [SMALL_STATE(2381)] = 96614, + [SMALL_STATE(2382)] = 96683, + [SMALL_STATE(2383)] = 96752, + [SMALL_STATE(2384)] = 96821, + [SMALL_STATE(2385)] = 96890, + [SMALL_STATE(2386)] = 96959, + [SMALL_STATE(2387)] = 97026, + [SMALL_STATE(2388)] = 97093, + [SMALL_STATE(2389)] = 97164, + [SMALL_STATE(2390)] = 97231, + [SMALL_STATE(2391)] = 97298, + [SMALL_STATE(2392)] = 97365, + [SMALL_STATE(2393)] = 97432, + [SMALL_STATE(2394)] = 97499, + [SMALL_STATE(2395)] = 97566, + [SMALL_STATE(2396)] = 97633, + [SMALL_STATE(2397)] = 97700, + [SMALL_STATE(2398)] = 97767, + [SMALL_STATE(2399)] = 97834, + [SMALL_STATE(2400)] = 97901, + [SMALL_STATE(2401)] = 97968, + [SMALL_STATE(2402)] = 98035, + [SMALL_STATE(2403)] = 98102, + [SMALL_STATE(2404)] = 98169, + [SMALL_STATE(2405)] = 98236, + [SMALL_STATE(2406)] = 98303, + [SMALL_STATE(2407)] = 98370, + [SMALL_STATE(2408)] = 98437, + [SMALL_STATE(2409)] = 98504, + [SMALL_STATE(2410)] = 98571, + [SMALL_STATE(2411)] = 98640, + [SMALL_STATE(2412)] = 98709, + [SMALL_STATE(2413)] = 98778, + [SMALL_STATE(2414)] = 98847, + [SMALL_STATE(2415)] = 98916, + [SMALL_STATE(2416)] = 98985, + [SMALL_STATE(2417)] = 99054, + [SMALL_STATE(2418)] = 99123, + [SMALL_STATE(2419)] = 99192, + [SMALL_STATE(2420)] = 99261, + [SMALL_STATE(2421)] = 99332, + [SMALL_STATE(2422)] = 99401, + [SMALL_STATE(2423)] = 99470, + [SMALL_STATE(2424)] = 99541, + [SMALL_STATE(2425)] = 99650, + [SMALL_STATE(2426)] = 99721, + [SMALL_STATE(2427)] = 99790, + [SMALL_STATE(2428)] = 99859, + [SMALL_STATE(2429)] = 99928, + [SMALL_STATE(2430)] = 99997, + [SMALL_STATE(2431)] = 100066, + [SMALL_STATE(2432)] = 100135, + [SMALL_STATE(2433)] = 100204, + [SMALL_STATE(2434)] = 100273, + [SMALL_STATE(2435)] = 100340, + [SMALL_STATE(2436)] = 100407, + [SMALL_STATE(2437)] = 100474, + [SMALL_STATE(2438)] = 100541, + [SMALL_STATE(2439)] = 100608, + [SMALL_STATE(2440)] = 100675, + [SMALL_STATE(2441)] = 100742, + [SMALL_STATE(2442)] = 100809, + [SMALL_STATE(2443)] = 100876, + [SMALL_STATE(2444)] = 100943, + [SMALL_STATE(2445)] = 101010, + [SMALL_STATE(2446)] = 101077, + [SMALL_STATE(2447)] = 101144, + [SMALL_STATE(2448)] = 101211, + [SMALL_STATE(2449)] = 101278, + [SMALL_STATE(2450)] = 101345, + [SMALL_STATE(2451)] = 101412, + [SMALL_STATE(2452)] = 101483, + [SMALL_STATE(2453)] = 101550, + [SMALL_STATE(2454)] = 101617, + [SMALL_STATE(2455)] = 101684, + [SMALL_STATE(2456)] = 101751, + [SMALL_STATE(2457)] = 101818, + [SMALL_STATE(2458)] = 101885, + [SMALL_STATE(2459)] = 101952, + [SMALL_STATE(2460)] = 102019, + [SMALL_STATE(2461)] = 102086, + [SMALL_STATE(2462)] = 102153, + [SMALL_STATE(2463)] = 102220, + [SMALL_STATE(2464)] = 102287, + [SMALL_STATE(2465)] = 102354, + [SMALL_STATE(2466)] = 102421, + [SMALL_STATE(2467)] = 102490, + [SMALL_STATE(2468)] = 102557, + [SMALL_STATE(2469)] = 102624, + [SMALL_STATE(2470)] = 102691, + [SMALL_STATE(2471)] = 102758, + [SMALL_STATE(2472)] = 102827, + [SMALL_STATE(2473)] = 102894, + [SMALL_STATE(2474)] = 102961, + [SMALL_STATE(2475)] = 103028, + [SMALL_STATE(2476)] = 103095, + [SMALL_STATE(2477)] = 103162, + [SMALL_STATE(2478)] = 103229, + [SMALL_STATE(2479)] = 103296, + [SMALL_STATE(2480)] = 103363, + [SMALL_STATE(2481)] = 103430, + [SMALL_STATE(2482)] = 103497, + [SMALL_STATE(2483)] = 103564, + [SMALL_STATE(2484)] = 103631, + [SMALL_STATE(2485)] = 103698, + [SMALL_STATE(2486)] = 103765, + [SMALL_STATE(2487)] = 103834, + [SMALL_STATE(2488)] = 103903, + [SMALL_STATE(2489)] = 103972, + [SMALL_STATE(2490)] = 104041, + [SMALL_STATE(2491)] = 104110, + [SMALL_STATE(2492)] = 104179, + [SMALL_STATE(2493)] = 104248, + [SMALL_STATE(2494)] = 104317, + [SMALL_STATE(2495)] = 104386, + [SMALL_STATE(2496)] = 104455, + [SMALL_STATE(2497)] = 104524, + [SMALL_STATE(2498)] = 104593, + [SMALL_STATE(2499)] = 104662, + [SMALL_STATE(2500)] = 104731, + [SMALL_STATE(2501)] = 104800, + [SMALL_STATE(2502)] = 104869, + [SMALL_STATE(2503)] = 104938, + [SMALL_STATE(2504)] = 105007, + [SMALL_STATE(2505)] = 105076, + [SMALL_STATE(2506)] = 105145, + [SMALL_STATE(2507)] = 105212, + [SMALL_STATE(2508)] = 105279, + [SMALL_STATE(2509)] = 105346, + [SMALL_STATE(2510)] = 105413, + [SMALL_STATE(2511)] = 105480, + [SMALL_STATE(2512)] = 105547, + [SMALL_STATE(2513)] = 105614, + [SMALL_STATE(2514)] = 105681, + [SMALL_STATE(2515)] = 105750, + [SMALL_STATE(2516)] = 105819, + [SMALL_STATE(2517)] = 105888, + [SMALL_STATE(2518)] = 105957, + [SMALL_STATE(2519)] = 106026, + [SMALL_STATE(2520)] = 106095, + [SMALL_STATE(2521)] = 106164, + [SMALL_STATE(2522)] = 106233, + [SMALL_STATE(2523)] = 106302, + [SMALL_STATE(2524)] = 106371, + [SMALL_STATE(2525)] = 106440, + [SMALL_STATE(2526)] = 106509, + [SMALL_STATE(2527)] = 106578, + [SMALL_STATE(2528)] = 106647, + [SMALL_STATE(2529)] = 106716, + [SMALL_STATE(2530)] = 106785, + [SMALL_STATE(2531)] = 106854, + [SMALL_STATE(2532)] = 106923, + [SMALL_STATE(2533)] = 106994, + [SMALL_STATE(2534)] = 107065, + [SMALL_STATE(2535)] = 107134, + [SMALL_STATE(2536)] = 107203, + [SMALL_STATE(2537)] = 107270, + [SMALL_STATE(2538)] = 107337, + [SMALL_STATE(2539)] = 107404, + [SMALL_STATE(2540)] = 107471, + [SMALL_STATE(2541)] = 107538, + [SMALL_STATE(2542)] = 107605, + [SMALL_STATE(2543)] = 107672, + [SMALL_STATE(2544)] = 107739, + [SMALL_STATE(2545)] = 107806, + [SMALL_STATE(2546)] = 107873, + [SMALL_STATE(2547)] = 107940, + [SMALL_STATE(2548)] = 108007, + [SMALL_STATE(2549)] = 108074, + [SMALL_STATE(2550)] = 108141, + [SMALL_STATE(2551)] = 108208, + [SMALL_STATE(2552)] = 108275, + [SMALL_STATE(2553)] = 108342, + [SMALL_STATE(2554)] = 108409, + [SMALL_STATE(2555)] = 108476, + [SMALL_STATE(2556)] = 108543, + [SMALL_STATE(2557)] = 108610, + [SMALL_STATE(2558)] = 108677, + [SMALL_STATE(2559)] = 108744, + [SMALL_STATE(2560)] = 108811, + [SMALL_STATE(2561)] = 108878, + [SMALL_STATE(2562)] = 108945, + [SMALL_STATE(2563)] = 109012, + [SMALL_STATE(2564)] = 109079, + [SMALL_STATE(2565)] = 109146, + [SMALL_STATE(2566)] = 109213, + [SMALL_STATE(2567)] = 109280, + [SMALL_STATE(2568)] = 109347, + [SMALL_STATE(2569)] = 109414, + [SMALL_STATE(2570)] = 109481, + [SMALL_STATE(2571)] = 109548, + [SMALL_STATE(2572)] = 109615, + [SMALL_STATE(2573)] = 109682, + [SMALL_STATE(2574)] = 109749, + [SMALL_STATE(2575)] = 109816, + [SMALL_STATE(2576)] = 109883, + [SMALL_STATE(2577)] = 109950, + [SMALL_STATE(2578)] = 110017, + [SMALL_STATE(2579)] = 110084, + [SMALL_STATE(2580)] = 110151, + [SMALL_STATE(2581)] = 110218, + [SMALL_STATE(2582)] = 110285, + [SMALL_STATE(2583)] = 110352, + [SMALL_STATE(2584)] = 110419, + [SMALL_STATE(2585)] = 110486, + [SMALL_STATE(2586)] = 110553, + [SMALL_STATE(2587)] = 110620, + [SMALL_STATE(2588)] = 110687, + [SMALL_STATE(2589)] = 110754, + [SMALL_STATE(2590)] = 110821, + [SMALL_STATE(2591)] = 110888, + [SMALL_STATE(2592)] = 110955, + [SMALL_STATE(2593)] = 111022, + [SMALL_STATE(2594)] = 111089, + [SMALL_STATE(2595)] = 111156, + [SMALL_STATE(2596)] = 111223, + [SMALL_STATE(2597)] = 111290, + [SMALL_STATE(2598)] = 111357, + [SMALL_STATE(2599)] = 111424, + [SMALL_STATE(2600)] = 111491, + [SMALL_STATE(2601)] = 111558, + [SMALL_STATE(2602)] = 111625, + [SMALL_STATE(2603)] = 111692, + [SMALL_STATE(2604)] = 111759, + [SMALL_STATE(2605)] = 111826, + [SMALL_STATE(2606)] = 111893, + [SMALL_STATE(2607)] = 111962, + [SMALL_STATE(2608)] = 112031, + [SMALL_STATE(2609)] = 112100, + [SMALL_STATE(2610)] = 112169, + [SMALL_STATE(2611)] = 112238, + [SMALL_STATE(2612)] = 112307, + [SMALL_STATE(2613)] = 112376, + [SMALL_STATE(2614)] = 112445, + [SMALL_STATE(2615)] = 112514, + [SMALL_STATE(2616)] = 112583, + [SMALL_STATE(2617)] = 112652, + [SMALL_STATE(2618)] = 112721, + [SMALL_STATE(2619)] = 112790, + [SMALL_STATE(2620)] = 112859, + [SMALL_STATE(2621)] = 112928, + [SMALL_STATE(2622)] = 112997, + [SMALL_STATE(2623)] = 113066, + [SMALL_STATE(2624)] = 113135, + [SMALL_STATE(2625)] = 113204, + [SMALL_STATE(2626)] = 113273, + [SMALL_STATE(2627)] = 113340, + [SMALL_STATE(2628)] = 113407, + [SMALL_STATE(2629)] = 113474, + [SMALL_STATE(2630)] = 113541, + [SMALL_STATE(2631)] = 113608, + [SMALL_STATE(2632)] = 113675, + [SMALL_STATE(2633)] = 113748, + [SMALL_STATE(2634)] = 113857, + [SMALL_STATE(2635)] = 113930, + [SMALL_STATE(2636)] = 113997, + [SMALL_STATE(2637)] = 114064, + [SMALL_STATE(2638)] = 114173, + [SMALL_STATE(2639)] = 114286, + [SMALL_STATE(2640)] = 114395, + [SMALL_STATE(2641)] = 114462, + [SMALL_STATE(2642)] = 114529, + [SMALL_STATE(2643)] = 114596, + [SMALL_STATE(2644)] = 114663, + [SMALL_STATE(2645)] = 114730, + [SMALL_STATE(2646)] = 114797, + [SMALL_STATE(2647)] = 114864, + [SMALL_STATE(2648)] = 114931, + [SMALL_STATE(2649)] = 114998, + [SMALL_STATE(2650)] = 115065, + [SMALL_STATE(2651)] = 115132, + [SMALL_STATE(2652)] = 115201, + [SMALL_STATE(2653)] = 115270, + [SMALL_STATE(2654)] = 115383, + [SMALL_STATE(2655)] = 115456, + [SMALL_STATE(2656)] = 115529, + [SMALL_STATE(2657)] = 115602, + [SMALL_STATE(2658)] = 115669, + [SMALL_STATE(2659)] = 115736, + [SMALL_STATE(2660)] = 115809, + [SMALL_STATE(2661)] = 115882, + [SMALL_STATE(2662)] = 115949, + [SMALL_STATE(2663)] = 116018, + [SMALL_STATE(2664)] = 116085, + [SMALL_STATE(2665)] = 116156, + [SMALL_STATE(2666)] = 116225, + [SMALL_STATE(2667)] = 116294, + [SMALL_STATE(2668)] = 116403, + [SMALL_STATE(2669)] = 116469, + [SMALL_STATE(2670)] = 116535, + [SMALL_STATE(2671)] = 116601, + [SMALL_STATE(2672)] = 116667, + [SMALL_STATE(2673)] = 116775, + [SMALL_STATE(2674)] = 116841, + [SMALL_STATE(2675)] = 116911, + [SMALL_STATE(2676)] = 116977, + [SMALL_STATE(2677)] = 117043, + [SMALL_STATE(2678)] = 117113, + [SMALL_STATE(2679)] = 117183, + [SMALL_STATE(2680)] = 117299, + [SMALL_STATE(2681)] = 117369, + [SMALL_STATE(2682)] = 117439, + [SMALL_STATE(2683)] = 117509, + [SMALL_STATE(2684)] = 117579, + [SMALL_STATE(2685)] = 117645, + [SMALL_STATE(2686)] = 117711, + [SMALL_STATE(2687)] = 117777, + [SMALL_STATE(2688)] = 117847, + [SMALL_STATE(2689)] = 117913, + [SMALL_STATE(2690)] = 117979, + [SMALL_STATE(2691)] = 118045, + [SMALL_STATE(2692)] = 118111, + [SMALL_STATE(2693)] = 118177, + [SMALL_STATE(2694)] = 118243, + [SMALL_STATE(2695)] = 118309, + [SMALL_STATE(2696)] = 118379, + [SMALL_STATE(2697)] = 118445, + [SMALL_STATE(2698)] = 118511, + [SMALL_STATE(2699)] = 118577, + [SMALL_STATE(2700)] = 118693, + [SMALL_STATE(2701)] = 118759, + [SMALL_STATE(2702)] = 118825, + [SMALL_STATE(2703)] = 118891, + [SMALL_STATE(2704)] = 118957, + [SMALL_STATE(2705)] = 119023, + [SMALL_STATE(2706)] = 119089, + [SMALL_STATE(2707)] = 119155, + [SMALL_STATE(2708)] = 119221, + [SMALL_STATE(2709)] = 119291, + [SMALL_STATE(2710)] = 119357, + [SMALL_STATE(2711)] = 119473, + [SMALL_STATE(2712)] = 119543, + [SMALL_STATE(2713)] = 119613, + [SMALL_STATE(2714)] = 119683, + [SMALL_STATE(2715)] = 119753, + [SMALL_STATE(2716)] = 119823, + [SMALL_STATE(2717)] = 119935, + [SMALL_STATE(2718)] = 120001, + [SMALL_STATE(2719)] = 120067, + [SMALL_STATE(2720)] = 120183, + [SMALL_STATE(2721)] = 120249, + [SMALL_STATE(2722)] = 120319, + [SMALL_STATE(2723)] = 120385, + [SMALL_STATE(2724)] = 120451, + [SMALL_STATE(2725)] = 120517, + [SMALL_STATE(2726)] = 120583, + [SMALL_STATE(2727)] = 120649, + [SMALL_STATE(2728)] = 120715, + [SMALL_STATE(2729)] = 120781, + [SMALL_STATE(2730)] = 120847, + [SMALL_STATE(2731)] = 120913, + [SMALL_STATE(2732)] = 120979, + [SMALL_STATE(2733)] = 121045, + [SMALL_STATE(2734)] = 121111, + [SMALL_STATE(2735)] = 121177, + [SMALL_STATE(2736)] = 121243, + [SMALL_STATE(2737)] = 121309, + [SMALL_STATE(2738)] = 121375, + [SMALL_STATE(2739)] = 121441, + [SMALL_STATE(2740)] = 121507, + [SMALL_STATE(2741)] = 121573, + [SMALL_STATE(2742)] = 121639, + [SMALL_STATE(2743)] = 121705, + [SMALL_STATE(2744)] = 121771, + [SMALL_STATE(2745)] = 121837, + [SMALL_STATE(2746)] = 121907, + [SMALL_STATE(2747)] = 121973, + [SMALL_STATE(2748)] = 122039, + [SMALL_STATE(2749)] = 122109, + [SMALL_STATE(2750)] = 122175, + [SMALL_STATE(2751)] = 122241, + [SMALL_STATE(2752)] = 122307, + [SMALL_STATE(2753)] = 122373, + [SMALL_STATE(2754)] = 122439, + [SMALL_STATE(2755)] = 122555, + [SMALL_STATE(2756)] = 122621, + [SMALL_STATE(2757)] = 122687, + [SMALL_STATE(2758)] = 122753, + [SMALL_STATE(2759)] = 122819, + [SMALL_STATE(2760)] = 122885, + [SMALL_STATE(2761)] = 122951, + [SMALL_STATE(2762)] = 123017, + [SMALL_STATE(2763)] = 123087, + [SMALL_STATE(2764)] = 123157, + [SMALL_STATE(2765)] = 123223, + [SMALL_STATE(2766)] = 123289, + [SMALL_STATE(2767)] = 123355, + [SMALL_STATE(2768)] = 123421, + [SMALL_STATE(2769)] = 123489, + [SMALL_STATE(2770)] = 123557, + [SMALL_STATE(2771)] = 123623, + [SMALL_STATE(2772)] = 123689, + [SMALL_STATE(2773)] = 123755, + [SMALL_STATE(2774)] = 123821, + [SMALL_STATE(2775)] = 123887, + [SMALL_STATE(2776)] = 123953, + [SMALL_STATE(2777)] = 124019, + [SMALL_STATE(2778)] = 124085, + [SMALL_STATE(2779)] = 124151, + [SMALL_STATE(2780)] = 124217, + [SMALL_STATE(2781)] = 124285, + [SMALL_STATE(2782)] = 124353, + [SMALL_STATE(2783)] = 124421, + [SMALL_STATE(2784)] = 124489, + [SMALL_STATE(2785)] = 124557, + [SMALL_STATE(2786)] = 124625, + [SMALL_STATE(2787)] = 124693, + [SMALL_STATE(2788)] = 124761, + [SMALL_STATE(2789)] = 124829, + [SMALL_STATE(2790)] = 124897, + [SMALL_STATE(2791)] = 124963, + [SMALL_STATE(2792)] = 125029, + [SMALL_STATE(2793)] = 125095, + [SMALL_STATE(2794)] = 125161, + [SMALL_STATE(2795)] = 125227, + [SMALL_STATE(2796)] = 125293, + [SMALL_STATE(2797)] = 125359, + [SMALL_STATE(2798)] = 125425, + [SMALL_STATE(2799)] = 125491, + [SMALL_STATE(2800)] = 125557, + [SMALL_STATE(2801)] = 125623, + [SMALL_STATE(2802)] = 125689, + [SMALL_STATE(2803)] = 125755, + [SMALL_STATE(2804)] = 125821, + [SMALL_STATE(2805)] = 125887, + [SMALL_STATE(2806)] = 125953, + [SMALL_STATE(2807)] = 126019, + [SMALL_STATE(2808)] = 126085, + [SMALL_STATE(2809)] = 126193, + [SMALL_STATE(2810)] = 126259, + [SMALL_STATE(2811)] = 126325, + [SMALL_STATE(2812)] = 126393, + [SMALL_STATE(2813)] = 126459, + [SMALL_STATE(2814)] = 126525, + [SMALL_STATE(2815)] = 126591, + [SMALL_STATE(2816)] = 126659, + [SMALL_STATE(2817)] = 126727, + [SMALL_STATE(2818)] = 126795, + [SMALL_STATE(2819)] = 126863, + [SMALL_STATE(2820)] = 126931, + [SMALL_STATE(2821)] = 126997, + [SMALL_STATE(2822)] = 127063, + [SMALL_STATE(2823)] = 127129, + [SMALL_STATE(2824)] = 127195, + [SMALL_STATE(2825)] = 127261, + [SMALL_STATE(2826)] = 127327, + [SMALL_STATE(2827)] = 127393, + [SMALL_STATE(2828)] = 127459, + [SMALL_STATE(2829)] = 127525, + [SMALL_STATE(2830)] = 127591, + [SMALL_STATE(2831)] = 127699, + [SMALL_STATE(2832)] = 127765, + [SMALL_STATE(2833)] = 127831, + [SMALL_STATE(2834)] = 127897, + [SMALL_STATE(2835)] = 127963, + [SMALL_STATE(2836)] = 128029, + [SMALL_STATE(2837)] = 128095, + [SMALL_STATE(2838)] = 128173, + [SMALL_STATE(2839)] = 128239, + [SMALL_STATE(2840)] = 128309, + [SMALL_STATE(2841)] = 128425, + [SMALL_STATE(2842)] = 128505, + [SMALL_STATE(2843)] = 128571, + [SMALL_STATE(2844)] = 128637, + [SMALL_STATE(2845)] = 128703, + [SMALL_STATE(2846)] = 128769, + [SMALL_STATE(2847)] = 128835, + [SMALL_STATE(2848)] = 128943, + [SMALL_STATE(2849)] = 129009, + [SMALL_STATE(2850)] = 129075, + [SMALL_STATE(2851)] = 129141, + [SMALL_STATE(2852)] = 129207, + [SMALL_STATE(2853)] = 129273, + [SMALL_STATE(2854)] = 129339, + [SMALL_STATE(2855)] = 129409, + [SMALL_STATE(2856)] = 129475, + [SMALL_STATE(2857)] = 129541, + [SMALL_STATE(2858)] = 129607, + [SMALL_STATE(2859)] = 129673, + [SMALL_STATE(2860)] = 129739, + [SMALL_STATE(2861)] = 129805, + [SMALL_STATE(2862)] = 129871, + [SMALL_STATE(2863)] = 129937, + [SMALL_STATE(2864)] = 130003, + [SMALL_STATE(2865)] = 130069, + [SMALL_STATE(2866)] = 130135, + [SMALL_STATE(2867)] = 130201, + [SMALL_STATE(2868)] = 130271, + [SMALL_STATE(2869)] = 130379, + [SMALL_STATE(2870)] = 130449, + [SMALL_STATE(2871)] = 130515, + [SMALL_STATE(2872)] = 130581, + [SMALL_STATE(2873)] = 130647, + [SMALL_STATE(2874)] = 130713, + [SMALL_STATE(2875)] = 130779, + [SMALL_STATE(2876)] = 130849, + [SMALL_STATE(2877)] = 130915, + [SMALL_STATE(2878)] = 131023, + [SMALL_STATE(2879)] = 131131, + [SMALL_STATE(2880)] = 131201, + [SMALL_STATE(2881)] = 131267, + [SMALL_STATE(2882)] = 131375, + [SMALL_STATE(2883)] = 131441, + [SMALL_STATE(2884)] = 131507, + [SMALL_STATE(2885)] = 131575, + [SMALL_STATE(2886)] = 131643, + [SMALL_STATE(2887)] = 131751, + [SMALL_STATE(2888)] = 131817, + [SMALL_STATE(2889)] = 131883, + [SMALL_STATE(2890)] = 131949, + [SMALL_STATE(2891)] = 132021, + [SMALL_STATE(2892)] = 132093, + [SMALL_STATE(2893)] = 132159, + [SMALL_STATE(2894)] = 132231, + [SMALL_STATE(2895)] = 132303, + [SMALL_STATE(2896)] = 132375, + [SMALL_STATE(2897)] = 132441, + [SMALL_STATE(2898)] = 132507, + [SMALL_STATE(2899)] = 132619, + [SMALL_STATE(2900)] = 132685, + [SMALL_STATE(2901)] = 132751, + [SMALL_STATE(2902)] = 132817, + [SMALL_STATE(2903)] = 132883, + [SMALL_STATE(2904)] = 132949, + [SMALL_STATE(2905)] = 133015, + [SMALL_STATE(2906)] = 133081, + [SMALL_STATE(2907)] = 133147, + [SMALL_STATE(2908)] = 133213, + [SMALL_STATE(2909)] = 133279, + [SMALL_STATE(2910)] = 133345, + [SMALL_STATE(2911)] = 133411, + [SMALL_STATE(2912)] = 133481, + [SMALL_STATE(2913)] = 133547, + [SMALL_STATE(2914)] = 133613, + [SMALL_STATE(2915)] = 133683, + [SMALL_STATE(2916)] = 133749, + [SMALL_STATE(2917)] = 133815, + [SMALL_STATE(2918)] = 133881, + [SMALL_STATE(2919)] = 133947, + [SMALL_STATE(2920)] = 134013, + [SMALL_STATE(2921)] = 134079, + [SMALL_STATE(2922)] = 134145, + [SMALL_STATE(2923)] = 134211, + [SMALL_STATE(2924)] = 134277, + [SMALL_STATE(2925)] = 134343, + [SMALL_STATE(2926)] = 134409, + [SMALL_STATE(2927)] = 134475, + [SMALL_STATE(2928)] = 134541, + [SMALL_STATE(2929)] = 134607, + [SMALL_STATE(2930)] = 134673, + [SMALL_STATE(2931)] = 134759, + [SMALL_STATE(2932)] = 134827, + [SMALL_STATE(2933)] = 134893, + [SMALL_STATE(2934)] = 134959, + [SMALL_STATE(2935)] = 135025, + [SMALL_STATE(2936)] = 135091, + [SMALL_STATE(2937)] = 135157, + [SMALL_STATE(2938)] = 135223, + [SMALL_STATE(2939)] = 135289, + [SMALL_STATE(2940)] = 135355, + [SMALL_STATE(2941)] = 135421, + [SMALL_STATE(2942)] = 135487, + [SMALL_STATE(2943)] = 135553, + [SMALL_STATE(2944)] = 135619, + [SMALL_STATE(2945)] = 135685, + [SMALL_STATE(2946)] = 135767, + [SMALL_STATE(2947)] = 135855, + [SMALL_STATE(2948)] = 135957, + [SMALL_STATE(2949)] = 136023, + [SMALL_STATE(2950)] = 136095, + [SMALL_STATE(2951)] = 136169, + [SMALL_STATE(2952)] = 136275, + [SMALL_STATE(2953)] = 136381, + [SMALL_STATE(2954)] = 136447, + [SMALL_STATE(2955)] = 136551, + [SMALL_STATE(2956)] = 136651, + [SMALL_STATE(2957)] = 136749, + [SMALL_STATE(2958)] = 136843, + [SMALL_STATE(2959)] = 136935, + [SMALL_STATE(2960)] = 137025, + [SMALL_STATE(2961)] = 137111, + [SMALL_STATE(2962)] = 137191, + [SMALL_STATE(2963)] = 137271, + [SMALL_STATE(2964)] = 137349, + [SMALL_STATE(2965)] = 137419, + [SMALL_STATE(2966)] = 137485, + [SMALL_STATE(2967)] = 137551, + [SMALL_STATE(2968)] = 137617, + [SMALL_STATE(2969)] = 137683, + [SMALL_STATE(2970)] = 137749, + [SMALL_STATE(2971)] = 137817, + [SMALL_STATE(2972)] = 137883, + [SMALL_STATE(2973)] = 137951, + [SMALL_STATE(2974)] = 138017, + [SMALL_STATE(2975)] = 138083, + [SMALL_STATE(2976)] = 138165, + [SMALL_STATE(2977)] = 138253, + [SMALL_STATE(2978)] = 138355, + [SMALL_STATE(2979)] = 138421, + [SMALL_STATE(2980)] = 138487, + [SMALL_STATE(2981)] = 138553, + [SMALL_STATE(2982)] = 138619, + [SMALL_STATE(2983)] = 138691, + [SMALL_STATE(2984)] = 138765, + [SMALL_STATE(2985)] = 138871, + [SMALL_STATE(2986)] = 138977, + [SMALL_STATE(2987)] = 139043, + [SMALL_STATE(2988)] = 139109, + [SMALL_STATE(2989)] = 139175, + [SMALL_STATE(2990)] = 139241, + [SMALL_STATE(2991)] = 139307, + [SMALL_STATE(2992)] = 139373, + [SMALL_STATE(2993)] = 139477, + [SMALL_STATE(2994)] = 139543, + [SMALL_STATE(2995)] = 139609, + [SMALL_STATE(2996)] = 139709, + [SMALL_STATE(2997)] = 139807, + [SMALL_STATE(2998)] = 139901, + [SMALL_STATE(2999)] = 139993, + [SMALL_STATE(3000)] = 140071, + [SMALL_STATE(3001)] = 140151, + [SMALL_STATE(3002)] = 140231, + [SMALL_STATE(3003)] = 140317, + [SMALL_STATE(3004)] = 140407, + [SMALL_STATE(3005)] = 140473, + [SMALL_STATE(3006)] = 140539, + [SMALL_STATE(3007)] = 140605, + [SMALL_STATE(3008)] = 140671, + [SMALL_STATE(3009)] = 140737, + [SMALL_STATE(3010)] = 140803, + [SMALL_STATE(3011)] = 140869, + [SMALL_STATE(3012)] = 140935, + [SMALL_STATE(3013)] = 141001, + [SMALL_STATE(3014)] = 141067, + [SMALL_STATE(3015)] = 141133, + [SMALL_STATE(3016)] = 141199, + [SMALL_STATE(3017)] = 141265, + [SMALL_STATE(3018)] = 141331, + [SMALL_STATE(3019)] = 141397, + [SMALL_STATE(3020)] = 141463, + [SMALL_STATE(3021)] = 141555, + [SMALL_STATE(3022)] = 141649, + [SMALL_STATE(3023)] = 141715, + [SMALL_STATE(3024)] = 141781, + [SMALL_STATE(3025)] = 141847, + [SMALL_STATE(3026)] = 141913, + [SMALL_STATE(3027)] = 141979, + [SMALL_STATE(3028)] = 142045, + [SMALL_STATE(3029)] = 142111, + [SMALL_STATE(3030)] = 142209, + [SMALL_STATE(3031)] = 142309, + [SMALL_STATE(3032)] = 142413, + [SMALL_STATE(3033)] = 142519, + [SMALL_STATE(3034)] = 142625, + [SMALL_STATE(3035)] = 142699, + [SMALL_STATE(3036)] = 142771, + [SMALL_STATE(3037)] = 142873, + [SMALL_STATE(3038)] = 142961, + [SMALL_STATE(3039)] = 143043, + [SMALL_STATE(3040)] = 143109, + [SMALL_STATE(3041)] = 143175, + [SMALL_STATE(3042)] = 143241, + [SMALL_STATE(3043)] = 143307, + [SMALL_STATE(3044)] = 143373, + [SMALL_STATE(3045)] = 143439, + [SMALL_STATE(3046)] = 143519, + [SMALL_STATE(3047)] = 143589, + [SMALL_STATE(3048)] = 143655, + [SMALL_STATE(3049)] = 143721, + [SMALL_STATE(3050)] = 143787, + [SMALL_STATE(3051)] = 143853, + [SMALL_STATE(3052)] = 143919, + [SMALL_STATE(3053)] = 143985, + [SMALL_STATE(3054)] = 144051, + [SMALL_STATE(3055)] = 144117, + [SMALL_STATE(3056)] = 144183, + [SMALL_STATE(3057)] = 144249, + [SMALL_STATE(3058)] = 144315, + [SMALL_STATE(3059)] = 144385, + [SMALL_STATE(3060)] = 144455, + [SMALL_STATE(3061)] = 144525, + [SMALL_STATE(3062)] = 144591, + [SMALL_STATE(3063)] = 144657, + [SMALL_STATE(3064)] = 144723, + [SMALL_STATE(3065)] = 144789, + [SMALL_STATE(3066)] = 144855, + [SMALL_STATE(3067)] = 144921, + [SMALL_STATE(3068)] = 145029, + [SMALL_STATE(3069)] = 145095, + [SMALL_STATE(3070)] = 145161, + [SMALL_STATE(3071)] = 145227, + [SMALL_STATE(3072)] = 145293, + [SMALL_STATE(3073)] = 145359, + [SMALL_STATE(3074)] = 145425, + [SMALL_STATE(3075)] = 145491, + [SMALL_STATE(3076)] = 145557, + [SMALL_STATE(3077)] = 145623, + [SMALL_STATE(3078)] = 145689, + [SMALL_STATE(3079)] = 145755, + [SMALL_STATE(3080)] = 145821, + [SMALL_STATE(3081)] = 145887, + [SMALL_STATE(3082)] = 145953, + [SMALL_STATE(3083)] = 146019, + [SMALL_STATE(3084)] = 146089, + [SMALL_STATE(3085)] = 146155, + [SMALL_STATE(3086)] = 146221, + [SMALL_STATE(3087)] = 146287, + [SMALL_STATE(3088)] = 146353, + [SMALL_STATE(3089)] = 146419, + [SMALL_STATE(3090)] = 146485, + [SMALL_STATE(3091)] = 146551, + [SMALL_STATE(3092)] = 146617, + [SMALL_STATE(3093)] = 146683, + [SMALL_STATE(3094)] = 146749, + [SMALL_STATE(3095)] = 146815, + [SMALL_STATE(3096)] = 146881, + [SMALL_STATE(3097)] = 146947, + [SMALL_STATE(3098)] = 147013, + [SMALL_STATE(3099)] = 147079, + [SMALL_STATE(3100)] = 147145, + [SMALL_STATE(3101)] = 147211, + [SMALL_STATE(3102)] = 147277, + [SMALL_STATE(3103)] = 147343, + [SMALL_STATE(3104)] = 147409, + [SMALL_STATE(3105)] = 147475, + [SMALL_STATE(3106)] = 147541, + [SMALL_STATE(3107)] = 147607, + [SMALL_STATE(3108)] = 147673, + [SMALL_STATE(3109)] = 147739, + [SMALL_STATE(3110)] = 147805, + [SMALL_STATE(3111)] = 147871, + [SMALL_STATE(3112)] = 147961, + [SMALL_STATE(3113)] = 148029, + [SMALL_STATE(3114)] = 148097, + [SMALL_STATE(3115)] = 148165, + [SMALL_STATE(3116)] = 148233, + [SMALL_STATE(3117)] = 148299, + [SMALL_STATE(3118)] = 148369, + [SMALL_STATE(3119)] = 148477, + [SMALL_STATE(3120)] = 148555, + [SMALL_STATE(3121)] = 148635, + [SMALL_STATE(3122)] = 148715, + [SMALL_STATE(3123)] = 148801, + [SMALL_STATE(3124)] = 148867, + [SMALL_STATE(3125)] = 148975, + [SMALL_STATE(3126)] = 149041, + [SMALL_STATE(3127)] = 149131, + [SMALL_STATE(3128)] = 149197, + [SMALL_STATE(3129)] = 149263, + [SMALL_STATE(3130)] = 149355, + [SMALL_STATE(3131)] = 149449, + [SMALL_STATE(3132)] = 149547, + [SMALL_STATE(3133)] = 149647, + [SMALL_STATE(3134)] = 149751, + [SMALL_STATE(3135)] = 149857, + [SMALL_STATE(3136)] = 149963, + [SMALL_STATE(3137)] = 150037, + [SMALL_STATE(3138)] = 150109, + [SMALL_STATE(3139)] = 150211, + [SMALL_STATE(3140)] = 150299, + [SMALL_STATE(3141)] = 150381, + [SMALL_STATE(3142)] = 150449, + [SMALL_STATE(3143)] = 150517, + [SMALL_STATE(3144)] = 150585, + [SMALL_STATE(3145)] = 150653, + [SMALL_STATE(3146)] = 150721, + [SMALL_STATE(3147)] = 150789, + [SMALL_STATE(3148)] = 150857, + [SMALL_STATE(3149)] = 150923, + [SMALL_STATE(3150)] = 150989, + [SMALL_STATE(3151)] = 151055, + [SMALL_STATE(3152)] = 151121, + [SMALL_STATE(3153)] = 151189, + [SMALL_STATE(3154)] = 151257, + [SMALL_STATE(3155)] = 151325, + [SMALL_STATE(3156)] = 151391, + [SMALL_STATE(3157)] = 151457, + [SMALL_STATE(3158)] = 151523, + [SMALL_STATE(3159)] = 151593, + [SMALL_STATE(3160)] = 151659, + [SMALL_STATE(3161)] = 151725, + [SMALL_STATE(3162)] = 151793, + [SMALL_STATE(3163)] = 151859, + [SMALL_STATE(3164)] = 151925, + [SMALL_STATE(3165)] = 151993, + [SMALL_STATE(3166)] = 152059, + [SMALL_STATE(3167)] = 152125, + [SMALL_STATE(3168)] = 152191, + [SMALL_STATE(3169)] = 152259, + [SMALL_STATE(3170)] = 152327, + [SMALL_STATE(3171)] = 152393, + [SMALL_STATE(3172)] = 152459, + [SMALL_STATE(3173)] = 152525, + [SMALL_STATE(3174)] = 152591, + [SMALL_STATE(3175)] = 152661, + [SMALL_STATE(3176)] = 152727, + [SMALL_STATE(3177)] = 152795, + [SMALL_STATE(3178)] = 152861, + [SMALL_STATE(3179)] = 152927, + [SMALL_STATE(3180)] = 152993, + [SMALL_STATE(3181)] = 153059, + [SMALL_STATE(3182)] = 153125, + [SMALL_STATE(3183)] = 153191, + [SMALL_STATE(3184)] = 153259, + [SMALL_STATE(3185)] = 153327, + [SMALL_STATE(3186)] = 153393, + [SMALL_STATE(3187)] = 153459, + [SMALL_STATE(3188)] = 153525, + [SMALL_STATE(3189)] = 153591, + [SMALL_STATE(3190)] = 153659, + [SMALL_STATE(3191)] = 153727, + [SMALL_STATE(3192)] = 153793, + [SMALL_STATE(3193)] = 153859, + [SMALL_STATE(3194)] = 153925, + [SMALL_STATE(3195)] = 153991, + [SMALL_STATE(3196)] = 154059, + [SMALL_STATE(3197)] = 154124, + [SMALL_STATE(3198)] = 154189, + [SMALL_STATE(3199)] = 154254, + [SMALL_STATE(3200)] = 154355, + [SMALL_STATE(3201)] = 154420, + [SMALL_STATE(3202)] = 154485, + [SMALL_STATE(3203)] = 154590, + [SMALL_STATE(3204)] = 154655, + [SMALL_STATE(3205)] = 154720, + [SMALL_STATE(3206)] = 154785, + [SMALL_STATE(3207)] = 154850, + [SMALL_STATE(3208)] = 154931, + [SMALL_STATE(3209)] = 155018, + [SMALL_STATE(3210)] = 155083, + [SMALL_STATE(3211)] = 155154, + [SMALL_STATE(3212)] = 155227, + [SMALL_STATE(3213)] = 155332, + [SMALL_STATE(3214)] = 155437, + [SMALL_STATE(3215)] = 155502, + [SMALL_STATE(3216)] = 155567, + [SMALL_STATE(3217)] = 155632, + [SMALL_STATE(3218)] = 155735, + [SMALL_STATE(3219)] = 155834, + [SMALL_STATE(3220)] = 155931, + [SMALL_STATE(3221)] = 156024, + [SMALL_STATE(3222)] = 156115, + [SMALL_STATE(3223)] = 156204, + [SMALL_STATE(3224)] = 156289, + [SMALL_STATE(3225)] = 156368, + [SMALL_STATE(3226)] = 156447, + [SMALL_STATE(3227)] = 156524, + [SMALL_STATE(3228)] = 156593, + [SMALL_STATE(3229)] = 156658, + [SMALL_STATE(3230)] = 156727, + [SMALL_STATE(3231)] = 156796, + [SMALL_STATE(3232)] = 156861, + [SMALL_STATE(3233)] = 156926, + [SMALL_STATE(3234)] = 156991, + [SMALL_STATE(3235)] = 157056, + [SMALL_STATE(3236)] = 157121, + [SMALL_STATE(3237)] = 157186, + [SMALL_STATE(3238)] = 157251, + [SMALL_STATE(3239)] = 157316, + [SMALL_STATE(3240)] = 157381, + [SMALL_STATE(3241)] = 157446, + [SMALL_STATE(3242)] = 157511, + [SMALL_STATE(3243)] = 157580, + [SMALL_STATE(3244)] = 157645, + [SMALL_STATE(3245)] = 157710, + [SMALL_STATE(3246)] = 157775, + [SMALL_STATE(3247)] = 157840, + [SMALL_STATE(3248)] = 157905, + [SMALL_STATE(3249)] = 157970, + [SMALL_STATE(3250)] = 158035, + [SMALL_STATE(3251)] = 158100, + [SMALL_STATE(3252)] = 158165, + [SMALL_STATE(3253)] = 158230, + [SMALL_STATE(3254)] = 158295, + [SMALL_STATE(3255)] = 158360, + [SMALL_STATE(3256)] = 158425, + [SMALL_STATE(3257)] = 158492, + [SMALL_STATE(3258)] = 158557, + [SMALL_STATE(3259)] = 158626, + [SMALL_STATE(3260)] = 158691, + [SMALL_STATE(3261)] = 158798, + [SMALL_STATE(3262)] = 158863, + [SMALL_STATE(3263)] = 158928, + [SMALL_STATE(3264)] = 158993, + [SMALL_STATE(3265)] = 159058, + [SMALL_STATE(3266)] = 159123, + [SMALL_STATE(3267)] = 159188, + [SMALL_STATE(3268)] = 159253, + [SMALL_STATE(3269)] = 159318, + [SMALL_STATE(3270)] = 159399, + [SMALL_STATE(3271)] = 159484, + [SMALL_STATE(3272)] = 159583, + [SMALL_STATE(3273)] = 159654, + [SMALL_STATE(3274)] = 159727, + [SMALL_STATE(3275)] = 159830, + [SMALL_STATE(3276)] = 159895, + [SMALL_STATE(3277)] = 159992, + [SMALL_STATE(3278)] = 160057, + [SMALL_STATE(3279)] = 160138, + [SMALL_STATE(3280)] = 160233, + [SMALL_STATE(3281)] = 160324, + [SMALL_STATE(3282)] = 160413, + [SMALL_STATE(3283)] = 160500, + [SMALL_STATE(3284)] = 160583, + [SMALL_STATE(3285)] = 160662, + [SMALL_STATE(3286)] = 160741, + [SMALL_STATE(3287)] = 160810, + [SMALL_STATE(3288)] = 160887, + [SMALL_STATE(3289)] = 160952, + [SMALL_STATE(3290)] = 161017, + [SMALL_STATE(3291)] = 161082, + [SMALL_STATE(3292)] = 161147, + [SMALL_STATE(3293)] = 161212, + [SMALL_STATE(3294)] = 161277, + [SMALL_STATE(3295)] = 161342, + [SMALL_STATE(3296)] = 161407, + [SMALL_STATE(3297)] = 161472, + [SMALL_STATE(3298)] = 161537, + [SMALL_STATE(3299)] = 161602, + [SMALL_STATE(3300)] = 161667, + [SMALL_STATE(3301)] = 161736, + [SMALL_STATE(3302)] = 161803, + [SMALL_STATE(3303)] = 161870, + [SMALL_STATE(3304)] = 161935, + [SMALL_STATE(3305)] = 162000, + [SMALL_STATE(3306)] = 162065, + [SMALL_STATE(3307)] = 162130, + [SMALL_STATE(3308)] = 162195, + [SMALL_STATE(3309)] = 162260, + [SMALL_STATE(3310)] = 162325, + [SMALL_STATE(3311)] = 162390, + [SMALL_STATE(3312)] = 162455, + [SMALL_STATE(3313)] = 162520, + [SMALL_STATE(3314)] = 162585, + [SMALL_STATE(3315)] = 162650, + [SMALL_STATE(3316)] = 162715, + [SMALL_STATE(3317)] = 162780, + [SMALL_STATE(3318)] = 162845, + [SMALL_STATE(3319)] = 162910, + [SMALL_STATE(3320)] = 162975, + [SMALL_STATE(3321)] = 163040, + [SMALL_STATE(3322)] = 163105, + [SMALL_STATE(3323)] = 163170, + [SMALL_STATE(3324)] = 163235, + [SMALL_STATE(3325)] = 163300, + [SMALL_STATE(3326)] = 163365, + [SMALL_STATE(3327)] = 163430, + [SMALL_STATE(3328)] = 163495, + [SMALL_STATE(3329)] = 163560, + [SMALL_STATE(3330)] = 163625, + [SMALL_STATE(3331)] = 163690, + [SMALL_STATE(3332)] = 163755, + [SMALL_STATE(3333)] = 163856, + [SMALL_STATE(3334)] = 163959, + [SMALL_STATE(3335)] = 164024, + [SMALL_STATE(3336)] = 164089, + [SMALL_STATE(3337)] = 164154, + [SMALL_STATE(3338)] = 164219, + [SMALL_STATE(3339)] = 164284, + [SMALL_STATE(3340)] = 164349, + [SMALL_STATE(3341)] = 164414, + [SMALL_STATE(3342)] = 164479, + [SMALL_STATE(3343)] = 164544, + [SMALL_STATE(3344)] = 164609, + [SMALL_STATE(3345)] = 164674, + [SMALL_STATE(3346)] = 164739, + [SMALL_STATE(3347)] = 164804, + [SMALL_STATE(3348)] = 164869, + [SMALL_STATE(3349)] = 164934, + [SMALL_STATE(3350)] = 164999, + [SMALL_STATE(3351)] = 165064, + [SMALL_STATE(3352)] = 165129, + [SMALL_STATE(3353)] = 165194, + [SMALL_STATE(3354)] = 165259, + [SMALL_STATE(3355)] = 165328, + [SMALL_STATE(3356)] = 165393, + [SMALL_STATE(3357)] = 165458, + [SMALL_STATE(3358)] = 165523, + [SMALL_STATE(3359)] = 165588, + [SMALL_STATE(3360)] = 165653, + [SMALL_STATE(3361)] = 165718, + [SMALL_STATE(3362)] = 165783, + [SMALL_STATE(3363)] = 165848, + [SMALL_STATE(3364)] = 165913, + [SMALL_STATE(3365)] = 165980, + [SMALL_STATE(3366)] = 166047, + [SMALL_STATE(3367)] = 166114, + [SMALL_STATE(3368)] = 166181, + [SMALL_STATE(3369)] = 166248, + [SMALL_STATE(3370)] = 166315, + [SMALL_STATE(3371)] = 166384, + [SMALL_STATE(3372)] = 166449, + [SMALL_STATE(3373)] = 166518, + [SMALL_STATE(3374)] = 166583, + [SMALL_STATE(3375)] = 166652, + [SMALL_STATE(3376)] = 166721, + [SMALL_STATE(3377)] = 166788, + [SMALL_STATE(3378)] = 166855, + [SMALL_STATE(3379)] = 166920, + [SMALL_STATE(3380)] = 166985, + [SMALL_STATE(3381)] = 167050, + [SMALL_STATE(3382)] = 167115, + [SMALL_STATE(3383)] = 167180, + [SMALL_STATE(3384)] = 167245, + [SMALL_STATE(3385)] = 167310, + [SMALL_STATE(3386)] = 167379, + [SMALL_STATE(3387)] = 167456, + [SMALL_STATE(3388)] = 167535, + [SMALL_STATE(3389)] = 167614, + [SMALL_STATE(3390)] = 167699, + [SMALL_STATE(3391)] = 167788, + [SMALL_STATE(3392)] = 167879, + [SMALL_STATE(3393)] = 167972, + [SMALL_STATE(3394)] = 168069, + [SMALL_STATE(3395)] = 168168, + [SMALL_STATE(3396)] = 168271, + [SMALL_STATE(3397)] = 168376, + [SMALL_STATE(3398)] = 168481, + [SMALL_STATE(3399)] = 168554, + [SMALL_STATE(3400)] = 168625, + [SMALL_STATE(3401)] = 168726, + [SMALL_STATE(3402)] = 168813, + [SMALL_STATE(3403)] = 168878, + [SMALL_STATE(3404)] = 168945, + [SMALL_STATE(3405)] = 169012, + [SMALL_STATE(3406)] = 169077, + [SMALL_STATE(3407)] = 169142, + [SMALL_STATE(3408)] = 169209, + [SMALL_STATE(3409)] = 169276, + [SMALL_STATE(3410)] = 169343, + [SMALL_STATE(3411)] = 169410, + [SMALL_STATE(3412)] = 169477, + [SMALL_STATE(3413)] = 169542, + [SMALL_STATE(3414)] = 169609, + [SMALL_STATE(3415)] = 169676, + [SMALL_STATE(3416)] = 169743, + [SMALL_STATE(3417)] = 169810, + [SMALL_STATE(3418)] = 169877, + [SMALL_STATE(3419)] = 169944, + [SMALL_STATE(3420)] = 170011, + [SMALL_STATE(3421)] = 170078, + [SMALL_STATE(3422)] = 170145, + [SMALL_STATE(3423)] = 170212, + [SMALL_STATE(3424)] = 170279, + [SMALL_STATE(3425)] = 170346, + [SMALL_STATE(3426)] = 170413, + [SMALL_STATE(3427)] = 170480, + [SMALL_STATE(3428)] = 170545, + [SMALL_STATE(3429)] = 170610, + [SMALL_STATE(3430)] = 170675, + [SMALL_STATE(3431)] = 170782, + [SMALL_STATE(3432)] = 170851, + [SMALL_STATE(3433)] = 170916, + [SMALL_STATE(3434)] = 170993, + [SMALL_STATE(3435)] = 171072, + [SMALL_STATE(3436)] = 171179, + [SMALL_STATE(3437)] = 171248, + [SMALL_STATE(3438)] = 171327, + [SMALL_STATE(3439)] = 171412, + [SMALL_STATE(3440)] = 171501, + [SMALL_STATE(3441)] = 171592, + [SMALL_STATE(3442)] = 171685, + [SMALL_STATE(3443)] = 171782, + [SMALL_STATE(3444)] = 171881, + [SMALL_STATE(3445)] = 171984, + [SMALL_STATE(3446)] = 172089, + [SMALL_STATE(3447)] = 172194, + [SMALL_STATE(3448)] = 172259, + [SMALL_STATE(3449)] = 172324, + [SMALL_STATE(3450)] = 172389, + [SMALL_STATE(3451)] = 172462, + [SMALL_STATE(3452)] = 172527, + [SMALL_STATE(3453)] = 172598, + [SMALL_STATE(3454)] = 172699, + [SMALL_STATE(3455)] = 172786, + [SMALL_STATE(3456)] = 172867, + [SMALL_STATE(3457)] = 172932, + [SMALL_STATE(3458)] = 172997, + [SMALL_STATE(3459)] = 173062, + [SMALL_STATE(3460)] = 173127, + [SMALL_STATE(3461)] = 173194, + [SMALL_STATE(3462)] = 173261, + [SMALL_STATE(3463)] = 173326, + [SMALL_STATE(3464)] = 173391, + [SMALL_STATE(3465)] = 173460, + [SMALL_STATE(3466)] = 173525, + [SMALL_STATE(3467)] = 173590, + [SMALL_STATE(3468)] = 173655, + [SMALL_STATE(3469)] = 173720, + [SMALL_STATE(3470)] = 173785, + [SMALL_STATE(3471)] = 173850, + [SMALL_STATE(3472)] = 173915, + [SMALL_STATE(3473)] = 173980, + [SMALL_STATE(3474)] = 174045, + [SMALL_STATE(3475)] = 174110, + [SMALL_STATE(3476)] = 174175, + [SMALL_STATE(3477)] = 174240, + [SMALL_STATE(3478)] = 174305, + [SMALL_STATE(3479)] = 174370, + [SMALL_STATE(3480)] = 174435, + [SMALL_STATE(3481)] = 174500, + [SMALL_STATE(3482)] = 174565, + [SMALL_STATE(3483)] = 174630, + [SMALL_STATE(3484)] = 174695, + [SMALL_STATE(3485)] = 174760, + [SMALL_STATE(3486)] = 174825, + [SMALL_STATE(3487)] = 174890, + [SMALL_STATE(3488)] = 174955, + [SMALL_STATE(3489)] = 175020, + [SMALL_STATE(3490)] = 175085, + [SMALL_STATE(3491)] = 175150, + [SMALL_STATE(3492)] = 175215, + [SMALL_STATE(3493)] = 175280, + [SMALL_STATE(3494)] = 175345, + [SMALL_STATE(3495)] = 175450, + [SMALL_STATE(3496)] = 175515, + [SMALL_STATE(3497)] = 175584, + [SMALL_STATE(3498)] = 175649, + [SMALL_STATE(3499)] = 175718, + [SMALL_STATE(3500)] = 175825, + [SMALL_STATE(3501)] = 175890, + [SMALL_STATE(3502)] = 175955, + [SMALL_STATE(3503)] = 176020, + [SMALL_STATE(3504)] = 176087, + [SMALL_STATE(3505)] = 176154, + [SMALL_STATE(3506)] = 176219, + [SMALL_STATE(3507)] = 176284, + [SMALL_STATE(3508)] = 176349, + [SMALL_STATE(3509)] = 176414, + [SMALL_STATE(3510)] = 176479, + [SMALL_STATE(3511)] = 176544, + [SMALL_STATE(3512)] = 176609, + [SMALL_STATE(3513)] = 176674, + [SMALL_STATE(3514)] = 176739, + [SMALL_STATE(3515)] = 176804, + [SMALL_STATE(3516)] = 176869, + [SMALL_STATE(3517)] = 176934, + [SMALL_STATE(3518)] = 176999, + [SMALL_STATE(3519)] = 177064, + [SMALL_STATE(3520)] = 177129, + [SMALL_STATE(3521)] = 177194, + [SMALL_STATE(3522)] = 177259, + [SMALL_STATE(3523)] = 177324, + [SMALL_STATE(3524)] = 177389, + [SMALL_STATE(3525)] = 177454, + [SMALL_STATE(3526)] = 177519, + [SMALL_STATE(3527)] = 177584, + [SMALL_STATE(3528)] = 177649, + [SMALL_STATE(3529)] = 177714, + [SMALL_STATE(3530)] = 177779, + [SMALL_STATE(3531)] = 177844, + [SMALL_STATE(3532)] = 177909, + [SMALL_STATE(3533)] = 177974, + [SMALL_STATE(3534)] = 178039, + [SMALL_STATE(3535)] = 178104, + [SMALL_STATE(3536)] = 178169, + [SMALL_STATE(3537)] = 178234, + [SMALL_STATE(3538)] = 178301, + [SMALL_STATE(3539)] = 178366, + [SMALL_STATE(3540)] = 178433, + [SMALL_STATE(3541)] = 178498, + [SMALL_STATE(3542)] = 178563, + [SMALL_STATE(3543)] = 178628, + [SMALL_STATE(3544)] = 178693, + [SMALL_STATE(3545)] = 178760, + [SMALL_STATE(3546)] = 178825, + [SMALL_STATE(3547)] = 178890, + [SMALL_STATE(3548)] = 178955, + [SMALL_STATE(3549)] = 179020, + [SMALL_STATE(3550)] = 179085, + [SMALL_STATE(3551)] = 179150, + [SMALL_STATE(3552)] = 179215, + [SMALL_STATE(3553)] = 179282, + [SMALL_STATE(3554)] = 179347, + [SMALL_STATE(3555)] = 179412, + [SMALL_STATE(3556)] = 179477, + [SMALL_STATE(3557)] = 179542, + [SMALL_STATE(3558)] = 179607, + [SMALL_STATE(3559)] = 179672, + [SMALL_STATE(3560)] = 179737, + [SMALL_STATE(3561)] = 179802, + [SMALL_STATE(3562)] = 179867, + [SMALL_STATE(3563)] = 179932, + [SMALL_STATE(3564)] = 179997, + [SMALL_STATE(3565)] = 180102, + [SMALL_STATE(3566)] = 180169, + [SMALL_STATE(3567)] = 180236, + [SMALL_STATE(3568)] = 180303, + [SMALL_STATE(3569)] = 180370, + [SMALL_STATE(3570)] = 180435, + [SMALL_STATE(3571)] = 180500, + [SMALL_STATE(3572)] = 180565, + [SMALL_STATE(3573)] = 180630, + [SMALL_STATE(3574)] = 180695, + [SMALL_STATE(3575)] = 180760, + [SMALL_STATE(3576)] = 180825, + [SMALL_STATE(3577)] = 180890, + [SMALL_STATE(3578)] = 180955, + [SMALL_STATE(3579)] = 181020, + [SMALL_STATE(3580)] = 181085, + [SMALL_STATE(3581)] = 181150, + [SMALL_STATE(3582)] = 181217, + [SMALL_STATE(3583)] = 181284, + [SMALL_STATE(3584)] = 181351, + [SMALL_STATE(3585)] = 181416, + [SMALL_STATE(3586)] = 181481, + [SMALL_STATE(3587)] = 181546, + [SMALL_STATE(3588)] = 181611, + [SMALL_STATE(3589)] = 181678, + [SMALL_STATE(3590)] = 181745, + [SMALL_STATE(3591)] = 181812, + [SMALL_STATE(3592)] = 181879, + [SMALL_STATE(3593)] = 181946, + [SMALL_STATE(3594)] = 182013, + [SMALL_STATE(3595)] = 182080, + [SMALL_STATE(3596)] = 182147, + [SMALL_STATE(3597)] = 182214, + [SMALL_STATE(3598)] = 182281, + [SMALL_STATE(3599)] = 182348, + [SMALL_STATE(3600)] = 182415, + [SMALL_STATE(3601)] = 182482, + [SMALL_STATE(3602)] = 182549, + [SMALL_STATE(3603)] = 182616, + [SMALL_STATE(3604)] = 182683, + [SMALL_STATE(3605)] = 182750, + [SMALL_STATE(3606)] = 182815, + [SMALL_STATE(3607)] = 182880, + [SMALL_STATE(3608)] = 182945, + [SMALL_STATE(3609)] = 183010, + [SMALL_STATE(3610)] = 183077, + [SMALL_STATE(3611)] = 183142, + [SMALL_STATE(3612)] = 183207, + [SMALL_STATE(3613)] = 183274, + [SMALL_STATE(3614)] = 183341, + [SMALL_STATE(3615)] = 183408, + [SMALL_STATE(3616)] = 183515, + [SMALL_STATE(3617)] = 183622, + [SMALL_STATE(3618)] = 183687, + [SMALL_STATE(3619)] = 183752, + [SMALL_STATE(3620)] = 183817, + [SMALL_STATE(3621)] = 183882, + [SMALL_STATE(3622)] = 183989, + [SMALL_STATE(3623)] = 184056, + [SMALL_STATE(3624)] = 184123, + [SMALL_STATE(3625)] = 184190, + [SMALL_STATE(3626)] = 184259, + [SMALL_STATE(3627)] = 184328, + [SMALL_STATE(3628)] = 184397, + [SMALL_STATE(3629)] = 184462, + [SMALL_STATE(3630)] = 184529, + [SMALL_STATE(3631)] = 184594, + [SMALL_STATE(3632)] = 184659, + [SMALL_STATE(3633)] = 184724, + [SMALL_STATE(3634)] = 184789, + [SMALL_STATE(3635)] = 184854, + [SMALL_STATE(3636)] = 184919, + [SMALL_STATE(3637)] = 184984, + [SMALL_STATE(3638)] = 185051, + [SMALL_STATE(3639)] = 185118, + [SMALL_STATE(3640)] = 185185, + [SMALL_STATE(3641)] = 185252, + [SMALL_STATE(3642)] = 185319, + [SMALL_STATE(3643)] = 185384, + [SMALL_STATE(3644)] = 185449, + [SMALL_STATE(3645)] = 185514, + [SMALL_STATE(3646)] = 185621, + [SMALL_STATE(3647)] = 185686, + [SMALL_STATE(3648)] = 185795, + [SMALL_STATE(3649)] = 185860, + [SMALL_STATE(3650)] = 185925, + [SMALL_STATE(3651)] = 185990, + [SMALL_STATE(3652)] = 186055, + [SMALL_STATE(3653)] = 186122, + [SMALL_STATE(3654)] = 186189, + [SMALL_STATE(3655)] = 186256, + [SMALL_STATE(3656)] = 186323, + [SMALL_STATE(3657)] = 186390, + [SMALL_STATE(3658)] = 186457, + [SMALL_STATE(3659)] = 186524, + [SMALL_STATE(3660)] = 186589, + [SMALL_STATE(3661)] = 186653, + [SMALL_STATE(3662)] = 186717, + [SMALL_STATE(3663)] = 186781, + [SMALL_STATE(3664)] = 186845, + [SMALL_STATE(3665)] = 186909, + [SMALL_STATE(3666)] = 186973, + [SMALL_STATE(3667)] = 187037, + [SMALL_STATE(3668)] = 187101, + [SMALL_STATE(3669)] = 187165, + [SMALL_STATE(3670)] = 187271, + [SMALL_STATE(3671)] = 187335, + [SMALL_STATE(3672)] = 187441, + [SMALL_STATE(3673)] = 187509, + [SMALL_STATE(3674)] = 187577, + [SMALL_STATE(3675)] = 187641, + [SMALL_STATE(3676)] = 187717, + [SMALL_STATE(3677)] = 187795, + [SMALL_STATE(3678)] = 187873, + [SMALL_STATE(3679)] = 187957, + [SMALL_STATE(3680)] = 188045, + [SMALL_STATE(3681)] = 188135, + [SMALL_STATE(3682)] = 188227, + [SMALL_STATE(3683)] = 188323, + [SMALL_STATE(3684)] = 188421, + [SMALL_STATE(3685)] = 188523, + [SMALL_STATE(3686)] = 188627, + [SMALL_STATE(3687)] = 188731, + [SMALL_STATE(3688)] = 188803, + [SMALL_STATE(3689)] = 188873, + [SMALL_STATE(3690)] = 188973, + [SMALL_STATE(3691)] = 189059, + [SMALL_STATE(3692)] = 189123, + [SMALL_STATE(3693)] = 189187, + [SMALL_STATE(3694)] = 189267, + [SMALL_STATE(3695)] = 189335, + [SMALL_STATE(3696)] = 189399, + [SMALL_STATE(3697)] = 189463, + [SMALL_STATE(3698)] = 189527, + [SMALL_STATE(3699)] = 189591, + [SMALL_STATE(3700)] = 189697, + [SMALL_STATE(3701)] = 189761, + [SMALL_STATE(3702)] = 189825, + [SMALL_STATE(3703)] = 189889, + [SMALL_STATE(3704)] = 189953, + [SMALL_STATE(3705)] = 190021, + [SMALL_STATE(3706)] = 190085, + [SMALL_STATE(3707)] = 190149, + [SMALL_STATE(3708)] = 190217, + [SMALL_STATE(3709)] = 190293, + [SMALL_STATE(3710)] = 190371, + [SMALL_STATE(3711)] = 190449, + [SMALL_STATE(3712)] = 190533, + [SMALL_STATE(3713)] = 190621, + [SMALL_STATE(3714)] = 190711, + [SMALL_STATE(3715)] = 190803, + [SMALL_STATE(3716)] = 190899, + [SMALL_STATE(3717)] = 190997, + [SMALL_STATE(3718)] = 191099, + [SMALL_STATE(3719)] = 191203, + [SMALL_STATE(3720)] = 191307, + [SMALL_STATE(3721)] = 191379, + [SMALL_STATE(3722)] = 191449, + [SMALL_STATE(3723)] = 191549, + [SMALL_STATE(3724)] = 191635, + [SMALL_STATE(3725)] = 191715, + [SMALL_STATE(3726)] = 191779, + [SMALL_STATE(3727)] = 191847, + [SMALL_STATE(3728)] = 191953, + [SMALL_STATE(3729)] = 192017, + [SMALL_STATE(3730)] = 192125, + [SMALL_STATE(3731)] = 192189, + [SMALL_STATE(3732)] = 192253, + [SMALL_STATE(3733)] = 192317, + [SMALL_STATE(3734)] = 192381, + [SMALL_STATE(3735)] = 192445, + [SMALL_STATE(3736)] = 192509, + [SMALL_STATE(3737)] = 192573, + [SMALL_STATE(3738)] = 192637, + [SMALL_STATE(3739)] = 192701, + [SMALL_STATE(3740)] = 192765, + [SMALL_STATE(3741)] = 192829, + [SMALL_STATE(3742)] = 192893, + [SMALL_STATE(3743)] = 192957, + [SMALL_STATE(3744)] = 193021, + [SMALL_STATE(3745)] = 193085, + [SMALL_STATE(3746)] = 193149, + [SMALL_STATE(3747)] = 193213, + [SMALL_STATE(3748)] = 193277, + [SMALL_STATE(3749)] = 193341, + [SMALL_STATE(3750)] = 193405, + [SMALL_STATE(3751)] = 193469, + [SMALL_STATE(3752)] = 193533, + [SMALL_STATE(3753)] = 193597, + [SMALL_STATE(3754)] = 193661, + [SMALL_STATE(3755)] = 193725, + [SMALL_STATE(3756)] = 193789, + [SMALL_STATE(3757)] = 193853, + [SMALL_STATE(3758)] = 193917, + [SMALL_STATE(3759)] = 193981, + [SMALL_STATE(3760)] = 194045, + [SMALL_STATE(3761)] = 194109, + [SMALL_STATE(3762)] = 194173, + [SMALL_STATE(3763)] = 194237, + [SMALL_STATE(3764)] = 194301, + [SMALL_STATE(3765)] = 194365, + [SMALL_STATE(3766)] = 194429, + [SMALL_STATE(3767)] = 194493, + [SMALL_STATE(3768)] = 194557, + [SMALL_STATE(3769)] = 194621, + [SMALL_STATE(3770)] = 194685, + [SMALL_STATE(3771)] = 194749, + [SMALL_STATE(3772)] = 194813, + [SMALL_STATE(3773)] = 194877, + [SMALL_STATE(3774)] = 194941, + [SMALL_STATE(3775)] = 195009, + [SMALL_STATE(3776)] = 195085, + [SMALL_STATE(3777)] = 195163, + [SMALL_STATE(3778)] = 195241, + [SMALL_STATE(3779)] = 195323, + [SMALL_STATE(3780)] = 195409, + [SMALL_STATE(3781)] = 195497, + [SMALL_STATE(3782)] = 195587, + [SMALL_STATE(3783)] = 195681, + [SMALL_STATE(3784)] = 195777, + [SMALL_STATE(3785)] = 195877, + [SMALL_STATE(3786)] = 195941, + [SMALL_STATE(3787)] = 196043, + [SMALL_STATE(3788)] = 196145, + [SMALL_STATE(3789)] = 196217, + [SMALL_STATE(3790)] = 196287, + [SMALL_STATE(3791)] = 196351, + [SMALL_STATE(3792)] = 196449, + [SMALL_STATE(3793)] = 196533, + [SMALL_STATE(3794)] = 196613, + [SMALL_STATE(3795)] = 196677, + [SMALL_STATE(3796)] = 196741, + [SMALL_STATE(3797)] = 196805, + [SMALL_STATE(3798)] = 196869, + [SMALL_STATE(3799)] = 196933, + [SMALL_STATE(3800)] = 196997, + [SMALL_STATE(3801)] = 197061, + [SMALL_STATE(3802)] = 197125, + [SMALL_STATE(3803)] = 197189, + [SMALL_STATE(3804)] = 197257, + [SMALL_STATE(3805)] = 197321, + [SMALL_STATE(3806)] = 197385, + [SMALL_STATE(3807)] = 197449, + [SMALL_STATE(3808)] = 197513, + [SMALL_STATE(3809)] = 197577, + [SMALL_STATE(3810)] = 197641, + [SMALL_STATE(3811)] = 197705, + [SMALL_STATE(3812)] = 197769, + [SMALL_STATE(3813)] = 197833, + [SMALL_STATE(3814)] = 197897, + [SMALL_STATE(3815)] = 197961, + [SMALL_STATE(3816)] = 198029, + [SMALL_STATE(3817)] = 198093, + [SMALL_STATE(3818)] = 198157, + [SMALL_STATE(3819)] = 198261, + [SMALL_STATE(3820)] = 198325, + [SMALL_STATE(3821)] = 198389, + [SMALL_STATE(3822)] = 198453, + [SMALL_STATE(3823)] = 198517, + [SMALL_STATE(3824)] = 198581, + [SMALL_STATE(3825)] = 198645, + [SMALL_STATE(3826)] = 198709, + [SMALL_STATE(3827)] = 198775, + [SMALL_STATE(3828)] = 198839, + [SMALL_STATE(3829)] = 198903, + [SMALL_STATE(3830)] = 198969, + [SMALL_STATE(3831)] = 199077, + [SMALL_STATE(3832)] = 199141, + [SMALL_STATE(3833)] = 199205, + [SMALL_STATE(3834)] = 199269, + [SMALL_STATE(3835)] = 199333, + [SMALL_STATE(3836)] = 199397, + [SMALL_STATE(3837)] = 199461, + [SMALL_STATE(3838)] = 199525, + [SMALL_STATE(3839)] = 199589, + [SMALL_STATE(3840)] = 199653, + [SMALL_STATE(3841)] = 199759, + [SMALL_STATE(3842)] = 199823, + [SMALL_STATE(3843)] = 199887, + [SMALL_STATE(3844)] = 199951, + [SMALL_STATE(3845)] = 200015, + [SMALL_STATE(3846)] = 200079, + [SMALL_STATE(3847)] = 200143, + [SMALL_STATE(3848)] = 200211, + [SMALL_STATE(3849)] = 200275, + [SMALL_STATE(3850)] = 200339, + [SMALL_STATE(3851)] = 200403, + [SMALL_STATE(3852)] = 200467, + [SMALL_STATE(3853)] = 200575, + [SMALL_STATE(3854)] = 200639, + [SMALL_STATE(3855)] = 200703, + [SMALL_STATE(3856)] = 200767, + [SMALL_STATE(3857)] = 200831, + [SMALL_STATE(3858)] = 200895, + [SMALL_STATE(3859)] = 200963, + [SMALL_STATE(3860)] = 201027, + [SMALL_STATE(3861)] = 201091, + [SMALL_STATE(3862)] = 201155, + [SMALL_STATE(3863)] = 201219, + [SMALL_STATE(3864)] = 201283, + [SMALL_STATE(3865)] = 201347, + [SMALL_STATE(3866)] = 201411, + [SMALL_STATE(3867)] = 201475, + [SMALL_STATE(3868)] = 201579, + [SMALL_STATE(3869)] = 201643, + [SMALL_STATE(3870)] = 201711, + [SMALL_STATE(3871)] = 201775, + [SMALL_STATE(3872)] = 201839, + [SMALL_STATE(3873)] = 201907, + [SMALL_STATE(3874)] = 201975, + [SMALL_STATE(3875)] = 202039, + [SMALL_STATE(3876)] = 202103, + [SMALL_STATE(3877)] = 202167, + [SMALL_STATE(3878)] = 202231, + [SMALL_STATE(3879)] = 202295, + [SMALL_STATE(3880)] = 202359, + [SMALL_STATE(3881)] = 202423, + [SMALL_STATE(3882)] = 202487, + [SMALL_STATE(3883)] = 202555, + [SMALL_STATE(3884)] = 202623, + [SMALL_STATE(3885)] = 202691, + [SMALL_STATE(3886)] = 202755, + [SMALL_STATE(3887)] = 202819, + [SMALL_STATE(3888)] = 202883, + [SMALL_STATE(3889)] = 202947, + [SMALL_STATE(3890)] = 203011, + [SMALL_STATE(3891)] = 203075, + [SMALL_STATE(3892)] = 203139, + [SMALL_STATE(3893)] = 203203, + [SMALL_STATE(3894)] = 203267, + [SMALL_STATE(3895)] = 203331, + [SMALL_STATE(3896)] = 203395, + [SMALL_STATE(3897)] = 203459, + [SMALL_STATE(3898)] = 203523, + [SMALL_STATE(3899)] = 203587, + [SMALL_STATE(3900)] = 203651, + [SMALL_STATE(3901)] = 203715, + [SMALL_STATE(3902)] = 203779, + [SMALL_STATE(3903)] = 203843, + [SMALL_STATE(3904)] = 203907, + [SMALL_STATE(3905)] = 203971, + [SMALL_STATE(3906)] = 204035, + [SMALL_STATE(3907)] = 204099, + [SMALL_STATE(3908)] = 204165, + [SMALL_STATE(3909)] = 204231, + [SMALL_STATE(3910)] = 204297, + [SMALL_STATE(3911)] = 204361, + [SMALL_STATE(3912)] = 204427, + [SMALL_STATE(3913)] = 204491, + [SMALL_STATE(3914)] = 204555, + [SMALL_STATE(3915)] = 204619, + [SMALL_STATE(3916)] = 204683, + [SMALL_STATE(3917)] = 204749, + [SMALL_STATE(3918)] = 204815, + [SMALL_STATE(3919)] = 204879, + [SMALL_STATE(3920)] = 204945, + [SMALL_STATE(3921)] = 205011, + [SMALL_STATE(3922)] = 205077, + [SMALL_STATE(3923)] = 205143, + [SMALL_STATE(3924)] = 205207, + [SMALL_STATE(3925)] = 205273, + [SMALL_STATE(3926)] = 205339, + [SMALL_STATE(3927)] = 205403, + [SMALL_STATE(3928)] = 205469, + [SMALL_STATE(3929)] = 205535, + [SMALL_STATE(3930)] = 205601, + [SMALL_STATE(3931)] = 205667, + [SMALL_STATE(3932)] = 205731, + [SMALL_STATE(3933)] = 205797, + [SMALL_STATE(3934)] = 205861, + [SMALL_STATE(3935)] = 205925, + [SMALL_STATE(3936)] = 205989, + [SMALL_STATE(3937)] = 206055, + [SMALL_STATE(3938)] = 206119, + [SMALL_STATE(3939)] = 206183, + [SMALL_STATE(3940)] = 206247, + [SMALL_STATE(3941)] = 206311, + [SMALL_STATE(3942)] = 206375, + [SMALL_STATE(3943)] = 206439, + [SMALL_STATE(3944)] = 206503, + [SMALL_STATE(3945)] = 206567, + [SMALL_STATE(3946)] = 206631, + [SMALL_STATE(3947)] = 206695, + [SMALL_STATE(3948)] = 206759, + [SMALL_STATE(3949)] = 206823, + [SMALL_STATE(3950)] = 206887, + [SMALL_STATE(3951)] = 206951, + [SMALL_STATE(3952)] = 207015, + [SMALL_STATE(3953)] = 207079, + [SMALL_STATE(3954)] = 207143, + [SMALL_STATE(3955)] = 207207, + [SMALL_STATE(3956)] = 207315, + [SMALL_STATE(3957)] = 207379, + [SMALL_STATE(3958)] = 207443, + [SMALL_STATE(3959)] = 207509, + [SMALL_STATE(3960)] = 207587, + [SMALL_STATE(3961)] = 207651, + [SMALL_STATE(3962)] = 207719, + [SMALL_STATE(3963)] = 207795, + [SMALL_STATE(3964)] = 207873, + [SMALL_STATE(3965)] = 207957, + [SMALL_STATE(3966)] = 208045, + [SMALL_STATE(3967)] = 208135, + [SMALL_STATE(3968)] = 208227, + [SMALL_STATE(3969)] = 208323, + [SMALL_STATE(3970)] = 208421, + [SMALL_STATE(3971)] = 208523, + [SMALL_STATE(3972)] = 208587, + [SMALL_STATE(3973)] = 208691, + [SMALL_STATE(3974)] = 208795, + [SMALL_STATE(3975)] = 208867, + [SMALL_STATE(3976)] = 208937, + [SMALL_STATE(3977)] = 209001, + [SMALL_STATE(3978)] = 209067, + [SMALL_STATE(3979)] = 209167, + [SMALL_STATE(3980)] = 209253, + [SMALL_STATE(3981)] = 209333, + [SMALL_STATE(3982)] = 209397, + [SMALL_STATE(3983)] = 209461, + [SMALL_STATE(3984)] = 209525, + [SMALL_STATE(3985)] = 209589, + [SMALL_STATE(3986)] = 209695, + [SMALL_STATE(3987)] = 209759, + [SMALL_STATE(3988)] = 209823, + [SMALL_STATE(3989)] = 209887, + [SMALL_STATE(3990)] = 209951, + [SMALL_STATE(3991)] = 210015, + [SMALL_STATE(3992)] = 210079, + [SMALL_STATE(3993)] = 210143, + [SMALL_STATE(3994)] = 210207, + [SMALL_STATE(3995)] = 210271, + [SMALL_STATE(3996)] = 210335, + [SMALL_STATE(3997)] = 210399, + [SMALL_STATE(3998)] = 210463, + [SMALL_STATE(3999)] = 210527, + [SMALL_STATE(4000)] = 210591, + [SMALL_STATE(4001)] = 210655, + [SMALL_STATE(4002)] = 210718, + [SMALL_STATE(4003)] = 210813, + [SMALL_STATE(4004)] = 210876, + [SMALL_STATE(4005)] = 210939, + [SMALL_STATE(4006)] = 211002, + [SMALL_STATE(4007)] = 211065, + [SMALL_STATE(4008)] = 211128, + [SMALL_STATE(4009)] = 211191, + [SMALL_STATE(4010)] = 211254, + [SMALL_STATE(4011)] = 211317, + [SMALL_STATE(4012)] = 211380, + [SMALL_STATE(4013)] = 211475, + [SMALL_STATE(4014)] = 211538, + [SMALL_STATE(4015)] = 211601, + [SMALL_STATE(4016)] = 211664, + [SMALL_STATE(4017)] = 211727, + [SMALL_STATE(4018)] = 211790, + [SMALL_STATE(4019)] = 211853, + [SMALL_STATE(4020)] = 211916, + [SMALL_STATE(4021)] = 211979, + [SMALL_STATE(4022)] = 212042, + [SMALL_STATE(4023)] = 212105, + [SMALL_STATE(4024)] = 212168, + [SMALL_STATE(4025)] = 212231, + [SMALL_STATE(4026)] = 212294, + [SMALL_STATE(4027)] = 212357, + [SMALL_STATE(4028)] = 212420, + [SMALL_STATE(4029)] = 212483, + [SMALL_STATE(4030)] = 212546, + [SMALL_STATE(4031)] = 212613, + [SMALL_STATE(4032)] = 212716, + [SMALL_STATE(4033)] = 212779, + [SMALL_STATE(4034)] = 212854, + [SMALL_STATE(4035)] = 212917, + [SMALL_STATE(4036)] = 212980, + [SMALL_STATE(4037)] = 213045, + [SMALL_STATE(4038)] = 213110, + [SMALL_STATE(4039)] = 213187, + [SMALL_STATE(4040)] = 213264, + [SMALL_STATE(4041)] = 213345, + [SMALL_STATE(4042)] = 213448, + [SMALL_STATE(4043)] = 213533, + [SMALL_STATE(4044)] = 213620, + [SMALL_STATE(4045)] = 213709, + [SMALL_STATE(4046)] = 213772, + [SMALL_STATE(4047)] = 213877, + [SMALL_STATE(4048)] = 213940, + [SMALL_STATE(4049)] = 214003, + [SMALL_STATE(4050)] = 214108, + [SMALL_STATE(4051)] = 214171, + [SMALL_STATE(4052)] = 214274, + [SMALL_STATE(4053)] = 214337, + [SMALL_STATE(4054)] = 214400, + [SMALL_STATE(4055)] = 214463, + [SMALL_STATE(4056)] = 214526, + [SMALL_STATE(4057)] = 214619, + [SMALL_STATE(4058)] = 214694, + [SMALL_STATE(4059)] = 214771, + [SMALL_STATE(4060)] = 214870, + [SMALL_STATE(4061)] = 214933, + [SMALL_STATE(4062)] = 215010, + [SMALL_STATE(4063)] = 215111, + [SMALL_STATE(4064)] = 215174, + [SMALL_STATE(4065)] = 215275, + [SMALL_STATE(4066)] = 215346, + [SMALL_STATE(4067)] = 215415, + [SMALL_STATE(4068)] = 215478, + [SMALL_STATE(4069)] = 215541, + [SMALL_STATE(4070)] = 215622, + [SMALL_STATE(4071)] = 215689, + [SMALL_STATE(4072)] = 215752, + [SMALL_STATE(4073)] = 215815, + [SMALL_STATE(4074)] = 215878, + [SMALL_STATE(4075)] = 215963, + [SMALL_STATE(4076)] = 216050, + [SMALL_STATE(4077)] = 216113, + [SMALL_STATE(4078)] = 216176, + [SMALL_STATE(4079)] = 216265, + [SMALL_STATE(4080)] = 216358, + [SMALL_STATE(4081)] = 216421, + [SMALL_STATE(4082)] = 216484, + [SMALL_STATE(4083)] = 216583, + [SMALL_STATE(4084)] = 216646, + [SMALL_STATE(4085)] = 216747, + [SMALL_STATE(4086)] = 216848, + [SMALL_STATE(4087)] = 216919, + [SMALL_STATE(4088)] = 216988, + [SMALL_STATE(4089)] = 217085, + [SMALL_STATE(4090)] = 217148, + [SMALL_STATE(4091)] = 217245, + [SMALL_STATE(4092)] = 217328, + [SMALL_STATE(4093)] = 217391, + [SMALL_STATE(4094)] = 217474, + [SMALL_STATE(4095)] = 217579, + [SMALL_STATE(4096)] = 217658, + [SMALL_STATE(4097)] = 217721, + [SMALL_STATE(4098)] = 217784, + [SMALL_STATE(4099)] = 217847, + [SMALL_STATE(4100)] = 217926, + [SMALL_STATE(4101)] = 217989, + [SMALL_STATE(4102)] = 218052, + [SMALL_STATE(4103)] = 218115, + [SMALL_STATE(4104)] = 218178, + [SMALL_STATE(4105)] = 218283, + [SMALL_STATE(4106)] = 218346, + [SMALL_STATE(4107)] = 218409, + [SMALL_STATE(4108)] = 218472, + [SMALL_STATE(4109)] = 218535, + [SMALL_STATE(4110)] = 218598, + [SMALL_STATE(4111)] = 218661, + [SMALL_STATE(4112)] = 218724, + [SMALL_STATE(4113)] = 218787, + [SMALL_STATE(4114)] = 218850, + [SMALL_STATE(4115)] = 218913, + [SMALL_STATE(4116)] = 218976, + [SMALL_STATE(4117)] = 219039, + [SMALL_STATE(4118)] = 219102, + [SMALL_STATE(4119)] = 219205, + [SMALL_STATE(4120)] = 219268, + [SMALL_STATE(4121)] = 219335, + [SMALL_STATE(4122)] = 219398, + [SMALL_STATE(4123)] = 219501, + [SMALL_STATE(4124)] = 219564, + [SMALL_STATE(4125)] = 219627, + [SMALL_STATE(4126)] = 219690, + [SMALL_STATE(4127)] = 219753, + [SMALL_STATE(4128)] = 219816, + [SMALL_STATE(4129)] = 219879, + [SMALL_STATE(4130)] = 219942, + [SMALL_STATE(4131)] = 220005, + [SMALL_STATE(4132)] = 220108, + [SMALL_STATE(4133)] = 220211, + [SMALL_STATE(4134)] = 220313, + [SMALL_STATE(4135)] = 220415, + [SMALL_STATE(4136)] = 220517, + [SMALL_STATE(4137)] = 220619, + [SMALL_STATE(4138)] = 220721, + [SMALL_STATE(4139)] = 220823, + [SMALL_STATE(4140)] = 220925, + [SMALL_STATE(4141)] = 221027, + [SMALL_STATE(4142)] = 221129, + [SMALL_STATE(4143)] = 221231, + [SMALL_STATE(4144)] = 221333, + [SMALL_STATE(4145)] = 221435, + [SMALL_STATE(4146)] = 221537, + [SMALL_STATE(4147)] = 221639, + [SMALL_STATE(4148)] = 221741, + [SMALL_STATE(4149)] = 221843, + [SMALL_STATE(4150)] = 221945, + [SMALL_STATE(4151)] = 222047, + [SMALL_STATE(4152)] = 222111, + [SMALL_STATE(4153)] = 222213, + [SMALL_STATE(4154)] = 222315, + [SMALL_STATE(4155)] = 222417, + [SMALL_STATE(4156)] = 222481, + [SMALL_STATE(4157)] = 222583, + [SMALL_STATE(4158)] = 222685, + [SMALL_STATE(4159)] = 222787, + [SMALL_STATE(4160)] = 222886, + [SMALL_STATE(4161)] = 222955, + [SMALL_STATE(4162)] = 223024, + [SMALL_STATE(4163)] = 223093, + [SMALL_STATE(4164)] = 223162, + [SMALL_STATE(4165)] = 223231, + [SMALL_STATE(4166)] = 223300, + [SMALL_STATE(4167)] = 223369, + [SMALL_STATE(4168)] = 223438, + [SMALL_STATE(4169)] = 223507, + [SMALL_STATE(4170)] = 223576, + [SMALL_STATE(4171)] = 223645, + [SMALL_STATE(4172)] = 223714, + [SMALL_STATE(4173)] = 223783, + [SMALL_STATE(4174)] = 223852, + [SMALL_STATE(4175)] = 223921, + [SMALL_STATE(4176)] = 223990, + [SMALL_STATE(4177)] = 224059, + [SMALL_STATE(4178)] = 224128, + [SMALL_STATE(4179)] = 224197, + [SMALL_STATE(4180)] = 224266, + [SMALL_STATE(4181)] = 224335, + [SMALL_STATE(4182)] = 224404, + [SMALL_STATE(4183)] = 224473, + [SMALL_STATE(4184)] = 224542, + [SMALL_STATE(4185)] = 224611, + [SMALL_STATE(4186)] = 224680, + [SMALL_STATE(4187)] = 224749, + [SMALL_STATE(4188)] = 224818, + [SMALL_STATE(4189)] = 224887, + [SMALL_STATE(4190)] = 224956, + [SMALL_STATE(4191)] = 225025, + [SMALL_STATE(4192)] = 225094, + [SMALL_STATE(4193)] = 225163, + [SMALL_STATE(4194)] = 225232, + [SMALL_STATE(4195)] = 225301, + [SMALL_STATE(4196)] = 225370, + [SMALL_STATE(4197)] = 225415, + [SMALL_STATE(4198)] = 225460, + [SMALL_STATE(4199)] = 225505, + [SMALL_STATE(4200)] = 225550, + [SMALL_STATE(4201)] = 225595, + [SMALL_STATE(4202)] = 225640, + [SMALL_STATE(4203)] = 225685, + [SMALL_STATE(4204)] = 225730, + [SMALL_STATE(4205)] = 225775, + [SMALL_STATE(4206)] = 225820, + [SMALL_STATE(4207)] = 225865, + [SMALL_STATE(4208)] = 225910, + [SMALL_STATE(4209)] = 225955, + [SMALL_STATE(4210)] = 226000, + [SMALL_STATE(4211)] = 226045, + [SMALL_STATE(4212)] = 226090, + [SMALL_STATE(4213)] = 226135, + [SMALL_STATE(4214)] = 226180, + [SMALL_STATE(4215)] = 226225, + [SMALL_STATE(4216)] = 226270, + [SMALL_STATE(4217)] = 226315, + [SMALL_STATE(4218)] = 226360, + [SMALL_STATE(4219)] = 226405, + [SMALL_STATE(4220)] = 226450, + [SMALL_STATE(4221)] = 226495, + [SMALL_STATE(4222)] = 226540, + [SMALL_STATE(4223)] = 226585, + [SMALL_STATE(4224)] = 226630, + [SMALL_STATE(4225)] = 226675, + [SMALL_STATE(4226)] = 226720, + [SMALL_STATE(4227)] = 226765, + [SMALL_STATE(4228)] = 226810, + [SMALL_STATE(4229)] = 226855, + [SMALL_STATE(4230)] = 226900, + [SMALL_STATE(4231)] = 226945, + [SMALL_STATE(4232)] = 226990, + [SMALL_STATE(4233)] = 227035, + [SMALL_STATE(4234)] = 227080, + [SMALL_STATE(4235)] = 227125, + [SMALL_STATE(4236)] = 227170, + [SMALL_STATE(4237)] = 227215, + [SMALL_STATE(4238)] = 227260, + [SMALL_STATE(4239)] = 227305, + [SMALL_STATE(4240)] = 227350, + [SMALL_STATE(4241)] = 227395, + [SMALL_STATE(4242)] = 227440, + [SMALL_STATE(4243)] = 227485, + [SMALL_STATE(4244)] = 227530, + [SMALL_STATE(4245)] = 227575, + [SMALL_STATE(4246)] = 227620, + [SMALL_STATE(4247)] = 227665, + [SMALL_STATE(4248)] = 227710, + [SMALL_STATE(4249)] = 227755, + [SMALL_STATE(4250)] = 227800, + [SMALL_STATE(4251)] = 227845, + [SMALL_STATE(4252)] = 227890, + [SMALL_STATE(4253)] = 227935, + [SMALL_STATE(4254)] = 227980, + [SMALL_STATE(4255)] = 228025, + [SMALL_STATE(4256)] = 228070, + [SMALL_STATE(4257)] = 228115, + [SMALL_STATE(4258)] = 228160, + [SMALL_STATE(4259)] = 228205, + [SMALL_STATE(4260)] = 228250, + [SMALL_STATE(4261)] = 228295, + [SMALL_STATE(4262)] = 228340, + [SMALL_STATE(4263)] = 228385, + [SMALL_STATE(4264)] = 228430, + [SMALL_STATE(4265)] = 228475, + [SMALL_STATE(4266)] = 228520, + [SMALL_STATE(4267)] = 228565, + [SMALL_STATE(4268)] = 228610, + [SMALL_STATE(4269)] = 228646, + [SMALL_STATE(4270)] = 228682, + [SMALL_STATE(4271)] = 228713, + [SMALL_STATE(4272)] = 228744, + [SMALL_STATE(4273)] = 228775, + [SMALL_STATE(4274)] = 228806, + [SMALL_STATE(4275)] = 228837, + [SMALL_STATE(4276)] = 228868, + [SMALL_STATE(4277)] = 228899, + [SMALL_STATE(4278)] = 228930, + [SMALL_STATE(4279)] = 228961, + [SMALL_STATE(4280)] = 228992, + [SMALL_STATE(4281)] = 229023, + [SMALL_STATE(4282)] = 229054, + [SMALL_STATE(4283)] = 229085, + [SMALL_STATE(4284)] = 229116, + [SMALL_STATE(4285)] = 229147, + [SMALL_STATE(4286)] = 229178, + [SMALL_STATE(4287)] = 229209, + [SMALL_STATE(4288)] = 229240, + [SMALL_STATE(4289)] = 229271, + [SMALL_STATE(4290)] = 229302, + [SMALL_STATE(4291)] = 229333, + [SMALL_STATE(4292)] = 229364, + [SMALL_STATE(4293)] = 229395, + [SMALL_STATE(4294)] = 229426, + [SMALL_STATE(4295)] = 229457, + [SMALL_STATE(4296)] = 229488, + [SMALL_STATE(4297)] = 229519, + [SMALL_STATE(4298)] = 229550, + [SMALL_STATE(4299)] = 229581, + [SMALL_STATE(4300)] = 229612, + [SMALL_STATE(4301)] = 229643, + [SMALL_STATE(4302)] = 229674, + [SMALL_STATE(4303)] = 229705, + [SMALL_STATE(4304)] = 229736, + [SMALL_STATE(4305)] = 229767, + [SMALL_STATE(4306)] = 229798, + [SMALL_STATE(4307)] = 229829, + [SMALL_STATE(4308)] = 229860, + [SMALL_STATE(4309)] = 229891, + [SMALL_STATE(4310)] = 229922, + [SMALL_STATE(4311)] = 229953, + [SMALL_STATE(4312)] = 229984, + [SMALL_STATE(4313)] = 230015, + [SMALL_STATE(4314)] = 230046, + [SMALL_STATE(4315)] = 230077, + [SMALL_STATE(4316)] = 230108, + [SMALL_STATE(4317)] = 230139, + [SMALL_STATE(4318)] = 230170, + [SMALL_STATE(4319)] = 230201, + [SMALL_STATE(4320)] = 230232, + [SMALL_STATE(4321)] = 230263, + [SMALL_STATE(4322)] = 230294, + [SMALL_STATE(4323)] = 230325, + [SMALL_STATE(4324)] = 230356, + [SMALL_STATE(4325)] = 230387, + [SMALL_STATE(4326)] = 230418, + [SMALL_STATE(4327)] = 230449, + [SMALL_STATE(4328)] = 230480, + [SMALL_STATE(4329)] = 230511, + [SMALL_STATE(4330)] = 230542, + [SMALL_STATE(4331)] = 230573, + [SMALL_STATE(4332)] = 230603, + [SMALL_STATE(4333)] = 230633, + [SMALL_STATE(4334)] = 230663, + [SMALL_STATE(4335)] = 230693, + [SMALL_STATE(4336)] = 230723, + [SMALL_STATE(4337)] = 230753, + [SMALL_STATE(4338)] = 230783, + [SMALL_STATE(4339)] = 230813, + [SMALL_STATE(4340)] = 230843, + [SMALL_STATE(4341)] = 230873, + [SMALL_STATE(4342)] = 230903, + [SMALL_STATE(4343)] = 230933, + [SMALL_STATE(4344)] = 230963, + [SMALL_STATE(4345)] = 230993, + [SMALL_STATE(4346)] = 231023, + [SMALL_STATE(4347)] = 231053, + [SMALL_STATE(4348)] = 231083, + [SMALL_STATE(4349)] = 231113, + [SMALL_STATE(4350)] = 231143, + [SMALL_STATE(4351)] = 231177, + [SMALL_STATE(4352)] = 231207, + [SMALL_STATE(4353)] = 231237, + [SMALL_STATE(4354)] = 231267, + [SMALL_STATE(4355)] = 231297, + [SMALL_STATE(4356)] = 231327, + [SMALL_STATE(4357)] = 231357, + [SMALL_STATE(4358)] = 231391, + [SMALL_STATE(4359)] = 231421, + [SMALL_STATE(4360)] = 231451, + [SMALL_STATE(4361)] = 231481, + [SMALL_STATE(4362)] = 231511, + [SMALL_STATE(4363)] = 231542, + [SMALL_STATE(4364)] = 231573, + [SMALL_STATE(4365)] = 231596, + [SMALL_STATE(4366)] = 231619, + [SMALL_STATE(4367)] = 231642, + [SMALL_STATE(4368)] = 231673, + [SMALL_STATE(4369)] = 231696, + [SMALL_STATE(4370)] = 231719, + [SMALL_STATE(4371)] = 231750, + [SMALL_STATE(4372)] = 231781, + [SMALL_STATE(4373)] = 231812, + [SMALL_STATE(4374)] = 231843, + [SMALL_STATE(4375)] = 231866, + [SMALL_STATE(4376)] = 231897, + [SMALL_STATE(4377)] = 231920, + [SMALL_STATE(4378)] = 231943, + [SMALL_STATE(4379)] = 231974, + [SMALL_STATE(4380)] = 231997, + [SMALL_STATE(4381)] = 232028, + [SMALL_STATE(4382)] = 232059, + [SMALL_STATE(4383)] = 232082, + [SMALL_STATE(4384)] = 232105, + [SMALL_STATE(4385)] = 232128, + [SMALL_STATE(4386)] = 232159, + [SMALL_STATE(4387)] = 232182, + [SMALL_STATE(4388)] = 232213, + [SMALL_STATE(4389)] = 232236, + [SMALL_STATE(4390)] = 232267, + [SMALL_STATE(4391)] = 232298, + [SMALL_STATE(4392)] = 232329, + [SMALL_STATE(4393)] = 232360, + [SMALL_STATE(4394)] = 232391, + [SMALL_STATE(4395)] = 232422, + [SMALL_STATE(4396)] = 232453, + [SMALL_STATE(4397)] = 232484, + [SMALL_STATE(4398)] = 232507, + [SMALL_STATE(4399)] = 232530, + [SMALL_STATE(4400)] = 232561, + [SMALL_STATE(4401)] = 232584, + [SMALL_STATE(4402)] = 232615, + [SMALL_STATE(4403)] = 232638, + [SMALL_STATE(4404)] = 232661, + [SMALL_STATE(4405)] = 232684, + [SMALL_STATE(4406)] = 232702, + [SMALL_STATE(4407)] = 232722, + [SMALL_STATE(4408)] = 232742, + [SMALL_STATE(4409)] = 232762, + [SMALL_STATE(4410)] = 232787, + [SMALL_STATE(4411)] = 232812, + [SMALL_STATE(4412)] = 232837, + [SMALL_STATE(4413)] = 232862, + [SMALL_STATE(4414)] = 232887, + [SMALL_STATE(4415)] = 232912, + [SMALL_STATE(4416)] = 232937, + [SMALL_STATE(4417)] = 232962, + [SMALL_STATE(4418)] = 232987, + [SMALL_STATE(4419)] = 233012, + [SMALL_STATE(4420)] = 233037, + [SMALL_STATE(4421)] = 233062, + [SMALL_STATE(4422)] = 233087, + [SMALL_STATE(4423)] = 233112, + [SMALL_STATE(4424)] = 233137, + [SMALL_STATE(4425)] = 233162, + [SMALL_STATE(4426)] = 233187, + [SMALL_STATE(4427)] = 233212, + [SMALL_STATE(4428)] = 233237, + [SMALL_STATE(4429)] = 233262, + [SMALL_STATE(4430)] = 233287, + [SMALL_STATE(4431)] = 233312, + [SMALL_STATE(4432)] = 233337, + [SMALL_STATE(4433)] = 233362, + [SMALL_STATE(4434)] = 233387, + [SMALL_STATE(4435)] = 233412, + [SMALL_STATE(4436)] = 233437, + [SMALL_STATE(4437)] = 233462, + [SMALL_STATE(4438)] = 233487, + [SMALL_STATE(4439)] = 233512, + [SMALL_STATE(4440)] = 233537, + [SMALL_STATE(4441)] = 233562, + [SMALL_STATE(4442)] = 233587, + [SMALL_STATE(4443)] = 233612, + [SMALL_STATE(4444)] = 233637, + [SMALL_STATE(4445)] = 233662, + [SMALL_STATE(4446)] = 233687, + [SMALL_STATE(4447)] = 233712, + [SMALL_STATE(4448)] = 233737, + [SMALL_STATE(4449)] = 233762, + [SMALL_STATE(4450)] = 233787, + [SMALL_STATE(4451)] = 233812, + [SMALL_STATE(4452)] = 233837, + [SMALL_STATE(4453)] = 233862, + [SMALL_STATE(4454)] = 233887, + [SMALL_STATE(4455)] = 233912, + [SMALL_STATE(4456)] = 233937, + [SMALL_STATE(4457)] = 233962, + [SMALL_STATE(4458)] = 233987, + [SMALL_STATE(4459)] = 234012, + [SMALL_STATE(4460)] = 234037, + [SMALL_STATE(4461)] = 234062, + [SMALL_STATE(4462)] = 234087, + [SMALL_STATE(4463)] = 234112, + [SMALL_STATE(4464)] = 234137, + [SMALL_STATE(4465)] = 234162, + [SMALL_STATE(4466)] = 234187, + [SMALL_STATE(4467)] = 234212, + [SMALL_STATE(4468)] = 234237, + [SMALL_STATE(4469)] = 234262, + [SMALL_STATE(4470)] = 234287, + [SMALL_STATE(4471)] = 234312, + [SMALL_STATE(4472)] = 234337, + [SMALL_STATE(4473)] = 234362, + [SMALL_STATE(4474)] = 234387, + [SMALL_STATE(4475)] = 234412, + [SMALL_STATE(4476)] = 234437, + [SMALL_STATE(4477)] = 234462, + [SMALL_STATE(4478)] = 234487, + [SMALL_STATE(4479)] = 234512, + [SMALL_STATE(4480)] = 234537, + [SMALL_STATE(4481)] = 234562, + [SMALL_STATE(4482)] = 234587, + [SMALL_STATE(4483)] = 234612, + [SMALL_STATE(4484)] = 234637, + [SMALL_STATE(4485)] = 234662, + [SMALL_STATE(4486)] = 234687, + [SMALL_STATE(4487)] = 234712, + [SMALL_STATE(4488)] = 234737, + [SMALL_STATE(4489)] = 234762, + [SMALL_STATE(4490)] = 234787, + [SMALL_STATE(4491)] = 234812, + [SMALL_STATE(4492)] = 234837, + [SMALL_STATE(4493)] = 234862, + [SMALL_STATE(4494)] = 234887, + [SMALL_STATE(4495)] = 234912, + [SMALL_STATE(4496)] = 234937, + [SMALL_STATE(4497)] = 234962, + [SMALL_STATE(4498)] = 234987, + [SMALL_STATE(4499)] = 235012, + [SMALL_STATE(4500)] = 235037, + [SMALL_STATE(4501)] = 235062, + [SMALL_STATE(4502)] = 235087, + [SMALL_STATE(4503)] = 235112, + [SMALL_STATE(4504)] = 235137, + [SMALL_STATE(4505)] = 235162, + [SMALL_STATE(4506)] = 235187, + [SMALL_STATE(4507)] = 235212, + [SMALL_STATE(4508)] = 235237, + [SMALL_STATE(4509)] = 235262, + [SMALL_STATE(4510)] = 235287, + [SMALL_STATE(4511)] = 235312, + [SMALL_STATE(4512)] = 235337, + [SMALL_STATE(4513)] = 235362, + [SMALL_STATE(4514)] = 235387, + [SMALL_STATE(4515)] = 235412, + [SMALL_STATE(4516)] = 235437, + [SMALL_STATE(4517)] = 235462, + [SMALL_STATE(4518)] = 235487, + [SMALL_STATE(4519)] = 235512, + [SMALL_STATE(4520)] = 235537, + [SMALL_STATE(4521)] = 235562, + [SMALL_STATE(4522)] = 235587, + [SMALL_STATE(4523)] = 235612, + [SMALL_STATE(4524)] = 235637, + [SMALL_STATE(4525)] = 235662, + [SMALL_STATE(4526)] = 235687, + [SMALL_STATE(4527)] = 235712, + [SMALL_STATE(4528)] = 235737, + [SMALL_STATE(4529)] = 235762, + [SMALL_STATE(4530)] = 235787, + [SMALL_STATE(4531)] = 235812, + [SMALL_STATE(4532)] = 235837, + [SMALL_STATE(4533)] = 235862, + [SMALL_STATE(4534)] = 235887, + [SMALL_STATE(4535)] = 235912, + [SMALL_STATE(4536)] = 235937, + [SMALL_STATE(4537)] = 235962, + [SMALL_STATE(4538)] = 235987, + [SMALL_STATE(4539)] = 236012, + [SMALL_STATE(4540)] = 236037, + [SMALL_STATE(4541)] = 236062, + [SMALL_STATE(4542)] = 236087, + [SMALL_STATE(4543)] = 236112, + [SMALL_STATE(4544)] = 236137, + [SMALL_STATE(4545)] = 236162, + [SMALL_STATE(4546)] = 236187, + [SMALL_STATE(4547)] = 236212, + [SMALL_STATE(4548)] = 236237, + [SMALL_STATE(4549)] = 236262, + [SMALL_STATE(4550)] = 236287, + [SMALL_STATE(4551)] = 236312, + [SMALL_STATE(4552)] = 236337, + [SMALL_STATE(4553)] = 236362, + [SMALL_STATE(4554)] = 236387, + [SMALL_STATE(4555)] = 236412, + [SMALL_STATE(4556)] = 236437, + [SMALL_STATE(4557)] = 236462, + [SMALL_STATE(4558)] = 236487, + [SMALL_STATE(4559)] = 236512, + [SMALL_STATE(4560)] = 236537, + [SMALL_STATE(4561)] = 236562, + [SMALL_STATE(4562)] = 236587, + [SMALL_STATE(4563)] = 236612, + [SMALL_STATE(4564)] = 236637, + [SMALL_STATE(4565)] = 236662, + [SMALL_STATE(4566)] = 236687, + [SMALL_STATE(4567)] = 236712, + [SMALL_STATE(4568)] = 236737, + [SMALL_STATE(4569)] = 236762, + [SMALL_STATE(4570)] = 236787, + [SMALL_STATE(4571)] = 236812, + [SMALL_STATE(4572)] = 236837, + [SMALL_STATE(4573)] = 236862, + [SMALL_STATE(4574)] = 236887, + [SMALL_STATE(4575)] = 236912, + [SMALL_STATE(4576)] = 236937, + [SMALL_STATE(4577)] = 236962, + [SMALL_STATE(4578)] = 236987, + [SMALL_STATE(4579)] = 237012, + [SMALL_STATE(4580)] = 237037, + [SMALL_STATE(4581)] = 237062, + [SMALL_STATE(4582)] = 237087, + [SMALL_STATE(4583)] = 237112, + [SMALL_STATE(4584)] = 237137, + [SMALL_STATE(4585)] = 237162, + [SMALL_STATE(4586)] = 237187, + [SMALL_STATE(4587)] = 237212, + [SMALL_STATE(4588)] = 237237, + [SMALL_STATE(4589)] = 237262, + [SMALL_STATE(4590)] = 237287, + [SMALL_STATE(4591)] = 237312, + [SMALL_STATE(4592)] = 237337, + [SMALL_STATE(4593)] = 237362, + [SMALL_STATE(4594)] = 237387, + [SMALL_STATE(4595)] = 237412, + [SMALL_STATE(4596)] = 237437, + [SMALL_STATE(4597)] = 237462, + [SMALL_STATE(4598)] = 237487, + [SMALL_STATE(4599)] = 237512, + [SMALL_STATE(4600)] = 237537, + [SMALL_STATE(4601)] = 237562, + [SMALL_STATE(4602)] = 237587, + [SMALL_STATE(4603)] = 237612, + [SMALL_STATE(4604)] = 237637, + [SMALL_STATE(4605)] = 237662, + [SMALL_STATE(4606)] = 237687, + [SMALL_STATE(4607)] = 237712, + [SMALL_STATE(4608)] = 237737, + [SMALL_STATE(4609)] = 237762, + [SMALL_STATE(4610)] = 237787, + [SMALL_STATE(4611)] = 237812, + [SMALL_STATE(4612)] = 237837, + [SMALL_STATE(4613)] = 237862, + [SMALL_STATE(4614)] = 237887, + [SMALL_STATE(4615)] = 237912, + [SMALL_STATE(4616)] = 237937, + [SMALL_STATE(4617)] = 237962, + [SMALL_STATE(4618)] = 237987, + [SMALL_STATE(4619)] = 238012, + [SMALL_STATE(4620)] = 238037, + [SMALL_STATE(4621)] = 238062, + [SMALL_STATE(4622)] = 238087, + [SMALL_STATE(4623)] = 238112, + [SMALL_STATE(4624)] = 238137, + [SMALL_STATE(4625)] = 238162, + [SMALL_STATE(4626)] = 238187, + [SMALL_STATE(4627)] = 238212, + [SMALL_STATE(4628)] = 238237, + [SMALL_STATE(4629)] = 238262, + [SMALL_STATE(4630)] = 238287, + [SMALL_STATE(4631)] = 238312, + [SMALL_STATE(4632)] = 238337, + [SMALL_STATE(4633)] = 238362, + [SMALL_STATE(4634)] = 238387, + [SMALL_STATE(4635)] = 238412, + [SMALL_STATE(4636)] = 238437, + [SMALL_STATE(4637)] = 238462, + [SMALL_STATE(4638)] = 238487, + [SMALL_STATE(4639)] = 238512, + [SMALL_STATE(4640)] = 238537, + [SMALL_STATE(4641)] = 238562, + [SMALL_STATE(4642)] = 238587, + [SMALL_STATE(4643)] = 238612, + [SMALL_STATE(4644)] = 238637, + [SMALL_STATE(4645)] = 238662, + [SMALL_STATE(4646)] = 238687, + [SMALL_STATE(4647)] = 238712, + [SMALL_STATE(4648)] = 238737, + [SMALL_STATE(4649)] = 238762, + [SMALL_STATE(4650)] = 238787, + [SMALL_STATE(4651)] = 238812, + [SMALL_STATE(4652)] = 238837, + [SMALL_STATE(4653)] = 238862, + [SMALL_STATE(4654)] = 238887, + [SMALL_STATE(4655)] = 238912, + [SMALL_STATE(4656)] = 238937, + [SMALL_STATE(4657)] = 238962, + [SMALL_STATE(4658)] = 238987, + [SMALL_STATE(4659)] = 239012, + [SMALL_STATE(4660)] = 239037, + [SMALL_STATE(4661)] = 239062, + [SMALL_STATE(4662)] = 239087, + [SMALL_STATE(4663)] = 239112, + [SMALL_STATE(4664)] = 239137, + [SMALL_STATE(4665)] = 239162, + [SMALL_STATE(4666)] = 239187, + [SMALL_STATE(4667)] = 239212, + [SMALL_STATE(4668)] = 239237, + [SMALL_STATE(4669)] = 239262, + [SMALL_STATE(4670)] = 239287, + [SMALL_STATE(4671)] = 239312, + [SMALL_STATE(4672)] = 239337, + [SMALL_STATE(4673)] = 239362, + [SMALL_STATE(4674)] = 239387, + [SMALL_STATE(4675)] = 239412, + [SMALL_STATE(4676)] = 239437, + [SMALL_STATE(4677)] = 239462, + [SMALL_STATE(4678)] = 239487, + [SMALL_STATE(4679)] = 239512, + [SMALL_STATE(4680)] = 239537, + [SMALL_STATE(4681)] = 239562, + [SMALL_STATE(4682)] = 239587, + [SMALL_STATE(4683)] = 239612, + [SMALL_STATE(4684)] = 239637, + [SMALL_STATE(4685)] = 239662, + [SMALL_STATE(4686)] = 239687, + [SMALL_STATE(4687)] = 239712, + [SMALL_STATE(4688)] = 239737, + [SMALL_STATE(4689)] = 239762, + [SMALL_STATE(4690)] = 239787, + [SMALL_STATE(4691)] = 239812, + [SMALL_STATE(4692)] = 239837, + [SMALL_STATE(4693)] = 239862, + [SMALL_STATE(4694)] = 239887, + [SMALL_STATE(4695)] = 239912, + [SMALL_STATE(4696)] = 239937, + [SMALL_STATE(4697)] = 239962, + [SMALL_STATE(4698)] = 239987, + [SMALL_STATE(4699)] = 240012, + [SMALL_STATE(4700)] = 240037, + [SMALL_STATE(4701)] = 240062, + [SMALL_STATE(4702)] = 240087, + [SMALL_STATE(4703)] = 240112, + [SMALL_STATE(4704)] = 240137, + [SMALL_STATE(4705)] = 240162, + [SMALL_STATE(4706)] = 240187, + [SMALL_STATE(4707)] = 240212, + [SMALL_STATE(4708)] = 240237, + [SMALL_STATE(4709)] = 240262, + [SMALL_STATE(4710)] = 240287, + [SMALL_STATE(4711)] = 240312, + [SMALL_STATE(4712)] = 240337, + [SMALL_STATE(4713)] = 240362, + [SMALL_STATE(4714)] = 240387, + [SMALL_STATE(4715)] = 240412, + [SMALL_STATE(4716)] = 240437, + [SMALL_STATE(4717)] = 240462, + [SMALL_STATE(4718)] = 240487, + [SMALL_STATE(4719)] = 240512, + [SMALL_STATE(4720)] = 240537, + [SMALL_STATE(4721)] = 240562, + [SMALL_STATE(4722)] = 240587, + [SMALL_STATE(4723)] = 240612, + [SMALL_STATE(4724)] = 240637, + [SMALL_STATE(4725)] = 240662, + [SMALL_STATE(4726)] = 240687, + [SMALL_STATE(4727)] = 240712, + [SMALL_STATE(4728)] = 240737, + [SMALL_STATE(4729)] = 240762, + [SMALL_STATE(4730)] = 240787, + [SMALL_STATE(4731)] = 240812, + [SMALL_STATE(4732)] = 240837, + [SMALL_STATE(4733)] = 240862, + [SMALL_STATE(4734)] = 240887, + [SMALL_STATE(4735)] = 240912, + [SMALL_STATE(4736)] = 240937, + [SMALL_STATE(4737)] = 240962, + [SMALL_STATE(4738)] = 240987, + [SMALL_STATE(4739)] = 241012, + [SMALL_STATE(4740)] = 241037, + [SMALL_STATE(4741)] = 241062, + [SMALL_STATE(4742)] = 241087, + [SMALL_STATE(4743)] = 241112, + [SMALL_STATE(4744)] = 241137, + [SMALL_STATE(4745)] = 241162, + [SMALL_STATE(4746)] = 241187, + [SMALL_STATE(4747)] = 241212, + [SMALL_STATE(4748)] = 241237, + [SMALL_STATE(4749)] = 241262, + [SMALL_STATE(4750)] = 241287, + [SMALL_STATE(4751)] = 241312, + [SMALL_STATE(4752)] = 241337, + [SMALL_STATE(4753)] = 241362, + [SMALL_STATE(4754)] = 241387, + [SMALL_STATE(4755)] = 241412, + [SMALL_STATE(4756)] = 241437, + [SMALL_STATE(4757)] = 241462, + [SMALL_STATE(4758)] = 241487, + [SMALL_STATE(4759)] = 241512, + [SMALL_STATE(4760)] = 241537, + [SMALL_STATE(4761)] = 241562, + [SMALL_STATE(4762)] = 241587, + [SMALL_STATE(4763)] = 241612, + [SMALL_STATE(4764)] = 241637, + [SMALL_STATE(4765)] = 241662, + [SMALL_STATE(4766)] = 241687, + [SMALL_STATE(4767)] = 241712, + [SMALL_STATE(4768)] = 241737, + [SMALL_STATE(4769)] = 241762, + [SMALL_STATE(4770)] = 241787, + [SMALL_STATE(4771)] = 241812, + [SMALL_STATE(4772)] = 241837, + [SMALL_STATE(4773)] = 241862, + [SMALL_STATE(4774)] = 241887, + [SMALL_STATE(4775)] = 241912, + [SMALL_STATE(4776)] = 241937, + [SMALL_STATE(4777)] = 241962, + [SMALL_STATE(4778)] = 241987, + [SMALL_STATE(4779)] = 242012, + [SMALL_STATE(4780)] = 242037, + [SMALL_STATE(4781)] = 242062, + [SMALL_STATE(4782)] = 242087, + [SMALL_STATE(4783)] = 242112, + [SMALL_STATE(4784)] = 242137, + [SMALL_STATE(4785)] = 242162, + [SMALL_STATE(4786)] = 242187, + [SMALL_STATE(4787)] = 242212, + [SMALL_STATE(4788)] = 242237, + [SMALL_STATE(4789)] = 242262, + [SMALL_STATE(4790)] = 242287, + [SMALL_STATE(4791)] = 242312, + [SMALL_STATE(4792)] = 242337, + [SMALL_STATE(4793)] = 242362, + [SMALL_STATE(4794)] = 242387, + [SMALL_STATE(4795)] = 242412, + [SMALL_STATE(4796)] = 242437, + [SMALL_STATE(4797)] = 242462, + [SMALL_STATE(4798)] = 242487, + [SMALL_STATE(4799)] = 242512, + [SMALL_STATE(4800)] = 242537, + [SMALL_STATE(4801)] = 242562, + [SMALL_STATE(4802)] = 242587, + [SMALL_STATE(4803)] = 242612, + [SMALL_STATE(4804)] = 242637, + [SMALL_STATE(4805)] = 242662, + [SMALL_STATE(4806)] = 242687, + [SMALL_STATE(4807)] = 242712, + [SMALL_STATE(4808)] = 242737, + [SMALL_STATE(4809)] = 242762, + [SMALL_STATE(4810)] = 242787, + [SMALL_STATE(4811)] = 242812, + [SMALL_STATE(4812)] = 242837, + [SMALL_STATE(4813)] = 242862, + [SMALL_STATE(4814)] = 242887, + [SMALL_STATE(4815)] = 242912, + [SMALL_STATE(4816)] = 242937, + [SMALL_STATE(4817)] = 242962, + [SMALL_STATE(4818)] = 242987, + [SMALL_STATE(4819)] = 243012, + [SMALL_STATE(4820)] = 243037, + [SMALL_STATE(4821)] = 243062, + [SMALL_STATE(4822)] = 243087, + [SMALL_STATE(4823)] = 243112, + [SMALL_STATE(4824)] = 243137, + [SMALL_STATE(4825)] = 243162, + [SMALL_STATE(4826)] = 243187, + [SMALL_STATE(4827)] = 243212, + [SMALL_STATE(4828)] = 243237, + [SMALL_STATE(4829)] = 243262, + [SMALL_STATE(4830)] = 243287, + [SMALL_STATE(4831)] = 243312, + [SMALL_STATE(4832)] = 243337, + [SMALL_STATE(4833)] = 243362, + [SMALL_STATE(4834)] = 243387, + [SMALL_STATE(4835)] = 243412, + [SMALL_STATE(4836)] = 243437, + [SMALL_STATE(4837)] = 243462, + [SMALL_STATE(4838)] = 243487, + [SMALL_STATE(4839)] = 243512, + [SMALL_STATE(4840)] = 243537, + [SMALL_STATE(4841)] = 243562, + [SMALL_STATE(4842)] = 243587, + [SMALL_STATE(4843)] = 243612, + [SMALL_STATE(4844)] = 243637, + [SMALL_STATE(4845)] = 243662, + [SMALL_STATE(4846)] = 243687, + [SMALL_STATE(4847)] = 243712, + [SMALL_STATE(4848)] = 243737, + [SMALL_STATE(4849)] = 243762, + [SMALL_STATE(4850)] = 243787, + [SMALL_STATE(4851)] = 243812, + [SMALL_STATE(4852)] = 243837, + [SMALL_STATE(4853)] = 243862, + [SMALL_STATE(4854)] = 243887, + [SMALL_STATE(4855)] = 243912, + [SMALL_STATE(4856)] = 243937, + [SMALL_STATE(4857)] = 243962, + [SMALL_STATE(4858)] = 243987, + [SMALL_STATE(4859)] = 244012, + [SMALL_STATE(4860)] = 244037, + [SMALL_STATE(4861)] = 244062, + [SMALL_STATE(4862)] = 244087, + [SMALL_STATE(4863)] = 244112, + [SMALL_STATE(4864)] = 244137, + [SMALL_STATE(4865)] = 244162, + [SMALL_STATE(4866)] = 244187, + [SMALL_STATE(4867)] = 244212, + [SMALL_STATE(4868)] = 244237, + [SMALL_STATE(4869)] = 244262, + [SMALL_STATE(4870)] = 244287, + [SMALL_STATE(4871)] = 244312, + [SMALL_STATE(4872)] = 244337, + [SMALL_STATE(4873)] = 244362, + [SMALL_STATE(4874)] = 244387, + [SMALL_STATE(4875)] = 244412, + [SMALL_STATE(4876)] = 244437, + [SMALL_STATE(4877)] = 244462, + [SMALL_STATE(4878)] = 244487, + [SMALL_STATE(4879)] = 244512, + [SMALL_STATE(4880)] = 244537, + [SMALL_STATE(4881)] = 244562, + [SMALL_STATE(4882)] = 244587, + [SMALL_STATE(4883)] = 244612, + [SMALL_STATE(4884)] = 244637, + [SMALL_STATE(4885)] = 244662, + [SMALL_STATE(4886)] = 244687, + [SMALL_STATE(4887)] = 244712, + [SMALL_STATE(4888)] = 244737, + [SMALL_STATE(4889)] = 244762, + [SMALL_STATE(4890)] = 244787, + [SMALL_STATE(4891)] = 244812, + [SMALL_STATE(4892)] = 244837, + [SMALL_STATE(4893)] = 244862, + [SMALL_STATE(4894)] = 244887, + [SMALL_STATE(4895)] = 244912, + [SMALL_STATE(4896)] = 244937, + [SMALL_STATE(4897)] = 244962, + [SMALL_STATE(4898)] = 244987, + [SMALL_STATE(4899)] = 245012, + [SMALL_STATE(4900)] = 245037, + [SMALL_STATE(4901)] = 245062, + [SMALL_STATE(4902)] = 245087, + [SMALL_STATE(4903)] = 245112, + [SMALL_STATE(4904)] = 245138, + [SMALL_STATE(4905)] = 245164, + [SMALL_STATE(4906)] = 245190, + [SMALL_STATE(4907)] = 245216, + [SMALL_STATE(4908)] = 245242, + [SMALL_STATE(4909)] = 245268, + [SMALL_STATE(4910)] = 245294, + [SMALL_STATE(4911)] = 245320, + [SMALL_STATE(4912)] = 245346, + [SMALL_STATE(4913)] = 245372, + [SMALL_STATE(4914)] = 245398, + [SMALL_STATE(4915)] = 245418, + [SMALL_STATE(4916)] = 245444, + [SMALL_STATE(4917)] = 245470, + [SMALL_STATE(4918)] = 245496, + [SMALL_STATE(4919)] = 245522, + [SMALL_STATE(4920)] = 245548, + [SMALL_STATE(4921)] = 245574, + [SMALL_STATE(4922)] = 245600, + [SMALL_STATE(4923)] = 245626, + [SMALL_STATE(4924)] = 245652, + [SMALL_STATE(4925)] = 245678, + [SMALL_STATE(4926)] = 245704, + [SMALL_STATE(4927)] = 245724, + [SMALL_STATE(4928)] = 245750, + [SMALL_STATE(4929)] = 245776, + [SMALL_STATE(4930)] = 245802, + [SMALL_STATE(4931)] = 245828, + [SMALL_STATE(4932)] = 245854, + [SMALL_STATE(4933)] = 245880, + [SMALL_STATE(4934)] = 245906, + [SMALL_STATE(4935)] = 245932, + [SMALL_STATE(4936)] = 245958, + [SMALL_STATE(4937)] = 245984, + [SMALL_STATE(4938)] = 246010, + [SMALL_STATE(4939)] = 246036, + [SMALL_STATE(4940)] = 246062, + [SMALL_STATE(4941)] = 246088, + [SMALL_STATE(4942)] = 246114, + [SMALL_STATE(4943)] = 246140, + [SMALL_STATE(4944)] = 246166, + [SMALL_STATE(4945)] = 246192, + [SMALL_STATE(4946)] = 246218, + [SMALL_STATE(4947)] = 246244, + [SMALL_STATE(4948)] = 246270, + [SMALL_STATE(4949)] = 246296, + [SMALL_STATE(4950)] = 246322, + [SMALL_STATE(4951)] = 246348, + [SMALL_STATE(4952)] = 246374, + [SMALL_STATE(4953)] = 246400, + [SMALL_STATE(4954)] = 246426, + [SMALL_STATE(4955)] = 246452, + [SMALL_STATE(4956)] = 246478, + [SMALL_STATE(4957)] = 246504, + [SMALL_STATE(4958)] = 246530, + [SMALL_STATE(4959)] = 246556, + [SMALL_STATE(4960)] = 246582, + [SMALL_STATE(4961)] = 246608, + [SMALL_STATE(4962)] = 246634, + [SMALL_STATE(4963)] = 246660, + [SMALL_STATE(4964)] = 246686, + [SMALL_STATE(4965)] = 246712, + [SMALL_STATE(4966)] = 246738, + [SMALL_STATE(4967)] = 246764, + [SMALL_STATE(4968)] = 246790, + [SMALL_STATE(4969)] = 246816, + [SMALL_STATE(4970)] = 246842, + [SMALL_STATE(4971)] = 246868, + [SMALL_STATE(4972)] = 246894, + [SMALL_STATE(4973)] = 246920, + [SMALL_STATE(4974)] = 246946, + [SMALL_STATE(4975)] = 246972, + [SMALL_STATE(4976)] = 246998, + [SMALL_STATE(4977)] = 247024, + [SMALL_STATE(4978)] = 247050, + [SMALL_STATE(4979)] = 247076, + [SMALL_STATE(4980)] = 247102, + [SMALL_STATE(4981)] = 247128, + [SMALL_STATE(4982)] = 247154, + [SMALL_STATE(4983)] = 247180, + [SMALL_STATE(4984)] = 247206, + [SMALL_STATE(4985)] = 247232, + [SMALL_STATE(4986)] = 247258, + [SMALL_STATE(4987)] = 247284, + [SMALL_STATE(4988)] = 247310, + [SMALL_STATE(4989)] = 247336, + [SMALL_STATE(4990)] = 247362, + [SMALL_STATE(4991)] = 247382, + [SMALL_STATE(4992)] = 247408, + [SMALL_STATE(4993)] = 247434, + [SMALL_STATE(4994)] = 247460, + [SMALL_STATE(4995)] = 247486, + [SMALL_STATE(4996)] = 247512, + [SMALL_STATE(4997)] = 247538, + [SMALL_STATE(4998)] = 247564, + [SMALL_STATE(4999)] = 247590, + [SMALL_STATE(5000)] = 247610, + [SMALL_STATE(5001)] = 247636, + [SMALL_STATE(5002)] = 247662, + [SMALL_STATE(5003)] = 247688, + [SMALL_STATE(5004)] = 247714, + [SMALL_STATE(5005)] = 247740, + [SMALL_STATE(5006)] = 247766, + [SMALL_STATE(5007)] = 247792, + [SMALL_STATE(5008)] = 247818, + [SMALL_STATE(5009)] = 247838, + [SMALL_STATE(5010)] = 247864, + [SMALL_STATE(5011)] = 247890, + [SMALL_STATE(5012)] = 247916, + [SMALL_STATE(5013)] = 247942, + [SMALL_STATE(5014)] = 247968, + [SMALL_STATE(5015)] = 247994, + [SMALL_STATE(5016)] = 248020, + [SMALL_STATE(5017)] = 248046, + [SMALL_STATE(5018)] = 248072, + [SMALL_STATE(5019)] = 248098, + [SMALL_STATE(5020)] = 248124, + [SMALL_STATE(5021)] = 248150, + [SMALL_STATE(5022)] = 248176, + [SMALL_STATE(5023)] = 248202, + [SMALL_STATE(5024)] = 248228, + [SMALL_STATE(5025)] = 248254, + [SMALL_STATE(5026)] = 248280, + [SMALL_STATE(5027)] = 248306, + [SMALL_STATE(5028)] = 248326, + [SMALL_STATE(5029)] = 248352, + [SMALL_STATE(5030)] = 248378, + [SMALL_STATE(5031)] = 248404, + [SMALL_STATE(5032)] = 248430, + [SMALL_STATE(5033)] = 248456, + [SMALL_STATE(5034)] = 248482, + [SMALL_STATE(5035)] = 248502, + [SMALL_STATE(5036)] = 248528, + [SMALL_STATE(5037)] = 248554, + [SMALL_STATE(5038)] = 248580, + [SMALL_STATE(5039)] = 248606, + [SMALL_STATE(5040)] = 248632, + [SMALL_STATE(5041)] = 248658, + [SMALL_STATE(5042)] = 248684, + [SMALL_STATE(5043)] = 248705, + [SMALL_STATE(5044)] = 248726, + [SMALL_STATE(5045)] = 248747, + [SMALL_STATE(5046)] = 248768, + [SMALL_STATE(5047)] = 248789, + [SMALL_STATE(5048)] = 248810, + [SMALL_STATE(5049)] = 248831, + [SMALL_STATE(5050)] = 248852, + [SMALL_STATE(5051)] = 248873, + [SMALL_STATE(5052)] = 248894, + [SMALL_STATE(5053)] = 248915, + [SMALL_STATE(5054)] = 248936, + [SMALL_STATE(5055)] = 248957, + [SMALL_STATE(5056)] = 248978, + [SMALL_STATE(5057)] = 248999, + [SMALL_STATE(5058)] = 249020, + [SMALL_STATE(5059)] = 249041, + [SMALL_STATE(5060)] = 249058, + [SMALL_STATE(5061)] = 249079, + [SMALL_STATE(5062)] = 249100, + [SMALL_STATE(5063)] = 249121, + [SMALL_STATE(5064)] = 249138, + [SMALL_STATE(5065)] = 249159, + [SMALL_STATE(5066)] = 249180, + [SMALL_STATE(5067)] = 249201, + [SMALL_STATE(5068)] = 249218, + [SMALL_STATE(5069)] = 249235, + [SMALL_STATE(5070)] = 249252, + [SMALL_STATE(5071)] = 249269, + [SMALL_STATE(5072)] = 249290, + [SMALL_STATE(5073)] = 249311, + [SMALL_STATE(5074)] = 249332, + [SMALL_STATE(5075)] = 249353, + [SMALL_STATE(5076)] = 249374, + [SMALL_STATE(5077)] = 249395, + [SMALL_STATE(5078)] = 249416, + [SMALL_STATE(5079)] = 249437, + [SMALL_STATE(5080)] = 249458, + [SMALL_STATE(5081)] = 249479, + [SMALL_STATE(5082)] = 249500, + [SMALL_STATE(5083)] = 249521, + [SMALL_STATE(5084)] = 249542, + [SMALL_STATE(5085)] = 249563, + [SMALL_STATE(5086)] = 249584, + [SMALL_STATE(5087)] = 249605, + [SMALL_STATE(5088)] = 249626, + [SMALL_STATE(5089)] = 249647, + [SMALL_STATE(5090)] = 249668, + [SMALL_STATE(5091)] = 249689, + [SMALL_STATE(5092)] = 249710, + [SMALL_STATE(5093)] = 249731, + [SMALL_STATE(5094)] = 249752, + [SMALL_STATE(5095)] = 249773, + [SMALL_STATE(5096)] = 249794, + [SMALL_STATE(5097)] = 249815, + [SMALL_STATE(5098)] = 249836, + [SMALL_STATE(5099)] = 249857, + [SMALL_STATE(5100)] = 249878, + [SMALL_STATE(5101)] = 249899, + [SMALL_STATE(5102)] = 249920, + [SMALL_STATE(5103)] = 249941, + [SMALL_STATE(5104)] = 249962, + [SMALL_STATE(5105)] = 249983, + [SMALL_STATE(5106)] = 250004, + [SMALL_STATE(5107)] = 250025, + [SMALL_STATE(5108)] = 250046, + [SMALL_STATE(5109)] = 250067, + [SMALL_STATE(5110)] = 250088, + [SMALL_STATE(5111)] = 250109, + [SMALL_STATE(5112)] = 250130, + [SMALL_STATE(5113)] = 250151, + [SMALL_STATE(5114)] = 250172, + [SMALL_STATE(5115)] = 250193, + [SMALL_STATE(5116)] = 250214, + [SMALL_STATE(5117)] = 250235, + [SMALL_STATE(5118)] = 250256, + [SMALL_STATE(5119)] = 250277, + [SMALL_STATE(5120)] = 250298, + [SMALL_STATE(5121)] = 250319, + [SMALL_STATE(5122)] = 250340, + [SMALL_STATE(5123)] = 250361, + [SMALL_STATE(5124)] = 250382, + [SMALL_STATE(5125)] = 250403, + [SMALL_STATE(5126)] = 250424, + [SMALL_STATE(5127)] = 250445, + [SMALL_STATE(5128)] = 250466, + [SMALL_STATE(5129)] = 250487, + [SMALL_STATE(5130)] = 250508, + [SMALL_STATE(5131)] = 250529, + [SMALL_STATE(5132)] = 250550, + [SMALL_STATE(5133)] = 250571, + [SMALL_STATE(5134)] = 250592, + [SMALL_STATE(5135)] = 250613, + [SMALL_STATE(5136)] = 250634, + [SMALL_STATE(5137)] = 250655, + [SMALL_STATE(5138)] = 250676, + [SMALL_STATE(5139)] = 250697, + [SMALL_STATE(5140)] = 250718, + [SMALL_STATE(5141)] = 250739, + [SMALL_STATE(5142)] = 250760, + [SMALL_STATE(5143)] = 250781, + [SMALL_STATE(5144)] = 250802, + [SMALL_STATE(5145)] = 250823, + [SMALL_STATE(5146)] = 250844, + [SMALL_STATE(5147)] = 250865, + [SMALL_STATE(5148)] = 250886, + [SMALL_STATE(5149)] = 250907, + [SMALL_STATE(5150)] = 250928, + [SMALL_STATE(5151)] = 250949, + [SMALL_STATE(5152)] = 250970, + [SMALL_STATE(5153)] = 250991, + [SMALL_STATE(5154)] = 251012, + [SMALL_STATE(5155)] = 251033, + [SMALL_STATE(5156)] = 251054, + [SMALL_STATE(5157)] = 251075, + [SMALL_STATE(5158)] = 251096, + [SMALL_STATE(5159)] = 251117, + [SMALL_STATE(5160)] = 251138, + [SMALL_STATE(5161)] = 251159, + [SMALL_STATE(5162)] = 251178, + [SMALL_STATE(5163)] = 251199, + [SMALL_STATE(5164)] = 251220, + [SMALL_STATE(5165)] = 251241, + [SMALL_STATE(5166)] = 251262, + [SMALL_STATE(5167)] = 251283, + [SMALL_STATE(5168)] = 251300, + [SMALL_STATE(5169)] = 251321, + [SMALL_STATE(5170)] = 251342, + [SMALL_STATE(5171)] = 251363, + [SMALL_STATE(5172)] = 251384, + [SMALL_STATE(5173)] = 251405, + [SMALL_STATE(5174)] = 251426, + [SMALL_STATE(5175)] = 251447, + [SMALL_STATE(5176)] = 251468, + [SMALL_STATE(5177)] = 251489, + [SMALL_STATE(5178)] = 251510, + [SMALL_STATE(5179)] = 251531, + [SMALL_STATE(5180)] = 251552, + [SMALL_STATE(5181)] = 251573, + [SMALL_STATE(5182)] = 251594, + [SMALL_STATE(5183)] = 251615, + [SMALL_STATE(5184)] = 251634, + [SMALL_STATE(5185)] = 251655, + [SMALL_STATE(5186)] = 251676, + [SMALL_STATE(5187)] = 251697, + [SMALL_STATE(5188)] = 251718, + [SMALL_STATE(5189)] = 251739, + [SMALL_STATE(5190)] = 251760, + [SMALL_STATE(5191)] = 251781, + [SMALL_STATE(5192)] = 251802, + [SMALL_STATE(5193)] = 251823, + [SMALL_STATE(5194)] = 251844, + [SMALL_STATE(5195)] = 251865, + [SMALL_STATE(5196)] = 251886, + [SMALL_STATE(5197)] = 251907, + [SMALL_STATE(5198)] = 251928, + [SMALL_STATE(5199)] = 251945, + [SMALL_STATE(5200)] = 251964, + [SMALL_STATE(5201)] = 251985, + [SMALL_STATE(5202)] = 252006, + [SMALL_STATE(5203)] = 252027, + [SMALL_STATE(5204)] = 252048, + [SMALL_STATE(5205)] = 252069, + [SMALL_STATE(5206)] = 252090, + [SMALL_STATE(5207)] = 252111, + [SMALL_STATE(5208)] = 252132, + [SMALL_STATE(5209)] = 252153, + [SMALL_STATE(5210)] = 252174, + [SMALL_STATE(5211)] = 252195, + [SMALL_STATE(5212)] = 252216, + [SMALL_STATE(5213)] = 252237, + [SMALL_STATE(5214)] = 252258, + [SMALL_STATE(5215)] = 252279, + [SMALL_STATE(5216)] = 252300, + [SMALL_STATE(5217)] = 252321, + [SMALL_STATE(5218)] = 252342, + [SMALL_STATE(5219)] = 252363, + [SMALL_STATE(5220)] = 252384, + [SMALL_STATE(5221)] = 252405, + [SMALL_STATE(5222)] = 252426, + [SMALL_STATE(5223)] = 252447, + [SMALL_STATE(5224)] = 252468, + [SMALL_STATE(5225)] = 252489, + [SMALL_STATE(5226)] = 252510, + [SMALL_STATE(5227)] = 252531, + [SMALL_STATE(5228)] = 252552, + [SMALL_STATE(5229)] = 252573, + [SMALL_STATE(5230)] = 252594, + [SMALL_STATE(5231)] = 252615, + [SMALL_STATE(5232)] = 252636, + [SMALL_STATE(5233)] = 252657, + [SMALL_STATE(5234)] = 252678, + [SMALL_STATE(5235)] = 252699, + [SMALL_STATE(5236)] = 252720, + [SMALL_STATE(5237)] = 252741, + [SMALL_STATE(5238)] = 252762, + [SMALL_STATE(5239)] = 252783, + [SMALL_STATE(5240)] = 252804, + [SMALL_STATE(5241)] = 252825, + [SMALL_STATE(5242)] = 252846, + [SMALL_STATE(5243)] = 252867, + [SMALL_STATE(5244)] = 252888, + [SMALL_STATE(5245)] = 252909, + [SMALL_STATE(5246)] = 252930, + [SMALL_STATE(5247)] = 252951, + [SMALL_STATE(5248)] = 252972, + [SMALL_STATE(5249)] = 252993, + [SMALL_STATE(5250)] = 253014, + [SMALL_STATE(5251)] = 253035, + [SMALL_STATE(5252)] = 253056, + [SMALL_STATE(5253)] = 253077, + [SMALL_STATE(5254)] = 253098, + [SMALL_STATE(5255)] = 253119, + [SMALL_STATE(5256)] = 253140, + [SMALL_STATE(5257)] = 253161, + [SMALL_STATE(5258)] = 253182, + [SMALL_STATE(5259)] = 253199, + [SMALL_STATE(5260)] = 253220, + [SMALL_STATE(5261)] = 253241, + [SMALL_STATE(5262)] = 253262, + [SMALL_STATE(5263)] = 253283, + [SMALL_STATE(5264)] = 253304, + [SMALL_STATE(5265)] = 253325, + [SMALL_STATE(5266)] = 253346, + [SMALL_STATE(5267)] = 253367, + [SMALL_STATE(5268)] = 253388, + [SMALL_STATE(5269)] = 253409, + [SMALL_STATE(5270)] = 253430, + [SMALL_STATE(5271)] = 253451, + [SMALL_STATE(5272)] = 253472, + [SMALL_STATE(5273)] = 253493, + [SMALL_STATE(5274)] = 253514, + [SMALL_STATE(5275)] = 253535, + [SMALL_STATE(5276)] = 253556, + [SMALL_STATE(5277)] = 253577, + [SMALL_STATE(5278)] = 253598, + [SMALL_STATE(5279)] = 253619, + [SMALL_STATE(5280)] = 253640, + [SMALL_STATE(5281)] = 253661, + [SMALL_STATE(5282)] = 253682, + [SMALL_STATE(5283)] = 253703, + [SMALL_STATE(5284)] = 253724, + [SMALL_STATE(5285)] = 253745, + [SMALL_STATE(5286)] = 253766, + [SMALL_STATE(5287)] = 253787, + [SMALL_STATE(5288)] = 253808, + [SMALL_STATE(5289)] = 253829, + [SMALL_STATE(5290)] = 253850, + [SMALL_STATE(5291)] = 253871, + [SMALL_STATE(5292)] = 253892, + [SMALL_STATE(5293)] = 253913, + [SMALL_STATE(5294)] = 253934, + [SMALL_STATE(5295)] = 253955, + [SMALL_STATE(5296)] = 253976, + [SMALL_STATE(5297)] = 253997, + [SMALL_STATE(5298)] = 254018, + [SMALL_STATE(5299)] = 254039, + [SMALL_STATE(5300)] = 254060, + [SMALL_STATE(5301)] = 254081, + [SMALL_STATE(5302)] = 254102, + [SMALL_STATE(5303)] = 254123, + [SMALL_STATE(5304)] = 254144, + [SMALL_STATE(5305)] = 254165, + [SMALL_STATE(5306)] = 254186, + [SMALL_STATE(5307)] = 254207, + [SMALL_STATE(5308)] = 254228, + [SMALL_STATE(5309)] = 254249, + [SMALL_STATE(5310)] = 254270, + [SMALL_STATE(5311)] = 254291, + [SMALL_STATE(5312)] = 254312, + [SMALL_STATE(5313)] = 254333, + [SMALL_STATE(5314)] = 254354, + [SMALL_STATE(5315)] = 254375, + [SMALL_STATE(5316)] = 254396, + [SMALL_STATE(5317)] = 254417, + [SMALL_STATE(5318)] = 254438, + [SMALL_STATE(5319)] = 254459, + [SMALL_STATE(5320)] = 254480, + [SMALL_STATE(5321)] = 254501, + [SMALL_STATE(5322)] = 254522, + [SMALL_STATE(5323)] = 254543, + [SMALL_STATE(5324)] = 254564, + [SMALL_STATE(5325)] = 254585, + [SMALL_STATE(5326)] = 254606, + [SMALL_STATE(5327)] = 254627, + [SMALL_STATE(5328)] = 254648, + [SMALL_STATE(5329)] = 254669, + [SMALL_STATE(5330)] = 254690, + [SMALL_STATE(5331)] = 254711, + [SMALL_STATE(5332)] = 254732, + [SMALL_STATE(5333)] = 254753, + [SMALL_STATE(5334)] = 254774, + [SMALL_STATE(5335)] = 254795, + [SMALL_STATE(5336)] = 254816, + [SMALL_STATE(5337)] = 254837, + [SMALL_STATE(5338)] = 254858, + [SMALL_STATE(5339)] = 254879, + [SMALL_STATE(5340)] = 254900, + [SMALL_STATE(5341)] = 254921, + [SMALL_STATE(5342)] = 254942, + [SMALL_STATE(5343)] = 254963, + [SMALL_STATE(5344)] = 254984, + [SMALL_STATE(5345)] = 255005, + [SMALL_STATE(5346)] = 255026, + [SMALL_STATE(5347)] = 255047, + [SMALL_STATE(5348)] = 255068, + [SMALL_STATE(5349)] = 255089, + [SMALL_STATE(5350)] = 255110, + [SMALL_STATE(5351)] = 255131, + [SMALL_STATE(5352)] = 255152, + [SMALL_STATE(5353)] = 255173, + [SMALL_STATE(5354)] = 255194, + [SMALL_STATE(5355)] = 255215, + [SMALL_STATE(5356)] = 255236, + [SMALL_STATE(5357)] = 255257, + [SMALL_STATE(5358)] = 255278, + [SMALL_STATE(5359)] = 255299, + [SMALL_STATE(5360)] = 255320, + [SMALL_STATE(5361)] = 255341, + [SMALL_STATE(5362)] = 255362, + [SMALL_STATE(5363)] = 255383, + [SMALL_STATE(5364)] = 255404, + [SMALL_STATE(5365)] = 255425, + [SMALL_STATE(5366)] = 255446, + [SMALL_STATE(5367)] = 255467, + [SMALL_STATE(5368)] = 255488, + [SMALL_STATE(5369)] = 255509, + [SMALL_STATE(5370)] = 255530, + [SMALL_STATE(5371)] = 255551, + [SMALL_STATE(5372)] = 255572, + [SMALL_STATE(5373)] = 255593, + [SMALL_STATE(5374)] = 255614, + [SMALL_STATE(5375)] = 255635, + [SMALL_STATE(5376)] = 255656, + [SMALL_STATE(5377)] = 255677, + [SMALL_STATE(5378)] = 255698, + [SMALL_STATE(5379)] = 255719, + [SMALL_STATE(5380)] = 255740, + [SMALL_STATE(5381)] = 255761, + [SMALL_STATE(5382)] = 255782, + [SMALL_STATE(5383)] = 255803, + [SMALL_STATE(5384)] = 255824, + [SMALL_STATE(5385)] = 255845, + [SMALL_STATE(5386)] = 255866, + [SMALL_STATE(5387)] = 255887, + [SMALL_STATE(5388)] = 255908, + [SMALL_STATE(5389)] = 255929, + [SMALL_STATE(5390)] = 255950, + [SMALL_STATE(5391)] = 255971, + [SMALL_STATE(5392)] = 255992, + [SMALL_STATE(5393)] = 256013, + [SMALL_STATE(5394)] = 256034, + [SMALL_STATE(5395)] = 256055, + [SMALL_STATE(5396)] = 256076, + [SMALL_STATE(5397)] = 256097, + [SMALL_STATE(5398)] = 256118, + [SMALL_STATE(5399)] = 256139, + [SMALL_STATE(5400)] = 256160, + [SMALL_STATE(5401)] = 256181, + [SMALL_STATE(5402)] = 256202, + [SMALL_STATE(5403)] = 256223, + [SMALL_STATE(5404)] = 256244, + [SMALL_STATE(5405)] = 256265, + [SMALL_STATE(5406)] = 256282, + [SMALL_STATE(5407)] = 256303, + [SMALL_STATE(5408)] = 256324, + [SMALL_STATE(5409)] = 256345, + [SMALL_STATE(5410)] = 256366, + [SMALL_STATE(5411)] = 256387, + [SMALL_STATE(5412)] = 256408, + [SMALL_STATE(5413)] = 256429, + [SMALL_STATE(5414)] = 256450, + [SMALL_STATE(5415)] = 256471, + [SMALL_STATE(5416)] = 256492, + [SMALL_STATE(5417)] = 256513, + [SMALL_STATE(5418)] = 256534, + [SMALL_STATE(5419)] = 256555, + [SMALL_STATE(5420)] = 256576, + [SMALL_STATE(5421)] = 256597, + [SMALL_STATE(5422)] = 256618, + [SMALL_STATE(5423)] = 256639, + [SMALL_STATE(5424)] = 256660, + [SMALL_STATE(5425)] = 256681, + [SMALL_STATE(5426)] = 256702, + [SMALL_STATE(5427)] = 256723, + [SMALL_STATE(5428)] = 256744, + [SMALL_STATE(5429)] = 256765, + [SMALL_STATE(5430)] = 256786, + [SMALL_STATE(5431)] = 256807, + [SMALL_STATE(5432)] = 256828, + [SMALL_STATE(5433)] = 256849, + [SMALL_STATE(5434)] = 256870, + [SMALL_STATE(5435)] = 256891, + [SMALL_STATE(5436)] = 256912, + [SMALL_STATE(5437)] = 256933, + [SMALL_STATE(5438)] = 256951, + [SMALL_STATE(5439)] = 256969, + [SMALL_STATE(5440)] = 256987, + [SMALL_STATE(5441)] = 257005, + [SMALL_STATE(5442)] = 257023, + [SMALL_STATE(5443)] = 257041, + [SMALL_STATE(5444)] = 257057, + [SMALL_STATE(5445)] = 257075, + [SMALL_STATE(5446)] = 257093, + [SMALL_STATE(5447)] = 257111, + [SMALL_STATE(5448)] = 257125, + [SMALL_STATE(5449)] = 257139, + [SMALL_STATE(5450)] = 257157, + [SMALL_STATE(5451)] = 257171, + [SMALL_STATE(5452)] = 257187, + [SMALL_STATE(5453)] = 257202, + [SMALL_STATE(5454)] = 257217, + [SMALL_STATE(5455)] = 257232, + [SMALL_STATE(5456)] = 257247, + [SMALL_STATE(5457)] = 257262, + [SMALL_STATE(5458)] = 257275, + [SMALL_STATE(5459)] = 257290, + [SMALL_STATE(5460)] = 257305, + [SMALL_STATE(5461)] = 257320, + [SMALL_STATE(5462)] = 257335, + [SMALL_STATE(5463)] = 257348, + [SMALL_STATE(5464)] = 257363, + [SMALL_STATE(5465)] = 257378, + [SMALL_STATE(5466)] = 257393, + [SMALL_STATE(5467)] = 257408, + [SMALL_STATE(5468)] = 257423, + [SMALL_STATE(5469)] = 257438, + [SMALL_STATE(5470)] = 257451, + [SMALL_STATE(5471)] = 257466, + [SMALL_STATE(5472)] = 257481, + [SMALL_STATE(5473)] = 257496, + [SMALL_STATE(5474)] = 257511, + [SMALL_STATE(5475)] = 257526, + [SMALL_STATE(5476)] = 257541, + [SMALL_STATE(5477)] = 257556, + [SMALL_STATE(5478)] = 257571, + [SMALL_STATE(5479)] = 257586, + [SMALL_STATE(5480)] = 257601, + [SMALL_STATE(5481)] = 257616, + [SMALL_STATE(5482)] = 257631, + [SMALL_STATE(5483)] = 257646, + [SMALL_STATE(5484)] = 257661, + [SMALL_STATE(5485)] = 257676, + [SMALL_STATE(5486)] = 257691, + [SMALL_STATE(5487)] = 257706, + [SMALL_STATE(5488)] = 257721, + [SMALL_STATE(5489)] = 257736, + [SMALL_STATE(5490)] = 257751, + [SMALL_STATE(5491)] = 257766, + [SMALL_STATE(5492)] = 257781, + [SMALL_STATE(5493)] = 257796, + [SMALL_STATE(5494)] = 257809, + [SMALL_STATE(5495)] = 257824, + [SMALL_STATE(5496)] = 257839, + [SMALL_STATE(5497)] = 257854, + [SMALL_STATE(5498)] = 257869, + [SMALL_STATE(5499)] = 257884, + [SMALL_STATE(5500)] = 257899, + [SMALL_STATE(5501)] = 257914, + [SMALL_STATE(5502)] = 257929, + [SMALL_STATE(5503)] = 257944, + [SMALL_STATE(5504)] = 257959, + [SMALL_STATE(5505)] = 257974, + [SMALL_STATE(5506)] = 257989, + [SMALL_STATE(5507)] = 258004, + [SMALL_STATE(5508)] = 258019, + [SMALL_STATE(5509)] = 258034, + [SMALL_STATE(5510)] = 258049, + [SMALL_STATE(5511)] = 258064, + [SMALL_STATE(5512)] = 258079, + [SMALL_STATE(5513)] = 258094, + [SMALL_STATE(5514)] = 258109, + [SMALL_STATE(5515)] = 258124, + [SMALL_STATE(5516)] = 258139, + [SMALL_STATE(5517)] = 258154, + [SMALL_STATE(5518)] = 258169, + [SMALL_STATE(5519)] = 258184, + [SMALL_STATE(5520)] = 258199, + [SMALL_STATE(5521)] = 258214, + [SMALL_STATE(5522)] = 258229, + [SMALL_STATE(5523)] = 258244, + [SMALL_STATE(5524)] = 258257, + [SMALL_STATE(5525)] = 258272, + [SMALL_STATE(5526)] = 258287, + [SMALL_STATE(5527)] = 258302, + [SMALL_STATE(5528)] = 258317, + [SMALL_STATE(5529)] = 258330, + [SMALL_STATE(5530)] = 258345, + [SMALL_STATE(5531)] = 258360, + [SMALL_STATE(5532)] = 258375, + [SMALL_STATE(5533)] = 258390, + [SMALL_STATE(5534)] = 258403, + [SMALL_STATE(5535)] = 258418, + [SMALL_STATE(5536)] = 258433, + [SMALL_STATE(5537)] = 258448, + [SMALL_STATE(5538)] = 258463, + [SMALL_STATE(5539)] = 258478, + [SMALL_STATE(5540)] = 258493, + [SMALL_STATE(5541)] = 258505, + [SMALL_STATE(5542)] = 258517, + [SMALL_STATE(5543)] = 258529, + [SMALL_STATE(5544)] = 258541, + [SMALL_STATE(5545)] = 258553, + [SMALL_STATE(5546)] = 258565, + [SMALL_STATE(5547)] = 258577, + [SMALL_STATE(5548)] = 258589, + [SMALL_STATE(5549)] = 258601, + [SMALL_STATE(5550)] = 258613, + [SMALL_STATE(5551)] = 258625, + [SMALL_STATE(5552)] = 258637, + [SMALL_STATE(5553)] = 258649, + [SMALL_STATE(5554)] = 258661, + [SMALL_STATE(5555)] = 258673, + [SMALL_STATE(5556)] = 258685, + [SMALL_STATE(5557)] = 258697, + [SMALL_STATE(5558)] = 258709, + [SMALL_STATE(5559)] = 258721, + [SMALL_STATE(5560)] = 258733, + [SMALL_STATE(5561)] = 258745, + [SMALL_STATE(5562)] = 258757, + [SMALL_STATE(5563)] = 258769, + [SMALL_STATE(5564)] = 258781, + [SMALL_STATE(5565)] = 258793, + [SMALL_STATE(5566)] = 258805, + [SMALL_STATE(5567)] = 258817, + [SMALL_STATE(5568)] = 258829, + [SMALL_STATE(5569)] = 258841, + [SMALL_STATE(5570)] = 258853, + [SMALL_STATE(5571)] = 258865, + [SMALL_STATE(5572)] = 258877, + [SMALL_STATE(5573)] = 258889, + [SMALL_STATE(5574)] = 258901, + [SMALL_STATE(5575)] = 258913, + [SMALL_STATE(5576)] = 258925, + [SMALL_STATE(5577)] = 258937, + [SMALL_STATE(5578)] = 258949, + [SMALL_STATE(5579)] = 258961, + [SMALL_STATE(5580)] = 258973, + [SMALL_STATE(5581)] = 258985, + [SMALL_STATE(5582)] = 258997, + [SMALL_STATE(5583)] = 259009, + [SMALL_STATE(5584)] = 259021, + [SMALL_STATE(5585)] = 259033, + [SMALL_STATE(5586)] = 259045, + [SMALL_STATE(5587)] = 259057, + [SMALL_STATE(5588)] = 259069, + [SMALL_STATE(5589)] = 259081, + [SMALL_STATE(5590)] = 259093, + [SMALL_STATE(5591)] = 259105, + [SMALL_STATE(5592)] = 259117, + [SMALL_STATE(5593)] = 259129, + [SMALL_STATE(5594)] = 259141, + [SMALL_STATE(5595)] = 259153, + [SMALL_STATE(5596)] = 259165, + [SMALL_STATE(5597)] = 259177, + [SMALL_STATE(5598)] = 259189, + [SMALL_STATE(5599)] = 259201, + [SMALL_STATE(5600)] = 259213, + [SMALL_STATE(5601)] = 259225, + [SMALL_STATE(5602)] = 259237, + [SMALL_STATE(5603)] = 259249, + [SMALL_STATE(5604)] = 259261, + [SMALL_STATE(5605)] = 259273, + [SMALL_STATE(5606)] = 259285, + [SMALL_STATE(5607)] = 259297, + [SMALL_STATE(5608)] = 259309, + [SMALL_STATE(5609)] = 259321, + [SMALL_STATE(5610)] = 259333, + [SMALL_STATE(5611)] = 259345, + [SMALL_STATE(5612)] = 259357, + [SMALL_STATE(5613)] = 259369, + [SMALL_STATE(5614)] = 259381, + [SMALL_STATE(5615)] = 259393, + [SMALL_STATE(5616)] = 259405, + [SMALL_STATE(5617)] = 259417, + [SMALL_STATE(5618)] = 259429, + [SMALL_STATE(5619)] = 259441, + [SMALL_STATE(5620)] = 259453, + [SMALL_STATE(5621)] = 259465, + [SMALL_STATE(5622)] = 259477, + [SMALL_STATE(5623)] = 259489, + [SMALL_STATE(5624)] = 259501, + [SMALL_STATE(5625)] = 259513, + [SMALL_STATE(5626)] = 259525, + [SMALL_STATE(5627)] = 259537, + [SMALL_STATE(5628)] = 259549, + [SMALL_STATE(5629)] = 259561, + [SMALL_STATE(5630)] = 259573, + [SMALL_STATE(5631)] = 259585, + [SMALL_STATE(5632)] = 259597, + [SMALL_STATE(5633)] = 259609, + [SMALL_STATE(5634)] = 259621, + [SMALL_STATE(5635)] = 259633, + [SMALL_STATE(5636)] = 259645, + [SMALL_STATE(5637)] = 259657, + [SMALL_STATE(5638)] = 259669, + [SMALL_STATE(5639)] = 259681, + [SMALL_STATE(5640)] = 259693, + [SMALL_STATE(5641)] = 259705, + [SMALL_STATE(5642)] = 259717, + [SMALL_STATE(5643)] = 259729, + [SMALL_STATE(5644)] = 259741, + [SMALL_STATE(5645)] = 259753, + [SMALL_STATE(5646)] = 259765, + [SMALL_STATE(5647)] = 259777, + [SMALL_STATE(5648)] = 259789, + [SMALL_STATE(5649)] = 259801, + [SMALL_STATE(5650)] = 259813, + [SMALL_STATE(5651)] = 259825, + [SMALL_STATE(5652)] = 259837, + [SMALL_STATE(5653)] = 259849, + [SMALL_STATE(5654)] = 259861, + [SMALL_STATE(5655)] = 259873, + [SMALL_STATE(5656)] = 259885, + [SMALL_STATE(5657)] = 259897, + [SMALL_STATE(5658)] = 259909, + [SMALL_STATE(5659)] = 259921, + [SMALL_STATE(5660)] = 259933, + [SMALL_STATE(5661)] = 259945, + [SMALL_STATE(5662)] = 259957, + [SMALL_STATE(5663)] = 259969, + [SMALL_STATE(5664)] = 259981, + [SMALL_STATE(5665)] = 259993, + [SMALL_STATE(5666)] = 260005, + [SMALL_STATE(5667)] = 260017, + [SMALL_STATE(5668)] = 260029, + [SMALL_STATE(5669)] = 260041, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -350932,4859 +391232,5088 @@ 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, 0), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5061), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4848), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5061), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4412), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4413), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4414), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4416), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5669), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5453), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5669), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5044), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4864), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4417), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4427), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4428), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4429), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5454), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), - [189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4174), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(5061), - [222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4857), - [224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(838), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(5061), - [248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), - [250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_call_without_parentheses, 1, .production_id = 2), - [252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_call_without_parentheses, 1, .production_id = 2), - [254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3994), - [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3995), - [268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), - [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3997), - [272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4858), - [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), - [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4894), - [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(904), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3365), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4098), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4846), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(710), - [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), - [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 1), - [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_block, 1), - [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 1), - [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_after_block, 1), - [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), - [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), - [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4863), - [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4861), - [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(484), - [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3865), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3864), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3863), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), - [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4889), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), - [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4845), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(891), - [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), - [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), - [550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(475), - [553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(796), - [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), - [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), - [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4254), - [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4253), - [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4251), - [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4867), - [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), - [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4289), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4878), - [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4901), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), - [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(592), - [659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(671), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 2), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_block, 2), - [684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(182), - [687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(535), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 2), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_after_block, 2), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3982), + [189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_call_without_parentheses, 1, .production_id = 3), + [191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_call_without_parentheses, 1, .production_id = 3), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4602), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4603), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4604), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4605), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5513), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), + [245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4896), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4895), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4737), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4758), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(5669), + [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5520), + [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(809), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), + [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(5669), + [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5090), + [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(644), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_after_block, 1), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4705), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4706), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4707), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4708), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5474), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(518), + [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), + [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), + [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), + [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), + [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 1), + [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_block, 1), + [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 1), + [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), + [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5505), + [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(798), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5490), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(468), + [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), + [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), + [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5495), + [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(443), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4473), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4472), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4471), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4450), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5501), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), + [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(517), + [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5515), + [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), + [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), + [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), + [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4474), + [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), + [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4469), + [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4463), + [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5455), + [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5519), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), + [604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(718), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), + [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4885), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4872), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4871), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4868), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5471), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), + [659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(543), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_block, 2), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 2), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_after_block, 2), + [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(199), + [691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(735), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 2), [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4902), - [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), - [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), - [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), - [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), - [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), - [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), - [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), - [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), - [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5509), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), + [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), + [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), + [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), + [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), + [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), + [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4081), - [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4893), - [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), - [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3891), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4698), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4697), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4696), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4695), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5503), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 1), [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 1), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), - [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3885), - [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4859), - [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), - [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), - [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), - [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), - [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), - [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), - [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), - [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), - [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), - [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), - [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), - [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), - [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), - [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), - [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), - [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), - [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), - [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [1060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_operator_identifier, 1), SHIFT(5061), - [1063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause, 1, .production_id = 3), - [1065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause, 2, .production_id = 7), - [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), - [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4168), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4246), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4177), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4905), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), - [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), - [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), - [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), - [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), - [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), - [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4292), - [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4293), - [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4897), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), - [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), - [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), - [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), - [1183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__items_with_trailing_separator, 2), - [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), - [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), - [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), - [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), - [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), - [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), - [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), - [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), - [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), - [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), - [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), - [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), - [1241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__items_with_trailing_separator, 3), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), - [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), - [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), - [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), - [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), - [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), - [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), - [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), - [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), - [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), - [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), - [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), - [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), - [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 3), - [1323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body, 3), - [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 2), - [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body, 2), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), + [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4491), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4492), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4493), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4494), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5512), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), + [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), + [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), + [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), + [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), + [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), + [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), + [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), + [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), + [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3918), + [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3915), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), + [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), + [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), + [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), + [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), + [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), + [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), + [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), + [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3923), + [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [1060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause, 2, .production_id = 10), + [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_operator_identifier, 1), SHIFT(5669), + [1065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause, 1, .production_id = 5), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), + [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4798), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4787), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4624), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4684), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5524), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3955), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), + [1121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__items_with_trailing_separator, 3), + [1123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__items_with_trailing_separator, 2), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4073), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4799), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4862), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4867), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4890), + [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5510), + [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), + [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), + [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), + [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), + [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), + [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), + [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), + [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3913), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), + [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), + [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), + [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3865), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), + [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), + [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), + [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4113), + [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), + [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), + [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), + [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 2), + [1323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body, 2), + [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), + [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 3), + [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body, 3), [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 4), [1333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body, 4), - [1335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_block, 5), - [1337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_after_block, 5), - [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), - [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), - [1343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 5), - [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), - [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), - [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_after_block, 3), - [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), - [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), - [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), - [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), - [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), - [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), - [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 3), - [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_block, 3), - [1375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 3), - [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [1379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 5), - [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), - [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), - [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), - [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), - [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), - [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), - [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), - [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), - [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), - [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), - [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4884), - [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), - [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), - [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4874), - [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), - [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), - [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_after_block, 4), - [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), - [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), - [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 4), - [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), - [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), - [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), - [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), - [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), - [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), - [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), - [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), - [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_block, 4), - [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), - [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 4), - [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), - [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), - [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), - [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), - [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), - [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), - [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), - [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), - [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 4), - [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), - [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), - [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), - [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), - [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), - [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), - [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), - [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), - [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), - [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 2), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), - [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 1), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), - [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), - [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), - [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), - [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), - [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), - [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), - [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), - [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), - [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), - [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 3), - [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), - [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), - [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), - [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), - [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), - [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), - [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), - [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), - [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), - [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), - [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), - [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), - [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), - [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), - [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), - [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), - [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), - [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), - [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), - [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), - [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), - [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), - [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), - [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), - [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), - [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), - [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), - [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), - [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), - [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), - [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), - [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), - [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), - [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), - [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), - [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), - [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), - [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), - [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), - [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), - [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), - [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), - [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), - [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), - [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), - [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), - [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), - [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), - [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), - [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), - [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), - [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), - [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), - [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), - [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), - [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), - [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), - [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), - [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), - [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), - [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), - [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), - [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), - [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), - [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), - [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), - [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), - [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), - [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), - [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), - [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), - [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), - [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), - [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), - [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), - [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), - [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), - [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), - [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), - [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), - [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), - [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), - [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), - [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), - [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), - [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), - [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), - [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), - [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), - [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), - [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), - [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), - [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), - [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), - [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), - [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), - [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), - [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), - [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), - [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), - [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), - [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), - [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), - [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), - [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), - [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), - [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), - [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), - [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), - [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), - [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), - [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), - [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), - [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), - [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), - [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), - [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), - [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), - [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), - [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), - [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), - [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), - [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), - [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), - [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), - [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), - [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), - [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), - [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), - [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), - [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), - [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), - [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), - [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), - [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), - [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), - [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), - [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), - [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), - [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), - [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), - [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), - [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), - [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), - [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), - [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), - [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), - [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), - [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), - [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), - [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), - [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), - [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), - [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), - [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), - [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), - [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), - [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), - [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), - [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), - [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), - [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), - [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), - [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), - [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), - [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), - [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), - [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), - [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), - [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), - [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), - [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), - [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), - [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), - [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), - [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), - [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), - [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), - [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), - [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), - [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), - [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), - [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), - [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), - [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), - [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), - [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), - [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), - [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), - [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), - [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), - [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), - [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), - [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), - [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), - [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), - [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), - [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), - [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), - [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), - [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), - [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), - [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), - [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), - [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), - [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), - [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), - [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), - [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), - [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), - [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), - [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), - [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), - [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), - [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), - [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), - [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), - [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), - [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), - [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), - [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), - [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), - [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), - [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), - [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), - [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), - [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), - [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), - [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), - [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), - [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), - [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), - [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), - [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), - [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), - [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), - [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), - [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), - [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), - [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), - [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), - [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), - [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), - [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), - [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), - [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), - [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), - [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), - [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), - [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), - [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), - [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), - [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), - [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), - [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), - [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), - [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), - [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), - [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), - [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), - [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), - [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), - [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), - [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), - [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), - [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), - [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), - [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), - [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), - [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), - [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), - [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), - [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), - [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), - [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), - [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), - [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), - [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), - [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), - [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), - [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), - [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), - [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), - [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), - [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), - [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), - [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), - [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), - [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), - [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), - [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), - [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), - [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), - [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), - [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), - [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_identifier, 1), - [2613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_identifier, 1), - [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_dot, 3, .production_id = 15), - [2617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_dot, 3, .production_id = 15), - [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_dot, 3, .production_id = 17), - [2621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_dot, 3, .production_id = 17), - [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_dot, 3, .production_id = 16), - [2625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_dot, 3, .production_id = 16), - [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_dot, 3, .production_id = 14), - [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_dot, 3, .production_id = 14), - [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_identifier, 1), - [2633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_identifier, 1), - [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_double, 2), - [2637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_double, 2), - [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_single, 2), - [2641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_single, 2), - [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_double, 3), - [2645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_double, 3), - [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_single, 3), - [2649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_single, 3), - [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1), - [2653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1), - [2655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminator_repeat1, 2), SHIFT_REPEAT(1018), - [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__terminator_repeat1, 2), - [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__terminator_repeat1, 2), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [2664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__terminator, 1), - [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__terminator, 1), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [2674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminator_repeat1, 2), SHIFT_REPEAT(1021), - [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__terminator, 2), - [2681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__terminator, 2), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), + [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), + [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), + [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), + [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5499), + [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), + [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), + [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), + [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4031), + [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), + [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), + [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), + [1383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_after_block, 3), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [1395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 3), + [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), + [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), + [1407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_block, 3), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), + [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), + [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), + [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_after_block, 5), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), + [1431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 3), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), + [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5463), + [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), + [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), + [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), + [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), + [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), + [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), + [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3972), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), + [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_after_block, 4), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), + [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), + [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 4), + [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), + [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), + [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 5), + [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), + [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_block, 5), + [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_block, 4), + [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), + [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 4), + [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 5), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), + [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), + [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 2), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4159), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4018), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), + [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), + [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), + [1645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 4), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3985), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 3), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), + [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), + [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), + [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 1), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), + [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), + [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), + [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), + [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4065), + [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), + [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), + [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), + [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), + [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), + [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), + [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), + [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), + [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), + [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), + [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), + [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), + [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), + [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), + [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), + [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), + [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), + [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), + [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), + [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), + [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), + [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), + [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), + [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), + [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), + [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), + [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), + [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), + [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), + [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), + [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), + [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), + [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), + [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), + [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), + [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), + [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), + [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), + [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), + [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), + [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2975), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), + [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), + [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), + [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), + [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), + [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), + [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), + [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), + [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), + [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), + [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), + [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3858), + [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3859), + [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), + [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), + [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), + [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), + [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), + [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), + [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), + [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), + [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), + [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), + [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), + [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), + [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), + [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), + [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), + [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), + [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), + [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), + [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), + [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), + [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), + [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), + [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), + [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3401), + [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), + [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), + [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), + [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), + [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), + [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), + [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), + [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), + [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), + [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), + [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), + [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), + [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), + [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), + [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), + [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), + [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), + [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3882), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), + [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4135), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), + [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), + [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3780), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), + [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), + [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), + [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), + [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), + [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3787), + [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), + [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), + [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), + [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), + [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), + [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), + [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), + [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), + [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), + [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), + [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), + [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), + [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), + [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3803), + [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), + [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3979), + [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), + [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), + [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3973), + [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3970), + [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), + [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), + [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3968), + [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3967), + [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), + [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), + [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3964), + [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3959), + [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), + [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), + [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), + [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), + [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), + [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), + [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), + [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), + [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), + [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), + [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), + [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), + [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), + [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4079), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), + [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), + [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), + [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), + [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), + [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), + [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4069), + [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4061), + [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), + [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), + [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), + [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4058), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), + [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), + [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), + [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), + [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), + [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), + [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), + [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), + [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), + [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), + [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), + [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), + [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), + [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), + [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), + [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), + [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), + [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), + [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), + [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), + [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), + [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), + [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), + [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), + [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), + [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), + [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), + [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), + [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), + [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), + [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), + [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), + [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), + [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), + [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), + [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), + [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), + [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), + [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), + [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), + [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), + [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), + [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), + [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), + [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), + [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), + [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), + [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4030), + [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4033), + [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), + [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), + [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), + [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), + [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), + [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4039), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), + [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), + [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), + [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), + [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), + [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), + [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), + [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), + [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), + [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), + [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), + [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), + [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), + [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), + [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), + [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), + [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), + [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), + [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), + [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), + [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), + [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), + [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), + [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), + [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), + [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), + [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), + [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), + [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4059), + [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), + [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), + [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4066), + [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4091), + [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4095), + [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), + [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4081), + [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), + [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), + [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), + [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), + [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), + [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), + [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_double, 3, .production_id = 17), + [2613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_double, 3, .production_id = 17), + [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_identifier, 1), + [2617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_identifier, 1), + [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1), + [2621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1), + [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_dot, 3, .production_id = 21), + [2625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_dot, 3, .production_id = 21), + [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_dot, 3, .production_id = 22), + [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_dot, 3, .production_id = 22), + [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_single, 3, .production_id = 17), + [2633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_single, 3, .production_id = 17), + [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_dot, 3, .production_id = 20), + [2637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_dot, 3, .production_id = 20), + [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_dot, 3, .production_id = 19), + [2641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_dot, 3, .production_id = 19), + [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_identifier, 1), + [2645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_identifier, 1), + [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_single, 2, .production_id = 7), + [2649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_single, 2, .production_id = 7), + [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_double, 2, .production_id = 7), + [2653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_double, 2, .production_id = 7), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__terminator, 1), + [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__terminator, 1), + [2663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminator_repeat1, 2), SHIFT_REPEAT(1019), + [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__terminator_repeat1, 2), + [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__terminator_repeat1, 2), + [2670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminator_repeat1, 2), SHIFT_REPEAT(1020), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [2679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__terminator, 2), + [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__terminator, 2), [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), [2687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminator_repeat1, 2), SHIFT_REPEAT(1027), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [2692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [2694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminator_repeat1, 2), SHIFT_REPEAT(1029), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), - [2705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminator_repeat1, 2), SHIFT_REPEAT(1032), - [2708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), - [2710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminator_repeat1, 2), SHIFT_REPEAT(1034), - [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__anonymous_dot, 2, .production_id = 7), - [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3915), - [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), - [2725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), - [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), - [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), - [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [2759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [2765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3879), - [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3878), - [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), - [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4022), - [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), - [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), - [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4204), - [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), - [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), - [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), - [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), - [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [2690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminator_repeat1, 2), SHIFT_REPEAT(1028), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [2697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminator_repeat1, 2), SHIFT_REPEAT(1030), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [2704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminator_repeat1, 2), SHIFT_REPEAT(1032), + [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__anonymous_dot, 2, .production_id = 10), + [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4854), + [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4853), + [2725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4550), + [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), + [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [2759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [2765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4732), + [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4731), + [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), + [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), + [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4580), + [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4579), + [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), + [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), + [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), + [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), + [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4702), + [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4701), + [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), - [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), - [2865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), - [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), - [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), - [2871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_keyword, 2), - [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_keyword, 2), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [2889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [2891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__stab_clause_arguments_without_parentheses, 1), SHIFT(341), - [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [2898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [2865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), + [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), + [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [2871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_keyword, 2, .production_id = 1), + [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_keyword, 2, .production_id = 1), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [2889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [2891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__stab_clause_arguments_without_parentheses, 1), SHIFT(264), + [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [2898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), [2918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_without_parentheses, 1), - [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [2926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [2928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [2936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [2938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [2940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [2954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [2964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [2966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [2968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [2970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_with_parentheses, 1, .production_id = 1), - [2974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_with_parentheses, 1, .production_id = 1), - [2976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_call_with_parentheses, 2, .production_id = 8), - [2980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_call_with_parentheses, 2, .production_id = 8), - [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_call_with_parentheses, 2, .production_id = 2), - [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_call_with_parentheses, 2, .production_id = 2), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), - [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_call_without_parentheses, 2, .production_id = 2), - [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_call_without_parentheses, 2, .production_id = 2), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), - [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__double_call, 2, .production_id = 9), - [3002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__double_call, 2, .production_id = 9), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), - [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_call_without_parentheses, 2, .production_id = 8), - [3010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_call_without_parentheses, 2, .production_id = 8), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), - [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_call_with_parentheses, 3, .production_id = 8), - [3016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_call_with_parentheses, 3, .production_id = 8), - [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 6), - [3020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 6), - [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_charlist, 1), - [3024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_charlist, 1), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [3028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_call_with_parentheses, 3, .production_id = 2), - [3030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_call_with_parentheses, 3, .production_id = 2), - [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [3040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments_with_parentheses_immediate, 3), - [3042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_with_parentheses_immediate, 3), - [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 3), - [3046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 3), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), - [3050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 1), - [3052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 1), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), - [3058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments_with_parentheses, 2), - [3060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_with_parentheses, 2), - [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_call_with_parentheses, 4, .production_id = 8), - [3064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_call_with_parentheses, 4, .production_id = 8), - [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_call_with_parentheses, 4, .production_id = 2), - [3068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_call_with_parentheses, 4, .production_id = 2), - [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [3072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 4), - [3074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 4), - [3076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__anonymous_call, 2, .production_id = 10), - [3078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__anonymous_call, 2, .production_id = 10), - [3080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments_with_parentheses, 3), - [3082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_with_parentheses, 3), - [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [3086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments_with_parentheses_immediate, 2), - [3088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_with_parentheses_immediate, 2), - [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 5), - [3092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 5), - [3094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 7), - [3098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 7), - [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 2), - [3102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 2), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), - [3106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_bar, 3), - [3108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_bar, 3), - [3110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), - [3112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), - [3114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(699), - [3117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments_without_parentheses, 2), - [3119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_without_parentheses, 2), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [3123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_heredoc_single, 2), - [3125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_heredoc_single, 2), - [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_heredoc_double, 2), - [3129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_heredoc_double, 2), - [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_heredoc_single, 3), - [3133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_heredoc_single, 3), - [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_heredoc_double, 3), - [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_heredoc_double, 3), - [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments_without_parentheses, 1), - [3141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_without_parentheses, 1), - [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sigil, 3), - [3145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sigil, 3), - [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_parenthesis, 2), - [3151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_parenthesis, 2), - [3153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_curly, 2), - [3155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_curly, 2), - [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_square, 2), - [3159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_square, 2), - [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_angle, 2), - [3163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_angle, 2), - [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_bar, 2), - [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_bar, 2), - [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_slash, 2), - [3171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_slash, 2), - [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_parenthesis, 2), - [3175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_parenthesis, 2), - [3177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_double, 2), - [3179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_double, 2), - [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_single, 2), - [3183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_single, 2), - [3185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_heredoc_single, 2), - [3187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_heredoc_single, 2), - [3189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_heredoc_double, 2), - [3191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_heredoc_double, 2), - [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_curly, 2), - [3195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_curly, 2), - [3197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_square, 2), - [3199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_square, 2), - [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_angle, 2), - [3203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_angle, 2), - [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_bar, 2), - [3207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_bar, 2), - [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_slash, 2), - [3211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_slash, 2), - [3213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_parenthesis, 3), - [3215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_parenthesis, 3), - [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_curly, 3), - [3219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_curly, 3), - [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_square, 3), - [3223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_square, 3), - [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_angle, 3), - [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_angle, 3), - [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_bar, 3), - [3231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_bar, 3), - [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_slash, 3), - [3235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_slash, 3), - [3237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_parenthesis, 3), - [3239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_parenthesis, 3), - [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_double, 3), - [3243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_double, 3), - [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_single, 3), - [3247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_single, 3), - [3249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_heredoc_single, 3), - [3251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_heredoc_single, 3), - [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_heredoc_double, 3), - [3255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_heredoc_double, 3), - [3257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_curly, 3), - [3259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_curly, 3), - [3261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_square, 3), - [3263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_square, 3), - [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_angle, 3), - [3267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_angle, 3), - [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_slash, 3), - [3271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_slash, 3), - [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments_without_parentheses, 3), - [3275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_without_parentheses, 3), - [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments_without_parentheses, 4), - [3279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_without_parentheses, 4), - [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6), - [3283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6), - [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 5), - [3287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 5), - [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 5, .production_id = 20), - [3291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 5, .production_id = 20), - [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5), - [3295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5), - [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__double_call, 4, .production_id = 9), - [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__double_call, 4, .production_id = 9), - [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_call_without_parentheses, 4, .production_id = 2), - [3303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_call_without_parentheses, 4, .production_id = 2), - [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_call_without_parentheses, 4, .production_id = 8), - [3307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_call_without_parentheses, 4, .production_id = 8), - [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_call, 4, .production_id = 19), - [3311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_call, 4, .production_id = 19), - [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 4), - [3359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 4), - [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__capture_expression, 3), - [3363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__capture_expression, 3), - [3365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 4), - [3367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 4), - [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 4, .production_id = 18), - [3371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 4, .production_id = 18), - [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sigil, 4), - [3375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sigil, 4), - [3377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), - [3379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), - [3381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__double_call, 3, .production_id = 9), - [3383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__double_call, 3, .production_id = 9), - [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_call_without_parentheses, 3, .production_id = 2), - [3387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_call_without_parentheses, 3, .production_id = 2), - [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, .production_id = 14), - [3391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, .production_id = 14), - [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_call_without_parentheses, 3, .production_id = 8), - [3395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_call_without_parentheses, 3, .production_id = 8), - [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dot, 3, .production_id = 14), - [3399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dot, 3, .production_id = 14), - [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 3), - [3403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 3), - [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3), - [3407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3), - [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstring, 3), - [3411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstring, 3), - [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), - [3415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), - [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3), - [3419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3), - [3421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [3423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [3425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 3, .dynamic_precedence = -1, .production_id = 11), - [3427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 3, .dynamic_precedence = -1, .production_id = 11), - [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_call_just_do_block, 2, .production_id = 8), - [3431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_call_just_do_block, 2, .production_id = 8), - [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, .dynamic_precedence = -1, .production_id = 6), - [3435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, .dynamic_precedence = -1, .production_id = 6), - [3437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstring, 2), - [3439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstring, 2), - [3441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), - [3443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), - [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2), - [3447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2), - [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_atom, 2), - [3451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_atom, 2), - [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_without_parentheses, 1, .production_id = 1), - [3455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_without_parentheses, 1, .production_id = 1), - [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 1, .production_id = 1), - [3459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 1, .production_id = 1), - [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nil, 1), - [3463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nil, 1), - [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), - [3467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), - [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keywords, 1), - [3471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keywords, 1), - [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), - [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keywords, 2), - [3477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keywords, 2), - [3479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_keywords_repeat1, 2), - [3481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), - [3483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(3792), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), - [3494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [3496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [3498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [3520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 2, .production_id = 13), - [3544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pair, 2, .production_id = 13), - [3546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), - [3548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(791), - [3551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(3757), - [3554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__capture_expression, 1), - [3560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__capture_expression, 1), - [3562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_with_parentheses, 3), - [3564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 2), SHIFT(1022), - [3567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 2), SHIFT(259), - [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [3572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [3614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 1), SHIFT(1022), - [3617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 1), SHIFT(260), - [3620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body, 1), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4886), - [3624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(3795), - [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), - [3631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_with_parentheses, 2), - [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [3637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [3639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [3647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [3649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__stab_clause_arguments_without_parentheses, 1), SHIFT(326), - [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), - [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [3700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(3783), - [3703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), - [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [3711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [3713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [3715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), - [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), - [3727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), - [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [3737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), - [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), - [3741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), - [3745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), - [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [3751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), - [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [3767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), - [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), - [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [3775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(3769), - [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), - [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), - [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), - [3790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(851), - [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), - [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [3827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [3829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [3839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(740), - [3842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(3770), - [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), - [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), - [3895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), - [3897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(3776), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), - [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), - [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), - [3968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat2, 2), - [3970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat2, 2), - [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), - [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3759), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), - [3978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(3794), - [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), - [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [4023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), - [4033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(483), - [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [4078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(656), - [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [4083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(675), - [4086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(3759), - [4089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(468), - [4092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(3777), - [4095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [4097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), - [4099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), - [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [4111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [4127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [4131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [4133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [4137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [4145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(569), - [4148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [4150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [4152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [4154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [4156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [4158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [4160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [4162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [4164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [4166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [4168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [4170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [4172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [4174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [4176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [4178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [4180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [4182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [4184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [4186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 2), SHIFT(1033), - [4193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 2), SHIFT(348), - [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [4218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [4222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [4224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [4226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [4230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [4236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(3763), - [4239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 1), SHIFT(1033), - [4242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 1), SHIFT(349), - [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), - [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), - [4249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(3758), - [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), - [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [4258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [4260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [4264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [4266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [4268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [4270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [4274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [4276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [4278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [4286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [4288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [4290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [4292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [4294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [4296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [4302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 1), SHIFT(1031), - [4305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 1), SHIFT(350), - [4308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [4312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [4318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [4322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [4326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [4334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [4338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [4342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [4344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), - [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [4352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(3793), - [4355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(476), - [4358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(3761), - [4361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 2), SHIFT(1031), - [4364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 2), SHIFT(346), - [4367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [4369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [4371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [4373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [4377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [4389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [4391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [4405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4925), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), - [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), - [4425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(3767), - [4428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), - [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [4432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [4434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [4438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [4442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [4444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [4446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [4450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [4458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [4460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [4462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [4464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [4466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [4470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(3765), - [4473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), - [4475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), - [4477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), - [4479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(3773), - [4482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__items_with_trailing_separator, 1), - [4484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), - [4488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(3786), - [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), - [4493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(3779), - [4496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), - [4498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [4502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [4504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [4506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [4508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__stab_clause_arguments_without_parentheses, 1), SHIFT(335), - [4511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [4513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [4515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [4517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [4519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [4521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [4523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [4525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [4527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [4529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [4531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [4535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [4561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [4563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [4571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [4573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [4587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(3774), - [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), - [4592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), - [4594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__stab_clause_arguments_with_parentheses_repeat1, 2), - [4596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__stab_clause_arguments_with_parentheses_repeat1, 2), REDUCE(aux_sym__stab_clause_arguments_without_parentheses_repeat1, 2), - [4599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__stab_clause_arguments_without_parentheses_repeat1, 2), SHIFT(335), - [4602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__stab_clause_arguments_without_parentheses_repeat1, 2), - [4604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_with_trailing_separator, 1), - [4606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [4612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [4616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [4626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [4628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [4630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [4632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [4634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [4636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [4638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [4640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [4644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [4646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_with_parentheses_with_guard, 3, .production_id = 14), - [4648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 1, .production_id = 5), - [4650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), - [4652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4455), - [4654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [4656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_without_parentheses_with_guard, 3, .dynamic_precedence = 1, .production_id = 14), - [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4595), - [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), - [4662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [4664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4488), - [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4560), - [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), - [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4461), - [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4462), - [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4466), - [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4496), - [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4745), - [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), - [4684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4467), - [4686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), - [4688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [4690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [4692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), - [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), - [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), - [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3945), - [4700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), - [4702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), - [4704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), - [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), - [4708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), - [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), - [4712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4135), - [4714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), - [4716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4257), - [4718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), - [4720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), - [4722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), - [4724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), - [4726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4255), - [4728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4233), - [4730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4231), - [4732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4229), - [4734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4219), - [4736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4245), - [4738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3905), - [4740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3904), - [4742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), - [4744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3964), - [4746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4244), - [4748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4243), - [4750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4242), - [4752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), - [4754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), - [4756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), - [4758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4176), - [4760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), - [4762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4198), - [4764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4197), - [4766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), - [4768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), - [4770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), - [4772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), - [4774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), - [4776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4482), - [4778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4483), - [4780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4487), - [4782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4490), - [4784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4491), - [4786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4493), - [4788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4494), - [4790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4495), - [4792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4510), - [4794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4528), - [4796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4610), - [4798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4611), - [4800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), - [4802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4613), - [4804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4614), - [4806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), - [4808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4616), - [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4617), - [4812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4618), - [4814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4619), - [4816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), - [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), - [4820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3866), - [4822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), - [4824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), - [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4105), - [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), - [4830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), - [4832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), - [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), - [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), - [4838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3871), - [4840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3870), - [4842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3935), - [4844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), - [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), - [4848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), - [4850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), - [4852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), - [4854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), - [4856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), - [4858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3953), - [4860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3952), - [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), - [4864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), - [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), - [4868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4030), - [4870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4031), - [4872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), - [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4033), - [4876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4234), - [4878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3937), - [4880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3936), - [4882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3981), - [4884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), - [4886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4235), - [4888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4236), - [4890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4237), - [4892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4238), - [4894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4239), - [4896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4656), - [4898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4657), - [4900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4658), - [4902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4659), - [4904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4660), - [4906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), - [4908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4662), - [4910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4663), - [4912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4664), - [4914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4665), - [4916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4803), - [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4804), - [4920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4805), - [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4806), - [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4807), - [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4808), - [4928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4809), - [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4810), - [4932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4823), - [4934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4824), - [4936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4591), - [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4592), - [4940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4593), - [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4594), - [4944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4620), - [4946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4622), - [4948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4687), - [4950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4779), - [4952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4740), - [4954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4733), - [4956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3918), - [4958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3967), - [4960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), - [4962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), - [4964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4018), - [4966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3919), - [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3920), - [4970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), - [4972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3922), - [4974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3923), - [4976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4783), - [4978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4785), - [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4787), - [4982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4788), - [4984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4793), - [4986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4797), - [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4799), - [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4800), - [4992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4632), - [4994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4829), - [4996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), - [4998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3989), - [5000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), - [5002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), - [5004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), - [5006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), - [5008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3985), - [5010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3984), - [5012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), - [5014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3982), - [5016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), - [5018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3860), - [5020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3859), - [5022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), - [5024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3910), - [5026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4073), - [5028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), - [5030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4071), - [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), - [5034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4069), - [5036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4441), - [5038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4442), - [5040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4443), - [5042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4444), - [5044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4445), - [5046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4446), - [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4447), - [5050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4448), - [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4449), - [5054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4450), - [5056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4469), - [5058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4485), - [5060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4502), - [5062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4504), - [5064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4506), - [5066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4507), - [5068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4511), - [5070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4512), - [5072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4516), - [5074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4517), - [5076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4530), - [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4531), - [5080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4532), - [5082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4533), - [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4557), - [5086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4558), - [5088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), - [5090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4561), - [5092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4562), - [5094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4563), - [5096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4564), - [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4565), - [5100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4566), - [5102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4567), - [5104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4568), - [5106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4569), - [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4570), - [5110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4571), - [5112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4572), - [5114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4573), - [5116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3839), - [5118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4200), - [5120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4201), - [5122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), - [5124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4203), - [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), - [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), - [5130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3843), - [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), - [5134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), - [5136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4459), - [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4458), - [5140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4457), - [5142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4456), - [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4453), - [5146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4452), - [5148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4463), - [5150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4460), - [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4454), - [5154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4464), - [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4208), - [5158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4055), - [5160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), - [5162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), - [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), - [5166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4209), - [5168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4211), - [5170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4216), - [5172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4230), - [5174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4232), - [5176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4609), - [5178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4608), - [5180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4607), - [5182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), - [5184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4605), - [5186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4604), - [5188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4599), - [5190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4598), - [5192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4597), - [5194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4596), - [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4759), - [5198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4758), - [5200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4747), - [5202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4746), - [5204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4744), - [5206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4743), - [5208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4742), - [5210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4739), - [5212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4738), - [5214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4737), - [5216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4190), - [5218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), - [5220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3890), - [5222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3951), - [5224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3950), - [5226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4189), - [5228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4188), - [5230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4187), - [5232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4186), - [5234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4185), - [5236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3813), - [5238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), - [5240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), - [5242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), - [5244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), - [5246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), - [5248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), - [5250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), - [5252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), - [5254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), - [5256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4518), - [5258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4519), - [5260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), - [5262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4521), - [5264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), - [5266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523), - [5268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), - [5270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4525), - [5272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4526), - [5274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4527), - [5276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), - [5278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3875), - [5280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), - [5282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), - [5284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3942), - [5286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4160), - [5288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4159), - [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), - [5292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), - [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), - [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4702), - [5298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4703), - [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4704), - [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4705), - [5304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4706), - [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4707), - [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4708), - [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4709), - [5312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4710), - [5314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4711), - [5316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), - [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), - [5320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), - [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), - [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), - [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4039), - [5328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), - [5330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3803), - [5332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), - [5334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), - [5336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4748), - [5338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4749), - [5340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4750), - [5342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4751), - [5344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4752), - [5346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4753), - [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4754), - [5350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4755), - [5352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4756), - [5354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4757), - [5356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4760), - [5358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4762), - [5360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4775), - [5362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4777), - [5364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4781), - [5366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4828), - [5368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4827), - [5370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4826), - [5372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4825), - [5374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4822), - [5376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), - [5378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3929), - [5380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3928), - [5382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3973), - [5384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3972), - [5386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4279), - [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4278), - [5390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), - [5392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), - [5394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4275), - [5396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4440), - [5398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4439), - [5400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4438), - [5402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4437), - [5404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4621), - [5406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4465), - [5408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4484), - [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4489), - [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4492), - [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4509), - [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [5418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [5420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [5426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [5428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [5430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [5432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [5434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [5436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [5438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [5440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [5442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__keywords_with_trailing_separator, 3), - [5444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), - [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), - [5448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__keywords_with_trailing_separator, 2), - [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [5452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [5456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), - [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), - [5460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), - [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [5464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), - [5466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_block_repeat1, 2), SHIFT_REPEAT(39), - [5469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_block_repeat1, 2), SHIFT_REPEAT(38), - [5472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_block_repeat1, 2), SHIFT_REPEAT(37), - [5475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_block_repeat1, 2), - [5477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_block_repeat1, 2), SHIFT_REPEAT(35), - [5480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), - [5482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [5484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [5486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [5488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1026), - [5491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(136), - [5494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), - [5496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat2, 2), SHIFT_REPEAT(1028), - [5499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat2, 2), SHIFT_REPEAT(797), - [5502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 3), SHIFT(1022), - [5505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 3), SHIFT(262), - [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [5512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [5514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [5516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(1028), - [5519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(594), - [5522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [5526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [5530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [5532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [5534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [5536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [5538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [5540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [5542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [5544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [5546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [5548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [5550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [5554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [5556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [5558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [5560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [5562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [5564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [5566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [5568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [5570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [5572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [5574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [5576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [5578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [5580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [5582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [5584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [5586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [5588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [5590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [5592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [5594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [5596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [5598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [5600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [5602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [5604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [5606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [5608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [5610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [5614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [5620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [5622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [5624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [5626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [5628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [5630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [5632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [5634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [5636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [5638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [5640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [5642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stab_clause, 2, .production_id = 12), - [5644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause, 2, .production_id = 12), - [5646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stab_clause, 3, .production_id = 14), - [5648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause, 3, .production_id = 14), - [5650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), - [5652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [5654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4021), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), - [5660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [5662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [5664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), - [5668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), - [5670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [5672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [5676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), - [5678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [5680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), - [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), - [5684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), - [5686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [5688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), - [5692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), - [5694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [5696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), - [5700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), - [5702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3822), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [5706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [5708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), - [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), - [5712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [5714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [5718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [5720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), - [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), - [5724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [5726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), - [5730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [5732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [5734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3845), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [5738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), - [5740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [5742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3846), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [5746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [5748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [5750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), - [5754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), - [5756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), - [5760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), - [5762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [5764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [5768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), - [5770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3850), - [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [5774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), - [5776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), - [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [5780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), - [5782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3835), - [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [5786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), - [5788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), - [5792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), - [5794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [5796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [5798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [5800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [5802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), - [5804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), - [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), - [5808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), - [5810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), - [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [5814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), - [5816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), - [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), - [5820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), - [5822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), - [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), - [5826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [5828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), - [5830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [5834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), - [5836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), - [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), - [5840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_double_repeat1, 2), - [5842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_double_repeat1, 2), SHIFT_REPEAT(716), - [5845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_double_repeat1, 2), SHIFT_REPEAT(3834), - [5848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_i_double_repeat1, 2), SHIFT_REPEAT(3834), - [5851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_single_repeat1, 2), - [5853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_single_repeat1, 2), SHIFT_REPEAT(843), - [5856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_single_repeat1, 2), SHIFT_REPEAT(3835), - [5859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_i_single_repeat1, 2), SHIFT_REPEAT(3835), - [5862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), - [5864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), - [5866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_heredoc_double_repeat1, 2), - [5868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_heredoc_double_repeat1, 2), SHIFT_REPEAT(732), - [5871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_heredoc_double_repeat1, 2), SHIFT_REPEAT(3838), - [5874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_i_heredoc_double_repeat1, 2), SHIFT_REPEAT(3838), - [5877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), - [5879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4227), - [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), - [5883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), - [5885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4226), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), - [5889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), - [5891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4224), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), - [5895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), - [5897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), - [5901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), - [5903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4223), - [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), - [5907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), - [5909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4221), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), - [5913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), - [5915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), - [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [5919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [5921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), - [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [5925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [5927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), - [5931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [5933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [5937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [5939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4023), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [5943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [5945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), - [5947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4210), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), - [5951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_heredoc_single_repeat1, 2), - [5953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_heredoc_single_repeat1, 2), SHIFT_REPEAT(883), - [5956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_heredoc_single_repeat1, 2), SHIFT_REPEAT(3852), - [5959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_i_heredoc_single_repeat1, 2), SHIFT_REPEAT(3852), - [5962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [5964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [5966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [5968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), - [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [5972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [5974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), - [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), - [5978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [5980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [5982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [5984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3857), - [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), - [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [5990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3858), - [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), - [5994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [5996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [5998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), - [6000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3837), - [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), - [6004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [6006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3836), - [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), - [6010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [6012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), - [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [6016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [6018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), - [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [6022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [6024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3862), - [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [6028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [6030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [6032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [6034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), - [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), - [6038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [6040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), - [6044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [6046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), - [6048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [6050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), - [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), - [6054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [6056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), - [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), - [6060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [6062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [6064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [6066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), - [6070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [6072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), - [6076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [6078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [6080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), - [6082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [6084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [6088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [6090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3896), - [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [6094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), - [6096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3897), - [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [6100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), - [6102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), - [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [6106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), - [6108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), - [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), - [6112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [6114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3880), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [6118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), - [6120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), - [6122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [6124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3881), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), - [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [6130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [6132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [6134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [6136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [6138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), - [6142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), - [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [6146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894), - [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [6150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), - [6152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), - [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [6156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [6158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), - [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [6162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), - [6164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), - [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [6168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [6170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [6172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [6174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [6176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [6178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), - [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [6182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_angle_repeat1, 2), - [6184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_angle_repeat1, 2), SHIFT_REPEAT(718), - [6187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_angle_repeat1, 2), SHIFT_REPEAT(3911), - [6190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_i_angle_repeat1, 2), SHIFT_REPEAT(3911), - [6193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [6195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3907), - [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [6199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), - [6201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [6203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3908), - [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [6207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [6209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3909), - [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [6213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [6215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [6217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), - [6219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), - [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), - [6223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), - [6225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), - [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), - [6229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), - [6231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), - [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), - [6235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), - [6237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3959), - [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), - [6241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), - [6243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), - [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [6247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), - [6249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), - [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), - [6253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), - [6255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), - [6257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [6259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3916), - [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [6263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [6265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3917), - [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), - [6269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), - [6271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3924), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [6275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), - [6277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), - [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [6281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), - [6283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), - [6285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), - [6287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), - [6289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), - [6291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3930), - [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), - [6295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [6297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), - [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [6301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), - [6303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [6307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), - [6309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3933), - [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [6313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [6315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), - [6317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [6319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [6321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), - [6323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), - [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [6327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), - [6329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3939), - [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [6333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [6335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), - [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), - [6339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [6341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), - [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [6345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), - [6347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [6349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [6351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [6353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [6355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), - [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [6359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [6361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3947), - [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [6365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [6367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), - [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [6371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), - [6373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), - [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), - [6377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), - [6379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [6381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), - [6383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), - [6385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), - [6387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), - [6389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), - [6391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), - [6393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), - [6395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), - [6397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [6399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3954), - [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [6403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [6405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3955), - [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [6409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), - [6411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), - [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), - [6415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), - [6417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), - [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [6421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), - [6423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), - [6425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [6427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [6429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), - [6431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3968), - [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [6435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), - [6437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), - [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), - [6441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [6443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3970), - [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [6447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [6449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), - [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [6453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), - [6455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), - [6457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), - [6459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), - [6461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), - [6463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3976), - [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), - [6467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), - [6469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3977), - [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [6473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), - [6475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3882), - [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), - [6479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), - [6481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3887), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), - [6487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), - [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [6491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), - [6493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), - [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [6497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), - [6499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3891), - [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), - [6503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), - [6505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3892), - [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [6509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), - [6511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), - [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [6515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), - [6517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3979), - [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [6521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [6523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [6525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [6527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [6529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [6531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), - [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), - [6535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [6537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), - [6541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [6543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), - [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), - [6547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [6549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), - [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3990), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [6559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [6561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3991), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [6565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [6567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [6571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [6573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3993), - [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [6577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [6579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [6581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), - [6583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), - [6585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [6587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [6589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [6591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [6595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), - [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [6599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [6601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), - [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [6605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), - [6607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), - [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), - [6611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), - [6613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), - [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), - [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), - [6619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), - [6621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [6623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [6625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), - [6627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4014), - [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [6631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), - [6633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4015), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [6637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [6639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4016), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [6643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_slash_repeat1, 2), - [6645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_slash_repeat1, 2), SHIFT_REPEAT(689), - [6648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_slash_repeat1, 2), SHIFT_REPEAT(4021), - [6651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_i_slash_repeat1, 2), SHIFT_REPEAT(4021), - [6654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [6656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), - [6660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_bar_repeat1, 2), - [6662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_bar_repeat1, 2), SHIFT_REPEAT(704), - [6665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_bar_repeat1, 2), SHIFT_REPEAT(4023), - [6668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_i_bar_repeat1, 2), SHIFT_REPEAT(4023), - [6671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [6673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [6675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [6677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [6679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [6681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4059), - [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), - [6685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), - [6687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4060), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), - [6691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [6693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4061), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), - [6697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [6699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), - [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), - [6703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [6705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4063), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [6709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [6711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), - [6715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [6717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [6719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [6721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [6727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [6731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [6733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4027), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [6737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [6739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4034), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), - [6743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [6745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [6749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), - [6751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), - [6753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), - [6755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [6757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [6759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_square_repeat1, 2), - [6761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_square_repeat1, 2), SHIFT_REPEAT(722), - [6764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_square_repeat1, 2), SHIFT_REPEAT(4046), - [6767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_i_square_repeat1, 2), SHIFT_REPEAT(4046), - [6770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), - [6774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), - [6778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [6780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), - [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), - [6784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_curly_repeat1, 2), - [6786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_curly_repeat1, 2), SHIFT_REPEAT(728), - [6789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_curly_repeat1, 2), SHIFT_REPEAT(4050), - [6792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_i_curly_repeat1, 2), SHIFT_REPEAT(4050), - [6795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_parenthesis_repeat1, 2), - [6797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_parenthesis_repeat1, 2), SHIFT_REPEAT(730), - [6800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_parenthesis_repeat1, 2), SHIFT_REPEAT(4051), - [6803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_i_parenthesis_repeat1, 2), SHIFT_REPEAT(4051), - [6806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), - [6808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), - [6810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [6812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), - [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), - [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), - [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), - [6822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), - [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [6826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [6828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [6830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [6832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), - [6834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [6836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), - [6838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), - [6840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [6842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [6844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [6846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [6848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [6850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), - [6854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [6856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4058), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), - [6860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [6862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4065), - [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), - [6866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [6868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4066), - [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), - [6872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [6874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4067), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), - [6878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [6880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4068), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), - [6884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [6886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [6888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), - [6890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [6892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), - [6894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), - [6896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), - [6898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3913), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [6902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), - [6904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), - [6908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4958), - [6910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5059), - [6912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), - [6914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4079), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), - [6918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), - [6920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), - [6924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), - [6926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4077), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [6930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), - [6932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), - [6936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5058), - [6938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), - [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5051), - [6944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), - [6948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), - [6950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [6952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), - [6954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [6956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [6958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [6960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), - [6962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), - [6966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [6968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), - [6972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), - [6974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), - [6978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [6980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), - [6984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [6986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4091), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), - [6990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [6992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), - [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [6998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), - [7002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [7004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), - [7008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), - [7010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4095), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), - [7014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [7016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4096), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), - [7020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), - [7022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), - [7024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [7028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [7030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [7032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [7034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [7036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), - [7038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), - [7040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), - [7042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4107), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), - [7046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), - [7048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), - [7050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), - [7054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3401), - [7056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), - [7058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [7060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4113), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), - [7064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), - [7066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [7068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), - [7072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), - [7074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [7076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), - [7078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), - [7080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), - [7082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), - [7084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), - [7086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4162), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [7090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), - [7092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4163), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), - [7096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [7098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), - [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), - [7102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), - [7104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4165), - [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), - [7108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [7110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4166), - [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), - [7114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), - [7116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), - [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), - [7120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), - [7122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), - [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), - [7126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [7128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), - [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), - [7132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [7134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), - [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), - [7138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [7140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), - [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), - [7144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [7146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), - [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), - [7150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [7152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), - [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), - [7156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [7158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), - [7160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [7162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [7164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), - [7166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), - [7170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [7172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), - [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), - [7176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [7178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), - [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), - [7182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [7184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), - [7188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [7190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [7192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [7194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [7196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [7198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), - [7200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), - [7204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), - [7206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), - [7210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), - [7212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), - [7216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), - [7218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), - [7222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), - [7224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), - [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), - [7228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), - [7230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), - [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), - [7234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [7236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), - [7238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), - [7240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), - [7242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), - [7244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [7246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [7248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4196), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), - [7252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [7254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [7256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), - [7258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), - [7260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [7262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4169), - [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), - [7266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [7268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), - [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), - [7272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), - [7274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4171), - [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), - [7278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), - [7280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4172), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), - [7284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), - [7286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4206), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), - [7290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [7292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), - [7294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [7296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), - [7298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [7300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [7302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [7304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [7306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), - [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), - [7310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [7312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), - [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), - [7316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [7318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), - [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [7322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [7324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), - [7328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [7330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), - [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), - [7334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [7336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4184), - [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), - [7340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), - [7342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4207), - [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), - [7346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), - [7348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), - [7350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [7352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [7354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [7356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [7358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), - [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), - [7362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), - [7364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), - [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), - [7368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [7370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4194), - [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), - [7374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2975), - [7376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4212), - [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), - [7380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), - [7382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), - [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), - [7386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), - [7388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4214), - [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), - [7392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), - [7394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4215), - [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), - [7398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [7400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4195), - [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), - [7404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [7406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), - [7408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), - [7410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [7412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), - [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), - [7416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [7418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4258), - [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), - [7422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), - [7424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), - [7426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4259), - [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), - [7430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), - [7432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), - [7434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), - [7436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), - [7438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [7440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), - [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), - [7444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [7446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [7448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), - [7450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), - [7454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [7456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), - [7458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [7460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), - [7462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), - [7464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [7466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), - [7468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), - [7470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [7472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), - [7474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4116), - [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), - [7478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [7480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4261), - [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), - [7484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), - [7486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), - [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), - [7490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), - [7492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4262), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), - [7496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), - [7498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), - [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), - [7502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), - [7504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), - [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), - [7508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), - [7510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4266), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), - [7514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), - [7516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4267), - [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), - [7520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), - [7522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), - [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), - [7526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), - [7528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4269), - [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), - [7532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), - [7534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4270), - [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), - [7538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [7540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4217), - [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), - [7544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [7546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4218), - [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), - [7550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [7552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4220), - [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), - [7556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [7558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4222), - [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), - [7562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [7564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), - [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), - [7568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [7570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4228), - [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), - [7574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [7576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), - [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), - [7580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), - [7582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), - [7584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [7586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), - [7588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), - [7590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), - [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), - [7594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), - [7596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4248), - [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), - [7600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [7602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4249), - [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), - [7606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [7608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4250), - [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), - [7612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), - [7614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), - [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), - [7618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), - [7620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), - [7622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), - [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), - [7626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), - [7628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), - [7630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), - [7632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), - [7634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), - [7636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), - [7638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), - [7640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), - [7642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), - [7644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), - [7646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), - [7648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), - [7650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), - [7652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), - [7654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), - [7656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), - [7658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), - [7660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), - [7662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4263), - [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), - [7666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), - [7668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), - [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), - [7672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), - [7674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), - [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), - [7678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), - [7680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4272), - [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), - [7684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), - [7686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4273), - [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), - [7690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), - [7692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4274), - [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), - [7696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), - [7698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), - [7700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), - [7702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), - [7704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), - [7706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4295), - [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), - [7710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), - [7712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), - [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), - [7716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), - [7718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4282), - [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), - [7722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), - [7724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4283), - [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), - [7728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), - [7730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), - [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), - [7734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), - [7736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), - [7738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4294), - [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), - [7742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), - [7744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), - [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), - [7748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), - [7750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4290), - [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), - [7754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), - [7756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), - [7758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [7760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3797), - [7762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(3797), - [7765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__keywords_with_trailing_separator, 1), - [7767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), - [7769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [7771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [7773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), - [7775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [7777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), - [7779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(137), - [7782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), - [7784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), - [7786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), - [7788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), - [7790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), - [7792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [7794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), - [7796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(662), - [7799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [7801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), - [7803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), - [7805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [7807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [7809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [7811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), - [7813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [7815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [7817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), - [7819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), - [7821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [7823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [7825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [7827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(3790), - [7830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 3), SHIFT(1033), - [7833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 3), SHIFT(345), - [7836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [7838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [7840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [7842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [7844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), - [7846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), - [7848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [7850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), - [7852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [7854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_function_repeat1, 2), SHIFT_REPEAT(1026), - [7857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_anonymous_function_repeat1, 2), SHIFT_REPEAT(134), - [7860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_anonymous_function_repeat1, 2), - [7862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [7864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [7866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [7868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), - [7870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [7872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), - [7874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(471), - [7877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 3), SHIFT(1031), - [7880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 3), SHIFT(347), - [7883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(867), - [7886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(527), - [7889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [7891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat2, 2), SHIFT_REPEAT(480), - [7894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), - [7896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), - [7898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), - [7900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), - [7902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), - [7904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [7906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [7908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [7910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [7912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [7914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4792), - [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), - [7918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [7920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), - [7922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4774), - [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), - [7926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), - [7928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4763), - [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), - [7932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), - [7934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4761), - [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), - [7938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), - [7940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4741), - [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), - [7944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [7946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4471), - [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), - [7950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [7952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4472), - [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), - [7956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [7958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4473), - [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), - [7962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [7964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4474), - [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), - [7968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [7970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4475), - [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), - [7974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [7976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4476), - [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), - [7980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [7982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4477), - [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), - [7986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [7988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4478), - [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), - [7992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [7994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4479), - [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), - [7998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [8000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4480), - [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [8004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [8006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4801), - [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), - [8010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [8012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4789), - [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), - [8016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), - [8018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4576), - [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), - [8022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3), - [8024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3), - [8026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [8028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4786), - [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), - [8032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [8034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4784), - [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), - [8038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), - [8040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4639), - [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), - [8044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [8046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), - [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), - [8050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [8052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4811), - [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), - [8056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [8058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4802), - [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), - [8062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), - [8064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4575), - [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), - [8068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), - [8070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4730), - [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), - [8074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), - [8076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4645), - [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), - [8080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__stab_clause_arguments_without_parentheses_repeat1, 2), SHIFT_REPEAT(461), - [8083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [8085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4776), - [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4776), - [8089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [8091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4778), - [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), - [8095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [8097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4780), - [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), - [8101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [8103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4782), - [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), - [8107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [8109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4790), - [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4790), - [8113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [8115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4791), - [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), - [8119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [8121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [8123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4794), - [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), - [8127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), - [8129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4795), - [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), - [8133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [8135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4796), - [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), - [8139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), - [8141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4590), - [8143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), - [8145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), - [8147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4623), - [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), - [8151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), - [8153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4653), - [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), - [8157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), - [8159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4650), - [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), - [8163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), - [8165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), - [8167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4624), - [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), - [8171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), - [8173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4648), - [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), - [8177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), - [8179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4625), - [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), - [8183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [8185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4638), - [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), - [8189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), - [8191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4579), - [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), - [8195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), - [8197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4640), - [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), - [8201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), - [8203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4641), - [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), - [8207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [8209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4642), - [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), - [8213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), - [8215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), - [8217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), - [8219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), - [8221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), - [8223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4651), - [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), - [8227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), - [8229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), - [8231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4654), - [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), - [8235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), - [8237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), - [8239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4655), - [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), - [8243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), - [8245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4666), - [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), - [8249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), - [8251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4577), - [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), - [8255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [8257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4643), - [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), - [8261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), - [8263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4668), - [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), - [8267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), - [8269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4669), - [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), - [8273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), - [8275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), - [8277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), - [8279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), - [8281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4670), - [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), - [8285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), - [8287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4671), - [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), - [8291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [8293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4534), - [8295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), - [8297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [8299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4535), - [8301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), - [8303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [8305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4536), - [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), - [8309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [8311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4537), - [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), - [8315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [8317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4538), - [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), - [8321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [8323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), - [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), - [8327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [8329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4540), - [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), - [8333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [8335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4541), - [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), - [8339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [8341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4542), - [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), - [8345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [8347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4543), - [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), - [8351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [8353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4644), - [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), - [8357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [8359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_without_parentheses, 2), - [8361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), - [8363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4692), - [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), - [8367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), - [8369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4555), - [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), - [8373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), - [8375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4649), - [8377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), - [8379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), - [8381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4647), - [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), - [8385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [8387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [8389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [8391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [8393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [8395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [8397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [8399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [8401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [8403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [8405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [8407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [8409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [8411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), - [8413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [8415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [8417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [8419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), - [8421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [8423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [8425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), - [8427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), - [8429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), - [8431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), - [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), - [8435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), - [8437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4636), - [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), - [8441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), - [8443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4603), - [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), - [8447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), - [8449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4602), - [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), - [8453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), - [8455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4601), - [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), - [8459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), - [8461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4600), - [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), - [8465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), - [8467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4580), - [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), - [8471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), - [8473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4581), - [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), - [8477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [8479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), - [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), - [8483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), - [8485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4583), - [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), - [8489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), - [8491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4584), - [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), - [8495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), - [8497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4585), - [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), - [8501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), - [8503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4586), - [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), - [8507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), - [8509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4587), - [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), - [8513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [8515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4588), - [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), - [8519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [8521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4589), - [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), - [8525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [8527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), - [8529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), - [8531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), - [8533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), - [8535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [8537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [8539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [8541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [8543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [8545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), - [8547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), - [8549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [8551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), - [8553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [8555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [8557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), - [8559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4486), - [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), - [8563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), - [8565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4497), - [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [8569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), - [8571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4498), - [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), - [8575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), - [8577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4499), - [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), - [8581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [8583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4544), - [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), - [8587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [8589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4545), - [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), - [8593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [8595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4546), - [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), - [8599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [8601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), - [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), - [8605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), - [8607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), - [8609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), - [8611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), - [8613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [8615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4548), - [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), - [8619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [8621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4550), - [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), - [8625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [8627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4551), - [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), - [8631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [8633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4552), - [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), - [8637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [8639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4553), - [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), - [8643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [8645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4554), - [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), - [8649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), - [8651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4626), - [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), - [8655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), - [8657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4627), - [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), - [8661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), - [8663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4628), - [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), - [8667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), - [8669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), - [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), - [8673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), - [8675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4630), - [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), - [8679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), - [8681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4631), - [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), - [8685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), - [8687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4436), - [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), - [8691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), - [8693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4633), - [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), - [8697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), - [8699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4634), - [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), - [8703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [8705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4635), - [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), - [8709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), - [8711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4500), - [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), - [8715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [8717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4736), - [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), - [8721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), - [8723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4503), - [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), - [8727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [8729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [8731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), - [8733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [8735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), - [8737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), - [8739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), - [8741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), - [8743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), - [8745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), - [8747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4813), - [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), - [8751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [8753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [8755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [8757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), - [8759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), - [8761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [8763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), - [8765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), - [8767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [8769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [8771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), - [8773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), - [8775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), - [8777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [8779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [8781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), - [8783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), - [8785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), - [8787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), - [8789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), - [8791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), - [8793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), - [8795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [8797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4672), - [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), - [8801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [8803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4673), - [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), - [8807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [8809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4674), - [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), - [8813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [8815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4675), - [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), - [8819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [8821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4676), - [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), - [8825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [8827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4677), - [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), - [8831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [8833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4435), - [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), - [8837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [8839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4679), - [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), - [8843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), - [8845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4680), - [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), - [8849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [8851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4681), - [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), - [8855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), - [8857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), - [8859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), - [8861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), - [8863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), - [8865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), - [8867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [8869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [8871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [8873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [8875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [8877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), - [8879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [8881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [8883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [8885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), - [8887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), - [8889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), - [8891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), - [8893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), - [8895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), - [8897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), - [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), - [8901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), - [8903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), - [8905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), - [8907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), - [8909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), - [8911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), - [8913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), - [8915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), - [8917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [8919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), - [8921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), - [8923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [8925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [8927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [8929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [8931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4718), - [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), - [8935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [8937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4719), - [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), - [8941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [8943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4720), - [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), - [8947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [8949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4721), - [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), - [8953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [8955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4722), - [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), - [8959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [8961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), - [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), - [8965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [8967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4724), - [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), - [8971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [8973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4725), - [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), - [8977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [8979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4726), - [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), - [8983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [8985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4727), - [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), - [8989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [8991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [8993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), - [8995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [8997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), - [8999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), - [9001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [9003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [9005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [9007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [9009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [9011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [9013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [9015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [9017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [9019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [9021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), - [9023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), - [9025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), - [9027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), - [9029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4515), - [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), - [9033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), - [9035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), - [9037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), - [9039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [9041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4696), - [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), - [9045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [9047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4697), - [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), - [9051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [9053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4698), - [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), - [9057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), - [9059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4514), - [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), - [9063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), - [9065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [9067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4699), - [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), - [9071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), - [9073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4700), - [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), - [9077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [9079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4701), - [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), - [9083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [9085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4712), - [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), - [9089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), - [9091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4713), - [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), - [9095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [9097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4764), - [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), - [9101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [9103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4765), - [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), - [9107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [9109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4766), - [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), - [9113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [9115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4767), - [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), - [9119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [9121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4768), - [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), - [9125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [9127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4769), - [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), - [9131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [9133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4770), - [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), - [9137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [9139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4771), - [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), - [9143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [9145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4772), - [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), - [9149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [9151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4773), - [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), - [9155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), - [9157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4714), - [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4714), - [9161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), - [9163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4715), - [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), - [9167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), - [9169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4735), - [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), - [9173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), - [9175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), - [9177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4734), - [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), - [9181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), - [9183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [9185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [9187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [9189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [9191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [9193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [9195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [9197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [9199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [9201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [9203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), - [9205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), - [9207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4732), - [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4732), - [9211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_parenthesis_repeat1, 2), - [9213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_parenthesis_repeat1, 2), SHIFT_REPEAT(4776), - [9216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_parenthesis_repeat1, 2), SHIFT_REPEAT(4776), - [9219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), - [9221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4717), - [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4717), - [9225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_double_repeat1, 2), - [9227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_double_repeat1, 2), SHIFT_REPEAT(4778), - [9230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_double_repeat1, 2), SHIFT_REPEAT(4778), - [9233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), - [9235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), - [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), - [9239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_single_repeat1, 2), - [9241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_single_repeat1, 2), SHIFT_REPEAT(4780), - [9244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_single_repeat1, 2), SHIFT_REPEAT(4780), - [9247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), - [9249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4716), - [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), - [9253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_heredoc_single_repeat1, 2), - [9255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_heredoc_single_repeat1, 2), SHIFT_REPEAT(4782), - [9258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_heredoc_single_repeat1, 2), SHIFT_REPEAT(4782), - [9261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), - [9263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4821), - [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), - [9267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), - [9269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), - [9271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4820), - [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), - [9275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), - [9277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), - [9279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4819), - [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), - [9283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), - [9285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4818), - [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), - [9289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), - [9291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_heredoc_double_repeat1, 2), - [9293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_heredoc_double_repeat1, 2), SHIFT_REPEAT(4790), - [9296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_heredoc_double_repeat1, 2), SHIFT_REPEAT(4790), - [9299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_curly_repeat1, 2), - [9301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_curly_repeat1, 2), SHIFT_REPEAT(4791), - [9304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_curly_repeat1, 2), SHIFT_REPEAT(4791), - [9307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_square_repeat1, 2), - [9309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_square_repeat1, 2), SHIFT_REPEAT(4792), - [9312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_square_repeat1, 2), SHIFT_REPEAT(4792), - [9315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), - [9317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4817), - [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), - [9321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_angle_repeat1, 2), - [9323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_angle_repeat1, 2), SHIFT_REPEAT(4794), - [9326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_angle_repeat1, 2), SHIFT_REPEAT(4794), - [9329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_bar_repeat1, 2), - [9331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_bar_repeat1, 2), SHIFT_REPEAT(4795), - [9334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_bar_repeat1, 2), SHIFT_REPEAT(4795), - [9337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_slash_repeat1, 2), - [9339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_slash_repeat1, 2), SHIFT_REPEAT(4796), - [9342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_slash_repeat1, 2), SHIFT_REPEAT(4796), - [9345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), - [9347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4816), - [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), - [9351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), - [9353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4815), - [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), - [9357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), - [9359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4814), - [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), - [9363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), - [9365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), - [9367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), - [9369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), - [9371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), - [9373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), - [9375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4695), - [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), - [9379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), - [9381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4691), - [9383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), - [9385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), - [9387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4690), - [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), - [9391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), - [9393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4689), - [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), - [9397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), - [9399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4688), - [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), - [9403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), - [9405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4686), - [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), - [9409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), - [9411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4685), - [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), - [9415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), - [9417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), - [9419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), - [9421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), - [9423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), - [9425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), - [9427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), - [9429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), - [9431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), - [9433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), - [9435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), - [9437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), - [9439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4556), - [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), - [9443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), - [9445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4683), - [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), - [9449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), - [9451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4678), - [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), - [9455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), - [9457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4682), - [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), - [9461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), - [9463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4684), - [9465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), - [9467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), - [9469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4693), - [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), - [9473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), - [9475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4694), - [9477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4694), - [9479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), - [9481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4812), - [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), - [9485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), - [9487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__items_with_trailing_separator, 4), - [9489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), - [9491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), - [9493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [9495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4896), - [9497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4885), - [9499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [9501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(3782), - [9504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_with_trailing_separator, 2), - [9506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [9508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__stab_clause_arguments_with_parentheses_repeat1, 2), SHIFT_REPEAT(460), - [9511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(785), - [9514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4868), - [9516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_without_parentheses, 3), - [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [9530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_without_parentheses, 4), - [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [9556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [9562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_with_parentheses, 5), - [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [9568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [9570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_left, 1), - [9572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [9578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [9580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [9582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [9588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_with_parentheses, 4), - [9590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_with_parentheses, 6), - [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [9600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [9614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [9616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_function_repeat1, 2), - [9618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), - [9620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5005), - [9622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [9624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [9626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [9628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), - [9630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [9632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [9634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [9636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [9638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [9640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [9642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), - [9644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [9646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [9648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [9650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4976), - [9652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [9654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), - [9656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), - [9658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), - [9660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [9662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [9664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), - [9666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5032), - [9668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [9670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), - [9672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), - [9674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), - [9676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [9678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [9680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), - [9682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), - [9684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), - [9686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), - [9688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [9690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), - [9692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [9694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4970), - [9696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [9698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [9700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), - [9702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [9704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), - [9706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [9708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), - [9710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4952), - [9712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [9714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [9716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [9718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [9720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), - [9722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [9724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_with_trailing_separator, 4), - [9726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5057), - [9728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), - [9730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [9732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), - [9734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), - [9736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), - [9738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), - [9740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), - [9742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [9744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), - [9746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [9748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [9750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), - [9752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), - [9754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), - [9756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), - [9758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5039), - [9760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), - [9762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [9764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [9766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [9768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [9770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), - [9772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [9774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4954), - [9776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), - [9778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [9780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_left, 1, .production_id = 4), - [9782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [9784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), - [9786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [9788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5048), - [9790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [9792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [9794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), - [9796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [9798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [9800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [9802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [9804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4940), - [9806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [9808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4888), - [9810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [9812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_with_trailing_separator, 3), - [9814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [9816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5050), - [9818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [9820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), - [9822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), - [9824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [9826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [9828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [9830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), - [9832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [9834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [9836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), - [9838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [9840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [9842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), - [9844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4966), - [9846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), - [9848] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [9850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [9852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), - [9854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [9856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), - [9858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), - [9860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), + [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [2926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [2928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [2936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [2938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [2940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [2954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [2964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [2966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [2968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [2970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_with_parentheses, 1, .production_id = 2), + [2974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_with_parentheses, 1, .production_id = 2), + [2976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_call_with_parentheses, 2, .production_id = 11), + [2980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_call_with_parentheses, 2, .production_id = 11), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), + [2984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_call_with_parentheses, 2, .production_id = 3), + [2986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_call_with_parentheses, 2, .production_id = 3), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), + [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_call_with_parentheses, 3, .production_id = 3), + [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_call_with_parentheses, 3, .production_id = 3), + [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_call_with_parentheses, 3, .production_id = 11), + [2998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_call_with_parentheses, 3, .production_id = 11), + [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_charlist, 1, .production_id = 1), + [3002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_charlist, 1, .production_id = 1), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 1, .production_id = 1), + [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 1, .production_id = 1), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_call_without_parentheses, 2, .production_id = 11), + [3014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_call_without_parentheses, 2, .production_id = 11), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), + [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_call_with_parentheses, 4, .production_id = 11), + [3020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_call_with_parentheses, 4, .production_id = 11), + [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [3026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments_with_parentheses, 3), + [3028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_with_parentheses, 3), + [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments_with_parentheses_immediate, 2), + [3032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_with_parentheses_immediate, 2), + [3034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments_with_parentheses_immediate, 3), + [3036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_with_parentheses_immediate, 3), + [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__double_call, 2, .production_id = 12), + [3040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__double_call, 2, .production_id = 12), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), + [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 7), + [3046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 7), + [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 6), + [3050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 6), + [3052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 5), + [3054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 5), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5535), + [3058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 2), + [3060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 2), + [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_call_without_parentheses, 2, .production_id = 3), + [3066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_call_without_parentheses, 2, .production_id = 3), + [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), + [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 3), + [3076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 3), + [3078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__anonymous_call, 2, .production_id = 13), + [3080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__anonymous_call, 2, .production_id = 13), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5529), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), + [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments_with_parentheses, 2), + [3092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_with_parentheses, 2), + [3094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_call_with_parentheses, 4, .production_id = 3), + [3096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_call_with_parentheses, 4, .production_id = 3), + [3098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 4), + [3100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 4), + [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [3106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sigil, 4, .production_id = 18), + [3108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sigil, 4, .production_id = 18), + [3110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_parenthesis, 3, .production_id = 17), + [3112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_parenthesis, 3, .production_id = 17), + [3114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_call_without_parentheses, 3, .production_id = 3), + [3116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_call_without_parentheses, 3, .production_id = 3), + [3118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 3, .dynamic_precedence = -1, .production_id = 14), + [3120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 3, .dynamic_precedence = -1, .production_id = 14), + [3122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__double_call, 3, .production_id = 12), + [3124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__double_call, 3, .production_id = 12), + [3126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments_without_parentheses, 4), + [3128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_without_parentheses, 4), + [3130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), + [3132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), + [3134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_keywords_repeat1, 2), + [3136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), + [3138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4367), + [3141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_parenthesis, 2, .production_id = 7), + [3143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_parenthesis, 2, .production_id = 7), + [3145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_double, 2, .production_id = 7), + [3147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_double, 2, .production_id = 7), + [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keywords, 2), + [3151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keywords, 2), + [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4367), + [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_call_just_do_block, 2, .production_id = 11), + [3157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_call_just_do_block, 2, .production_id = 11), + [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 4, .production_id = 23), + [3161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 4, .production_id = 23), + [3163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 4), + [3165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 4), + [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__capture_expression, 3), + [3169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__capture_expression, 3), + [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 4), + [3173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 4), + [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_call, 4, .production_id = 24), + [3177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_call, 4, .production_id = 24), + [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_call_without_parentheses, 4, .production_id = 11), + [3181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_call_without_parentheses, 4, .production_id = 11), + [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__double_call, 4, .production_id = 12), + [3185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__double_call, 4, .production_id = 12), + [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_call_without_parentheses, 4, .production_id = 3), + [3189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_call_without_parentheses, 4, .production_id = 3), + [3191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, .dynamic_precedence = -1, .production_id = 9), + [3193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, .dynamic_precedence = -1, .production_id = 9), + [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5), + [3197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5), + [3199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 5, .production_id = 25), + [3201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 5, .production_id = 25), + [3203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 5), + [3205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 5), + [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6), + [3209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6), + [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_bar, 2, .production_id = 7), + [3213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_bar, 2, .production_id = 7), + [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_slash, 2, .production_id = 7), + [3217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_slash, 2, .production_id = 7), + [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keywords, 1), + [3221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keywords, 1), + [3223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sigil, 3, .production_id = 18), + [3225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sigil, 3, .production_id = 18), + [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_single, 2, .production_id = 7), + [3231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_single, 2, .production_id = 7), + [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_heredoc_single, 2, .production_id = 7), + [3235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_heredoc_single, 2, .production_id = 7), + [3237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_parenthesis, 2, .production_id = 7), + [3239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_parenthesis, 2, .production_id = 7), + [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_heredoc_double, 2, .production_id = 7), + [3243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_heredoc_double, 2, .production_id = 7), + [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_curly, 2, .production_id = 7), + [3247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_curly, 2, .production_id = 7), + [3249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments_without_parentheses, 3), + [3251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_without_parentheses, 3), + [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_square, 2, .production_id = 7), + [3255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_square, 2, .production_id = 7), + [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_angle, 2, .production_id = 7), + [3261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_angle, 2, .production_id = 7), + [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstring, 2), + [3267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstring, 2), + [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), + [3271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), + [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_bar, 2, .production_id = 7), + [3275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_bar, 2, .production_id = 7), + [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_slash, 2, .production_id = 7), + [3279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_slash, 2, .production_id = 7), + [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2), + [3283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2), + [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_heredoc_double, 2, .production_id = 7), + [3287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_heredoc_double, 2, .production_id = 7), + [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_heredoc_single, 2, .production_id = 7), + [3291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_heredoc_single, 2, .production_id = 7), + [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, .production_id = 19), + [3295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, .production_id = 19), + [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_atom, 2, .production_id = 4), + [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_atom, 2, .production_id = 4), + [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [3303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_heredoc_single, 3, .production_id = 17), + [3305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_heredoc_single, 3, .production_id = 17), + [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_heredoc_double, 3, .production_id = 17), + [3309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_heredoc_double, 3, .production_id = 17), + [3311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_slash, 3, .production_id = 17), + [3313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_slash, 3, .production_id = 17), + [3315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_curly, 3, .production_id = 17), + [3317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_curly, 3, .production_id = 17), + [3319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_without_parentheses, 1, .production_id = 2), + [3321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_without_parentheses, 1, .production_id = 2), + [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_call_without_parentheses, 3, .production_id = 11), + [3325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_call_without_parentheses, 3, .production_id = 11), + [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 1, .production_id = 2), + [3329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 1, .production_id = 2), + [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_bar, 3, .production_id = 17), + [3333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_bar, 3, .production_id = 17), + [3335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_angle, 3, .production_id = 17), + [3337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_angle, 3, .production_id = 17), + [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dot, 3, .production_id = 19), + [3343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dot, 3, .production_id = 19), + [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_square, 3, .production_id = 17), + [3347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_square, 3, .production_id = 17), + [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [3351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments_without_parentheses, 1), + [3353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_without_parentheses, 1), + [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [3399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_square, 3, .production_id = 17), + [3401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_square, 3, .production_id = 17), + [3403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nil, 1), + [3405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nil, 1), + [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), + [3409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), + [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_angle, 3, .production_id = 17), + [3413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_angle, 3, .production_id = 17), + [3415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_bar, 3, .production_id = 17), + [3417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_bar, 3, .production_id = 17), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), + [3421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 3), + [3425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 3), + [3427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3), + [3429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3), + [3431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstring, 3), + [3433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstring, 3), + [3435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), + [3437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5478), + [3441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_curly, 3, .production_id = 17), + [3443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_curly, 3, .production_id = 17), + [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_heredoc_double, 3, .production_id = 17), + [3447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_heredoc_double, 3, .production_id = 17), + [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3), + [3451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3), + [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), + [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), + [3459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), + [3461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(709), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), + [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_angle, 2, .production_id = 7), + [3470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_angle, 2, .production_id = 7), + [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_slash, 3, .production_id = 17), + [3482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_slash, 3, .production_id = 17), + [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_square, 2, .production_id = 7), + [3488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_square, 2, .production_id = 7), + [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_curly, 2, .production_id = 7), + [3498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_curly, 2, .production_id = 7), + [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_heredoc_single, 3, .production_id = 17), + [3502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_heredoc_single, 3, .production_id = 17), + [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [3506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments_without_parentheses, 2), + [3508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_without_parentheses, 2), + [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [3518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [3520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_single, 3, .production_id = 17), + [3524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_single, 3, .production_id = 17), + [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_double, 3, .production_id = 17), + [3528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_double, 3, .production_id = 17), + [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_parenthesis, 3, .production_id = 17), + [3532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_parenthesis, 3, .production_id = 17), + [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [3536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [3538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4390), + [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 2, .production_id = 16), + [3546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pair, 2, .production_id = 16), + [3548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4390), + [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__capture_expression, 1), + [3553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__capture_expression, 1), + [3555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [3557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [3559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [3561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [3563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [3565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [3567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [3569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [3571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(822), + [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [3656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__stab_clause_arguments_without_parentheses, 1), SHIFT(318), + [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [3661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [3675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [3679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [3687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 2), SHIFT(1022), + [3690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 2), SHIFT(261), + [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [3697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [3701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [3703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [3711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [3713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [3715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [3727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [3729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [3735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_with_parentheses, 2), + [3737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 1), SHIFT(1022), + [3740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 1), SHIFT(259), + [3743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body, 1), + [3745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5458), + [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5482), + [3751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), + [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4396), + [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [3767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [3781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4396), + [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [3794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_with_parentheses, 3), + [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [3802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4378), + [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4378), + [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3862), + [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), + [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [3827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), + [3829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), + [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), + [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [3915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5506), + [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), + [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), + [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), + [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), + [3973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(615), + [3976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4393), + [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4393), + [3985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(861), + [3988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4375), + [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4375), + [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [4023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [4049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [4051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [4055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [4057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [4061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [4067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [4077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), + [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), + [4087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [4095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [4097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [4099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [4111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), + [4141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4373), + [4144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(629), + [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4392), + [4153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4401), + [4156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), + [4158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4389), + [4160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(471), + [4163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [4171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [4173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [4175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [4183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [4185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [4189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [4197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [4199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4401), + [4207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4392), + [4210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(777), + [4213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), + [4215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), + [4217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), + [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), + [4221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), + [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), + [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), + [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), + [4229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), + [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), + [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), + [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), + [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), + [4239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), + [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), + [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), + [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), + [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), + [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), + [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), + [4257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), + [4259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), + [4261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), + [4263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), + [4265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), + [4267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), + [4269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), + [4271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), + [4273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), + [4275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), + [4277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), + [4279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), + [4281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), + [4283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), + [4285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), + [4287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), + [4289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), + [4291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4389), + [4294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(502), + [4297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), + [4299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), + [4301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), + [4303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), + [4305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), + [4307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), + [4309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), + [4311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), + [4313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), + [4315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), + [4317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), + [4319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), + [4321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), + [4323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), + [4325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), + [4327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), + [4329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), + [4331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [4333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [4335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), + [4337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), + [4339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), + [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), + [4345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5489), + [4349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [4351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [4353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [4355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [4357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [4359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [4361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [4363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [4365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [4367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [4369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [4371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [4373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [4377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [4391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat2, 2), + [4393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat2, 2), + [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [4405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [4407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [4409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [4411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [4413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [4417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [4427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [4429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5465), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), + [4449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [4451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4370), + [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), + [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [4458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [4460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [4462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [4464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [4466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [4468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [4470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [4472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [4480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [4484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [4492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [4494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4387), + [4502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [4504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4371), + [4506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 1), SHIFT(1033), + [4509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 1), SHIFT(346), + [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [4514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [4518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [4520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [4522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [4524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [4526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [4528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [4530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [4532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [4534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [4536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [4538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [4540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [4542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [4544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [4546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [4548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [4552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(525), + [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [4561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [4563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [4571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [4573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [4597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 2), SHIFT(1033), + [4600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 2), SHIFT(347), + [4603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 1), SHIFT(1034), + [4606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 1), SHIFT(348), + [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [4623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [4625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [4649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 2), SHIFT(1034), + [4652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 2), SHIFT(350), + [4655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4371), + [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5491), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5492), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), + [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [4684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [4686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [4688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [4690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [4692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [4700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [4702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [4704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [4708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [4714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), + [4716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4380), + [4719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(481), + [4722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4387), + [4725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), + [4727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), + [4733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), + [4735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), + [4737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), + [4739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), + [4741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), + [4743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), + [4745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), + [4747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), + [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), + [4751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), + [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), + [4755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), + [4757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), + [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), + [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), + [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), + [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), + [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [4789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [4799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [4807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4395), + [4810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4362), + [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), + [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4395), + [4817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4372), + [4820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), + [4822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), + [4824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), + [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), + [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), + [4830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), + [4832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4372), + [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), + [4838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4362), + [4840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), + [4842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), + [4844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), + [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), + [4848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), + [4850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), + [4852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), + [4854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), + [4856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3878), + [4858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3880), + [4860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3885), + [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), + [4864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3890), + [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3892), + [4868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), + [4870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), + [4872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), + [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3896), + [4876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3897), + [4878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), + [4880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), + [4882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), + [4884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), + [4886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), + [4888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3904), + [4890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4381), + [4892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4381), + [4895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__items_with_trailing_separator, 1), + [4897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [4899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), + [4901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), + [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), + [4905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), + [4907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), + [4909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3759), + [4911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), + [4913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4394), + [4915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4394), + [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [4920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [4928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [4932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [4934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [4936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [4940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [4944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [4946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [4948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [4950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [4952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [4954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [4956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [4962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [4966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [4970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [4972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [4974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [4976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [4978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [4982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [4984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [4986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [4992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [4994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [4996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [4998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [5000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [5002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [5004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__stab_clause_arguments_with_parentheses_repeat1, 2), + [5006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__stab_clause_arguments_with_parentheses_repeat1, 2), REDUCE(aux_sym__stab_clause_arguments_without_parentheses_repeat1, 2), + [5009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__stab_clause_arguments_without_parentheses_repeat1, 2), SHIFT(312), + [5012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__stab_clause_arguments_without_parentheses_repeat1, 2), + [5014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__stab_clause_arguments_without_parentheses, 1), SHIFT(312), + [5017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4399), + [5020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4399), + [5022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4016), + [5024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4015), + [5026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4014), + [5028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), + [5030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), + [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), + [5034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), + [5036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), + [5038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), + [5040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), + [5042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), + [5044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), + [5046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), + [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), + [5050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4071), + [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4027), + [5054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), + [5056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), + [5058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_with_trailing_separator, 1), + [5060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [5062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4055), + [5064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), + [5066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [5068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [5070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [5072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [5074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [5076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [5080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [5082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [5086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [5088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [5090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [5092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [5096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [5100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [5102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [5104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5059), + [5106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4116), + [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), + [5110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [5112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5258), + [5114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), + [5116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [5118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_with_parentheses_with_guard, 3, .production_id = 19), + [5120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [5122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5405), + [5124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5067), + [5126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_without_parentheses_with_guard, 3, .dynamic_precedence = 1, .production_id = 19), + [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5198), + [5130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5069), + [5134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), + [5136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5070), + [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5167), + [5140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 1, .production_id = 8), + [5142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5063), + [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), + [5146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), + [5148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [5150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5068), + [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), + [5154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4794), + [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4518), + [5158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4517), + [5160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4578), + [5162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4577), + [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4793), + [5166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4792), + [5168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4791), + [5170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4790), + [5172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4789), + [5174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4739), + [5176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4619), + [5178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4618), + [5180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4699), + [5182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4694), + [5184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4740), + [5186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4741), + [5188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4742), + [5190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4743), + [5192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4744), + [5194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5206), + [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5211), + [5198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5229), + [5200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5295), + [5202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5387), + [5204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5348), + [5206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5341), + [5208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5302), + [5210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5164), + [5212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5256), + [5214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4461), + [5216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4688), + [5218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4692), + [5220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523), + [5222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), + [5224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4464), + [5226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4465), + [5228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4466), + [5230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4467), + [5232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4468), + [5234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5071), + [5236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5072), + [5238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5073), + [5240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5074), + [5242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5075), + [5244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5076), + [5246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5077), + [5248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5078), + [5250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5089), + [5252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5091), + [5254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4421), + [5256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4674), + [5258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4673), + [5260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4778), + [5262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4777), + [5264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4422), + [5266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4423), + [5268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4424), + [5270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4425), + [5272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4426), + [5274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4834), + [5276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4534), + [5278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4533), + [5280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4589), + [5282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4588), + [5284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4833), + [5286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4831), + [5288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4828), + [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4827), + [5292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4826), + [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4884), + [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4538), + [5298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4537), + [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4600), + [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4599), + [5304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4883), + [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4882), + [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4881), + [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4880), + [5312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4879), + [5314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5264), + [5316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5265), + [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5266), + [5320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5267), + [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5268), + [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5269), + [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5270), + [5328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5271), + [5330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5272), + [5332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5273), + [5334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5172), + [5336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5173), + [5338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5174), + [5340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5175), + [5342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5176), + [5344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5177), + [5346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5178), + [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5179), + [5350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5180), + [5352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5181), + [5354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4486), + [5356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4780), + [5358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4779), + [5360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4894), + [5362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4892), + [5364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4477), + [5366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4476), + [5368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4440), + [5370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4439), + [5372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4432), + [5374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5066), + [5376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5065), + [5378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5064), + [5380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5061), + [5382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5060), + [5384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5048), + [5386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5047), + [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5046), + [5390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5045), + [5392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5355), + [5394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5116), + [5396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5119), + [5398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5121), + [5400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5123), + [5402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5154), + [5404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5157), + [5406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5159), + [5408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), + [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5162), + [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5163), + [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4636), + [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4643), + [5418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4642), + [5420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4712), + [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4711), + [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), + [5426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4638), + [5428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4639), + [5430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4640), + [5432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4641), + [5434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5435), + [5436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5434), + [5438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5433), + [5440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5432), + [5442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5431), + [5444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5430), + [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5429), + [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5428), + [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5427), + [5452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5426), + [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5049), + [5456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5050), + [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5051), + [5460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5052), + [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5053), + [5464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5054), + [5466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5055), + [5468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5056), + [5470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5057), + [5472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5058), + [5474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4431), + [5476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4572), + [5478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4571), + [5480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4649), + [5482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4648), + [5484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4430), + [5486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4420), + [5488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4419), + [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4418), + [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4415), + [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5436), + [5496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5425), + [5498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5424), + [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5423), + [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5422), + [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5421), + [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5420), + [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5409), + [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5408), + [5512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5406), + [5514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4863), + [5516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4714), + [5518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4713), + [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4852), + [5522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4851), + [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4860), + [5526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4859), + [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4841), + [5530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4839), + [5532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4837), + [5534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5261), + [5536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5263), + [5538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5274), + [5540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5278), + [5542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5279), + [5544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5291), + [5546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5292), + [5548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5293), + [5550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5294), + [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5296), + [5554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4635), + [5556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4682), + [5558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4681), + [5560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4802), + [5562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4801), + [5564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4633), + [5566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4631), + [5568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), + [5570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4628), + [5572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4626), + [5574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4819), + [5576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4542), + [5578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4541), + [5580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), + [5582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4611), + [5584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4409), + [5586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4830), + [5588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4861), + [5590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4864), + [5592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4865), + [5594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5218), + [5596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5219), + [5598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5220), + [5600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5221), + [5602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5222), + [5604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5223), + [5606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5224), + [5608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5225), + [5610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5226), + [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5227), + [5614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4735), + [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4592), + [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4590), + [5620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4663), + [5622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4662), + [5624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4733), + [5626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4727), + [5628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4726), + [5630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4716), + [5632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4700), + [5634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5275), + [5636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5276), + [5638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5277), + [5640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5290), + [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5297), + [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5298), + [5646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5304), + [5648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5305), + [5650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5419), + [5652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), + [5654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4526), + [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4651), + [5658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4650), + [5660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4730), + [5662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4729), + [5664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4527), + [5666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4528), + [5668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4529), + [5670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4530), + [5672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4531), + [5674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4485), + [5676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4808), + [5678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4809), + [5680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4810), + [5682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4811), + [5684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4487), + [5686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4488), + [5688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4490), + [5690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4495), + [5692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), + [5694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5155), + [5696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5062), + [5698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5153), + [5700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5152), + [5702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5141), + [5704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5140), + [5706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5139), + [5708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5138), + [5710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5137), + [5712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5136), + [5714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4630), + [5716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4555), + [5718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4554), + [5720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4627), + [5722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4625), + [5724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4632), + [5726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4634), + [5728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4654), + [5730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4655), + [5732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4656), + [5734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5310), + [5736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5311), + [5738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5312), + [5740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5313), + [5742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5314), + [5744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5315), + [5746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5316), + [5748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5317), + [5750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5318), + [5752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5319), + [5754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4756), + [5756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4514), + [5758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4512), + [5760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4570), + [5762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4560), + [5764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4755), + [5766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4754), + [5768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4753), + [5770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4752), + [5772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4751), + [5774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5382), + [5776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5371), + [5778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5370), + [5780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5369), + [5782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5368), + [5784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5367), + [5786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5366), + [5788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5043), + [5790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5354), + [5792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5353), + [5794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5356), + [5796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5357), + [5798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5358), + [5800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5359), + [5802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5360), + [5804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5361), + [5806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5362), + [5808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5363), + [5810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5364), + [5812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5365), + [5814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5126), + [5816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5127), + [5818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5128), + [5820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5129), + [5822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5130), + [5824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5131), + [5826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5132), + [5828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5133), + [5830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5134), + [5832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5135), + [5834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5253), + [5836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5252), + [5838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5251), + [5840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5250), + [5842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5248), + [5844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5247), + [5846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5246), + [5848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5245), + [5850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5233), + [5852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5232), + [5854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4842), + [5856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), + [5858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4601), + [5860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4680), + [5862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4679), + [5864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4843), + [5866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4844), + [5868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4845), + [5870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4846), + [5872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4847), + [5874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [5876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [5878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [5880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [5882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [5884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [5886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [5890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [5892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [5894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [5896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [5898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [5900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__keywords_with_trailing_separator, 2), + [5902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4804), + [5904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4803), + [5906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__keywords_with_trailing_separator, 3), + [5908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [5910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), + [5912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [5914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [5916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894), + [5918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_block_repeat1, 2), SHIFT_REPEAT(34), + [5921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_block_repeat1, 2), SHIFT_REPEAT(37), + [5924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_block_repeat1, 2), SHIFT_REPEAT(38), + [5927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_block_repeat1, 2), + [5929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_block_repeat1, 2), SHIFT_REPEAT(39), + [5932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [5934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [5936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [5938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), + [5940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), + [5942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), + [5944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), + [5946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(1031), + [5949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(734), + [5952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [5954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [5956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [5958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [5960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1026), + [5963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(132), + [5966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), + [5968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 3), SHIFT(1022), + [5971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 3), SHIFT(262), + [5974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat2, 2), SHIFT_REPEAT(1031), + [5977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat2, 2), SHIFT_REPEAT(695), + [5980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [5982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [5984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [5986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [5990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [5992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [5994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [5996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [5998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [6000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [6002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [6004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [6006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [6008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [6010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [6012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [6014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [6016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [6018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [6020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [6022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [6024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [6026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [6028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [6030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [6032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [6034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [6036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [6038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [6040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [6042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [6044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [6046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [6048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [6050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [6052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [6054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [6056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [6058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [6060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [6062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [6064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [6066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [6068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [6070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [6072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [6074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [6076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [6078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [6080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [6082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [6084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [6086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [6088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [6090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [6092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [6094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [6096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [6100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), + [6102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stab_clause, 2, .production_id = 15), + [6104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause, 2, .production_id = 15), + [6106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stab_clause, 3, .production_id = 19), + [6108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause, 3, .production_id = 19), + [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), + [6112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [6114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4886), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4886), + [6118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), + [6120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [6122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4548), + [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), + [6126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), + [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [6130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4483), + [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), + [6134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), + [6136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [6138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4433), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), + [6142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), + [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [6146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4434), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [6150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3822), + [6152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [6154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4435), + [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), + [6158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), + [6160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4475), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), + [6164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), + [6166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4437), + [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), + [6170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [6172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4436), + [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), + [6176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [6178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [6180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4462), + [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), + [6184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), + [6186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [6188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4460), + [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), + [6192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), + [6194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [6196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4459), + [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), + [6200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [6202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [6204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4453), + [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [6208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [6210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4454), + [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), + [6214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), + [6216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4455), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), + [6220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), + [6222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4456), + [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), + [6226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), + [6228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4457), + [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), + [6232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), + [6234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4458), + [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), + [6238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [6240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4438), + [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), + [6244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [6246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4446), + [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), + [6250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [6252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4447), + [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), + [6256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), + [6258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4452), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), + [6262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), + [6264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4451), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), + [6268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [6270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4498), + [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), + [6274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), + [6276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4507), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), + [6280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), + [6282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4481), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), + [6286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3879), + [6288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4482), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), + [6292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [6294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3881), + [6296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [6298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [6300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4489), + [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), + [6304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [6306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4484), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [6310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), + [6312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), + [6314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4585), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), + [6318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), + [6320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), + [6322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), + [6324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [6326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [6328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [6330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), + [6332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), + [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4411), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), + [6338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), + [6340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), + [6342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), + [6346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), + [6348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [6350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [6352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4561), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), + [6356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [6358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4552), + [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), + [6362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [6364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4549), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), + [6368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [6370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), + [6372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), + [6374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), + [6376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4805), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), + [6380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), + [6382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), + [6384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4441), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), + [6388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), + [6390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4715), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), + [6394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), + [6396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4734), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), + [6400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), + [6402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4757), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), + [6406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), + [6408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4761), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), + [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), + [6414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4762), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), + [6418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), + [6420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4445), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), + [6424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [6426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4448), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), + [6430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), + [6432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4724), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), + [6436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [6438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4443), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), + [6442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), + [6444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4444), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), + [6448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), + [6450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4449), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), + [6454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), + [6456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [6458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4480), + [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), + [6462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [6464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4479), + [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), + [6468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), + [6470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), + [6472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [6474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_single_repeat1, 2), + [6476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_single_repeat1, 2), SHIFT_REPEAT(881), + [6479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_single_repeat1, 2), SHIFT_REPEAT(4481), + [6482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_i_single_repeat1, 2), SHIFT_REPEAT(4481), + [6485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_heredoc_single_repeat1, 2), + [6487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_heredoc_single_repeat1, 2), SHIFT_REPEAT(776), + [6490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_heredoc_single_repeat1, 2), SHIFT_REPEAT(4482), + [6493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_i_heredoc_single_repeat1, 2), SHIFT_REPEAT(4482), + [6496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_heredoc_double_repeat1, 2), + [6498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_heredoc_double_repeat1, 2), SHIFT_REPEAT(675), + [6501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_heredoc_double_repeat1, 2), SHIFT_REPEAT(4483), + [6504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_i_heredoc_double_repeat1, 2), SHIFT_REPEAT(4483), + [6507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [6509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), + [6511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4829), + [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), + [6515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), + [6517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4478), + [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [6521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), + [6523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4818), + [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), + [6527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), + [6529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4817), + [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), + [6533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [6535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), + [6537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4816), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), + [6541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [6543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4503), + [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [6547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [6549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4504), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), + [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), + [6559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [6561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4506), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), + [6565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), + [6567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4814), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), + [6571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), + [6573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), + [6575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), + [6577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), + [6579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), + [6581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), + [6583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4813), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), + [6587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), + [6589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [6591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [6595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [6597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_double_repeat1, 2), + [6599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_double_repeat1, 2), SHIFT_REPEAT(622), + [6602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_double_repeat1, 2), SHIFT_REPEAT(4507), + [6605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_i_double_repeat1, 2), SHIFT_REPEAT(4507), + [6608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [6610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), + [6612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), + [6614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [6616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [6618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4508), + [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), + [6622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), + [6624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [6626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4511), + [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), + [6630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [6632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [6634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [6636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4515), + [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), + [6640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [6642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4516), + [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), + [6646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [6648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [6650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4525), + [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), + [6654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [6656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [6658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4545), + [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [6662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), + [6664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4594), + [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), + [6668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), + [6670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4613), + [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), + [6674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [6676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), + [6678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4564), + [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), + [6682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), + [6684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4565), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), + [6688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), + [6690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4566), + [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), + [6694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), + [6696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4567), + [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), + [6700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), + [6702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4568), + [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), + [6706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), + [6708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4569), + [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), + [6712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [6714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [6716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4521), + [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), + [6720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [6722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4532), + [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), + [6726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), + [6728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), + [6730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), + [6732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4535), + [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), + [6736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), + [6738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4536), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), + [6742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), + [6744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), + [6746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), + [6748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), + [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), + [6752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4540), + [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), + [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [6762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), + [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [6768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4543), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), + [6772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_slash_repeat1, 2), + [6774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_slash_repeat1, 2), SHIFT_REPEAT(551), + [6777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_slash_repeat1, 2), SHIFT_REPEAT(4548), + [6780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_i_slash_repeat1, 2), SHIFT_REPEAT(4548), + [6783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_bar_repeat1, 2), + [6785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_bar_repeat1, 2), SHIFT_REPEAT(598), + [6788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_bar_repeat1, 2), SHIFT_REPEAT(4549), + [6791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_i_bar_repeat1, 2), SHIFT_REPEAT(4549), + [6794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [6796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4544), + [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), + [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [6802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_angle_repeat1, 2), + [6804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_angle_repeat1, 2), SHIFT_REPEAT(647), + [6807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_angle_repeat1, 2), SHIFT_REPEAT(4552), + [6810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_i_angle_repeat1, 2), SHIFT_REPEAT(4552), + [6813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [6815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [6817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4551), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), + [6821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [6823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4553), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), + [6827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [6829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [6831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [6833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [6837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4556), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), + [6841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_square_repeat1, 2), + [6843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_square_repeat1, 2), SHIFT_REPEAT(659), + [6846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_square_repeat1, 2), SHIFT_REPEAT(4561), + [6849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_i_square_repeat1, 2), SHIFT_REPEAT(4561), + [6852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), + [6854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), + [6856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), + [6858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), + [6860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), + [6862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), + [6864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), + [6866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), + [6868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [6870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4557), + [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), + [6874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), + [6876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4558), + [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), + [6880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), + [6882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), + [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [6886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [6888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [6890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [6892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [6894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [6896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4573), + [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), + [6900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [6902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4574), + [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), + [6906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [6908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4575), + [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), + [6912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [6914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4576), + [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), + [6918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), + [6920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_curly_repeat1, 2), + [6922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_curly_repeat1, 2), SHIFT_REPEAT(670), + [6925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_curly_repeat1, 2), SHIFT_REPEAT(4582), + [6928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_i_curly_repeat1, 2), SHIFT_REPEAT(4582), + [6931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [6933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [6935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_parenthesis_repeat1, 2), + [6937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_parenthesis_repeat1, 2), SHIFT_REPEAT(672), + [6940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_parenthesis_repeat1, 2), SHIFT_REPEAT(4585), + [6943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_i_parenthesis_repeat1, 2), SHIFT_REPEAT(4585), + [6946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), + [6948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), + [6950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [6952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4583), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), + [6956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [6958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4584), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), + [6962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), + [6964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4586), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), + [6968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), + [6970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), + [6972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4587), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), + [6976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), + [6978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), + [6980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [6982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [6984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [6986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [6988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [6990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4595), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), + [6994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), + [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4596), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [7000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [7002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4597), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), + [7006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [7008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4614), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), + [7012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [7014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), + [7018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [7020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4616), + [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), + [7024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4617), + [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), + [7030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), + [7032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4598), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), + [7036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [7038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [7040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [7042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [7044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [7046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4607), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), + [7050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [7052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4608), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), + [7056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), + [7058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [7060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [7062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [7064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [7066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [7068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4609), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), + [7072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [7074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4610), + [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), + [7078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [7080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [7082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [7084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [7086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), + [7088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4502), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), + [7092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [7094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4620), + [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), + [7098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), + [7100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4496), + [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), + [7104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [7106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4621), + [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), + [7110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), + [7112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4497), + [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [7116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), + [7118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4499), + [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), + [7122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [7124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4657), + [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), + [7128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), + [7130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4509), + [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), + [7134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [7136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4658), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), + [7140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), + [7142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4510), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), + [7146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [7148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), + [7152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), + [7154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4442), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), + [7158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [7160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4667), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), + [7164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [7166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4668), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), + [7170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [7172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4669), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), + [7176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [7178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4670), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), + [7182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [7184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4671), + [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), + [7188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [7190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4672), + [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), + [7194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [7196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4622), + [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), + [7200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [7202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4623), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), + [7206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [7208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [7210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), + [7212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), + [7214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [7216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4644), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), + [7220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [7222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4645), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), + [7226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), + [7228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), + [7232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), + [7234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4647), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), + [7238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), + [7240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), + [7242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [7244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4664), + [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), + [7248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [7250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4665), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), + [7254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [7256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4666), + [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), + [7260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [7262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [7264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), + [7266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), + [7268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [7270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), + [7272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4652), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), + [7276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), + [7278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4653), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), + [7282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [7284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [7286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [7288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [7290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [7292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [7294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [7296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [7298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [7300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), + [7302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4659), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), + [7306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), + [7308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4660), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), + [7312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), + [7314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), + [7316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), + [7318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), + [7320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), + [7322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4675), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), + [7326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), + [7328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4676), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), + [7332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), + [7334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4677), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), + [7338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), + [7340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4678), + [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), + [7344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [7346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), + [7348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4500), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), + [7352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [7354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [7356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), + [7358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), + [7360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4759), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), + [7364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), + [7366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), + [7368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), + [7370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), + [7372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4764), + [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), + [7376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [7378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [7380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4683), + [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), + [7384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3835), + [7386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4687), + [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), + [7390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3836), + [7392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4689), + [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), + [7396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), + [7398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4690), + [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), + [7402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), + [7404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4691), + [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), + [7408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [7410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4685), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), + [7414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), + [7416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4546), + [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), + [7420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [7422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4686), + [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), + [7426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [7428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4693), + [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), + [7432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [7434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [7436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [7438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4717), + [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4717), + [7442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [7444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4718), + [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), + [7448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [7450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4719), + [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), + [7454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [7456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4720), + [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), + [7460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), + [7462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), + [7464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [7466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4703), + [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), + [7470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [7472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4704), + [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), + [7476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), + [7478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4709), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), + [7482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), + [7484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4710), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), + [7488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), + [7490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), + [7492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4562), + [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), + [7496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [7498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [7500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [7502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), + [7504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), + [7506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), + [7508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [7510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), + [7512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [7514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), + [7516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4563), + [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), + [7520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), + [7522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4581), + [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), + [7526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), + [7528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), + [7530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4721), + [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), + [7534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), + [7536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4722), + [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), + [7540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [7542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), + [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), + [7546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [7548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4725), + [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), + [7552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), + [7554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4591), + [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), + [7558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), + [7560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), + [7562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4593), + [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [7566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3945), + [7568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [7570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4768), + [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), + [7574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), + [7576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [7578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4770), + [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), + [7582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [7584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4771), + [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), + [7588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [7590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4772), + [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), + [7594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [7596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4773), + [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), + [7600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [7602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4774), + [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), + [7606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [7608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4775), + [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), + [7612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [7614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [7616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [7618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [7620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [7622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [7624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [7626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4745), + [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), + [7630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [7632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4746), + [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), + [7636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [7638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4747), + [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), + [7642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [7644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4748), + [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), + [7648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [7650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4749), + [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), + [7654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [7656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4750), + [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), + [7660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), + [7662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [7664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4769), + [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), + [7668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), + [7670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3947), + [7672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), + [7674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), + [7676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), + [7678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), + [7680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [7682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [7684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [7686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [7688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [7690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [7692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [7694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [7696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [7698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [7700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [7702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [7704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), + [7706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4765), + [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), + [7710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [7712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4766), + [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), + [7716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [7718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4767), + [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), + [7722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [7724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4776), + [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4776), + [7728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [7730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [7732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [7734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [7736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [7738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [7740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), + [7742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), + [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), + [7746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), + [7748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [7750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4781), + [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), + [7754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [7756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4782), + [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), + [7760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [7762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4783), + [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), + [7766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [7768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4784), + [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), + [7772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [7774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4785), + [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), + [7778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [7780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4786), + [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), + [7784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), + [7786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), + [7788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5642), + [7790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [7792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4519), + [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), + [7796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3863), + [7798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4898), + [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), + [7802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5667), + [7804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), + [7806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4795), + [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), + [7810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), + [7812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4796), + [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), + [7816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5666), + [7818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4797), + [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), + [7822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5547), + [7824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4800), + [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), + [7828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), + [7830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [7832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [7834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), + [7836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4820), + [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), + [7840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), + [7842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4821), + [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), + [7846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), + [7848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4822), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), + [7852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), + [7854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4823), + [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), + [7858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [7860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), + [7862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), + [7864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [7866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), + [7868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), + [7870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), + [7872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), + [7874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4866), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), + [7878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), + [7880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), + [7882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), + [7884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), + [7886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [7888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [7890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [7892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4806), + [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), + [7896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [7898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4807), + [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), + [7902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), + [7904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4812), + [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), + [7908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), + [7910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), + [7912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4893), + [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), + [7916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), + [7918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4815), + [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), + [7922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), + [7924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [7926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4824), + [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), + [7930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [7932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4825), + [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), + [7936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), + [7938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), + [7940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3989), + [7942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4410), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), + [7946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), + [7948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3990), + [7950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), + [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), + [7954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), + [7956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), + [7958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4736), + [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), + [7962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), + [7964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4873), + [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), + [7968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), + [7970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4874), + [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), + [7974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), + [7976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4875), + [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), + [7980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), + [7982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4876), + [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), + [7986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), + [7988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4877), + [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), + [7992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), + [7994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4878), + [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), + [7998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), + [8000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [8002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [8004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), + [8006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4835), + [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), + [8010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), + [8012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4848), + [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), + [8016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [8018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4849), + [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), + [8022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [8024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4850), + [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), + [8028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), + [8030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [8032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [8034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), + [8036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), + [8038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4738), + [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), + [8042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), + [8044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4760), + [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), + [8048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), + [8050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4900), + [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), + [8054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3864), + [8056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4902), + [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), + [8060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), + [8062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4763), + [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), + [8066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), + [8068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4899), + [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), + [8072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), + [8074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4897), + [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), + [8078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), + [8080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), + [8082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4901), + [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4901), + [8086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), + [8088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4832), + [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), + [8092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), + [8094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), + [8096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), + [8098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4836), + [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), + [8102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), + [8104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4838), + [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4838), + [8108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), + [8110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), + [8112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), + [8114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), + [8116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), + [8118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), + [8120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), + [8122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4855), + [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), + [8126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [8128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4856), + [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), + [8132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [8134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4857), + [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), + [8138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), + [8140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4858), + [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), + [8144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), + [8146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4869), + [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), + [8150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), + [8152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4870), + [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), + [8156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), + [8158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4840), + [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4840), + [8162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), + [8164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), + [8166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), + [8168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [8170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), + [8172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4788), + [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), + [8176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [8178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), + [8180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4887), + [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), + [8184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), + [8186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), + [8188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4888), + [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), + [8192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [8194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4889), + [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), + [8198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [8200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4891), + [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), + [8204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [8206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3905), + [8208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), + [8210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), + [8212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), + [8214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), + [8216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [8218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), + [8220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [8222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [8224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4096), + [8226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(884), + [8229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [8231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [8233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), + [8235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [8237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4391), + [8240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(135), + [8243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), + [8245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(447), + [8248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), + [8250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), + [8252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [8254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), + [8256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), + [8258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [8260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [8262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 3), SHIFT(1034), + [8265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 3), SHIFT(349), + [8268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [8270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4063), + [8272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), + [8274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [8276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [8278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_function_repeat1, 2), SHIFT_REPEAT(1026), + [8281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_anonymous_function_repeat1, 2), SHIFT_REPEAT(129), + [8284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_anonymous_function_repeat1, 2), + [8286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), + [8288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [8290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [8292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), + [8294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3860), + [8296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [8298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat2, 2), SHIFT_REPEAT(469), + [8301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), + [8303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 3), SHIFT(1033), + [8306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 3), SHIFT(345), + [8309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [8311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [8313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [8315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [8317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [8319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [8321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4385), + [8324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2832), + [8326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), + [8328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [8330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4269), + [8332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [8334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), + [8336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [8338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(746), + [8341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [8343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4391), + [8345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(497), + [8348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), + [8350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3981), + [8352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [8354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [8356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [8358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), + [8360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__keywords_with_trailing_separator, 1), + [8362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), + [8364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [8366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [8368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), + [8370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3942), + [8372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5309), + [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5309), + [8376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [8378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5324), + [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), + [8382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), + [8384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5156), + [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), + [8388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), + [8390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5124), + [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), + [8394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [8396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5122), + [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), + [8400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), + [8402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5120), + [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), + [8406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [8408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5079), + [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5079), + [8412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [8414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5080), + [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5080), + [8418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [8420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5081), + [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), + [8424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [8426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5082), + [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), + [8430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), + [8432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5083), + [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), + [8436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [8438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5084), + [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), + [8442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [8444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5085), + [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), + [8448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [8450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5086), + [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), + [8454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [8456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5087), + [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5087), + [8460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [8462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5088), + [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), + [8466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3), + [8468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3), + [8470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [8472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5118), + [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), + [8476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [8478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5117), + [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), + [8482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), + [8484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), + [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), + [8488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [8490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5115), + [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), + [8494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), + [8496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5099), + [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), + [8500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), + [8502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5096), + [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), + [8506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), + [8508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5093), + [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), + [8512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [8514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5094), + [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), + [8518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), + [8520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5095), + [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5095), + [8524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [8526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5097), + [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), + [8530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), + [8532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5098), + [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5098), + [8536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), + [8538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5100), + [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), + [8542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), + [8544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5101), + [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), + [8548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), + [8550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5102), + [8552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5102), + [8554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [8556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), + [8558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5308), + [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), + [8562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), + [8564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5262), + [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), + [8568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [8570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5092), + [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), + [8574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), + [8576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5260), + [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), + [8580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [8582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5259), + [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), + [8586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), + [8588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5231), + [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), + [8592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [8594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5230), + [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), + [8598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [8600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5205), + [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), + [8604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), + [8606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5204), + [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), + [8610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [8612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5103), + [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), + [8616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [8618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5104), + [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), + [8622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_heredoc_single_repeat1, 2), + [8624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_heredoc_single_repeat1, 2), SHIFT_REPEAT(5092), + [8627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_heredoc_single_repeat1, 2), SHIFT_REPEAT(5092), + [8630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [8632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [8634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [8636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), + [8638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [8640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [8642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [8644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [8646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [8648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [8650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [8652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), + [8654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), + [8656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), + [8658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), + [8660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), + [8662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), + [8664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), + [8666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), + [8668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), + [8670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), + [8672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), + [8674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), + [8676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), + [8678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5336), + [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), + [8682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [8684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [8686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), + [8688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5303), + [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), + [8692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), + [8694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), + [8696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5301), + [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), + [8700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), + [8702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), + [8704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5300), + [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), + [8708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [8710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [8712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5142), + [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), + [8716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [8718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), + [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), + [8722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [8724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5144), + [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), + [8728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [8730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5145), + [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), + [8734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [8736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5146), + [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), + [8740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [8742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5147), + [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), + [8746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [8748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5148), + [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), + [8752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [8754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5149), + [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), + [8758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [8760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), + [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), + [8764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [8766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5151), + [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), + [8770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), + [8772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5105), + [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), + [8776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), + [8778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5106), + [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), + [8782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), + [8784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5107), + [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), + [8788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), + [8790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5108), + [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), + [8794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), + [8796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5109), + [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), + [8800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), + [8802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5110), + [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), + [8806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [8808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [8810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [8812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [8814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [8816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [8818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [8820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [8822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), + [8824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [8826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), + [8828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5111), + [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), + [8832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), + [8834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5112), + [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), + [8838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), + [8840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5209), + [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), + [8844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), + [8846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5114), + [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), + [8850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), + [8852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), + [8854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5257), + [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), + [8858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), + [8860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), + [8862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5255), + [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), + [8866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), + [8868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), + [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), + [8872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [8874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_without_parentheses, 2), + [8876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), + [8878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5249), + [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), + [8882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), + [8884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5244), + [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), + [8888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), + [8890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5385), + [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), + [8894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), + [8896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), + [8898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), + [8900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5188), + [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), + [8904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [8906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5189), + [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), + [8910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), + [8912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5190), + [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), + [8916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), + [8918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5191), + [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), + [8922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), + [8924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5192), + [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), + [8928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), + [8930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5193), + [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), + [8934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), + [8936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5194), + [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), + [8940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), + [8942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5195), + [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), + [8946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), + [8948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5196), + [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), + [8952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), + [8954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5197), + [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), + [8958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), + [8960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [8962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), + [8964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), + [8966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), + [8968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), + [8970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), + [8972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [8974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), + [8976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), + [8978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), + [8980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), + [8982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), + [8984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), + [8986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), + [8988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__stab_clause_arguments_without_parentheses_repeat1, 2), SHIFT_REPEAT(459), + [8991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), + [8993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), + [8995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), + [8997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_slash_repeat1, 2), + [8999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_slash_repeat1, 2), SHIFT_REPEAT(5204), + [9002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_slash_repeat1, 2), SHIFT_REPEAT(5204), + [9005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_bar_repeat1, 2), + [9007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_bar_repeat1, 2), SHIFT_REPEAT(5205), + [9010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_bar_repeat1, 2), SHIFT_REPEAT(5205), + [9013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), + [9015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5344), + [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), + [9019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), + [9021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), + [9023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), + [9025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), + [9027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), + [9029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5346), + [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), + [9033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), + [9035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), + [9037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), + [9039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), + [9041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), + [9043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), + [9045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), + [9047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5234), + [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), + [9051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), + [9053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5235), + [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), + [9057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [9059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5236), + [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), + [9063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), + [9065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5237), + [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), + [9069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [9071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5238), + [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), + [9075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), + [9077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5239), + [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), + [9081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), + [9083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5240), + [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), + [9087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [9089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5241), + [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), + [9093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [9095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5242), + [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), + [9099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), + [9101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5243), + [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), + [9105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), + [9107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), + [9109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5347), + [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), + [9113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_angle_repeat1, 2), + [9115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_angle_repeat1, 2), SHIFT_REPEAT(5230), + [9118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_angle_repeat1, 2), SHIFT_REPEAT(5230), + [9121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_square_repeat1, 2), + [9123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_square_repeat1, 2), SHIFT_REPEAT(5231), + [9126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_square_repeat1, 2), SHIFT_REPEAT(5231), + [9129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), + [9131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5207), + [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), + [9135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), + [9137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5208), + [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), + [9141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), + [9143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [9145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), + [9147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), + [9149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [9151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [9153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [9155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [9157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [9159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), + [9161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), + [9163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), + [9165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5210), + [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), + [9169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), + [9171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5212), + [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), + [9175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), + [9177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5213), + [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), + [9181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), + [9183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5214), + [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), + [9187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), + [9189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), + [9191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5215), + [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), + [9195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), + [9197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5216), + [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), + [9201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), + [9203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5217), + [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), + [9207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [9209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5228), + [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), + [9213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), + [9215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), + [9217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), + [9219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5388), + [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), + [9223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), + [9225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_curly_repeat1, 2), + [9227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_curly_repeat1, 2), SHIFT_REPEAT(5259), + [9230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_curly_repeat1, 2), SHIFT_REPEAT(5259), + [9233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_heredoc_double_repeat1, 2), + [9235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_heredoc_double_repeat1, 2), SHIFT_REPEAT(5260), + [9238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_heredoc_double_repeat1, 2), SHIFT_REPEAT(5260), + [9241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), + [9243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5042), + [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), + [9247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_single_repeat1, 2), + [9249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_single_repeat1, 2), SHIFT_REPEAT(5262), + [9252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_single_repeat1, 2), SHIFT_REPEAT(5262), + [9255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), + [9257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5390), + [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), + [9261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [9263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5280), + [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), + [9267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [9269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5281), + [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), + [9273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [9275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5282), + [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5282), + [9279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [9281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5283), + [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), + [9285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [9287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5284), + [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), + [9291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [9293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5285), + [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), + [9297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [9299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5286), + [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), + [9303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [9305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5287), + [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), + [9309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [9311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5288), + [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), + [9315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [9317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5289), + [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), + [9321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), + [9323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5393), + [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), + [9327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), + [9329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5320), + [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), + [9333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), + [9335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5321), + [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), + [9339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), + [9341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5345), + [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), + [9345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3997), + [9347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5394), + [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), + [9351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), + [9353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5395), + [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), + [9357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [9359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), + [9361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [9363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [9365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [9367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [9369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [9371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [9373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [9375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [9377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), + [9379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5352), + [9381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), + [9383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3995), + [9385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5397), + [9387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), + [9389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3994), + [9391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5398), + [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), + [9395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3993), + [9397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5399), + [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5399), + [9401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), + [9403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5400), + [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), + [9407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), + [9409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5349), + [9411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), + [9413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3991), + [9415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5402), + [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), + [9419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), + [9421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5386), + [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), + [9425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), + [9427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5389), + [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), + [9431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [9433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), + [9435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), + [9437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), + [9439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5384), + [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), + [9443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), + [9445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), + [9447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5391), + [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), + [9451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), + [9453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5392), + [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), + [9457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), + [9459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), + [9461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5403), + [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), + [9465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_double_repeat1, 2), + [9467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_double_repeat1, 2), SHIFT_REPEAT(5308), + [9470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_double_repeat1, 2), SHIFT_REPEAT(5308), + [9473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_parenthesis_repeat1, 2), + [9475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_parenthesis_repeat1, 2), SHIFT_REPEAT(5309), + [9478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_parenthesis_repeat1, 2), SHIFT_REPEAT(5309), + [9481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [9483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5326), + [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), + [9487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [9489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5327), + [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), + [9493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [9495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5328), + [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), + [9499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [9501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5329), + [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), + [9505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [9507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5330), + [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), + [9511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [9513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5331), + [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), + [9517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [9519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5332), + [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), + [9523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [9525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5333), + [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), + [9529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [9531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5334), + [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), + [9535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [9537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5335), + [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), + [9541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), + [9543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), + [9545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [9547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [9549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [9551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [9553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [9555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [9557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [9559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [9561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [9563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [9565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [9567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [9569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [9571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [9573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), + [9575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [9577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [9579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [9581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [9583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [9585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5383), + [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), + [9589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [9591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [9593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), + [9595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), + [9597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), + [9599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), + [9601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), + [9603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5351), + [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), + [9607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), + [9609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), + [9611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), + [9613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), + [9615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [9617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5322), + [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), + [9621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [9623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5323), + [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), + [9627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [9629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5158), + [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), + [9633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [9635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5372), + [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), + [9639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [9641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5373), + [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), + [9645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [9647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5374), + [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), + [9651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [9653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5375), + [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), + [9657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [9659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5376), + [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), + [9663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [9665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5377), + [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), + [9669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [9671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5378), + [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), + [9675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [9677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5379), + [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), + [9681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [9683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5380), + [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), + [9687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [9689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5381), + [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), + [9693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [9695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5325), + [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), + [9699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [9701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5337), + [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), + [9705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [9707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5338), + [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), + [9711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [9713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5339), + [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), + [9717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [9719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5340), + [9721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), + [9723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [9725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5342), + [9727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), + [9729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [9731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [9733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [9735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [9737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [9739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [9741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [9743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [9745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [9747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [9749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [9751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5343), + [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), + [9755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), + [9757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), + [9759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), + [9761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), + [9763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), + [9765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5350), + [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), + [9769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), + [9771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), + [9773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), + [9775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), + [9777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), + [9779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), + [9781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3939), + [9783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), + [9785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), + [9787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3935), + [9789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), + [9791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3933), + [9793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), + [9795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), + [9797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [9799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), + [9801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5168), + [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), + [9805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), + [9807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5170), + [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), + [9811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), + [9813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5306), + [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), + [9817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [9819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), + [9821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [9823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [9825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [9827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [9829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [9831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [9833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [9835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), + [9837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5396), + [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), + [9841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), + [9843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5182), + [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), + [9847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), + [9849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5185), + [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), + [9853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), + [9855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), + [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), + [9859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), + [9861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5187), + [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), + [9865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), + [9867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), + [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), + [9871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), + [9873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), + [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), + [9877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [9879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5299), + [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), + [9883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [9885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5411), + [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), + [9889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [9891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5412), + [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), + [9895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [9897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5413), + [9899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5413), + [9901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [9903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5414), + [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), + [9907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [9909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5415), + [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), + [9913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [9915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5416), + [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), + [9919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [9921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5417), + [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), + [9925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [9927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5418), + [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), + [9931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [9933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5410), + [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5410), + [9937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), + [9939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), + [9941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), + [9943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5457), + [9945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [9947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_with_trailing_separator, 2), + [9949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [9951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4363), + [9954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4357), + [9956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(696), + [9959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4350), + [9961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5533), + [9963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4385), + [9965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [9967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__stab_clause_arguments_with_parentheses_repeat1, 2), SHIFT_REPEAT(503), + [9970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__items_with_trailing_separator, 4), + [9972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5493), + [9974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_without_parentheses, 3), + [9976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), + [9978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), + [9980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), + [9982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [9984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), + [9986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), + [9988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [9990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_with_parentheses, 4), + [9992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [9994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_without_parentheses, 4), + [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), + [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), + [10000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), + [10004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), + [10006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [10008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_left, 1), + [10010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), + [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), + [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), + [10018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), + [10020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_with_parentheses, 5), + [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), + [10024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), + [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), + [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), + [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), + [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), + [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), + [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), + [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), + [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), + [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), + [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), + [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), + [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), + [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), + [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), + [10058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), + [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), + [10064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [10066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_with_parentheses, 6), + [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), + [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), + [10072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_function_repeat1, 2), + [10074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [10076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), + [10078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), + [10080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3953), + [10082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [10084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), + [10086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), + [10088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [10090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), + [10092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_with_trailing_separator, 4), + [10094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [10096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), + [10098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), + [10100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [10102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), + [10104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), + [10106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), + [10108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), + [10110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), + [10112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5574), + [10114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3866), + [10116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [10118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [10120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), + [10122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [10124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), + [10126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), + [10128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [10130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), + [10132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), + [10134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), + [10136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), + [10138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), + [10140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [10142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [10144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5586), + [10146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [10148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [10150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5564), + [10152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [10154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [10156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), + [10158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), + [10160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [10162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [10164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [10166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5652), + [10168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [10170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [10172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [10174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3910), + [10176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), + [10178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [10180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [10182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5663), + [10184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), + [10186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [10188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3887), + [10190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [10192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), + [10194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), + [10196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), + [10198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5585), + [10200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), + [10202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [10204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_with_trailing_separator, 3), + [10206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), + [10208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [10210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), + [10212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [10214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5553), + [10216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [10218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [10220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [10222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), + [10224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [10226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_left, 1, .production_id = 6), + [10228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5625), + [10230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), + [10232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [10234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [10236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [10238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [10240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [10242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [10244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5593), + [10246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [10248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [10250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [10252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4067), + [10254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [10256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [10258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [10260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5540), + [10262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [10264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), + [10266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [10268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), + [10270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [10272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5668), + [10274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [10276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [10278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [10280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), + [10282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3797), + [10284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [10286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), + [10288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), + [10290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), + [10292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [10294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [10296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5542), + [10298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [10300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [10302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), + [10304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [10306] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [10308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [10310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5523), + [10312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), + [10314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), + [10316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [10318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), }; #ifdef __cplusplus